@charset "UTF-8";
/* ==========================================================================
  ELEMENT RESET
========================================================================== */
.interview-container,
.interview-container::before,
.interview-container::after,
.interview-container *,
.interview-container *::before,
.interview-container *::after,
.js-modal-container,
.js-modal-container::before,
.js-modal-container::after,
.js-modal-container *,
.js-modal-container *::before,
.js-modal-container *::after {
  box-sizing: border-box;
}

.interview-container,
.js-modal-container {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #483f35;
}
.interview-container sup,
.interview-container sub {
  position: relative;
  font-size: 65%;
  line-height: 0;
  vertical-align: baseline;
}
.interview-container sup {
  top: -0.5em;
}
.interview-container sup.u-large,
.interview-container sub.u-large {
  top: -0.4em;
  font-size: 85%;
}

/* ==========================================================================
  UTILL
========================================================================== */
/* 画像置換 */
.u-ir {
  display: block;
  overflow: hidden;
  font: 0/0 a;
  white-space: nowrap;
  text-indent: 100%;
}

/* PC、タブレットで画像置換 */
@media all and (min-width: 760px), print {
  .u-ir--tab-pc {
    display: block;
    overflow: hidden;
    font: 0/0 a;
    white-space: nowrap;
    text-indent: 100%;
  }
}
/* --------------------------------------------------------------------------
  svg
-------------------------------------------------------------------------- */
.c-svg {
  position: relative;
  display: block;
  width: 100%;
}
.c-svg::before {
  display: block;
  padding-top: 100%;
  content: '';
}
.c-svg > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* --------------------------------------------------------------------------
  非表示
-------------------------------------------------------------------------- */
/* PCで非表示 */
@media all and (min-width: 980px), print {
  .u-hide-pc {
    display: none;
  }
}
/* PC、タブレットで非表示 */
@media all and (min-width: 760px), print {
  .u-hide-tab-pc {
    display: none;
  }
}
/* タブレットのみ非表示 */
@media all and (min-width: 760px) and (max-width: 979px) {
  .u-hide-tab {
    display: none;
  }
}
/* SPで非表示 */
@media all and (max-width: 759px) {
  .u-hide-sp {
    display: none;
  }
}
/* --------------------------------------------------------------------------
  行揃え
-------------------------------------------------------------------------- */
.u-center {
  text-align: center;
}
/* TAB,PCのみテキストセンター */
@media all and (min-width: 760px), print {
  .u-center-tab-pc {
    text-align: center;
  }
}
/* SPのみテキストセンター */
@media all and (max-width: 759px) {
  .u-center-sp {
    text-align: center;
  }
}
.u-justify {
  text-align: justify;
  text-justify: inter-ideograph;
}
/* --------------------------------------------------------------------------
  強調
-------------------------------------------------------------------------- */
.u-strong {
  /*color: #FF0000;*/
  font-weight: bold;
}
.u-em {
  font-weight: bold;
}
.u-bold {
  font-weight: bold;
}
/* --------------------------------------------------------------------------
  点付き文字
-------------------------------------------------------------------------- */
.u-dots {
  position: relative; /* 基準値とする */
}
.u-dots::before {
  content: "・";
  position: absolute;
  top: -1em;
  left: 0;
  color: #483f35;
}

/* --------------------------------------------------------------------------
  ROOT FONT SIZE
-------------------------------------------------------------------------- */

