@charset "UTF-8";
html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

main {
  background-color: #fcfcfc;
  color: #054d70;
}

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

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  width: 100%;
  height: 100%;
}

section {
  padding-inline: 10px;
}

.icon {
  width: 1.2em;
  height: 1.2em;
  -o-object-fit: contain;
     object-fit: contain;
}

.title-icon {
  width: 70px;
  height: auto;
  margin-bottom: 40px;
}

.separator-icon {
  width: 30px;
  height: auto;
  margin-bottom: 40px;
}

.more-btn {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  margin-inline: auto;
  max-width: 350px;
  height: 35px;
}
.more-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #054d70;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #fcfcfc;
  border: 0.5px solid #fcfcfc;
  border-radius: 999px;
  box-shadow: 5px 5px 10px 0px rgba(56, 56, 56, 0.7);
  transition: ease 0.2s;
}
.more-btn a::after {
  content: "";
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #fff;
}
.more-btn a:hover {
  background: rgba(5, 77, 112, 0.9);
}
.more-btn a:hover::after {
  right: 30px;
}

.p-school-search {
  padding: 120px 0;
}
.p-school-search__divider {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.p-filter-nav__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0;
  list-style: none;
}
.p-filter-nav__item.is-active .p-filter-nav__button {
  color: #003366; /* 選択時の文字色：白 */
  background-color: #f4fafd; /* 選択時の背景色：濃いネイビー */
}
.p-filter-nav__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 10px;
  font-size: 0.95rem;
  font-weight: bold;
  background-color: #f4fafd; /* 通常時の背景色：淡いブルー */
  color: #003366; /* 通常時の文字色：濃いネイビー */
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.p-filter-nav__button:hover {
  background-color: #003366; /* 通常時の背景色：淡いブルー */
  color: #fcfcfc; /* 通常時の文字色：濃いネイビー */
}

.card-fade-in {
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.burger-btn,
.black-bg {
  display: none; /* PCでは非表示 */
}

h1 {
  width: 130px;
}
h1 a {
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 100%;
}
.nav-btn li {
  min-width: 70px;
  text-align: center;
}
.nav-btn a {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 700;
  color: #054d70;
  transition: transform 0.2s ease;
}
.nav-btn a:hover {
  transform: scale(1.08);
}
.nav-btn span {
  font-family: "Heebo", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #383838;
  /* 1. 背景にグラデーションを設定（左上から右下へ） */
  background: radial-gradient(at 50% 0%, #ffa251 30%, #f07000 70%);
  /* 2. 背景を文字の形にくり抜く */
  -webkit-background-clip: text;
  background-clip: text;
  /* 3. 元の文字色を透明にして背景のグラデーションを透かす */
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* ドロップシャドウ（影）もつける場合 */
  filter: drop-shadow(2px 2px 2px rgba(56, 56, 56, 0.25));
}

.cta-btn {
  display: flex;
  gap: 16px;
}
.cta-btn li {
  width: 125px;
}
.cta-btn a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45px;
  border-radius: 999px;
  text-decoration: none;
  line-height: 1;
}
.cta-btn a p {
  display: inline-block;
  margin-top: 3px;
  text-align: center;
}
.cta-btn a::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid #fcfcfc;
  border-radius: inherit;
}
.cta-btn li:first-child a {
  background: rgba(6, 198, 85, 0.7);
  transition: background-color 0.3s ease;
}
.cta-btn li:first-child a:hover {
  background: #06c655;
}
.cta-btn li:first-child a {
  font-family: "Heebo", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #fcfcfc;
}
.cta-btn li:last-child a {
  background: rgba(248, 111, 31, 0.7);
  transition: background-color 0.3s ease;
}
.cta-btn li:last-child a:hover {
  background: #f86f1f;
}
.cta-btn li:last-child a p {
  font-family: "Heebo", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 700;
  color: #fcfcfc;
  line-height: 1.1;
}
.cta-btn span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 400;
  color: #383838;
}

footer {
  width: 100%;
  padding-top: 80px;
  background-color: #fcfcfc;
}

.cta {
  width: 80%;
  background-color: #f9ffd4;
  margin-inline: auto;
  position: relative;
}
.cta::before, .cta::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 1;
}
.cta::before {
  top: 0;
  left: 0;
  border-width: 35px 35px 0 0;
  border-color: #054d70 transparent transparent transparent;
}
.cta::after {
  bottom: 0;
  right: 0;
  border-width: 0 0 35px 35px;
  border-color: transparent transparent #054d70 transparent;
}
.cta .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px;
}
.cta .cta-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.cta h3 {
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 0 * (100vw - 400px) / 1920), 24px);
  font-weight: 400;
  color: #383838;
}
.cta h3 span {
  font-weight: 700;
}
.cta h3 span:nth-of-type(1) {
  position: relative;
  display: inline-block;
}
.cta h3 span:nth-of-type(1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  transform: translateY(-50%);
  width: 25%;
  height: 30%;
  background: url(../img/cta-banner-text-accent.png) no-repeat center/contain;
}
.cta h3 span:nth-of-type(2) {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.cta h3 span:nth-of-type(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 120%;
  height: 230%;
  background: url(../img/cta-banner-text-decoration.png) no-repeat center/contain;
  z-index: -1;
}
.cta p:nth-of-type(1) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #383838;
  display: inline-block;
  position: relative;
}
.cta p:nth-of-type(1)::before {
  position: absolute;
  content: "";
  background-color: #f86f1f;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  border-radius: 1px;
}
.cta p:nth-of-type(2) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 400;
  color: #383838;
}
.cta .cta-btn {
  display: flex;
  gap: 16px;
}
.cta .cta-btn li {
  min-width: 280px;
  height: 40px;
}
.cta .cta-btn a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  text-decoration: none;
  line-height: 0.5;
}
.cta .cta-btn a::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid #fcfcfc;
  border-radius: inherit;
}
.cta .cta-btn a {
  transition: transform 0.1s ease;
}
.cta .cta-btn a:hover {
  transform: scale(1.02);
}
.cta .cta-btn li:first-child a {
  background: #06c655;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #fcfcfc;
}
.cta .cta-btn li:last-child a {
  background: #f86f1f;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 700;
  color: #fcfcfc;
}
.cta .cta-btn span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 700;
  color: #fcfcfc;
}

.footer-container {
  width: 100%;
  padding: 15% 80px 3% 80px;
  background: url(../img/footer-bg.png) no-repeat center top/100% auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.footer-logo {
  max-width: 200px;
  height: auto;
}

.footer-cta {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.cta-line,
.cta-calendar {
  position: relative;
  max-width: 40%;
  height: auto;
}

.cta-inner {
  position: absolute;
  top: 0;
  left: 25%;
  width: 75%;
  height: 100%;
  padding: 24px 30px 24px 0px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  line-height: 1;
}

.cta-line .cta-title {
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #383838;
}
.cta-line .cta-title span {
  color: #06c655;
}
.cta-line ul {
  display: flex;
  gap: 20px;
}
.cta-line ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 400;
}
.cta-line ul li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.cta-line ul li.item-map::before {
  background-image: url("../img/icon-choice.png");
}
.cta-line ul li.item-wallet::before {
  background-image: url("../img/icon-wallet.png");
}

.cta-calendar .cta-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #383838;
  line-height: 1.2;
}
.cta-calendar p :first-child {
  margin: 5px 0;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.cta-calendar p:last-of-type {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 400;
}
.cta-calendar p:last-of-type::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/icon-calendar.png");
}

.btn-line,
.btn-calendar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-line:hover,
.btn-calendar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.btn-line::after,
.btn-calendar::after {
  content: "";
  position: absolute;
  right: 24px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}

.btn-line {
  background: radial-gradient(at 50% 0%, #31be6b 0%, #138241 100%);
}
.btn-line::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon-line.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}

.btn-calendar {
  background: radial-gradient(at 50% 0%, #ed742c 0%, #a13f0c 100%);
}

.footer-sns {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-sns li {
  width: 40px;
  height: 40px;
  border-radius: 999px;
}
.footer-sns li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

footer nav {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
}
footer nav a {
  color: #fff;
}
footer nav a:hover {
  text-decoration: underline;
}
footer nav .footer-nav-left,
footer nav .footer-nav-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
footer nav .footer-nav-country ul li,
footer nav .footer-nav-path ul li,
footer nav .footer-nav-support ul li {
  position: relative;
  padding-left: 12px;
}
footer nav .footer-nav-country ul li::before,
footer nav .footer-nav-path ul li::before,
footer nav .footer-nav-support ul li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.footer-bottom ul {
  display: flex;
  align-items: center;
}
.footer-bottom ul li {
  display: inline-block;
  padding-inline: 40px;
  border-right: 1px solid #fcfcfc;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 400;
  color: #fcfcfc;
}
.footer-bottom ul li:first-child {
  padding-left: 0;
}
.footer-bottom ul a {
  color: #fcfcfc;
}
.footer-bottom ul a:hover {
  text-decoration: underline;
}

#loading {
  position: fixed;
  inset: 0;
  background: #f7feff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  animation: logoFloat 1.6s ease;
}

.loading-logo img {
  width: 180px;
}

@keyframes logoFloat {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    transform: translateY(-18px);
  }
  95% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fv {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.fv .fv-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  opacity: 0;
  transform: scale(1);
  will-change: transform, opacity;
}
.fv .fv-title {
  position: absolute;
  right: 0;
  bottom: 5%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(32px, calc(32px + 78 * (100vw - 400px) / 1920), 110px);
  font-weight: 700;
  color: #fcfcfc;
  text-shadow: 3px 3px 5px #383838;
}
.fv .fv-title span {
  display: inline-block;
  opacity: 0;
  color: #fcfcfc !important;
  transform-origin: center;
}
.fv .fv-title span.highlight {
  color: #f86f1f !important;
}
.fv .fv-title.appeartext span {
  /* ease-out から backOut（バウンドするような動き）に変えるとさらに心地よくなります */
  animation: text_anime_on 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* アニメーションの定義 */
@keyframes text_anime_on {
  0% {
    opacity: 0;
    transform: scale(2.5); /* 最初は1.5倍の大きさ */
  }
  100% {
    opacity: 1;
    transform: scale(1); /* 最終的に元のサイズ（1倍）に収まる */
  }
}
.top-page .fv-cta {
  padding-block: 0;
}

.fv-cta-container {
  max-width: 1400px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
}
.fv-cta-container p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 700;
  color: #054d70;
  display: inline-block;
  position: relative;
}
.fv-cta-container p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 110%;
  height: 100%;
  background: url(../img/underline-arrow.png) no-repeat;
  background-size: contain;
  transform: translateX(-40px);
  opacity: 0;
}
.fv-cta-container p.show::after {
  animation: ctaUnderline 0.8s ease-out forwards;
}

@keyframes ctaUnderline {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.fv-cta .cta-btn {
  display: flex;
  gap: 16px;
}
.fv-cta .cta-btn li {
  min-width: 280px;
  height: 40px;
}
.fv-cta .cta-btn a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  text-decoration: none;
  line-height: 0.5;
}
.fv-cta .cta-btn a::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid #fcfcfc;
  border-radius: inherit;
}
.fv-cta .cta-btn li:first-child a {
  background: #06c655;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #fcfcfc;
}
.fv-cta .cta-btn li:last-child a {
  background: #f86f1f;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 700;
  color: #fcfcfc;
}
.fv-cta .cta-btn span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 700;
  color: #fcfcfc;
}

.shine-btn {
  /*キラッと光る基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}

/*キラッと光る*/
.shine-btn::after {
  content: "";
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

/*hoverした際の移動のアニメーション*/
.shine-btn:hover::after {
  animation: shine 1s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
.top-heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  line-height: 1;
  margin-bottom: 40px;
}
.top-heading h2 {
  font-family: "Heebo", sans-serif;
  font-size: clamp(40px, calc(40px + 70 * (100vw - 400px) / 1920), 110px);
  font-weight: 900;
  color: #054d70;
  padding-top: 12px;
}
.top-heading p:first-child {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 0 * (100vw - 400px) / 1920), 24px);
  font-weight: 400;
  color: #054d70;
  display: block;
  margin-bottom: 16px;
}
.top-heading p:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #383838;
  line-height: 1.5;
}

.top-select {
  background: url(../img/select-bg.svg) no-repeat center/cover;
  position: relative;
}
.top-select h2 {
  position: relative;
}
.top-select h2::after {
  position: absolute;
  content: "";
  background: url(../img/bubble-line.png) no-repeat center/cover;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
}
.top-select .top-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 60px;
}
.top-select .top-heading p:first-child {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 0 * (100vw - 400px) / 1920), 24px);
  font-weight: 400;
  color: #054d70;
  display: block;
  margin-bottom: 4px;
}
.top-select .top-heading p:last-child {
  line-height: 1.1;
}

.top-container {
  max-width: 1000px;
  margin-inline: auto;
  padding: 120px;
}

.question {
  display: none;
  text-align: center;
}

.question.active {
  display: block;
}

.question h3 {
  margin-bottom: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 400;
  color: #383838;
}

