/* === Refactored style.css generated on 2025-06-02 === */

/* ────────── 変数定義 ────────── */
:root {
  --primary-color: #007bff;
  --secondary-color: #0056b3;
  --success-color: #00c300;
  --danger-color: #ef4444;
  --text-color: #333;
  --text-light: #64748b;
  --border-color: #e2e8f0;
  --bg-light: #f8fafc;
  --bg-white: #fff;
  --form-border-color: #e2e8f0;
  --form-focus-color: #007bff;
  --form-bg-color: #f8fafc;
  --form-label-color: #64748b;
  --form-focus-shadow: rgba(0, 123, 255, .12);
  --btn-primary-gradient: linear-gradient(45deg, #007bff, #0056b3);
  --btn-primary-hover-gradient: linear-gradient(45deg, #0056b3, #003d80);
  --btn-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --btn-hover-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 30px;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}



/* ベーススタイル（全画面サイズ共通） */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #faf5e3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden; /* 横スクロールを防止 */
}

.site-footer {
  margin-top: auto;
}

/* カスタムスクロールバー */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

body::before {
  content: none;
}

/* --- サイトタイトルの "N" をスモールキャップに --- */
.small-cap {
  font-variant: small-caps;
  /* 小文字サイズの大文字 */
  font-size: 0.75em;
}

/* --- ヘッダーのサイトリンク下線を無効化 --- */
.site-title a {
  text-decoration: none;
}

.site-title a:hover,
.site-title a:focus {
  text-decoration: none;
}

/* ────────── レスポンシブ対応の基本設定 ────────── */
/* デスクトップファースト */
.container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  box-sizing: border-box;
}

/* タブレット以下 */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

/* スマートフォン */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
}

/* ────────── 予約フォーム .form-group ────────── */
/* ────────── 予約フォーム 本体 ────────── */
/* 画面幅が広いときにフォームが伸び切らないよう、上限幅と背景色を明示 */
.reserve-form{
  max-width:640px;      /* ← PC での横幅を抑える */
  width:100%;
  margin:3rem auto;     /* 中央寄せ & 上下余白 */
  padding:2.5rem 2rem;
  background:var(--bg-white);   /* 白背景を復活 */
  border-radius:14px;
  box-shadow:0 8px 28px rgba(0,0,0,.08);
  display:grid;
  gap:1.5rem;
  box-sizing: border-box; /* ボックスサイズを明示 */
}
.reserve-form .form-group {
  margin-bottom: var(--spacing-lg);
  position: relative;
}

/* 共通 input / select */
.reserve-form .form-group input,
.reserve-form .form-group select {
  width: 100%;
  padding: 1.6rem .75rem .55rem;
  border: 1.5px solid var(--form-border-color);
  border-radius: var(--border-radius);
  box-sizing: border-box;
  font-size: 1rem;
  background: var(--form-bg-color);
  transition: all var(--transition-fast);
}

/* ラベル（フローティング） */
.reserve-form .form-group label {
  position: absolute;
  left: .75rem;
  top: 1.2rem;
  font-size: .875rem;
  color: var(--form-label-color);
  font-weight: 500;
  pointer-events: none;
  transition: all var(--transition-fast);
}

/* フォーカス時 */
.reserve-form .form-group input:focus,
.reserve-form .form-group select:focus {
  border-color: var(--form-focus-color);
  box-shadow: 0 0 0 4px var(--form-focus-shadow);
  background: var(--bg-white);
  outline: none;
}

.reserve-form .form-group input:focus + label,
.reserve-form .form-group input:not(:placeholder-shown) + label,
.reserve-form .form-group input:valid + label,
.reserve-form .form-group select:focus + label,
.reserve-form .form-group select.filled + label {
  top: .45rem;
  font-size: .75rem;
  color: var(--form-focus-color);
  font-weight: 600;
}

/* select 専用装飾 */
.reserve-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8.825L1.175 4 2.05 3.125 6 7.075 9.95 3.125 10.825 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.reserve-form .form-group select option {
  padding: 0.5rem;
}

/* 郵便番号入力フィールド */
.reserve-form .form-group input[type="text"][name="postal_code"] {
  width: 150px;
  text-align: center;
  letter-spacing: 0.1em;
}

