@charset "UTF-8";
/* =========================================================
   共通パーツ
   ローディング / ヘッダー / フッター / 下層ヒーロー /
   セクション土台 / ボタン / CTA帯 / テキストロゴ ほか
   ※ ページ固有CSSより前に読み込む土台
   ========================================================= */


/* =========================================================
   テキストロゴ（画像ロゴ未設定時のフォールバック）
   ========================================================= */
.txt-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  color: #fff;
}

.txt-logo b {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: .06em;
}

.txt-logo small {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: .14em;
  margin-top: 4px;
  color: rgba(255, 255, 255, .8);
}

.txt-logo.sm b     { font-size: 22px; }
.txt-logo.sm small { font-size: 8.5px; margin-top: 3px; }
.txt-logo.load b     { font-size: 32px; }
.txt-logo.load small { font-size: 11px; margin-top: 6px; }


/* =========================================================
   画像プレースホルダ（実素材を入れるまで）
   ========================================================= */
.ph-img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: var(--ph);
  position: relative;
}

.ph-img::after {
  content: "PHOTO";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .25);
  font-family: 'Chakra Petch', sans-serif;
  font-size: 12px;
  letter-spacing: .2em;
}


/* =========================================================
   LOADING
   ========================================================= */
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle at 50% 42%, #12305e, var(--navy-deep) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}

/* class="active" が付いている間だけ表示（JSでactiveを外すとフェードアウト） */
#loading:not(.active) {
  opacity: 0;
  visibility: hidden;
}

#loading .loading_text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.load-star {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 22px;
}

.load-star .core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd27a, var(--amber));
  box-shadow: 0 0 20px 5px rgba(243, 146, 0, .6);
  animation: pulseCore 1.6s ease-in-out infinite;
}

.load-star .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--sky);
  border-right-color: var(--blue);
  animation: spin 1.4s linear infinite;
}

.load-star .ring.r2 {
  inset: 14px;
  border-top-color: rgba(255, 255, 255, .5);
  border-right-color: transparent;
  animation-duration: 2.1s;
  animation-direction: reverse;
}

.loadinglogo img { width: 150px; opacity: .9; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulseCore {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.35); opacity: .75; }
}


/* =========================================================
   HEADER（PC）
   ========================================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
}

/* ページ最上部：透明。ヒーロー上に溶け込む */
#header_pc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: linear-gradient(to bottom, rgba(10, 28, 61, .35), transparent);
  transition: padding .45s ease, background .45s ease, box-shadow .45s ease, border-color .45s ease;
  border-bottom: 1px solid transparent;
}

/* スクロール後：すりガラスの紺 */
#header.scrolled #header_pc {
  padding: 10px 48px;
  background: rgba(10, 28, 61, .82);
  backdrop-filter: blur(12px) saturate(1.25);
  -webkit-backdrop-filter: blur(12px) saturate(1.25);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .28);
}

.header_logo img {
  width: 158px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .45));
  transition: width .45s ease;
}

#header.scrolled .header_logo img { width: 146px; }

/* 上部（透明時）はロゴ・文字に軽い影で可読性確保 */
#header_pc .txt-logo b,
#header_pc .header_menu a { text-shadow: 0 1px 10px rgba(0, 0, 0, .3); }
#header.scrolled #header_pc .txt-logo b,
#header.scrolled #header_pc .header_menu a { text-shadow: none; }

.header_menu ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.header_menu a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  position: relative;
  padding-bottom: 6px;
  transition: color .3s;
}

/* 中央から伸びる下線 */
.header_menu a:not(.h-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--amber));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s cubic-bezier(.6, 0, .2, 1);
}

.header_menu a:not(.h-cta):hover::after,
.header_menu a.current::after { transform: scaleX(1); }

.header_menu a:not(.h-cta):hover { color: var(--sky); }
.header_menu a.current { color: var(--sky); }

/* CTA：オレンジのピル＋シャイン */
.header_menu a.h-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
  padding: 11px 26px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(120deg, var(--amber), var(--amber-deep));
  box-shadow: 0 6px 18px rgba(243, 146, 0, .42);
  overflow: hidden;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}

.header_menu a.h-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}

.header_menu a.h-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(243, 146, 0, .52);
}

.header_menu a.h-cta:hover::after { left: 140%; }

/* PCではSPヘッダー非表示 */
#header_sp { display: none; }


/* =========================================================
   HEADER（SP）
   ========================================================= */
