@charset "UTF-8";

/* ==========================================================================
  リセット & 基本設定
========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  overflow-wrap: break-word;
  scrollbar-gutter: stable;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-navy);
  background: var(--color-light-blue);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition-base);
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
}

textarea {
  resize: vertical;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.show-pc {
  display: block;
}

.show-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }

  .show-pc {
    display: none;
  }

  .show-sp {
    display: block;
  }
}

/* ==========================================================================
  Variables (変数管理)
========================================================================== */
:root {
  /* Colors */
  --color-navy: #00004a;
  --color-blue: #cee2fa;
  --color-light-blue: #dbf7fa;
  --color-white: #fff;
  --color-black: #000;
  --gradient-blue-white: linear-gradient(
    120deg,
    rgba(219, 247, 250, 1) 0%,
    rgba(219, 247, 250, 1) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  --gradient-blue-green: linear-gradient(
    120deg,
    rgba(162, 179, 219, 1) 0%,
    rgba(158, 216, 245, 1) 80%,
    rgba(96, 192, 189, 1) 100%
  );
  --gradient-green-blue: linear-gradient(
    120deg,
    rgba(96, 192, 189, 1) 0%,
    rgba(158, 216, 245, 1) 80%,
    rgba(162, 179, 219, 1) 100%
  );
  --btn-gradient: linear-gradient(
    90deg,
    rgba(96, 192, 189, 1) 0%,
    rgba(158, 216, 245, 1) 50%,
    rgba(162, 179, 219, 1) 100%
  );

  /* Layout */
  --header-height: 100px;
  --inner-width: 1200px;
  --transition-base: 0.5s ease;
}

@media screen and (max-width: 768px) {
  :root {
    --header-height: 80px;
    --inner-width: 90%;
  }
}

/* ==========================================================================
  共通レイアウトパーツ
========================================================================== */
body:has(.js-hamburger.active) {
  overflow: hidden;
}

.inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 50px;
}

.section-main {
  margin-bottom: 65px;
}

.section-title {
  text-align: center;
  font-size: 7.6rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
}

.section-lead {
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.section-sub {
  border-left: 1px solid var(--color-navy);
  margin-bottom: 40px;
  padding-left: 30px;
}

.section-subtitle {
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-subtitle span {
  font-size: 1.4rem;
  font-weight: 500;
  display: inline-block;
  letter-spacing: 1px;
}

.section-sublead {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 1px;
}

.section-sublead span {
  display: none;
}

@media screen and (max-width: 1024px) {
  .section-title {
    font-size: 5.6rem;
  }
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0;
  }

  .section-main {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
  }

  .section-lead {
    font-size: 1.5rem;
    letter-spacing: 0;
  }

  .section-sub {
    margin-bottom: 30px;
    padding-left: 20px;
  }

  .section-subtitle {
    font-size: 1.9rem;
    letter-spacing: 1px;
  }

  .section-subtitle span {
    display: none;
  }

  .section-sublead {
    font-size: 1.5rem;
  }

  .section-sublead span {
    font-size: 1.2rem;
    font-weight: 400;
    display: block;
    letter-spacing: 1px;
    padding-top: 5px;
  }
}

/* 下層タイトル */
.page-sub main {
  background: var(--color-light-blue);
  padding: 150px 0 50px;
}

.page-sub .page-title {
  background: linear-gradient(
    120deg,
    rgba(162, 179, 219, 0.3) 0%,
    rgba(158, 216, 245, 0.3) 80%,
    rgba(96, 192, 189, 0.3) 100%
  );
  border-radius: 15px;
  max-width: 1728px;
  margin: 0 auto;
}

.page-sub .page-title img {
  margin: 0;
  width: 100%;
}

.page-sub h2 {
  border-left: 1px solid var(--color-navy);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 1px;
  padding: 25px 35px;
}

.page-sub h2 span {
  color: #666;
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .page-sub h2 {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 768px) {
  .page-sub main {
    padding: 0 0 75px;
  }

  .page-sub .page-title {
    border-radius: 0 0 15px 15px;
  }

  .page-sub h2 {
    font-size: 2.2rem;
    padding: 18px;
  }

  .page-sub h2 span {
    font-size: 1.2rem;
  }
}

/* ボタン */
.button {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-navy);
  border-radius: 8px;
  color: var(--color-navy);
  display: flex;
  font-size: 2rem;
  justify-content: space-between;
  line-height: 1;
  letter-spacing: 1px;
  padding: 12px 26px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.button::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-navy);
  transition: transform 0.6s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}

