/*------------------------------------------
  Component
------------------------------------------*/
.c-button01 {
  display: inline-flex;
  width: 500px;
  height: 80px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  color: #970645;
  font-size: 16px;
  letter-spacing: 0.075em;
  border: 1px solid #970645;
  position: relative;
}
.c-button01:after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 40px;
  border-top: 2px solid #970645;
  border-right: 2px solid #970645;
  transform: translateY(-50%) rotate(45deg);
}

@media (min-width: 769px) {
  .c-button01 {
    transition: 0.4s;
  }
  .c-button01:after {
    transition: 0.4s;
  }
  .c-button01:hover {
    color: #fff;
    background: #970645;
  }
  .c-button01:hover:after {
    border-color: #fff;
  }
}
@media (max-width: 768px) {
  .c-button01 {
    width: 300px;
    height: 60px;
    font-size: 12px;
  }
  .c-button01:after {
    right: 30px;
  }
}
/*------------------------------------------
  Feature Common
------------------------------------------*/
.feature__container {
  background: #fff;
  color: #000;
  position: relative;
  padding: 80px 0;
}
.feature__container.--detail {
  padding-top: 0;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .feature__container {
    padding: 20px 0 40px;
  }
  .feature__container.--detail {
    margin-top: 0;
  }
}
/*------------------------------------------
  Feature TOP
------------------------------------------*/
.feature__list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 2%;
}
.feature__list .item {
  display: block;
  position: relative;
  width: 32%;
  padding-bottom: 20px;
  border-bottom: 1px solid #E3E3E3;
}
.feature__list .item:hover .thumb__overlay {
  opacity: 1;
}
.feature__list .thumb {
  position: relative;
}
.feature__list .thumb img {
  width: 100%;
}
.feature__list .thumb__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px) brightness(90%);
  font-size: clamp(13px, 1.9033674963vw, 26px);
  color: #FFF;
  font-weight: 700;
  letter-spacing: 0.042em;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.feature__list .thumb__overlayText {
  position: relative;
  padding-right: clamp(22px, 3.2210834553vw, 44px);
}
.feature__list .thumb__overlayIcon {
  width: clamp(12px, 1.756954612vw, 24px);
  height: clamp(12px, 1.756954612vw, 24px);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.feature__list .thumb__overlayIcon:before, .feature__list .thumb__overlayIcon:after {
  content: "";
  background: #fff;
  position: absolute;
}
.feature__list .thumb__overlayIcon:before {
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  margin-top: -0.5px;
}
.feature__list .thumb__overlayIcon:after {
  height: 100%;
  width: 1px;
  top: 0;
  left: 50%;
  margin-left: -0.5px;
}
.feature__list .title {
  font-size: 14px;
  font-weight: 700;
  margin-top: 20px;
}
.feature__list .date {
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-top: 10px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}

@media (max-width: 768px) {
  .feature__list {
    gap: 30px 3%;
  }
  .feature__list .item {
    width: 48.5%;
  }
  .feature__list.--top .item:nth-child(3n+1) {
    width: 100%;
    padding-top: 10px;
  }
  .feature__list.--top .item:nth-child(3n+1) .title {
    margin-top: 16px;
  }
  .feature__list.--top .item:first-child {
    padding-top: 0;
  }
  .feature__list .thumb__overlay {
    display: none;
  }
  .feature__list .title {
    font-size: 12px;
    margin-top: 10px;
  }
  .feature__list .date {
    font-size: 12px;
  }
}
.feature__foot {
  margin-top: 85px;
}
.feature__foot .pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
}
.feature__foot .pager a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  font-size: 22px;
  color: #970645;
  font-weight: 700;
  border-radius: 50%;
}
.feature__foot .pager a.current {
  pointer-events: none;
  color: #fff;
  background: #970645;
}
.feature__foot .pager__arrow {
  background: rgba(151, 6, 69, 0.1);
  position: relative;
}
.feature__foot .pager__arrow:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
}
.feature__foot .pager__arrow.--prev {
  margin-right: 18px;
}
.feature__foot .pager__arrow.--prev:before {
  left: 50%;
  margin-left: 2px;
  border-top: 2px solid #970645;
  border-left: 2px solid #970645;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.feature__foot .pager__arrow.--next {
  margin-left: 18px;
}
.feature__foot .pager__arrow.--next:before {
  right: 50%;
  margin-right: 2px;
  border-top: 2px solid #970645;
  border-right: 2px solid #970645;
  transform: translate(50%, -50%) rotate(45deg);
}
.feature__foot .button {
  text-align: center;
}

