@charset "UTF-8";

html {
  font-size: 100%;
}

body {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  line-height: 1.4;
  color: #333;
}

h1, h3 {
  font-weight: 700;
  letter-spacing: 0.12em;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.text-light {
  font-weight: 300;
  letter-spacing: 0.12em;
}

a {
  color: #06c;
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
}

a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===============
   ヘッダー（PC・タブレット・スマホ対応）
   =============== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.page-header {
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  width: 10%;
}

/* ナビゲーション（PC・タブレット） */
.nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  align-items: center;
}

.nav li {
  margin: 0;
}

.nav a {
  color: #333;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  position: relative;
}

.nav a:hover {
  color: #2c5e32;
  text-decoration: none;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2c5e32;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* オンラインストアボタン（元の仕様維持） */
.online-store-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #6F6F6F;
  color: #fff !important;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}

.online-store-btn:hover {
  background: #555;
  color: #fff;
  text-decoration: none;
}

.online-store-btn::after {
  display: none !important;
}

/* ハンバーガーボタン（アブソリュート配置） */
.hamburger-btn {
  display: none;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ハンバーガーボタン アクティブ状態 */
.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===============
   ヒーローセクション
   =============== */

.hero-slider-container {
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-logo {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
  width: 150px;
}

.hero-slider {
  width: 100%;
  height: 100vh;
}

.slide-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  outline: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1000;
  padding: 20px;
}

/* ===============
   SNSリンク（サイドバー）
   =============== */

.social-links {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-links a {
  display: block;
}

.social-links img {
  width: 32px;
  height: 32px;
  display: block;
  transition: opacity 0.2s ease-in-out;
}

.social-links img:hover {
  opacity: 0.5;
}

/* ===============
   共通セクションスタイル
   =============== */

main section {
  padding: 60px 5%;
  text-align: center;
}

main section h2 {
  font-size: 2.2em;
  font-weight: 700;
  color: #2c5e32;
  margin: 50px 0;
  text-transform: uppercase;
}

.subtitle {
  font-size: 1.2rem !important;
  font-weight: 700;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===============
   aboutセクション
   =============== */

#about p {
  max-width: 1200px;
  margin: 0 auto 20px;
  line-height: 1.8;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.1rem;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.logo-wrapper {
  margin-top: 30px;
  align-items: center;
  max-width: 100%;
  height: auto;
}

.logo {
  width: 25%;
  height: auto;
}

/* ===============
   共通ボタンスタイル
   =============== */

.more-button-svg,
.all-button-svg,
.detail-button-svg {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background-color: transparent;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  border-radius: 25px;
  transition: opacity 0.2s ease;
}

.more-button-svg,
.all-button-svg {
  color: #000;
}

.detail-button-svg {
  color: #FFF;
}

.more-button-svg:hover,
.all-button-svg:hover,
.detail-button-svg:hover {
  opacity: 0.7;
  text-decoration: none;
}

.more-button-text,
.all-button-text,
.detail-button-text {
  margin-right: 8px;
}

.more-button-text,
.all-button-text{
  font-size: 16px;
}

.detail-button-text {
  font-size: 0.9em;
}

.more-button-icon-wrapper,
.all-button-icon-wrapper,
.detail-button-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.more-button-icon-wrapper,
.all-button-icon-wrapper {
  background-color: #000;
}

.detail-button-icon-wrapper {
  background-color: none;
}

.arrow-svg {
  width: 14px;
  height: 14px;
}

.detail-button-svg .all-button-svg .arrow-svg {
  width: 20px;
  height: 20px;
}

.content-block-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-content {
  width: 100%;
  text-align: left;
  margin-bottom: 15px;
}

/* ===============
   Honey セクション 
   =============== */

.honey {
  padding: 40px 20px;
  text-align: center;
}

.product-slider {
  margin: 0 auto;
  max-width: 90%;
}

.product-slide {
  position: relative;
  overflow: hidden;
  text-align: right;
}

.product-slide img {
  width: 100%;
  height: auto;
  display: block;
  margin: 15px;
}

.product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 30px 1px;
}

.product-name {
  font-size: 0.8em;
  color: #fff;
  margin-top: 0;
  font-weight: 300;
  text-align: right;
  padding: 8px 12px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

/* ===============
   ONLINE STOREセクション
   =============== */

.online-store-section {
  background-color: #fdfbf5;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 25px,
    rgba(230, 200, 150, 0.3) 25px,
    rgba(230, 200, 150, 0.3) 50px
  );
  padding: 80px 0;
}

.online-store-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.online-store-image-wrapper {
  flex: 0 0 45%;
}

.online-store-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.online-store-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.online-store-section .subtitle {
  font-size: 1.2rem !important;
  font-weight: 700;
  text-align: left;
  margin: 50px 0 30px;
}

.online-store-section p {
  max-width: 1200px;
  margin: 0 auto 70px;
  line-height: 1.8;
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.1rem;
  width: 100%;
}
.online-store-section .store-links{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}


/* ===============
   ストアリンクボタン共通
   =============== */

.store-link-button,
.footer-store-link-button {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 10px 15px;
  border-radius: 6px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  width: 220px;
  text-align: center;
  box-sizing: border-box;
}

.store-link-button:hover,
.footer-store-link-button:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  text-decoration: none;
}

.store-link-button img,
.footer-store-link-button img {
  max-height: 28px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* ===============
   Newsセクション
   =============== */

.news-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e0e0e0;
}

.news-text {
  flex: 1;
  text-align: left;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.news-title {
  font-size: 1em;
  color: #333;
  font-weight: bold;
  margin: 0 0 8px;
  font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 767px) {
  .news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .news-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .news-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 10px;
    order: -1; /* 画像を上にしたい場合 */
  }
  .news-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .news-text {
    width: 100%;
    text-align: center;
  }
}

.news-excerpt {
  font-size: 0.9em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  min-height: calc(0.9em * 1.6 * 5);
}

.news-image {
  flex: 0 0 250px;
  max-width: 250px;
}

.news-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.news-all-link-wrapper {
  text-align: center;
  margin-top: 40px;
}

.news-all-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: color 0.3s ease;
}

.news-all-link:hover {
  color: #607d8b;
  text-decoration: none;
}

.news-all-link .arrow-icon-wrapper {
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #333;
  color: white;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.news-all-link:hover .arrow-icon-wrapper {
  background-color: #607d8b;
}

.news-all-link .arrow-svg {
  width: 0.7em;
  height: 0.7em;
}

/* ===============
   フッター
   =============== */

footer {
  background-color: #678E79;
  background-image: url('../img/footer-bg.png');
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #fff;
  padding: 50px 0 30px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left {
  flex: 0 0 auto;
  margin-right: 40px;
}

.footer-left img {
  max-width: 250px;
  margin: 0;
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-navigation-area {
  display: flex;
  flex-direction: column; /* ナビ列とSNSを縦に */
  align-items: flex-start; /* 左揃え */
  gap: 20px; /* ナビ列とSNSの間隔 */
}

.footer-nav-columns {
  display: flex; /* ナビの列を横並びに */
  gap: 40px;     /* 各ナビ列の間隔 */
}



.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


.footer-nav li {
  margin-bottom: 12px; /* ナビ項目間の縦のスペース */
}
.footer-nav li:last-child {
  margin-bottom: 0;
}
.footer-nav a {
  color: #fff;        /* ★ナビリンクの色を白に */
  text-decoration: none;
  font-size: 13px;   /* カンプに合わせたフォントサイズ */
  font-weight: 500;  /* カンプに合わせた太さ */
}
.footer-nav a:hover {
  text-decoration: underline;
  opacity: 1; /* a:hover のデフォルトを上書き */
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px; /* SNSアイコン間のスペース調整 */
  /* margin-top: 10px; ナビとの間隔は親のgapで調整 */
}
.footer-social a {
  line-height: 0; /* 画像下の隙間対策 */
}
.footer-social img {
  width: 22px;  /* ★SNSアイコンのサイズ調整 */
  height: 22px;
  filter: brightness(0) invert(1); /* ★アイコンを白にする */
  margin: 0; /* img共通のmargin:autoをリセット */
}

.footer-ec-area {
  flex: 0 0 auto; /* ECエリアはコンテンツ幅に合わせる */
  /* margin-left: auto; /* もしナビエリアの幅が可変でECエリアを右端に固定したい場合 */
}

.footer-store-links { /* ulタグ */
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px; /* ECボタン間のスペース調整 */
}
/* 共通ストアリンクボタンのスタイルを使用 */
.store-link-button { /* aタグ */
  display: inline-block;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 8px 10px; /* ★ECボタンのパディングを調整して幅を狭める */
  border-radius: 6px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  width: 160px; /* ★ECボタンの幅をカンプに合わせて調整 */
  box-sizing: border-box;
  text-align: center;
}
.store-link-button img {
  max-height: 26px; /* ECロゴの高さ調整 */
  /* margin: 0 auto; はimg共通で設定済み */
}

.footer-copyright {
  text-align: center;
  width: 100%;
  font-size: 12px;
  color: #f0f0f0; /* ★コピーライトの文字色を明るめに */
  margin-top: 50px; /* 上のコンテンツとの間隔調整 */
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* 区切り線の透明度調整 */
}
.footer-copyright p {
  margin: 0;
}



/* ===============
   ボタン共通
   =============== */

.btn {
  display: inline-block;
  background-color: #d4af37;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #b89228;
  text-decoration: none;
  opacity: 1;
}

.btn-secondary {
  background-color: transparent;
  color: #2c5e32;
  border: 2px solid #2c5e32;
}

.btn-secondary:hover {
  background-color: #2c5e32;
  color: #fff;
}

/* ===============
   ページトップボタン
   =============== */

.page-top-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  background-color: transparent;
  color: #000;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}

.page-top-button.show {
  opacity: 1;
  visibility: visible;
}

.page-top-button:hover {
  opacity: 0.8;
  text-decoration: none;
}

.page-top-text {
  margin-right: 8px;
}

.page-top-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background-color: #000;
  border-radius: 50%;
}

.page-top-icon svg {
  width: 16px;
  height: 16px;
}

/* ===============
   タブレット対応（768px〜1024px）
   =============== */

@media (max-width: 1024px) and (min-width: 768px) {

  .news-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  /* フッター */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  
  .footer-left {
    margin-right: 0;
  }
  
  .footer-left img {
    max-width: 200px;
  }
  
  .footer-right {
    justify-content: center;
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-nav ul {
    grid-template-columns: repeat(2, auto);
    gap: 15px 20px;
    justify-items: center;
  }
  
  .footer-nav a {
    font-size: 14px;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-store-links {
    align-items: center;
  }
  
  .footer-store-links img {
    max-width: 150px;
  }
  
  /* ページトップボタン */
  .page-top-button {
    right: 15px;
    bottom: 15px;
  }
  
  .page-top-text {
    font-size: 12px;
  }
  
  .page-top-icon {
    width: 30px;
    height: 30px;
  }
  
  .page-top-icon svg {
    width: 14px;
    height: 14px;
  }
}

/* ===============
   スマホ対応（767px以下）
   =============== */

@media (max-width: 767px) {
  /* ヘッダー */
  .site-header {
    height: 70px;
  }
  
  .page-header {
    padding: 0 20px;
  }
  
  header .logo {
    width: 50%;
  }
  
   /* ハンバーガーボタンを表示 */
  .hamburger-btn {
    display: flex;
  }
  
  /* .page-headerのpadding調整（ハンバーガーボタンのスペース確保） */
  .page-header {
    padding: 0 60px 0 20px; /* 右側にハンバーガーボタン分のスペース */
  }
  
  /* ナビゲーションをモバイルメニューに変更 */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 65%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
  }
  
  .nav.active li {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ナビリンクのアニメーション遅延 */
  .nav.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav.active li:nth-child(2) { transition-delay: 0.2s; }
  .nav.active li:nth-child(3) { transition-delay: 0.3s; }
  .nav.active li:nth-child(4) { transition-delay: 0.4s; }
  
  .nav a {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    text-align: center;
  }
  
  .nav a::after {
    display: none;
  }
  
  .nav a:hover {
    color: #2c5e32;
  }
  
  .online-store-btn {
    background: #444 !important;
    color: #fff !important;
    padding: 16px 32px !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
  }
  
  /* メニューが開いている時のbody */
  body.menu-open {
    overflow: hidden;
  }
  
  /* ヒーローセクション */
  .hero-slider-container {
    margin-top: 70px;
  }
  
  .hero-logo {
    width: 100px;
    top: 15px;
    left: 15px;
  }
  
  .hero-slider {
    height: 80vh;
  }
  
  .slide-item {
    height: 80vh;
  }
  
  /* SNSリンク */
  .social-links {
    right: 10px;
    gap: 10px;
  }
  
  .social-links img {
    width: 24px;
    height: 24px;
  }
  
  /* メインセクション */
  main section {
    padding: 40px 4%;
  }
  
  main section h2 {
    font-size: 1.8em;
    margin: 30px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  /* Aboutセクション */
  #about p {
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: left;
  }
  
  
  .content-block-flex {
    align-items: center;
  }
  
  .subtitle {
    font-size: 1.1rem !important;
    text-align: left;
  }
  
  .logo {
    width: 60%;
  }
  
  .more-button-svg {
 
    margin-top: 20px;
  
  }
  
  .more-button-text {
    font-size: 14px;
  }
  
  /* Honeyセクション */
  .honey {
    padding: 30px 15px;
  }
  
  .product-slide img {
    margin: 10px;
  }
  
  .product-info {
    padding: 20px 1px;
  }
  
  .product-name {
    font-size: 0.7em;
    padding: 6px 10px;
  }
  
  .detail-button-text {
    font-size: 0.8em;
  }
  
  /* ONLINE STOREセクション */
  .online-store-section {
    padding: 50px 0;
  }
  
  .online-store-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .online-store-image-wrapper,
  .online-store-text-wrapper {
    flex: none;
  }
  
  .online-store-text-wrapper {
    align-items: center;
  }
  
  .online-store-section .subtitle {
    text-align: left;
    margin: 20px 0 15px;
    font-size: 1.1rem !important;
  }
  
  .online-store-section p {
    text-align: left;
    margin-bottom: 30px;
    font-size: 13px;
    line-height: 1.7;
  }
  
  .store-links {
    align-items: center;
    width: 100%;
  }
  
  .store-link-button {
    min-width: 250px;
    padding: 12px 20px;
  }
  
  .store-link-button img {
    max-height: 25px;
  }
  
  /* ニュースセクション */
  .news-section {
    padding: 50px 0;
  }
  
  .news-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .news-item {
    flex-direction: column;
    gap: 15px;
    padding-bottom: 20px;
  }
  
  .news-text {
    text-align: left;
  }
  
  .news-title {
    font-size: 1.1em;
    margin-bottom: 10px;
  }
  
  .news-excerpt {
    font-size: 0.85em;
    -webkit-line-clamp: 5;
    min-height: calc(0.9em * 1.6 * 5);
    line-height: 1.6;
  }
  
  .news-image {
    flex: none;
    max-width: 100%;
    margin-bottom: 15px;
  }
  
  .news-image img {
    border-radius: 8px;
  }
  
  .news-all-link-wrapper {
    text-align: center;
    margin-top: 30px;
  }
  
  /* フッター */
  footer {
    padding: 30px 15 20px;
  }
  
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  
  .footer-left {
    margin-right: 0;
  }
  
  .footer-left img {
    max-width: 200px;
  }
  
  .footer-right {
    display: flex;
   
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
  }

@media (max-width: 767px) {
  .footer-navigation-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .footer-nav-and-social {
    width: 100%;
  }
}
.footer-nav-columns {
    display: flex;
    flex-direction: column; /* ★ナビの列自体も縦積みに変更 */
    align-items: center;
    gap: 15px; /* 2つのナビリスト間のスペース */
    width: 100%;
  }
  
  .footer-nav ul {
    grid-template-columns: repeat(2, auto);
    gap: 15px 20px;
    justify-items: center;
    margin-bottom: 25px;
  }
  
  .footer-nav a {
    font-size: 14px;
  }
  
  .footer-social {
    justify-content: center;
    gap: 20px;
  }
  
  .footer-social img {
    width: 28px;
    height: 28px;
  }
  
  .footer-store-links {
    align-items: center;
    width: 100%;
  }
  
  .footer-store-links ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .footer-store-links li {
    margin-bottom: 0;
  }
  
  .footer-store-link-button {
    min-width: 200px;
  }
  
  .footer-store-links img {
    max-width: 150px;
  }
  
  .footer-copyright {
    margin-top: 30px;
    padding-top: 20px;
  }
  
  .footer-copyright p {
    font-size: 11px;
  }
  
  /* ページトップボタン */
  .page-top-button {
    right: 15px;
    bottom: 15px;
  }
  
  .page-top-text {
    font-size: 12px;
  }
  
  .page-top-icon {
    width: 30px;
    height: 30px;
  }
  
  .page-top-icon svg {
    width: 14px;
    height: 14px;
  }
}

/* ===============
   お問い合わせページ (contact.html)
   =============== */

.contact-page h2 { /* ページタイトル */
    /* 既存の h2 スタイルを継承しつつ、必要なら調整 */
    margin-bottom: 30px; /* 導入文との間隔 */
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px; /* 導入文の最大幅 */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.contact-form {
    max-width: 500px; /* フォーム全体の最大幅 */
    margin: 0 auto 50px; /* 中央寄せ、下の連絡先情報との間隔 */
    padding: 30px;
    background-color: #f9f9f9; /* フォームエリアの背景色 */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.wpcf7-form {
  max-width: 500px;
  margin: 0 auto 50px;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.form-group .required {
    color: #e74c3c; /* 必須マークの色 */
    font-size: 0.9em;
    margin-left: 4px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* paddingとborderをwidthに含める */
    font-size: 15px;
    font-family: inherit; /* bodyのフォントを継承 */
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2c5e32; /* フォーカス時の枠線の色 */
    outline: none; /* デフォルトのアウトラインを消す */
    box-shadow: 0 0 0 2px rgba(44, 94, 50, 0.2); /* フォーカス時の影 */
}

.form-group select {
    appearance: none; /* ブラウザデフォルトの矢印を消す */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); /* カスタム矢印 */
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px; /* 矢印のスペース確保 */
}

.form-group textarea {
    resize: vertical; /* 縦方向のみリサイズ可能に */
    min-height: 120px;
}

.privacy-policy-consent {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.privacy-policy-consent input[type="checkbox"] {
    width: auto; /* チェックボックスの幅を自動に */
    margin-right: 8px;
    accent-color: #2c5e32; /* チェックボックスの色 */
}
.privacy-policy-consent label {
    margin-bottom: 0; /* チェックボックス横のラベルのマージン調整 */
    font-weight: normal;
}
.privacy-policy-consent a {
    color: #2c5e32; /* プライバシーポリシーへのリンク色 */
    text-decoration: underline;
}
.privacy-policy-consent a:hover {
    text-decoration: none;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}





.contact-info {
    margin-top: 60px;
    text-align: center;
    padding: 30px;
    background-color: #f0f5f0; /* 連絡先情報の背景色 */
    border-radius: 8px;
}
.contact-info h3 {
    font-size: 1.3em;
    color: #2c5e32;
    margin-bottom: 10px;
}
.contact-info p {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.7;
}

/* レスポンシブ対応 (contact.html) */
@media (max-width: 767px) {
    .contact-page h2 {
        font-size: 1.8em; /* スマホでのページタイトルサイズ */
    }
    .contact-intro {
        margin-bottom: 30px;
        font-size: 14px;
    }
    .contact-form {
        padding: 20px;
    }
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    .form-group select {
        padding-right: 35px; /* スマホでの矢印スペース */
    }
    .submit-button {
        padding: 10px 25px;
        font-size: 15px;
    }
    .contact-info {
        margin-top: 40px;
        padding: 20px;
    }
    .contact-info h3 {
        font-size: 1.2em;
    }
    .contact-info p {
        font-size: 14px;
    }
}

/* ===============
   About Moreページ (about-more.html)
   =============== */

.about-more-page { /* セクション全体の基本スタイル */
    padding-top: 100px; /* ヘッダーの高さ分 + 余白 */
    padding-bottom: 80px;
}

.about-more-page .page-title-area {
    text-align: center;
    margin-bottom: 60px;
}

.about-more-page .page-subtitle {
    display: block;
    font-size: 1em;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.about-more-page h2 { /* ページの大見出し */
    /* 既存の h2 スタイルを継承しつつ、必要なら調整 */
    font-size: 2.5em; /* 少し大きめに */
    margin-top: 0;
    margin-bottom: 0;
}

.about-content {
    max-width: 800px; /* 本文エリアの最大幅 */
    margin: 0 auto;
}

.about-content .text-block {
    margin-bottom: 40px;
    text-align: left; /* 本文は左揃え */
}

.about-content .text-block h3 {
    font-size: 1.6em;
    color: #000; /* 小見出しの色 */
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0; /* 小見出しの下線 */
}

.about-content .text-block p {
    font-size: 1.05em; /* 本文の文字サイズ */
    line-height: 1.9;
    margin-bottom: 1.5em;
    color: #444;
}
.about-content .text-block p:last-child {
    margin-bottom: 0;
}


.about-content .image-block {
    margin: 40px 0;
    text-align: center;
}
.about-content .image-block.full-width-image {
    max-width: 100%; /* コンテナ幅いっぱいに広げる場合は不要 */
    /* margin-left: calc(50% - 50vw); /* 画面幅いっぱいにしたい場合のテクニック */
    /* margin-right: calc(50% - 50vw); */
}
.about-content .image-block img {
    border-radius: 8px; /* 画像の角を丸める */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    /* margin: 0 auto; はimg共通スタイルで適用済み */
}
.about-content .image-block figcaption {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.image-text-block {
    display: flex;
    align-items: flex-start; /* 画像とテキストを上揃え */
    gap: 30px;
    margin-bottom: 40px;
}
.image-text-block.layout-image-left .image-block {
    flex: 0 0 40%; /* 画像エリアの幅 (例: 40%) */
    order: 1;     /* 画像を左に */
    margin: 0;    /* text-block内のマージンをリセット */
}
.image-text-block.layout-image-left .text-content {
    flex: 1;      /* 残りのスペースをテキストエリアが使用 */
    order: 2;     /* テキストを右に */
    text-align: left;
}
/* 必要であれば .layout-image-right も定義 */
.image-text-block .text-content h3 { /* このブロック内のh3 */
    font-size: 1.4em;
    color: #2c5e32;
    margin-top: 0; /* 上のマージンを調整 */
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}
.image-text-block .text-content p {
    font-size: 1em;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1em;
}


.back-to-top-page {
    text-align: center;
    margin-top: 60px;
}
/* .btn-secondary は共通ボタンスタイルで定義されている想定 */


/* About Moreページのレスポンシブ対応 */
@media (max-width: 767px) {
    .about-more-page {
        padding-top: 80px; /* スマホでのヘッダー分 */
        padding-bottom: 60px;
    }
    .about-more-page .page-title-area {
        margin-bottom: 40px;
    }
    .about-more-page h2 {
        font-size: 2em; /* スマホでの大見出し */
    }
    .about-content .text-block h3 {
        font-size: 1.4em; /* スマホでの小見出し */
    }
    .about-content .text-block p {
        font-size: 1em; /* スマホでの本文 */
    }
    .image-text-block {
        flex-direction: column; /* スマホでは画像とテキストを縦積みに */
        align-items: center;    /* 全体を中央揃え */
    }
    .image-text-block.layout-image-left .image-block,
    .image-text-block.layout-image-left .text-content {
        flex-basis: auto; /* 幅の指定をリセット */
        width: 100%;      /* 幅を100%に */
        order: initial;   /* orderをリセット */
        text-align: center; /* テキストも中央揃え */
    }
    .image-text-block.layout-image-left .image-block {
        margin-bottom: 20px; /* 画像とテキストの間隔 */
    }
    .image-text-block .text-content h3 {
        text-align: center;
    }
}

/* ===============
   News Allページ (news-all.html)
   =============== */

.news-all-page { /* セクション全体の基本スタイル */
    padding-top: 100px; /* ヘッダーの高さ分 + 余白 */
    padding-bottom: 80px;
}

.news-all-page .page-title-area {
    text-align: center;
    margin-bottom: 60px;
}

.news-all-page .page-subtitle {
    display: block;
    font-size: 1em;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.news-all-page h2 { /* ページの大見出し */
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 0;
}

.news-archive-list {
    display: grid;
    grid-template-columns: 1fr; /* アーカイブページでは1カラム表示が一般的 */
    gap: 40px; /* 各記事の間のスペース */
}

.news-item-archive {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
}
.news-item-archive:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-item-archive-link {
    display: flex; /* 画像とテキストを横並びに */
    gap: 25px;
    color: inherit; /* 親要素の色を継承 (aタグのデフォルト色をリセット) */
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.news-item-archive-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.news-image-archive {
    flex: 0 0 280px; /* 画像の幅を固定 (調整してください) */
    max-width: 280px;
}
.news-image-archive img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10; /* 画像のアスペクト比 (調整してください) */
    object-fit: cover;
    border-radius: 6px; /* 画像の角を少し丸める */
    /* margin: 0 auto; はimg共通スタイルで適用済みなので、左寄せにしたい場合は解除 */
    margin: 0;
}

.news-text-archive {
    flex: 1; /* 残りのスペースをテキストエリアが使用 */
    text-align: left;
}

.news-date {
    display: block;
    font-size: 0.85em;
    color: #777;
    margin-bottom: 8px;
}

.news-title-archive { /* h3 */
    font-size: 1.3em; /* タイトルのフォントサイズ */
    color: #333;
    font-weight: bold;
    margin: 0 0 10px;
    line-height: 1.4;
}

.news-excerpt-archive { /* p */
    font-size: 0.95em;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
    /* 必要であればテキストの行数制限 (トップページと同様) */
    display: -webkit-box;
    -webkit-line-clamp: 5; /* 表示行数を3行に制限 */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    min-height: calc(0.9em * 1.6 * 5); /* 3行分の高さを確保 (目安) */
}

/* ページネーションのスタイル (もし実装する場合) */
.pagination {
    margin-top: 50px;
    text-align: center;
}
.pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex; /* 横並び */
    gap: 8px;
}
.pagination li a,
.pagination li span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    min-width: 36px; /* ボタンの最小幅 */
    text-align: center;
}
.pagination li a:hover {
    background-color: #f0f0f0;
    text-decoration: none;
}
.pagination li span.current {
    background-color: #2c5e32; /* 現在のページ */
    color: white;
    border-color: #2c5e32;
    font-weight: bold;
}

.news-all-page .back-to-top-page { /* トップページへの戻るボタン */
    text-align: center;
    margin-top: 60px;
}
/* .btn-secondary は共通スタイルで定義されている想定 */


/* News Allページのレスポンシブ対応 */
@media (max-width: 767px) {
    .news-all-page {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    .news-all-page .page-title-area {
        margin-bottom: 40px;
    }
    .news-all-page h2 {
        font-size: 2em;
    }
    .news-item-archive-link {
        flex-direction: column; /* スマホでは画像とテキストを縦積みに */
        gap: 15px;
    }
    .news-image-archive {
        flex-basis: auto; /* 幅の指定をリセット */
        max-width: 100%;  /* 画像幅を100%に */
    }
    .news-image-archive img {
        aspect-ratio: 16 / 9; /* スマホでは少し横長の写真も考慮 */
    }
    .news-text-archive {
        text-align: center; /* スマホではテキストも中央揃え */
    }
    .news-title-archive {
        font-size: 1.2em;
        text-align: left; /* ← 追加 */
    }
    .news-excerpt-archive {
        font-size: 0.9em;
        -webkit-line-clamp: 4; /* スマホではもう少し行数を表示しても良いかも */
        min-height: calc(0.9em * 1.7 * 4);
    }
}

/* ===============
   カスタムBACKボタン V2 スタイル
   =============== */

.custom-back-button-v2 {
  display: inline-flex;   /* 要素を横並びに */
  align-items: center;    /* 垂直方向中央揃え */
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif; /* MOREボタンのフォントに合わせる */
  /* font-weight: bold; は .button-text-v2 で指定 */
  /* border-radius や全体の padding は不要なので削除 */
  transition: opacity 0.2s ease;
  gap: 8px; /* アイコンとテキストの間のスペース (調整してください) */
  cursor: pointer; /* クリック可能であることを示す */
}

.custom-back-button-v2:hover {
  opacity: 0.7;
  text-decoration: none;
}

.button-icon-wrapper-v2 { /* アイコンの丸い背景 */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;             /* MOREボタンのアイコンラッパーサイズに合わせる */
  height: 30px;
  background-color: #000;    /* 黒い丸い背景 */
  border-radius: 50%;      /* 円形 */
}

.custom-back-button-v2 .arrow-svg-left { /* 左向き矢印SVG */
  width: 14px;              /* MOREボタンのアイコンサイズに合わせる */
  height: 14px;
  /* stroke: white; はSVG内部で指定されていれば不要、必要なら追加 */
}

.button-text-v2 { /* テキスト「BACK」 */
  font-size: 16px;         /* MOREボタンのテキストサイズに合わせる */
  color: #000;             /* 黒色のテキスト */
  font-weight: bold;       /* 太字 */
}

/* 既存の .btn-secondary スタイル (これは変更なし) */



.news-title.no-excerpt + .news-excerpt {
  display: none !important;
}
.news-title.no-excerpt {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}


@media (max-width: 767px) {
  .news-title {
    text-align: left;
  }
}

.form-actions {
  text-align: center;
  margin-top: 30px;
}

.form-actions input[type="submit"].submit-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  float: none;
  background: #2c5e32;
  color: #fff;
  font-size: 1em;
  padding: 12px 32px;
  border: none;
  border-radius: 5px; /* 角を丸く */
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: inherit;
  letter-spacing: 0.1em;
  width: auto;
}

.submit-button:hover {
    background-color: #1e3c24; /* ホバー時の背景色 */
}