@charset "UTF-8";
/*
	##### MFR #####
	interview/css/interviews_pc.css
*/

/*=================================
INTERVIEWS LIST INIT
==================================*/
.interviews-list {
  display: grid;

  & li {
    overflow: hidden;
    position: relative;
    border-radius: calc(10 / 1400 * 100vw);
  }
  & .img-box {
    display: block;

    &::after {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(transparent 25%, rgb(var(--rgb-3)));
      position: absolute;
      left: 0;
      top: 0;
      mix-blend-mode: multiply;
    }
  }
  & a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-decoration: none;
    font-feature-settings: "palt";
  
    & > dl {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-start;
      width: 100%;
      height: 100%;
  
      & .division {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 0 .85em;
        border-radius: 100px;
        background-color: #fff;
        font-weight: 700;
        color: var(--color-3);
      }
      & .sub-ttl {
        font-weight: 700;
        color: #fff;
      }
    }
  }
}
@media (hover) {
  .interviews-list li .img-box img {
    scale: 1;
    transition: scale .3s ease-in-out;
  }
  .interviews-list li:hover .img-box img {
    scale: 1.1;
  }
  .interviews-list li .img-box::after {
    opacity: 1;
    transition: opacity .3s ease;
  }
  .interviews-list li:hover .img-box::after {
    opacity: 0;
  }
}


/*---------------------------------------
index
-----------------------------------------*/
.interviews-index .banner-bttns-area {
  margin: 0 calc(60 / 1400 * 100vw) calc(176 / 1400 * 100vw) calc(235 / 1400 * 100vw);

  & .interviews-list {
    grid-template-columns: repeat(2, calc(520 / 1400 * 100vw));
    grid-template-rows: calc(432 / 1400 * 100vw);
    column-gap: calc(35 / 1400 * 100vw);
    row-gap: calc(60 / 1400 * 100vw);

    & a {
      padding: 0 calc(35 / 1400 * 100vw) calc(48 / 1400 * 100vw);
  
      & > dl {
  
        & .division {
          height: calc(36 / 1400 * 100vw);
          margin-bottom: calc(20 / 1400 * 100vw);
          font-size: calc(16 / 1400 * 100vw);
        }
        & .sub-ttl {
          font-size: calc(26 / 1400 * 100vw);
          line-height: 1.4615384615384615;
        }
        & .name-year {
          display: inline-block;
          color: #fff;
          vertical-align: baseline;
          margin-top: calc(30 / 1400 * 100vw);
  
          & .name {
            display: inline;
            font-size: calc(18 / 1400 * 100vw);
            margin-right: 1em;
          }
          & .year {
            display: inline;
            font-size: calc(13 / 1400 * 100vw);
            opacity: .8
          }
        }
      }
    }
  }
}






/*---------------------------------------
INTERVIWEES
-----------------------------------------*/

.interviewee-prof {
  display: block;
  width: calc(1135 / 1400 * 100vw);
  margin: 0 calc(30 / 1400 * 100vw) calc(80 / 1400 * 100vw) auto;

  & .fv {

    & .img-box {


      &::after,
      &::before {
        display: none;
      }
    }
  }
  & .ttl-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    filter: drop-shadow(0 0 calc(5 / 1400 * 100vw) rgba(0, 0, 0, .3));

    & .ttl-set {
      margin-left: calc(595 / 1400 * 100vw);
      font-feature-settings: "palt";

      & .division {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        height: calc(36 / 1400 * 100vw);
        margin-bottom: calc(20 / 1400 * 100vw);
        padding: 0 .85em;
        border-radius: 100px;
        background-color: #fff;
        font-size: calc(16 / 1400 * 100vw);
        font-weight: 700;
        color: var(--color-3);
      }
      & .sub-ttl {
        font-size: calc(38 / 1400 * 100vw);
        font-weight: 700;
        line-height: 1.4210526315789473;
        color: #fff;
        padding-right: 1em;
      }
    }
  }
}
.prof-area {
  padding-top: calc(60 / 1400 * 100vw);

  & .prof-set {
    display: flex;

    & .name {
      display: inline-flex;
      flex-direction: column;

      & .jp {
        display: inline-block;
        font-weight: 700;
        font-size: calc(25 / 1400 * 100vw);
        padding-right: 3em;
      }
      & .en {
        display: inline-block;
        padding-top: calc(20 / 1400 * 100vw);
        font-size: calc(13 / 1400 * 100vw);
        opacity: .8;
      }
    }
    & .career {
      display: flex;
      align-items: center;
      font-size: calc(13 / 1400 * 100vw);

      & .former {
        display: flex;
        align-items: center;
        justify-content: center;
        height: calc(26 / 1400 * 100vw);
        margin-right: calc(20 / 1400 * 100vw);
        padding: 0 1.5em;
        line-height: calc(26 / 1400 * 100vw);
        color: #fff;
        background-color: #000;
        border-radius: 100px;
      }
    }
    & .detail {
      margin-top: .5em;
      font-weight: 500;
      font-size: calc(15 / 1400 * 100vw);
      line-height: 2.4285714285714284;
    }
  }
}