.answer-wrap {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.answer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  border: none;
  border-radius: 999px;
  padding-block: 8px;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  position: relative;
}
.answer-btn::after {
  position: absolute;
  left: 50px;
  top: 0;
  font-family: "Italianno", cursive;
  font-size: 48px;
  color: #fcfcfc;
  line-height: 1;
  margin-top: -2px;
}
.answer-btn:nth-child(1)::after {
  content: "Yes";
}
.answer-btn:nth-child(2)::after {
  content: "No";
}

.answer-btn strong {
  font-size: 14px;
}

.yes {
  background: #ef6548;
}

.no {
  background: #4a74e8;
}

.result {
  display: none;
  text-align: center;
  position: relative;
}
.result::after {
  position: absolute;
  content: "";
  background: url(../img/result-left.png) no-repeat center/contain;
  width: 20%;
  height: 100%;
  top: 0;
  left: 10%;
}
.result::before {
  position: absolute;
  content: "";
  background: url(../img/result-right.png) no-repeat center/contain;
  width: 20%;
  height: 100%;
  top: 0;
  right: 10%;
}

.result-card {
  max-width: 700px;
  margin: auto;
}

#result-country {
  color: #054d70;
  font-size: clamp(24px, calc(24px + 8 * (100vw - 400px) / 1920), 32px);
  margin-bottom: 20px;
}

.result ul {
  list-style: none;
  padding: 0;
}

.result li {
  font-size: clamp(8px, calc(8px + 8 * (100vw - 400px) / 1920), 16px);
  margin: 0px 0;
  color: #383838;
}

.retry-btn {
  margin-top: 24px;
  padding: 15px 40px;
  border: none;
  background: #054d70;
  color: #fcfcfc;
  border-radius: 999px;
  cursor: pointer;
}
.retry-btn:hover {
  background: #fcfcfc;
  color: #054d70;
}

.top-country {
  position: relative;
  z-index: 1;
}
.top-country::before, .top-country::after {
  position: absolute;
  content: "";
  width: 45%;
  height: 40%;
  z-index: -1;
}
.top-country::before {
  background: url(../img/country-Decoration-plane.png) no-repeat center/contain;
  top: 0;
  right: 0;
}
.top-country::after {
  background: url(../img/country-Decoration-wave.png) no-repeat center/contain;
  bottom: 0;
  left: 0;
}
.top-country ul {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
.top-country li {
  width: 100%;
}
.top-country .country-card-img {
  overflow: hidden;
  position: relative;
}
.top-country .country-card-img img {
  display: block;
  width: 100%;
  opacity: 0;
  filter: blur(18px);
  transform: scale(1.08);
  transition: opacity 1.5s ease, filter 2s cubic-bezier(0.22, 1, 0.36, 1), transform 2s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.top-country .country-card-img.show img {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}
.top-country .country-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/country-card-frame.png) no-repeat center/contain;
  pointer-events: none;
}
.top-country .country-card-img::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(0deg, #fcfcfc 5%, rgba(252, 252, 252, 0) 100%);
  pointer-events: none;
  z-index: 2;
}
.top-country .country-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.top-country .country-name {
  font-family: "Great Vibes", cursive;
  font-size: clamp(40px, calc(40px + 70 * (100vw - 400px) / 1920), 110px);
  color: rgba(252, 252, 252, 0.7);
  line-height: 1;
}
.top-country .country-card-text {
  text-align: center;
  line-height: 1;
}
.top-country .country-card-text h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 8 * (100vw - 400px) / 1920), 32px);
  font-weight: 700;
  color: #054d70;
  margin-bottom: 8px;
}
.top-country .country-card-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #383838;
}

.top-path-deco {
  position: relative;
}
.top-path-deco::after {
  position: absolute;
  content: "";
  background: url(../img/top-sectionline.png) no-repeat center/contain;
  width: 45%;
  height: 20px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.top-path .path-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
}
.top-path .path-cards li {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  will-change: transform;
}
.top-path .path-cards img {
  width: 100%;
  display: block;
}
.top-path .path-cards p {
  display: inline-block;
  padding-right: 10px;
  margin-top: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 20 * (100vw - 400px) / 1920), 32px);
  font-weight: 700;
  color: #383838;
  line-height: 1;
  background: linear-gradient(to right, #74d2ff 0%, #054d70 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.top-strength {
  background: url(../img/top-strength-bg.svg) no-repeat center/cover;
  position: relative;
}
.top-strength h2 {
  position: relative;
}
.top-strength h2::after {
  position: absolute;
  content: "";
  background: url(../img/icon-crown.png) no-repeat center/contain;
  width: 90px;
  height: 70px;
  top: 0;
  left: 0;
  transform: translate(-55%, -35%) rotate(-45deg);
}
.top-strength ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
}
.top-strength li {
  display: flex;
  gap: 40px;
  padding: 24px 60px 24px 60px;
  background: url(../img/top-strength-text.png) no-repeat center/contain;
  position: relative;
}
.top-strength li::before {
  position: absolute;
  content: "";
  width: 90px;
  height: 90px;
  left: 0;
  top: 50%;
  transform: translate(-55%, -55%);
}
.top-strength li:nth-of-type(1):before {
  background: url(../img/strength-one.png) no-repeat center/contain;
}
.top-strength li:nth-of-type(2):before {
  background: url(../img/strength-two.png) no-repeat center/contain;
}
.top-strength li:nth-of-type(3):before {
  background: url(../img/strength-three.png) no-repeat center/contain;
}
.top-strength .strength-text h3 .char {
  display: inline-block;
  transform-origin: center center;
}

.strength-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.strength-text h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 0 * (100vw - 400px) / 1920), 24px);
  font-weight: 700;
  color: #054d70;
  margin-bottom: 2px;
}
.strength-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #054d70;
}
.strength-text span {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 8 * (100vw - 400px) / 1920), 32px);
  font-weight: 700;
  color: #f86f1f;
}
.strength-text span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background: #f86f1f;
  transform: scaleX(1);
  transform-origin: left center;
}
.strength-text span .char {
  display: inline-block;
}

.top-cost .top-container {
  padding-bottom: 0;
}

.top-cost .cost-list {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 70px;
  display: flex;
  gap: 40px;
  width: 100%;
  overflow: hidden;
}
.top-cost .cost-list .list-card {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.top-cost .cost-list .list-card.is-show {
  opacity: 1;
  transform: translateX(0);
}
.top-cost .cost-list .list-card:nth-of-type(1) {
  transition-delay: 0s;
}
.top-cost .cost-list .list-card:nth-of-type(2) {
  transition-delay: 0.2s;
}
.top-cost .cost-list .list-card:nth-of-type(3) {
  transition-delay: 0.4s;
}

.cost-list > li:nth-of-type(1) .cost-img::after {
  content: "語学留学";
}
.cost-list > li:nth-of-type(2) .cost-img::after {
  content: "ワーキングホリデー";
}
.cost-list > li:nth-of-type(3) .cost-img::after {
  content: "インターンシップ留学";
}

.cost-img {
  position: relative;
  padding-bottom: 35px;
}
.cost-img::before {
  position: absolute;
  content: "";
  background: url(../img/cost-frame.png) no-repeat center/contain;
  width: 121%;
  height: 121%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -17.5px;
}
.cost-img::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 75%;
  height: 60px;
  background: url(../img/cost-text-decoration.png) no-repeat center/contain;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 80px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #fcfcfc;
}
.cost-img p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #fcfcfc;
  display: block;
  width: 100%;
}

.cost-card-wrapper {
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #054d70;
}
.cost-card-wrapper .cost-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cost-card-wrapper .cost-card .icon-text {
  display: flex;
  align-items: center;
}
.cost-card-wrapper .cost-card span {
  font-weight: bold;
}

.top-stories {
  background: url(../img/stories-bg.png) no-repeat center/contain;
  overflow: hidden;
}
.top-stories .stories-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 400;
  color: #054d70;
  gap: 40px;
}
.top-stories .stories-card,
.top-stories .stories-part {
  display: flex;
  align-items: center;
  width: 100%;
}
.top-stories .stories-part {
  margin-bottom: 8px;
  gap: 16px;
}
.top-stories .stories-card p:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 700;
  color: #383838;
}
.top-stories .stories-card {
  gap: 16px;
  max-width: 900px;
  width: 100%;
}
.top-stories .stories-card:nth-of-type(2) .stories-img,
.top-stories .stories-card:nth-of-type(3) .stories-img {
  width: 41%;
  border: 1.5px solid #f86f1f;
  box-shadow: 10px 10px 0 rgba(248, 111, 31, 0.7);
}
.top-stories .stories-card:nth-of-type(2) .stories-text,
.top-stories .stories-card:nth-of-type(3) .stories-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.top-stories .stories-card:nth-of-type(1) .stories-img {
  width: 60%;
  border: 1.5px solid #f86f1f;
  box-shadow: 10px 10px 0 rgba(248, 111, 31, 0.7);
}
.top-stories .stories-card:nth-of-type(1) .stories-text {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.top-stories .stories-card:nth-of-type(1) {
  position: relative;
  z-index: 1;
}
.top-stories .stories-card:nth-of-type(1)::after {
  position: absolute;
  content: "";
  background: url(../img/stories-first-textbox-new.png) no-repeat center/contain;
  width: 60%;
  height: 110%;
  top: 5%;
  left: 50%;
  z-index: -1;
}
.top-stories .displayX {
  overflow: hidden;
}
.top-stories .displayX img {
  display: block;
  clip-path: inset(0 50% 0 50%);
  transition: clip-path 1s ease;
}
.top-stories .displayX.show img {
  clip-path: inset(0 0 0 0);
}
.top-stories .displayY {
  overflow: hidden;
}
.top-stories .displayY img {
  display: block;
  clip-path: inset(50% 0 50% 0);
  transition: clip-path 1s ease;
}
.top-stories .displayY.show img {
  clip-path: inset(0 0 0 0);
}

.country-page .container {
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: 25px;
}
.country-page .hero-section {
  background: url(../img/fv-country.jpg) no-repeat center/cover;
  text-align: center;
  padding: 120px 20px;
}
.country-page .hero-section h2 {
  font-family: "Heebo", sans-serif;
  font-size: clamp(40px, calc(40px + 80 * (100vw - 400px) / 1920), 120px);
  font-weight: 700;
  color: #383838;
  letter-spacing: 0.03em;
}
.country-page .hero-section .hero-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #383838;
}
.country-page .country-section {
  padding: 120px 0;
}
.country-page .country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}
.country-page .country-card {
  display: flex;
  flex-direction: column;
  background: #fcfcfc;
  position: relative;
  box-shadow: 1px 1px 2px rgba(56, 56, 56, 0.7);
  cursor: pointer;
}
.country-page .country-card:hover .card-image img {
  transform: scale(1.03);
}
.country-page .country-card .card-image {
  width: 100%;
  aspect-ratio: 1/0.9;
  overflow: hidden;
}
.country-page .country-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.country-page .country-card .card-body {
  text-align: center;
  padding-block: 8px;
}
.country-page .country-card .card-body .country-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 0 * (100vw - 400px) / 1920), 24px);
  font-weight: 700;
  color: #054d70;
}
.country-page .country-card .card-body .country-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 400;
  color: #383838;
}
.country-page .rank-1 .medal-icon,
.country-page .rank-2 .medal-icon,
.country-page .rank-3 .medal-icon {
  position: absolute;
  top: 0;
  left: 0px;
  transform: translate(-20%, -30%);
  z-index: 2;
  width: 25%;
  height: 35%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.country-page .rank-1 .medal-icon {
  background-image: url(../img/icon-medal-1st.png);
}
.country-page .rank-2 .medal-icon {
  background-image: url(../img/icon-medal-2nd.png);
}
.country-page .rank-3 .medal-icon {
  background-image: url(../img/icon-medal-3rd.png);
}

.more-button-container {
  display: flex;
  justify-content: center;
}
.more-button-container .btn-more {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #054d70;
  border: none;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.more-button-container .btn-more::before, .more-button-container .btn-more::after {
  content: "";
  position: absolute;
  background-color: #fcfcfc;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.more-button-container .btn-more::before {
  width: 16px;
  height: 2px;
}
.more-button-container .btn-more::after {
  width: 2px;
  height: 16px;
}
.more-button-container .btn-more:hover {
  transform: scale(1.05);
}

.country-detail-page .hero-section {
  background: url(../img/fv-country-detail.jpg) no-repeat center/cover;
  text-align: center;
  padding: 140px 20px 100px 20px;
}
.country-detail-page .hero-section h2 {
  font-family: "Heebo", sans-serif;
  font-size: clamp(40px, calc(40px + 80 * (100vw - 400px) / 1920), 120px);
  font-weight: 900;
  color: #054d70;
  letter-spacing: 0.03em;
}
.country-detail-page .hero-section .hero-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 8 * (100vw - 400px) / 1920), 32px);
  font-weight: 700;
  color: #054d70;
}
.country-detail-page .mv-title {
  position: relative;
  display: inline-block;
}
.country-detail-page .mv-title span {
  font-weight: 900;
  line-height: 1;
  display: block;
  white-space: nowrap;
}
.country-detail-page .mv-title .mv-title-back {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 100%;
  color: transparent;
  -webkit-text-stroke: 1.5px #054d70;
  z-index: 1;
}
.country-detail-page .mv-title .mv-title-front {
  position: relative;
  color: #0d4c75;
  z-index: 2;
}
.country-detail-page .lead-section {
  width: 100%;
  background: url(../img/lead-bg.png) no-repeat center bottom/cover;
  padding-block: 80px;
  display: flex;
  justify-content: center;
}
.country-detail-page .lead-inner {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-inline: 40px;
}
.country-detail-page .lead-inner h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 0 * (100vw - 400px) / 1920), 24px);
  font-weight: 700;
  color: #fcfcfc;
  position: relative;
}
.country-detail-page .lead-inner h3::after {
  position: absolute;
  content: "";
  background-color: #f86f1f;
  width: 120%;
  height: 2px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}
