/**********************************************
1. 全体設定（基本スタイル）
**********************************************/
:root {
  --bg: #ffffff;
  --text: #111;
  --muted: #6b6b6b;
  --accent: #1a1a1a;
  --container: 1250px;
  font-family: 'Noto Sans JP', sans-serif;
    font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

html, body {
  overflow-x: hidden;
}

h2 {
  color: #006400;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダー共通 */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eee;
  z-index: 40;
}

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

.logo {
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--accent);
  text-decoration: none;
}

.site-nav ul {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  z-index: 50;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #222;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}




/*==================== ハンバーガーメニュー ===================*/

@media screen and (max-width:1000px) {

  /* ナビ本体（隠れている状態） */
  #site-nav {
      position: fixed;
      top: 0;
      left: -120%;           /* leftから */
      width: 100%;
      height: 100vh;
      background: #fff;
      transition: all 0.6s;
      z-index: 100;
      opacity: 0;
      pointer-events: none;
  }

  #site-nav.panelactive {
      left: 0;               
      opacity: 1;            /* ← 透明解除 */
      pointer-events: auto;  /* ← クリック可能 */
  }

  #site-nav ul {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      gap: 25px;
      text-align: center;
  }

  #site-nav li a {
      color: #111;
      font-size: 1.5rem;
      text-decoration: none;
      letter-spacing: 0.1em;
  }

  /* ハンバーガー本体 */
  .openbtn {
      position: absolute;
      right: 20px;
      top: 14px;
      cursor: pointer;
      width: 45px;
      height: 45px;
      z-index: 300;
  }

  .openbtn span {
      position: absolute;
      left: 8px;
      width: 60%;
      height: 3px;
      background: #111;
      border-radius: 2px;
      transition: 0.4s;
  }

  .openbtn span:nth-of-type(1) { top: 12px; }
  .openbtn span:nth-of-type(2) { top: 21px; }
  .openbtn span:nth-of-type(3) { top: 30px; }

  /* × に変化 */
  .openbtn.active span:nth-of-type(1) {
      transform: rotate(45deg);
      top: 21px;
  }
  .openbtn.active span:nth-of-type(2) {
      opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
      transform: rotate(-45deg);
      top: 21px;
  }
}


/**********************************************
2. ヒーローセクション
**********************************************/
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  color: #fff;
  margin-bottom: 0;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(28px, 6vw, 48px);
  margin: 0 0 12px;
}

.lead {
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.95);
}

.btn {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.section-title {
  font-size: 2.2rem;  /* ← 好きな大きさに変更 */
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 26px;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }
}



/**********************************************
3. 初めてのかたへ
**********************************************/

.first-visit-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.first-visit-title {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
}

.first-visit-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333;
}

.first-visit-btn a {
  display: inline-block;
  padding: 14px 32px;
  background-color: #3a7d6d;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.first-visit-btn a:hover {
  background-color: #2f6658;
  transform: translateY(-2px);
}


.first-visit {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 48px; /* 線との距離 */
}



.first-visit-image {
  width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: block;
  margin-bottom: 32px;

}



/* スマホでは突き抜けを解除 */
@media screen and (max-width: 768px) {
  .first-visit-image {
    margin-left: 0;
    margin-right: 0;
  }

  .first-visit-image img {
  width: 100%;
  height: auto;
  display: block;
}

}




/**********************************************
3. 特徴セクション（完全版）
**********************************************/

/* 特徴 全体 */
.features-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
}

/* 左：特徴リスト */
.feature-card {
  flex: 1;
}

/* 1行ずつ */
.feature-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.feature-number {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4f8f6;
  color: #006400;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bfe3cf;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 4px 12px rgba(0,100,0,0.15);
}


#features .section-title {
  text-align: center;
  font-size: 2.2rem;     /* 少し大きく */
  font-weight: 800;
  margin-bottom: 50px;   /* 下の余白をしっかり */
}