/* モバイル版での郵便番号フィールド調整 */
@media (max-width: 480px) {
  .reserve-form .form-group input[type="text"][name="postal_code"] {
    width: 120px;
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .reserve-form .form-group input[type="text"][name="postal_code"] {
    width: 100px;
    font-size: 0.85rem;
  }
}

/* 最後のフォームグループ余白調整 */
.reserve-form .form-group:last-child {
  margin-bottom: 0;
}

/* モバイル版でのフォーム調整 */
@media (max-width: 640px) {
  .reserve-form {
    max-width: 100%;
    margin: 1.5rem 0.5rem;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  .reserve-form .form-group {
    margin-bottom: 0.75rem;
  }
  
  .reserve-form .form-group input,
  .reserve-form .form-group select {
    padding: 1.3rem .75rem 0.4rem;
    font-size: 0.95rem;
  }
  
  .reserve-form .form-group label {
    top: 1.1rem;
    font-size: 0.8rem;
  }
  
  .reserve-form .form-group input:focus + label,
  .reserve-form .form-group input:not(:placeholder-shown) + label,
  .reserve-form .form-group input:valid + label,
  .reserve-form .form-group select:focus + label,
  .reserve-form .form-group select.filled + label {
    top: 0.3rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .reserve-form {
    margin: 1rem 0.25rem;
    padding: 1rem 0.75rem;
    gap: 0.75rem;
  }
  .reserve-form .form-group {
    margin-bottom: 0.5rem;
  }
  
  .reserve-form .form-group input,
  .reserve-form .form-group select {
    padding: 1.2rem .5rem 0.35rem;
    font-size: 0.9rem;
  }
  
  .reserve-form .form-group label {
    font-size: 0.75rem;
    top: 1rem;
    left: 0.5rem;
  }
  
  .reserve-form .form-group input:focus + label,
  .reserve-form .form-group input:not(:placeholder-shown) + label,
  .reserve-form .form-group input:valid + label,
  .reserve-form .form-group select:focus + label,
  .reserve-form .form-group select.filled + label {
    top: 0.25rem;
    font-size: 0.65rem;
    left: 0.5rem;
  }
}

@media (max-width: 360px) {
  .reserve-form .form-group {
    margin-bottom: 0.4rem;
  }
  
  .reserve-form .form-group input,
  .reserve-form .form-group select {
    padding: 1.1rem .4rem 0.3rem;
    font-size: 0.85rem;
  }
  
  .reserve-form .form-group label {
    font-size: 0.7rem;
    top: 0.9rem;
    left: 0.4rem;
  }
  
  .reserve-form .form-group input:focus + label,
  .reserve-form .form-group input:not(:placeholder-shown) + label,
  .reserve-form .form-group input:valid + label,
  .reserve-form .form-group select:focus + label,
  .reserve-form .form-group select.filled + label {
    top: 0.2rem;
    font-size: 0.6rem;
    left: 0.4rem;
  }
}

/* ─── レスポンシブ ─── */
@media (max-width: 640px) {
  .reserve-form .form-group input,
  .reserve-form .form-group select {
    padding: 1.3rem .75rem 0.4rem;
  }
  .reserve-form .form-group label {
    top: 1.1rem;
  }
  .reserve-form .form-group input:focus + label,
  .reserve-form .form-group input:not(:placeholder-shown) + label,
  .reserve-form .form-group input:valid + label,
  .reserve-form .form-group select:focus + label,
  .reserve-form .form-group select.filled + label {
    top: 0.3rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .reserve-form .form-group {
    margin-bottom: 1rem;
  }
  .reserve-form .form-group input,
  .reserve-form .form-group select {
    padding: 1.2rem .75rem 0.35rem;
    font-size: 0.95rem;
  }
  .reserve-form .form-group label {
    font-size: 0.8rem;
    top: 1rem;
  }
  .reserve-form .form-group input:focus + label,
  .reserve-form .form-group input:not(:placeholder-shown) + label,
  .reserve-form .form-group input:valid + label,
  .reserve-form .form-group select:focus + label,
  .reserve-form .form-group select.filled + label {
    top: 0.25rem;
    font-size: 0.7rem;
  }
}

.has-stock:not(.flatpickr-disabled)::after,
.sold-out:not(.selected)::after {
  position: absolute;
  left: 50%;
  top: auto !important;
  /* 旧 top:calc(100% - .4rem) を無効化 */
  bottom: .15rem;
  /* 下端から 2〜3px 上に配置 */
  transform: translateX(-50%);
  font-size: .75em;
  line-height: 1;
}

.has-stock:not(.flatpickr-disabled)::after {
  content: '○';
  color: #e1701a;
}

.sold-out:not(.selected)::after {
  content: '×';
  color: #c33;
}

.sold-out,
.flatpickr-disabled {
  color: #bbb;
  cursor: not-allowed;
  opacity: 1;
}

/* ── Flatpickr モダン化 ───────────────────── */

/* カレンダー関連のスペーシング */
.calender-style {
  margin-bottom: 1.5rem !important;
}

/* ────────── Footer ────────── */
.site-footer {
  background: #111;
  color: #f4f4f4;
  padding: 0.5rem 1rem;
  font-size: .875rem;
}

.site-footer a {
  color: #bfbfbf;
  text-decoration: none;
  transition: color .2s ease;
}

.site-footer a:hover {
  color: #fff;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

@media (max-width:480px) {
  .footer-nav ul {
    gap: 1rem;
    font-size: .8rem;
  }

  /* ────────── Policy Pages ────────── */
  .policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    line-height: 1.8;
    color: #333;
  }

  .policy-container h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 2.5rem;
    text-align: center;
    color: #1a1a1a;
  }

  .policy-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 3rem 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
    color: #2d3748;
    position: relative;
  }

  .policy-container h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #007bff;
  }

  .policy-container p {
    margin: 1rem 0;
    color: #4a5568;
  }

  .policy-container ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: #4a5568;
  }

  .policy-container li {
    margin: 0.5rem 0;
  }

  .policy-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #fff;
  }

  .policy-container th,
  .policy-container td {
    border: 1px solid #e2e8f0;
    padding: 1rem;
    text-align: left;
  }

  .policy-container th {
    background: #f8fafc;
    font-weight: 600;
    color: #2d3748;
  }

  .policy-container dl {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .policy-container dt {
    font-weight: 600;
    color: #2d3748;
  }

  .policy-container dd {
    margin: 0;
    color: #4a5568;
  }

  .policy-container a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .policy-container a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  /* ポリシーページのレスポンシブ対応 */
  @media (max-width: 768px) {
    .policy-container {
      padding: 3rem 1.5rem;
    }

    .policy-container h1 {
      font-size: 1.75rem;
      margin-bottom: 2rem;
    }

    .policy-container h2 {
      font-size: 1.25rem;
      margin: 2.5rem 0 1rem;
    }

    .policy-container dl {
      grid-template-columns: 1fr;
      gap: 0.5rem;
    }

    .policy-container dt {
      margin-top: 1rem;
      padding-bottom: 0.25rem;
      border-bottom: 1px solid #e2e8f0;
    }

    .policy-container dd {
      padding-left: 0;
    }
  }

  @media (max-width: 480px) {
    .policy-container {
      padding: 2rem 1rem;
    }

    .policy-container h1 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .policy-container h2 {
      font-size: 1.2rem;
      margin: 2rem 0 0.75rem;
    }

    .policy-container table {
      font-size: 0.9rem;
    }

    .policy-container th,
    .policy-container td {
      padding: 0.75rem;
    }

    .policy-container dl {
      font-size: 0.9rem;
    }
  }
}