.country-detail-page .lead-inner h3::before {
  position: absolute;
  content: "";
  background: url(../img/text-accent.png) no-repeat center bottom/contain;
  width: 30px;
  height: 30px;
  top: -50%;
  right: -40px;
}
.country-detail-page .lead-inner .lead-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #fcfcfc;
}

.photo-stack {
  position: relative;
  aspect-ratio: 4/3;
}
.photo-stack .photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid #f4fafd;
}
.photo-stack .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.photo-stack .photo--1 {
  transform: scale(1);
  z-index: 1;
}
.photo-stack .photo--2 {
  transform: scale(0.96);
  z-index: 2;
}
.photo-stack .photo--3 {
  transform: scale(0.92);
  z-index: 3;
}

.point-container {
  padding-block: 120px;
}
.point-container h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 16 * (100vw - 400px) / 1920), 40px);
  font-weight: 700;
  color: #054d70;
  text-align: center;
  margin-bottom: 40px;
}
.point-container .point-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.point-container .feature-item {
  display: flex;
  align-items: center;
  gap: 40px;
}
.point-container .feature-img {
  flex-shrink: 0;
  width: 320px;
  position: relative;
}
.point-container .feature-img img {
  display: none;
}
.point-container .feature-img img:first-child {
  display: block;
  width: 100%;
}
.point-container .feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.point-container .feature-text h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 0 * (100vw - 400px) / 1920), 24px);
  font-weight: 700;
  color: #054d70;
  padding: 20px 30px;
  position: relative;
  z-index: 1;
}
.point-container .feature-text h3::after {
  position: absolute;
  content: "";
  background: url(../img/point-bg.png) no-repeat left top/contain;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 140px;
  z-index: -1;
}
.point-container .feature-text span {
  font-family: "Heebo", sans-serif;
  font-size: clamp(24px, calc(24px + 0 * (100vw - 400px) / 1920), 24px);
  font-weight: 700;
  color: rgba(248, 111, 31, 0.7);
}
.point-container .feature-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #383838;
  display: block;
  padding: 0px 30px;
}

.photo-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.popular-cities {
  background: url(../img/popular-cities-bg.jpg) no-repeat center bottom/cover;
}

.popular-cities-container {
  padding-block: 120px;
}
.popular-cities-container h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 16 * (100vw - 400px) / 1920), 40px);
  font-weight: 700;
  color: #054d70;
  text-align: center;
  margin-bottom: 40px;
}

.school-container {
  background-color: #f4fafd;
  padding-block: 120px;
}

.school-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.school-card {
  background-color: #ffffff;
  border: 0.5px solid #054d70;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
}
.school-card a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 8px;
}
.school-card::before {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: -10px;
  width: 2px;
  background-color: #054d70;
  content: "";
}
.school-card .school-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  padding-left: 32px;
}
.school-card .school-info h3 {
  font-family: "Heebo", sans-serif;
  font-size: clamp(24px, calc(24px + 0 * (100vw - 400px) / 1920), 24px);
  font-weight: 400;
  color: #054d70;
  line-height: 1;
  margin-bottom: 0;
}
.school-card .school-info .school-desc,
.school-card .school-info .wp-block-paragraph {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #054d70;
  margin-top: 0;
}
.school-card .school-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding-right: 16px;
}
.school-card .school-info ul li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 400;
  color: #383838;
  display: flex;
  align-items: center;
}
.school-card .school-info ul li .icon {
  width: 20px;
  height: auto;
  margin-right: 8px;
}
.school-card .school-info ul li.btn-detail {
  margin-left: auto;
  color: #ff9933;
  font-weight: bold;
  position: relative;
  padding-right: 16px;
}
.school-card .school-info ul li.btn-detail::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 2px solid #ff9933;
  border-right: 2px solid #ff9933;
}
.school-card .school-img {
  width: 35%;
  min-width: 200px;
  margin-right: 8px;
  height: 110px;
}
.school-card .school-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.price-wrapper {
  padding-block: 120px;
}
.price-wrapper h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 16 * (100vw - 400px) / 1920), 40px);
  font-weight: 700;
  color: #054d70;
  text-align: center;
  margin-bottom: 40px;
}

.table__wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.table__wrap::-webkit-scrollbar {
  height: 8px;
}
.table__wrap::-webkit-scrollbar-thumb {
  border-radius: 999px;
}
.table__body {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}
.table thead th {
  padding-bottom: 8px;
  text-align: center;
}
.table thead th:first-child {
  width: 240px;
}
.table__head {
  display: inline-block;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #0c6b98;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.table tbody tr {
  border-bottom: 1px solid #383838;
}
.table tbody th,
.table tbody td {
  padding: 8px;
  vertical-align: middle;
}
.table tbody th {
  text-align: center;
  white-space: nowrap;
}
.table tbody td {
  text-align: center;
  line-height: 1.8;
}

.table thead th:first-child {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 400;
  color: #383838;
}
.table thead th:not(:first-child) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #fcfcfc;
}
.table thead th .table-s-text {
  font-weight: 700;
}
.table tbody th {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #383838;
}
.table tbody td {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 400;
  color: #383838;
}

.table__head {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #fff;
  min-width: 145px;
  padding: 4px 24px;
  border-radius: 999px;
  background: #0c6b98;
}

.table-s-text {
  font-weight: 700;
}

.price-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-table .table__body tbody th {
  width: 240px;
}
.price-table .table__body tbody td {
  font-weight: 500;
}
.price-table__note {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.8;
  color: #666;
}

.table thead th:first-child {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 400;
  color: #383838;
  vertical-align: bottom;
  padding-top: 20px;
}

.table__note {
  margin-top: 16px;
}
.table__note p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 400;
  color: #383838;
  line-height: 1.1;
}

.info-section {
  background: url(../img/info-bg.jpg) no-repeat center bottom/cover;
  padding-block: 120px;
}

.info-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.info-gallery h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 16 * (100vw - 400px) / 1920), 40px);
  font-weight: 700;
  color: #054d70;
  margin-bottom: 40px;
}
.info-gallery ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
  padding-inline: 10%;
}
.info-gallery li {
  position: relative;
  border: 3px solid #054d70;
}
.info-gallery h3 {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #fcfcfc;
}

.faq-section {
  padding: 120px 20px;
  background-color: #f4fafd;
}
.faq-section .faq-wrapper {
  width: 100%;
}
.faq-section h2 {
  font-size: 24px;
  color: #054d70;
  text-align: center;
  margin-bottom: 16px;
  font-weight: bold;
}
.faq-section .faq-list {
  border-top: 1px solid #383838;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 400;
  color: #054d70;
}
.faq-section .faq-item {
  border-bottom: 1px solid #383838;
  background-color: #f4fafd;
  transition: background-color 0.3s ease;
}
.faq-section .faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-section .faq-item summary {
  display: block;
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 20px 60px 20px 70px;
  color: #054d70;
  font-size: 16px;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faq-section .faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #fcfcfc;
  color: #f86f1f;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.faq-section .faq-item summary::after {
  content: "＋";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: #f86f1f;
  font-size: 20px;
  font-weight: bold;
}
.faq-section .faq-item[open] {
  background-color: #f4fafd;
}
.faq-section .faq-item[open] summary::after {
  content: "ー";
}
.faq-section .faq-answer {
  padding: 0 60px 25px 70px;
  color: #004b75;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
}
.faq-section .faq-answer::before {
  content: "A";
  position: absolute;
  left: 30px;
  top: 2px;
  width: 24px;
  height: 24px;
  background-color: #f86f1f;
  color: #ffffff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.country-detail-container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 80px;
  box-sizing: border-box;
}

.school-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.school-list-page .hero-section-jp {
  background: url("../img/fv-school-list.jpg") no-repeat center/cover;
  text-align: center;
  padding: 120px 20px 80px 20px;
}
.school-list-page .hero-section-jp h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(40px, calc(40px + 80 * (100vw - 400px) / 1920), 120px);
  font-weight: 400;
  color: #383838;
  letter-spacing: 0.03em;
}
.school-list-page .hero-section-jp .hero-subtitle-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 400;
  color: #383838;
}

.school-list-page .l-container {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.school-list-page .icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}
.school-list-page .p-country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .school-list-page .p-country-grid {
    grid-template-columns: 1fr;
  }
}
.school-list-page .p-country-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 30px;
  background-color: #fcfcfc; /* カード背景：白 */
  border: 0.5px solid #054d70; /* 枠線：薄いグレー */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.school-list-page .p-country-card::before {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: -10px;
  width: 1px;
  background-color: #054d70; /* 装飾線：薄いグレー */
  content: "";
}
.school-list-page .p-country-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.school-list-page .p-country-card__name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #054d70; /* 国名文字色 */
}
.school-list-page .p-country-card__flag {
  flex-shrink: 0;
  width: 150px;
  height: auto;
}
.school-list-page .p-country-card__flag img {
  display: block;
  width: 100%;
  height: auto;
}

.school-list-page .more-button-container {
  margin-top: 80px;
}

.school-detail-container {
  padding-bottom: 40px;
}
.school-detail-container h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 8 * (100vw - 400px) / 1920), 32px);
  font-weight: 700;
  color: #054d70;
  letter-spacing: 0.03em;
  margin-top: 120px;
}

.country-page-wrapper {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.country-page-wrapper .icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 120px;
  margin-bottom: 40px;
}
.country-page-wrapper .top-path ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.country-page-wrapper .top-path ul li {
  align-items: center;
}
.country-page-wrapper .top-path h3 {
  display: inline-block;
  padding-right: 10px;
  margin-top: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 8 * (100vw - 400px) / 1920), 32px);
  font-weight: 700;
  color: #383838;
  line-height: 1;
  margin-block: 8px;
  /* グラデーション */
  background: linear-gradient(to right, #74d2ff 0%, #054d70 100%);
  /* 文字でくり抜き */
  -webkit-background-clip: text;
  background-clip: text;
  /* 文字色透明 */
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.country-page-wrapper .top-path p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #054d70;
  color: #054d70;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: initial;
}

.day-flow-img li {
  border: 4px solid #054d70;
  position: relative;
}
.day-flow-img li::after {
  content: "";
  position: absolute;
  background: url(../img/path-img-frame.png) no-repeat center/contain;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.day-flow {
  position: relative;
}
.day-flow::after {
  position: absolute;
  content: "";
  background: url(../img/day-flow-line.png) no-repeat center/contain;
  width: 50%;
  height: 90px;
  top: -165px;
  left: 50%;
  transform: translateX(-50%);
}

.day-flow h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 16 * (100vw - 400px) / 1920), 40px);
  font-weight: 700;
  color: #054d70;
  text-align: center;
  margin-top: 120px;
  margin-bottom: 40px;
}

.barista-ex {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #383838;
}
.barista-ex .day-flow-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 50px;
  z-index: 1;
}
.barista-ex .day-flow-schedule {
  width: 40%;
  position: relative;
}
.barista-ex .day-flow-schedule h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 8 * (100vw - 400px) / 1920), 32px);
  font-weight: 700;
  color: #f86f1f;
  display: inline-block;
  position: relative;
  margin-bottom: 40px;
  padding: 10px 20px;
  z-index: 1;
}
.barista-ex .day-flow-schedule h3 span {
  color: #f86f1f;
}
.barista-ex .day-flow-schedule h3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 180%;
  transform: translate(-50%, -50%);
  background: url("../img/path-title-frame.png") no-repeat center/contain;
  z-index: -1;
}
.barista-ex .day-flow-schedule dl {
  position: relative;
  padding-left: 40px;
  display: grid;
  grid-template-columns: 120px 1fr;
  row-gap: 56px;
  -moz-column-gap: 0px;
       column-gap: 0px;
  position: relative;
}
.barista-ex .day-flow-schedule dl::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 9px;
  bottom: 10px;
  width: 1px;
  border-left: 1px dotted #054d70;
}
.barista-ex .day-flow-schedule dl dt {
  font-family: "Heebo", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 500;
  color: #054d70;
  position: relative;
}
.barista-ex .day-flow-schedule dl dt::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../img/bullet.svg") no-repeat center/contain;
}
.barista-ex .day-flow-schedule dl dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #054d70;
  margin-left: 0;
  display: inline-block;
  position: relative;
}
.barista-ex .day-flow-schedule dl dd:nth-of-type(2), .barista-ex .day-flow-schedule dl dd:nth-of-type(5) {
  color: #054d70;
  padding-bottom: 8px;
}
.barista-ex .day-flow-schedule dl dd:nth-of-type(2)::after, .barista-ex .day-flow-schedule dl dd:nth-of-type(5)::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 0;
  width: 70%;
  height: 12px;
  background: url("../img/path-underline.png") no-repeat center/100% 100%;
}
.barista-ex .day-flow-img {
  width: 45%;
}
.barista-ex .day-flow-img ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.barista-ex .day-flow-img ul::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 55%;
  transform: translate(30%, -30%);
  background: url("../img/path-bg-barista.png") no-repeat center/contain;
  z-index: -1;
  pointer-events: none;
}
.barista-ex .day-flow-img ul::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 60%;
  transform: translate(-55%, 30%);
  background: url("../img/path-bg-barista.png") no-repeat center/contain;
  z-index: -1;
  pointer-events: none;
}
.barista-ex .day-flow-img li {
  border: 4px solid #054d70;
  position: relative;
  width: 80%;
}
.barista-ex .day-flow-img li:nth-child(1) {
  align-self: flex-start;
}
.barista-ex .day-flow-img li:nth-child(2) {
  align-self: flex-end;
}
.barista-ex .day-flow-img li img {
  width: 100%;
  display: block;
}
.barista-ex .day-flow-img li::after {
  content: "";
  position: absolute;
  background: url("../img/path-img-frame.png") no-repeat center/contain;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.barista-ex .day-flow-img li::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 60px;
  background: url("../img/path-arrow.png") no-repeat center/contain;
  z-index: 2;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
}
.barista-ex .day-flow-voice {
  background-color: #f4fafd;
  padding: 30px 15px 30px 15px;
  border-radius: 8px;
}
.barista-ex .day-flow-voice ul {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.barista-ex .day-flow-voice li:first-child {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}
.barista-ex .day-flow-voice li:first-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.barista-ex .day-flow-voice li:last-child h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 0 * (100vw - 400px) / 1920), 24px);
  font-weight: 700;
  color: #054d70;
  margin: 0 0 15px 0;
}
.barista-ex .day-flow-voice li:last-child p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #383838;
  line-height: 1.6;
  margin: 0 0 10px 0;
}
.barista-ex .day-flow-voice li:last-child p:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #054d70;
  margin-bottom: 0;
}

