/* =========================================================
   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;
}


/* ☑モバイルファースト(一般スマホベース) */
body {
  font-family: "Times New Roman", "Lusitana", 'Yu Mincho', "メイリオ", serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}


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

/* モバイル〜タブレットでは 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: #E36B71;
  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%;
  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");
  }
}



/* ------------------------------ フッター */
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;
}