@charset "UTF-8";
/* ------------------------------ */
/* リセットCSS */
/* ------------------------------ */
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  *font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

/* base */
/* px → rem */
/* ==========================
  Responsive Clamp Function
  （固定＋特例custom）
========================== */
/* --------------------------
  Project Default Viewport
-------------------------- */
/* --------------------------
  通常版：基本はこれだけ使う
  rclamp(16, 24)
-------------------------- */
/* --------------------------
  特例版：ここだけviewport変えたい時用
  rclamp-custom(24, 64, 600, 1600)
-------------------------- */
/* Safari対策 */
* {
  min-height: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #0c0c0c;
  line-height: 1.5;
  background: #fff;
}
@media screen and (max-width: 767px) {
  body {
    line-height: 1.6;
    letter-spacing: 0;
    padding-bottom: 72px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

.inner {
  max-width: 1440px;
  width: 79%;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .inner {
    width: 90%;
  }
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-inline: clamp(2.5rem, -7.1428571429rem + 10.7142857143vw, 6.25rem);
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .header {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding-inline: 12px;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
  max-width: 1440px;
  margin-inline: auto;
}
@media (max-width: 900px) {
  .header__inner {
    height: 44px;
  }
}

.header__head {
  display: flex;
  align-items: flex-end;
  transition: opacity 0.3s ease;
}

.header__logo {
  width: clamp(9.375rem, 4.7916666667rem + 8.1481481481vw, 12.125rem);
}
.header__logo img {
  width: 100%;
  height: autuo;
  display: block;
}
@media (max-width: 900px) {
  .header__logo {
    width: 135px;
    height: 32px;
    aspect-ratio: 135/32;
  }
}

.header__head:hover {
  opacity: 0.7;
}

.header__logo-name {
  color: #205295;
  font-size: clamp(0.875rem, 0.5900817236rem + 0.5943536404vw, 1.125rem);
}
@media (max-width: 900px) {
  .header__logo-name {
    display: none;
  }
}

.header__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .header__nav {
    display: none;
  }
}

.header__list {
  display: flex;
  gap: clamp(0.9375rem, -0.8432392273rem + 3.7147102526vw, 2.5rem);
}

.header__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s ease;
}
.header__link:hover {
  opacity: 0.8;
}

.header__en {
  color: #205295;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: clamp(0.75rem, 0.6075408618rem + 0.2971768202vw, 0.875rem);
}

.header__jp {
  font-size: clamp(0.875rem, 0.5900817236rem + 0.5943536404vw, 1.125rem);
}

.header__link-arrow img {
  width: 24px;
  height: 24px;
}

.header__item--sub {
  position: relative;
}

.header__sublist {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  padding: 24px;
  /* 👇 ここ変更 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.header__sublist li + li {
  margin-top: 26px;
}
.header__sublist li a {
  font-size: 16px;
  white-space: nowrap;
}
.header__sublist li a:hover {
  color: #2c74b3;
}

/* 👇 これを追加 */
.header__item--sub:hover .header__sublist {
  opacity: 1;
  visibility: visible;
}

.header__btn {
  margin-left: 27px;
  color: #fff;
  font-size: clamp(0.875rem, 0.5900817236rem + 0.5943536404vw, 1.125rem);
  display: flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  background: #0b294c;
  transition: all 0.3s ease;
}
.header__btn:hover {
  background: #fff;
  color: #0b294c;
}

.drawer__icon {
  display: none;
}
@media (max-width: 900px) {
  .drawer__icon {
    position: fixed;
    z-index: 102;
    top: 18px;
    right: 27px;
    width: 21px;
    height: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.drawer__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #0a2647;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5; /* 18px */
}

.drawer__icon.js-show::after {
  content: "CLOSE";
  opacity: 1;
}

.drawer__icon--bar {
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background: #0a2647;
  transition: all 0.5s ease;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 3px;
  background: #0a2647;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  rotate: -45deg;
  translate: 0 -3.5px;
  background: #0a2647;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  max-width: 500px;
  width: 64%;
  height: 100vh;
  background: #fff;
  overflow-y: scroll;
  translate: 101%;
  transition: translate 0.3s ease;
}
.drawer.js-show {
  translate: 0;
}

.drawer__body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 48px 40px;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 29px;
}

.drawer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.drawer__link {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.drawer__en {
  color: #205295;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5; /* 21px */
}

.drawer__jp {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5; /* 24px */
}

.entry-btn {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 60px;
  background: #0b294c;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 4px 0 rgba(11, 41, 76, 0.3);
  font-family: "Roboto", sans-serif;
  transition: background 0.3s ease;
}
@media screen and (max-width: 767px) {
  .entry-btn {
    width: 193px;
    height: 51px;
  }
}

/* EN */
.entry-btn__en {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.6px;
  margin-bottom: -6px;
  transition: color 0.3s ease;
}

/* JA */
.entry-btn__ja {
  font-size: clamp(1.125rem, 0.9929577465rem + 0.5633802817vw, 1.5rem);
  font-weight: 700;
  transition: color 0.3s ease;
}

.entry-btn__small {
  font-size: clamp(1.125rem, 1.0809859155rem + 0.1877934272vw, 1.25rem);
  transition: color 0.3s ease;
}

/* 右下三角 */
.entry-btn::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent transparent #fff transparent;
  transition: border-color 0.3s ease;
}

/* =====================
   hover（PC/SP共通）
===================== */
.entry-btn:hover {
  background: #fff;
}

.entry-btn:hover .entry-btn__en {
  color: #2C74B3;
}

.entry-btn:hover .entry-btn__ja,
.entry-btn:hover .entry-btn__small {
  color: #0b294c;
}

.entry-btn:hover::after {
  border-color: transparent transparent #0b294c transparent;
}

.entry-btn--white {
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(11, 41, 76, 0.3);
}
.entry-btn--white .entry-btn__en {
  color: #2c74b3;
}
.entry-btn--white .entry-btn__ja,
.entry-btn--white .entry-btn__small {
  font-family: "Saira Semi Condensed", sans-serif;
  color: #0b294c;
}
.entry-btn--white::after {
  border-color: transparent transparent #0b294c transparent;
}
.entry-btn--white {
  /* ==================
     hover（white専用）
  ================== */
}
.entry-btn--white:hover {
  background: #0b294c;
}
.entry-btn--white:hover .entry-btn__en, .entry-btn--white:hover .entry-btn__ja, .entry-btn--white:hover .entry-btn__small {
  color: #fff;
}
.entry-btn--white:hover::after {
  border-color: transparent transparent #fff transparent;
}

.section-title {
  display: flex;
  align-items: center; /* 縦中央 */
  gap: 20px;
  clip-path: polygon(0 0, 100% 0%, 93% 100%, 0% 100%);
  background: linear-gradient(90deg, #144272 0%, #2c74b3 100%);
  width: clamp(19.9375rem, 9.7922535211rem + 43.2863849765vw, 48.75rem);
  height: clamp(4.5625rem, 3.5281690141rem + 4.4131455399vw, 7.5rem);
  padding-left: clamp(0.625rem, -2.5220070423rem + 13.4272300469vw, 9.5625rem);
  gap: clamp(0.625rem, 0.4049295775rem + 0.9389671362vw, 1.25rem);
  white-space: nowrap;
}

.section-title--white {
  background: #fff;
}
.section-title--white .section-title__en {
  color: #144272;
}
.section-title--white .section-title__ja {
  color: #144272;
}

.section-title__en {
  color: #fff;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: clamp(2.25rem, 1.6338028169rem + 2.6291079812vw, 4rem);
  font-weight: 600;
  line-height: 2; /* 128px */
}

.section-title__ja {
  color: #fff;
  font-size: clamp(0.875rem, 0.786971831rem + 0.3755868545vw, 1.125rem);
  font-weight: 700;
  line-height: 2; /* 36px */
}

.section-title__ja {
  position: relative;
  display: inline-block;
}

.section-title__ja::before,
.section-title__ja::after {
  content: "ー";
}

/* 初期設定 */
/* ボタンリセット（Safari対策込み） */
button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-tap-highlight-color: transparent;
}

button:focus,
button:focus-visible {
  outline: none;
}

/* dialogリセット */
:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

/* モーダル開いてる時スクロール止め */
body:has(dialog[open]) {
  overflow: hidden;
}

/* モーダルのスタイル ============ */
dialog::backdrop {
  opacity: 0;
  transition: background 0.3s ease-in-out;
}
dialog.js-show.modal__content {
  opacity: 1;
}
dialog.js-show::backdrop {
  opacity: 1;
  /* 背景画像 */
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}

.modal__content {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  /* モーダル枠組みのスタイル */
  max-width: 1140px;
  width: 80%;
  max-height: 58vh;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .modal__content {
    max-height: 70vh;
  }
}
@media screen and (max-width: 767px) {
  .modal__content {
    max-height: 90vh;
  }
}

.modal__content--requirements {
  max-height: 67vh;
}

.modal__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  height: 100%;
  max-height: inherit;
  position: relative;
}
@media screen and (max-width: 767px) {
  .modal__inner {
    align-items: start;
  }
}

.modal__close-btn {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 24px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .modal__close-btn {
    top: 3px;
    margin-bottom: 8px;
  }
}

.modal__close-btn-icon {
  color: #0a2647;
  font-size: 32px;
  margin-bottom: -10px;
}

.modal__close-btn-text {
  color: #0a2647;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5; /* 21px */
}

.modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: center;
  padding-block: 70px;
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .modal__body {
    grid-template-columns: 1fr;
    padding-block: 70px;
    gap: 11px;
  }
}

