/* =========================================================
   common.css（全ページ共通） 
   - Reset（Eric Meyer）
   - ベースレイアウト
   - ヘッダー / フッター / ナビ 共通
   ========================================================= */


/* ------------------------------ reset css */

/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* ☑モバイルファースト(一般スマホベース) */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: 100%;
}

body {
  font-family: "Times New Roman", "Lusitana", "Yu Mincho", "メイリオ", serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100%;
}

/* 二重スクロールの典型原因を封じる */
body {
  overflow-y: auto;  /* 念のため明示 */
}



/* =========================================================
   ヘッダー共通（モバイル基準）
   ========================================================= */

/* モバイル〜タブレットでは flex で横並び */
.top-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 16px;
  box-sizing: border-box;
}

/* ロゴ（モバイル用） */
.header-logo {
  position: static;
  display: block;
  width: 50vw;
  max-width: 190px;
  height: auto;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ご予約ボタン（モバイル用） */
.reserve_btn {
  position: static;
  display: block;
  width: 150px;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 8px;
}

.reserve_btn img {
  width: 100%;
  height: auto;
  display: block;
}

/* ハンバーガー（モバイル用） */
.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  margin-left: 8px;
  z-index: 3000; /* ★ 文字が消えないよう最高層へ */
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #E3A178;
  margin: 4px 0;
  border-radius: 3px;
}


/* ---------- 狭いスマホ ---------- */
@media (max-width: 400px) {
  .header-logo {
    width: 48vw;
    max-width: 180px;
  }

  .reserve_btn {
    width: 140px;
  }
}

/* ---------- 一般スマホ ---------- */
@media (min-width: 401px) and (max-width: 767px) {
  .top-section {
    padding: 8px 18px;
  }

  .header-logo {
    width: 50vw;
    max-width: 190px;
  }

  .reserve_btn {
    width: 150px;
  }
}

/* ---------- タブレット ---------- */
@media (min-width: 768px) and (max-width: 1199px) {
  .top-section {
    padding: 10px 28px;
  }

  .header-logo {
    width: 50vw;
    max-width: 210px;
  }

  .reserve_btn {
    width: 170px;
  }
}


/* ---------- PC ---------- */
@media (min-width: 1200px) {

  .top-section {
    position: fixed;
    height: 80px;
    background-color: #fff;
    z-index: 1000;
    display: block;
    padding: 0;
  }

  .header-logo {
    position: fixed;
    top: 10px;
    left: 10px;
    max-width: 190px;
  }

  .reserve_btn {
    position: fixed;
    top: 20px;
    right: 30px;
    width: 160px;
  }

  .hamburger {
    display: none;
  }
}


/* =========================================================
   PC用グローバルナビ
   ========================================================= */

.top-nav {
  display: none;
}

@media (min-width: 1200px) {
  .top-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 11px auto 0;
    height: auto;
    z-index: 999;
    padding: 10px 0;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
  }

  .nav-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 12px;
    white-space: nowrap;
    min-width: 100px;
  }

  .nav-list li span.h-span {
    font-size: 14px;
    color: #E36B71;
  }

  .nav-list li a.top-nav-link {
    color: #E36B71;
    font-size: 22px;
    text-decoration: none;
    padding: 0 12px;
    margin-top: 5px;
  }

  .nav-list li + li {
    border-left: 1px solid #E36B71;
    padding-left: 12px;
  }
}


/* =========================================================
   モバイルナビ（ハンバーガー）
   ========================================================= */

.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background: #E36B71;
  padding: 0 20px 50px 20px;
  z-index: 2500;
  box-sizing: border-box;

  opacity: 1;
  transform: translateY(-20px);
  animation: navFadeDown 0.8s ease forwards;
}

/* 全体フェードイン */
@keyframes navFadeDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.mobile-nav ul li {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #fff;

  opacity: 0;
  transform: translateY(10px);
  animation: navItemUp 1.6s ease forwards;  /* ★ ゆっくり */
}

