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

:root {
  --header-bg: #c9945f;
  --header-stripe: #ca9a66;
  --primary-green: #5ba876;
  --primary-green-dark: #4a8f63;
  --light-green-1: #c8e6c9;
  --light-green-2: #a5d6a7;
  --light-green-3: #81c784;
  --light-green-4: #66bb6a;
  --text-dark: #3d3d3d;
  --text-light: #666;
  --text-white: white;
  --accent-brown: #d4b896;

  /* アースカラーパレット */
  --earthy-brown: #967259;
  /* 土のような温かみのある茶色 */
  --sandy-beige: #f5f2e9;
  /* HEROセクションとABOUTセクションの背景色 */
  --deep-forest-green: #556B2F;
  /* 深い森のような緑 */
  --muted-terracotta: #BC7860;
  /* 落ち着いたテラコッタ色 */

  /* 背景色 */
  --soft-ivory: #fffef8;
  /* 柔らかいアイボリー */

  /* 低コントラストグラデーション用カラー */
  --subtle-sand-1: #F5F1E9;
  /* 微妙な砂色 1 (最も明るい) */
  --subtle-sand-2: #EFEBE0;
  /* 微妙な砂色 2 */
  --subtle-sand-3: #E8E2D7;
  /* 微妙な砂色 3 */
  --subtle-sand-4: #E1D9CC;
  /* 微妙な砂色 4 (最も暗い) */

  /* Font Sizes */
  /* --font-size-hero-title: 3rem; */
  --font-size-h1: 2.5rem;
  --font-size-h2: 2.2rem;
  --font-size-h3: clamp(1.2rem, 4vw, 1.5rem);
  --font-size-h4: 1.125rem;
  /* 18px */
  --font-size-p: 1rem;
  --font-size-p-large: 1.5rem;

  /* Typography Colors */
  --h1-color: var(--text-dark);
  --h2-color: var(--text-dark);
  --h3-color: var(--text-dark);
  --h4-color: var(--text-dark);
}


/* Poppins　ー　　M PLUS Rounded 1c　ー　　Zen Kaku Gothic Antique */
body {
  /* font-family: 'Zen Kaku Gothic Antique', sans-serif; */
  /* font-family: 'M PLUS Rounded 1c', sans-serif; */
  font-family: 'Poppins', 'M PLUS Rounded 1c', sans-serif;
  overflow-x: hidden;
}





.section-title {
  font-size: clamp(1.8rem, 5vw, var(--font-size-h2));
  color: var(--h2-color);
  font-weight: bold;
  padding: 0;
  margin-bottom: 5px;

}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
  /* z-index: 2; */
}

/* セクションの余白調整 */
@media screen and (max-width: 750px) {
  .section-container {
    padding: 60px 20px;
  }

}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 750px) {
  .section-header {
    margin-bottom: 40px;
  }
}

/* 上部固定ヘッダー用のスタイル */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  /* 高さを自動調整 */
  display: flex;
  justify-content: space-between;
  /* ロゴとメニューを両端に配置 */
  transition: all 0.3s ease;
  z-index: 2000;
  /* 十分に高い値に設定 */
  padding: 5px 5% 5px 5%;
  /* 左右に余白を追加 */
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.1);
  /* わずかに背景色を付ける */
  backdrop-filter: blur(5px);
  /* 背景をぼかしてテキストを読みやすく */
  -webkit-backdrop-filter: blur(5px);
}

.top-header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.top-header nav ul {
  display: flex;
  flex-direction: row !important;
  /* 横並びを強制 */
  padding: 0;
  /* 元のスタイルをリセット */
}

.top-header nav ul li {
  margin: 0 15px;
  /* 横方向のマージンに変更 */
}

/* ヘッダーの高さ分、最初のセクションの上部に余白を設ける */
.content-offset {
  /* padding-top: 80px; */
  /* ヘッダーの高さに合わせて調整 */
}


nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ハンバーガーメニューボタンの基本スタイル */
.hamburger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
}

.hamburger span {
  display: block;
  position: absolute;
  left: 5px;
  width: 30px;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 11px;
}

.hamburger span:nth-child(2) {
  top: 19px;
}

.hamburger span:nth-child(3) {
  top: 27px;
}

/* ハンバーガーメニュー開閉時のアニメーション */
.hamburger.is-active span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

.logo {
  /* display: flex; */
  /* align-items: center; */
  /* gap: 10px; */

  font-weight: bold;
  color: var(--text-dark);
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style: none;


}

nav a {
  text-decoration: none;
  color: #33443c;
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  /* 縦並びに変更 */
  align-items: center;
  /* 中央揃え */
  gap: 2px;
  /* 日本語と英語の間隔 */
  /* padding: 8px 40px 8px 20px; */
  border-radius: 8px;
  transition: transform 0.3s ease-in-out, background-color 0.3s;
}