@media screen and (max-width: 768px) {
  #header_pc { display: none; }

  #header_sp { display: block; }

  .header_sp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding: 14px 20px;
    background: linear-gradient(to bottom, rgba(10, 28, 61, .4), transparent);
    border-bottom: 1px solid transparent;
    transition: background .45s ease, padding .45s ease, border-color .45s ease;
  }

  #header.scrolled .header_sp {
    padding: 10px 20px;
    background: rgba(10, 28, 61, .85);
    backdrop-filter: blur(12px) saturate(1.25);
    -webkit-backdrop-filter: blur(12px) saturate(1.25);
    border-bottom-color: var(--line);
  }

  .header_sp .header_logo img {
    width: 140px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .45));
  }

  /* SP下部固定バー */
  .header_sp_bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    background: linear-gradient(160deg, rgba(10, 28, 61, .98), rgba(18, 58, 114, .98));
    border-top: 1px solid var(--line);
  }

  .header_sp_bottom > ul {
    display: flex;
  }

  .header_sp_bottom > ul > li {
    flex: 1;
    text-align: center;
  }

  /* 下部バーの各項目を同じ高さ・中央揃えに統一（ズレ防止） */
  .header_sp_bottom a,
  .header_sp_bottom .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 0;
    color: #fff;
    cursor: pointer;
  }

  .header_sp_bottom .header_icon,
  .header_sp_bottom .bars {
    height: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header_sp_bottom .header_icon { font-size: 18px; }

  .header_sp_bottom .bars span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: .3s;
  }

  .header_sp_bottom .bars span + span { margin-top: 5px; }

  .header_sp_bottom p {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 9px;
    letter-spacing: .08em;
    margin: 0;
    line-height: 1;
    color: rgba(255, 255, 255, .8);
  }

  /* ハンバーガー → ✕ */
  .hamburger.active .bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active .bars span:nth-child(2) { opacity: 0; }
  .hamburger.active .bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* 全画面メニュー */
  .globalMenuSp {
    position: fixed;
    inset: 0;
    z-index: 850;
    background: linear-gradient(160deg, rgba(10, 28, 61, .98), rgba(18, 58, 114, .98));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
  }

  .globalMenuSp.active {
    opacity: 1;
    visibility: visible;
  }

  /* メニューを閉じる（×）ボタン */
  .menu-close {
    position: absolute;
    top: 20px;
    right: 22px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: transform .3s, color .3s;
  }

  .menu-close:hover { color: var(--amber); transform: rotate(90deg); }

  .globalMenuSp .ul a {
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 12px 0;
    display: block;
    text-align: center;
  }

  .globalMenuSp .ul a.h-cta {
    margin-top: 14px;
    background: var(--amber);
    padding: 14px 40px;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(243, 146, 0, .4);
  }

  .globalMenuSp .header_sp_policy {
    margin-top: 22px;
  }

  .globalMenuSp .header_sp_policy a {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    letter-spacing: .04em;
  }
}


/* =========================================================
   下層ヒーロー（.phero）
   ========================================================= */
.phero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  padding-top: 70px;
}

.phero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .4;
}

.phero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 28, 61, .9), rgba(18, 58, 114, .55));
}

.phero .stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.phero .stars i {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  animation: tw 3s ease-in-out infinite;
}

@keyframes tw {
  0%, 100% { opacity: .15; }
  50%      { opacity: .7; }
}

.phero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--pc);
  margin: 0 auto;
  padding: 40px;
  width: 100%;
}

.phero-en {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 7vw, 72px);
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
}

.phero-ja {
  display: inline-block;
  margin-top: 14px;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: .14em;
  font-size: 14px;
  position: relative;
  padding-left: 34px;
}

.phero-ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: var(--amber);
}

/* パンくず */
.crumb {
  position: relative;
  z-index: 2;
  max-width: var(--pc);
  margin: 0 auto;
  padding: 14px 40px;
  font-size: 12px;
  color: var(--gray);
}

.crumb a { color: var(--gray); }
.crumb a:hover { color: var(--amber); }


/* =========================================================
   セクション土台
   ========================================================= */
.sec {
  padding: 88px 40px;
  position: relative;
}

.wrap        { max-width: var(--pc); margin: 0 auto; }
.wrap-narrow { max-width: 820px; margin: 0 auto; }

.lead-head { margin-bottom: 44px; }

.lead-head .en-h {
  font-family: 'Sora', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.02em;
}

.lead-head .ja-h {
  display: inline-block;
  margin-top: 12px;
  color: var(--amber);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .12em;
  position: relative;
  padding-left: 34px;
}

.lead-head .ja-h::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: var(--amber);
}

.lead-head.center { text-align: center; }
.lead-head.center .ja-h { padding-left: 0; padding-top: 12px; }
.lead-head.center .ja-h::before { left: 50%; top: 0; transform: translateX(-50%); width: 40px; }


/* =========================================================
   ボタン
   ========================================================= */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  transition: transform .3s, box-shadow .3s, color .3s;
}

.btn i { transition: transform .35s; }

.btn-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 8px 24px rgba(243, 146, 0, .4);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(243, 146, 0, .5);
}

.btn-primary:hover::before { left: 130%; }
.btn-primary:hover i { transform: translateX(5px); }

.btn-white {
  background: #fff;
  color: var(--navy-deep);
}

.btn-white:hover { transform: translateY(-3px); }

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, .55);
  color: #fff;
  z-index: 1;
}

.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.6, 0, .1, 1);
}

.btn-ghost:hover {
  color: var(--navy-deep);
  transform: translateY(-3px);
  border-color: #fff;
}

.btn-ghost:hover::before { transform: scaleX(1); }
.btn-ghost:hover i { transform: translateX(5px); }


/* =========================================================
   CTA帯（各下層の末尾）
   ========================================================= */