.modal__text-head {
  color: #144272;
  font-size: clamp(1.25rem, 0.985915493rem + 1.1267605634vw, 2rem);
  font-weight: 700;
  line-height: 1.5; /* 48px */
  margin-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .modal__text-head {
    margin-bottom: 17px;
  }
}

.modal__text-body-lead {
  color: #0c0c0c;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6; /* 25.6px */
  letter-spacing: 0.272px;
  margin-bottom: 33px;
}
@media screen and (max-width: 767px) {
  .modal__text-body-lead {
    margin-bottom: 20px;
  }
}

.modal__text-category-name {
  color: #144272;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5; /* 27px */
}

.modal__text-category-lists {
  display: flex;
  gap: 12px;
}
.modal__text-category-lists li {
  color: #144272;
  font-size: 16px;
}

.requirements-modal__inner {
  display: flex;
  align-items: center;
  overflow-y: auto;
  height: 100%;
  max-height: inherit;
  position: relative;
}
@media screen and (max-width: 767px) {
  .requirements-modal__inner {
    align-items: start;
  }
}

.requirements-modal__body {
  max-width: 897px;
  width: 90%;
  margin-inline: auto;
  padding-block: 38px;
}
@media screen and (max-width: 767px) {
  .requirements-modal__body {
    padding-block: 58px;
  }
}