.farm-ex {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #383838;
}
.farm-ex .day-flow-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 50px;
}
.farm-ex .day-flow-schedule {
  width: 40%;
  position: relative;
}
.farm-ex .day-flow-schedule h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 8 * (100vw - 400px) / 1920), 32px);
  font-weight: 700;
  color: #f86f1f;
  display: inline-block;
  position: relative;
  margin-bottom: 40px;
  padding: 10px 20px;
  z-index: 1;
}
.farm-ex .day-flow-schedule h3 span {
  color: #f86f1f;
}
.farm-ex .day-flow-schedule h3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 180%;
  transform: translate(-50%, -50%);
  background: url("../img/path-title-frame.png") no-repeat center/contain;
  z-index: -1;
}
.farm-ex .day-flow-schedule dl {
  position: relative;
  padding-left: 40px;
  display: grid;
  grid-template-columns: 110px 1fr;
  row-gap: 56px;
  -moz-column-gap: 0px;
       column-gap: 0px;
  position: relative;
  align-items: center;
}
.farm-ex .day-flow-schedule dl::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 9px;
  bottom: 10px;
  width: 1px;
  border-left: 1px dotted #054d70;
}
.farm-ex .day-flow-schedule dl dt {
  font-family: "Heebo", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 500;
  color: #054d70;
  position: relative;
}
.farm-ex .day-flow-schedule dl dt::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../img/bullet.svg") no-repeat center/contain;
}
.farm-ex .day-flow-schedule dl dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #054d70;
  display: inline-block;
  position: relative;
}
.farm-ex .day-flow-schedule dl dd:nth-of-type(3), .farm-ex .day-flow-schedule dl dd:nth-of-type(5) {
  color: #054d70;
  padding-bottom: 8px;
}
.farm-ex .day-flow-schedule dl dd:nth-of-type(3)::after, .farm-ex .day-flow-schedule dl dd:nth-of-type(5)::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 0;
  width: 75%;
  height: 12px;
  background: url("../img/path-underline.png") no-repeat center/100% 100%;
}
.farm-ex .day-flow-img {
  width: 45%;
}
.farm-ex .day-flow-img ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.farm-ex .day-flow-img ul::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 70%;
  transform: translate(30%, -40%);
  background: url("../img/path-bg-farm.png") no-repeat center/contain;
  z-index: -1;
  pointer-events: none;
}
.farm-ex .day-flow-img ul::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 70%;
  transform: translate(-55%, 35%);
  background: url("../img/path-bg-farm.png") no-repeat center/contain;
  z-index: -1;
  pointer-events: none;
}
.farm-ex .day-flow-img li {
  border: 4px solid #054d70;
  position: relative;
  width: 80%;
}
.farm-ex .day-flow-img li:nth-child(1) {
  align-self: flex-start;
}
.farm-ex .day-flow-img li:nth-child(2) {
  align-self: flex-end;
}
.farm-ex .day-flow-img li img {
  width: 100%;
  display: block;
}
.farm-ex .day-flow-img li::after {
  content: "";
  position: absolute;
  background: url("../img/path-img-frame.png") no-repeat center/contain;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.farm-ex .day-flow-img li::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 60px;
  background: url("../img/path-arrow.png") no-repeat center/contain;
  z-index: 2;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
}
.farm-ex .day-flow-voice {
  background-color: #f4fafd;
  padding: 30px 15px 30px 15px;
  border-radius: 8px;
}
.farm-ex .day-flow-voice ul {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.farm-ex .day-flow-voice li:first-child {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}
.farm-ex .day-flow-voice li:first-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.farm-ex .day-flow-voice li:last-child h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 0 * (100vw - 400px) / 1920), 24px);
  font-weight: 700;
  color: #054d70;
  margin: 0 0 15px 0;
}
.farm-ex .day-flow-voice li:last-child p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #383838;
  line-height: 1.6;
  margin: 0 0 10px 0;
}
.farm-ex .day-flow-voice li:last-child p:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #054d70;
  margin-bottom: 0;
}

.path-price {
  background: url(../img/price-model-bg.jpg) no-repeat center/cover;
}
.path-price .table__head {
  min-width: 200px;
}
.path-price .table .table__body .table__head {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

.path-popular-country {
  padding-block: 120px;
}
.path-popular-country .country-detail-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 80px;
  box-sizing: border-box;
}
.path-popular-country .title-icon {
  margin-inline: auto;
}
.path-popular-country h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 16 * (100vw - 400px) / 1920), 40px);
  font-weight: 700;
  color: #054d70;
  text-align: center;
  margin-bottom: 40px;
}
.path-popular-country ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.path-popular-country li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 24px;
}
.path-popular-country .path-popular-img {
  width: 100%;
  border: 1.5px solid #383838;
  box-sizing: border-box;
}
.path-popular-country p {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  z-index: 1;
}
.path-popular-country p::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/ribbon-s.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.strength-page .hero-section {
  background: url(../img/fv-strength.jpg) no-repeat center/cover;
  text-align: center;
  padding: 120px 20px;
}
.strength-page .hero-section h2 {
  font-family: "Heebo", sans-serif;
  font-size: clamp(40px, calc(40px + 80 * (100vw - 400px) / 1920), 120px);
  font-weight: 700;
  color: #383838;
  letter-spacing: 0.03em;
}
.strength-page .hero-section .hero-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #383838;
}
.strength-page .price-model {
  background: url(../img/price-model-strength-bg.jpg) no-repeat center/cover;
}
.strength-page .strength-main {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 20px;
  text-align: center;
}
.strength-page .strength-main .title-icon {
  margin-inline: auto;
  margin-bottom: 40px;
}
.strength-page .strength-main .title-icon img {
  width: 50px;
  height: auto;
}
.strength-page .strength-main h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 16 * (100vw - 400px) / 1920), 40px);
  font-weight: 700;
  color: #054d70;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.strength-page .strength-main .top-three-point {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  width: 100%;
  max-width: 750px;
  height: auto;
  aspect-ratio: 800/200;
  margin: 0 auto 40px;
  padding: 0;
  background: url("../img/strength-3point-bg.png") no-repeat center center;
  background-size: contain;
}
.strength-page .strength-main .top-three-point li {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #383838;
  box-sizing: border-box;
}
.strength-page .strength-main .point-detail {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.strength-page .strength-main .point-detail article {
  width: 100%;
}
.strength-page .strength-main .point-detail-article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5%;
  padding: 0;
  list-style: none;
}
.strength-page .strength-main .point-detail-article li {
  width: 48%;
  text-align: center;
  box-sizing: border-box;
}
.strength-page .strength-main .point-detail-article li img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.strength-page .strength-main .point-detail-article p:first-of-type {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 700;
  color: #383838;
  margin-bottom: 16px;
  border-bottom: 2px solid #f86f1f;
  display: inline-block;
}
.strength-page .strength-main .point-detail-article p:first-of-type span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 0 * (100vw - 400px) / 1920), 24px);
  font-weight: 700;
  color: #383838;
  margin-left: 5px;
  line-height: 1;
}
.strength-page .strength-main .point-detail-article h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 8 * (100vw - 400px) / 1920), 32px);
  font-weight: 700;
  color: #f86f1f;
  margin-bottom: 16px;
  line-height: 1.4;
}
.strength-page .strength-main .point-detail-article p:last-of-type {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #383838;
  line-height: 1.7;
}
.strength-page .strength-main .point-detail article:nth-of-type(even) .point-detail-article {
  flex-direction: row-reverse;
}
.strength-page .achievements-table {
  background: url(../img/achievements-table-bg.svg) no-repeat center/cover;
}
.strength-page .achievements-table .price-table .table__body {
  min-width: 800px;
}
.strength-page .achievements-table .price-table .table__body thead th:first-child,
.strength-page .achievements-table .price-table .table__body tbody th {
  width: 140px;
}
.strength-page .achievements-table .price-table .table__body tbody th {
  font-weight: 400;
}
.strength-page .achievements-table .price-table .table__body tbody tr td:first-of-type {
  font-weight: 700;
  color: #054d70;
  font-size: clamp(24px, calc(24px + 0 * (100vw - 400px) / 1920), 24px);
}
.strength-page .achievements-table .price-table .table__body thead tr th:nth-child(3) .table__head,
.strength-page .achievements-table .price-table .table__body thead tr th:nth-child(4) .table__head {
  background: #fff;
  border: 1px solid #0c6b98;
  color: #383838;
  font-weight: 400;
}
.strength-page .achievements-table .price-table .table__body tbody tr td:nth-of-type(2),
.strength-page .achievements-table .price-table .table__body tbody tr td:nth-of-type(3) {
  color: #383838;
  font-weight: 400;
}
.strength-page .achievements-table .table__head {
  min-width: 200px;
}
.strength-page .achievements-table .table__wrap {
  padding-top: 80px;
  padding-bottom: 16px;
  background-color: rgba(252, 252, 252, 0.8);
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 40px;
}
.strength-page .achievements-table .table .table__body .table__head {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}
.strength-page .achievements-table .crown-content {
  position: relative;
}
.strength-page .achievements-table .crown-content::after {
  position: absolute;
  content: "";
  background: url(../img/icon-crown.png) no-repeat center/contain;
  width: 60px;
  height: 60px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
}
.strength-page .achievements-section {
  max-width: 850px;
  margin: 0 auto;
  padding: 120px clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  background-color: #fcfcfc;
}
.strength-page .achievements-section .section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 8 * (100vw - 400px) / 1920), 32px);
  font-weight: 700;
  color: #054d70;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(30px, calc(30px + 20 * (100vw - 400px) / 1920), 50px);
}
.strength-page .achievements-section .section-title span {
  color: #f86f1f;
}
.strength-page .achievements-section .section-title::before {
  content: "";
  flex-grow: 1;
  max-width: 220px;
  height: 1px;
  background-color: #054d70;
  margin-right: clamp(15px, calc(15px + 25 * (100vw - 400px) / 1920), 40px);
}
.strength-page .achievements-section .section-title::after {
  content: "";
  flex-grow: 1;
  max-width: 220px;
  height: 1px;
  background-color: #054d70;
  margin-left: clamp(15px, calc(15px + 25 * (100vw - 400px) / 1920), 40px);
}
.strength-page .achievements-section .achievements-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, calc(20px + 10 * (100vw - 400px) / 1920), 30px);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 600px) {
  .strength-page .achievements-section .achievements-list {
    grid-template-columns: 1fr;
  }
}
.strength-page .achievements-section .achievements-list li {
  background-color: #fcfcfc;
  border: 1px solid #b5b5b5;
  padding: clamp(20px, calc(20px + 20 * (100vw - 400px) / 1920), 40px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.strength-page .achievements-section .achievements-icon {
  flex-shrink: 0;
  width: clamp(60px, calc(60px + 70 * (100vw - 400px) / 1920), 130px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: clamp(10px, calc(10px + 20 * (100vw - 400px) / 1920), 30px);
}
.strength-page .achievements-section .achievements-icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.strength-page .achievements-section .achievements-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: clamp(20px, calc(20px + 20 * (100vw - 400px) / 1920), 40px);
  margin-right: auto;
}
.strength-page .achievements-section .achievements-text h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, calc(14px + 2 * (100vw - 400px) / 1920), 16px);
  font-weight: 700;
  color: #666666;
  margin: 0 0 8px 0;
  text-align: center;
  width: 100%;
}
.strength-page .achievements-section .achievements-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, calc(14px + 4 * (100vw - 400px) / 1920), 18px);
  font-weight: 700;
  color: #383838;
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  width: 100%;
}
.strength-page .achievements-section .achievements-text p .num {
  font-family: "Heebo", sans-serif;
  font-size: clamp(40px, calc(40px + 70 * (100vw - 400px) / 1920), 110px);
  font-weight: 700;
  color: #f86f1f;
  line-height: 1;
}