@media (max-width: 768px) {
  .feature__foot {
    margin-top: 40px;
  }
  .feature__foot .pager {
    gap: 6px;
    margin-bottom: 40px;
  }
  .feature__foot .pager a {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
  .feature__foot .pager__arrow:before {
    width: 7px;
    height: 7px;
  }
  .feature__foot .pager__arrow.--prev {
    margin-right: 14px;
  }
  .feature__foot .pager__arrow.--prev:before {
    margin-left: 1px;
  }
  .feature__foot .pager__arrow.--next {
    margin-left: 14px;
  }
  .feature__foot .pager__arrow.--next:before {
    margin-right: 1px;
  }
}
/*------------------------------------------
  Feature Detail
------------------------------------------*/
.feature__detail {
  position: relative;
}
.feature__detail .detail-visual {
  position: absolute;
  top: -60px;
  right: 0;
  width: 50%;
}
.feature__detail .detail-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature__detail .detail-head {
  min-height: 37.4816983895vw;
  padding-top: 64px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.feature__detail .detail-head > * {
  width: 46%;
}
.feature__detail .detail-head__date {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-bottom: 20px;
}
.feature__detail .detail-head__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 30px;
}
.feature__detail .detail-head__text {
  line-height: 1.75;
}
.feature__detail .detail-head__sub {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.78;
  color: #898888;
}
.feature__detail .detail-contents {
  border-top: 1px solid #E3E3E3;
  border-bottom: 1px solid #E3E3E3;
  padding: 70px 0 60px;
}
.feature__detail .detail-contents > .inner {
  width: 70%;
}
.feature__detail .detail-interview {
  margin-bottom: 70px;
}
.feature__detail .detail-interview > * {
  margin-bottom: 40px;
}
.feature__detail .detail-interview > *:last-child {
  margin-bottom: 0;
}
.feature__detail .detail-interview__title {
  font-size: 28px;
  line-height: 1.78;
  font-weight: 700;
  color: #970645;
}
.feature__detail .detail-interview__image {
  text-align: center;
}
.feature__detail .detail-interview__image img {
  width: 80%;
}
.feature__detail .detail-interview__lead {
  position: relative;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 700;
  margin-bottom: 30px;
  padding-left: 40px;
}
.feature__detail .detail-interview__lead:before {
  content: "";
  width: 30px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  top: 0.8em;
}
.feature__detail .detail-interview__lead.--no-border {
  padding-left: 0;
}
.feature__detail .detail-interview__lead.--no-border:before {
  content: none;
}
.feature__detail .detail-interview__text {
  line-height: 1.75;
  display: flex;
}
.feature__detail .detail-interview__text .name {
  min-width: 3em;
}
.feature__detail .detail-interview__text .text {
  flex: 1;
}
.feature__detail .detail-interview__text .text p {
  margin: 20px 0;
}
.feature__detail .detail-interview__text .text p:first-child {
  margin-top: 0;
}
.feature__detail .detail-interview__text .text p:last-child {
  margin-bottom: 0;
}
.feature__detail .detail-interview__text .image {
  text-align: center;
}
.feature__detail .detail-interview__text .image img {
  width: 80%;
}
.feature__detail .detail-link__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.feature__detail .detail-link__list li {
  line-height: 1.66;
  margin-bottom: 1em;
}
.feature__detail .detail-link__list li:last-child {
  margin-bottom: 0;
}
.feature__detail .detail-link__list a {
  color: #898888;
  text-decoration: underline;
}
.feature__detail .detail-profile {
  margin-top: 70px;
  background: #F6F6F6;
  padding: 40px;
}
.feature__detail .detail-profile__title {
  font-size: 24px;
  line-height: 1.75;
  font-weight: 700;
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid #232323;
}
.feature__detail .detail-profile__name {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 700;
}
.feature__detail .detail-profile__sub {
  font-size: 14px;
  margin-bottom: 20px;
  color: #898888;
}
.feature__detail .detail-profile__text {
  line-height: 1.75;
}
.feature__detail .detail-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 70px;
}
.feature__detail .detail-sns__title {
  font-size: 18px;
  letter-spacing: 0.042em;
  font-weight: 700;
}
.feature__detail .detail-sns__list {
  display: flex;
  gap: 16px;
}
.feature__detail .detail-sns__list img {
  width: 40px;
}
.feature__detail .detail-foot {
  padding-top: 60px;
}
.feature__detail .detail-foot__title {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 30px;
}
.feature__detail .detail-foot__list {
  margin-bottom: 80px;
}
.feature__detail .detail-foot__button {
  text-align: center;
}

