/* ベースとリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4D8C57; /* 翡翠綠 */
  --secondary-color: #8E5E3F; /* 茶褐色 */
  --accent-color: #D4AF37; /* 金色 */
  --light-color: #F8F6F0; /* 淡米色 */
  --dark-color: #2D3E40; /* 深青藍 */
  --text-color: #333333; /* 墨黒 */
  --bg-pattern: #F9F6F0; /* 淡米色パターン */
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

body {
  font-family:  Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
}

/* タイポグラフィ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.3rem;
  position: relative;
  margin-bottom: 2.5rem;
}

h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -15px;
  left: 0;
}

.LotusRiverHeading h2::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

.MistVeilWrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.LotusRiverHeading {
  text-align: center;
  margin-bottom: 3rem;
}

.LotusRiverHeading p {
  max-width: 700px;
  margin: 0 auto;
}

/* ボタン */
.JadeMistBtn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.JadeMistBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition);
}

.JadeMistBtn:hover::before {
  left: 100%;
}

.JadeMistBtn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: white;
}

.BambooSteamBtn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 25px;
  display: inline-block;
  font-weight: 600;
  transition: var(--transition);
  border-radius: 4px;
}

.BambooSteamBtn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.LotusFullBtn {
  width: 100%;
  text-align: center;
}

.CeramicPotActions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ヘッダー */
.LeafWhisperNavigation {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 15px 0;
  backdrop-filter: blur(5px);
}

.LeafWhisperNavigation .MistVeilWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.JadeDewIdentity {
  display: flex;
  align-items: center;
}

.OrchidMistText {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.JasmineLightAccent {
  color: var(--primary-color);
}

.MountainBrewSymbol {
  height: 40px;
  margin-right: 10px;
}

.CloudMistLink {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.OolongPathMenu {
  display: flex;
}

.PeonyLeafLinks {
  display: flex;
  list-style: none;
}

.PeonyLeafLinks li {
  margin-left: 30px;
}

.PeonyLeafLinks a {
  color: var(--secondary-color);
  font-weight: 600;
  position: relative;
}

.PeonyLeafLinks a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.PeonyLeafLinks a:hover::after {
  width: 100%;
}

/* ヒーローセクション */
.TieguanyinZenithHero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--secondary-color);
  color: white;
  overflow: hidden;
  padding: 0 20px;
  margin-top: 70px; /* ヘッダーの高さを補償 */
}

.MoonlightSnowOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.3);
  z-index: 1;
}

.OsmanthusBrewContent {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.TieguanyinZenithHero h1 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  line-height: 1.2;
}

.TieguanyinZenithHero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* セクションスタイル */
section {
  padding: 5rem 0;
}

/* 茶製品グリッド */
.WillowStreamGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.FrostLeafItem {
  background-color: white;
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
  border-radius: 8px;
}

.FrostLeafItem:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.MoonlightNectarImage {
  height: 220px;
  overflow: hidden;
}

.MoonlightNectarImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.FrostLeafItem:hover .MoonlightNectarImage img {
  transform: scale(1.1);
}

.GinsengPetalContent {
  padding: 1.5rem;
}

.OrchidFragranceList {
  list-style: none;
  margin-bottom: 1.5rem;
}

.OrchidFragranceList li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.OrchidFragranceList li::before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.PeonyMistPricing {
  font-weight: 600;
  color: var(--secondary-color);
}

.JasmineAmountText {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* 2カラムレイアウト */
.GinsengValleyLayout {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.PeonyWindColumn {
  flex: 1;
}

.LotusDecoImage {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.LotusDecoImage img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.LotusDecoImage:hover img {
  transform: scale(1.03);
}

/* イメージ装飾要素 */
.OsmanthusFrameDecor {
  position: relative;
}

.OsmanthusFrameDecor::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 5px solid var(--accent-color);
  top: -15px;
  left: -15px;
  z-index: -1;
  border-radius: 4px;
}

/* 訂閱計劃セクション */
.RoseDewOptions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  flex-wrap: wrap;
}

.MoonPearlPlan {
  background-color: white;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  width: 100%;
  max-width: 350px;
  position: relative;
}

.MoonPearlPlan:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.DragonEliteChoice {
  border: 2px solid var(--primary-color);
}

.OsmanthusPopularTag {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
}

.GinsengMistTitle {
  text-align: center;
  margin-bottom: 1rem;
}

.OsmanthusRainPrice {
  text-align: center;
  margin-bottom: 2rem;
}

.GreenMistPeriod {
  font-size: 1rem;
  color: #777;
}

.DragonBreathFeatures {
  list-style: none;
  margin-bottom: 2rem;
}

.DragonBreathFeatures li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 25px;
}

