@charset "UTF-8";
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Gothic A1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 14 / 393 * 100vw, 16px);
  line-height: 1.75;
  letter-spacing: 0;
  overflow-x: hidden;
  color: #333333;
}

.sp {
  display: block;
}
@media screen and (min-width: 960px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 960px) {
  .pc {
    display: block;
  }
}

.visible {
  visibility: visible;
}

.hidden {
  visibility: hidden;
}

.br-sp {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}

.br-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .br-pc {
    display: inline-block;
  }
}

.section {
  position: relative;
  z-index: 1000;
  background: transparent;
}

html {
  overflow-x: hidden;
  margin-top: 0 !important;
}

header {
  display: block;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

.back-to-top {
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: transparent;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: absolute;
  right: 20px;
  bottom: 80px;
}
@media screen and (min-width: 768px) {
  .back-to-top {
    width: 80px;
    height: 80px;
    right: 20px;
    bottom: 20px;
  }
}
.back-to-top .arrow {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .back-to-top .arrow {
    font-size: 16px;
  }
}
.back-to-top .text {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .back-to-top .text {
    font-size: 16px;
  }
}
.back-to-top:hover {
  background-color: #ffffff;
  color: #333333;
  border-color: #333333;
}

.section-title {
  width: 90%;
  max-width: 1000px;
  height: auto;
  margin: 6.25rem auto 0;
}
@media screen and (min-width: 768px) {
  .section-title {
    margin: 9.375rem auto 0;
  }
}
.section-title__main {
  display: block;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(35px, 23 / 393 * 100vw, 48px);
  color: #333333;
  line-height: 1;
}
.section-title__sub {
  display: block;
  font-family: "Gothic A1", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 14 / 393 * 100vw, 16px);
  color: #002C83;
}
.section-title.is-line-expand .section-title__sub {
  padding-top: 1.5625rem;
}

