@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap');
/* ベース設定 */
html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Noto Serif JP', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

/* 共通：PCでは非表示 */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}


@media (max-width: 768px) {
  body { font-size: 14px; }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }

  .header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .menu-toggle  {
    display: block;   /* ← スマホでは表示 */
    font-size: 2rem;
    color: white;
    cursor: pointer;
    position: relative;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
    background: #1F3B2A;
    width: 100%;
    padding: 0 20px;
    position: absolute;
    top: 100%;
    left: 0;
    box-sizing: border-box;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .nav.open {
    max-height: 500px;
    padding: 10px 20px;
  }
}


h1, h2 {
  margin: 0 0 20px;
}

/* ヘッダー */
.header {
  background:#1F3B2A;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position:fixed;
  width:100%;
  top: 0px;
  left: 0px;
  z-index: 10;
}


.logo {
  font-size: 1.5rem;
}



.nav {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0 40px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: flex;          /* アイコンと文字を縦中央に */
  align-items: center;
}

.nav i {
  font-size: 1.5rem; /* アイコンの大きさ */
  color: white;      /* 白で表示 */
  display: inline-block; /* 潰れ防止 */
}












/* メインビジュアル */
.hero {
    position:relative;
  background: url("https://cdn.pixabay.com/photo/2016/12/17/18/51/spices-1914130_1280.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 200px 20px 160px 20px;
  height: 200px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  color: #fff;
}
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 80px 20px;
    height: auto;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 49, 52, 0.5); /* 半透明のオーバーレイ */
  z-index: 1;
}

.hero h2,
.hero p,
.hero .btn {
  position: relative;
  z-index: 2; /* オーバーレイより前に表示 */
}   
.hero h2 {
  font-size: 2rem;
}


.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}


.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #5A7D63; /* リーフグリーン */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}


.btn:hover {
  background: #EFA8A8; /* ピンク */
}


/* セクション共通 */
.section {
  padding: 60px 20px;
  background-color: #f5f1e6;
}


.section h2{
    color:#d6c7a1;
    border-top:5px double #4d4040 ;
    border-bottom: 5px double #4d4040;
}

.section .container {
  max-width: 900px;
  margin: auto;
}

@media (max-width: 768px) {
  .section {
    padding: 40px 10px;
  }
}
/* サロン紹介セクション */
.about {
  display: flex;
  gap: 20px; /* 左右の余白 */
  align-items: center; /* 縦方向中央揃え */
  margin-top: 20px;
}

.about-left img{
    width: 400px;
    height: 400px;
    object-fit: contain;
}

@media (max-width: 768px) {
  .about {
    flex-direction: column; /* 縦並びにする */
    align-items: center;    /* 中央寄せ */
  }

  .about-left img {
    width: 300px;  /* モバイル用に少し小さめ */
    height: auto;
    margin-top: 20px;
  }
}

/* よもぎ蒸しセクション */
.yomogi {
  display: flex;
  gap: 20px; /* 左右の余白 */
  align-items: center; /* 縦方向中央揃え */
  margin-top: 20px;
}
.yomogi-right img{
    width: 400px;
    height: 400px;
    object-fit: contain;
}

@media (max-width: 768px) {
  .yomogi {
    flex-direction: column; /* 縦並びにする */
    align-items: center;    /* 中央寄せ */
  }

  .yomogi-right img {
    width: 300px;  /* モバイル用に少し小さめ */
    height: auto;
    margin-top: 20px;
  }
  .yomogi-left { order: 2; }
  .yomogi-right { order: 1; }

}
/* パーソナルトレーニングセクション */
.training {
  display: flex;
  gap: 20px; /* 左右の余白 */
  align-items:center; /* 縦方向上揃え */
  margin-top: 20px;
}
.training-left img{
    width: 400px;
    height: 400px;
    object-fit: contain;
}

@media (max-width: 768px) {
  .training {
    flex-direction: column; /* 縦並びにする */
    align-items: center;    /* 中央寄せ */
  }

  .training-left img {
    width: 300px;  /* モバイル用に少し小さめ */
    height: auto;
    margin-top: 20px;
  }
}
/* よもぎ蒸し×パーソナルトレーニングセクション */
.combo1 {
  display: flex;
  gap: 20px; /* 左右の余白 */
  align-items: center; /* 縦方向中央揃え */
  margin-top: 20px;
}
.combo2 {
  display: flex;
  gap: 20px; /* 左右の余白 */
  align-items: center; /* 縦方向中央揃え */
  margin-top: 20px;
}

