@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, Helvetica, Arial;
  overflow-x: hidden;
}

.video-splash {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: #000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  visibility: visible;
  opacity: 1;
}
.video-splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-splash video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.skip-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: 0;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.site-top {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 20px;
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}
.site-top.visible {
  opacity: 1;
  transform: none;
}
.logo {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}
.logo {
  position: fixed;
  top: 0;
  left: 2%;
  margin: 0;
  padding: 0;
  background: transparent;
  z-index: 1000;
}
.tag {
  margin: 0;
  padding: 0;
}
.tag {
  position: fixed;
  top: 40px;
  left: 2%;
  margin: 10px;
  padding: 5px 10px;
  z-index: 999;
  background: transparent;
}
.tag {
  font-size: clamp(14px, 2vw, 18px);
  color: #666;
  margin-bottom: 24px;
}
#nav {
  display: flex;
  gap: 12px;
}
#nav a {
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.05);
  color: #111;
}
.salon-room a img {
  max-width: 100%;
  width: 1000px;
  height: auto;
  display: block;
  margin: 20px auto;
}

@media (prefers-reduced-motion: reduce) {
  .video-splash,
  .site-top {
    transition: none;
  }
}
.salon-room {
  display: block;
}
.salon-room h2 {
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}

.salon-room a {
  display: block;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .salon-room a img {
    width: 100%;
    max-width: 100%;
  }
}

.salon-room a:nth-child(odd) img {
  margin-left: 0;
  margin-right: auto;
}
.salon-room a:nth-child(even) img {
  margin-left: auto;
  margin-right: 0;
}
.salon-room img {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.salon-room a:nth-child(even) img {
  transform: translateY(-40px);
}

.salon-room img.show {
  opacity: 1;
  transform: translateY(0);
}

.salon-room a:nth-child(even) img.show {
  opacity: 1;
  transform: translateY(0);
}

.salon-room {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.room-card {
  display: flex;
  align-items: center;
  gap: 40px;
}

.room-card img {
  width: 50%;
  max-width: 600px;
  border-radius: 10px;
  display: block;
}
.room-card.reverse {
  flex-direction: row-reverse;
  text-align: right;
}

@media (max-width: 768px) {
  .room-card,
  .room-card.reverse {
    flex-direction: column;
    text-align: center;
  }

  .room-card img,
  .room-comment {
    width: 100%;
  }
}
.room-comment {
  width: 50%;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.room-comment p {
  margin-bottom: 1.2em;
  font-size: 1.05rem;
  line-height: 1.8;
}
.rooms-img img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 0;
}

.room-comment p:last-child {
  margin-bottom: 0;
}
.qr-img img {
  width: 80px;
  height: auto;
  margin: 5px;
}

.qr-img {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
}
.history-section form {
  margin-top: 10px;
}

.history-list ul {
  list-style: none;
  padding: 0;
}

.history-list li {
  margin: 8px 0;
  padding: 6px;
  background: #f1f1f1;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.history-list button {
  padding: 3px 8px;
  border: none;
  background: #ff4d4d;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.history-list button:hover {
  background: #cc0000;
}
.hamburger {
  position: fixed;
  top: 30px;
  right: 60px; /* ←「少し左に寄せる」調整はここで */
  width: 44px; /* アイコンの横幅 */
  height: 32px; /* アイコンの縦幅（3本の上下関係を決める）*/
  color: #333; /* 線の色は currentColor を使用 */
  cursor: pointer;
  z-index: 1100;
  -webkit-tap-highlight-color: transparent;
}

/* クリックしやすくするため、内側の要素はポインタイベント無効に */
.hamburger * {
  pointer-events: none;
}

/* 3本線の共通スタイル */
.hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px; /* 線の太さ（4pxにすると少し力強い見た目に） */
  background: currentColor; /* 親の color を引き継ぐ */
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease, background-color 0.25s ease;
}

/* 上・中・下の配置 */
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: calc(50% - 1.5px);
} /* 1.5px = 高さ3pxの半分 */
.hamburger span:nth-child(3) {
  bottom: 0;
}

/* アクティブ時（X形状） */
.hamburger.active span:nth-child(1) {
  /* 上線を中央まで下げてから 45deg 回転 */
  transform: translateY(14px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  /* 真ん中の線は消す（幅縮小も加えるとキレイ） */
  opacity: 0;
  transform: scaleX(0.6);
}
.hamburger.active span:nth-child(3) {
  /* 下線を中央まで上げてから -45deg 回転 */
  transform: translateY(-14px) rotate(-45deg);
}

/* お好みで色の切り替え（背景が暗いときなど） */
/* .hamburger.active { color: #000; } */

/* 端末が「動きを減らす」設定のときはアニメ無効に */
@media (prefers-reduced-motion: reduce) {
  .hamburger span {
    transition: none;
  }
}

#nav {
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 80px 20px 24px;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

#nav.active {
  right: 0;
}