/* ────────── トップページ全体のスタイル ────────── */
.home-page {
  color: #1a1a1a;
  line-height: 1.6;
}

/* ────────── ヒーローセクション ────────── */
.hero-section {
  text-align: center;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
  /* max-width: 80%; */
  margin: 0 auto;
}

/* スライドショー用のスタイル */
.hero-slideshow {
  width: 100%;
  position: relative;
}

.banner-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.hero-slideshow .slick-dots {
  bottom: -30px;
}

.hero-slideshow .slick-dots li button:before {
  font-size: 12px;
  color: #007bff;
  opacity: 0.5;
}

.hero-slideshow .slick-dots li.slick-active button:before {
  opacity: 1;
}

.hero-banner {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  z-index: 1;
  pointer-events: none;
}

.title-wrapper {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  border-radius: 1rem;
}

.hero-subtitle {
  font-size: 2.4rem;
  margin: 10px 0;
  color: #ffffff;
  text-shadow: 10px 10px 10px rgba(0, 0, 0, 1);
}

.title-bird {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 1));
}

.features-box {
  padding: 20px;
  max-width: 500px;
  margin: 30px auto;
  display: flex;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-right: 1.8rem;
}

.feature-item i {
  margin-right: 10px;
  color: green;
  font-size:1.5rem;
}