.cta-band {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy) 55%, var(--blue));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 184, 232, .22), transparent 70%);
}

.cta-band .inner {
  position: relative;
  z-index: 2;
  max-width: var(--pc);
  margin: 0 auto;
}

.cta-band h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .03em;
}

.cta-band p {
  margin-top: 16px;
  color: rgba(255, 255, 255, .85);
  font-size: 15px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}


/* =========================================================
   フッター お問い合わせ帯
   ========================================================= */
#footer_contact {
  position: relative;
  padding: 80px 40px;
  background-color: var(--navy-deep);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* 背景画像がある時のオーバーレイ */
#footer_contact .footer_contact_bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 28, 61, .82), rgba(10, 28, 61, .9));
}

.footer_contact_contents {
  position: relative;
  z-index: 2;
  max-width: var(--pc);
  margin: 0 auto;
}

.footer_contact_contents .headline h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -.02em;
}

.footer_contact_contents .headline p {
  color: var(--amber);
  font-weight: 600;
  letter-spacing: .14em;
  margin-top: 6px;
}

.footer_contact_content {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 34px 0 22px;
}

.footer_contact_tel button,
.footer_contact_form button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border: none;
  border-radius: 3px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s, background .3s;
}

.footer_contact_tel .pc,
.footer_contact_tel .sp button {
  background: #fff;
  color: var(--navy-deep);
}

.footer_contact_tel .sp { display: none; }

.footer_contact_form button {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 8px 24px rgba(243, 146, 0, .4);
}

.footer_contact_form button:hover {
  transform: translateY(-3px);
  background: var(--amber-deep);
}

.footer_contact_contents .text {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  margin-top: 4px;
}

.footer_contact_contents .text.warn {
  display: inline-block;
  margin-top: 10px;
  color: var(--sky);
  font-weight: 600;
}


/* =========================================================
   フッター本体
   ========================================================= */
footer {
  background: var(--navy-deep);
  color: #fff;
  padding: 52px 40px 26px;
  border-top: 1px solid var(--line);
}

.footer_menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: center;
  max-width: var(--pc);
  margin: 0 auto 28px;
}

.footer_menu a {
  font-size: 14px;
  color: rgba(255, 255, 255, .82);
}

.footer_menu a:hover { color: var(--amber); }

.copyright {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.copyright p {
  font-family: 'Chakra Petch', sans-serif;
  letter-spacing: .08em;
}


/* =========================================================
   ページトップボタン
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 800;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: #fff;
  border-radius: 4px;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(243, 146, 0, .4);
  transition: .3s;
}

.back-to-top:hover { background: var(--amber-deep); transform: translateY(-3px); }

@media screen and (max-width: 768px) {
  /* SP：下部固定バーの上に「上に戻る」ボタンを表示 */
  .back-to-top {
    right: 16px;
    bottom: 70px;
  }

  /* SP下部固定バーと重ならないよう本体に余白 */
  body { padding-bottom: 58px; }
}


/* =========================================================
   レスポンシブ（セクション余白）
   ========================================================= */
@media screen and (max-width: 1024px) {
  .sec { padding: 70px 28px; }
  #header_pc { padding: 14px 22px; }
}

@media screen and (max-width: 768px) {
  .phero { min-height: 280px; padding-top: 60px; }
  .phero-inner { padding: 30px 24px; }
  .phero-en { font-size: clamp(38px, 13vw, 52px); }
  .crumb { padding: 12px 24px; }

  .sec { padding: 60px 24px; }
  .lead-head { margin-bottom: 34px; }
  .lead-head .en-h { font-size: clamp(26px, 8vw, 34px); }

  .cta-btns { flex-direction: column; gap: 12px; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  #footer_contact { padding: 60px 24px; }
  .footer_contact_tel .pc { display: none; }
  .footer_contact_tel .sp { display: inline-block; }
  .footer_contact_content { flex-direction: column; gap: 12px; }
  .footer_contact_tel .sp button,
  .footer_contact_form button { width: 100%; justify-content: center; }

  footer { padding: 42px 24px 22px; }
}

@media screen and (max-width: 400px) {
  .sec { padding: 52px 20px; }
  .phero-inner { padding: 26px 20px; }
}


/* =========================================================
   プライバシーポリシー本文
   ========================================================= */
.policy_contents h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 32px 0 10px;
  padding-left: 14px;
  border-left: 4px solid var(--amber);
  line-height: 1.5;
}

.policy_contents h2:first-child { margin-top: 0; }

.policy-intro {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.95;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e3e8ef;
}


/* =========================================================
   画像拡大モーダル（ライトボックス）
   ========================================================= */
.img-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 28, 61, .92);
  backdrop-filter: blur(4px);
  cursor: zoom-out;
}

.img-modal.on {
  display: flex;
  animation: modalFade .25s ease;
}

@keyframes modalFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.img-modal img {
  max-width: 92%;
  max-height: 88%;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}

.img-modal-close {
  position: absolute;
  top: 18px;
  right: 26px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  border-radius: 50%;
  transition: background .3s;
}

.img-modal-close:hover { background: rgba(255, 255, 255, .12); }

.policy_contents p {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.95;
}