.button .arrow {
  border-left: 1px solid var(--color-navy);
  display: inline-block;
  margin-left: 25px;
  position: relative;
  width: 32px;
  height: 26px;
}

.button .arrow::before,
.button .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  background: var(--color-navy);
  transform-origin: calc(100% - 1px) 50%;
}

.button .arrow::before {
  transform: rotate(45deg);
}

.button .arrow::after {
  transform: rotate(-45deg);
}

.button-entry {
  background: var(--color-navy);
  color: var(--color-white);
}

.button-entry::before {
  background: var(--color-white);
}

.button-entry .arrow {
  border-left: 1px solid var(--color-white);
}

.button-entry .arrow::before,
.button-entry .arrow::after {
  background: var(--color-white);
}

.header__right .button {
  border: none;
}

.header__right .button-entry02 {
  background: var(--btn-gradient);
  color: var(--color-navy);
}

.header__right .button-entry02::before {
  background: var(--color-navy);
}

.header__right .button-entry02 .arrow {
  border-left: 1px solid var(--color-navy);
}

.header__right .button-entry02 .arrow::before,
.header__right .button-entry02 .arrow::after {
  background: var(--color-navy);
}

.button__more {
  width: 280px;
  text-indent: 1.5em;
}

.button__comingsoon {
  background: #666;
  border: 1px solid #666;
  color: var(--color-white);
  width: 280px;
  justify-content: center;
}

.button .blank {
  background: url(../images/common/icon_blank_navy.svg) no-repeat center right;
  border-left: 1px solid var(--color-navy);
  display: inline-block;
  margin: 2px 0 2px 25px;
  position: relative;
  width: 41px;
  height: 22px;
}

.button__detail {
  justify-content: center;
  margin: 0 auto;
  border-radius: 100vmax;
  padding: 20px 26px;
  width: 490px;
}

.button .detail {
  background: url(../images/common/icon_detail_navy.svg) no-repeat center left;
  background-size: contain;
  display: inline-block;
  margin-right: 7px;
  position: relative;
  width: 31px;
  height: 30px;
}

@media screen and (max-width: 768px) {
  .button {
    font-size: 1.7rem;
    justify-content: center;
    padding: 15px 20px;
    position: relative;
  }

  .button .arrow {
    margin-left: 18px;
    width: 26px;
    height: 25px;
    position: absolute;
    right: 20px;
  }

  .button .arrow::before,
  .button .arrow::after {
    width: 8px;
    height: 2px;
    transform-origin: calc(100% - 0.5px) 50%;
  }

  .button__more {
    max-width: 362px;
    margin: 0 auto;
    width: 100%;
    text-indent: 0;
  }

  .button__comingsoon {
    max-width: 362px;
    margin: 0 auto;
    width: 100%;
  }

  .button .blank {
    background-size: 14px;
    margin: 2px 0 2px 25px;
    width: 28px;
    height: 25px;
    position: absolute;
    right: 15px;
  }

  .button__detail {
    font-size: 1.5rem;
    padding: 12px 15px;
    max-width: 360px;
    width: 100%;
  }

  .button .detail {
    width: 20px;
    height: 20px;
  }
}

/* ボタン hover時 */
.button:hover {
  color: var(--color-white);
}

.button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.button:hover .arrow {
  border-left: 1px solid var(--color-white);
}

.button:hover .arrow::before,
.button:hover .arrow::after {
  background: var(--color-white);
}

.button-entry:hover {
  color: var(--color-navy);
}

.button-entry:hover .arrow {
  border-left: 1px solid var(--color-navy);
}

.button-entry:hover .arrow::before,
.button-entry:hover .arrow::after {
  background: var(--color-navy);
}

.button__comingsoon:hover::before {
  content: none;
}

.button:hover .blank {
  background: url(../images/common/icon_blank_white.svg) no-repeat center right;
  border-left: 1px solid var(--color-white);
}

.button:hover .detail {
  background: url(../images/common/icon_detail_white.svg) no-repeat center left;
  background-size: contain;
}

/* animation-bg */
main {
  opacity: 0;
  pointer-events: none;
}