.feature-item span {
  font-size:1.3rem;
  color: #333;
  font-weight:700;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {


  .hero-subtitle {
    font-size: 2.2rem;
  }

  .title-bird {
    width: 30px;
  }

  .features-box {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .features-box {
    padding: 10px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .feature-item i {
  font-size:0.9rem;
}
  .feature-item span {
    font-size: 0.9rem;
  }
  .hero-subtitle {
        font-size: 1rem;
    }
}

/* サービス説明 */
.service-description {
  padding: 40px 20px;
  text-align: center;
  /* text-decoration:underline; */
  color: #020202;
  margin-bottom: 1.5rem;

}

.service-title {
  font-size: 2.8rem;
  font-weight: normal;
  line-height: 1.6;
  margin: 0 0 20px;
  color: #0a0a0a;
}


@media (max-width: 768px) {
  .service-title {
    font-size: 1.4rem;
  }
}

/* ────────── 体験セクション ────────── */
.experience-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.experience-description {
  color: #4a5568;
  line-height: 1.6;
}

/* ────────── 利用の流れセクション ────────── */
.flow-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.flow-description {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
}

/* CTAセクションの更新 */
.cta-section {
  padding: 1rem 1.5rem;
  background: linear-gradient(45deg, #007bff, #00a0ff);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-tag {
  display: inline-block;
  background: #ff6b6b;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
  .flow-step { padding: 1.2rem; font-size: 1rem; }
  .flow-title { font-size: 0.85rem; margin-bottom: 0.3rem; }
  .flow-description { font-size: 0.75rem; }
}
@media (max-width: 480px) {
  .flow-step { padding: 0.8rem; font-size: 0.95rem; }
}

/* ────────── 特徴セクション ────────── */
.features-section {
  padding: 5rem 1.5rem;
  /* background: #fff; */
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1a1a1a;
}


/* ────────── アニメーション ────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.5s ease-out forwards;
}

/* ────────── ヘッダー ────────── */
.site-header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--spacing-md) 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title {
  font-size: 1.5rem;
  margin: 0;
}

.site-title a {
  color: var(--text-color);
  text-decoration: none;
}

.site-description {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    padding: 0.5rem;
  }

  .site-description {
    margin-top: 0.25rem;
  }
}

/* ────────── ボタンスタイル ────────── */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  min-width: 200px;
}

.btn-primary {
  background: var(--btn-primary-gradient);
  color: var(--bg-white);
  border: none;
  box-shadow: var(--btn-shadow);
}

.btn-primary:hover {
  background: var(--btn-primary-hover-gradient);
  transform: translateY(-2px);
  box-shadow: var(--btn-hover-shadow);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid currentColor;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-line {
  background: #39c940;
  color: #fff;
  border: 2px solid currentColor;
}


/* FAQ Page Styles */
.faq-page {
  padding: 60px 0;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: var(--spacing-sm);
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.6;
}

.faq-answer p {
  margin-bottom: var(--spacing-sm);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ────────── FAQ セクション ────────── */
.faq-section {
  padding: var(--spacing-xl) 0;
}

.faq-section .faq-container {
  max-width: 50%;
  margin: 0 auto;
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-md);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--bg-white);
  transition: all var(--transition-base);
  max-height: 600px; /* PC版は600px */
  overflow-y: auto;
}

.faq-section .faq-question {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.4;
}

.faq-section .faq-answer {
  color: #4a5568;
  line-height: 1.6;
}

.faq-section .faq-answer p {
  margin-bottom: 0.75rem;
}

.faq-section .faq-answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .faq-section .faq-container {
    max-height: 400px; /* スマホ・タブレットは400px */
    max-width: 100%;
    font-size: 0.92rem; /* 文字サイズを少し小さく */
  }
  .faq-section .faq-question,
  .faq-section .faq-answer {
    font-size: 0.92rem; /* 質問・回答も小さく */
  }
}

