@charset "UTF-8";
/* =========================
   内部リンク　位置
========================= */
#menu {
  scroll-margin-top: 150px;
}

#access {
  scroll-margin-top: 150px;
}

#final_cta {
  scroll-margin-top: -250px;
}

/* =========================
   banner
========================= */
.cta-banner{
  width: 90%;
  margin: 0 auto 90px auto;
}

.cta-banner img{
  width: 100%;
  height: auto;
  display: block;
}

/* CTA 全体 */
.cta-wrap{
  display: flex;
  justify-content: center;
  margin: 64px 0;
}


/* =========================
   cta-button
========================= */
/* ボタン本体 */
.cta-btn{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 570px;
  padding: 20px 24px;

  background: #FFC042;
  color: #4F6B6B;
  border-radius: 999px;

  text-decoration: none;
  text-align: center;

  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    sans-serif;

  transition: transform .2s ease, box-shadow .2s ease;
}

/* 上の小さな文言 */
.cta-btn__sub{
  font-size: 24px;
  letter-spacing: .05em;
}

/* メイン文言 */
.cta-btn__main{
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

/* =========================
   link-button
========================= */
.link_btn {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 24px;
  border-radius: 999px;

  border: 1px solid #9bb7b1;   /* トーン抑えめ */
  color: #365f5b;
  font-weight: 500;
  text-decoration: none;

  transition: 
    background-color .2s ease,
    color .2s ease,
    border-color .2s ease;
}

.btn-arrow {
  font-size: 1.1em;
  transition: transform .2s ease;
}

.btn-outline:hover {
  background-color: #e9f6f3;
  border-color: #2a9d90;
  color: #2a9d90;
}

.btn-outline:hover .btn-arrow {
  transform: translateX(4px);
}


/* =========================
   Header
========================= */

/* 変数（色はあなたのパレットに寄せる） */
:root{
  --brand: #2A9D90;
  --brand-dark: rgba(55,171,157,1);;
  --ink: #123;
  --muted: rgba(55,171,157,1);
  --bg: #fff;
  --line: rgba(55,171,157,1);
  --shadow: 0 8px 20px rgba(0,0,0,.08);
  --header-h: 150px; /* 実際のヘッダー高さに合わせる */
}

/* ヘッダー本体 */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: var(--bg);
  box-shadow: var(--shadow);
}

