@charset "UTF-8";
/* AUTHOR:t-styles */

/* =========================
   Base (SP first)
========================= */
.anchor{
  scroll-margin-top: 50px;
}

@media (min-width: 768px) {
.anchor{
  scroll-margin-top: 170px;
}
}




body.no-scroll{ overflow:hidden; }

/* ヘッダー固定（SP基準） */
.site-header{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

/* SPはヘッダー高さ70px */
.site-header{
  height: 70px;
}

/* 本文の食い込み防止（SP） */
body{
  padding-top: 70px;
}

/* 上段（SPは ロゴ左 / ハンバーガー右） */
.header-inner{
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  gap: 12px;
}

/* ロゴ */
.header-logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  max-width: calc(100% - 70px); /* ハンバーガー分を避ける */
}
.header-logo img{
  display: block;
  height: 40px; /* SPのロゴ */
  width: auto;
}

/* SP/Tabletは PC要素を隠す */
.header-right-wrap{ display:none; }
.pc-nav{ display:none; }

/* ハンバーガー */
.menu-btn{
  appearance:none;
  -webkit-appearance:none;
  border:0;
  background:transparent;
  padding: 6px 6px;
  text-align:center;
  line-height:1;
  flex: 0 0 auto;
}
.menu-line{
  display:block;
  width:28px;
  height:3px;
  background: #093353;
  margin:5px auto;
  border-radius:999px;
}
.menu-label{
  display:block;
  margin-top:4px;
  font-size:10px;
  color: #093353;
  letter-spacing: .05em;
}

/* =========================
   SP Menu Overlay
========================= */
.sp-menu{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 2000;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.sp-menu.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sp-menu-inner{
  position:absolute;
  inset:0;
  padding-top: 90px;
  background: rgba(20, 40, 70, 0.88); /* 透過navy */
	overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.menu-close{
  position:absolute;
  top:18px;
  right:18px;
  width:48px;
  height:48px;
  border:0;
  background:transparent;
  color:#fff;
  font-size:36px;
  line-height:1;
}
.sp-menu-list{
  list-style:none;
  margin:0;
  padding:0;
  text-align:center;
}
.sp-menu-list li{
  border-top: 1px solid rgba(255,255,255,0.25);
}
.sp-menu-list li:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.25);
}
.sp-menu-list a{
  display:block;
  padding:18px 12px;
  color:#fff;
  text-decoration:none;
  font-size:18px;
  letter-spacing:.04em;
}
.sp-menu-list a:hover,
.sp-menu-list a:active{
  background-color:#6397AB;
}


/* =========================
   PC (1024px〜)
========================= */
@media (min-width: 1024px){

  /* PCは上段+下段になるので高さをautoに */
  .site-header {
    position: fixed;
	  min-height: 170px; 
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    border-bottom: none;
  }

  /* PCは本文の余白をヘッダー分だけ確保（必要なら微調整） */
  body{
    padding-top: 170px; /* ←上段(約110) + 下段(約60)想定 */
  }

  /* 上段の見た目：中央寄せ・余白 */
  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* PCはハンバーガー非表示 */
  .menu-btn{
    display:none;
  }

  /* PCはロゴ大きめ */
  .header-logo img{
    height: 90px;
  }

  /* PC右側（電話・案内）を表示 */
  .header-right-wrap{
    display:block;
  }

  /* ここが「横並び」本体 */
  .header-right{
    display:flex;
    flex-wrap: nowrap;          /* ←縦落ち防止 */
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    list-style:none;
    margin:0;
    padding:0;
  }
  .header-right li{ margin:0; }

  /* 電話ブロック */
  .header-tel{
    white-space: nowrap;
	  line-height: 1.2;
  }
  .tel-icon{
    font-size: 2.4rem;
    color: #093353;
    vertical-align: 0em;
    margin-right: 6px;
  }
  .tel-num{
    font-size: 3.2rem;
    font-weight: 700;
    color: #093353;
    letter-spacing: 0.02em;
  }
  .header-tel a{
    text-decoration:none;
  }
  .text_right{
    margin: 4px 0 0;
    text-align: right;
    color: #093353;
  }

  /* 予約案内ブロック */
  .header-yoyaku{
    text-align: center;
  }
  .header-text{
    margin-bottom: 10px;
    color: #093353;
  }
  .header-badge{
    display:inline-block;
    padding: 10px 18px;
    border: 2px solid #093353;
    border-radius: 6px;
    color: #093353;
}
	
  /* PCでは横並びナビを表示 */
  .pc-nav {
    margin-top: 16px;
    max-width: 1200px;      /* ★枠を持たせる */
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;    /* header-inner と揃える */
  }
  /* PCではハンバーガーを消す */
  .menu-btn {
    display: none;
  }
  .pc-nav-list {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
  }

  .pc-nav-list a {
    position: relative;          /* ← 下線用に必須 */
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    padding-bottom: 6px;         /* 下線との距離 */
  }

  /* 下線（初期は見えない） */
  .pc-nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #093353;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }

  /* ホバー時に下線表示 */
  .pc-nav-list a:hover::after {
    transform: scaleX(1);
  }

}











/* =========================
   SPメニュー内 電話
========================= */
.sp-menu-tel{
  margin-top: 30px;
  padding: 20px 16px 30px;
  text-align: center;
}

.sp-menu-tel a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;

  padding: 14px 22px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 999px;
}

.sp-menu-tel a:active{
  background: rgba(255,255,255,0.15);
}

.sp-tel-icon{
  font-size: 24px;
  filter: brightness(0) invert(1);
}

.sp-tel-text{
  letter-spacing: 0.05em;
}


/* ===== SPメニュー内：電話エリア ===== */
.sp-tel-area{
  margin-top: 24px;
  text-align: center;
}

/* 「お問合せはこちら」 */
.sp-tel-label{
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  color: #ffffff;
  opacity: 0.85;
}

/* 電話ボタン */
.sp-tel-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
}

/* 電話アイコン（白） */
.sp-tel-icon{
  font-size: 22px;
  filter: brightness(0) invert(1);
}

/* 電話番号 */
.sp-tel-num{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* タップ時の反応 */
.sp-tel-btn:active{
  opacity: 0.8;
  transform: scale(0.98);
}


/*追加 */