/* ────────── レンタルの流れセクション ────────── */
.rental-flow-section {
  padding: 2rem 0.5rem;
}

.rental-flow-container {
  max-width: 1100px;
  gap: 0.5rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 2rem 0 3rem;
}

.flow-step {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}

.flow-step:hover {
  transform: translateY(-5px);
}

.flow-day {
  position: absolute;
  top: -18px;                /* カードの外に浮かせる */
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 0.2rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #007bff;            /* ブランドカラーなどに合わせて調整 */
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  white-space: nowrap;
  z-index: 2;
}

.flow-header {
  position: static;
  margin-bottom: 2rem;
  z-index: auto;
}

/* 返却方法 */
.return-info {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.return-title {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.return-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #007bff;
}

.return-description {
  color: #4a5568;
  margin: 0;
  line-height: 1.6;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .rental-flow-container {
    flex-direction: column;
    padding: 0.5rem 0;
    gap: 0.5rem;
  }

  .return-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .return-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .rental-flow-section {
    padding: 0.8rem 0.3rem;
  }

  .rental-flow-container {
    gap: 0.3rem;
    padding: 0.3rem 0 0.5rem;
  }
}

/* ────────── モーダルダイアログ ────────── */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}



.modal-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 0.5rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #e0e0e0;
  color: #333;
}

#confirmPrice {
  font-weight: 600;
  color: #007bff;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid #e0e0e0;
  background: #f8fafc;
}


.btn-secondary {
  background: linear-gradient(45deg, #6c757d, #495057);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(45deg, #495057, #343a40);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(108, 117, 125, 0.3);
}

.btn-primary {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #0056b3, #003d80);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
}

/* モーダルのアニメーション */
.modal .animate-fadeInUp {
  animation: modalFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 768px) {
  .modal {
    padding: 10px;
  }

  .modal-footer {
    padding: 1rem;
  }

  button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .bank-info h2,
  .success-container h2{
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .bank-info h2,
  .success-container h2
 {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {

  /* セクション共通 */
  .experience-section,
  .return-section,
  .faq-section,
  .rental-flow-section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1.75rem;
  }

  .service-description,
  .experience-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {

  /* セクション共通 */
  .features-section,
  .experience-section,
  .return-section,
  .faq-section,
  .rental-flow-section {
    padding: 2rem 0.75rem;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  /* テキストサイズ */
  .service-title,
  .experience-title,
  .flow-title {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }

  .service-description,
  .experience-description,
  .flow-description {
    font-size: 0.9rem;
    line-height: 1.4;
  }



  .return-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }


  /* モーダル関連 */
  .modal-footer {
    padding: 1rem;
  }}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.recommend-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: transparent;
  padding: 0;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s ease;
}

.recommend-card:hover {
  transform: translateY(-5px);
}

.recommend-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.recommend-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.recommend-text {
  position: relative;
  background: #fff;
  padding: 25px 45px;
  border-radius: 12px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 300px;
}

.recommend-text::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 15px 0;
  border-color: transparent #fff transparent transparent;
  filter: drop-shadow(-3px 2px 2px rgba(0, 0, 0, 0.1));
}

/* レスポンシブ対応 */
@media (max-width: 1100px) {
  .recommend-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 10px;
  }

  .recommend-card {
    padding: 0;
  }

  .recommend-text {
    font-size: 1rem;
    padding: 15px 20px;
    width: 80%;

    min-width: auto;
  }

  .recommend-icon {
    width: 60px;
    height: 60px;
  }
}

/* ────────── プラン・料金セクション ────────── */
.plans-section {
  padding: var(--spacing-xl) 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}


.plan-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.premium-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 600;
  transform: rotate(15deg);
}

.plan-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
}

.plan-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
   margin: 0;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}

.plan-content {
  padding: 0.5rem;
  flex-grow: 1;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan-features li {
  padding: 0.1rem 0;
  position: relative;
  padding-left: 0.8rem;
  font-size: 1rem;
  line-height: 1.3;
}
.plan-features li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--text-color);
}



.two-column-list li.premium-item::before {
  color: var(--primary-color);
}

.two-column-list li.premium-item {
  color: var(--primary-color);
}
.plan-footer {
  text-align: center;
  margin-top: var(--spacing-sm);
}