.sec {
  padding-top: calc(105 / 1400 * 100vw);
}
.sub-sec + .sub-sec {
  margin-top: calc(100 / 1400 * 100vw);
}
.inner-sec {
  display: block;
  padding: calc(105 / 1400 * 100vw) calc(60 / 1400 * 100vw) calc(100 / 1400 * 100vw) calc(90 / 1400 * 100vw);
  margin: 0 calc(30 / 1400 * 100vw) calc(135 / 1400 * 100vw) calc(235 / 1400 * 100vw);
  border-radius: calc(10 / 1400 * 100vw);
}
.corner-ttl {
  font-size: calc(17 / 1400 * 100vw);
  margin-bottom: calc(20 / 1400 * 100vw);
  color: var(--color-3);
}
.dark-side .corner-ttl {
  color: #fff;
}
.corner-sub-ttl {
  display: block;
  margin-bottom: calc(40 / 1400 * 100vw);
  font-feature-settings: "palt";
  font-weight: 700;
  font-size: calc(27 / 1400 * 100vw);
  line-height: 2.2222222222222223;
  color: #fff;

  & .inner {
    display: inline;
    background-color: var(--color-3);
    padding: .05em .4em .15em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
}
.inner-sec .corner-sub-ttl {
  line-height: 1.8148148148148149
}

.dark-side .txt {
  color: #fff
}
.cols {
  display: flex;
  justify-content: space-between;

  & .txt-block {
    flex: 0 0 calc(444 / 1400 * 100vw);
  }
  & .img-box {
    flex: 0 0 calc(464 / 1400 * 100vw);
    border-radius: calc(10 / 1400 * 100vw);
    overflow: hidden;
  }
}
.inner-sec .cols .txt-block {
  flex-basis: calc(526 / 1400 * 100vw);
}
.inner-sec .cols .img-box {
  flex-basis: calc(372 / 1400 * 100vw)
}

.column-ttl-set {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: calc(48 / 1400 * 100vw);
  color: #fff;

  & .column-ttl {
    font-weight: 700;
    font-size: calc(15 / 1400 * 100vw);
    margin-top: calc(15 / 1400 * 100vw);
  }
  & .en {
    font-weight: 700;
    font-size: calc(35 / 1400 * 100vw);
  }
}
.daily-schedule-box {
  display: block;
  width: 100%;
  min-height: calc(230 / 1400 * 100vw);
  padding-bottom: calc(30 / 1400 * 100vw);
  overflow: hidden;
  overflow-x: scroll;

  & .daily-schedule-list {
    display: flex;
    column-gap: calc(18 / 1400 * 100vw);

    & li {
      display: block;
      flex: 0 0 calc(212 / 1400 * 100vw);
      min-height: calc(200 / 1400 * 100vw);
      padding: calc(27 / 1400 * 100vw) calc(22 / 1400 * 100vw) calc(32 / 1400 * 100vw);
      background-color: #fff;
      border: solid 1px #ccc;
      border-radius: calc(5 / 1400 * 100vw);
      font-feature-settings: "palt";

      & .time {
        font-weight: 700;
        font-size: calc(18 /1400 * 100vw);
        color: var(--color-3);
        margin-bottom: calc(20 / 1400 * 100vw);

        &::before {
          display: inline-block;
          content: '●';
          font-family: 'Noto Sans JP';
          font-size: 35%;
          vertical-align: middle;
          margin-right: 1.2em;
          color: var(--color-2);
          translate: 0 -.3em;
        }
      }
      & .des {
        font-weight: 500;
        font-size: calc(15 / 1400 * 100vw);
        line-height: 2.2666666666666666;
        text-align: justify;
      }
    }
  }
  & + .note {
    font-size: calc(13 / 1400 * 100vw);
    line-height: 1.7692307692307692;
    margin-top: 1.5em;
  }
}
.career-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;

  & .career-timeline-box {
    flex: 0 0 calc(805 / 1400 * 100vw);

    & .career-timeline-list {
      display: block;

      & li {
        display: block;
        width: 100%;
        min-height: calc(102 / 1400 * 100vw);
        padding: calc(30 / 1400 * 100vw) calc(35 / 1400 * 100vw);
        background-color: #fff;
        border-radius: calc(5 / 1400 * 100vw);

        & + & {
          margin-top: calc(10 / 1400 * 100vw);
        }
        & dl {
          display: flex;
          align-items: baseline;
        }
        & .time {
          flex: 0 0 calc(160 / 1400 * 100vw);
          font-weight: 700;
          font-size: calc(17 /1400 * 100vw);
          color: var(--color-3);
          margin-bottom: calc(20 / 1400 * 100vw);
  
          &::before {
            display: inline-block;
            content: '●';
            font-size: 40%;
            vertical-align: middle;
            margin-right: 1em;
            color: var(--color-2);
            translate: 0 -.3em;
          }
        }
        & .des {
          font-weight: 500;
          font-size: calc(15 / 1400 * 100vw);
          line-height: 2.2666666666666666;
          text-align: justify;
        }    
      }
    }
  }
}




.inter-sec-img {
  margin-top: calc(70 / 1400 * 100vw);
  width: 100%;
  height: calc(390 / 1400 * 100vw);

  & .img-box {
    border-radius: calc(10 / 1400 * 100vw);
    overflow: hidden;
  }
}





.other-links-area .interviews-list {
  grid-template-columns: repeat(3, calc(365 / 1400 * 100vw));
  grid-template-rows: calc(274 / 1400 * 100vw);
  gap: calc(20 / 1400 * 100vw);

  & a {
    padding: 0 calc(30 / 1400 * 100vw) calc(40 / 1400 * 100vw);

    & > dl {

      & .division {
        height: calc(30 / 1400 * 100vw);
        margin-bottom: calc(15 / 1400 * 100vw);
        font-size: calc(13 / 1400 * 100vw);
      }
      & .sub-ttl {
        font-size: calc(20 / 1400 * 100vw);
        line-height: 1.4;
      }
    }
  }
}