.DragonBreathFeatures li::before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* 製茶工藝セクション */
.CrystalStreamProcess {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  gap: 1.5rem;
}

.PeachBlossomStage {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.PeachBlossomStage:hover {
  transform: translateY(-5px);
}

.LotusRadianceIcon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.CrystalDewImages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.IvoryCloudImage {
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.IvoryCloudImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.IvoryCloudImage:hover img {
  transform: scale(1.1);
}

/* レビューセクション */
.PearlDewReview {
  background-color: var(--secondary-color);
  color: white;
  padding: 5rem 0;
}

.PearlDewReview h2, 
.PearlDewReview h3, 
.PearlDewReview h4 {
  color: white;
}

.PearlDewReview h2::after {
  background-color: var(--accent-color);
}

.JasminePetalCollection {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.MoonlightMemoryCard {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  transition: var(--transition);
}

.MoonlightMemoryCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.MoonlightMemoryCard::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 5rem;
  opacity: 0.1;
  line-height: 1;
}

.GreenTerraceText {
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.ClayPotCredit {
  display: flex;
  align-items: center;
}

.TeaRoasterProfile h4 {
  margin-bottom: 0.2rem;
}

.TeaRoasterProfile p {
  margin-bottom: 0;
  color: var(--accent-color);
  font-size: 0.9rem;
}

/* 健康効果グリッド */
.OsmanthusGardenGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.JadePetalBenefit {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: white;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-radius: 8px;
}

.JadePetalBenefit:hover {
  transform: translateY(-5px);
}

.PeonyEssenceIcon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* 沖泡指南セクション */
.AzureLightSteps {
  counter-reset: step-counter;
  list-style: none;
  margin-bottom: 2rem;
}

.AzureLightSteps li {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 50px;
}

.AzureLightSteps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* FAQ */
.OsmanthusQueryBox {
  max-width: 800px;
  margin: 0 auto;
}

.JasmineRainItem {
  margin-bottom: 1.5rem;
  background-color: white;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.GinsengLeafQuestion {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.GinsengLeafQuestion::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-color);
  position: absolute;
  right: 1.5rem;
}

.WillowDewAnswer {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* お問い合わせフォーム */
.JadeLeafConnect {
  background-color: var(--bg-pattern);
}

.WisteriaMistSplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.OolongRouteInfo h3 {
  margin-bottom: 2rem;
}

.PetalReachItem {
  display: flex;
  margin-bottom: 1.5rem;
}

.MossHillDirections {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.PeonyQueryForm {
  background-color: white;
  padding: 2rem;
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.DewDropGroup {
  margin-bottom: 1.5rem;
}

.DewDropGroup label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.MistDataField {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: var(--transition);
}

.MistDataField:focus {
  outline: none;
  border-color: var(--primary-color);
}

textarea.MistDataField {
  min-height: 150px;
  resize: vertical;
}

/* 免責事項セクション */
.JasmineCloudDisclaimer {
  background-color: #f8f8f8;
  padding: 30px 0;
  border-top: 1px solid #eee;
}

.OsmanthusDisclaimerContent {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.OsmanthusDisclaimerContent h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.OsmanthusDisclaimerContent h2::after {
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
}

.OsmanthusDisclaimerContent p {
  font-size: 0.9rem;
  color: #666;
}

/* フッター */
.OolongMistFooter {
  background-color: var(--dark-color);
  color: white;
  padding: 3rem 0 1rem;
  text-align: center;
}

.JadePathAbout {
  margin-bottom: 2rem;
}

.GinsengEndLogo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.PeonyDeepAccent {
  color: var(--primary-color);
}

.JadePathAbout p {
  max-width: 800px;
  margin: 0 auto;
}

.PeonyEndContact {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.JasmineFinalCopyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* レスポンシブスタイル */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .WisteriaMistSplit {
    grid-template-columns: 1fr;
  }
  
  .RoseDewOptions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .LeafWhisperNavigation .MistVeilWrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .OolongPathMenu {
    margin-top: 15px;
  }
  
  .PeonyLeafLinks li {
    margin: 0 10px;
  }
  
  .GinsengValleyLayout {
    flex-direction: column;
    gap: 2rem;
  }
  
  .CeramicPotActions {
    flex-direction: column;
  }
  
  .LotusDecoImage {
    margin: 0 auto;
    max-width: 500px;
  }
  
  .CrystalStreamProcess {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .MistVeilWrapper {
    width: 95%;
  }
  
  .OolongPathMenu {
    overflow-x: auto;
    width: 100%;
  }
  
  .PeonyLeafLinks {
    padding-bottom: 10px;
  }
}



 /* 免責聲明頁面特定スタイル */
 .PearlMistContent {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  margin: 2rem auto;
  max-width: 800px;
}

.JadeDustSection {
  margin-bottom: 2.5rem;
}

.JadeDustSection:last-child {
  margin-bottom: 0;
}

.BambooLeafTitle {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.PearlMistContent p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.MistReturnLink {
  display: inline-block;
  margin-top: 2rem;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.MistReturnLink:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .PearlMistContent {
      padding: 2rem;
      margin: 1rem;
  }
}





.thank-you-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f8f8f8;
  font-family: Arial, sans-serif;
  text-align: center;
}

.thank-you-container {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 90%;
}


.thank-you-icon {
  font-size: 50px;
  color: #4CAF50;
  margin-bottom: 15px;
}


.thank-you-title {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}


.thank-you-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}


.thank-you-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background: #4CAF50;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}


.thank-you-btn:hover {
  background: #388E3C;
}



.privacy-page {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f8f9fa;
}

.privacy-container {
  max-width: 900px;
  width: 90%;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.privacy-title {
  text-align: center;
  font-size: 2rem;
  color: #222;
}

.privacy-subtitle {
  margin-top: 20px;
  font-size: 1.5rem;
  color: #444;
}

.privacy-text {
  font-size: 1rem;
  margin-bottom: 15px;
}

.privacy-list {
  padding-left: 20px;
}

.privacy-list li {
  margin-bottom: 10px;
}

.privacy-section {
  padding: 40px 0;
}

@media (max-width: 768px) {
  .privacy-title {
      font-size: 1.8rem;
  }

  .privacy-subtitle {
      font-size: 1.3rem;
  }

  .privacy-text, .privacy-list li {
      font-size: 0.95rem;
  }

  .privacy-container {
      padding: 15px;
  }
}

@media (max-width: 480px) {
  .privacy-title {
      font-size: 1.5rem;
  }

  .privacy-subtitle {
      font-size: 1.2rem;
  }

  .privacy-container {
      padding: 10px;
  }
}

.cookie-policy-page {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f8f9fa;
}

.cookie-container {
  max-width: 900px;
  width: 90%;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.cookie-title {
  text-align: center;
  font-size: 2rem;
  color: #222;
}

.cookie-subtitle {
  margin-top: 20px;
  font-size: 1.5rem;
  color: #444;
}

.cookie-text {
  font-size: 1rem;
  margin-bottom: 15px;
}

.cookie-list {
  padding-left: 20px;
}

.cookie-list li {
  margin-bottom: 10px;
}

.cookie-section {
  padding: 40px 0;
}

@media (max-width: 768px) {
  .cookie-title {
      font-size: 1.8rem;
  }

  .cookie-subtitle {
      font-size: 1.3rem;
  }

  .cookie-text, .cookie-list li {
      font-size: 0.95rem;
  }

  .cookie-container {
      padding: 15px;
  }
}

@media (max-width: 480px) {
  .cookie-title {
      font-size: 1.5rem;
  }

  .cookie-subtitle {
      font-size: 1.2rem;
  }

  .cookie-container {
      padding: 10px;
  }
}