body.appear header,
body.appear main,
body.appear footer {
  animation-name: PageAnime-content;
  animation-duration: 0.55s;
  animation-delay: 0.55s;
  animation-fill-mode: forwards;
  opacity: 0;
  pointer-events: auto;
}

@keyframes PageAnime-content {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade .animation-bg {
  background: var(--color-light-blue);
  content: "";
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  animation-name: PageAnime-fade;
  animation-duration: 0.3s;
  animation-delay: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  pointer-events: none;
}

@keyframes PageAnime-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

/* bg */
.bg-gradient {
  background: var(--gradient-blue-white);
}

/* header */
.header {
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0 0 15px 15px;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: var(--transition-base);
  z-index: 100;
  width: 100%;
}

.header:has(.js-hamburger.active) {
  border-radius: 0;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 50px;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__logo img {
  width: 268px;
}

.header__left p {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-right: 4.8%;
}

.header__button {
  display: block;
}

.button__list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.button__list .button {
  font-size: 1.8rem;
  padding: 12px 18px;
}

@media screen and (max-width: 1024px) {
  .header__button {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .header {
    border-radius: 0 0 10px 10px;
  }

  .header__inner {
    max-width: 100%;
    padding: 0 20px;
  }

  .header__left {
    gap: 5px;
    flex-direction: column;
    align-items: flex-start;
  }

  .header__logo img {
    width: 176px;
  }

  .header__left p {
    font-size: 1.4rem;
    line-height: 1;
  }
}

/* ハンバーガーメニューボタン */
.hamburger-menu {
  position: fixed;
  top: 35px;
  right: 3%;
  width: 40px;
  height: 31px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 1002;
}

.hamburger-line {
  width: 100%;
  height: 5px;
  background: var(--color-navy);
  transition: all 0.3s ease-in-out;
}

/* アクティブ状態（Xアニメーション） */
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* オーバーレイ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 74, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* スライドメニュー */
.slide-menu.overlay-menu {
  position: fixed;
  top: 0;
  right: -700px;
  width: 700px;
  height: 100vh;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
}

.slide-menu.overlay-menu.active {
  right: 0;
}

.header__nav__inner {
  background: linear-gradient(
    90deg,
    rgba(96, 192, 189, 0.3) 0%,
    rgba(158, 216, 245, 0.3) 50%,
    rgba(162, 179, 219, 0.3) 100%
  );
  height: auto;
  min-height: 100%;
  padding: 115px 50px;
}

.header__nav .button__list {
  display: block;
  margin-bottom: 0;
}

.header__nav .button__list li {
  margin-bottom: 20px;
  width: 100%;
}

.header__nav .button__list li .button {
  aspect-ratio: 500 / 90;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 2rem;
  padding: 28px 32px;
}

.header__nav .button__list li .button-kurasen {
  transition: var(--transition-base);
}

.header__nav .button__list li .button-kurasen:hover {
  opacity: 0.5;
}

.header__nav .button__list li .button-kurasen img {
  aspect-ratio: 500 / 90;
  width: 100%;
}

.header__nav .button__list .button .arrow {
  height: 35px;
}

.nav__list {
  margin-bottom: 30px;
}

.nav__link {
  font-size: 1.8rem;
  padding: 5px 8%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  transition: var(--transition-base);
}

.nav__link:hover {
  opacity: 0.5;
}

.nav__link::before,
.nav__link::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--color-navy);
  transform-origin: calc(100% - 1px) 50%;
}

.nav__link::before {
  transform: rotate(45deg);
}

.nav__link::after {
  transform: rotate(-45deg);
}

.nav__interview-title {
  font-size: 1.8rem;
  padding: 5px 8%;
  margin-bottom: 10px;
  position: relative;
}

.nav__interview-title span::before,
.nav__interview-title span::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--color-navy);
  transform-origin: calc(100% - 1px) 50%;
}

.nav__interview-title span::before {
  transform: rotate(45deg);
}

.nav__interview-title span::after {
  transform: rotate(-45deg);
}

.nav__interview-title + ul {
  display: flex;
  padding: 0 8%;
  gap: 8%;
}

.nav__interview-title + ul li a {
  font-size: 1.8rem;
  display: inline-block;
  transition: var(--transition-base);
  position: relative;
  padding: 5px 0;
  margin-bottom: 12px;
}