.support-section {
  padding: 120px clamp(20px, calc(20px + 20 * (100vw - 400px) / 1920), 40px);
  background: #f4fafd;
  text-align: center;
}
.support-section .title-icon {
  width: clamp(40px, calc(40px + 10 * (100vw - 400px) / 1920), 50px);
  margin: 0 auto 12px auto;
}
.support-section .title-icon img {
  width: 100%;
  height: auto;
}
.support-section .section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 8 * (100vw - 400px) / 1920), 32px);
  font-weight: 700;
  color: #054d70;
  margin: 0 0 clamp(40px, calc(40px + 20 * (100vw - 400px) / 1920), 60px) 0;
}
.support-section ul {
  display: flex;
  justify-content: center;
  gap: clamp(20px, calc(20px + 10 * (100vw - 400px) / 1920), 30px);
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(40px, calc(40px + 20 * (100vw - 400px) / 1920), 60px) 0;
}
@media (max-width: 768px) {
  .support-section ul {
    flex-direction: column;
    align-items: center;
  }
}
.support-section ul li {
  background-color: #fcfcfc;
  width: calc((100% - clamp(20px, calc(20px + 10 * (100vw - 400px) / 1920), 30px) * 2) / 3);
  max-width: 360px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .support-section ul li {
    width: 100%;
  }
}
.support-section .card-img {
  width: 100%;
  height: clamp(180px, calc(180px + 40 * (100vw - 400px) / 1920), 220px);
  overflow: hidden;
}
.support-section .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.support-section .card-body {
  padding: clamp(25px, calc(25px + 10 * (100vw - 400px) / 1920), 35px) clamp(20px, calc(20px + 10 * (100vw - 400px) / 1920), 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}
.support-section .card-body .card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(22px, calc(22px + 4 * (100vw - 400px) / 1920), 26px);
  font-weight: 700;
  color: #054d70;
  margin: 0 0 15px 0;
  letter-spacing: 0.1em;
}
.support-section .card-body .card-title span {
  color: #f86f1f;
  margin-left: 4px;
}
.support-section .card-body .card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, calc(13px + 1 * (100vw - 400px) / 1920), 14px);
  font-weight: 400;
  color: #383838;
  line-height: 1.7;
  text-align: left;
  margin: 0;
}

.cost-page .hero-section {
  background: url(../img/fv-cost.jpg) no-repeat center/cover;
  text-align: center;
  padding: 120px 20px;
}
.cost-page .hero-section h2 {
  font-family: "Heebo", sans-serif;
  font-size: clamp(40px, calc(40px + 80 * (100vw - 400px) / 1920), 120px);
  font-weight: 700;
  color: #383838;
  letter-spacing: 0.03em;
}
.cost-page .hero-section .hero-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #383838;
}
.cost-page .level-wrapper h2 {
  margin-bottom: 8px;
}
.cost-page .level-wrapper .country-detail-container {
  max-width: 1150px;
}
.cost-page .level-wrapper .table__wrap {
  padding-top: 80px;
  padding-bottom: 32px;
  background: url(../img/cost-bg-level.jpg) no-repeat center/cover;
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 16px;
}
.cost-page .level-wrapper thead th:not(:first-child) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #fcfcfc;
}
.cost-page .level-wrapper thead th .table-s-text {
  font-weight: 700;
}
.cost-page .level-wrapper tbody th {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #054d70;
}
.cost-page .level-wrapper tbody th span {
  font-weight: bold;
}
.cost-page .level-wrapper tbody td {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #383838;
  line-height: 1.1;
}
.cost-page .level-wrapper .table tbody th,
.cost-page .level-wrapper .table tbody td {
  padding: 5px;
}
.cost-page .level-wrapper thead th:first-child,
.cost-page .level-wrapper tbody th {
  width: 140px;
}
.cost-page .level-wrapper .table .table__body .table__head {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}
.cost-page .level-wrapper .long-text {
  min-width: 220px;
}
.cost-page .table__head {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #fff;
  min-width: 145px;
  padding: 4px 24px;
  border-radius: 999px;
  background: #0c6b98;
}
.cost-page .table-s-text {
  font-weight: 700;
}
.cost-page .standard-text {
  text-align: center;
  margin-top: 16px;
}
.cost-page .standard-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #f86f1f;
  margin-bottom: 0;
  letter-spacing: 0.05em;
}
.cost-page .standard-text h3 {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  padding: clamp(25px, calc(25px + 10 * (100vw - 400px) / 1920), 35px) clamp(20px, calc(20px + 10 * (100vw - 400px) / 1920), 30px);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cost-page .standard-text h3 span {
  font-size: clamp(18px, calc(18px + 6 * (100vw - 400px) / 1920), 24px);
  font-weight: 700;
  margin: 0 4px;
}
.cost-page .standard-text h3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background: url(../img/ribbon-level.png) no-repeat center/contain;
}
.cost-page .achievements-table h2 {
  margin-bottom: 8px;
}
.cost-page .achievements-table .country-detail-container {
  max-width: 1200px;
  padding-inline: 30px;
}
.cost-page .achievements-table {
  background: url(../img/cost-bg-market.jpg) no-repeat center/cover;
}
.cost-page .achievements-table .price-table .table__body {
  min-width: 800px;
}
.cost-page .achievements-table .price-table .table__body thead th:first-child,
.cost-page .achievements-table .price-table .table__body tbody th {
  width: 140px;
}
.cost-page .achievements-table .table__head {
  min-width: 200px;
}
.cost-page .achievements-table .table__wrap {
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: rgba(252, 252, 252, 0.9);
  max-width: 1130px;
  margin-inline: auto;
  padding-inline: 40px;
}
.cost-page .achievements-table .table .table__body .table__head {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}
.cost-page .achievements-table p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 400;
  color: #383838;
}
.cost-page .achievements-table thead th:not(:first-child) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #fcfcfc;
}
.cost-page .achievements-table thead th .table-s-text {
  font-weight: 700;
}
.cost-page .achievements-table tbody th {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 700;
  color: #383838;
}
.cost-page .achievements-table tbody td {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 700;
  color: #383838;
  line-height: 1.1;
}
.cost-page .breakdown-section {
  padding-block: 120px;
}
.cost-page .breakdown-section .country-detail-container {
  max-width: 1050px;
}
.cost-page .breakdown-section h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, calc(28px + 8 * (100vw - 400px) / 1920), 36px);
  font-weight: 700;
  color: #054d70;
  margin-bottom: 16px;
  margin-inline: auto;
  text-align: center;
}
.cost-page .breakdown-section .percentage-sp {
  display: none;
}
.cost-page .breakdown-section ul {
  display: flex;
  justify-content: space-between;
  gap: clamp(20px, calc(20px + 10 * (100vw - 400px) / 1920), 30px);
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(40px, calc(40px + 20 * (100vw - 400px) / 1920), 60px) 0;
}
.cost-page .breakdown-section ul li {
  position: relative;
  flex: 1;
  background: #fcfcfc;
  border: 1px solid rgba(5, 77, 112, 0.7);
  border-radius: 4px;
  padding: clamp(30px, calc(30px + 10 * (100vw - 400px) / 1920), 40px) clamp(20px, calc(20px + 10 * (100vw - 400px) / 1920), 30px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
.cost-page .breakdown-section ul li::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 90%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #fcfcfc transparent transparent transparent;
  z-index: 2;
}
.cost-page .breakdown-section ul li::before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 90%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: rgba(5, 77, 112, 0.7) transparent transparent transparent;
  z-index: 1;
}
.cost-page .breakdown-section .card-num {
  margin-bottom: clamp(15px, calc(15px + 10 * (100vw - 400px) / 1920), 25px);
}
.cost-page .breakdown-section .card-num img {
  height: clamp(50px, calc(50px + 20 * (100vw - 400px) / 1920), 70px);
  width: auto;
  display: block;
}
.cost-page .breakdown-section .card-body {
  width: 100%;
}
.cost-page .breakdown-section .card-body .card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #383838;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}
.cost-page .breakdown-section .card-body .card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background-color: #054d70;
}
.cost-page .breakdown-section ul li:nth-child(2) .card-title::after {
  background-color: #faca0a;
}
.cost-page .breakdown-section ul li:nth-child(3) .card-title::after {
  background-color: #f86f1f;
}
.cost-page .breakdown-section .card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #383838;
  line-height: 1.6;
  font-size: clamp(11px, calc(11px + 2 * (100vw - 400px) / 1920), 13px);
}
.cost-page .breakdown-section .card-text br {
  margin-bottom: 8px;
}
.cost-page .breakdown-section .percentage-container {
  position: relative;
  width: 100%;
  margin-top: clamp(20px, calc(20px + 10 * (100vw - 400px) / 1920), 30px);
  margin-bottom: 40px;
}
.cost-page .breakdown-section .percentage-container::after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 5px;
  background: #383838;
  border-radius: 15%;
  filter: blur(6px);
}
.cost-page .breakdown-section .labels-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.cost-page .breakdown-section .labels-layer .label-box {
  font-family: "Heebo", sans-serif;
  font-size: clamp(14px, calc(14px + 4 * (100vw - 400px) / 1920), 18px);
  font-weight: 700;
  color: #054d70;
  text-align: center;
}
.cost-page .breakdown-section .labels-layer .label-box:nth-child(1) {
  width: 52%;
  padding-right: 5%;
}
.cost-page .breakdown-section .labels-layer .label-box:nth-child(2) {
  width: 28%;
  padding-left: 5%;
}
.cost-page .breakdown-section .labels-layer .label-box:nth-child(3) {
  width: 20%;
  padding-left: 5%;
}
.cost-page .breakdown-section .labels-layer .label-box:first-child .num {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 16 * (100vw - 400px) / 1920), 40px);
  font-weight: 700;
  color: #054d70;
}
.cost-page .breakdown-section .labels-layer .label-box:nth-child(n+2) .num {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 0 * (100vw - 400px) / 1920), 24px);
  font-weight: 700;
  color: #054d70;
}
.cost-page .plan-section {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #054d70;
  background-image: url("../img/cost-bg-plan.jpg");
  background-size: cover;
  background-position: center;
  padding-block: 120px;
  text-align: center;
}
.cost-page .plan-section .section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 16 * (100vw - 400px) / 1920), 40px);
  font-weight: 700;
  color: #054d70;
  margin-bottom: 40px;
}
.cost-page .plan-section .plan-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 1200px;
}
.cost-page .plan-section .plan-card {
  background-color: rgba(252, 252, 252, 0.95);
  box-shadow: 3px 3px 5px #383838;
  padding: 40px 20px;
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
}
.cost-page .plan-section .plan-card:nth-child(2)::before {
  content: "";
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 105%;
  height: 60px;
  background-image: url("../img/ribbon-plan.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
.cost-page .plan-section .plan-card:nth-child(2)::after {
  content: "オススメ！"; /* ここでテキストを用意します */
  position: absolute;
  top: 0px; /* リボンの中央に重なるように上下位置を調整 */
  left: 50%;
  transform: translate(-50%, -50%); /* 左右の完全センター揃え */
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 400;
  color: #383838;
  z-index: 3; /* リボン（z-index: 2）より前面に出す */
  white-space: nowrap;
}
.cost-page .plan-section .plan-card .plan-text {
  margin-bottom: 16px;
}
.cost-page .plan-section .plan-card .plan-text .catch {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 500;
  color: #054d70;
  margin: 0 0 8px 0;
}
.cost-page .plan-section .plan-card .plan-text .title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 0 * (100vw - 400px) / 1920), 24px);
  font-weight: 700;
  color: #054d70;
  margin: 0 0 10px 0;
}
.cost-page .plan-section .plan-card .plan-text .sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #054d70;
  margin: 0;
}
.cost-page .plan-section .plan-card .plan-Content {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.cost-page .plan-section .plan-card .plan-Content .plan-card-feature-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #054d70;
  line-height: 1.6;
}
.cost-page .plan-section .plan-card .plan-card-btn {
  display: inline-block; /* 中身の文字幅（aタグの幅）に合わせる設定 */
  margin: 0 auto; /* ブロックの中で中央寄せにする */
  text-align: center;
}
.cost-page .plan-section .plan-card .plan-card-btn a {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 700;
  color: #f86f1f;
  text-decoration: none;
  padding: 10px;
  border-bottom: 1px solid #f86f1f;
  transition: opacity 0.3s ease;
}
.cost-page .plan-section .plan-card .plan-card-btn a:hover {
  opacity: 0.7;
}