nav a::before {
  content: '🥕';
  display: inline-block;
  opacity: 0;
  width: 0;
  /* margin-right: 1rem; */
  /* アイコンの幅をアニメーションさせる */
  transition: opacity 0.3s ease-in-out, width 0.3s ease-in-out;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

nav a:hover::before {
  opacity: 1;
  width: 1em;
  /* アイコンが表示される際の幅を指定 */
}

nav a::after {
  content: attr(data-en);
  /* data-en属性の値を取得 */
  font-size: 0.7rem;
  color: var(--accent-brown);

  letter-spacing: 0.5px;
  transition: color 0.3s;
}

nav a:hover::after {
  color: #61381b;
  /* ホバー時の色 */
}




/* 波型つなぎ目------------------------------------------------------------



--------------------------------------------------------------------- */

.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  /* transform: rotate(180deg); 波の向きを反転 */
}

.wave-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  /* 波の高さを調整 */
}

.wave-top .shape-fill {
  fill: var(--sandy-beige);
  /* ABOUTセクションの背景色 */
}

.wave-ivory .shape-fill {
  fill: var(--sandy-beige);
  /* ギャラリーセクションの背景色に合わせる */
}

.wave-soft-ivory .shape-fill {
  fill: var(--soft-ivory);
  /* こだわりセクションの背景色に合わせる */
}


.wave-bottom {
  bottom: 0;
  top: auto;
}

.wave-bottom .shape-fill {
  fill: #FFFFFF;
}




/* フッター ------------------------------------------------------------------------------------------*/
.footer {
  position: relative;
  overflow: hidden;
  background: var(--sandy-beige);
}

.footer-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 60px;
  align-items: start;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  /* 縦並びに変更 */
  align-items: center;
  gap: 25px;
  /* 要素間のスペース */
}

.footer-logo svg {
  filter: drop-shadow(0 4px 10px rgba(91, 168, 118, 0.2));
}

.footer-brand h3 {
  font-size: 24px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.footer-brand p {
  font-size: 16px;
  color: var(--text-light);
  text-align: center;
  letter-spacing: 1px;
}

.section-header .subtitle {
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  color: #888;
  font-weight: 300;
}

.footer-tagline {
  font-size: 12px;
  color: #999;
  display: block;
  text-align: center;
  margin-top: 8px;
}

.footer-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  /* 正円にする */
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-info-card {
  text-align: center;
  padding: 25px;
  background: #f9f9f9;
  border-radius: 20px;
  transition: all 0.3s;
}

.footer-info-card:hover {
  background: #f0f7f1;
  transform: translateY(-5px);
}

.info-icon {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.info-text h4 {
  font-size: var(--font-size-h4);
  color: var(--h4-color);
  margin-bottom: 10px;
}

.info-text p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.footer-cta {
  background: white;
  padding: 50px;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 40px;
  border: 2px solid #e0e0e0;
}

.cta-content h3 {
  font-size: var(--font-size-h3);
  color: var(--h3-color);
  margin-bottom: 12px;
}

.cta-content p {
  font-size: var(--font-size-p);
  color: var(--text-light);
}

.cta-button {
  padding: 18px 45px;
  background: var(--primary-green);
  color: var(--text-white);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(91, 168, 118, 0.3);
}

.cta-button:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 168, 118, 0.4);
}

.footer-main-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
  /* border-top: 1px solid #e0e0e0; */
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-green);
}

@media screen and (max-width: 750px) {
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 20px;
  }

  .footer-links a {
    font-size: 13px;
  }
}

.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 3rem;
}

.footer-copyright p {
  font-size: 13px;
  color: #999;
}

@media screen and (max-width: 750px) {
  .footer-copyright {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.footer-legal {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 13px;
}

.footer-legal a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--primary-green);
}

.footer-legal span {
  color: #ddd;
}




/* プライバシーポリシー */


.privacy-policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  margin-top: 5rem;
}

.privacy-policy-title {
  font-size: 36px;
  color: #2d5016;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
}

.intro {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

h2 {
  font-size: 22px;
  color: #2d5016;
  margin-bottom: 15px;
  padding-bottom: 10px;
  /* border-bottom: 2px solid #e8f5e0; */
  font-weight: 600;
}

h3 {
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  color: #2d5016;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

p {
  margin-bottom: 15px;
  color: #555;
}

ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

li {
  margin-bottom: 8px;
  color: #555;
}

.date {
  text-align: right;
  color: #777;
  font-size: 14px;
  margin-top: 40px;
}

footer {
  background-color: #2d5016;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
}

footer p {
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 20px;
  }

  .intro,
  .section {
    padding: 20px;
  }

  .container {
    padding: 40px 15px;
  }
}



/* 利用規約 */

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.terms-title1 {
  font-size: 36px;
  color: #2d5016;
  margin: 3rem 0 1rem;
  text-align: center;
  font-weight: 600;
}


/* ハンバーガーメニューレスポンシブ ----------------------------------------------------

-----------------------------------------------------------------

*/
@media screen and (max-width: 750px) {
  .hamburger {
    display: block;
  }

  #nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1050;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
  }

  #nav-menu.is-active {
    right: 0;
  }

  #nav-menu ul {
    flex-direction: column !important;
    align-items: center;
    gap: 20px;
  }

  #nav-menu ul li {
    margin: 10px 0;
  }

  nav a {
    font-size: 1.2rem;
    padding: 10px 20px;
  }

  nav a:hover {
    transform: none;
    background: none;
  }