/* ==========================================================================
  MODAL
========================================================================== */
html.is-modal-opened {
  overflow: hidden;
}
.js-modal-container {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: -14999;
}
.is-modal-opened .js-modal-container.is-modal-shown {
  z-index: 14999;
}
.js-modal {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  visibility: hidden;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-duration: 1s;
  transition-property: visibility;
}
.js-modal.is-modal-active {
  visibility: visible;
}
.js-modal-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.9);
  transition-delay: 0.3s;
  transition-timing-function: cubic-bezier(0.87, 0, 0.13, 1);
  transition-duration: 0.7s;
  transition-property: opacity;
  will-change: opacity;
}
.is-modal-active .js-modal-bg {
  z-index: 1;
  height: 100%;
  transition-delay: 0s;
}
.js-modal-body {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  overflow: hidden;
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-duration: 0.4s;
  transition-property: all;
}
.is-modal-active .js-modal-body {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition-delay: 0.6s;
}
.js-modal-scroll {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media all and (min-width: 760px), print {
  .modal__close {
    position: absolute;
    top: 0;
    right: 0;
  }
  .modal-close-btn {
    width: 80px;
    height: 80px;
    padding: 0;
    background-color: #e60012;
    border: none;
    cursor: pointer;
    appearance: none;
  }
  .modal-close-btn__in {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
  }
  .modal-close-btn__ico {
    display: block;
  }
  .modal-close-btn__ico i {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
  }
  .modal-close-btn__ico i::before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 4px;
    margin-top: -2px;
    background-color: #fff;
    border-radius: 2px;
    content: '';
  }
  .modal-close-btn__ico i::after {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 4px;
    height: 100%;
    margin-left: -3px;
    background-color: #fff;
    border-radius: 3px;
    content: '';
  }

  .no-touchevents .modal-close-btn {
    transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .no-touchevents .modal-close-btn:hover {
    opacity: 0.8;
  }

  .modal-interview-main-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
  }

  .modal-interview__scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .modal-interview-main {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-right: 5vw;
    padding-left: 5vw;
  }
  .modal-interview-main:has(.modal-interview-main__photo--vertical) {
    margin: auto;
    max-height: 740px;
    height: 100%;
  }

  .modal-interview-main__player {
    position: relative;
  }
  .modal-interview-main__player::before {
    display: block;
    padding-top: 56.25%;
    content: '';
  }
  .modal-interview-main__player video,
  .modal-interview-main__player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .modal-interview-main__movie {
    position: relative;
  }
  .modal-interview-main__movie::before {
    display: block;
    padding-top: 56.25%;
    content: '';
  }
  .modal-interview-main__movie > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .modal-interview-main__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .no-touchevents .modal-interview-main__thumb {
    transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .no-touchevents .modal-interview-main__thumb:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }
  .modal-interview-main__thumb::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 90px;
    height: 90px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 45px;
    content: '';
  }
  .modal-interview-main__thumb::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 80px;
    height: 80px;
    margin: auto;
    background: url(../img/play.svg) 0 0 no-repeat;
    background-size: cover;
    content: '';
  }
  .is-active .modal-interview-main__thumb {
    display: none;
  }
  .modal-interview-main__photo {
    position: relative;
    margin: auto;
  }
  .modal-interview-main__photo img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  .modal-interview-main__body {
    position: relative;
  }
  .modal-interview-slider__arrow {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4vw;
    max-width: 50px;
    cursor: pointer;
  }
  .modal-interview-slider__arrow .c-svg {
    fill: #fff;
  }
  .modal-interview-slider__arrow.-prev {
    left: -5vw;
  }
  .modal-interview-slider__arrow.-next {
    right: -5vw;
  }
  .modal-interview-slider__arrow.is-slide-none {
    display: none;
  }
  .modal-interview-slider__arrow.swiper-button-disabled {
    opacity: 0.3;
    cursor: initial;
  }
  .modal-interview-footer-content {
    display: none;
  }
  .is-modal-active .modal-interview-footer-content {
    display: block!important;
  }
  .modal-interview-footer-note {
    margin-top: 20px;
  }
  .modal-interview-footer-note__item {
    position: relative;
    color: #fff;
    font-size: 13px;
    line-height: 1.615384615;
  }
  .modal-interview-footer-note__ico {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
  }
  .modal-interview-footer-note__text {
    display: block;
    padding-left: 1.25em;
  }
}
@media all and (max-width: 759px) {
  .modal__close {
    position: absolute;
    top: 0;
    right: 0;
  }
  .modal-close-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    background-color: #e60012;
    border: none;
    cursor: pointer;
    appearance: none;
  }
  .modal-close-btn__in {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }
  .modal-close-btn__ico {
    display: block;
  }
  .modal-close-btn__ico i {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    transform: rotate(45deg);
  }
  .modal-close-btn__ico i::before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    background-color: #fff;
    border-radius: 1px;
    content: '';
  }
  .modal-close-btn__ico i::after {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 2px;
    height: 100%;
    margin-left: -1px;
    background-color: #fff;
    border-radius: 1px;
    content: '';
  }

  .no-touchevents .modal-close-btn {
    transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .no-touchevents .modal-close-btn:hover {
    opacity: 0.8;
  }

  .modal-interview-main-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
  }

  .modal-interview__scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .modal-interview-main {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    /* padding-right: 0;
    padding-left: 0; */
  }

  .modal-interview-main__player {
    position: relative;
  }
  .modal-interview-main__player::before {
    display: block;
    padding-top: 56.25%;
    content: '';
  }
  .modal-interview-main__player video,
  .modal-interview-main__player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .modal-interview-main__movie {
    position: relative;
  }
  .modal-interview-main__movie::before {
    display: block;
    padding-top: 56.25%;
    content: '';
  }
  .modal-interview-main__movie > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .modal-interview-main__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .no-touchevents .modal-interview-main__thumb {
    transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .no-touchevents .modal-interview-main__thumb:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }
  .modal-interview-main__thumb::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 90px;
    height: 90px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 45px;
    content: '';
  }
  .modal-interview-main__thumb::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 80px;
    height: 80px;
    margin: auto;
    background: url(../img/play.svg) 0 0 no-repeat;
    background-size: cover;
    content: '';
  }
  .is-active .modal-interview-main__thumb {
    display: none;
  }
  .modal-interview-main__photo {
    position: relative;
  }
  .modal-interview-main__photo img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  .modal-interview-slider__nav {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    padding: 0 10px;
  }
  .modal-interview-slider__arrow {
    display: block;
    width: 6vw;
    max-width: 50px;
  }
  .modal-interview-slider__arrow .c-svg {
    fill: #fff;
  }
  .modal-interview-slider__arrow.-prev {
    margin-right: 10px;
  }
  /* 
  .modal-interview-slider__arrow.-next {
    right: -5vw;
  } */
  .modal-interview-slider__arrow.is-slide-none {
    display: none;
  }
  .modal-interview-slider__arrow.swiper-button-disabled {
    opacity: 0.3;
  }

  .modal-interview-footer-content {
    display: none;
  }
  .is-modal-active .modal-interview-footer-content {
    display: block!important;
  }
  .modal-interview-footer-note {
    margin-top: 20px;
    padding: 0 14px;
  }
  .modal-interview-footer-note__item {
    position: relative;
    color: #fff;
    font-size: 10px;
    line-height: 1.615384615;
  }
  .modal-interview-footer-note__ico {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
  }
  .modal-interview-footer-note__text {
    display: block;
    padding-left: 1.25em;
  }
}