@media (max-width: 768px) {
  .feature__detail .detail-visual {
    position: static;
    width: 100%;
    height: auto;
  }
  .feature__detail .detail-head {
    min-height: auto;
    padding: 20px 38px 0;
    margin-bottom: 20px;
  }
  .feature__detail .detail-head > * {
    width: 100%;
  }
  .feature__detail .detail-head__date {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .feature__detail .detail-head__title {
    font-size: 18px;
    line-height: 1.77;
    margin-bottom: 10px;
  }
  .feature__detail .detail-head__text {
    font-size: 12px;
    line-height: 1.833;
  }
  .feature__detail .detail-head__sub {
    font-size: 12px;
    line-height: 1.5;
  }
  .feature__detail .detail-contents {
    padding: 30px 0 50px;
  }
  .feature__detail .detail-contents > .inner {
    width: 100%;
    padding: 0 38px;
  }
  .feature__detail .detail-interview {
    margin-bottom: 50px;
  }
  .feature__detail .detail-interview > * {
    margin-bottom: 20px;
  }
  .feature__detail .detail-interview__title {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.844;
  }
  .feature__detail .detail-interview__image {
    margin-bottom: 16px;
  }
  .feature__detail .detail-interview__image img {
    width: 100%;
  }
  .feature__detail .detail-interview__lead {
    font-size: 12px;
    margin-bottom: 14px;
    padding-left: 28px;
  }
  .feature__detail .detail-interview__lead:before {
    width: 18px;
    top: 0.7em;
  }
  .feature__detail .detail-interview__text {
    font-size: 12px;
    line-height: 1.833;
  }
  .feature__detail .detail-interview__text .image img {
    width: 100%;
  }
  .feature__detail .detail-link__title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .feature__detail .detail-link__list li {
    font-size: 12px;
  }
  .feature__detail .detail-profile {
    margin-top: 50px;
    padding: 22px;
  }
  .feature__detail .detail-profile__title {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 16px;
  }
  .feature__detail .detail-profile__name {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .feature__detail .detail-profile__sub {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .feature__detail .detail-profile__text {
    font-size: 12px;
    line-height: 1.833;
  }
  .feature__detail .detail-sns {
    margin-top: 50px;
  }
  .feature__detail .detail-foot {
    padding-top: 50px;
  }
  .feature__detail .detail-foot__title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .feature__detail .detail-foot__list {
    margin-bottom: 50px;
  }
  .feature__detail .detail-foot__button {
    text-align: center;
  }
}