.js-title-animated .js-title-animated-main .char {
  display: inline-block;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  padding-right: 0.2rem;
  margin-right: -0.2rem;
}
.js-title-animated .js-title-animated-main .char-space {
  display: inline-block;
  width: 0.625rem;
}
.js-title-animated .js-title-animated-sub {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.scroll-down {
  width: 20%;
  max-width: 6.25rem;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-animation: softBounce-softFade 3s ease-in-out infinite;
          animation: softBounce-softFade 3s ease-in-out infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.scroll-down::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: ring 2.5s ease-out infinite;
          animation: ring 2.5s ease-out infinite;
}

.chev-wrap {
  display: inline-block;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.chev {
  display: inline-block;
  opacity: 0;
  padding: 0 0.1rem;
  -webkit-animation: chev-down 2.5s ease-out infinite;
          animation: chev-down 2.5s ease-out infinite;
}

.chev-wrap .chev:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.chev-wrap .chev:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.chev-wrap .chev:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes chev-down {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0.7;
  }
  40% {
    opacity: 0.7;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes chev-down {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0.7;
  }
  40% {
    opacity: 0.7;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes softBounce-softFade {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    opacity: 1;
  }
}
@keyframes softBounce-softFade {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    opacity: 1;
  }
}
@-webkit-keyframes ring {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0;
  }
  40% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
    opacity: 0;
  }
}
@keyframes ring {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0;
  }
  40% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
    opacity: 0;
  }
}
.header__container {
  z-index: 10000;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
  opacity: 1;
}
.header__container.is-scrolling {
  opacity: 0.1;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
@media screen and (min-width: 768px) {
  .header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10000;
  width: 90%;
  height: 60px;
  margin: 1.25rem auto;
}
.header.header--white-text .header__logo-txt {
  color: #ffffff;
}
.header.header--white-text .header__nav-item .header__nav-link {
  color: #ffffff;
}
.header.header--white-text .header__nav-item .header__nav-link::after {
  color: #ffffff;
}
.header__logo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.header__logo-img {
  max-width: 50px;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .header__logo-img {
    max-width: 100px;
  }
}
.header__logo-txt {
  white-space: nowrap;
}
.header__entry-btn {
  padding: 0.625rem 3.125rem;
  background-color: #002C83;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  -webkit-transition: background-color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, opacity 0.3s;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}
.header__entry-btn:hover {
  color: #002C83;
  background-color: #ffffff;
  border: 1px solid #002C83;
}
.header__entry-btn--pc {
  display: none;
}
@media screen and (min-width: 960px) {
  .header__entry-btn--pc {
    display: block;
  }
}
.header__entry-btn--sp {
  display: block;
}
@media screen and (min-width: 960px) {
  .header__entry-btn--sp {
    display: none;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.125rem;
  /* モバイルメニュー展開時のスタイル */
}
@media screen and (min-width: 768px) {
  .header__nav {
    gap: 1.25rem;
  }
}
.header__nav.is-open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 9990;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 960px) {
  .header__nav.is-open {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    z-index: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.header__nav-list {
  display: none;
}
@media screen and (min-width: 960px) {
  .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
.header__nav-item {
  position: relative;
}
.header__nav-item .header__nav-link {
  position: relative;
  padding-right: 0;
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(14px, 14 / 393 * 100vw, 16px);
}
.header__nav-item .header__nav-link:hover {
  color: #002C83;
}
.header__nav-item .header__nav-link::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .header__nav-item.has-submenu:hover .header__submenu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (min-width: 768px) {
  .header__nav-item.has-submenu .header__nav-link {
    padding-right: 1.2em;
  }
}
@media screen and (min-width: 768px) {
  .header__nav-item.has-submenu .header__nav-link::after {
    content: "∨";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #333333;
    -webkit-transition: content 0.25s ease, opacity 0.25s;
    transition: content 0.25s ease, opacity 0.25s;
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .header__nav-item.has-submenu .header__nav-link:hover::after {
    content: "∧";
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .header__submenu {
    position: absolute;
    top: 100%;
    -webkit-transform: translateX(-50%) translateY(10px);
            transform: translateX(-50%) translateY(10px);
    padding: 10px 0;
    margin-top: 5px;
    background: #ffffff;
    border: 1px solid #333333;
    min-width: 150px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
.header__submenu li a {
  display: block;
  padding: 5px 15px;
  color: #333333;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.9em;
}
.header__submenu li a:hover {
  color: #002C83;
}
.header__sp-menu {
  display: none;
}
.header__sp-menu.is-open {
  display: block;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;
  padding: 100px 20px;
}
.header__sp-nav {
  /* 各アイテム内のヘッダー（ラベル + ボタン） */
  /* メインラベル */
  /* ===========
  開閉ボタン
  ============ */
}
.header__sp-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.header__sp-nav-item {
  list-style: none;
}
.header__sp-nav-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.9375rem 0;
}
.header__sp-nav-label {
  color: #333333;
  text-decoration: none;
  font-size: clamp(14px, 14 / 393 * 100vw, 16px);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.header__sp-nav-btn {
  background: none;
  border: none;
  padding: 0;
  margin-left: 0.625rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__burger-btn {
  /* ボタンの基本スタイル */
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #002C83;
  border: none;
  cursor: pointer;
  z-index: 10000;
  display: block;
  padding: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  /* 横線 (2本) のスタイル */
}
@media screen and (min-width: 960px) {
  .header__burger-btn {
    display: none;
  }
}
.header__burger-btn.is-open {
  background-color: #002C83;
}
.header__burger-btn__line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /* 1本目 */
  /* 2本目 */
}
.header__burger-btn__line:first-child {
  top: 15px;
  /* 親 (.header__burger-btn) が is-open の時のスタイル */
}
.header__burger-btn.is-open .header__burger-btn__line:first-child {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.header__burger-btn__line:last-child {
  top: 23px;
  /* 親 (.header__burger-btn) が is-open の時のスタイル */
}
.header__burger-btn.is-open .header__burger-btn__line:last-child {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.footer {
  position: relative;
  z-index: 1000;
  background-color: #ffffff;
  padding-top: 1.875rem;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 5rem;
    padding-bottom: 1.875rem;
  }
}
.footer__container {
  width: 90%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer__container {
    max-width: 1000px;
  }
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 1.875rem 0 0 0;
}
@media screen and (min-width: 960px) {
  .footer__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 0 3.125rem 0;
  }
}
.footer__separator {
  border: none;
  margin: 0.625rem 0 1.875rem 0;
  opacity: 0.2;
}
@media screen and (min-width: 960px) {
  .footer__separator {
    margin: 3.125rem 0;
    border-top: 1px solid #333333;
  }
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
@media screen and (min-width: 960px) {
  .footer__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 960px) {
  .footer__social {
    margin-bottom: 0;
  }
}
.footer__social-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin-right: 0.9375rem;
}
.footer__social-link-icon {
  width: 0.9375rem;
  height: 0.9375rem;
  display: block;
}
.footer__corp-link {
  text-decoration: none;
  color: #333333;
  font-size: clamp(10px, 10 / 393 * 100vw, 12px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__corp-link span {
  margin-right: 0.3125rem;
}
.footer__corp-link:hover {
  opacity: 0.7;
}
.footer__copyright {
  font-size: clamp(10px, 10 / 393 * 100vw, 12px);
}

.nav {
  width: 100%;
  margin-top: 0.625rem;
}
@media screen and (min-width: 960px) {
  .nav {
    margin-left: auto;
    width: auto;
    margin-top: 0;
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
@media screen and (min-width: 960px) {
  .nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.nav__category {
  list-style: none;
}
@media screen and (min-width: 960px) {
  .nav__category:last-child > .nav__category__category-separator {
    display: none;
  }
}
.nav__category-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.9375rem 0;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .nav__category-header {
    display: block;
    padding: 0;
  }
}
.nav__category-label {
  color: #333333;
  text-decoration: none;
  display: block;
  font-size: clamp(14px, 14 / 393 * 100vw, 16px);
}
@media screen and (min-width: 960px) {
  .nav__category-label {
    margin-bottom: 0.625rem;
  }
}
.nav__category-btn {
  background: none;
  border: none;
  padding: 0;
  margin-left: 0.625rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 960px) {
  .nav__category-btn {
    display: none;
  }
}
.nav__category-btn::before, .nav__category-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1px;
  background-color: #333333;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.nav__category-btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.nav .js-accordion-btn[aria-expanded=true]::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.nav__category-link-icon {
  background: none;
  border: none;
  padding: 0;
  margin-left: 0.625rem;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 960px) {
  .nav__category-link-icon {
    display: none;
  }
}
.nav__category-link-icon::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"/></svg>');
          mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"/></svg>');
  background-color: #333333;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.nav__sub-list {
  list-style: none;
  padding-left: 0;
  display: none;
}
@media screen and (min-width: 960px) {
  .nav__sub-list {
    display: block;
  }
}
.nav__sub-list a {
  text-decoration: none;
  color: #333333;
  display: block;
  padding: 0.3125rem 0;
}
@media screen and (min-width: 768px) {
  .nav__sub-list a {
    font-size: clamp(10px, 12 / 393 * 100vw, 14px);
  }
}
.nav__sub-list a:hover {
  color: #002C83;
}
.nav__category-separator {
  border: none;
  border-top: 1px solid #333333;
  margin: 0;
  opacity: 0.2;
}
@media screen and (min-width: 960px) {
  .nav__category-separator {
    display: none;
  }
}

.top {
  width: 100%;
  margin: 0 auto;
  /* 左側：テキスト */
  /* 右側：画像エリア */
  /* ホバー時の設定 */
}
.top__video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-color: black;
}
.top__video-video {
  width: 100%;
  height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .top__video-video {
    height: 100%;
  }
}
.top__video-copy {
  position: absolute;
  z-index: 10;
  /* 中央に配置 */
  bottom: 30%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  /* 画像サイズの調整 */
  width: 100%;
  max-width: 18.75rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .top__video-copy {
    width: 100%;
    max-width: 31.25rem;
    left: 5%;
    bottom: 15%;
    -webkit-transform: none;
            transform: none;
  }
}
.top__video #copy-02 {
  display: none;
}
.top__video-scroll-down {
  position: absolute;
  inset-inline: 0;
  bottom: 20%;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .top__video-scroll-down {
    bottom: 0;
    -webkit-transform: translateY(-25%);
            transform: translateY(-25%);
  }
}
.top__message {
  background-color: #ffffff;
  opacity: 0;
}
.top__message-container {
  width: 90%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  max-width: 600px !important;
  padding-bottom: 6.25rem;
  padding-top: 180vh;
}
@media screen and (min-width: 768px) {
  .top__message-container {
    max-width: 1000px;
  }
}
@media screen and (min-width: 768px) {
  .top__message-container {
    padding-top: 200vh;
    padding-bottom: 12.5rem;
  }
}
.top__message-title {
  font-size: clamp(20px, 24 / 393 * 100vw, 32px);
  font-weight: 500;
}
.top__message-text {
  margin-top: 1.875rem;
  line-height: 2.5;
}
.top__slide {
  padding-bottom: 6.25rem;
  background-color: #ffffff;
}
.top .splide {
  margin: auto;
  max-width: 100%;
}
.top .splide__track {
  overflow: visible !important;
  overflow-x: hidden;
  overflow-y: visible;
}
.top .splide__slide {
  position: relative;
}
.top .splide__slide.is-style-01, .top .splide__slide.is-style-03, .top .splide__slide.is-style-05 {
  width: 60%;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .top .splide__slide.is-style-01, .top .splide__slide.is-style-03, .top .splide__slide.is-style-05 {
    width: 80%;
    max-width: 450px;
    margin-top: 116px;
  }
}
.top .splide__slide.is-style-02, .top .splide__slide.is-style-04, .top .splide__slide.is-style-06 {
  width: 60%;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .top .splide__slide.is-style-02, .top .splide__slide.is-style-04, .top .splide__slide.is-style-06 {
    width: 60%;
    max-width: 500px;
    margin-bottom: 200px;
  }
}
@media screen and (min-width: 768px) {
  .top .splide__slide img {
    max-width: 31.25rem;
  }
}
.top__about {
  background-color: #ffffff;
}
.top__about-container {
  padding: 6.25rem 0;
  background: #f8f7ee;
}
@media screen and (min-width: 768px) {
  .top__about-container {
    width: 90%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    border-radius: 20px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .top__about-container {
    max-width: 1000px;
  }
}
.top__about-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin: 0 auto;
  gap: 1.875rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top__about-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.125rem;
    margin: 0 50px;
  }
}
.top__about-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top__about-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top__about-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.top__work {
  background-color: #ffffff;
}
.top__work-container {
  width: 90%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  padding: 6.25rem 0;
}
@media screen and (min-width: 768px) {
  .top__work-container {
    max-width: 1000px;
  }
}
@media screen and (min-width: 768px) {
  .top__work-container {
    padding: 10rem 0;
  }
}
.top__work-tab {
  margin-top: 1.875rem;
}
.top__work-tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.top__work-tab-item {
  cursor: pointer;
  padding: 0.3125rem 1.25rem;
  margin-right: 1.25rem;
  font-weight: bold;
  border-bottom: 3px solid transparent;
  border-radius: 10px 10px 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .top__work-tab-item {
    padding: 0.625rem 3.125rem;
    border-radius: 20px 20px 0 0;
  }
}
.top__work-tab-item:hover {
  opacity: 0.8;
}
.top__work-tab-item.is-active {
  color: #ffffff;
  background-color: #002C83;
  border-bottom: 3px solid #002C83;
}
.top__work-tab-item.is-active:hover {
  background-color: #002C83;
  opacity: 1;
}
.top__work-tab-item:not(.is-active) {
  border: 1px solid #002C83;
  color: #002C83;
  background-color: #ffffff;
  border-bottom: 3px solid #ffffff;
}
.top__work-video {
  position: relative;
}
.top__work-movie-item {
  display: block;
}
.top__work-movie-item.is-hidden {
  display: none;
}
.top__work-movie-wrapper {
  position: relative;
  width: 100%;
  padding-top: 65%;
}
.top__work-movie-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0 10px 10px 10px;
  border-top: 5px solid #002C83;
  border-bottom: 5px solid #002C83;
}
.top__work-movie-wrapper iframe.is-hidden-iframe {
  opacity: 0;
  pointer-events: none;
}
.top__work-movie-wrapper iframe.is-visible-iframe {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.top__work-thumbnail-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 10px 10px 10px;
  border-top: 5px solid #002C83;
  border-bottom: 5px solid #002C83;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
  cursor: pointer;
  background-color: #333333;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  overflow: hidden;
}
.top__work-thumbnail-cover.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.top .top__work-thumbnail-cover:hover .top__work-thumbnail-img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.top__work-thumbnail-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0 10px 10px 10px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.top__work-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  padding: 1.25rem;
  border-radius: 0.625rem;
}
.top__work-play-icon {
  width: 3.125rem;
  height: 3.125rem;
  border: 1px solid #ffffff;
  border-radius: 50%;
  position: relative;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .top__work-play-icon {
    width: 5rem;
    height: 5rem;
  }
}
.top__work-play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.625rem 0 0.625rem 1rem;
  border-color: transparent transparent transparent #ffffff;
}
.top__work-play-text {
  font-size: clamp(14px, 14 / 393 * 100vw, 16px);
}
.top__data {
  background-color: #F6F6EE;
}
.top__data-slide {
  padding: 1.25rem 0;
  border-top: 1px solid #333333;
}
.top .splide__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}
.top .splide-bottom {
  border-bottom: 1px solid #333333;
}
.top__data-content {
  margin: 50px 0;
}
.top__data-image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top .top__data-image-wrapper img {
  width: 100%;
  max-width: 6.25rem;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .top .top__data-image-wrapper img {
    max-width: 7.5rem;
  }
}
.top__department {
  background-color: #ffffff;
}
.top__department-container {
  padding: 6.25rem 0;
}
@media screen and (min-width: 768px) {
  .top__department-container {
    padding: 10rem 0;
  }
}
.top__department-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 768px) {
  .top__department-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
  }
}
.top__department-content > .top__department-text-group {
  padding: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top__department-content > .top__department-text-group {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46%;
            flex: 0 0 46%;
    padding-left: clamp(2rem, 5vw, 9rem);
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: left;
    margin-bottom: 0;
    max-width: none;
  }
}
.top__department-content > .top__department-image-wrapper {
  width: 100%;
  max-width: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding-left: 5%;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .top__department-content > .top__department-image-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0;
    margin: initial;
  }
}
.top__department-image {
  display: block;
  width: 100%;
  height: auto;
}
.top__department-button {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.5rem 1.5625rem;
  border: 1px solid #002C83;
  border-radius: 3.125rem;
  text-decoration: none;
  color: #002C83;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: clamp(14px, 14 / 393 * 100vw, 16px);
}
@media screen and (min-width: 768px) {
  .top__department-button {
    padding: 0.625rem 1.875rem;
  }
}
.top__department-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #002C83;
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
  z-index: -1;
}
.top__department-button:hover {
  color: #ffffff;
}
.top__department-button:hover::before {
  width: 100%;
}
.top__interview {
  background-color: #ffffff;
}
.top__interview-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 1.875rem;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top__interview-header {
    padding-bottom: 3.75rem;
  }
}
.top__crosstalk {
  background-color: #ffffff;
}
.top__crosstalk-container {
  padding: 6.25rem 0;
}
@media screen and (min-width: 768px) {
  .top__crosstalk-container {
    padding: 10rem 0;
  }
}
.top__crosstalk-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 768px) {
  .top__crosstalk-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
  }
}
.top__crosstalk-content > .top__crosstalk-text-group {
  padding: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top__crosstalk-content > .top__crosstalk-text-group {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46%;
            flex: 0 0 46%;
    padding-left: clamp(2rem, 5vw, 9rem);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: left;
    margin-bottom: 0;
    max-width: none;
  }
}
.top__crosstalk-content > .top__crosstalk-image-wrapper {
  width: 100%;
  max-width: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding-right: 5%;
  padding-left: 0;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .top__crosstalk-content > .top__crosstalk-image-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 0;
    margin: initial;
  }
}
.top__crosstalk-image {
  display: block;
  width: 100%;
  height: auto;
}
.top .section-desc {
  line-height: 2;
  margin-top: 1.875rem;
  margin-bottom: 1.25rem;
  font-size: clamp(14px, 14 / 393 * 100vw, 16px);
}
.top .link-item {
  background-color: #ffffff;
  text-align: center;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .top .link-item {
    width: 200px;
  }
}
.top .link-item a {
  display: block;
  padding: 0.625rem 0;
  position: relative;
}
.top .link-item a::after {
  content: "→";
  position: absolute;
  display: inline-block;
  top: 50%;
  font-weight: 900;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translateX(100%) translateY(-50%) rotate(-45deg);
          transform: translateX(100%) translateY(-50%) rotate(-45deg);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.top .link-item a:hover::after {
  -webkit-transform: translateX(110%) translateY(-60%) rotate(-45deg);
          transform: translateX(110%) translateY(-60%) rotate(-45deg);
}

.entry__container {
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-top: 3.125rem;
  max-width: initial;
  margin-top: 0;
  overflow: hidden;
  border-radius: 20px;
  min-height: 300px;
  background-color: #A8BEE9;
  background-image: linear-gradient(315deg, #1A5EE3 0%, #A8BEE9 17%, #FFFFFF 46%, #89DCFF 100%);
}
.entry__container.--add-padding {
  margin-bottom: 43.75rem;
}
.entry__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
}
.entry__title {
  display: inline-block;
  padding: 0 0.625rem;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(35px, 23 / 393 * 100vw, 48px);
}
@media screen and (min-width: 768px) {
  .entry__title {
    padding: 0 1.875rem;
  }
}
.entry__title-solid {
  /* 塗り */
  color: #002C83;
}
.entry__title-outline {
  /* 白抜き */
  color: transparent;
  -webkit-text-stroke: 1px #002C83;
}
.entry__links {
  width: 100%;
  max-width: 500px;
  margin: 6.25rem auto;
}
@media screen and (min-width: 768px) {
  .entry__links {
    margin: 9.375rem auto;
  }
}
.entry__link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
@media screen and (min-width: 768px) {
  .entry__link-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.entry__link-item { /* li */
  border-radius: 5px;
  background-color: #ffffff;
  color: #002C83;
  text-align: center;
  width: 90%;
}
.entry__link-item:hover {
  background-color: #002C83;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .entry__link-item {
    width: calc(50% - 1rem);
  }
}
.entry__link-item a {
  display: block;
  padding: 0.625rem 0;
  position: relative;
}
.entry__link-item a::after {
  content: "→";
  position: absolute;
  display: inline-block;
  top: 50%;
  font-weight: 900;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translateX(100%) translateY(-50%) rotate(-45deg);
          transform: translateX(100%) translateY(-50%) rotate(-45deg);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.entry__link-item a:hover::after {
  -webkit-transform: translateX(110%) translateY(-60%) rotate(-45deg);
          transform: translateX(110%) translateY(-60%) rotate(-45deg);
}

/*
 * page
 * -------------------------------------------------------------------
 */
.crosstalk {
  background-color: #ffffff;
  padding: 3.125rem 0 6.25rem;
}
@media screen and (min-width: 768px) {
  .crosstalk {
    padding: 4.375rem 0 9.375rem;
  }
}
.crosstalk__container {
  width: 90%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .crosstalk__container {
    max-width: 1000px;
  }
}
.crosstalk__member-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .crosstalk__member-list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.crosstalk__member {
  width: 100%;
  max-width: calc((100% - 2rem) / 2);
}
@media screen and (min-width: 768px) {
  .crosstalk__member {
    max-width: none;
  }
}
.crosstalk__thumb {
  overflow: hidden;
}
.crosstalk__meta {
  line-height: 1.6;
}
.crosstalk__busyo {
  font-size: clamp(10px, 12 / 393 * 100vw, 14px);
  margin-top: 10px;
}
.crosstalk__name {
  margin-top: 4px;
}
.crosstalk__year {
  font-size: clamp(10px, 12 / 393 * 100vw, 14px);
  color: #002C83;
  margin-top: 4px;
}
.crosstalk__hero {
  padding: 2rem 0 4rem;
}
@media screen and (min-width: 768px) {
  .crosstalk__hero {
    padding: 2rem 0 10rem;
  }
}
.crosstalk__hero img {
  border-radius: 12px;
}
.crosstalk__talk + .crosstalk__talk {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .crosstalk__talk + .crosstalk__talk {
    margin-top: 5rem;
  }
}
.crosstalk__question {
  font-size: clamp(16px, 18 / 393 * 100vw, 24px);
  color: #002C83;
  font-weight: 700;
}
.crosstalk__answers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.2rem;
}
@media screen and (min-width: 768px) {
  .crosstalk__answers {
    margin-top: 2rem;
  }
}
.crosstalk__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
.crosstalk__answer-thumb {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 3.75rem;
  overflow: hidden;
  text-align: center;
}
.crosstalk__scene {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .crosstalk__scene {
    margin-top: 3rem;
  }
}
.crosstalk__scene img {
  border-radius: 12px;
}

.data {
  background-color: #ffffff;
  padding: 3.125rem 0 6.25rem;
}
@media screen and (min-width: 768px) {
  .data {
    padding: 4.375rem 0 9.375rem;
  }
}
.data__container {
  width: 90%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .data__container {
    max-width: 1000px;
  }
}
.data__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .data__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    row-gap: 0;
  }
}
.data__row + .data__row {
  margin-top: 1.875rem;
}
.data__card {
  border: 2px solid #002C83;
  border-radius: 1.25rem;
  text-align: center;
  min-height: 15.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .data__card {
    width: 31%;
  }
}
.data__card-headline {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .data__card-headline {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 45%;
            flex: 1 1 45%;
  }
}
.data__card-value {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}
@media screen and (min-width: 768px) {
  .data__card-value {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 55%;
            flex: 1 1 55%;
  }
}
.data__card-note {
  height: 1.5625rem;
  text-align: right;
  font-size: clamp(10px, 10 / 393 * 100vw, 12px);
}
.data__card .font-l {
  color: #69B6FA;
  font-size: clamp(35px, 23 / 393 * 100vw, 48px);
  letter-spacing: 0.3125rem;
  -webkit-text-stroke: 3px #333333;
  paint-order: stroke fill;
}