.support-page .hero-section {
  background: url(../img/fv-support.jpg) no-repeat center/cover;
  text-align: center;
  padding: 120px 20px;
}
.support-page .hero-section h2 {
  font-family: "Heebo", sans-serif;
  font-size: clamp(40px, calc(40px + 80 * (100vw - 400px) / 1920), 120px);
  font-weight: 700;
  color: #383838;
  letter-spacing: 0.03em;
}
.support-page .hero-section .hero-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #383838;
}
.support-page .main-support-wrapper {
  position: relative;
  width: 100%;
  padding: clamp(60px, calc(60px + 40 * (100vw - 400px) / 1920), 100px) 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.support-page .main-support-wrapper .support-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(30px, calc(30px + 30 * (100vw - 400px) / 1920), 60px);
  position: relative;
  z-index: 2;
}
.support-page .main-support-wrapper .support-content {
  flex: 1;
  max-width: 820px;
}
.support-page .main-support-wrapper .support-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(32px, calc(32px + 16 * (100vw - 400px) / 1920), 48px);
  font-weight: 700;
  color: #054d70;
  margin-bottom: clamp(24px, calc(24px + 16 * (100vw - 400px) / 1920), 40px);
}
.support-page .main-support-wrapper .left-margin {
  margin-left: 80px;
}
.support-page .main-support-wrapper .support-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, calc(16px + 8 * (100vw - 400px) / 1920), 24px);
  list-style: none;
  padding: 0;
  margin: 0;
}
.support-page .main-support-wrapper .left-margin {
  margin-left: 80px;
}
.support-page .main-support-wrapper .right-margin {
  margin-right: 80px;
}
.support-page .main-support-wrapper .support-card {
  background: #fcfcfc;
  padding: 8px 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.support-page .main-support-wrapper .support-card .card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #054d70;
  display: flex;
  align-items: center;
  gap: 8px;
}
.support-page .main-support-wrapper .support-card .card-title .check-mark {
  color: #0c6b98;
  font-weight: 700;
}
.support-page .main-support-wrapper .support-card .card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 400;
  color: #383838;
  line-height: 1.6;
  margin: 0;
}
.support-page .main-support-wrapper .support-image-wrap {
  flex: 1;
  max-width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.support-page .main-support-wrapper .support-image-wrap img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.support-page .support-pre {
  background: url(../img/support-pre.svg) no-repeat center/cover;
}
.support-page .support-pre .support-container {
  flex-direction: row;
}
.support-page .support-middle {
  background: url(../img/support-middle.svg) no-repeat center/cover;
}
.support-page .support-middle .support-container {
  flex-direction: row-reverse;
  position: relative;
  z-index: 1;
}
.support-page .support-middle .support-container::after {
  position: absolute;
  content: "";
  background: url(../img/support-deco01.png) no-repeat center/contain;
  width: 50%;
  height: 100%;
  top: 0;
  left: 35%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.support-page .support-post {
  background: url(../img/support-post.svg) no-repeat center/cover;
}
.support-page .support-post .support-container {
  flex-direction: row;
  position: relative;
  z-index: 1;
}
.support-page .support-post .support-container::after {
  position: absolute;
  content: "";
  background: url(../img/support-deco02.png) no-repeat center/contain;
  width: 30%;
  height: 100%;
  top: 0;
  right: 25%;
  transform: translate(0, -70%);
  z-index: -1;
}

.study-abroad-flow-page .hero-section-jp {
  background: url("../img/fv-flow.jpg") no-repeat center/cover;
  text-align: center;
  padding: 120px 20px 80px 20px;
}
.study-abroad-flow-page .hero-section-jp h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(40px, calc(40px + 70 * (100vw - 400px) / 1920), 110px);
  font-weight: 400;
  color: #383838;
  letter-spacing: 0.03em;
}
.study-abroad-flow-page .hero-section-jp .hero-subtitle-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 400;
  color: #383838;
}

.flow-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px;
}
.flow-line .line {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 2px;
  background-color: #7b8179;
  z-index: 1;
}
.flow-line .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}
.flow-line .step .step-top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
}
.flow-line .step .step-count {
  font-family: "Heebo", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #054d70;
  text-align: right;
  line-height: 1.2;
  margin-top: clamp(4px, calc(4px + 4 * (100vw - 400px) / 1920), 8px);
}
.flow-line .step .step-circle {
  width: clamp(70px, calc(70px + 20 * (100vw - 400px) / 1920), 90px);
  height: auto;
  background-color: #f4fafd;
  border-radius: 50%;
}
.flow-line .step .step-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 700;
  color: #054d70;
  margin-top: clamp(12px, calc(12px + 8 * (100vw - 400px) / 1920), 20px);
  margin-left: 40px;
  text-align: center;
  white-space: nowrap;
}

.step-section {
  padding-inline: 0;
}
.step-section .step-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.step-section .step-content .title-wrapper {
  margin-bottom: 24px;
}
.step-section .step-content .step-title {
  font-family: "Heebo", sans-serif;
  font-size: clamp(14px, calc(14px + 6 * (100vw - 400px) / 1920), 20px);
  font-weight: 400;
  color: #054d70;
  line-height: 1;
  margin-bottom: 4px;
}
.step-section .step-content h3.step-content {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin: 0;
}
.step-section .step-content .step-number {
  font-family: "Heebo", sans-serif;
  font-size: clamp(24px, calc(24px + 16 * (100vw - 400px) / 1920), 40px);
  font-weight: 400;
  color: #054d70;
  line-height: 0.9;
}
.step-section .step-content .step-number .orange {
  color: #f86f1f;
}
.step-section .step-content .title-wrapper .step-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 16 * (100vw - 400px) / 1920), 40px);
  font-weight: 700;
  color: #054d70;
  line-height: 1;
}
.step-section .step-content > .step-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 500;
  color: #054d70;
  line-height: 1.5;
  margin-bottom: 12px;
}
.step-section .step-content > .step-text .step-subtext {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #054d70;
  line-height: 1.5;
}
.step-section .step-content > .step-text .step-list {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #054d70;
  line-height: 1.3;
}
.step-section ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.step-section ol > li {
  position: relative;
  min-height: 360px;
  padding: 80px 38% 80px 12%;
}
.step-section ol > li:nth-child(odd) {
  background: #f4fafd;
}
.step-section ol > li::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.step-section ol > li:nth-child(1)::after {
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
  width: 300px;
  height: 250px;
  background-image: url("../img/flow-img01.png");
}
.step-section ol > li:nth-child(2)::after {
  top: 0;
  transform: translateY(-20%);
  right: 20%;
  width: 300px;
  height: 240px;
  background-image: url("../img/flow-img02.png");
}
.step-section ol > li:nth-child(3)::after {
  top: 0;
  transform: translateY(-30%);
  right: 5%;
  width: 290px;
  height: 240px;
  background-image: url("../img/flow-img03.png");
}
.step-section ol > li:nth-child(4)::after {
  top: 0;
  transform: translateY(10%);
  right: 15%;
  width: 400px;
  height: 300px;
  background-image: url("../img/flow-img04.png");
}
.step-section ol > li:nth-child(5)::after {
  bottom: 0;
  transform: translateY(20%);
  right: 6%;
  width: 450px;
  height: 400px;
  background-image: url("../img/flow-img05.png");
}
.step-section .step-line-btn {
  position: absolute;
  left: 40%;
  bottom: 0;
  z-index: 3;
}
.step-section .step-line-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  height: 35px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 700;
  color: #fcfcfc;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.03em;
  background: #00c853;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px #00c853;
  transition: 0.3s ease;
}
.step-section .step-line-btn a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.column-page .hero-section-jp {
  background: url("../img/fv-column.jpg") no-repeat center/cover;
  text-align: center;
  padding: 120px 20px 80px 20px;
}
.column-page .hero-section-jp h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(40px, calc(40px + 70 * (100vw - 400px) / 1920), 110px);
  font-weight: 400;
  color: #383838;
  letter-spacing: 0.03em;
}
.column-page .hero-section-jp .hero-subtitle-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 400;
  color: #383838;
}
.column-page .p-school-search {
  padding-top: 120px;
  padding-bottom: 0px;
}
.column-page .section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 16 * (100vw - 400px) / 1920), 40px);
  font-weight: 700;
  color: #054d70;
  text-align: center;
  margin-bottom: 40px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-card {
  height: 100%;
}
.blog-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.blog-card-content {
  flex: 1;
}

.blog-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.blog-card-meta time {
  font-family: "Heebo", sans-serif;
  font-size: clamp(8px, calc(8px + 6 * (100vw - 400px) / 1920), 14px);
  font-weight: 500;
  color: #054d70;
  line-height: 1;
}

.blog-card-tags {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: "Heebo", sans-serif;
  font-size: clamp(8px, calc(8px + 6 * (100vw - 400px) / 1920), 14px);
  font-weight: 500;
  color: #054d70;
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-card-tags li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
  font-weight: 500;
  color: rgba(5, 77, 112, 0.8);
  line-height: 1;
}

.blog-card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 6 * (100vw - 400px) / 1920), 22px);
  font-weight: 700;
  color: #054d70;
  line-height: 1.6;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.3s;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-card:hover .blog-card-title {
  color: #f86f1f;
}

.blog-card-img img {
  transition: 0.4s;
}

.column-article .column-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(32px, calc(32px + 16 * (100vw - 400px) / 1920), 48px);
  font-weight: 400;
  color: #054d70;
}
.column-article {
  line-height: 2;
}
.column-article .date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, calc(8px + 6 * (100vw - 400px) / 1920), 14px);
  font-weight: 400;
  color: #054d70;
}
.column-article .column-content h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 16 * (100vw - 400px) / 1920), 40px);
  font-weight: 400;
  color: #054d70;
}
.column-article .column-content p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #054d70;
}
.column-article .column-content h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 400;
  color: #054d70;
}
.column-article .column-content img {
  width: 100%;
  height: auto;
}
.column-article .column-content ul,
.column-article .column-content ol {
  padding-left: 1.5em;
}
.column-article .column-content a {
  color: #054d70;
}

.faq-page .p-school-search {
  padding-top: 120px;
  padding-bottom: 0px;
}

.back-change {
  background-color: #fcfcfc;
}
.back-change .faq-item {
  background-color: #fcfcfc;
}
.back-change .faq-item::before {
  background-color: #f4fafd;
}
.back-change .faq-item[open] {
  background-color: #fcfcfc;
}

.contact-page .hero-section-jp {
  background: url("../img/fv-contact.jpg") no-repeat center/cover;
  text-align: center;
  padding: 120px 20px 80px 20px;
}
.contact-page .hero-section-jp h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(40px, calc(40px + 70 * (100vw - 400px) / 1920), 110px);
  font-weight: 400;
  color: #383838;
  letter-spacing: 0.03em;
}
.contact-page .hero-section-jp .hero-subtitle-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 400;
  color: #383838;
}
.contact-page {
  /* ==========================================
   共通CTAボタン（他の場所でも使い回せるように調整）
   ========================================== */
}
.contact-page .cta-btn {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-page .cta-btn li:not(:has(a)) {
  display: none;
}
.contact-page .cta-btn li {
  width: 100%;
  max-width: 400px;
}
.contact-page .cta-btn a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  line-height: 0.5;
  text-align: center;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}
.contact-page .cta-btn a:hover {
  opacity: 0.8;
}
.contact-page .cta-btn a::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(252, 252, 252, 0.8);
  border-radius: inherit;
  pointer-events: none;
}
.contact-page .cta-btn li:first-child a {
  background: #00c300;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, calc(18px + 4 * (100vw - 400px) / 1920), 22px);
  font-weight: 700;
  color: #fcfcfc;
}
.contact-page .cta-btn li:first-child a span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(11px, calc(11px + 2 * (100vw - 400px) / 1920), 13px);
  font-weight: 500;
  color: #fcfcfc;
  margin-bottom: 2px;
}
.contact-page .cta-btn li:last-child a {
  background: #f86f1f;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, calc(18px + 4 * (100vw - 400px) / 1920), 22px);
  font-weight: 700;
  color: #fcfcfc;
}
.contact-page .cta-btn li:last-child a span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(11px, calc(11px + 2 * (100vw - 400px) / 1920), 13px);
  font-weight: 500;
  color: #fcfcfc;
  margin-bottom: 2px;
}

.trouble-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(60px, calc(60px + 40 * (100vw - 400px) / 1920), 100px) clamp(20px, calc(20px + 20 * (100vw - 400px) / 1920), 40px);
  text-align: center;
  background-color: #fcfcfc;
}
.trouble-section h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 16 * (100vw - 400px) / 1920), 40px);
  font-weight: 700;
  color: #054d70;
  position: relative;
  display: inline-block;
  padding-bottom: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  margin-bottom: clamp(30px, calc(30px + 10 * (100vw - 400px) / 1920), 40px);
  letter-spacing: 0.05em;
}
.trouble-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #f86f1f;
  border-radius: 2px;
}
.trouble-section h3::before {
  content: "";
  background: url("../img/text-accent.png") no-repeat center/contain;
  position: absolute;
  width: 30px;
  height: 50px;
  top: 0px;
  right: 0px;
  transform: translate(100%, -50%);
}
.trouble-section .trouble-list-container {
  display: flex;
  justify-content: center;
  gap: clamp(40px, calc(40px + 40 * (100vw - 400px) / 1920), 80px);
  margin-bottom: 16px;
  text-align: left;
}
.trouble-section .trouble-list-container .trouble-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trouble-section .trouble-list-container .trouble-list li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #054d70;
  position: relative;
  padding-left: 15px;
  margin-bottom: 0px;
  line-height: 1.6;
}
.trouble-section .trouble-list-container .trouble-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #054d70;
}
.trouble-section .trouble-list-container .trouble-list li:last-child {
  margin-bottom: 0;
}
.trouble-section > p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 500;
  color: #054d70;
  margin-bottom: clamp(40px, calc(40px + 20 * (100vw - 400px) / 1920), 60px);
  letter-spacing: 0.03em;
}
.trouble-section .anxiety-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.trouble-section .anxiety-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(120px, calc(120px + 60 * (100vw - 400px) / 1920), 180px);
}
.trouble-section .anxiety-list li div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(80px, calc(80px + 30 * (100vw - 400px) / 1920), 110px);
  height: clamp(80px, calc(80px + 30 * (100vw - 400px) / 1920), 110px);
  margin-bottom: clamp(15px, calc(15px + 5 * (100vw - 400px) / 1920), 20px);
}
.trouble-section .anxiety-list li div img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.trouble-section .anxiety-list li p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 700;
  color: #054d70;
  white-space: nowrap;
  line-height: 1.4;
}
.trouble-section .anxiety-list li:nth-of-type(2) {
  margin-left: 10px;
}

