/* ============================================
   リセット & 基本スタイル
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #1b2020;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   ユーティリティクラス
   ============================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* ============================================
   ナビゲーションバー
   ============================================ */

.navbar {
  background-color: #1b2020;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.logo-text {
  color: white;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-menu a {
  color: white;
  font-size: 18px;
  transition: opacity 0.3s;
}

.navbar-menu a:hover {
  opacity: 0.7;
}

.navbar-actions {
  display: flex;
  gap: 16px;
}

/* ボタンスタイル */
.btn-primary {
  background-color: #f2f2f2;
  color: #020808;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s;
  box-shadow: 0px 1px 2px 0px rgba(2, 8, 8, 0.05);
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #e0e0e0;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}


/* モバイルメニュー */
.mobile-menu {
  display: none;
  background-color: #1b2020;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.mobile-menu.active {
  display: block;
  max-height: 500px;
    position: fixed;
    z-index: 9999;
    width: 100vw;
}

.mobile-menu-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-content a {
  color: white;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta {
  margin-top: 10px;
}

.mobile-menu-content .btn-primary {
  color: #020808;
  border-bottom: none;
  padding: 8px 20px;
}

/* ============================================
   ヒーローセクション
   ============================================ */

.hero {
  position: relative;
  height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/src/assets/IMG_0969.JPG');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 768px;
  padding: 0 20px;
}

.hero-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 74px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.74px;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ============================================
   セクション共通スタイル
   ============================================ */

.section {
  padding: 112px 0;
}

.section-dark {
  background-color: #2d2a26;
}

.gallery-section {
  background-color: #0f0e0d;
}
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-header2 {
  text-align: center;
  margin-bottom: 80px;
}

.tagline2,
.tagline-center {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.tagline,
.tagline-center2 {
  color: #0d0f0f;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.tagline-center {
  text-align: center;
}

.section-title {
  font-family: 'Zen Old Mincho', serif;
  color: white;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin-bottom: 24px;
}

.section-title-center {
  font-family: 'Zen Old Mincho', serif;
  color: white;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.6px;
  text-align: center;
}
.section-title-center2 {
  font-family: 'Zen Old Mincho', serif;
  color: #0d0f0f;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.6px;
  text-align: center;
}
.section-title-center3 {
  font-family: 'Zen Old Mincho', serif;
  color: white;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.6px;
  text-align: center;
}

.section-description {
  color: white;
  font-size: 20px;
  line-height: 1.5;
}

.section-description-center {
  color: white;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}

.section-actions {
  margin-top: 32px;
}
.section2{
  margin: 60px auto;
}

/* ============================================
   コンテンツレイアウト
   ============================================ */

.content-layout {
  display: flex;
  gap: 64px;
  align-items: center;
}

.image-container {
  flex: 1;
  position: relative;
  height: 624px;
}

.feature-image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 87.5%;
  height: 532px;
  object-fit: cover;
  border-radius: 8px;
}

.feature-image-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 364px;
  height: 364px;
  object-fit: cover;
  border-radius: 8px;
}

.content-text {
  flex: 1;
}

/* ============================================
   ギャラリーグリッド
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.gallery-column img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* ============================================
   料金テーブル
   ============================================ */

.pricing-table {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  color: white;
}

.pricing-table th {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 24px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-table td {
  padding: 16px 24px;
  text-align: center;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-table .pricing-label {
  text-align: left;
  font-weight: 500;
  width: 440px;
}

.pricing-table .check {
  color: #4ade80;
  font-size: 24px;
}

.pricing-table .cross {
  font-size: 24px;
}

.pricing-table tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

/* ============================================
   お問い合わせ
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-item {
  text-align: center;
  color: white;
}

.contact-icon {
  font-size: 48px;
  /*margin-bottom: 16px;*/
}

.contact-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-text {
  font-size: 16px;
  line-height: 1.5;
}
.map{
  width: 1000px;
  margin: 80px auto 0;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: white;
}

.faq-question {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   フッター
   ============================================ */

.footer {
  background-color: #0d0f0f;
  color: white;
  padding: 48px 0 24px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo .logo-text {
  font-size: 24px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 16px;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
/* =======================================
アメニティ
=========================================== */
.facility-section {
  background:#faf6f1;
  padding:80px 20px;
  font-family:'Noto Sans JP',sans-serif;
  color:#4a4a4a;
}

.facility-inner {
  max-width:1000px;
  margin:auto;
}

.facility-title {
  text-align:center;
  font-family:serif;
  font-size:36px;
}

.facility-line {
  width:80px;
  height:1px;
  background:#d6c8b3;
  margin:10px auto 50px;
}

.facility-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.icon-card {
  background:#fffdfa;
  border-radius:14px;
  padding:30px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.icon-card svg {
  width:64px;
  height:64px;
  stroke:#9c835b;
  fill:none;
  stroke-width:2;
}

.icon-text .en {
  font-family:serif;
  font-size:18px;
}

.icon-text .jp {
  font-size:14px;
  color:#777;
}



/* ============================================
   レスポンシブデザイン
   ============================================ */

/* タブレット */
@media screen and (max-width: 1024px) {
  .navbar-container {
    padding: 0 32px;
  }

  .hero-title {
    font-size: 60px;
  }
  /* モバイルメニュートグル */
.mobile-menu-toggle {
  background: none;
  display: flex !important;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  display: block;
  transition: all 0.3s;
}

  .section-title,
  .section-title-center {
    font-size: 48px;
  }
   .section-title,
  .section-title-center2 {
    font-size: 48px;
  }
    .section-title,
  .section-title-center3 {
    font-size: 40px;
  }

  .content-layout {
    flex-direction: column;
    gap: 40px;
  }

  .image-container {
    width: 100%;
    height: 500px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* モバイル */
@media screen and (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .navbar-container {
    padding: 0 20px;
    height: 64px;
  }

  .logo-text {
    font-size: 16px;
  }

  .hero {
    height: 100vh;
    min-height: 100vh;
    background-size: cover;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: -0.36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 64px 0;
  }

  .section-title,
  .section-title-center {
    font-size: 32px;
    letter-spacing: -0.32px;
  }
  .section-title,
  .section-title-center2 {
    font-size: 32px;
    letter-spacing: -0.32px;
  }
    .section-title,
  .section-title-center3 {
    font-size: 32px;
    letter-spacing: -0.32px;
  }

  .section-description,
  .section-description-center {
    font-size: 16px;
    margin-top: 10px;
  }

  .content-layout {
    gap: 32px;
  }

  .image-container {
    height: 400px;
  }

  .feature-image-main {
    width: 100%;
    height: 300px;
    position: relative;
  }

  .feature-image-sub {
    width: 250px;
    height: 250px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .gallery-column {
    gap: 16px;
    display: contents;
  }

  .gallery-column img{
  }

  .pricing-table {
    overflow-x: auto;
  }

  .pricing-table table {
    min-width: 100%;
    letter-spacing: 2px;
  }

  .pricing-table th {
    font-size: 18px;
    padding: 16px;
  }

  .pricing-table td {
    font-size: 14px;
    padding: 12px 16px;
  }

  .pricing-table .pricing-label {
    width: 40%;
    text-align: center;
  }
  

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-icon {
    font-size: 36px;
  }

  .contact-title {
    font-size: 20px;
  }

  .contact-text {
    font-size: 16px;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
  .icon-card {
    display: flex !important;
    align-items: center;
    padding: 14px 16px !important;
    gap: 14px;
    text-align: left !important;
  }

  .icon-card svg {
    width: 36px !important;
    height: 36px !important;
  }

  .icon-text .en {
    font-size: 16px !important;
  }

  .icon-text .jp {
    font-size: 12px !important;
  }
  .facility-section {
    padding:40px 16px;
  }

  .facility-title {
    font-size:22px;
  }

  .facility-grid {
    grid-template-columns:1fr;
    gap:14px;
  }

  .icon-card {
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 16px;
    text-align:left;
  }

  .icon-card svg {
    width:36px;
    height:36px;
  }

  .icon-text .en {
    font-size:16px;
  }

  .icon-text .jp {
    font-size:12px;
  }
  .map{
  max-width: 90%;
  margin: 40px auto;
  }
}

/* 小型モバイル */
@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title,
  .section-title-center {
    font-size: 28px;
  }
  .section-title,
  .section-title-center2 {
    font-size: 28px;
  }
  .section-title,
  .section-title-center3 {
    font-size: 28px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    font-size: 16px;
    padding: 10px 20px;
  }
}




  .amenity-section {
    margin: 80px auto;
    padding: 0 20px;
    max-width: 1000px;
  }

  .divider {
    width: 80px;
    height: 1px;
    background: #d6c8b3;
    margin: 0 auto 50px;
  }
  .inner{
    max-width: 1100px;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }

  .card {
    background: #fffdfa;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }

  .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
  }

  .en {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
  }

  .jp {
    font-size: 14px;
    color: #777;
    margin-top: 6px;
  }

  svg {
    stroke: #9c835b;
    margin: 0;
  }
  h3{
    margin: 0;
  }




  