.requirements-modal__header {
  padding-bottom: 30px;
  border-bottom: 1px solid #666;
}

.requirements-modal__en {
  color: #2c74b3;
  font-size: 16px;
}

.requirements-modal__title {
  color: #0c0c0c;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3; /* 31.2px */
}

.requirements-modal__title-small {
  font-size: 18px;
}

.requirements-modal__block {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding-block: 15px;
  border-bottom: 1px solid #666;
}

.requirements-modal__block-title {
  font-size: 16px;
  font-weight: 500;
}

.requirements-modal__list {
  display: grid;
}
.requirements-modal__list li {
  position: relative;
  padding-left: 1.2em;
  color: #0c0c0c;
  font-size: 16px;
  line-height: 1.7;
  list-style: none;
}
.requirements-modal__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #0c0c0c;
  font-size: 16px;
}

.animated__colorBox {
  position: relative;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  clip-path: inset(0 100% 0 0);
}
.animated__colorBox::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}
.animated__colorBox.js-show {
  animation: 1.2s forwards ease-in-out textView;
}
.animated__colorBox.js-show::after {
  animation: 1.2s forwards ease-in-out colorBox;
}

@keyframes textView {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes colorBox {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.animated__fadeIn {
  opacity: 0;
  transform: translateY(40px);
}

.mv__entry-btn {
  overflow: hidden;
}

.animated__fadeIn--mv {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.5s ease-in-out 1.6s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animated__clipView {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s ease;
}
.animated__clipView.js-show {
  clip-path: inset(0 0 0 0);
}

.animated__fadeIn {
  opacity: 0;
  transform: translateY(40px);
}

.animated__sectionTitle {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.3s ease;
}
.animated__sectionTitle.js-show {
  clip-path: inset(0 0 0 0);
}

.footer__top {
  padding-block: 21px;
}
@media screen and (max-width: 767px) {
  .footer__top {
    padding-block: 27px 41px;
  }
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__content {
    flex-direction: column;
    gap: 26px;
  }
}

.footer__logo img {
  width: clamp(15.1875rem, 13.0088028169rem + 9.2957746479vw, 21.375rem);
  transition: opacity 0.3s ease;
}

.footer__logo:hover img {
  opacity: 0.7;
}

.footer__nav-group {
  display: flex;
  gap: clamp(1.5rem, -0.6126760563rem + 9.014084507vw, 7.5rem);
}
@media screen and (max-width: 767px) {
  .footer__nav-group {
    flex-direction: column-reverse;
    gap: 30px;
    text-align: center;
  }
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__nav-list li a {
  transition: opacity 0.3s ease;
}
.footer__nav-list li a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .footer__nav-list-sns {
    align-self: self-end;
  }
}

.footer__sns-icons {
  display: flex;
  gap: 14px;
}
.footer__sns-icons img {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  background: #144272;
  padding-block: 22px;
}
@media screen and (max-width: 767px) {
  .footer-bottom {
    padding-block: 18px;
  }
}

.footer-bottom__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer-bottom__content {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 14px;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    gap: 14px;
  }
}

.footer-bottom__copyright {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5; /* 21px */
}

.footer-bottom__nav {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .footer-bottom__nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: self-start;
    gap: 14px;
  }
}
.footer-bottom__nav li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.footer-bottom__nav li a:hover {
  opacity: 0.7;
}

.sp-cta {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-cta {
    background: linear-gradient(268deg, rgba(20, 66, 114, 0.8) -2.29%, rgba(24, 78, 135, 0.8) 19.24%, rgba(31, 104, 179, 0.8) 63.81%, rgba(35, 115, 199, 0.8) 83.68%, rgba(38, 125, 216, 0.8) 101.41%);
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
}

/* 表示状態 */
.sp-cta.is-show {
  transform: translateY(0);
  opacity: 1;
}

.mv {
  min-height: 730px;
  background: url("../img/bg_mv.webp") no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  position: fixed;
  z-index: -1;
  top: 74px;
  left: 0;
  width: 100%;
}
@media (max-width: 900px) {
  .mv {
    top: 44px;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    min-height: 700px;
    background: url("../img/bg_mv-sp.webp") no-repeat center center;
    background-size: cover;
  }
}

.mv__contet {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 20;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .mv__contet {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.mv__title {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: clamp(1.5rem, 1.1478873239rem + 1.5023474178vw, 2.5rem);
  font-weight: 600;
  line-height: 1.3; /* 52px */
  letter-spacing: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.mv__lead {
  font-size: clamp(1.5rem, 0.7957746479rem + 3.0046948357vw, 3.5rem);
  font-weight: 700;
  line-height: 1.3; /* 72.8px */
  letter-spacing: 5.6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  margin-top: 11px;
}
@media screen and (max-width: 767px) {
  .mv__lead {
    letter-spacing: normal;
  }
}

.mv__text {
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  font-weight: 500;
  line-height: 1.5; /* 27px */
  letter-spacing: 0.306px;
  margin-top: 11px;
}
@media (max-width: 360px) {
  .mv__text {
    font-size: 14px;
  }
}

.mv__entry-btn {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .mv__entry-btn {
    display: flex;
    justify-content: center;
  }
}

.mv__scroll-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  transform: translateX(80px);
}
@media screen and (max-width: 767px) {
  .mv__scroll-wrapper {
    top: 0;
    left: 180px;
    right: auto;
    bottom: auto;
    transform: none;
  }
}

.mv__scroll {
  position: absolute;
  height: 100%;
  overflow: visible;
  transform: rotate(27.25deg);
}

.mv__scroll--right {
  margin-left: 800px;
}
@media screen and (max-width: 767px) {
  .mv__scroll--right {
    margin-left: clamp(43.75rem, 7.8762755102rem + 153.0612244898vw, 81.25rem);
  }
}

.mv__scroll {
  overflow: visible;
  height: 100%;
}

.mv__track {
  display: flex;
  flex-direction: column;
  animation: scroll-up 20s linear infinite;
}

.mv__scroll--right .mv__track {
  gap: 50px;
}

.mv__scroll--left .mv__track {
  gap: 40px;
  animation: scroll-down 20s linear infinite;
}

.mv__image {
  width: 511px;
  height: 252px;
}
@media screen and (max-width: 767px) {
  .mv__image {
    width: 307px;
    height: 146px;
  }
}

.mv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: rotate(-27.25deg);
}

/* 上方向 */
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
/* 下方向 */
@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
.message {
  margin-top: 730px;
  width: 100%;
  background: linear-gradient(178deg, #0a2647 2.27%, #0f396b 36.32%, #144c8d 69.02%, #185dad 99.11%);
  padding-block: 202px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .message {
    margin-top: 700px;
    padding-block: 147px 233px;
  }
}

.message__bg-text {
  color: rgba(255, 255, 255, 0.3);
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: clamp(4rem, 2.1073943662rem + 8.0751173709vw, 9.375rem);
  font-weight: 600;
  line-height: 1.3; /* 195px */
  writing-mode: vertical-rl;
}

.message__bg-text--blue {
  position: absolute;
  top: -9px;
  left: 0;
}

.message__bg-text--thinking {
  position: absolute;
  right: 0;
  bottom: -9px;
}

.message__inner {
  max-width: 795px;
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .message__inner {
    width: 83%;
    max-width: 600px;
  }
}

.message__title {
  text-align: center;
  color: #fff;
  font-size: clamp(2rem, 1.6478873239rem + 1.5023474178vw, 3rem);
  line-height: 2; /* 96px */
  margin-bottom: 35px;
  font-weight: 500;
}

.message__text {
  color: #fff;
  text-align: center;
  font-size: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
  line-height: 2; /* 40px */
}
.about {
  padding-block: 176px 46px;
}
@media screen and (max-width: 767px) {
  .about {
    padding-block: 64px 46px;
  }
}

.about__inner {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 左：可変 / 右：固定 */
  align-items: start;
  gap: clamp(1.25rem, -2.3114784547rem + 7.4294205052vw, 4.375rem);
}
@media screen and (max-width: 767px) {
  .about__inner {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .about__inner .about__image {
    order: -1;
  }
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.7878521127rem + 1.9718309859vw, 2.5625rem);
}

.about__title {
  color: #0a2647;
  font-size: clamp(1.25rem, 0.6338028169rem + 2.6291079812vw, 3rem);
  font-weight: 500;
}

.about__text {
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  line-height: 2; /* 36px */
  letter-spacing: 0.306px;
}

@media screen and (max-width: 767px) {
  .about__entry-btn {
    text-align: center;
  }
}

.about__image img {
  width: 100%;
  height: auto;
  display: block;
}

.working {
  padding-block: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .working {
    padding-block: 19px;
  }
}

.working__inner {
  width: 96%;
  margin-inline: auto;
  position: relative;
}

.working-card {
  position: sticky;
  top: 74px;
  display: grid;
  place-items: center;
  height: min(100svh - 74px);
  transform-origin: center center;
}
@media screen and (max-width: 1024px) {
  .working-card {
    height: min(100svh - 74px, 800px);
  }
}
@media screen and (max-width: 767px) {
  .working-card {
    height: auto;
    padding-block: 49px;
  }
}

.working-card--01,
.working-card--03 {
  background: linear-gradient(71deg, #2c74b3 2.44%, #296bab 26.03%, #2561a2 52.3%, #22579a 79.35%, #205295 93.67%);
}

.working-card--02 {
  background: linear-gradient(71deg, #e6e6e6 6.98%, #dfdfdf 57.1%, rgba(200, 200, 204, 0.93) 71.59%, #b0b0b0 97.59%);
}

.working-card__content {
  max-width: 1140px;
  margin-inline: auto;
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: start;
  transform-origin: center center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .working-card__content {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

@media screen and (max-width: 767px) {
  .working-card__image {
    order: 1;
  }
  .working-card__message {
    order: 2;
  }
}
@media (max-height: 750px) {
  .working-card__content {
    transform: scale(0.8);
  }
}
@media (max-height: 650px) {
  .working-card__content {
    transform: scale(0.7);
  }
}
/* =================================
  working-card 共通
================================= */
.working-card__head {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: clamp(4rem, 2.5915492958rem + 6.0093896714vw, 8rem);
  font-weight: 400;
  line-height: 1.6;
  margin-top: -56px;
}
@media screen and (max-width: 767px) {
  .working-card__head {
    margin-top: 0;
  }
}
.working-card__title {
  font-weight: 700;
  line-height: 1.6;
}
.working-card__text {
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  letter-spacing: 0.306px;
}
.working-card__number {
  position: absolute;
  left: 0;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: clamp(4rem, 2.1073943662rem + 8.0751173709vw, 9.375rem);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .working-card__number {
    position: static;
    margin-top: 16px;
  }
}

.working-card--01 .working-card__head {
  color: rgba(255, 255, 255, 0.3);
}
.working-card--01 .working-card__title,
.working-card--01 .working-card__text {
  color: #fff;
}
.working-card--01 .working-card__title {
  font-size: clamp(1.875rem, 0.5928677563rem + 2.6745913819vw, 3rem);
}
@media screen and (max-width: 767px) {
  .working-card--01 .working-card__title {
    font-size: 20px;
  }
}
.working-card--01 .working-card__number {
  bottom: -63px;
  color: rgba(255, 255, 255, 0.3);
}

.working-card--02 .working-card__head {
  color: #8c8c8c;
}
.working-card--02 .working-card__title,
.working-card--02 .working-card__text {
  color: #0c0c0c;
}
.working-card--02 .working-card__title {
  font-size: clamp(1.5rem, 0.6452451709rem + 1.7830609212vw, 2.25rem);
}
.working-card--02 .working-card__number {
  bottom: clamp(-6.9375rem, -10.3565193165rem + 7.132243685vw, -3.9375rem);
  color: #8c8c8c;
}

.working-card--03 .working-card__head {
  color: rgba(255, 255, 255, 0.3);
}
.working-card--03 .working-card__title,
.working-card--03 .working-card__text {
  color: #fff;
}
.working-card--03 .working-card__title {
  font-size: clamp(1.5rem, 0.6452451709rem + 1.7830609212vw, 2.25rem);
}
@media screen and (max-width: 767px) {
  .working-card--03 .working-card__text {
    letter-spacing: 0;
  }
}
.working-card--03 .working-card__number {
  bottom: -63px;
  color: rgba(255, 255, 255, 0.3);
}

.working-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.work-style {
  padding-block: 53px 63px;
}

.work-style__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9375rem, -0.1309435364rem + 2.2288261516vw, 1.875rem);
  margin-top: 82px;
}
@media screen and (max-width: 767px) {
  .work-style__cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.work-style__card {
  padding-block: 13px;
  padding-inline: clamp(0.625rem, 0.2688521545rem + 0.7429420505vw, 0.9375rem);
  background: linear-gradient(22deg, #a7c5df -3.84%, #2c74b3 19.37%, #2c74b3 54.1%, #205295 102.9%);
}
@media screen and (max-width: 767px) {
  .work-style__card {
    padding: 13px 15px;
    max-width: 600px;
    margin-inline: auto;
  }
}

.work-style__card-inner {
  background: #fff;
  display: grid;
  height: 100%;
}

.work-style__card-body {
  text-align: center;
  padding: clamp(0.9375rem, 0.2964338782rem + 1.3372956909vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  .work-style__card-body {
    padding: 24px;
  }
}

.work-style__card-title {
  color: #0a2647;
  font-size: clamp(1.125rem, 0.6976225854rem + 0.8915304606vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4; /* 33.6px */
  margin-bottom: 11px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .work-style__card-title {
    font-size: 20px;
  }
}

.work-style__card-text {
  color: #000;
  font-size: clamp(0.875rem, 0.5900817236rem + 0.5943536404vw, 1.125rem);
  letter-spacing: 0.306px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .work-style__card-text {
    font-size: 16px;
    text-align: left;
  }
}

.interview {
  position: relative;
  clip-path: polygon(0 11%, 100% 0%, 100% 88%, 0% 100%);
  background: linear-gradient(232deg, #295ea5 8.35%, #2c74b3 28.78%, #2c74b3 87.12%, #2c74b3 97.18%);
  padding-block: 293px 196px;
}
@media screen and (max-width: 767px) {
  .interview {
    padding-block: 175px 203px;
  }
}

.interview__swiper-container {
  margin-top: 49px;
}

.interview__swiper .swiper-wrapper {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .interview__swiper .swiper-wrapper {
    margin-left: 20px;
  }
}

.interview__swiper .swiper-slide {
  margin-left: 0 !important;
}

.interview__card {
  position: relative;
}

.interview__card-btn {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: transparent;
  border: none;
  cursor: pointer;
}

.interview__card-image {
  margin-bottom: 20px;
}

.interview__card-image img {
  transition: filter 0.3s ease;
}

.interview__card:hover .interview__card-image img {
  filter: brightness(0.6);
}

.interview__card-body {
  color: #fff;
}

.interview__card-body-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.interview__card-body-head-name {
  font-size: 18px;
}

.interview__card-body-head-category {
  color: #2c74b3;
  font-size: 16px;
  display: flex;
  padding-inline: 21px;
  padding-block: 4px;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  background: #fff;
}

.interview__card-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5; /* 27px */
}

.interview__card-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.34px;
}
@media screen and (max-width: 767px) {
  .interview__card-text {
    letter-spacing: 0;
    font-size: 18px;
  }
}

.swiper-pagination__wrapper {
  margin-top: 63px;
  max-width: 1140px;
  width: 90%;
  margin-inline: auto;
  display: flex;
  gap: 256px;
  justify-content: space-between; /* 左：バー / 右：ボタン */
}

/* ページネーション全体（横棒） */
.swiper-pagination-progressbar {
  position: relative;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* 動くバー */
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #144272;
  height: 100%;
}

/* Swiperデフォルト矢印を消す */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

/* ボタン2つを横並びにする */
.swiper-buttons {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .swiper-buttons {
    display: none;
  }
}

/* 自作矢印 */
.interview__arrow {
  position: static;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.interview__arrow:hover {
  opacity: 0.7;
}

.interview__arrow img {
  width: 24px;
  height: auto;
}

.flow {
  padding-top: 121px;
}

.flow__list {
  position: relative;
  margin-top: 55px;
  max-width: 1140px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .flow__list {
    margin-top: 37px;
  }
}

.flow__content {
  display: grid;
  grid-template-columns: 188px 1fr auto;
  align-items: center;
  padding-block: 70px;
}

.flow__item:first-child .flow__content {
  padding-top: 0;
}

@media screen and (max-width: 767px) {
  .flow__content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 20px;
    max-width: 600px;
    margin-inline: auto;
    padding-inline: 0;
    padding-block: 20px 0;
  }
  .flow__number-wrap {
    order: 1;
  }
  .flow__image {
    order: 2;
  }
  .flow__body {
    order: 3;
  }
}
.flow__item {
  position: relative;
}

.flow__timeline-pc {
  position: absolute;
  left: 188px;
  top: 0;
  height: 100%;
  width: 2px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .flow__timeline-pc {
    visibility: hidden;
  }
}

.flow__line-part {
  width: 2px;
  background: #144272;
  flex-grow: 1;
  transform: scaleY(0);
}

.flow__line-part--top {
  margin-bottom: 12px;
  transform-origin: top;
}

.flow__line-part--bottom {
  margin-top: 12px;
  transform-origin: top;
}

.flow__dot {
  width: 12px;
  height: 12px;
  background: #144272;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.5);
}

.flow__timeline-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .flow__timeline-sp {
    display: block;
    width: 2px;
    height: 100px;
    background: #144272;
    transform: scaleY(0);
    transform-origin: top;
  }
}

.flow__number-wrap {
  clip-path: polygon(11% 0, 100% 0%, 89% 100%, 0% 100%);
  background: #144272;
  width: 131px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow__number {
  color: #fff;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.5; /* 96px */
}

.flow__body {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .flow__body {
    margin-left: 0;
  }
}

.flow__title {
  color: #144272;
  font-size: clamp(1.25rem, 0.985915493rem + 1.1267605634vw, 2rem);
  font-weight: 700;
  line-height: 1.3; /* 41.6px */
}

.flow__text {
  margin-top: 12px;
  color: #000;
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  font-weight: 400;
  letter-spacing: 0.306px;
}
@media screen and (max-width: 767px) {
  .flow__text {
    letter-spacing: 0;
    text-align: left;
  }
}

.flow__entry-btn {
  margin-top: 12px;
}
.flow__entry-btn .entry-btn {
  width: clamp(11.25rem, 8.4008172363rem + 5.9435364042vw, 13.75rem);
}

.flow__image {
  margin-left: 20px;
  width: clamp(12.5rem, 1.2457280832rem + 23.4769687964vw, 22.375rem);
}
@media screen and (max-width: 767px) {
  .flow__image {
    margin-left: 0;
    width: 272px;
  }
}

.requirements {
  padding-block: 82px;
}
@media screen and (max-width: 767px) {
  .requirements {
    padding-block: 55px 80px;
  }
}

.requirements__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.requirements__title-en {
  color: #144272;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3; /* 41.6px */
}

.requirements__title-ja {
  color: #0c0c0c;
  font-size: 24px;
  font-weight: 500;
  line-height: 2; /* 48px */
}
@media screen and (max-width: 767px) {
  .requirements__title-ja {
    font-size: 18px;
  }
}

.requirements__cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media screen and (max-width: 767px) {
  .requirements__cards {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-inline: auto;
  }
}

.requirements__card {
  padding: 20px 10px;
  background: #f5f5f5;
  box-shadow: 0 4px 4px 0 rgba(20, 66, 114, 0.2);
  display: flex;
  flex-direction: column;
}

.requirements__card-en {
  color: #2c74b3;
  font-size: 16px;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .requirements__card-en {
    margin-bottom: 10px;
  }
}

.requirements__card-title {
  color: #0c0c0c;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .requirements__card-title {
    margin-bottom: 10px;
    font-size: 20px;
  }
}

.requirements__card-title-small {
  font-size: 18px;
}

.requirements__card-list {
  list-style: disc;
  padding-left: 1.5em;
  top: 0.8em;
  margin-bottom: 7px;
}
.requirements__card-list li {
  color: #8c8c8c;
  font-size: 16px;
}
.requirements__card-list li::marker {
  color: #8c8c8c;
  font-size: 13px;
}

.requirements__card-btn {
  align-self: flex-end;
  margin-top: auto;
}

.requirements__card-btn-text {
  display: inline-flex;
  align-items: center;
  color: #144272;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5; /* 24px */
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .requirements__card-btn-text {
    font-weight: 700;
  }
}

.requirements__card-btn-text:hover {
  opacity: 0.7;
}

.requirements__card-btn-icon {
  display: inline-flex;
  margin-top: 3px;
}
.requirements__card-btn-icon img {
  display: block;
  width: 24px;
  height: 24px;
}

.faq {
  padding-block: 25px 160px;
}
@media screen and (max-width: 767px) {
  .faq {
    padding-block: 20px 60px;
  }
}

.faq__inner {
  display: flex;
  align-items: flex-start;
  margin-top: 68px;
}
@media screen and (max-width: 767px) {
  .faq__inner {
    display: flex;
    flex-direction: column;
    max-width: 600px;
  }
}

.faq__tablist {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  border-right: 1px solid #666;
  padding-right: 32px;
}
@media screen and (max-width: 767px) {
  .faq__tablist {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    border-right: none;
    padding-right: 0;
    padding-bottom: 20px;
    max-width: 425px;
  }
}

.faq__tab {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3; /* 23.4px */
  border-radius: 25.5px;
  border: 1px solid #666;
  background: #fff;
  display: flex;
  width: 169px;
  height: 51px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .faq__tab {
    padding-inline: clamp(1.25rem, -2.3863636364rem + 18.1818181818vw, 1.875rem);
    white-space: nowrap;
    width: auto;
    font-size: 16px;
  }
}
.faq__tab[aria-selected=true] {
  cursor: default;
  color: #fff;
  background: #144272;
  font-weight: 700;
  pointer-events: none;
}
@media (any-hover: hover) {
  .faq__tab:hover {
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3; /* 23.4px */
    background: #144272;
  }
}

.faq__contents {
  flex-grow: 1;
  padding-left: 32px;
}
@media screen and (max-width: 767px) {
  .faq__contents {
    padding-left: 0;
    padding-top: 20px;
    border-top: 1px solid #666;
    width: 100%;
  }
}

.faq__content-wrap {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq__content-wrap.js-show {
  opacity: 1;
  visibility: visible;
  height: auto;
  transform: translateY(0);
}

.faq__content {
  padding: 17px 20px;
  border: 1px solid #144272;
}

.faq__content + .faq__content {
  margin-top: 20px;
}

summary {
  display: block;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
@media (any-hover: hover) {
  summary:hover {
    cursor: pointer;
  }
}

.js-summary {
  position: relative;
}

.faq__question-text {
  display: block;
  padding-right: 40px;
  color: #0c0c0c;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5; /* 27px */
}

.faq__question-text::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("../img/icon_down-arrow.webp") no-repeat center/contain;
  transition: transform 0.3s ease;
}

.js-details[open] .faq__question-text::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq__answer-text {
  padding-top: 22px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3; /* 23.4px */
  letter-spacing: 0.306px;
}
@media screen and (max-width: 767px) {
  .faq__answer-text {
    letter-spacing: normal;
  }
}

.faq__more-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .faq__more-btn {
    margin-top: 24px;
  }
}

.faq__more-btn.is-hidden {
  display: none;
}

.faq__more-btn-text {
  color: #144272;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3; /* 23.4px */
}

.faq__more-btn-icon img {
  width: 32px;
  height: 49px;
}

.faq__more-btn-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.faq__more-btn.is-open .faq__more-btn-icon {
  transform: rotate(180deg);
}

.faq__content.is-hidden {
  display: none;
}

.contact-bg {
  position: sticky;
  top: 74px;
  width: 100%;
  height: 383px;
  overflow-x: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .contact-bg {
    top: 44px;
    height: 226px;
  }
}

.contact-bg__image {
  width: 100%;
  height: 100%;
}

.contact-bg__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.contact {
  padding: 120px 0;
  background: linear-gradient(71deg, #2c74b3 2.44%, #296bab 26.03%, #2561a2 52.3%, #22579a 79.35%, #205295 93.67%);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 86px 0;
  }
}

.contact__bg-text {
  color: rgba(255, 255, 255, 0.3);
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 150px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3; /* 195px */
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .contact__bg-text {
    writing-mode: horizontal-tb;
    font-size: 64px;
  }
}

.contact__bg-text--blue {
  position: absolute;
  top: -10px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .contact__bg-text--blue {
    top: 0;
  }
}

.contact__bg-text--thinking {
  position: absolute;
  right: 0;
  bottom: -10px;
}
@media screen and (max-width: 767px) {
  .contact__bg-text--thinking {
    bottom: 0;
  }
}

.contact__inner {
  max-width: 1440px;
  width: 79%;
  margin-inline: auto;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .contact__inner {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .contact__inner {
    max-width: 600px;
  }
}

.contact-form {
  max-width: 768px;
  width: 90%;
  margin-inline: auto;
  padding-block: 43px;
}
@media screen and (max-width: 767px) {
  .contact-form {
    width: 92%;
    padding-block: 8px 65px;
  }
}

.contact-form__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 33px;
}
@media screen and (max-width: 767px) {
  .contact-form__header {
    margin-bottom: 8px;
  }
}

.contact-form__en {
  color: #144272;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.contact-form__title {
  color: #144272;
  font-size: clamp(1.5rem, 0.9718309859rem + 2.2535211268vw, 3rem);
  font-weight: 700;
  line-height: 1.2; /* 57.6px */
}

.contact-form__lead {
  margin-top: 24px;
  font-size: 18px;
  letter-spacing: 0.306px;
}
@media screen and (max-width: 767px) {
  .contact-form__lead {
    margin-top: 8px;
    font-size: 16px;
    letter-spacing: 0;
  }
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.contact-form__field {
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .contact-form__field--textarea {
    margin-top: 40px;
  }
}

.contact-form__label {
  display: block;
  margin-bottom: 8px;
  color: #144272;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact-form__label {
    font-size: 16px;
  }
}

.contact-form__required {
  color: #c81e07;
}

input,
select,
textarea {
  width: 100%;
  padding-inline: 12px;
  border: 1px solid #144272;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
input,
select {
  height: 50px;
}
@media screen and (max-width: 767px) {
  input,
  select {
    height: 40px;
  }
}

/* optionは常に黒 */
.contact-form__select select option {
  color: #0c0c0c;
}

/* 初期状態（未選択）は赤 */
.contact-form__select select {
  color: #666;
}

/* 何か選択されたら黒 */
.contact-form__select select:valid {
  color: #0c0c0c;
}

textarea {
  min-height: 180px;
  padding: 12px;
}

.contact-form__select {
  position: relative;
}
.contact-form__select select {
  width: 100%;
  padding-inline: 12px 40px;
  border: 1px solid #144272;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
}
.contact-form__select {
  /* 矢印アイコン */
}
.contact-form__select::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  translate: 0 -50%;
  width: 24px;
  height: 24px;
  background: url("../img/icon_down-arrow.webp") no-repeat center/contain;
  pointer-events: none;
}

.contact-form__fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .contact-form__fieldset {
    grid-template-columns: 85px auto;
  }
}
@media (max-width: 374px) {
  .contact-form__fieldset {
    grid-template-columns: 1fr;
  }
}

.contact-form__radio {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  white-space: nowrap;
  color: #144272;
}
@media screen and (max-width: 767px) {
  .contact-form__radio {
    padding-left: 22px;
  }
}
@media (max-width: 350px) {
  .contact-form__radio {
    font-size: 14px;
  }
}
.contact-form__radio input[type=radio] {
  position: absolute;
  opacity: 0;
  padding-inline: 0;
}
.contact-form__radio::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid #0c0c0c;
}
.contact-form__radio::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  translate: 0 -50%;
  width: 8px;
  height: 9px;
  background: #143d6b;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.contact-form__radio {
  /* ★これが正解 */
}
.contact-form__radio:has(input[type=radio]:checked)::after {
  opacity: 1;
}

.contact-form__terms {
  margin-top: 8px;
}

.contact-form__terms-box {
  border: 1px solid #144272;
  padding: 12px;
  max-height: 127px;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .contact-form__terms-box {
    min-height: 227px;
  }
}

.contact-form__terms-head {
  color: #c81e07;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5; /* 24px */
  margin-bottom: 20px;
}

.contact-form__terms-block p {
  color: var(--Color-Neutral-neutral, #666);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-form__terms-block {
  margin-top: 35px;
}

.contact-form__terms-list {
  list-style: none;
  counter-reset: number;
  padding-left: 0;
}
.contact-form__terms-list li {
  counter-increment: number;
  position: relative;
  padding-left: 1em;
  color: var(--Color-Neutral-neutral, #666);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.contact-form__terms-list li::before {
  content: counter(number) "．";
  position: absolute;
  left: 0;
}

.contact-form__checkbox {
  margin-top: 24px;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  color: var(--Text-primary, #000);
  font-size: 14px;
  font-weight: 400;
  /* 本体は見えなくする */
}
.contact-form__checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.contact-form__checkbox {
  /* □ */
}
.contact-form__checkbox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 18px;
  height: 18px;
  border: 1px solid var(--Border-primary, #000);
  box-sizing: border-box;
}
.contact-form__checkbox {
  /* ✓ */
}
.contact-form__checkbox::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 50%;
  translate: 0 -50%;
  font-size: 13px;
  font-weight: bold;
  color: #000;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.contact-form__checkbox {
  /* checked時 */
}
.contact-form__checkbox:has(input[type=checkbox]:checked)::after {
  opacity: 1;
}

.contact-form__submit {
  margin-top: 48px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form__submit button {
  background: #144272;
  color: #fff;
  border: 1px solid #144272;
  cursor: pointer;
  width: 256px;
  height: 67px;
  font-size: 24px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .contact-form__submit button {
    font-size: 20px;
    width: 192px;
    height: 51px;
  }
}
.contact-form__submit button:hover {
  background: #fff;
  color: #144272;
}

.hidden-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .hidden-pc {
    display: block;
  }
}

.hidden-sp {
  display: block;
}
@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}