.nav__interview-title + ul li a::before {
  content: "— ";
  margin-right: 5px;
  font-size: 2.6rem;
  line-height: 0;
  position: relative;
  top: 3px;
}

.nav__interview-title + ul li a:hover {
  opacity: 0.5;
}

.nav__interview-title + ul li a img {
  margin: 0;
  width: 100%;
}

.nav__crosstalk {
  margin-bottom: 45px;
  transition: var(--transition-base);
}

.nav__crosstalk img {
  margin: 0;
  width: 100%;
}

.header__nav__inner .blank {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  transition: var(--transition-base);
}

.nav__crosstalk:hover,
.header__nav__inner .blank:hover {
  opacity: 0.5;
}

.header__nav__inner .blank img {
  display: inline-block;
  margin: 0 0 0 15px;
}

@media screen and (max-width: 768px) {
  .hamburger-menu {
    position: fixed;
    top: 25px;
    right: 5%;
  }

  .slide-menu.overlay-menu {
    right: -100%;
    width: 100%;
  }

  .header__nav__inner {
    padding: 90px 0 145px;
  }

  .header__nav .button__list {
    margin-bottom: 20px;
  }

  .header__nav .button__list li {
    width: 100%;
  }

  .header__nav .button__list li .button {
    aspect-ratio: 360 / 65;
    border-radius: 5px;
    font-size: 1.45rem;
    padding: 19px 20px;
    text-indent: 0;
    justify-content: space-between;
  }

  .header__nav .button__list .button .arrow {
    height: 25px;
  }

  .header__nav .button__list li .button-kurasen img {
    aspect-ratio: 360 / 65;
  }

  .nav__list {
    margin-bottom: 25px;
    padding-left: 10px;
  }

  .nav__link {
    font-size: 1.6rem;
  }

  .nav__link::before,
  .nav__link::after {
    top: 21px;
    transform-origin: calc(100% - 0.5px) 50%;
  }

  .nav__interview-title {
    font-size: 1.6rem;
  }

  .nav__interview-title span::before,
  .nav__interview-title span::after {
    transform-origin: calc(100% - 0.5px) 50%;
  }

  .nav__interview-title + ul {
    flex-direction: column;
    padding: 0 8%;
    gap: 8%;
  }

  .nav__interview-title + ul li a {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .nav__interview-title + ul li a::before {
    font-size: 2rem;
    top: 1px;
  }

  .nav__crosstalk {
    margin-bottom: 20px;
  }
}

/* anchor__list */
.anchor__list {
  display: flex;
  justify-content: center;
  gap: 5.4%;
  margin-bottom: 75px;
}

.anchor__list li {
  max-width: 230px;
  width: calc((100% - 16%) / 4);
}

.anchor__list li a {
  border-bottom: 1px solid var(--color-navy);
  display: block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
  padding: 15px 0;
  position: relative;
  transition: all var(--transition-base);
}

.anchor__list li a::before,
.anchor__list li a::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 15px;
  width: 2px;
  height: 10px;
  background: var(--color-navy);
  transform-origin: 50% calc(100% - 1px);
}

.anchor__list li a::before {
  transform: rotate(45deg);
}

.anchor__list li a::after {
  transform: rotate(-45deg);
}

.anchor__list li a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 1024px) {
  .anchor__list {
    flex-wrap: wrap;
  }

  .anchor__list li {
    max-width: 100%;
    width: calc((100% - 16%) / 2);
  }
}

@media screen and (max-width: 768px) {
  .anchor__list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px 8.2%;
    margin-bottom: 30px;
  }

  .anchor__list li {
    max-width: 100%;
    width: calc((100% - 8.2%) / 2);
  }

  .anchor__list li a {
    font-size: 1.6rem;
    letter-spacing: 0;
    padding: 10px 0;
  }

  .anchor__list li a::before,
  .anchor__list li a::after {
    right: 6px;
    height: 8px;
    transform-origin: 50% calc(100% - 0.5px);
  }
}

/* content__box */
.content__box {
  background: var(--color-white);
  border-radius: 15px;
  margin-bottom: 100px;
}

.box__title {
  border-bottom: 1px solid var(--color-navy);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 20px;
  margin-bottom: 55px;
}

.box__title span {
  display: block;
  margin: 0 auto;
}

.box__table {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
}

.table__row {
  display: flex;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid #4d4d5c;
}

.table__row:last-of-type {
  border: none;
}

