@charset "UTF-8";

/* ==========================================
  /people CSS
============================================= */


/* index
========================================== */
.people-index .p-people-keyvisualBlock {
  margin-inline: calc(-1 * var(--value-80));
  overflow: hidden;
  width: calc(100% + calc(var(--value-80) * 2));
}
.people-index .p-people-keyvisualBlock__slider {
  animation: infiniteslider 120s linear infinite;
  display: flex;
  width: max-content;
}
.people-index .p-people-keyvisualBlock__slider_item {
  flex-shrink: 0;
  width: 748px;
}
.people-index .p-people-keyvisualBlock__slider_item img {
  display: block;
  height: auto;
  width: 100%;
}
/* アニメーション */
@keyframes infiniteslider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.people-index .p-people-indexList {
  margin-top: var(--value-100);
}
.people-index .p-people-indexList__item {
  margin-top: var(--value-64);
}
.people-index .p-people-indexList__item > a {
  display: block;
}
.people-index .p-people-indexList__item .item-thumb {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.people-index .p-people-indexList__item .item-thumb img {
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  height: 100%;
  transition: transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 100%;
  z-index: -1;
}
.people-index .p-people-indexList__item .item-text {
  margin-top: var(--value-12);
}
.people-index .p-people-indexList__item .text-title {
  font-size: var(--fs-22);
  line-height: calc(32 / 22);
}
.people-index .p-people-indexList__item .text-information {
  color: var(--color-gray7);
  font-family: var(--ff-YuGothic);
  font-size: var(--fs-14);
  margin-top: var(--value-8);
  line-height: calc(22 / 14);
}
/* PC */
@media screen and (min-width: 769px), print {
  .people-index .p-people-indexList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-inline: auto;
    max-width: 1048px;
  }
  .people-index .p-people-indexList__item {
    margin-top: var(--value-100);
    width: calc(500 / 1048 * 100%);
  }
  .people-index .p-people-indexList__item:nth-of-type(-n+2) {
    margin-top: 0;
  }
  .people-index .p-people-indexList__item > a:hover {
    opacity: 1;
  }
  .people-index .p-people-indexList__item > a:hover .item-thumb img {
    transform: translate(-50%,-50%) scale(1.05);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .people-index .p-people-keyvisualBlock__slider_item {
    width: calc(748 / 1240 * 100vw);
  }
  .people-index .p-people-indexList__item .item-thumb {
    height: calc(260 / 1240 * 100vw);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .people-index .p-people-keyvisualBlock {
    margin-inline: calc(-1 * var(--value-18));
    width: calc(100% + calc(var(--value-18) * 2));
  }
  .people-index .p-people-keyvisualBlock__slider {
    animation: infiniteslider 100s linear infinite;
  }
  .people-index .p-people-keyvisualBlock__slider_item {
    width: calc(470 / 375 * 100vw);
  }
  .people-index .p-people-indexList {
    margin-top: var(--value-40);
    margin-bottom: var(--value-60);
    margin-inline: calc(-1 * var(--value-18));
  }
  .people-index .p-people-indexList__item {
    margin-top: var(--value-60);
  }
  .people-index .p-people-indexList__item:nth-of-type(1) {
    margin-top: 0;
  }
  .people-index .p-people-indexList__item .item-thumb {
    height: calc(200 / 375 * 100vw);
  }
  .people-index .p-people-indexList__item .item-text {
    margin-top: var(--value-12);
    padding-inline: var(--value-18);
  }
  .people-index .p-people-indexList__item .text-title {
    font-size: var(--fs-20);
    line-height: calc(26 / 20);
  }
  .people-index .p-people-indexList__item .text-information {
    font-size: var(--fs-14);
    line-height: calc(20 / 14);
    margin-top: var(--value-8);
  }
}








/* detail
========================================== */

/* keyvisual */
.people-detail .p-component-keyvisualBlock__image img {
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  height: 100%;
  width: 100%;
  z-index: -1;
}
.people-detail .p-component-keyvisualBlock__text {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
}
.people-detail .p-component-keyvisualBlock h1,
.people-detail .p-component-keyvisualBlock .text-overview {
  -webkit-animation: fade-tilt 1.5s cubic-bezier(0,.25,1,1) 0.1s both;
          animation: fade-tilt 1.5s cubic-bezier(0,.25,1,1) 0.1s both;
}
@-webkit-keyframes fade-tilt {
  0% {
    opacity: 0;
    -webkit-mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-size: 300% 300%;
            mask-size: 300% 300%;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: 130% 130%;
            mask-position: 130% 130%;
    mask-position: 130% 130%;
  }
  100% {
    opacity: 1;
    -webkit-mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-size: 300% 300%;
            mask-size: 300% 300%;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: 130% 130%;
            mask-position: 130% 130%;
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
  }
}
@keyframes fade-tilt {
  0% {
    opacity: 0;
    -webkit-mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-size: 300% 300%;
            mask-size: 300% 300%;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: 130% 130%;
            mask-position: 130% 130%;
    mask-position: 130% 130%;
  }
  100% {
    opacity: 1;
    -webkit-mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-size: 300% 300%;
            mask-size: 300% 300%;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: 130% 130%;
            mask-position: 130% 130%;
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
  }
}
.people-detail .p-component-keyvisualBlock h1 {
  font-size: var(--fs-56);
  line-height: calc(72 / 56);
  margin-top: var(--value-4);
}
.people-detail .p-component-keyvisualBlock .text-overview {
  font-family: var(--ff-YuGothic);
}
.people-detail .p-component-keyvisualBlock .tag-category {
  background: rgba(var(--color-white-rgb), 0.6);
  color: var(--color-primary);
  display: inline-block;
  line-height: calc(20 / 16);
  padding: 2px 10px;
}
.people-detail .p-component-keyvisualBlock .text-information {
  font-size: var(--fs-20);
  line-height: calc(28 / 20);
  margin-top: var(--value-4);
}
/* PC */
@media screen and (min-width: 769px), print {
  .people-detail .p-component-keyvisualBlock {
    color: var(--color-white);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    height: calc(551 / 1440 * 100vw);
    overflow: hidden;
    padding-inline: var(--value-80);
    position: relative;
  }
  .people-detail .p-component-keyvisualBlock__inner {
    margin-inline: auto;
    max-width: 1200px;
    width: 100%;
  }
  .people-detail .p-component-keyvisualBlock__text {
    padding-bottom: calc(30 / 1440 * 100vw);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .people-detail .p-component-keyvisualBlock__image {
    height: calc(204 / 375 * 100vw);
    overflow: hidden;
    position: relative;
  }
  .people-detail .p-component-keyvisualBlock__text {
	  border-bottom: 1px solid var(--color-gray8);
    margin-inline: var(--value-18);
    padding-top: var(--value-20);
    padding-bottom: var(--value-18);
  }
  .people-detail .p-component-keyvisualBlock h1 {
    font-size: var(--fs-24);
    line-height: calc(36 / 24);
    margin-top: var(--value-8);
  }
  .people-detail .p-component-keyvisualBlock .tag-category {
    background: #E6E6E6;
    font-size: var(--fs-10);
    line-height: 1;
    padding: 4px 6px;
  }
  .people-detail .p-component-keyvisualBlock .text-information {
    font-size: var(--fs-14);
    line-height: calc(20 / 14);
    margin-top: var(--value-8);
  }
}


/* section */
/* PC */
@media screen and (min-width: 769px), print {
  .people-detail .l-section__inner {
    max-width: 1048px;
  }
}


/* introduction */
.people-detail .l-section--introduction {
  font-family: var(--ff-YuGothic);
  padding-top: var(--value-40);
  padding-bottom: var(--value-60);
}
.people-detail .l-section--introduction .p-introduction-memberBlock {
  border-top: 1px solid var(--color-gray7);
  margin-top: var(--value-50);
  padding-top: var(--value-50);
}
.people-detail .l-section--introduction .p-introduction-memberBlock__heading {
  color: var(--color-gray7);
  font-family: var(--ff-EBGaramond);
  font-size: var(--fs-32);
  line-height: calc(40 / 32);
}
.people-detail .l-section--introduction .p-introduction-memberBlock__body {
  margin-top: var(--value-16);
}
.people-detail .l-section--introduction .p-introduction-memberBlock .list-member__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.people-detail .l-section--introduction .p-introduction-memberBlock .list-member__item .item-image {
  border-radius: 50%;
  overflow: hidden;
  max-width: 86px;
  width: calc(86 / 1240 * 100vw);
}
.people-detail .l-section--introduction .p-introduction-memberBlock .list-member__item .item-text {
  padding-left: var(--value-16);
}
.people-detail .l-section--introduction .p-introduction-memberBlock .list-member__item .text-position {
  color: var(--color-gray7);
  line-height: calc(22 / 16);
}
.people-detail .l-section--introduction .p-introduction-memberBlock .list-member__item .text-name {
  font-size: var(--fs-20);
  line-height: calc(24 / 20);
  margin-top: var(--value-4);
}
.people-detail .l-section--introduction .p-introduction-explanationBlock {
  background: #F0F0F1;
  margin-top: var(--value-48);
  padding-block: var(--value-40);
  padding-left: var(--value-60);
  padding-right: var(--value-40);
}
.people-detail .l-section--introduction .p-introduction-explanationBlock__image {
  overflow: hidden;
}
.people-detail .l-section--introduction .p-introduction-explanationBlock__image > a {
  display: block;
  position: relative;
  height: 100%;
}
.people-detail .l-section--introduction .p-introduction-explanationBlock__image img {
  transition: transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 100%;
}
.people-detail .l-section--introduction .p-introduction-explanationBlock__image .c-icon-arrow {
  height: 42px;
  bottom: 15px;
  right: 15px;
  width: 42px;
}
.people-detail .l-section--introduction .p-introduction-explanationBlock dl dt {
  font-size: var(--fs-19);
  font-weight: bold;
  line-height: calc(30 / 19);
}
.people-detail .l-section--introduction .p-introduction-explanationBlock dl dd {
  font-size: var(--fs-14);
  line-height: calc(26 / 14);
  margin-top: var(--value-12);
}
/* PC */
@media screen and (min-width: 769px), print {
  .people-detail .l-section--introduction .p-introduction-memberBlock .list-member {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: calc(-1 * var(--value-20));
  }
  .people-detail .l-section--introduction .p-introduction-memberBlock .list-member__item {
    margin-bottom: var(--value-20);
    margin-right: calc(48 / 1048 * 100%);
  }
  .people-detail .l-section--introduction .p-introduction-memberBlock .list-member[data-column-pc="4"] .list-member__item {
    width: calc(205 / 1048 * 100%);
  }
  .people-detail .l-section--introduction .p-introduction-memberBlock .list-member[data-column-pc="4"] .list-member__item:nth-of-type(4n+4) {
    margin-right: 0;
  }
  .people-detail .l-section--introduction .p-introduction-explanationBlock {
    display: flex;
    justify-content: space-between;
  }
  .people-detail .l-section--introduction .p-introduction-explanationBlock__text {
    padding-right: var(--value-40);
  }
  .people-detail .l-section--introduction .p-introduction-explanationBlock__image {
    min-width: calc(346 / 948 * 100%);
  }
  .people-detail .l-section--introduction .p-introduction-explanationBlock__image a:hover {
    opacity: 1;
  }
  .people-detail .l-section--introduction .p-introduction-explanationBlock__image a:hover img {
		transform: scale(1.05);
  }
  .people-detail.case9 .l-section--introduction .p-introduction-memberBlock .list-member__item .text-position {
    margin-right: calc(-1 * var(--value-30));
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .people-detail .l-section--introduction {
    padding-top: var(--value-30);
    padding-bottom: var(--value-24);
  }
  .people-detail .l-section--introduction .l-section__inner > .text-lead {
    font-size: var(--fs-15);
    line-height: calc(30 / 15);
  }
  .people-detail .l-section--introduction .p-introduction-memberBlock {
    border-top: 1px solid var(--color-gray7);
    margin-top: var(--value-30);
    padding-top: var(--value-20);
  }
  .people-detail .l-section--introduction .p-introduction-memberBlock__heading {
    font-size: var(--fs-26);
    line-height: calc(40 / 26);
  }
  .people-detail .l-section--introduction .p-introduction-memberBlock__body {
    margin-top: var(--value-8);
  }
  .people-detail .l-section--introduction .p-introduction-memberBlock .list-member__item:nth-of-type(n+2) {
    margin-top: var(--value-12);
  }
  .people-detail .l-section--introduction .p-introduction-memberBlock .list-member__item .item-image {
    width: calc(76 / 375 * 100vw);
  }
  .people-detail .l-section--introduction .p-introduction-memberBlock .list-member__item .item-text {
    padding-left: calc(12 / 375 * 100vw);
    width: calc(100% - calc(76 / 375 * 100vw));
  }
  .people-detail .l-section--introduction .p-introduction-memberBlock .list-member__item .text-position {
    font-size: var(--fs-12);
    line-height: calc(14 / 12);
  }
  .people-detail .l-section--introduction .p-introduction-memberBlock .list-member__item .text-name {
    font-size: var(--fs-16);
    line-height: calc(24 / 16);
  }
  .people-detail .l-section--introduction .p-introduction-explanationBlock {
    margin-top: var(--value-40);
    padding: var(--value-20);
  }
  .people-detail .l-section--introduction .p-introduction-explanationBlock__image {
    height: calc(193 / 375 * 100vw);
    margin-top: var(--value-20);
  }
  .people-detail .l-section--introduction .p-introduction-explanationBlock dl dt {
    font-size: var(--fs-16);
  }
  .people-detail .l-section--introduction .p-introduction-explanationBlock dl dd {
    line-height: calc(24 / 14);
    margin-top: var(--value-12);
  }
}


/* interview */
.people-detail .l-section--interview {
  padding-top: var(--value-60);
  padding-bottom: var(--value-120);
}
.people-detail .l-section--interview .p-interview-contentsBlock + .p-interview-contentsBlock {
  margin-top: var(--value-80);
}
.people-detail .l-section--interview .p-interview-contentsBlock *:not(.p-interview-heading02) {
  font-family: var(--ff-YuGothic);
}
.people-detail .l-section--interview .p-interview-heading02 {
  font-size: var(--fs-44);
  line-height: calc(64 / 46);
}
.people-detail .l-section--interview .p-interview-heading02.js-animation-shine {
  background-image: url(/common/images/bg_animation_orange.png);
}
.people-detail .l-section--interview .p-interview-heading02 + * {
  margin-top: var(--value-52) !important;
}
.people-detail .l-section--interview * + .p-interview-heading02 {
  margin-top: var(--value-160);
}
.people-detail .l-section--interview .p-interview-contentsBlock__text > p {
  line-height: calc(32 / 16);
  padding-left: 74px;
  position: relative;
}
.people-detail .l-section--interview .p-interview-contentsBlock__text[data-type="one-person"] > p {
  padding-left: 0 !important;
}
.people-detail .l-section--interview .p-interview-contentsBlock__text > p .text-name {
  color: var(--color-gray7);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.people-detail .l-section--interview .p-interview-contentsBlock__text > p + p {
  margin-top: var(--value-24);
}
.people-detail .l-section--interview .p-interview-contentsBlock__image > figure + figure {
  margin-top: var(--value-12);
}
.people-detail .l-section--interview .block-message {
  border: 1px solid var(--color-gray7);
  font-family: var(--ff-YuGothic);
  margin-top: var(--value-60);
  padding: var(--value-54) var(--value-60);
}
.people-detail .l-section--interview h4 {
  font-size: var(--fs-20);
  font-weight: bold;
  line-height: calc(28 / 20);
}
.people-detail .l-section--interview h4 + * {
  margin-top: var(--value-12);
}
.people-detail .l-section--interview .block-message__image figcaption {
  line-height: calc(24 / 16);
  margin-top: var(--value-12);
}
.people-detail .l-section--interview .block-message__text {
  line-height: calc(32 / 16);
}
.people-detail .l-section--interview .block-message__text > p + p {
  margin-top: var(--value-32);
}
/* PC */
@media screen and (min-width: 769px), print {
  .people-detail .l-section--interview .p-interview-contentsBlock {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .people-detail .l-section--interview .p-interview-contentsBlock[data-layout-pc="image-left"] {
    flex-direction: row-reverse;
  }
  .people-detail .l-section--interview .p-interview-contentsBlock__text {
    width: calc(100% - calc(464 / 1048 * 100%));
  }
  .people-detail .l-section--interview .p-interview-contentsBlock__image {
    width: calc(404 / 1048 * 100%);
  }
  .people-detail .l-section--interview .p-interview-contentsBlock__image[data-layout-pc="width-full"] {
    width: calc(580 / 1048 * 100%);
  }
  .people-detail .l-section--interview [data-layout-pc="image-left"] .p-interview-contentsBlock__image[data-layout-pc="width-full"] {
    margin-left: calc(-176 / 1048 * 100%);
  }
  .people-detail .l-section--interview [data-layout-pc="image-right"] .p-interview-contentsBlock__image[data-layout-pc="width-full"] {
    margin-right: calc(-176 / 1048 * 100%);
  }
  .people-detail .l-section--interview .block-message {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .people-detail .l-section--interview .block-message__text {
    padding-right: var(--value-40);
    width: calc(100% - calc(160 / 926 * 100%));
  }
  .people-detail .l-section--interview .block-message__image {
    margin-top: var(--value-48);
    width: calc(160 / 926 * 100%);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .people-detail .l-section--interview .p-interview-contentsBlock__text > p {
    padding-left: calc(74 / 1240 * 100vw);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .people-detail .l-section--interview {
    padding-top: var(--value-24);
    padding-bottom: var(--value-80);
  }
  .people-detail .l-section--interview .p-interview-contentsBlock + .p-interview-contentsBlock {
    margin-top: var(--value-100);
  }
  .people-detail .l-section--interview .p-interview-heading02 {
    font-size: var(--fs-25);
    line-height: calc(36 / 25);
  }
  .people-detail .l-section--interview .p-interview-heading02 + * {
    margin-top: var(--value-30) !important;
  }
  .people-detail .l-section--interview * + .p-interview-heading02 {
    margin-top: var(--value-100);
  }
  .people-detail .l-section--interview .p-interview-contentsBlock__text > p {
    font-size: var(--fs-15);
    line-height: calc(30 / 15);
  }
  .people-detail .l-section--interview .p-interview-contentsBlock__text > p + p {
    margin-top: var(--value-24);
  }
  .people-detail .l-section--interview .p-interview-contentsBlock__image {
    margin-top: var(--value-30);
  }
  .people-detail .l-section--interview .block-message {
    margin-top: var(--value-40);
    padding: var(--value-24);
  }
  .people-detail .l-section--interview h4 {
    font-size: var(--fs-18);
    line-height: calc(28 / 18);
  }
  .people-detail .l-section--interview .block-message__image {
    margin-top: var(--value-20);
  }
  .people-detail.case1 .l-section--interview .block-message__image {
    margin-inline: auto;
    width: 65%;
  }
}




/* Print
------------------------------------------------------ */
@media print {
  .people-detail .p-component-keyvisualBlock h1,
  .people-detail .p-component-keyvisualBlock .text-overview {
    animation: none !important;
  }
}