@charset "UTF-8";
/* CSS Document */

/* =========================
   60分コース全体
========================= */

.course-text {
  font-family: "Noto Serif JP", serif;
  color: #2e2e2e;
  line-height: 1.75;
}

/* -------------------------
   説明文（余白を詰める）
-------------------------- */

.course-text .lead {
  font-size: 15px;
  margin: 0 0 4px 0;
}

.course-text .note {
  font-size: 12px;
  color: #777;
  margin: 0 0 10px 0;
}

/* -------------------------
   施術内容ラベル
-------------------------- */

.course-text .label {
  font-size: 1.6em;
  font-weight: 900;
  color: #5a3b1e;
  letter-spacing: 0.08em;
  margin: 8px 0 6px 0;
}

.course-text .sub-label {
  font-size: 0.6em;
  font-weight: 500;
  color: #8a6a4a;
  margin-left: 6px;
}

/* -------------------------
   インライン施術リスト
-------------------------- */

.inline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.7;
}

.inline-list li {
  display: inline;
  font-size: 14px;
  margin-right: 14px;
}

.inline-list li::before {
  content: "・";
  color: #b89c5a;
}

/* =========================
   料金ライン（完全中央）
========================= */

.menu-price {
  display: flex;
  align-items: center;      /* ← 完全中央揃え */
  margin: 18px 0 8px 0;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
}

/* 60min */
.menu-time {
  font-size: 24px;          /* ← 大きく */
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: #333;
}

/* ドットライン（中央安定） */
.menu-dot {
  flex: 1;
  border-bottom: 2px dotted #b89c5a;
  margin: 0 16px;
  height: 0;                /* ← ズレ防止 */
}

/* 料金 */
.menu-yen {
  font-size: 30px;          /* ← さらに強調 */
  font-weight: 900;
  color: #4a2c14;
  line-height: 1;
  white-space: nowrap;
}

/* =========================
   モバイル最適化
========================= */

@media (max-width: 768px) {

  .menu-time {
    font-size: 20px;
  }

  .menu-yen {
    font-size: 24px;
  }

  .course-text .label {
    font-size: 1.4em;
  }

  .inline-list li {
    font-size: 13px;
  }
}

/* =========================
   見出しデザイン
========================= */
.nx-today-title{
  display: block;
  text-align: center;

  margin: 60px auto 40px;

  font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN","游明朝",serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #111;

  line-height: 1.6;
}

/* 静かな下線 */
.nx-today-title::after{
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  margin: 18px auto 0;
  background: #111;
  opacity: 0.5;
}

/* =========================================
  Address Design
========================================= */

.addr-wrap{
  width: 100%;
  text-align: center;   /* ← これが重要 */
}

.addr{
  margin: 0 auto;
  text-align: center;   /* 念のため */
}

/* PC：大きく1行中央 */
@media (min-width: 769px){

  .addr{
    font-size: clamp(20px, 1.6vw, 26px);
    white-space: nowrap; /* 1行固定 */
  }

  .addr span + span{
    margin-left: .4em;
  }
}

/* SP：読みやすく改行 */
@media (max-width: 768px){

  .addr{
    font-size: 16px;
    white-space: normal;
    width: 100%;
  }

  .addr__zip{
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .addr__bld{
    display: inline-block;
    margin-top: 6px;
  }

  .addr__floor{
    font-weight: 600;
    margin-left: 6px;
  }
}
/* =====================================
   ACCESS BLOCK
===================================== */

.access-block{
  width: 100%;
  text-align: center;
  padding: 60px 20px;
}

/* ===== 住所 ===== */

.access-address{
  margin: 0 auto 30px auto;
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: .08em;
  font-weight: 500;
  line-height: 1.8;
  color: #222;

  /* PCでは1行 */
  white-space: nowrap;
}

/* SPでは改行 */
@media (max-width: 768px){

  .access-address{
    white-space: normal;
    font-size: 16px;
  }

}

/* ===== Google Map Button ===== */

.gmap-btn{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 14px;

  padding: 16px 26px;
  border-radius: 999px;

  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .05em;

  transition: .2s ease;
  margin: 0 auto;

  /* flex対策 */
  width: fit-content;
}

.gmap-btn:hover{
  opacity: .9;
  transform: translateY(-2px);
}

.gmap-btn__icon{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gmap-btn__icon svg{
  fill: #fff;
}

.gmap-btn__text{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 15px;
}

.gmap-btn__sub{
  font-size: 12px;
  opacity: .7;
  font-weight: 400;
}

.gmap-btn__arrow{
  font-size: 18px;
}

/* SP：横幅いっぱいで押しやすく */

@media (max-width: 768px){

  .gmap-btn{
    width: 100%;
    border-radius: 16px;
    padding: 16px;
  }

  .gmap-btn__text{
    align-items: center;
  }

}

/* ===============================
   Back To Top Elegant Button
================================ */

.backtop-wrap{
  width: 100%;
  text-align: center;
  padding: 60px 20px;
}

/* ボタン本体 */
.backtop-btn{
  display: inline-flex;
  align-items: center;
  gap: 16px;

  padding: 18px 40px;
  text-decoration: none;

  border: 1px solid #222;
  color: #222;
  background: transparent;

  letter-spacing: .12em;
  font-weight: 500;
  font-size: 14px;

  transition: all .3s ease;
}

/* 左の細ライン */
.backtop-line{
  width: 40px;
  height: 1px;
  background: #222;
  transition: .3s;
}

/* 矢印 */
.backtop-arrow{
  font-size: 16px;
  transition: transform .3s ease;
}

/* ホバー演出 */
.backtop-btn:hover{
  background: #222;
  color: #fff;
}

.backtop-btn:hover .backtop-line{
  background: #fff;
}

.backtop-btn:hover .backtop-arrow{
  transform: translateX(6px);
}

/* モバイル */
@media (max-width:768px){

  .backtop-btn{
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 13px;
  }

}