.table__label {
  border-right: 3px solid var(--color-navy);
  font-weight: 700;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  letter-spacing: 1px;
  padding-right: 25px;
  flex-shrink: 0;
  width: 220px;
}

.table__data {
  color: var(--color-black);
  flex: 1;
  letter-spacing: 1px;
  line-height: 2;
  padding-left: 25px;
}

.table__data span {
  font-size: 1.4rem;
}

.table__dot {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .content__box {
    margin-bottom: 30px;
  }

  .box__title {
    font-size: 1.6rem;
    letter-spacing: 0;
    padding: 15px 20px;
    margin-bottom: 15px;
  }

  .box__table {
    max-width: 100%;
  }

  .table__label {
    font-size: 1.4rem;
    letter-spacing: 0;
    padding-right: 13px;
    width: 75px;
  }

  .table__data {
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.6;
    padding-left: 13px;
  }

  .table__data span {
    font-size: 1.1rem;
  }

  .table__dot {
    display: none;
  }
}

/* FAQ */
.faq__list {
  letter-spacing: 1px;
  margin-bottom: 75px;
}

.faq__question {
  border-bottom: 1px solid var(--color-navy);
  display: flex;
  align-items: flex-start;
  padding: 25px 0;
  cursor: pointer;
}

.faq__q-icon,
.faq__a-icon {
  font-size: 2.6rem;
  color: var(--color-navy);
  line-height: 1;
  margin-right: 25px;
  width: 20px;
}

.faq__a-icon {
  line-height: 1.5;
}

.faq__question-text {
  margin: 0;
  flex: 1;
  font-size: 1.8rem;
  color: var(--color-navy);
}

.faq__toggle {
  position: relative;
  width: 20px;
  height: 20px;
  top: 8px;
  margin-left: 25px;
}

.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  background-color: var(--color-navy);
  transition: transform var(--transition-base);
}

.faq__toggle::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq__toggle::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq__item--open .faq__toggle::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

.faq__answer {
  display: none;
  margin: 0;
  padding: 25px 0;
}

.faq__answer-inner {
  display: flex;
}

.faq__answer-text {
  line-height: 2.2;
  color: var(--color-navy);
  font-size: 1.8rem;
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  .faq__list {
    margin-bottom: 30px;
  }

  .faq__question {
    padding: 15px 0;
  }

  .faq__q-icon,
  .faq__a-icon {
    font-size: 2rem;
    line-height: 1.2;
    margin-right: 20px;
    width: 15px;
  }

  .faq__a-icon {
    line-height: 1.5;
  }

  .faq__question-text {
    font-size: 1.5rem;
  }

  .faq__toggle {
    width: 15px;
    height: 15px;
    top: 6px;
    margin-left: 20px;
  }

  .faq__toggle::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .faq__toggle::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .faq__answer {
    border-bottom: 1px solid var(--color-navy);
    display: none;
    margin: 0 0 30px;
    padding: 15px 0;
  }

  .faq__answer-inner {
    display: flex;
  }

  .faq__answer-text {
    line-height: 1.8;
    font-size: 1.4rem;
    padding-right: 0;
  }
}

/* entry */
.entry {
  position: relative;
}

.entry:before {
  content: "";
  background: var(--gradient-blue-green);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  opacity: 0.4;
  width: 100%;
}

.entry__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7.5%;
}

.entry__image {
  width: 48.8%;
}

.entry__image img {
  width: 100%;
}

.entry__body {
  position: relative;
  flex: 1;
}

.entry__body-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 25px;
}

.entry__body-text {
  line-height: 2.2;
  margin-bottom: 30px;
}

.entry .button {
  max-width: 400px;
  justify-content: center;
  border: 1px solid var(--color-white);
  padding: 15px 26px;
}

.entry .button:hover {
  border: 1px solid var(--color-navy);
}

@media screen and (max-width: 1024px) {
  .entry__body {
    padding: 15px 0px;
  }

  .entry__body-title {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }

  .entry__body-text {
    line-height: 1.8;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .entry__item {
    padding-bottom: 40px;
  }

  .entry__item {
    gap: 40px;
    flex-direction: column;
  }

  .entry__image {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }

  .entry__body {
    width: 100%;
  }

  .entry__body-title {
    font-size: 1.9rem;
    margin-bottom: 25px;
    text-align: center;
  }

  .entry__body-text {
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
  }

  .entry .button {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
    padding: 13px 26px;
  }
}

/* to-top */
#to-top {
  opacity: 0;
  position: fixed;
  bottom: 75px;
  right: 100px;
  z-index: 10;
}