.department {
  background-color: #ffffff;
  padding: 3.125rem 0 6.25rem;
}
@media screen and (min-width: 768px) {
  .department {
    padding: 4.375rem 0 9.375rem;
  }
}
.department__container {
  width: 90%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .department__container {
    max-width: 1000px;
  }
}
.department__inner-links {
  max-width: 250px;
  margin: 0 auto;
  color: #002C83;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .department__inner-links {
    max-width: initial;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    row-gap: 0;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}
.department__inner-links a {
  height: 2.8125rem;
  border: 1px solid #002C83;
  border-radius: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transform: translateY(100px) scale(1);
          transform: translateY(100px) scale(1);
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  will-change: transform, opacity, box-shadow;
  -webkit-animation: dept-popUp 1s cubic-bezier(0.22, 0.82, 0.17, 1) forwards, dept-shadow 1.5s ease-out forwards;
          animation: dept-popUp 1s cubic-bezier(0.22, 0.82, 0.17, 1) forwards, dept-shadow 1.5s ease-out forwards;
}
@media screen and (min-width: 768px) {
  .department__inner-links a {
    height: 3.75rem;
    width: 25%;
  }
}
@-webkit-keyframes dept-popUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px) scale(1);
            transform: translateY(30px) scale(1);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-2px) scale(1);
            transform: translateY(-2px) scale(1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes dept-popUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px) scale(1);
            transform: translateY(30px) scale(1);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-2px) scale(1);
            transform: translateY(-2px) scale(1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes dept-shadow {
  0% {
    -webkit-box-shadow: 0 0 0 rgb(0, 0, 0);
            box-shadow: 0 0 0 rgb(0, 0, 0);
  }
  60% {
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  100% {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}
@keyframes dept-shadow {
  0% {
    -webkit-box-shadow: 0 0 0 rgb(0, 0, 0);
            box-shadow: 0 0 0 rgb(0, 0, 0);
  }
  60% {
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  100% {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}
.department a:nth-child(1) {
  -webkit-animation-delay: 0s, 0s;
          animation-delay: 0s, 0s;
}
.department a:nth-child(2) {
  -webkit-animation-delay: 0.1s, 0.1s;
          animation-delay: 0.1s, 0.1s;
}
.department a:nth-child(3) {
  -webkit-animation-delay: 0.2s, 0.2s;
          animation-delay: 0.2s, 0.2s;
}
.department a:nth-child(4) {
  -webkit-animation-delay: 0.3s, 0.3s;
          animation-delay: 0.3s, 0.3s;
}
.department a:nth-child(5) {
  -webkit-animation-delay: 0.4s, 0.4s;
          animation-delay: 0.4s, 0.4s;
}
@media screen and (min-width: 768px) {
  .department__inner-links a.font-shrink {
    font-size: clamp(10px, 12 / 393 * 100vw, 14px);
  }
}
.department__inner-links br.br-shrink {
  display: none;
}
@media screen and (min-width: 768px) {
  .department__inner-links br.br-shrink {
    display: inline-block;
  }
}
@media (min-width: 1000px) {
  .department__inner-links br.br-shrink {
    display: none;
  }
}
.department__panels {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .department__panels {
    margin-top: 10rem;
  }
}
.department__panel {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .department__panel {
    margin-top: 7.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .department__panel.--rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.department__panel-photo, .department__panel-content {
  width: 100%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .department__panel-photo, .department__panel-content {
    width: 50%;
  }
}
.department__panel-content {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .department__panel-content {
    margin-top: initial;
  }
}
.department__panel-photo img {
  border-radius: 1.25rem;
}
.department__panel-label {
  color: #002C83;
  font-size: clamp(10px, 12 / 393 * 100vw, 14px);
  line-height: 1;
}
.department__panel-header {
  font-size: clamp(16px, 18 / 393 * 100vw, 24px);
  font-weight: 500;
  line-height: 1;
  margin-top: 0.3125rem;
}
.department__summary {
  padding: 0.9375rem 0;
}
.department__accordion {
  border-top: 1px solid #333333;
  padding: 0.9375rem 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .department__accordion {
    padding: 0.5rem 0;
  }
}
.department__accordion.--ideal {
  border-bottom: 1px solid #333333;
}
.department__job-summary {
  padding: 0.3125rem 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .department__job-summary {
    font-size: clamp(10px, 12 / 393 * 100vw, 14px);
  }
}
.department__ideal-summary {
  padding: 0.125rem 0;
}
.department .accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding-right: 0.5rem;
  position: relative;
  overflow: hidden;
}
.department .accordion-header.is-active {
  color: #ffffff;
  background-color: #002C83;
}
.department .accordion-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #002C83;
  opacity: 0.8;
  -webkit-transform: translateX(-105%);
          transform: translateX(-105%);
  will-change: transform;
  z-index: 0;
  pointer-events: none;
}
.department .accordion-header.is-wipe::before {
  -webkit-animation: wipe-in-out 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
          animation: wipe-in-out 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@-webkit-keyframes wipe-in-out {
  0% {
    -webkit-transform: translateX(-105%);
            transform: translateX(-105%);
  }
  60% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
  }
}
@keyframes wipe-in-out {
  0% {
    -webkit-transform: translateX(-105%);
            transform: translateX(-105%);
  }
  60% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
  }
}
.department .accordion-title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}
.department .accordion-toggle {
  font-size: clamp(35px, 23 / 393 * 100vw, 48px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  line-height: 1;
  padding: 0;
  text-align: center;
  -webkit-animation: pulse-bounce-6px-3 2s ease-in-out infinite;
          animation: pulse-bounce-6px-3 2s ease-in-out infinite;
}
@-webkit-keyframes pulse-bounce-6px-3 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  20% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  28% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  36% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  44% {
    -webkit-transform: translateY(-1.5px);
            transform: translateY(-1.5px);
  }
  52% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes pulse-bounce-6px-3 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  20% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  28% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  36% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  44% {
    -webkit-transform: translateY(-1.5px);
            transform: translateY(-1.5px);
  }
  52% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (min-width: 768px) {
  .department .accordion-toggle {
    font-size: clamp(16px, 18 / 393 * 100vw, 24px);
  }
}
.department .accordion-toggle::after {
  content: "+";
}
.department .accordion-toggle.is-active::after {
  content: "-";
}
.department .accordion-body {
  padding: 0.625rem 0;
}

.interview {
  background-color: #ffffff;
  padding: 3.125rem 0 6.25rem;
}
@media screen and (min-width: 768px) {
  .interview {
    padding: 4.375rem 0 9.375rem;
  }
}
.interview__container {
  margin-top: 2.5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .interview__container {
    margin-top: 1.875rem;
  }
}
.interview__img {
  width: 90%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .interview__img {
    max-width: 1000px;
  }
}
@media screen and (min-width: 768px) {
  .interview__img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 3.125rem;
    max-width: initial;
    margin: initial;
  }
}
.interview__visual {
  padding-left: initial;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .interview__visual {
    padding-left: 10%;
  }
}
.interview__photo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .interview__photo {
    min-width: 1000px;
  }
}
.interview__photo img {
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .interview__photo img {
    border-radius: 0;
    border-bottom-left-radius: 100px;
  }
}
.interview__tag {
  position: absolute;
  left: 1rem;
  font-size: clamp(20px, 24 / 393 * 100vw, 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .interview__tag {
    left: 10%;
    font-size: clamp(30px, 10 / 393 * 100vw, 100px);
  }
}
.interview__tag-line {
  overflow: hidden;
  line-height: 1.2;
  background: #fff;
  border: 0.5px solid #ccc;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.interview__tag-line > span {
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.interview__faq {
  width: 90%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .interview__faq {
    max-width: 1000px;
  }
}
@media screen and (min-width: 768px) {
  .interview__faq {
    padding-top: 6.25rem;
  }
}
.interview__talk {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .interview__talk {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    row-gap: 0;
  }
}
@media screen and (min-width: 768px) {
  .interview__talk.--rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.interview__talk li {
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
@media screen and (min-width: 768px) {
  .interview__talk li {
    width: 30%;
  }
}
.interview__person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.interview__person img {
  max-width: 250px;
  border-radius: 50%;
}
.interview__person-busyo {
  padding-top: 1.25rem;
}
.interview__person-name {
  font-size: clamp(16px, 18 / 393 * 100vw, 24px);
}
.interview__person-year {
  color: #002C83;
}
.interview__scene img {
  border-radius: 0.625rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.interview__qa {
  padding: 0.5rem;
  line-height: 1.5;
  border: 1px solid #002C83;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .interview__qa {
    width: 35%;
  }
}
.interview__qa-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.interview__qa-icon {
  font-size: clamp(20px, 24 / 393 * 100vw, 32px);
  color: #002C83;
  padding-right: 0.5rem;
}
.interview__qa-text {
  color: #002C83;
}
.interview__qa-answer {
  margin-top: 0.5rem;
}
.interview__schedule {
  width: 90%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .interview__schedule {
    max-width: 1000px;
  }
}
.interview__schedule-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .interview__schedule-sp {
    display: none;
  }
}
.interview__schedule-pc {
  max-width: 800px;
  margin: 0 auto;
  display: none;
}
@media screen and (min-width: 768px) {
  .interview__schedule-pc {
    display: block;
  }
}
.interview__schedule-stack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .interview__schedule-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: 1.875rem;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    min-height: 0;
  }
}
@media screen and (min-width: 768px) {
  .interview__schedule-images {
    contain: size;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}
.interview__schedule-title {
  font-size: clamp(20px, 24 / 393 * 100vw, 32px);
  color: #002C83;
}
.interview__schedule-image {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .interview__schedule-image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-height: 0;
  }
}
.interview__schedule-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
  row-gap: 0.5rem;
  padding-bottom: 1.5625rem;
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
@media screen and (min-width: 768px) {
  .interview__schedule-item {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
.interview__schedule-item.--last {
  padding-bottom: 0;
}
.interview__schedule-time {
  width: 6.25rem;
  height: 2.1875rem;
  border-radius: 1.25rem;
  background-color: #002C83;
  color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.interview__schedule-name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}
.interview__schedule-summary {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .interview__schedule-summary {
    font-size: clamp(10px, 12 / 393 * 100vw, 14px);
  }
}
.interview__other {
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .interview__other {
    padding-top: 10rem;
  }
}
.interview .other-section-title {
  width: 90%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .interview .other-section-title {
    max-width: 1000px;
  }
}

/*
 * common
 * -------------------------------------------------------------------
 */
.interview-card {
  display: block;
  width: 18.75rem;
  text-decoration: none;
  color: #333333;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .interview-card {
    width: 22.5rem;
  }
}
.interview-card:hover {
  opacity: 0.8;
}

.interview-image-wrapper {
  position: relative;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.interview-image-wrapper img {
  display: block;
  width: 100% !important;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.interview-image-wrapper:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.interview-text {
  padding-top: 0.625rem;
  padding-left: 0.3125rem;
}

.interview-department {
  font-size: clamp(10px, 12 / 393 * 100vw, 14px);
}

.interview-name {
  font-size: clamp(14px, 14 / 393 * 100vw, 16px);
  margin-top: 0.125rem;
}/*# sourceMappingURL=style.css.map */