.premium {
  border: 2px solid var(--primary-color);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    padding: 0 var(--spacing-md);
  }

  .plan-card {
    padding: var(--spacing-sm);
  }

  .plan-price {
    font-size: 1.3rem;
  }

  .plan-content,
  .plan-footer {
    padding: 0.3rem;
  }
}

@media (max-width: 480px) {
  .plans-section {
    padding: var(--spacing-lg) 0;
  }

  .plan-card {
    padding: var(--spacing-xs);
  }

  .plan-title {
    font-size: 1.1rem;
  }

  .plan-price {
    font-size: 1.2rem;
  }
}

/* プランカードの写真スタイル */
.plan-image {
  width: 75%;
  /* height: 200px; */
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  margin-bottom: var(--spacing-md);
  margin-left: auto;
  margin-right: auto;
}

.plan-image .set-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.plan-card:hover .set-image {
  transform: scale(1.05);
}

/* プランカードの既存スタイルを調整 */
.plan-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: var(--spacing-sm);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.plan-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

/* ────────── 取扱商品紹介セクション ────────── */
.product-intro-section {
  padding: 2rem 1.5rem;
  /* background: rgba(255, 255, 255, 0.1); */
}

.product-intro-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  gap: 2rem;
  padding: 2rem;
  border-radius:7px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.product-images {
  position: relative;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.product-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.prev-slide,
.next-slide {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  color: #333;
}

.prev-slide:hover,
.next-slide:hover {
  background: #fff;
  transform: scale(1.1);
}

.product-description h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.product-specs {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.product-features h4,
.product-safety h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1rem;
}

.product-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.product-features li {
  position: relative;
  padding-left: 1.5rem;
  color: #333;
}

.product-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007bff;
}

.product-safety p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .product-intro-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .product-description h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .title-wrapper {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .hero-buttons .btn {
    margin-bottom: 0;
    width: 50%;
  }
}

.two-column-list {
  columns: 2 200px;
  -webkit-columns: 2 200px;
  -moz-columns: 2 200px;
  column-gap: 2rem;
  list-style: disc inside;
  padding-left: 0;
}
.two-column-list li {
  break-inside: avoid;
  font-size: 1rem;
  color: #333;
}
@media (max-width: 600px) {
  .two-column-list {
    columns: 1;
  }
}

.swiper.rental-flow-swiper {
  max-width: 800px;
  margin: 0 auto;
}

/* --- テントサウナとはセクション --- */
.about-tentsauna-section {
  padding: var(--spacing-xl) 0;
}
.about-tentsauna-content {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--text-color);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .about-tentsauna-content {
    padding: var(--spacing-md) var(--spacing-md);
    font-size: 1rem;
  }
}

/* === 贅沢な非日常体験 横並びレイアウト === */
.experience-flex-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.experience-flex-item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: center;
  margin-bottom: 5rem;
}

.experience-flex-item.reverse {
  flex-direction: row-reverse;
}

.experience-flex-image {
  flex: 1 1 700px;
  max-width: 720px;
}

.experience-flex-image img {
  width: 100%;
  height: auto;
  display: block;
}

.experience-flex-content {
  flex: 1 1 320px;
  max-width: 700px;
}

@media (max-width: 900px) {
  .experience-flex-content {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .experience-flex-content {
    max-width: 100%;
    padding: 0 0.5rem;
    margin-bottom: 0.5rem;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .experience-flex-item {
    gap: 0;
    margin-bottom: 0;
  }
  .experience-flex-item,
  .experience-flex-item.reverse {
    flex-direction: column !important;
    align-items: stretch;
  }
  .experience-flex-image,
  .experience-flex-content {
    max-width: 100%;
  }
  .experience-flex-image {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    flex-basis: auto !important;
    min-height: unset !important;
  }
  .experience-flex-content {
    max-width: 100%;
    flex: none !important;
  }
}

/* === 画像拡大用モーダル === */
.product-slideshow-modal {
  display: none;
  position: fixed;
  z-index: 12000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s;
  display: flex;
}
.product-slideshow-modal img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  background: #fff;
  display: block;
  margin: 0 auto;
  transition: transform 0.2s;
}
@media (max-width: 600px) {
  .product-slideshow-modal img {
    max-width: 98vw;
    max-height: 60vh;
  }
}

@media (max-width: 600px) {
  .banner-image--right {
    object-position: 78% center;
  }
}