.combo1-right img{
    width: 400px;
    height: 400px;
    object-fit: contain;
}
.combo2-left img{
    width: 400px;
    height: 400px;
    object-fit: contain;
}

@media (max-width: 768px) {
  .combo1, .combo2 {
    flex-direction: column; /* 縦並びにする */
    align-items: center;    /* 中央寄せ */
  }

  .combo1-right img, .combo2-left img {
    width: 300px;  /* モバイル用に少し小さめ */
    height: auto;
    margin-top: 20px;
  }

  .combo2-left { order: 2; }
  .combo2-right { order: 1; }
}


/* メニューセクション */

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

.menu-list li {
  display: flex;
  justify-content: space-between; /* 左右に振り分け */
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.menu-name {
  font-weight: 500;
}

.menu-price {
  font-weight: bold;
  color: #444;
  white-space: nowrap; /* 改行防止 */
}

@media (max-width: 768px) {
  .menu-list li {
    flex-direction: column; /* 縦並びにする */
    align-items: flex-start; /* 左寄せ */
  }

  .menu-price {
    margin-top: 5px; /* 上下の余白 */
  }
}
/* FAQセクション */

.faq {
max-width: 900px;
margin: 20px auto;
font-family: sans-serif;
background-color: #f5f1e6;
}

.faq-item {
border-bottom: 1px solid #ddd;
padding: 10px 0;
}

.faq-question {
cursor: pointer;
font-weight: bold;
position: relative;
}

.faq-question::after {
content: "+";
position: absolute;
right: 0;
transition: transform 0.3s;
}

.faq-question.active::after {
content: "-";
}

.faq-answer {
display: none;
padding: 10px 0;
color: #555;
}

.faq-answer.show {
display: block;
}

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

/*アクセスセクション*/
.access{
  display: flex;
  justify-content: space-between; /* 左右に配置 */
  gap: 20px;                      /* 余白 */
}

.access-left {
  flex: 1; /* 左側を広めに */
}

.access-right {
  flex: 0 0 auto; /* ロゴ画像は固定幅 */
}

.access-right img {
    padding-top: 16px;
  width: 400px;
  height: 400px;
  object-fit: contain; /* ロゴが潰れないように */
}



/* ▼スマホ対応 */
@media (max-width: 768px) {
  .access {
    flex-direction: column; /* 縦並びにする */
    align-items: center;    /* 中央寄せ */
  }

  .access-right img {
    width: 300px;  /* モバイル用に少し小さめ */
    height: auto;
    margin-top: 20px;
  }

  iframe {
    width: 100%;  /* 画面幅に合わせる */
    height: 250px;
  }
}

/* フォーム */
.contact {
  background:#1F3B2A; /* 外側の濃いグリーン背景 */
  padding: 40px 20px;
  text-align: center;
}



.contact-container {
  background: #fff; /* 中の白いボックス */
  padding: 30px;
  max-width: 900px;
  margin: 0 auto;
}



.contact h2 {
  font-size: 1.8rem;
  color: #4d4040;
  margin-bottom: 15px;
}


.contact p {
  color: #6a5c5c;
  margin-bottom: 20px;
  line-height: 1.6;
}



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



.contact-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #5A7D63; /* リーフグリーン */
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.3s;
}


}

.contact-btn:hover {
  background: #EFA8A8; /* ピンク */
}

.contact-info {
  background: #d6c7a1; /* 電話番号部分のベージュ背景 */
  padding: 15px;
  margin-top: 20px;
}


.contact-info p {
  margin: 5px 0;
  color: #4d4040;
}

.contact-info a {
  color: #3a4bb3; /* 電話番号を青で強調 */
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}


/* フッター */
.footer {
  background:#1F3B2A;
  color: white;
  text-align: center;
  padding: 15px 0;
}

@media (max-width: 768px) {
  .footer {
    font-size: 14px;
  }
  
}