/* コンテナ */
.site-header__inner{
  max-width: 1200px;   /* ← ここ */
  margin: 0 auto;      /* ← 中央寄せ */
  padding: 10px 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 左：ブランド */
.site-header__brand{
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  min-width: 100px;
}

.site-header__brand-icon{
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.site-header__brand-text{
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.site-header__brand-sub{
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .02em;
  white-space: nowrap;
}

.site-header__brand-name{
  font-size: 24px;
  font-weight: normal;
  color: var(--muted);
  letter-spacing: .02em;
  white-space: nowrap;
}

/* 中央：バッジ */
.site-header__badge{
  display: grid;
  text-align: center;
  color: var(--brand);
  padding: 7px 16px;
  white-space: nowrap;
}

.site-header__badge-top{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: -5px;
  transform: translateY(2px);
}

.site-header__badge-main{
  font-size: 40px;
  font-weight: bold;
  letter-spacing: .02em;
  margin-top: 0;
}

.site-header__badge-main .up,
.site-header__badge-main .down{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    background-color: var(--brand);
    margin-right: -5px;
}

.site-header__badge-main .up{
    position: relative;
    top: -5px;
}

.site-header__badge-main .down{
    position: relative;
    top: 5px;
}

.site-header__badge-main .down:last-child{
    margin-right: 2px;
}

.emphasis{
  text-emphasis: dot;
  text-emphasis-position: over;
  text-emphasis-offset: 2px;
}

/* 右：アクション */
.site-header__actions{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

/* 予約ボタン */
.site-header__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 200px;
  padding: 0 auto;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bolder;
  font-size: 146x;
  box-shadow: 0 8px 18px rgba(42,157,144,.22);
  transition: transform .08s ease, background .15s ease;
  white-space: nowrap;
}

.site-header__cta:hover{
  background: var(--brand-dark);
}
.site-header__cta:active{
  transform: translateY(1px);
}

/* 電話ブロック */

.site-header__telbox{
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* 受付時間は高さに含めない（上に浮かせる） */
.site-header__hours{
  position: absolute;
  top: -18px;          /* ← ここで上下位置を調整 */
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  color: var(--brand);
}

.site-header__tel-btn{
  height: 70px;        /* ← 予約ボタンと同じ高さにする */
  width: 200px;
  padding: 0 auto;
  border: 3px solid var(--brand);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  color: var(--brand);

  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.1;
}

.site-header__tel-label{
  font-size: 16px;
}

.site-header__tel-number{
  font-size: 24px;
}

/* ハンバーガーボタン */
.site-header__menu{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: background .15s ease, transform .08s ease;
}

.site-header__menu:active{
  transform: translateY(1px);
}

.site-header__menu-lines{
  display: inline-grid;
  gap: 10px;
}
.site-header__menu-lines > span{
  display: block;
  width: 50px;
  height: 5px;
  background: rgba(55,171,157,1);
  border-radius: 999px;
  transition: transform .18s ease, opacity .18s ease;
}

/* 開いた時の×印（JSで aria-expanded=true を付ける） */
.site-header__menu[aria-expanded="true"] .site-header__menu-lines > span:nth-child(1){
  transform: translateY(15px) rotate(45deg);
}
.site-header__menu[aria-expanded="true"] .site-header__menu-lines > span:nth-child(2){
  opacity: 0;
}
.site-header__menu[aria-expanded="true"] .site-header__menu-lines > span:nth-child(3){
  transform: translateY(-15px) rotate(-45deg);
}

/* =========================
   Drawer menu (mobile)
   ========================= */

.site-drawer{
  border-top: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 950;
}

.site-drawer__list{
  list-style: none;
  margin: 0;
  padding: 10px 14px 16px;
  display: grid;
  gap: 8px;
}

.site-drawer__list a{
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(0,0,0,.02);
}

.site-drawer__list a:hover{
  background: rgba(0,0,0,.04);
}

/* 背景（モーダルっぽくするなら使う） */
.site-drawer__backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index:900;
}

/* =========================
   帯
   ========================= */
.page-title {
  background-color: #3aa89b; /* ヘッダーと同系色 */
  color: #fff;
}

.page-title__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 16px;
  text-align: center;
}

.page-title__heading {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
}

.page-title__sub {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.2em;
  opacity: 0.9;
}

/* =========================
   footer
========================= */
.footer{
  border-top: 1px solid #625449;
  margin-top: 50px;
}

/* コンテナ */
.footer_inner{
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 右：ナビ（3列） */
.footer_nav{
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: end;
  column-gap: 34px;
  row-gap: 6px;
}

.footer_navcol{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer_nav a{
  font-size: 12.5px;
  color: rgba(54,95,91,.85);
  text-decoration: none;
}

.footer_nav a:hover{
  text-decoration: underline;
}

/* コピーライト */
.footer_copy{
  margin: 16px 0 0;
  text-align: center;
  font-size: 12px;
  color: rgba(54,95,91,.7);
}


/* =========================
   Responsive
   ========================= */

/* タブレット以下 */
@media (max-width: 1024px){
  /* 左：ブランド */
  .site-header__brand-icon{
    width: 30px;
    height: 30px;
  }

  .site-header__brand-sub{
    font-size: 8px;
  }

  .site-header__brand-name{
    font-size: 16px;
  }

  /* 中央：バッジ */
  .site-header__badge-top{
    font-size: 12px;
  }

  .site-header__badge-main{
    font-size: 24px;
  }

  .site-header__badge-main .up,
  .site-header__badge-main .down{
      width: 35px;
      height: 35px;
  }

  .site-header__badge-main .up{
      position: relative;
      top: -3px;
  }

  .site-header__badge-main .down{
      position: relative;
      top: 3px;
  }

  .site-header__badge-main .down:last-child{
      margin-right: 0px;
  }

  /* 右：アクション */
  .site-header__actions{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
  }

  /* 予約ボタン */
  .site-header__cta{
    height: 50px;
    width: 150px;
    font-size: 12px;
  }

  /* 電話ブロック */

  .site-header__telbox{
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  /* 受付時間は高さに含めない（上に浮かせる） */
  .site-header__hours{
    font-size: 12px;
  }

  .site-header__tel-btn{
    height: 50px;        /* ← 予約ボタンと同じ高さにする */
    width: 150px;
  }

  .site-header__tel-label{
    font-size: 12px;
  }

  .site-header__tel-number{
    font-size: 16px;
  }


  /* =========================
   cta-button
  ========================= */
  /* ボタン本体 */
  .cta-btn{
    width: 400px;
  }

  /* 上の小さな文言 */
  .cta-btn__sub{
    font-size: clamp(16px, 2vw, 24px);
    letter-spacing: .05em;
  }

  /* メイン文言 */
  .cta-btn__main{
    font-size: clamp(24px, 4vw, 48px);
  }

  /* =========================
   footer
  ========================= */
  /* コンテナ */
  .footer_inner{
    max-width: 95%;
    margin: 0 auto;
  }

}


/* スマホ以下 */
@media (max-width: 768px){
  .site-header__telbox{
    display: none;
  }

  /* =========================
    footer
  ========================= */
  /* バッジ消し */
  .site-header__badge{
    display: none;
  }

  /* コンテナ */
  .footer_inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .footer .site-header__brand{
    margin: 20px 0;
  }

}

/* さらに狭い：バッジを非表示にして速度優先（必要なら） */
@media (max-width: 610px){
  .site-header__badge{ display:none; }

  /* =========================
   cta-button
  ========================= */
  /* ボタン本体 */
  .cta-btn{
    width: 250px;
  }

  /* 予約ボタン */
  .site-header__cta{
    height: 40px;
    width: 120px;
    font-size: 10px;
  }

  /* ハンバーガーボタン */
  .site-header__menu{
    width: 30px;
    height: 30px;
  }

  .site-header__menu-lines{
    gap: 8x;
  }
  .site-header__menu-lines > span{
    width: 40px;
    height: 3px;
  }

  /* 開いた時の×印（JSで aria-expanded=true を付ける） */
.site-header__menu[aria-expanded="true"] .site-header__menu-lines > span:nth-child(1){
  transform: translateY(13px) rotate(45deg);
}

.site-header__menu[aria-expanded="true"] .site-header__menu-lines > span:nth-child(3){
  transform: translateY(-13px) rotate(-45deg);
}

}