@charset "utf-8";

.p-subMain {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

/* subheader
------------------------------*/
.p-subheader {
  width: 100%;
}

@media all and (max-width: 966px) {
  .p-subheader {
  }
}

@media all and (max-width: 576px) {
  .p-subheader {
  }
}

.p-subheader__inner {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  max-width: min(1440px, 144rem);
  margin: 0 auto;
}

@media all and (max-width: 966px) {
  .p-subheader__inner {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media all and (max-width: 576px) {
  .p-subheader__inner {
    width: 100%;
  }
}

.p-subHeader__wrapper {
  width: min(966px, 96.6rem);
  margin: 0 auto;
  position: absolute;
  top: min(252px, 25.2rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

@media all and (max-width: 966px) {
  .p-subHeader__wrapper {
    position: static;
    transform: none;
    margin-top: -120px;
  }
}

@media all and (max-width: 576px) {
  .p-subHeader__wrapper {
    margin-top: -104px;
  }
}

.p-subheader__header {
  position: absolute;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  row-gap: 17px;
  position: relative;
  z-index: 1;
  max-width: 568px;
}

@media all and (max-width: 966px) {
  .p-subheader__header {
    position: static;
  }
}

@media all and (max-width: 576px) {
  .p-subheader__header {
    padding-left: 25px;
    row-gap: 12px;
  }
}

.p-subheader__headding {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

@media all and (max-width: 966px) {
  .p-subheader__headding {
    gap: 8px;
  }
}

@media all and (max-width: 576px) {
  .p-subheader__headding {
    gap: 4px;
  }
}

.p-subheader__headding div {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
}

@media all and (max-width: 576px) {
  .p-subheader__headding div {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.p-subheader__headding div::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  display: block;
  background-color: #ffffff;
}

.p-subheader.is-show .p-subheader__headding div::before {
  animation: curtain 0.6s ease-out 0s forwards;
}

.p-subheader__label {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media all and (max-width: 576px) {
  .p-subheader__label {
    gap: 4px;
  }
}

.p-subheader__label div {
  position: relative;
  display: flex;
}

.p-subheader__label div::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  display: block;
  background-color: #140078;
}

.p-subheader.is-show .p-subheader__label div::before {
  animation: curtain 0.6s ease-out 0s forwards;
}

@keyframes curtain {
  0% {
    left: 0;
    right: 100%;
  }
  50% {
    left: 0;
    right: 0;
  }
  51% {
    left: 0;
    right: 0;
  }
  100% {
    left: 100%;
    right: 0;
  }
}

.p-subheader__headdingText {
  font-size: 30px;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  display: inline-block;
  background-color: #140078;
  padding: 2.5px 30px;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.3s ease-out 0.3s;
}

.p-subheader.is-show .p-subheader__headdingText {
  clip-path: inset(0 0 0 0);
}

@media all and (max-width: 966px) {
  .p-subheader__headdingText {
    font-size: 24px;
    padding: 2.5px 20px;
  }
}

@media all and (max-width: 576px) {
  .p-subheader__headdingText {
    font-size: 18px;
    padding: 2px 12px;
    letter-spacing: 0;
  }

  .p-subheader__headdingText:has(.p-subheader__headdingBlock) {
    display: contents;
  }
}

.p-subheader__headdingBlock {
  display: contents;
}

@media all and (max-width: 576px) {
  .p-subheader__headdingBlock {
    display: block;
  }
}

.p-subheader__label span {
  font-size: 16px;
  color: #140078;
  line-height: 1.2;
  letter-spacing: 0.1em;
  display: inline-block;
  background-color: #ffffff;
  padding: 8px 12px 3px;
  clip-path: inset(0 100% 0 0);
  transition: all 0.3s ease-out 0.3s;
}

.p-subheader.is-show .p-subheader__label span {
  clip-path: inset(0 0 0 0);
}

@media all and (max-width: 576px) {
  .p-subheader__label span {
    font-size: 14px;
    padding: 4px 10px 0;
  }
}

.p-subheader__img {
  margin-top: -175px;
  transform-origin: top center;
  transform: translateX(min(76px, calc(76 / 1440 * 100vw))) scale(0.9);
  width: 100%;
  max-width: 991px;
  mask-image: url(../images/interview/kawakubo/fv_mask.png);
  mask-size: 100% 100%;
  margin-left: auto;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease-out 0.3s;
}

.p-subheader.is-show .p-subheader__img {
  transform: translateX(min(76px, calc(76 / 1440 * 100vw))) scale(1);
}

@media all and (max-width: 966px) {
  .p-subheader__img {
    margin-top: -249px;
    transform: translateX(76px);
    mask-image: url(../images/interview/kawakubo/fv_mask-sp.png);
  }
  .p-subheader__img::before {
    content: '';
    display: block;
    position: absolute;
    top: 134px;
    left: 48%;
    translate: -50% 0;
    z-index: 1;
    width: 100vw;
    height: 90px;
    background-color: #fff;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.7;
  }
}

@media all and (max-width: 576px) {
  .p-subheader__img {
    transform: translateX(36px);
    margin-top: -147px;
    position: relative;
  }
  .p-subheader__img::before {
    top: 80px;
    height: 53px;
  }
}

.p-subheader__imgFrame {
  display: flex;
  height: 100%;
  width: 100%;
}

@media all and (max-width: 966px) {
  .p-subheader__imgFrame {
  }
}

@media all and (max-width: 576px) {
  .p-subheader__imgFrame {
  }
}

.p-subheader__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform: scale(1.1);
  opacity: 0;
  transition: all 0.3s ease-out 0.3s;
}

.p-subheader.is-show .p-subheader__img img {
  transform: scale(1);
  opacity: 1;
}

@media all and (max-width: 576px) {
  .p-subheader__img img {
    transform-origin: bottom center;
  }
}

.p-subheader__date {
  font-size: 14px;
  color: #666;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
  text-align: right;
}

@media all and (max-width: 576px) {
  .p-subheader__date {
    margin-bottom: 10px;
  }
}

.p-subheader__lead {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-subheader__lead p {
  margin: 0;
}

/* subcontent
------------------------------*/
.p-subcontent {
}

.p-subcontent:not(:has(.p-image)) {
  padding-bottom: 146px;
}

@media all and (max-width: 576px) {

  .p-subcontent:not(:has(.p-image)) {
    padding-bottom: 80px;
  }
}

.p-subcontent__inner {
  width: min(966px, 96.6rem);
  margin: 0 auto;
}
@media all and (max-width: 576px) {
  .p-subcontent__inner {
    width: 100%;
    padding-inline: 25px;
  }
}

/* intro
------------------------------*/
.p-subheader.is-show + .p-subcontent .p-intro {
  opacity: 1;
}

.p-intro {
  margin-top: 30px;
  opacity: 0;
  transition: all 0.3s ease-out 0.3s;
}

.p-intro__container {
  margin-top: 70px;
}

@media all and (max-width: 576px) {
  .p-intro__container {
    margin-top: 40px;
  }
}

.p-intro__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 20px;
  margin-top: 10px;
  padding: 10px;
}
.p-intro__main .p-intro__item {
  min-width: 320px;
}

@media all and (max-width: 966px) {
  .p-intro__main {
    flex-direction: column;
    row-gap: 10px;
  }
}

@media all and (max-width: 576px) {
  .p-intro__main {
    padding-inline: 0;
  }
}

.p-intro__mainText {
  margin: 0;
  max-width: 600px;
  font-size: 14px;
  line-height: 1.8;
}

.p-intro__header {
  min-height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-block: 1px solid #140078;
}

@media all and (max-width: 576px) {
  .p-intro__header {
    min-height: unset;
    margin-right: 20px;
  }
}

.p-intro__heading {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #140078;
  padding-left: 38px;
  position: relative;
}
.p-intro__heading::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: #140078;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  translate: 0 -50%;
}

.p-intro__deco {
  display: grid;
  grid-template-rows: subgrid;
  align-items: center;
  justify-content: center;
  grid-row: span 1;
}

.p-intro__deco img {
  width: 37px;
}

.p-intro__list {
  margin-top: 10px;
  padding-inline: 10px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  column-gap: 4px;
  row-gap: 15px;
}

.p-intro__list.--wide {
  margin-right: -70px;
}

@media all and (max-width: 966px) {
  .p-intro__list {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 40px;
    margin-top: 60px;
  }
  .p-intro__list.--wide {
    margin-right: 0;
  }
}

@media all and (max-width: 576px) {
  .p-intro__list {
    justify-content: start;
    padding-inline: 0;
  }
  .p-intro__list.--wide {
    padding-inline: 10px;
  }
}

.p-intro__item {
  width: calc(100% / 3 - 8px / 3);
  display: grid;
  grid-template-columns: 90px auto;
  align-items: center;
  column-gap: 12px;
  position: relative;
}
.p-intro__list .p-intro__item:not(:last-child)::after {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background-color: #999999;
  position: absolute;
  top: 0;
  right: 8px;
}
@media all and (max-width: 966px) {
  .p-intro__item {
    min-width: 320px;
  }
  .p-intro__list .p-intro__item:not(:last-child)::after {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    right: unset;
    width: 70px;
    height: 1px;
  }
  .p-intro__list .p-intro__item::after {
    content: '';
    display: block;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    right: unset;
    width: 70px;
    height: 1px;
    background-color: #999999;
  }
}
@media all and (max-width: 576px) {
  .p-intro__item {
    min-width: unset;
    width: 100%;
    grid-template-columns: 70px auto;
  }
}

.p-intro__img {
  display: flex;
}

.p-intro__info {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
}

.p-intro__position {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

.p-intro__position span {
  display: inline-block;
}

@media all and (max-width: 966px) {
  .p-intro__position span {
    display: block;
  }
}

.p-intro__name {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

.p-intro__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}


/* index
------------------------------*/
.p-index {
  margin-top: 80px;
}

@media all and (max-width: 576px) {
  .p-index {
    margin-top: 40px;
  }
}

.p-index__inner {
  width: min(966px, 96.6rem);
  margin: 0 auto;
  border-top: solid 1px #140078;
  border-bottom: solid 1px #140078;
  padding: 30px 0;
}

@media all and (max-width: 576px) {
  .p-index__inner {
    width: 100%;
    padding: 20px 0;
  }
}

.p-index__heading {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  margin-bottom: 13px;
}

@media all and (max-width: 576px) {
  .p-index__heading {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

.p-index__heading::before {
  content: '';
  display: block;
  width: 30px;
  aspect-ratio: 30/2;
  background: linear-gradient(
    90deg,
    rgba(20, 0, 120, 1) 0%,
    rgba(20, 0, 120, 1) 50%,
    rgba(186, 148, 84, 1) 50%,
    rgba(186, 148, 84, 1) 100%
  );
  margin-right: 14px;
  margin-top: 0.9em;
}

@media all and (max-width: 576px) {
  .p-index__heading::before {
    margin-right: 8px;
  }
}

.p-index__list li {
  border-bottom: solid 1px #d9d9d9;
  padding-bottom: 12px;
  margin-bottom: 10px;
}

@media all and (max-width: 576px) {
  .p-index__list li {
    padding-bottom: 10px;
    margin-bottom: 8px;
  }
}

.p-index__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.p-index__list li a + a {
  margin-top: 5px;
}

.p-index__list li a {
  display: flex;
  align-items: center;
}

.p-index__list li a i {
  display: inline-block;
  margin-right: 12px;
  width: 66px;
  aspect-ratio: 66/24;
  border-radius: 9999px;
  border: solid 1px #140078;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease-out;
  vertical-align: -0.45em;
}

@media all and (max-width: 576px) {
  .p-index__list li a i {
    width: 36px;
    aspect-ratio: 36 / 24;
    vertical-align: -0.3em;
    margin-right: 12px;
  }
}

@media (hover: hover) {
  .p-index__list li a:hover i,
  .p-index__list li a:focus i {
    background-color: #140078;
  }
}

.p-index__list li a i::before {
  content: '';
  display: block;
  width: 16px;
  aspect-ratio: 15 / 9;
  mask-image: url(../images/common/ico_arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  background-color: #140078;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: all 0.3s ease-out;
}

@media (hover: hover) {
  .p-index__list li a:hover i::before,
  .p-index__list li a:focus i::before {
    background-color: #fff;
  }
}



/* sec
------------------------------*/
.p-sec {
  margin-top: 80px;
}
.p-sec + .p-sec {
  margin-top: 60px;
}

@media all and (max-width: 576px) {
  .p-sec {
    margin-top: 60px;
  }
}

.p-sec__inner {
}

.p-sec__block {
}

@media all and (max-width: 576px) {
  .p-sec__block.--row {
    order: 1;
  }
  .p-sec__block {
    order: 3;
  }
}

.p-sec__block--spacing {
  margin-top: 12px;
}

.p-sec__text {
  margin: 0;
}

.p-sec__text + .p-sec__text {
  margin-top: 12px;
}

.p-sec__text.--top-spacing {
  margin-top: 22px;
}

.p-sec__text > span {
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #140078;
  /* background-color: #ffffff; */
}
.p-sec__text > span.--gold {
  color: #5A3C00;
}

.p-sec__inner {
  width: min(966px, 96.6rem);
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media all and (max-width: 576px) {
  .p-sec__inner {
    width: 100%;
    gap: 50px;
  }
}

.p-sec__heading {
  color: #140078;
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 15px;
  margin: 0 0 -35px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  position: relative;
}

@media all and (max-width: 576px) {
  .p-sec__heading {
    font-size: 22px;
    margin-bottom: -25px;
  }
  .p-sec__heading br {
    display: none;
  }
}

.p-sec__heading::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ba9454;
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-sec__heading::after {
  content: '';
  display: block;
  width: 100px;
  height: 2px;
  background-color: #140078;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media all and (max-width: 576px) {
  .p-sec__heading::after {
    width: 50px;
  }
}

.p-sec__container {
}

@media all and (max-width: 576px) {
  .p-sec__container {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
}

.p-sec__info {
  width: 40%;
  max-width: 338px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-left: 40px;
  margin-bottom: 32px;
  float: right;
}

@media all and (max-width: 966px) {
  .p-sec__info {
    margin-left: 24px;
  }
}

@media all and (max-width: 576px) {
  .p-sec__info {
    order: 2;
    margin: 0;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    float: none;
  }
}

.p-sec__infoSpace {
  float: left;
}
@media all and (max-width: 576px) {
  .p-sec__infoSpace {
    display: none;
  }
}

.p-sec__infoBottom {
  clear: both;
  width: 43.6%;
  max-width: 422px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: 4px;
  margin-right: 40px;
  margin-bottom: 10px;
  float: left;
}
.p-sec__infoBottom.--bottomSpace {
  padding-bottom: 120px;
}
.p-sec__infoBottom.--right {
  margin-right: 0;
  margin-left: 40px;
  margin-bottom: 32px;
  padding-bottom: 115px;
  float: right;
}
@media all and (max-width: 576px) {
  .p-sec__infoBottom {
    order: 3;
    margin: 0;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    float: none;
  }
  .p-sec__infoBottom.--bottomSpace {
    padding-bottom: 0;
  }
  .p-sec__infoBottom.--right {
    margin: 0;
    float: none;
    order: 5;
    padding-bottom: 0;
  }
}

.p-sec__img {
  display: flex;
}

.p-sec__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}


[id] {
  padding-top: 80px;
  margin-top: -80px;
}

@media all and (max-width: 576px) {
  [id] {
    padding-top: 60px;
    margin-top: -60px;
  }
}


.p-images {
  margin-top: 20px;
  margin-bottom: 112px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

@media all and (max-width: 576px) {
  .p-images {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 128px;
  }
}

.p-images__cont {
  display: flex;
}




.p-relate__linkFrame {
  display: flex;
  justify-content: center;
}

@media all and (max-width: 576px) {
  .p-relate__linkFrame {
    flex-direction: column;
    align-items: center;
  }
}


.p-relate__link {
  position: relative;
  width: 306px;
  aspect-ratio: 306 / 62;
  background-color: #140078;
  border: solid 1px #140078;
  color: #fff;
  padding: 20px 30px;
  text-align: center;
  border-radius: 9999px;
  font-size: 14px;
}

@media all and (max-width: 576px) {
  .p-relate__link {
    width: 306px;
    aspect-ratio: 306 / 62;
    padding: 17px 20px;
  }
}

.p-relate__link + .p-relate__link {
  margin-left: 24px;
}

@media all and (max-width: 576px) {
  .p-relate__link + .p-relate__link {
    margin-left: 0;
    margin-top: 10px;
  }
}

.p-relate__linkIcon {
    display: block;
    width: 18px;
    aspect-ratio: 18 / 10;
    mask-image: url(../images/common/ico_arrow.svg);
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: contain;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    translate: 0 -50%;
    transition: all 0.3s ease-out;
}

@media (hover: hover) {
  .p-relate__link:hover,
  .p-relate__link:focus {
    background-color: #fff;
    color: #140078;
    border: solid 1px #140078;
  }
  .p-relate__link:hover .p-relate__linkIcon,
  .p-relate__link:focus .p-relate__linkIcon {
    background-color: #140078;
  }
}