#to-top:hover a {
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  #to-top {
    bottom: 50px;
    right: 20px;
  }
}

/* footer */
.footer {
  background: var(--gradient-blue-white);
  color: var(--color-navy);
  opacity: 0;
}

.footer .footer__line {
  height: 75px;
  border-bottom: 1px solid var(--color-navy);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 75px 50px;
}

.footer__left {
  flex: 0 0 52%;
}

.footer__logo__area {
  margin-bottom: 40px;
}

.footer__logo {
  width: fit-content;
  margin-bottom: 5px;
}

.footer__logo__area p {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.footer__buttons a {
  max-width: 321px;
  width: 100%;
}

.footer__buttons a + a {
  margin-top: 15px;
}

.divider {
  width: 1px;
  height: 270px;
  background: var(--color-navy);
}

.footer__right {
  flex: 1;
  display: flex;
  justify-content: space-between;
  padding-left: 6.8%;
}

.footer__nav ul li {
  margin-bottom: 20px;
}

.footer__nav ul li:last-of-type {
  margin-bottom: 0;
}

.footer__nav ul li a {
  text-decoration: none;
  color: var(--color-navy);
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.5s;
  padding-bottom: 5px;
  letter-spacing: 1px;
  line-height: 2;
  position: relative;
}

.footer__nav ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-navy);
  transform: scale(0, 1);
  transform-origin: left;
  transition: 0.4s;
}

.footer__nav ul li a.comingsoon:after {
  content: none;
}

.footer__nav ul li a:hover:after {
  transform: scale(1);
}

.footer__nav ul li ul {
  margin-top: 10px;
}

.footer__nav ul li ul li {
  margin-bottom: 6px;
}

.footer__nav ul li ul li a::before {
  content: "— ";
  margin-right: 5px;
}

.footer__copy {
  background: var(--color-blue);
  font-size: 1.5rem;
  text-align: center;
  padding: 14px 0;
}

@media screen and (max-width: 1024px) {
  .footer__left {
    flex: 0 0 49%;
  }

  .footer__logo {
    max-width: 300px;
  }

  .footer__buttons a {
    max-width: 300px;
  }

  .footer__right {
    padding-left: 2.8%;
  }

  .footer__nav:first-of-type {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .footer .footer__line {
    height: 0;
  }

  .footer__inner {
    max-width: 90%;
    margin: 0 auto;
    flex-direction: column;
    padding: 40px 0 50px;
  }

  .footer__left {
    margin-bottom: 40px;
    width: 100%;
  }

  .footer__logo__area {
    margin-bottom: 30px;
  }

  .footer__logo {
    max-width: 255px;
  }

  .footer__buttons a {
    justify-content: flex-start;
    padding: 15px 35px;
    max-width: 360px;
  }

  .footer__right {
    flex-direction: column;
    padding-left: 0;
    width: 100%;
  }

  .footer__nav:first-of-type {
    width: 100%;
  }

  .footer__nav ul li {
    margin-bottom: 0;
  }

  .footer__nav ul li a {
    border-top: 1px solid var(--color-navy);
    font-size: 1.4rem;
    line-height: 1.8;
    display: block;
    padding: 20px 0;
  }

  .footer__nav:last-of-type ul li:last-of-type a {
    border-bottom: 1px solid var(--color-navy);
  }

  .footer__nav ul li ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
  }

  .footer__nav ul li a.comingsoon {
    padding: 20px 0 10px;
  }

  .footer__nav ul li ul li {
    width: 50%;
    margin-bottom: 6px;
  }

  .footer__nav ul li ul li:nth-of-type(3),
  .footer__nav ul li ul li:nth-of-type(4) {
    margin-bottom: 20px;
  }

  .footer__nav ul li ul li a {
    font-size: 1.3rem;
    padding: 2px 0;
  }

  .footer__nav ul li ul li a,
  .footer__nav:last-of-type ul li ul li:last-of-type a {
    border: none;
  }

  .footer__nav ul li ul li a::before {
    content: "— ";
    margin-right: 5px;
  }

  .footer__copy {
    font-size: 1.1rem;
    padding: 6px 0;
  }
}