/* 順番にふわっと表示 */
@keyframes navItemUp {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* 各メニューを時間差で表示 */
.mobile-nav ul li:nth-child(1) { animation-delay: 0s; }
.mobile-nav ul li:nth-child(2) { animation-delay: 0.25s; }
.mobile-nav ul li:nth-child(3) { animation-delay: 0.5s; }
.mobile-nav ul li:nth-child(4) { animation-delay: 0.75s; }
.mobile-nav ul li:nth-child(5) { animation-delay: 1.0s; }
.mobile-nav ul li:nth-child(6) { animation-delay: 1.25s; }

.mobile-nav ul li a {
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.mobile-nav ul li a i {
  margin-right: 15px;
  font-size: 20px;
}

/* 閉じるボタン */
.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: #d95b62;      /* ★ メニューより少し濃いピンクにする */
  border-radius: 8px;       /* 四角の角を丸く */
  border: none;
  color: #fff;              /* × の色 */
  font-size: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  /* z-index は書かないでOK */
}


.mobile-nav.open + .hamburger,
.mobile-nav.open ~ .hamburger {
  display: none;
}

@media (min-width: 1200px) {
  .mobile-nav,
  .close-btn {
    display: none;
  }
}


/* =========================================
   モバイルだけトップ画像を差し替え
   ========================================= */
@media (max-width: 767px) {

  /* 2枚目の画像（⑦ → ⑫） */
  img.top-image-slide {
    content: url("Image/オイルマッサージ⑫.png");
  }

  /* 3枚目の画像（⑪ → ⑬） */
  img.top-image-slide2 {
    content: url("Image/オイルマッサージ⑬.png");
  }
}


/* 既存の UL と距離を取り、下部ブロック化 */
.mobile-nav-policy{
  margin-top: auto;               /* ★ 最下部へ */
  padding: 16px 0 6px;
  border-top: 1px solid rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* フッターっぽく小さめ＋控えめ */
.mobile-nav-policy a{
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  font-size: 16px;
  line-height: 1.6;
}

/* タップしやすさ（狭い端末向け） */
@media (max-width: 767px){
  .mobile-nav-policy a{
    padding: 4px 0;
  }
}

/* =========================================================
   フッターナビ（ポリシー系リンク） nav.foot-nav
   ========================================================= */

nav.foot-nav{
  padding: 15px 0;
  text-align: center;
}

nav.foot-nav ul{
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

nav.foot-nav ul li{
  padding: 0 20px;
  line-height: 1.5;
}

.bottom-nav-link,
.bottom-nav-link:visited{
  color: rgba(215,49,57,1);
  text-decoration: none;
  font-size: 16px;
}

/* ---------- タブレット・PC(768px以上) ---------- */
@media (min-width: 768px){
  nav.foot-nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  nav.foot-nav ul li + li{
    border-left: 1px solid #E36B71;   /* ← 線はこれだけに統一 */
  }
}

/* ---------- スマホ(767px以下) ---------- */
@media (max-width: 767px){
  nav.foot-nav ul{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  nav.foot-nav ul li{
    padding: 10px 0;
    border: none;
  }
}


/* =========================================================
   SPメニュー内 SNS（mobile-nav-sns）
   ========================================================= */

.mobile-nav-sns{
  padding: 18px 0 12px;
  border-top: 1px solid rgba(255,255,255,0.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.mobile-nav-sns-title{
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  letter-spacing: 0.08em;
  margin: 20px 0 ;
}

/* ★ これが横並びの本体 */
.mobile-nav-sns-row{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

/* 中の container は余計な幅を持たせない */
.mobile-nav-sns-row .container-line,
.mobile-nav-sns-row .container-instagram{
  display: flex;
  align-items: center;
}

/* アイコン */
.mobile-nav-sns-row .icon-line,
.mobile-nav-sns-row .icon-instagram{
  width: 60px;
  height: 60px;
  display: block;
}



/* ------------------------------ フッター */
footer div {
  background: #E36B71;
  color: white;
  text-align: center;
  font-size: 16px;
  padding: 10px 0;
}


/* ------------------------------ カーソル */
.cursor-light {
  position: fixed;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: radial-gradient(
    circle,
    rgba(255,221,230,0.8) 0%,
    rgba(255,214,227,0.4) 60%,
    rgba(255,221,230,0) 100%
  );
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: soft-light;
}


/* =====================================================
   共通セクション設計（全ページ共通）
===================================================== */

/* ---------- セクション基本 ---------- */
.section {
  width: 92%;
  margin: 80px auto 40px;
  padding: 40px 0;
  height: auto;
  box-sizing: border-box;
}

/* セクション間のGAP */
.section + .section {
  margin-top: 60px;
}

/* 背景バリエーション */
.section--bg-soft {
  background: rgba(246, 227, 222, 0.5);
}

.section--bg-white {
  background: #fff;
}

.section--bg-none {
  background: transparent;
}

/* 最後のセクションだけ下の余白を消す */
.section:last-of-type{
  margin-bottom: 20px;
  padding-bottom: 40px;
}

/* =====================================================
   セクションヘッダー共通
===================================================== */

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  margin-bottom: 40px;
  position: relative;
}

/* タイトル */
.section-header .section-title {
  margin: 0;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.05em;
  white-space: nowrap;
}


/* =====================================================
   セクションヘッダー：バッジ共通（右上固定）
===================================================== */

.section-header .section-badge {
  position: absolute;
  top: 0px;
  right: 20px;
  width: 150px;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .section-header .section-badge {
    width: 250px;
  }
}


/* =====================================================
   needle（針）共通
===================================================== */

.section-header .needle-icon {
  width: 150px;
  height: auto;
  display: block;
  transform: translateY(0.15em);
}

.section-header .needle-icon.left {
  margin-right: -10px;
}

.section-header .needle-icon.right {
  margin-left: -10px;
}

/* スマホ〜タブレットでは非表示 */
@media (max-width: 1199px) {
  .section-header .needle-icon {
    display: none;
  }
}

/* Conceptだけ補正（PCのみ） */
@media (min-width: 1200px) {
  .section--concept .section-header .needle-icon {
    position: relative !important;
    top: 0.2em !important;
    transform: none !important;
  }
}


/* =====================================================
   セクションタイトルサイズ共通
===================================================== */

@media (max-width: 390px) {
  .section-header .section-title {
    font-size: 22px;
  }
}

@media (min-width: 391px) and (max-width: 767px) {
  .section-header .section-title {
    font-size: 26px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .section-header .section-title {
    font-size: 26px;
  }
}

@media (min-width: 1200px) {
  .section-header .section-title {
    font-size: 30px;
  }
}


/* =====================================================
   コンセプト・文章系 共通
===================================================== */

.section-message {
  font-weight: bold;
  color: #E36B71;
}

.section-description {
  line-height: 1.8;
}


/* =====================================================
   改行制御（br.rows）
===================================================== */

.rows {
  display: inline;
}

@media (min-width: 768px) {
  .rows {
    display: none;
  }
}


/* =====================================================
   区切り線 共通
===================================================== */

.section-divider {
  border: none;
  border-top: 1px solid #F3BFC1;
  margin: 4rem auto;
  width: 90%;
}

.line-for-separate {
  width: 90%;
  display: block;
  margin: 40px auto;
}