/* テキスト */
.feature-text h4 {
  font-size: 1.25rem;   /* ← ここが一番効く */
  font-weight: 800;
  margin: 0 0 8px;
  color: #111;
  letter-spacing: 0.05em;
}

.feature-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}


/* 右：画像 */
.features-image {
  flex: 1;
}

.features-photo {
  width: 100%;
  height: auto;
   border-radius: 12px;
}

#features {
  background: #fff;
  padding: 90px 0;
}

#features {
  background: #fff;
  padding: 90px 0;
}

#features .container {
  text-align: left;   /* ← 超重要 */
}

/* 横並びの本体 */
#features .features-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* 左右の比率 */
#features .feature-card {
  flex: 0 0 55%;
}

#features .features-image {
  flex: 0 0 45%;
}

/* 画像 */
#features .features-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}




@media (max-width: 768px) {
  .features-wrapper {
    flex-direction: column;
  }

  .features-image {
    order: -1; /* 画像を上 */
  }

  #features {
    padding: 70px 0;
  }

  #features .section-title {
    text-align: center;
  }

  .features-photo {
    border-radius: 20px;
  }
}




/**********************************************
4. 推薦・お客様の声
**********************************************/
#voices,
#customer-voices {
  width: 100%;
  padding: 20px 0;
  text-align: center;
  background-color: #f5f8f7;
}

#voices .grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  justify-items: center;
}

#customer-voices .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

#voices .card,
#customer-voices .card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}



#voices .card:hover,
#customer-voices .card:hover {
  transform: translateY(-4px);
}

#voices .voice-photo,
#customer-voices .voice-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}

#voices h4,
#customer-voices h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #3f5c22;
}

#voices p,
#customer-voices p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.more-voices {
  margin-top: 30px;
}

.more-voices .btn-voices {
  display: inline-block;
  background-color: #111;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.more-voices .btn-voices:hover {
  background-color: #444;
  transform: translateY(-2px);
}


/* 口コミメタ情報 */
.voice-meta {
  margin-bottom: 10px;
}

/* 星 */
.stars {
  color: #f5b400;          /* 口コミ定番のゴールド */
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

/* 性別・年齢 */
.profile {
  font-size: 0.85rem;
  color: #777;
}



@media (max-width: 768px) {
  #customer-voices {
    display: none;
  }
}


/**********************************************
4. 推薦・お客様の声スマホ
**********************************************/


.section-title {
  text-align: center;
}


.rvw-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 16px;
}

.rvw-card {
  padding: 24px 32px;
  border-bottom: 1px solid #e5e5e5;
}


.rvw-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.rvw-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.rvw-user {
  display: flex;
  flex-direction: column;
}

.rvw-username {
  font-weight: 600;
  margin: 0;
}

.rvw-userinfo {
  font-size: 13px;
  color: #777;
  margin: 2px 0;
}

.rvw-rating {
  font-size: 14px;
  letter-spacing: 1px;
}

.rvw-heading {
  font-size: 16px;
  font-weight: 600;
  margin: 12px 0 8px;
}

.rvw-body p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 12px;
  color: #333;
}

.rvw-time {
  font-size: 12px;
  color: #999;
}


/* デフォルト：PC・タブレットでは非表示 */
.rvw-wrap {
  display: none;
}

.more-voices {
  text-align: center;
}


/* スマホだけ表示 */
@media (max-width: 768px) {
  .rvw-wrap {
    display: block;
  }
}



/**********************************************
5. 料金セクション（PROCESS）
**********************************************/
#process {
  width: 100%;
  padding: 80px 0;
  background-color: #f9f9f9;
  text-align: center;
}

/* ===== カード全体 ===== */
.process-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 30px;
  border-radius: 12px;
  background-color: #fbfcfc;  /* ← グレー背景に変更 */
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 40px;
}

/* ホバー */
.process-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* 画像側 */
.process-image {
  text-align: center;
}