/* ==========================================
   コンタクトセクションのレイアウト
   ========================================== */
.contact-wrapper {
  width: 100%;
}
.contact-wrapper .contact-content {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-wrapper .contact-content > li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(40px, calc(40px + 60 * (100vw - 400px) / 1920), 100px);
  padding: clamp(60px, calc(60px + 20 * (100vw - 400px) / 1920), 80px) clamp(20px, calc(20px + 40 * (100vw - 400px) / 1920), 60px);
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 500px) {
  .contact-wrapper .contact-content > li {
    flex-direction: column;
  }
}
.contact-wrapper .contact-content > li .cta-text {
  flex: 1;
  max-width: 570px;
}
.contact-wrapper .contact-content > li .cta-text h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, calc(28px + 8 * (100vw - 400px) / 1920), 36px);
  font-weight: 700;
  color: #054d70;
  margin-bottom: clamp(15px, calc(15px + 5 * (100vw - 400px) / 1920), 20px);
  letter-spacing: 0.02em;
}
.contact-wrapper .contact-content > li .cta-text h3 .big-text {
  font-size: 1.15em;
  font-family: "Heebo", sans-serif;
  margin-right: 4px;
}
.contact-wrapper .contact-content > li .cta-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #054d70;
  line-height: 1.7;
  margin-bottom: clamp(25px, calc(25px + 10 * (100vw - 400px) / 1920), 35px);
}
.contact-wrapper .contact-content > li > div:last-child {
  flex: 1;
  max-width: 440px;
}
.contact-wrapper .contact-content > li > div:last-child img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #054d70;
}
.contact-wrapper .contact-content .contact-line {
  background-color: #f4fafd;
}
.contact-wrapper .contact-content .contact-counseling {
  background-color: #fcfcfc;
}

.form-section {
  width: 100%;
  padding: 80px 10px;
  background-image: url("../img/form-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.form-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, calc(20px + 40 * (100vw - 400px) / 1920), 60px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(40px, calc(40px + 40 * (100vw - 400px) / 1920), 80px);
}
@media (max-width: 500px) {
  .form-container {
    flex-direction: column;
  }
}

.form-info {
  flex: 1;
  max-width: 420px;
  position: relative;
  padding-top: 80px;
}
.form-info h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 16 * (100vw - 400px) / 1920), 40px);
  font-weight: 700;
  color: #054d70;
  margin-bottom: 24px;
  line-height: 1.4;
}
.form-info p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #383838;
  line-height: 1.8;
  margin-bottom: 0;
}

.wpcf7 {
  flex: 1.3;
  width: 100%;
}

.contact-form {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  background-image: none;
  box-sizing: border-box;
}
.contact-form .contact-form-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  row-gap: 24px;
  margin-bottom: 30px;
}
.contact-form .contact-form-list dt {
  width: 30%;
  padding-top: 12px;
  box-sizing: border-box;
  text-align: right;
  padding-right: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 700;
  color: #054d70;
}
@media (max-width: 768px) {
  .contact-form .contact-form-list dt {
    width: 100%;
    padding-top: 0;
    margin-bottom: 8px;
  }
}
.contact-form .contact-form-list dd {
  width: 70%;
  margin-left: 0;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .contact-form .contact-form-list dd {
    width: 100%;
  }
}
.contact-form .contact-form-list dd .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #054d70;
  background-color: rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #383838;
  outline: none;
}
.contact-form .contact-form-list dd .form-control::-moz-placeholder {
  color: rgba(5, 77, 112, 0.4);
}
.contact-form .contact-form-list dd .form-control::placeholder {
  color: rgba(5, 77, 112, 0.4);
}
.contact-form .contact-form-list dd textarea.form-control {
  height: 200px;
  resize: vertical;
}
.contact-form .contact-form-list dd select.form-control {
  cursor: pointer;
  color: rgba(5, 77, 112, 0.4);
}
.contact-form .contact-form-list dd select.form-control option {
  color: #383838;
}
.contact-form .submit-container {
  width: 70%;
  margin-left: auto;
}
.contact-form .submit-container .submit-btn {
  width: 100%;
  padding: 8px 0;
  background-color: transparent;
  border: 3px solid #054d70;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 700;
  color: #054d70;
  background-color: #fcfcfc;
}
.contact-form .submit-container .submit-btn:hover {
  background-color: #054d70;
  color: #fff;
}

.Terms-and-conditions-page .hero-section-jp {
  background: url("../img/fv-policy.jpg") no-repeat center/cover;
  text-align: center;
  padding: 120px 20px 80px 20px;
}
.Terms-and-conditions-page .hero-section-jp h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(40px, calc(40px + 70 * (100vw - 400px) / 1920), 110px);
  font-weight: 400;
  color: #383838;
  letter-spacing: 0.03em;
}
.Terms-and-conditions-page .hero-section-jp .hero-subtitle-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  font-weight: 400;
  color: #383838;
}

.Terms-and-conditions-content {
  padding-block: 160px;
}
.Terms-and-conditions-content h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, calc(24px + 0 * (100vw - 400px) / 1920), 24px);
  font-weight: 700;
  color: #054d70;
  line-height: 1.5;
  margin-block: 40px;
}
.Terms-and-conditions-content p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, calc(12px + 4 * (100vw - 400px) / 1920), 16px);
  font-weight: 400;
  color: #054d70;
  line-height: 1.5;
}