#nav a {
  display: block;
  padding: 12px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #1f2937;
  background: transparent;
  transition: color 0.6s ease, background 0.6s ease;
}

#nav a:hover,
#nav a:focus-visible {
  color: #0ea5e9;
  background: rgba(14, 165, 233, 0.12);
  outline: none;
}

#nav a:active {
  background: rgba(14, 165, 233, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  #nav a {
    transition: none;
  }
}
.menu-lists {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px auto;
  padding: 0 20px;
  max-width: 1100px;
}

.menu-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.menu-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-title::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: #3aa0ff;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
}

.menu-name {
  font-size: 1.1rem;
  line-height: 1.7;
  white-space: nowrap;
}

.menu-dots {
  flex: 1 1 auto;
  min-width: 20px;
  height: 0;
  border-bottom: 1px dotted #bbb;
  transform: translateY(-2px);
}

.menu-price {
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.menu-item + .menu-item {
  border-top: 1px dashed rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .menu-lists {
    max-width: 100%;
    padding: 0 14px;
  }
  .menu-card {
    padding: 20px 16px;
  }
  .menu-title {
    font-size: 1.4rem;
  }
  .menu-name {
    font-size: 1rem;
  }
  .menu-price {
    font-size: 1.05rem;
  }
}

.full-width-img {
  width: 100%;
  height: 950px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
aside.payment {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 30px;
  background: #eeffff;
  padding: 20px;
  border-radius: 10px;
}

aside.payment .pay-block {
  text-align: center;
}

aside.payment img {
  max-width: 100px;
  margin: 5px;
}
aside.payment img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 5px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.footer-hero {
  position: relative;
  width: 100%;
  min-height: 340px;
  color: #fff;
  background: url("./sunset-img/sanset-img7.jpg") center/cover no-repeat fixed;
}
.footer-hero .footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.15));
}

.footer-hero .footer-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(24px, 6vw, 64px) 16px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.footer-hero a {
  color: #fff;
  text-decoration: underline;
}
.footer-hero a:hover {
  opacity: 0.9;
}

.footer-hero .footer-info p {
  margin: 6px 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.footer-right {
  display: grid;
  gap: 12px;
  align-content: start;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.social-links img {
  width: 32px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}
.logo-qr {
  width: 80px;
  height: auto;
  margin-left: 6px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links a {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  text-decoration: none;
  backdrop-filter: blur(2px);
}
.footer-links a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-hero .copyright {
  margin: 6px 0 0;
  opacity: 0.9;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

@media (max-width: 640px) {
  .footer-hero .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .footer-links {
    justify-content: center;
  }
}

.footer-hero {
  background-position: 100% 0%;
  min-height: clamp(420px, 60vh, 680px);
}

@media (max-width: 640px) {
  .footer-hero {
    background-position: 85% 0%;
    min-height: 380px;
  }
}

.footer-hero .footer-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.18) 40%, rgba(0, 0, 0, 0.06) 70%, rgba(0, 0, 0, 0) 100%);
}
.services-image {
  position: relative;
}

.services-image h2 {
  position: absolute;
  top: clamp(8px, 2vw, 24px);
  left: clamp(8px, 2vw, 24px);
  margin: 0;
  padding: 0.4em 0.7em;

  font-weight: 800;
  font-size: clamp(22px, 4vw, 48px);
  line-height: 1;
  color: #fff;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.2));
  border-radius: 10px;
  backdrop-filter: blur(3px);
  z-index: 1;
  pointer-events: none;
}
.services-image img.full-width-img {
  display: block;
  width: 100%;
}

/* 画像を少し下げる（＝上の余白を増やす） */
.hero-building {
  display: block; /* マージン確実適用 */
  margin: 44px auto 0; /* 上24px → お好みで調整、中央寄せなら auto */
  max-width: 100%; /* 念のためレスポンシブ */
  height: auto;
}

/* スマホは少し控えめに */
@media (max-width: 600px) {
  .hero-building {
    margin-top: 16px;
  }
}

:root {
  --nav-link: #1f2937; /* 通常の文字色 */
  --nav-hover: #0ea5e9; /* ホバー時の文字色（スカイブルー系） */
  --nav-hover-bg: rgba(14, 165, 233, 0.12); /* ホバー時の背景ハイライト */
}
.toplogo {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  z-index: 9999;
}
@media (max-width: 767px) {
  .qr-img {
    display: block;
   }