.process-icon {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* テキスト側 */
.process-text h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.process-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

/* 詳しく見るボタン */
.more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  background-color: #111;
  color: #fff;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

.more-btn:hover {
  background-color: #444;
  transform: translateY(-2px);
}

/* ===== リンクなしカード（シンプル表示） ===== */
.process-item.no-link-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 25px 20px;
  max-width: 420px;
  margin: 0 auto 40px;
  border-radius: 12px;
  background-color: #fafafa; /* ← こちらもグレーに統一 */
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.process-item.no-link-item .process-text h3 {
  margin: 0;
  font-weight: 600;
  font-size: 1.2rem;
  color: #333;
}

/* 下の文章が真ん中に来るように */
.center-text {
  text-align: center;
  max-width: 400px;
  margin: 0 auto 40px;
}

.big-title {
  font-size: 1.5rem;   /* 好きな大きさに変更 */
  font-weight: 700;
  text-align: center; /* 必要なら */
  font-family: 'Aozora Mincho', serif;
  padding-top: 20px;
}


/* ===== スマホ対応 ===== */
@media screen and (max-width: 768px) {

  .process-item {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 25px 20px;
  }

  .process-text h3 {
    font-size: 1.3rem;
  }

  .process-text p {
    font-size: 0.95rem;
  }

/* スマホのときカードを中央寄せに */


  .process-grid {
    display: flex;
    flex-direction: column;
    align-items: center;    /* ← これで中央寄せ */
    padding: 0;
  }

  .process-item {
    width: 90%;             /* ← 横幅を縮めて真ん中に見えるように */
    max-width: 450px;       /* ← PCみたいに巨大にならないように制限 */
    margin: 0 auto 30px;
  }
}




/**********************************************
6. アクセス
**********************************************/
#access {
  width: 100%;
  padding: 64px 0;
  background-color: #f5f8f7;
}

#access .grid-2 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
}

#access .access-info p {
  line-height: 1.8;
  font-size: 1rem;
  color: #333;
  margin: 8px 0;
}



/* マップを大きく＆中央表示 */ 
#access .access-map { 
  display: flex; 
  justify-content: center; 
  width: 100%; 
} 

#access .access-map iframe { 
  width: 100%; /* 親幅いっぱい */ 
  max-width: 900px; /* 最大幅 */ 
  height: 350px; /* 高さ */ 
  border: 0; 
  border-radius: 10px; 
}

#access h2 {
  text-align: center;
}


/**********************************************
7. 予約・お問い合わせ
**********************************************/
#contact {
  width: 100%;
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-buttons a {
  padding: 12px 0;
  font-size: 0.95rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  color: #fff;
  min-width: 120px;
}

.contact-buttons .line-btn { background-color: #00c300; }
.contact-buttons .line-btn:hover { background-color: #009900; }
.contact-buttons .phone-btn { background-color: #1a73e8; }
.contact-buttons .phone-btn:hover { background-color: #155ab6; }

.book {
  display: none;
}

@media screen and (max-width: 768px) {
  .contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: space-around;
    padding: 10px 0;
    background-color: #fff;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    z-index: 10000;
  }

  .contact-buttons a {
    flex: 1;
    margin: 0 5px;
  }
}



/**********************************************
8. インスタ
**********************************************/
.insta-center {
  text-align: center;
  margin: 20px 0;
  background-color: #fff;
}

.insta-link {
  display: inline-block;
}

.insta-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.insta-icon:hover {
  transform: scale(1.1);
}

/**********************************************
9. フッター
**********************************************/
.site-footer {
  background: #111;
  color: #fff;
  padding: 20px 0;
  font-size: 0.9rem;
  text-align: center;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  margin: 0;
}

/**********************************************
10. レスポンシブ
**********************************************/
@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 48vh;
  }

  
  /* スマホ用予約ボタン固定 */
  .contact-buttons .line-btn,
  .contact-buttons .phone-btn {
    position: fixed;
    bottom: 0;
    width: 50%;
    border-radius: 0;
    padding: 12px 0;
    z-index: 1000;
  }

  .contact-buttons .line-btn { left: 0; }
  .contact-buttons .phone-btn { right: 0; }
}