@media (max-width: 1064px) {
  header {
    padding: 16px;
  }
  /* --- ハンバーガーボタン（青い円＋白3本線） --- */
  .burger-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #054d70;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
  }
  .burger-btn::before {
    content: "";
  }
  .burger-btn span {
    display: block;
    position: absolute;
    left: 18px;
    width: 24px;
    height: 2px;
    background-color: #fcfcfc;
    transition: all 0.3s ease-in-out;
  }
  .burger-btn span:nth-child(1) {
    top: 20px;
  }
  .burger-btn span:nth-child(2) {
    top: 29px;
  }
  .burger-btn span:nth-child(3) {
    top: 38px;
  }
  .burger-btn.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .burger-btn.is-active span:nth-child(2) {
    opacity: 0;
  }
  .burger-btn.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  /* --- ナビゲーションメニュー（右からスライドイン） --- */
  .header-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #fcfcfc;
    padding: 100px 20px 30px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 9;
    overflow-y: auto;
  }
  .header-nav.is-active {
    right: 0;
  }
  .nav-btn,
  .cta-btn {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .nav-btn li,
  .cta-btn li {
    width: 250px;
    text-align: center;
  }
  .nav-btn li a,
  .cta-btn li a {
    display: block;
    padding: 8px 0;
    color: #383838;
  }
  .cta-btn {
    margin-top: 20px;
  }
  /* --- 背景の黒マスク --- */
  .black-bg {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    z-index: 8;
  }
  .black-bg.is-active {
    opacity: 1;
    pointer-events: auto;
  }
  .fv-cta .fv-cta-container {
    flex-direction: column;
  }
  .fv-cta .fv-cta-container p::after {
    content: none;
  }
  .question h3 {
    font-size: 12px;
  }
  .top-select .top-heading p:first-child {
    margin-bottom: 16px;
  }
  .top-container {
    padding: 40px 8px;
  }
  .top-select .top-heading {
    flex-direction: column;
  }
  .top-select h2::after {
    content: none;
  }
  .answer-btn:nth-child(1)::after,
  .answer-btn:nth-child(2)::after {
    content: none;
  }
  .top-select .top-heading {
    margin-bottom: 40px;
    text-align: center;
  }
  .top-heading {
    text-align: center;
  }
  .top-strength h2::after {
    content: none;
  }
  .top-strength {
    background: none;
    background-color: #f4fafd;
  }
  .top-strength li {
    display: flex;
    gap: 40px;
    padding: 24px 8px 24px 60px;
    background: url(../img/top-strength-text-res.png) no-repeat center/cover;
    position: relative;
  }
  .top-country ul,
  .top-path ul {
    gap: 16px;
  }
  .top-cost .cost-list {
    flex-direction: column;
    align-items: center;
    padding-inline: 24px;
  }
  .stories-list .stories-card {
    flex-direction: column;
  }
  .top-stories .stories-card:nth-of-type(1)::after {
    content: none;
  }
  .top-stories .stories-card:nth-of-type(2),
  .top-stories .stories-card:nth-of-type(3) {
    gap: 16px;
    width: 100%;
  }
  .top-stories .stories-img {
    width: 100%;
  }
  .top-stories .stories-text {
    width: 100%;
  }
  .top-stories .stories-card:nth-of-type(1) {
    width: 100%;
  }
  .top-stories .stories-card:nth-of-type(1) .stories-img {
    width: 100%;
  }
  .top-stories .stories-card:nth-of-type(1) .stories-text {
    width: 100%;
  }
  .cta {
    width: 90%;
    margin-block: 40px;
  }
  .cta::before {
    border-width: 25px 25px 0 0;
  }
  .cta::after {
    border-width: 0 0 25px 25px;
  }
  .cta .cta-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 30px 16px;
  }
  .cta .cta-wrapper > div:first-child {
    width: 100%;
    text-align: center;
  }
  .cta .cta-wrapper > div:first-child img {
    width: 100%;
    max-width: 500px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .cta .cta-text-container {
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .cta h3 {
    font-size: 20px;
    line-height: 1.5;
    word-break: break-all;
  }
  .cta h3 span:nth-of-type(2) {
    color: #f86f1f;
    display: inline-block;
  }
  .cta h3 span:nth-of-type(2)::before {
    content: none;
  }
  .cta p:nth-of-type(1) {
    font-size: 14px;
    padding-bottom: 4px;
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
  }
  .cta p:nth-of-type(2) {
    font-size: 12px;
    line-height: 1.6;
  }
  .cta .cta-btn {
    flex-direction: column;
    width: 100%;
    gap: 16px;
    padding: 0;
    margin: 0;
  }
  .cta .cta-btn li {
    width: 100%;
    min-width: auto;
    height: 54px;
  }
  .cta .cta-btn a {
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: block;
  }
  .cta .cta-btn a span {
    font-size: 11px;
  }
  .footer-container {
    padding: 40px;
  }
  .footer-container .footer-cta {
    display: none;
  }
  .footer-bottom ul li {
    padding-inline: 8px;
  }
  .footer-container {
    background: none;
    background-color: #054d70;
    padding: 16px;
  }
  .footer-main {
    width: 65%;
  }
  .footer-logo {
    width: 120px;
  }
  footer nav {
    width: 80%;
    gap: 8px;
  }
  footer nav a {
    font-size: 10px;
  }
  .footer-sns {
    gap: 8px;
  }
  .footer-sns li {
    width: 30px;
    height: 30px;
  }
  .footer-bottom {
    margin-top: 40px;
  }
  .point-container .feature-item {
    flex-direction: column;
    gap: 0;
  }
  .point-container .feature-img {
    width: 90%;
  }
  .point-container .feature-text {
    padding: 20px 40px;
  }
  .point-container .feature-text h3::after {
    content: none;
  }
  .country-detail-container {
    padding-inline: 40px;
  }
  .lead-inner {
    padding-inline: 80px;
  }
  .school-wrapper .school-card a {
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
  }
  .school-wrapper .school-card .school-img {
    width: 100%;
    padding-inline: 20px;
  }
  .school-wrapper .school-card .school-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    padding-inline: 16px;
    padding-bottom: 16px;
  }
  .school-wrapper .school-card .school-info ul {
    gap: 8px;
  }
  .school-wrapper .school-card .school-info ul li {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(8px, calc(8px + 4 * (100vw - 400px) / 1920), 12px);
    font-weight: 400;
    color: #383838;
    display: flex;
    align-items: center;
  }
  .school-wrapper .school-card .school-info ul li .icon {
    width: 20px;
    height: auto;
    margin-right: 8px;
  }
  .school-wrapper .school-card .school-info ul li p {
    display: none;
  }
  .info-gallery ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    padding-inline: 0px;
  }
  .info-gallery li {
    position: relative;
    border: 3px solid #054d70;
  }
  .info-gallery h3 {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
    font-weight: 700;
    color: #fcfcfc;
  }
  .faq-section .faq-item summary {
    display: block;
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 20px;
    color: #054d70;
    font-size: 16px;
    outline: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .faq-section .faq-item summary::before {
    content: "Q";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #fcfcfc;
    color: #f86f1f;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .faq-section .faq-item summary::after {
    content: "＋";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    color: #f86f1f;
    font-size: 20px;
    font-weight: bold;
  }
  .faq-section[open] {
    background-color: #f4fafd;
  }
  .faq-section[open] summary::after {
    content: "ー";
  }
  .faq-answer {
    padding: 0 60px 25px 70px;
    color: #004b75;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
  }
  .faq-answer::before {
    content: "A";
    position: absolute;
    left: 30px;
    top: 2px;
    width: 24px;
    height: 24px;
    background-color: #f86f1f;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .barista-ex .day-flow-schedule dl,
  .farm-ex .day-flow-schedule dl {
    display: block;
  }
  .barista-ex .day-flow-schedule dl dd,
  .farm-ex .day-flow-schedule dl dd {
    margin-bottom: 24px;
  }
  .barista-ex .day-flow-wrapper,
  .farm-ex .day-flow-wrapper {
    justify-content: center;
  }
  .barista-ex .day-flow-img li::before,
  .farm-ex .day-flow-img li::before {
    width: 60px;
    left: -30px;
    transform: translateY(-50%);
  }
  .barista-ex .day-flow-img li:nth-child(1),
  .farm-ex .day-flow-img li:nth-child(1) {
    align-self: flex-end;
  }
  .barista-ex .day-flow-schedule h3,
  .farm-ex .day-flow-schedule h3 {
    font-size: clamp(16px, calc(16px + 4 * (100vw - 400px) / 1920), 20px);
  }
  .cost-page .standard-text h3 {
    background-color: #054d70;
    border-radius: 999px;
  }
  .cost-page .standard-text h3::before {
    content: none;
  }
  .cost-page .breakdown-section {
    padding-block: 80px;
  }
  .cost-page .breakdown-section ul {
    flex-direction: column;
    gap: 40px;
  }
  .cost-page .breakdown-section ul li {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
  }
  .cost-page .breakdown-section .percentage-container {
    display: none;
  }
  .cost-page .breakdown-section .percentage-sp {
    display: block;
    margin-top: 24px;
  }
  .cost-page .breakdown-section .percentage-sp span {
    display: block;
    text-align: center;
    font-family: "Heebo", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #054d70;
  }
  .cost-page .breakdown-section .percentage-sp .bar {
    width: 100%;
    height: 12px;
    background: #e8e8e8;
    border-radius: 999px;
    overflow: hidden;
  }
  .cost-page .breakdown-section .percentage-sp .fill {
    height: 100%;
    border-radius: inherit;
  }
  .cost-page .breakdown-section .percentage-sp.blue .fill {
    width: 52%;
    background: #56b9ea;
  }
  .cost-page .breakdown-section .percentage-sp.yellow span {
    color: #faca0a;
  }
  .cost-page .breakdown-section .percentage-sp.yellow .fill {
    width: 28%;
    background: #faca0a;
  }
  .cost-page .breakdown-section .percentage-sp.orange span {
    color: #f86f1f;
  }
  .cost-page .breakdown-section .percentage-sp.orange .fill {
    width: 20%;
    background: #f86f1f;
  }
  .cost-page .breakdown-section .percentage-sp .percentage-sp-num {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .cost-page .breakdown-section .card-title::after {
    width: 40%;
    left: 30%;
  }
  .cost-page .breakdown-section ul li::before,
  .cost-page .breakdown-section ul li::after {
    left: 50%;
  }
  .plan-section .plan-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .plan-section .plan-card {
    width: calc(50% - 10px);
  }
  .plan-section .plan-card:last-child {
    width: calc(50% - 10px);
    width: 60%;
  }
  .step-section ol > li:nth-child(1)::after {
    top: 0;
    transform: translateY(-30%);
    right: 3%;
    width: 300px;
    height: 250px;
  }
  .step-section ol > li:nth-child(2)::after {
    top: 0;
    transform: translateY(-20%);
    right: 3%;
    width: 300px;
    height: 250px;
  }
  .step-section ol > li:nth-child(3)::after {
    top: 0;
    transform: translateY(-30%);
    right: 3%;
    width: 300px;
    height: 250px;
  }
  .step-section ol > li:nth-child(4)::after {
    top: 0;
    transform: translateY(10%);
    right: 3%;
    width: 300px;
    height: 250px;
  }
  .step-section ol > li:nth-child(5)::after {
    bottom: 0;
    transform: translateY(20%);
    right: 3%;
    width: 320px;
    height: 280px;
  }
  .column-page .blog-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  .top-stories .stories-card:nth-of-type(2) .stories-img,
  .top-stories .stories-card:nth-of-type(3) .stories-img {
    width: 100%;
    border: 1.5px solid #f86f1f;
    box-shadow: 10px 10px 0 rgba(248, 111, 31, 0.7);
  }
  .top-stories .stories-card:nth-of-type(2) .stories-text,
  .top-stories .stories-card:nth-of-type(3) .stories-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .top-stories .stories-card:nth-of-type(1) .stories-img {
    width: 100%;
    border: 1.5px solid #f86f1f;
    box-shadow: 10px 10px 0 rgba(248, 111, 31, 0.7);
  }
  .top-stories .stories-card:nth-of-type(1) .stories-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .top-stories .stories-card:nth-of-type(1) {
    position: relative;
    z-index: 1;
  }
  .top-stories .stories-card:nth-of-type(1)::after {
    position: absolute;
    content: "";
    background: url(../img/stories-first-textbox-new.png) no-repeat center/contain;
    width: 60%;
    height: 110%;
    top: 5%;
    left: 50%;
    z-index: -1;
  }
}
@media (max-width: 900px) {
  .support-page .main-support-wrapper {
    padding-block: 70px;
  }
  .support-page .main-support-wrapper .support-container {
    flex-direction: column;
    gap: 32px;
  }
  .support-page .main-support-wrapper .support-content {
    width: 75%;
    order: 2;
  }
  .support-page .main-support-wrapper .support-content .support-title {
    margin-bottom: 24px;
  }
  .support-page .main-support-wrapper .support-image-wrap {
    order: 1;
    max-width: 80%;
    margin-inline: auto;
  }
  .support-page .main-support-wrapper .support-title {
    text-align: center;
    margin-bottom: 24px;
  }
  .support-page .main-support-wrapper .left-margin,
  .support-page .main-support-wrapper .right-margin {
    margin: 0;
  }
  .support-page .main-support-wrapper .support-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .support-page .main-support-wrapper .support-card {
    padding: 16px;
  }
  .support-page .main-support-wrapper .support-card .card-text {
    margin-top: 6px;
  }
  .support-page .support-middle .support-container::after {
    content: none;
  }
  .study-abroad-flow-page .hero-section-jp {
    padding: 80px 20px 60px;
  }
  .study-abroad-flow-page .flow-line {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 32px;
    padding: 40px 20px;
    -webkit-overflow-scrolling: touch;
  }
  .study-abroad-flow-page .flow-line::-webkit-scrollbar {
    display: none;
  }
  .study-abroad-flow-page .flow-line .line {
    left: 70px;
    right: 70px;
    width: 630px;
    transform: none;
    top: 76px;
  }
  .study-abroad-flow-page .flow-line .step {
    flex: 0 0 auto;
    width: 90px;
  }
  .study-abroad-flow-page .flow-line .step .step-top {
    gap: 8px;
  }
  .study-abroad-flow-page .flow-line .step .step-circle {
    width: 60px;
  }
  .study-abroad-flow-page .flow-line .step .step-label {
    margin-left: 0;
    margin-top: 10px;
    font-size: 14px;
  }
  .study-abroad-flow-page .step-section ol > li {
    min-height: auto;
    padding: 40px;
  }
  .study-abroad-flow-page .step-section ol > li::after {
    content: none;
  }
  .study-abroad-flow-page .step-section .step-content {
    max-width: 100%;
  }
  .study-abroad-flow-page .step-section .step-content .title-wrapper {
    margin-bottom: 16px;
  }
  .study-abroad-flow-page .step-section .step-content h3.step-content {
    gap: 8px;
    align-items: center;
  }
  .study-abroad-flow-page .step-section .step-content > .step-text p,
  .study-abroad-flow-page .step-section .step-content > .step-text .step-subtext,
  .study-abroad-flow-page .step-section .step-content > .step-text .step-list {
    line-height: 1.8;
  }
  .study-abroad-flow-page .step-section .step-line-btn {
    position: static;
    margin-top: 24px;
    text-align: center;
  }
  .study-abroad-flow-page .step-section .step-line-btn a {
    min-width: 100%;
    max-width: 320px;
    height: 48px;
  }
}
@media (max-width: 500px) {
  .top-path ul,
  .top-country ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .country-detail-container {
    padding-inline: 0px;
  }
  .point-container .feature-text {
    padding: 0px 0px;
  }
  .country-detail-page .lead-inner {
    padding: 24px;
  }
  .school-wrapper .school-list {
    padding-left: 8px;
  }
  .school-list-page .p-country-card {
    padding: 10px 10px 10px 10px;
  }
  .barista-ex,
  .farm-ex {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0px;
  }
  .strength-page .strength-main .top-three-point {
    gap: 60px;
  }
  .strength-page .strength-main .top-three-point li {
    font-size: 14px;
  }
  .strength-page .strength-main .point-detail-article {
    flex-direction: column;
  }
  .strength-page .strength-main .point-detail-article li {
    width: 100%;
  }
  .strength-page .strength-main .point-detail article:nth-of-type(even) .point-detail-article {
    flex-direction: column;
  }
  .plan-section {
    padding-block: 80px;
  }
  .plan-section .section-title {
    margin-bottom: 32px;
  }
  .plan-section .plan-list {
    flex-direction: column;
    gap: 32px;
  }
  .plan-section .plan-card {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    padding: 32px 20px;
  }
  .plan-section .plan-card:nth-child(2)::before {
    width: 90%;
    top: -28px;
  }
  .plan-section .plan-card:nth-child(2)::after {
    top: 8px;
  }
  .cost-page .standard-text p {
    font-size: 10px;
  }
  .cost-page .plan-section .plan-list {
    gap: 60px;
  }
  .cost-page .plan-section .plan-card {
    width: 70%;
  }
  .column-page .country-detail-container {
    padding-inline: 24px;
  }
  .column-page .blog-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .column-page .blog-card-meta {
    gap: 6px;
    margin-bottom: 8px;
  }
}
@media (max-width: 400px) {
  .barista-ex,
  .farm-ex {
    padding: 40px 0px;
  }
  .barista-ex .day-flow-wrapper,
  .farm-ex .day-flow-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
  }
  .barista-ex .day-flow-schedule,
  .farm-ex .day-flow-schedule {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .barista-ex .day-flow-schedule h3,
  .farm-ex .day-flow-schedule h3 {
    margin-bottom: 30px;
  }
  .barista-ex .day-flow-img,
  .farm-ex .day-flow-img {
    width: 100%;
  }
  .barista-ex .day-flow-img ul,
  .farm-ex .day-flow-img ul {
    width: 100%;
  }
  .barista-ex .day-flow-img ul::before, .barista-ex .day-flow-img ul::after,
  .farm-ex .day-flow-img ul::before,
  .farm-ex .day-flow-img ul::after {
    display: none;
  }
  .barista-ex .day-flow-img li,
  .farm-ex .day-flow-img li {
    width: 100%;
    border-left: none;
    border-right: none;
  }
  .barista-ex .day-flow-img li:nth-child(1), .barista-ex .day-flow-img li:nth-child(2),
  .farm-ex .day-flow-img li:nth-child(1),
  .farm-ex .day-flow-img li:nth-child(2) {
    align-self: center;
  }
  .barista-ex .day-flow-img li::before,
  .farm-ex .day-flow-img li::before {
    display: none;
  }
  .barista-ex .day-flow-voice,
  .farm-ex .day-flow-voice {
    border-radius: 0;
    margin: 0;
  }
  .barista-ex .day-flow-schedule dd:nth-of-type(2), .barista-ex .day-flow-schedule dd:nth-of-type(5) {
    padding-bottom: 0;
  }
  .barista-ex .day-flow-schedule dd:nth-of-type(2)::after, .barista-ex .day-flow-schedule dd:nth-of-type(5)::after {
    display: none;
  }
  .farm-ex .day-flow-schedule dd:nth-of-type(3), .farm-ex .day-flow-schedule dd:nth-of-type(5) {
    padding-bottom: 0;
  }
  .farm-ex .day-flow-schedule dd:nth-of-type(3)::after, .farm-ex .day-flow-schedule dd:nth-of-type(5)::after {
    display: none;
  }
  .result::after {
    width: 15%;
  }
  .result::before {
    width: 15%;
  }
  .top-path .path-cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .more-btn {
    height: 20px;
  }
  .more-btn a::after {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid #fff;
  }
  .p-filter-nav__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .trouble-section .anxiety-list {
    gap: 0px;
  }
  .path-popular-country .country-detail-container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 0px;
  }
}/*# sourceMappingURL=main.css.map */