/*
 Theme Name: Astra Child
 Template: astra
 Description: astra-child
 Author: tyrol-farm
 Version: 1.0
*/

/*-------------------------------
フォント
--------------------------------*/
@font-face {
  font-family: 'Kokoro';
  src: url('/wp-content/themes/astra-child/fonts/Kokoro.woff2') format('opentype');
  font-weight: normal;
  font-style: normal;
}

h2.section-title {
  font-family: 'Kokoro', serif;
  font-weight: 100;
  text-align:left;
  color:#104303;
  font-size: 3.3rem;
  margin-bottom: 0;
}


/*-------------------------------
ヘッダーロゴを強制表示
--------------------------------*/
/* カスタマイザーの追加CSSに記述 */
.ast-site-header {
  background-color: #f4f4f4; /* 少しグレーなど */
}
/* ロゴ画像に影をつけて見やすくする */
.site-logo-img img {
  filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.2));
}
/* ロゴ画像のフィルターを強制的に無効化 */
.site-logo-img img,
.transparent-custom-logo img {
  filter: none !important;
  opacity: 1 !important;
}
@media screen and (max-width: 768px) {
  .ast-header-break-point .site-logo-img img {
    display: block !important;
    max-height: 60px;
  }

  .ast-header-break-point .ast-site-identity {
    display: block !important;
  }
}
/* モバイル時もロゴを表示し続ける */
.ast-theme-transparent-header .ast-site-identity,
.ast-theme-transparent-header .site-logo-img img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}
#ast-scroll-top {
    display: none;
    position: fixed;
    text-align: center;
    cursor: pointer;
    z-index: 99;
    width: 2.1em;
    height: 2.1em;
    line-height: 2.1;
    color: #ffffff;
    border-radius: 2px;
    content: "";
    outline: inherit;
    bottom: 100px;
}

.fadeIn {
animation: fadeIn 0.7s ease 0s 1 normal;
}

/* fadeIn */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
  }
}
.flip {
    animation: flip 1.4s ease 0s 1 normal;
}
/* flip */
@keyframes flip {
    0% {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        animation-timing-function: ease-out
    }
    40% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out
    }
    50% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in
    }
    80% {
        transform: perspective(400px) scale3d(0.95, .95, 0.95) translateZ(0) rotateY(0deg);
        animation-timing-function: ease-in
    }
    100% {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        animation-timing-function: ease-in
    }
}
.swing {
animation: swing 2s ease-in-out infinite;
}
/* swing */
@keyframes swing {
    20% {
        transform: rotate(15deg)
    }
    40% {
        transform: rotate(-10deg)
    }
    60% {
        transform: rotate(5deg)
    }
    80% {
        transform: rotate(-5deg)
    }
    100% {
        transform: rotate(0deg)
    }
}
     
/*-------------------------------

ハンバーガー

--------------------------------*/ 
  
   /* morph-styles.css */
      .hamburger-morph {
        position: fixed;
        top:0;
        right:0;
        z-index: 1000;
        width: 48px;
        height: 48px;
        padding: 0;
        border: none;
        background:#2e7330f0;
        cursor: pointer;
        border-radius: 50%;
      }

      .hamburger-morph__icon {
        width: 100%;
        height: 100%;
      }

      .hamburger-morph__line {
        fill: none;
        stroke: #fff;
        stroke-width: 6;
        transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
      }

      .hamburger-morph__line:nth-child(1) {
        stroke-dasharray: 60 207;
      }

      .hamburger-morph__line:nth-child(2) {
        stroke-dasharray: 60 60;
      }

      .hamburger-morph__line:nth-child(3) {
        stroke-dasharray: 60 207;
      }

      .hamburger-morph.active .hamburger-morph__line:nth-child(1) {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
      }

      .hamburger-morph.active .hamburger-morph__line:nth-child(2) {
        stroke-dasharray: 1 60;
        stroke-dashoffset: -30;
      }

      .hamburger-morph.active .hamburger-morph__line:nth-child(3) {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
      }

      .nav-morph {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background:#2e7330f0;
        clip-path: circle(0% at calc(100% - 44px) 44px);
        transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 900;
        font-family: kokoro;
        font-weight: 400;
        display: none;
      }

      .nav-morph.active {
        display: block;
        opacity: 1;
      }

      
      .nav-morph.active {
        clip-path: circle(150% at calc(100% - 44px) 44px);
      }

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

      .nav-morph__list {
        width:70vw;
        margin: 0;
        padding: 0;
        list-style: none;
        text-align: center;
      }

      .nav-morph__item {
        opacity: 0;
        transform: translateY(60px);
        transition: opacity 0.4s ease, transform 0.4s ease;
      }

      .nav-morph.active .nav-morph__item {
        opacity: 1;
        transform: translateY(0);
      }

      .nav-morph.active .nav-morph__item:nth-child(1) { transition-delay: 0.3s; }
      .nav-morph.active .nav-morph__item:nth-child(2) { transition-delay: 0.4s; }
      .nav-morph.active .nav-morph__item:nth-child(3) { transition-delay: 0.5s; }
      .nav-morph.active .nav-morph__item:nth-child(4) { transition-delay: 0.6s; }
      .nav-morph.active .nav-morph__item:nth-child(5) { transition-delay: 0.7s; }
      .nav-morph.active .nav-morph__item:nth-child(6) { transition-delay: 0.8s; }

      .nav-morph__link {
        position: relative;
        display: inline-block;
        padding: 20px;
        font-size: 28px;
        color: #fff;
        text-decoration: none;
        overflow: hidden;
        width:60vw;
      }

      .nav-morph__text,
      .nav-morph__hover {
        display: block;
        transition: transform 0.3s ease;
      }

      .nav-morph__hover {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        transform: translateY(0%);
      }

      .nav-morph__link:hover .nav-morph__text {
        transform: translateY(-100%);
      }

      .nav-morph__link:hover .nav-morph__hover {
        transform: translateY(-100%);
      }
      
      
      .custom-header {
        transition: transform 0.3s ease, opacity 0.3s ease;
      }

      .custom-header.hide {
        transform: translateY(-100%);
        opacity: 0;
      }

      .custom-header.show {
        transform: translateY(0);
        opacity: 1;
      }

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

ハンバーガー2

--------------------------------*/ 
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  background: #29313e;
}

.scroll-trigger-hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.scroll-trigger-hide.show {
  opacity: 1;
  pointer-events: auto;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  outline: none !important;
}
.ms-nav-container {
  position: relative;
  width: 100%;
  height: 0;
}
#ms-menu {
  display: none;
}
.bg-change {
  position: absolute;
  top: -75px;
  left: -90px;
  width: 1px;
  height: 1px;
  border-radius: 0% 0% 100% 0%;
  background: #2D394D;
  transition: all .25s ease;
}
.ms-nav .ms-menu-toggle:checked ~ .bg-change {
  width: 3000px;
  height: 3000px;
  transition: all .5s ease;
}
.ms-nav {
  position: fixed;
  top:60px;
  left:30px;
  z-index:9999999999999999999999;
}
.ms-nav > .ms-main {
  position: relative;
}
.ms-nav > .ms-li {
  position: absolute;
  top: 0;
  right: 8px;
  transition: top .5s ease;
  z-index: 1;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li a {
  box-shadow: 0px 5px 10px #333333;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li1 {
  top: 150%;
  transition: top .5s ease;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li1 a span {
  opacity: 1;
  transition: opacity .5s ease .1s;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-main:after {
  animation: big-border-bottom-animation .5s ease .1s;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li1:before {
  animation: border-top-animation .5s ease .2s;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li1:after {
  animation: border-bottom-animation .5s ease .2s;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li2 {
  top: 265%;
  transition: top .6s ease;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li2 a span {
  opacity: 1;
  transition: opacity .6s ease .2s;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li2:before {
  animation: border-top-animation .5s ease .2s;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li2:after {
  animation: border-bottom-animation .5s ease .3s;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li3 {
  top: 380%;
  transition: top .7s ease;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li3 a span {
  opacity: 1;
  transition: opacity .7s ease .3s;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li3:before {
  animation: border-top-animation .5s ease .3s;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li3:after {
  animation: border-bottom-animation .5s ease .4s;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li4 {
  top: 495%;
  transition: top .8s ease;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li4 a span {
  opacity: 1;
  transition: opacity .8s ease .4s;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li4:before {
  animation: border-top-animation .5s ease .4s;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li4:after {
  animation: border-bottom-animation .5s ease .4s;
}






.ms-nav .ms-menu-toggle:checked ~ .ms-li5 {
  top: 610%;
  transition: top .8s ease;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li5 a span {
  opacity: 1;
  transition: opacity .8s ease .4s;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li5:before {
  animation: border-top-animation .5s ease .4s;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li5:after {
  animation: border-bottom-animation .5s ease .4s;
}



.ms-nav .ms-menu-toggle:checked ~ .ms-li6 {
  top: 725%;
  transition: top .8s ease;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li6 a span {
  opacity: 1;
  transition: opacity .8s ease .4s;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li6:before {
  animation: border-top-animation .5s ease .4s;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li6:after {
  animation: border-bottom-animation .5s ease .4s;
}













.ms-nav .ms-menu-toggle ~ .ms-li:before {
  content: '';
  width: 45px;
  display: block;
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  margin: auto;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 0px solid #35782f;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li:before {
  border-bottom: 25px solid #35782f;
  top: 0;
  z-index: 11;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li:after {
  content: '';
  width: 45px;
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 25px solid #35782f;
  transition: border-top .3s ease;
  z-index: 11;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-main:after {
  content: '';
  width: 60px;
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 45px solid #35782f;
  transition: border-top .3s ease;
  z-index: 11;
}
.ms-nav .ms-menu-toggle:checked ~ .ms-li-last:after {
  content: '';
  width: 45px;
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto;
  border-left: 0px solid transparent;
  border-right: 0px solid transparent;
  border-top: 0px solid #35782f;
}

.ms-nav .ms-menu-toggle:checked ~ .ms-main span {
  transform: rotate(-45deg);
  transition: transform .35s ease;
}
.ms-nav .ms-menu-toggle ~ .ms-main span {
  transition: transform .35s ease;
  opacity: 1;
}
.ms-nav > .ms-main > a {
  box-shadow: 0px 5px 10px #333333;
}
.ms-nav > li a {
  font-size: 30px;
  color: #FFFFFF;
  background:#35782f;
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 100%;
  position: relative;
  text-align: center;
}
.ms-nav > .ms-main a,
.ms-nav > .ms-main > a > label {
  font-size: 30px;
  color: #FFFFFF;
  background: #35782f;
  width: 75px;
  height: 75px;
  display: block;
  border-radius: 100%;
  position: relative;
  text-align: center;
  z-index: 19;
}






























.ms-nav > .ms-main > a > label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
}
.ms-nav > .ms-main > a > label span {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.ms-nav .ms-menu-toggle:checked ~ .ms-main span {
  transform: rotate(45deg); /* ←「＋」→「×」 */
}



































.ms-nav > li > a span {
  position: absolute;
  top: 0;
  left: 30px;
  right: 0;
  bottom: 0;
  /* margin: auto; */
  /* height: 30px; */
  width: 300%;
  opacity: 0;
  z-index: 12;
  text-align: left;
}

/* アニメーション修正（上から下に） */
@keyframes border-top-animation {
  0% {
    top: 0px;
  }
  50% {
    top: -14px;
  }
  100% {
    top: 0px;
  }
}
@keyframes border-bottom-animation {
  0% {
    bottom: 0px;
  }
  50% {
    bottom: -13px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes big-border-bottom-animation {
  0% {
    bottom: 0px;
  }
  50% {
    bottom: -30px;
  }
  100% {
    bottom: 0px;
  }
}

.fa-add:before{
    content: "+";
    position: absolute;
    top: -52px;
    left: 26px;
}
.fa-plus:before {
    content: "+";
    position: absolute;
    top: 50%;
    left:3%;
    transform: translate(-50%, -50%);
}


@media screen and (max-width: 768px) {
.ms-nav {
  position: fixed;
  top:20px;
  left:20px;
  z-index:9999999999999999999999;
}
}























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

body

--------------------------------*/
body.home .site-content .ast-container {
  display: block !important;
}
body {
  background: #fff;
  overflow-x: hidden;
}
body {
  font-family: 'Kokoro';
  font-weight: 400;
}


@media screen and (max-width: 768px) {
  /* セクション余白調整 */
  /*.section-frame,
  .section-news,
  .section-shop,
  .section-instagram {
    padding: 40px 15px;
  }*/

  /* 商品リストを1?2列に */
  .product-list ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  /* Instagramグリッドの左右に余白を */
  .section-instagram > div {
    padding: 0 15px;
  }

  /* about（農園紹介）を縦並びに */
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  /* 吹き出しボックスを調整 */
  .voice-section-content {
    flex-direction: column;
    gap: 30px;
  }

  /* フッター中央寄せ */
  footer .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}


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

header

--------------------------------*/
.site-logo{
  width:20%;
}

.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  z-index: 9999;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(0);
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.custom-header-content{
  /*max-width: 1200px;*/
  width:100%;
  margin: 0 auto; 
  padding: 10px 20px; 
  display: flex; 
  justify-content:center; 
  align-items: center; 
  flex-wrap: wrap;
  /*box-shadow: 1px 1px 10px #ccc;*/
}
.custom-header nav {
  display: flex;
  /*gap: 20px;*/
}
.nav-menu {
  display: flex;
  justify-content: center;
  gap: 1.2vw;
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-menu li {
  white-space: nowrap;
}

.nav-menu li a {
  display: inline-block;
  padding: 8px 12px;
  font-size:1.2vw;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;
}
/* スクロール時の出入り */
.custom-header.hide {
  transform: translateY(-100%);
  opacity: 0;
}
.custom-header.show {
  transform: translateY(0);
  opacity: 1;
}




.custom-header-content-h{
  /*max-width: 1200px;*/
  width:100%;
  margin: 0 auto; 
  padding: 10px 20px; 
  display: flex; 
  justify-content:flex-start; 
  align-items: center; 
  flex-wrap: wrap;
  /*box-shadow: 1px 1px 10px #ccc;*/
}


.sns-icons a{
 padding:0 2vw;
}













/* ショップボタン */

.hshop-btn a{
 display: inline-block; 
 background: #f18ca8; 
 color: #fff; 
 padding: 8px 16px; 
 border-radius:0; 
 font-weight: bold; 
 text-decoration: none;
}
.hshop-btn a span{
 margin-right: 6px;
}





/*　下層　*/
.shop-cart.pconly{
  display: flex;
  position: fixed;
  top: 0%;
  right: 0;
  z-index: 99999999999999999999999999999999999999999999999999999999;
  width: 30vw;
  justify-content: end;
  text-align: center;
}
.shop-btn {
  width: 15vw;
  padding: 20px 0;
  background: #f18ca8;
}
.shop-btn a{
  padding:0;
}
.shop-btn a span{
 margin-right: 6px;
}

.cart-btn {
  background: #35782f;
  padding:20px 0;
  width: 15vw;
}
.cart-btn a{
  color:#fff;
}

@media screen and (max-width: 768px) {
.shop-cart.sponly {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 999;
}
.shop-btn {
  width: 50%;
  padding: 4% 6%;
  background: #f18ca8;
}
.shop-btn a{
  padding:0;
}
.cart-btn {
  background: #35782f;
  padding: 4% 6%;
  width: 50%;
}

}

/* -----------------------------
  スマホ表示調整
----------------------------- */

.pconly{display:block;}
.sponly{display:none;}




@media screen and (max-width: 768px) {
  /* PC用ナビゲーション非表示 */
  .custom-header {
    display: none !important;
  }

  /* ハンバーガーは表示 */
  .hamburger-morph {
    display: block !important;
  }
  .hamburger-morph {
    position: fixed;
    top:0;
    right:0;
    z-index: 1000;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: #2e7330f0;
    cursor: pointer;
    border-radius: 50%;
}

.pconly{display:none;}
.sponly{display:block;}


}


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

slider

--------------------------------*/
.top-slider {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* === ロゴ・キャッチコピー表示 === */
.slide-overlay {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  color: #fff;
  padding: 0;
  width:100%;
}

.slide-logo {
  width:22vw;
  margin-bottom:0;
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 1.5));
}

.slide-title {
  font-size: 2.8em;
  font-weight: 400;
  margin-bottom: 10px;
  color:#fff;
  font-family:Kokoro;
  text-shadow: 2px 2px 6px #000;
}

.slide-sub {
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.6;
  font-family:Kokoro;
  text-shadow: 2px 2px 6px #000;
}

.top-hero {
  position: relative;
  background-image: url('/tyrol/wp-content/themes/astra-child/images/top-bg-b.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.top-hero h1{
  margin-bottom:50px;
  text-shadow:1px 1px 15px #000;
}
.top-hero p{
  font-size: 1.2em;
  font-family:serif;
  color: #fff;
  text-shadow:1px 1px 15px #000;
}



@media screen and (max-width: 768px) {
  .top-hero {
    background-image: url('/tyrol/wp-content/themes/astra-child/images/fv-bg-sp.jpg') !important;
    background-attachment: scroll !important;
  }
}

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

  /* ヒーロー背景切替は既存のままOK */

  .slide-logo {
    width: 60%;
  }

  .slide-title {
    font-size: 1.6em;
    margin-bottom: 10px;
  }

  .slide-sub {
    font-size: 1em;
    line-height: 1.5;
    letter-spacing: -2px;
  }

  .slide-overlay {
    padding: 0 20px;
  }

  .slide img {
    height: 100vh;
    object-fit: cover;
  }
}

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

セクション幅

---------------------------------*/
.section-content{
  width:90%;
  max-width:1200px;
  padding:5% 5vw;
  margin:auto;
  display: flex; 
  flex-wrap: wrap; 
  align-items: flex-start; 
  gap: 40px;
}
@media screen and (max-width: 768px) {
.section-content{
  width:100%;
  display:block; 
  padding:10vw 15px;
  margin:auto;
}

.section-content.voice{
  width:94%;
  padding:5% 15px;
  margin:auto;
}







}
/*-------------------------------

角線

---------------------------------*/
.section-corner{
position:relative;
}

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

角線:news

---------------------------------*/
.section-corner.news::before,
.section-corner.news::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  z-index: 2;
}

/* 左下（L字） */
.section-corner.news::before {
  left: 50px;
  bottom: 50px;
  border-left:1px solid #ccc;
  border-bottom:1px solid #ccc;
}

/* 右上（L字） */
.section-corner.news::after {
  right: 50px;
  top: 50px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
}


@media screen and (max-width: 768px) {
.section-corner.news::before {
    left: 15px;
    bottom: 15px;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.section-corner.news::after {
    right: 15px;
    top: 15px;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
.section-corner.news::before, 
.section-corner.news::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 130px;
    z-index: 2;
 }
}

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

角線:about

---------------------------------*/
.section-corner.about::before,
.section-corner.about::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 200px;
  z-index: 2;
}

/* 左下（L字） */
.section-corner.about::before {
  left: 50px;
  bottom: 50px;
  border-left:1px solid #56565f;
  border-bottom:1px solid #56565f;
}

/* 右上（L字） */
.section-corner.about::after {
  right: 50px;
  top: 50px;
  border-top: 1px solid #56565f;
  border-right: 1px solid #56565f;
}

@media screen and (max-width: 768px) {
.section-corner.about::before,
.section-corner.about::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 70px;
  z-index: 2;
}
.section-corner.about::before {
  left: 15px;
  bottom: 15px;
  border-left:1px solid #56565f;
  border-bottom:1px solid #56565f;
}
.section-corner.about::after {
  right: 15px;
  top: 15px;
  border-top: 1px solid #56565f;
  border-right: 1px solid #56565f;
}
.about-efforts {
    padding: 80px 15px !important;
    text-align: center;
    background: #f1f5f8;
}
.about-efforts-innner {
    width: 96% !important;
    margin: auto;
    max-width: 1100px;
    padding: 0 !important;
}


}

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

角線:about以外

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


.section-corner::before,
.section-corner::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  z-index: 2;
}

/* 左下（L字） */
.section-corner::before {
  left: 0;
  bottom: 0;
  border-left:1px solid #ccc;
  border-bottom:1px solid #ccc;
}

/* 右上（L字） */
.section-corner::after {
  right:0;
  top:0;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
.section-corner::before,
.section-corner::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  z-index: 2;
}
/* 左下（L字） */
.section-corner::before {
  display:none;
}

/* 右上（L字） */
.section-corner::after {
   display:none;
}




}
/* =========================

   NEWSセクション
   
========================= */
.news-container {
  max-width: 1200px;
  padding:150px 15px;
}
.section-news {
  padding: 10vw;
  background: #295732;
  color: #fff;
  position: relative;
}

.top-post{
  color: #fff;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 6vw;
    align-items: flex-start;
    padding:6% 0 0;
    width: 100%;
}
.top-post ul{
  margin:0;
}

.top-post ul li{
  list-style:none;
  margin-bottom: 12px; 
  font-size: 0.95em; 
  border-left: 2px solid #fff; 
  padding-left: 10px;
}

.maru::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(images/Rimberio-x.png);
  background-repeat: no-repeat;
  background-size: 200px;
  width: 200px;
  height: 200px;
  z-index: 1;
}
.top-news-btn {
    margin-top: 50px;
}

/* =========================
   スマホ用 news
========================= */
@media screen and (max-width: 768px) {
.top-post{
  display:block; 
}
.top-post ul{
  margin:0;
}
.top-news-btn{
  padding-top: 10%;
  text-align:center;
}
}

/* =========================

   商品一覧セクション
   
========================= */
.top-products-maru{
  position: absolute; 
  top: -50px; 
  left: 90px; 
  width: 20%; 
  height: auto; 
  border-radius: 50%; 
  z-index: 1;
}
.top-products-illust{
  position: absolute;
  top: -100px;
  right: 5%;
  width: 24%;
  z-index: 1;
}
.top-products-ttl{
  text-align: center; 
  margin-bottom: 50px;
}
.top-products-ttl h2{
  font-family: 'Kokoro';
  font-size:3.3rem;
  margin-bottom: 10px;
  font-weight: 400;
}
.section-shop {
  position: relative;
  padding: 120px 20px;
  background: #f9f9f9;
}
.shop-decor-left {
  position: absolute;
  top: -50px;
  left: 90px;
  width: 20vw;
  height: auto;
  border-radius: 50%;
  z-index: 1;
}
.shop-decor-left img {
  width: 100%;
  height: auto;
}
.shop-decor-right {
  position: absolute;
  top: -150px;
  right: 0;
  width: 33vw;
  z-index: 1;
}
.shop-decor-right img {
  width: 100%;
  height: auto;
}
.shop-heading {
  text-align: center;
  margin-bottom: 50px;
}
.shop-heading h2 {
  font-family: 'Times New Roman', serif;
  font-size: 2em;
  margin-bottom: 10px;
}
.shop-heading p {
  font-size: 0.95em;
}

.pre-order-sales{
    max-width: 1200px;
    margin: 10px auto;
    border: 2px solid #295732;
    padding: 2%;
    background-color: #e8f5e3;
}
.pre-order-sales p{
    margin: 0;
}




/* 商品一覧ショートコード出力 */
.product-list {
  max-width: 1200px;
  margin: 0 auto;
}

.button-center {
  text-align: center;
  margin-top: 40px;
}

/* =========================
   スマホ用
========================= */
@media screen and (max-width: 768px) {
.top-products-maru {
    top: -100px;
    left: 20px;
    width: 36vw;
}
.top-products-illust {
    position: absolute;
    top: -18px;
    right: 22px;
    width: 50vw;
    z-index: 1;
}
.shop-decor-left,
.shop-decor-right {
    display: none;
}

  .product-list ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .button-center {
    margin-top: 30px;
  }
}


/* =========================

   Instagram セクション
   
========================= */
.section-instagram {
  padding: 60px 20px;
  background: #fff;
}
.section-instagram h2 {
  font-size:3.3rem; 
  font-family:Kokoro;
  font-weight: 400;
  margin-bottom: 20px;
}
.instagram-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.instagram-heading {
  font-size: 2em;
  margin-bottom: 20px;
}

/* グリッドレイアウト */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 30px;
}

.instagram-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* ボタン */
.instagram-button {
  margin-top: 20px;
}
.instagram-button .cute-faq-button {
  background: #f18ca8;
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  padding: 10px 25px;
  text-decoration: none;
}

/* =========================
   スマホ用
========================= */
@media screen and (max-width: 768px) {
  .section-instagram {
    padding: 50px 15px;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .instagram-button {
    margin-top: 10px;
  }
}











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

農園について

--------------------------------*/
.top-about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 0;
}



.about-text {
  flex: 1 1 48%;
  text-align: left;
}

.section-title {
  font-family: 'Times New Roman', serif;
  font-size: 2em;
  margin-bottom: 10px;
}
.subtitle {
  font-size: 1.2rem;
  text-align: left;
}

.lead {
  font-size: 1.1em;
  font-weight: bold;
  margin: 10px 0 20px;
}

.description {
  font-size: 0.95em;
  line-height: 1.8;
}

.about-btn {
  margin-top: 20px;
}

.about-image {
  flex: 1 1 48%;
  position: relative;
}

.image-frame {
  overflow: hidden;
}

.image-frame img:first-child {
  width: 100%;
  display: block;
}

.stripe-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: repeating-linear-gradient(
    -45deg,
    #333 0,
    #333 2px,
    transparent 2px,
    transparent 6px
  );
}

.muscat-illust {
  position: absolute;
  bottom: -70px;
  right: -60px;
  width: 30%;
}




/*kasou*/

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 0;
  margin-top: 100px;
      margin-bottom: 100px;
}

.about-ilst{
 max-width: 100%; 
 margin-bottom: 30px;
 width:40%;
 position:absolute;
 top:0;
 right:0;
}






















/* =========================
   スマホ用
========================= */
@media screen and (max-width: 768px) {
.top-about-container {
  flex-direction: column;
  text-align: center;
  padding:5% 15px 30% !important;
}

.about-container {
  flex-direction: column;
  text-align: center;
  padding:25% 15px !important;
  margin-top: 0;
  margin-bottom: 0;
  gap:0;
}

.about-text {
  flex: 1 1 100%;
  text-align: left;
}
.about-text h2{
  text-align: left;
}

.about-image {
  flex: 1 1 100%;
  margin-top: 30px;
}
.about-btn {
  margin-top: 70px;
  margin-bottom: 0;
}

.muscat-illust {
  position: absolute;
  top:-4%;
  right:4%;
  width: 40%;
 }
.description {
    font-size: 12px;
    line-height: 1.8;
}
.subtitle {
  font-size: 1.2rem;
  padding-left: 0.5rem;
}
.stripe-bg{
  display:none;
  }
.lead {
  letter-spacing: -1px;
}
.process-cards h2 {
  letter-spacing: -10px;
}



}













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

ボタン

--------------------------------*/
.cute-faq-button {
  display: inline-block;
  padding: 12px 24px;
  background:#e8f5e3;
  color:#2e7330;
  border: 2px solid #2e7330;
  border-radius: 30px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(116, 178, 103, 0.2);
  font-family: "Rounded Mplus 1c", "Yu Gothic", "Helvetica Neue", sans-serif;
  width:300px;
  text-align: center;
}

.cute-faq-button:hover {
  background: #d9f5d9;
  color: #2d5c33;
  border-color: #5fa456;
  box-shadow: 0 2px 4px rgba(95, 164, 86, 0.25);
  transform: translateY(-2px);
}

.cute-faq-button:active {
  background: #bfe6bf;
  transform: translateY(1px);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
.button-center {
  text-align: center;
  margin-top: 20px;
}

/*---フォーム---*/

.mw_wp_form label {
  display: block;
  margin-bottom: 15px;
}

.mw_wp_form input[type="text"],
.mw_wp_form input[type="email"],
.mw_wp_form textarea {
  width: 100%;
  max-width: 600px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.mw_wp_form input[type="submit"] {
  background: #74b267;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

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

 faq よくある質問

--------------------------------*/
.faq{
 display: flex; 
 flex-wrap: wrap; 
 justify-content: space-between; 
 align-items: flex-start;
}
.section_innner{
 margin-bottom: 80px; 
 color:#000; 
 text-align:left;
}
.section_innner ol{
 font-size: 0.95em; 
 line-height: 2; 
 padding-left: 1.2em; 
 margin:100px 0 0;
}
.faq-ilst{
 max-width: 100%; 
 margin-bottom: 30px;
 width:40%;
 position:absolute;
 top:50px;
 right:50px;
}
.faq-section-right{
 min-width: 300px; 
 padding:18% 30px 0; 
 text-align: center; 
 z-index: 1;
}

@media screen and (max-width: 768px) {
.faq{
 padding:5% 15px 20%;
}
.faq-budo{
position:absolute;
top:24px;
right:20px;
width:50%;
}
.faq-section-right {
    min-width: 300px;
    text-align: center;
    z-index: 1;
    margin: auto;
    padding: 0;
}

}





/* =========================

  お客様の声
   
========================= */

.voice-innner{
  flex: 1 1 20%; 
  text-align: center;
}
.voice-post{
  flex: 1 1 50%; 
  margin-top: 4%;
}
.voice-content{
  margin-left: 8%;
  margin-bottom: 40px;
}
.hito-kao-gazo{
  margin-top:0;
}

.top-img-voice{
  width: 20rem; 
  object-fit: cover;
}

.voice-card{
  width:36rem; 
  background: #fff; 
  border-radius: 6px; 
  padding: 20px 30px 20px 50px; 
  position: relative; 
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.pict-budo{
  width: 100px; 
  height: 100px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
  position: absolute; 
  top: 40px; 
  left: -50px;
}
.section-btn{
  text-align: right; 
  padding: 0;
  margin-left: auto;
  margin-right: 0;
}

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

.voice-card {
  width: 100%;
  padding:40px 10px 10px 10px;
  margin: 110px 0 0 0;
}

.pict-budo{
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
}

.top-img-voice{
  display:none;
}
.section-btn{
  text-align: center; 
  padding: 0 10% 10%;
}
.voice-block{
  font-style: italic; 
  border-left: 5px solid #74b267; 
  padding-left: 20px;
  margin:0;
}
.voice-content{
  margin-left:0;
  margin-bottom: 40px;
}
.voice-post {
  margin-top:30%;
  margin-left:0;
}









}


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

 * aboutページ専用CSS
 
 * ---------------------------- */

.about-hero {
  background: url('/wp-content/themes/astra-child/images/about_image_main.png') no-repeat center center;
  background-size: cover;
  height: 30vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/*.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}*/

.about-hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
}

.about-hero-subtitle {
  font-size: 1em;
  letter-spacing: 1px;
  font-style: italic;
}


.about-efforts{
  padding:80px 20px; 
  text-align:center; 
  background: #f1f5f8;
}

.about-efforts-innner{
  width: 100%;
  margin: auto;
  max-width: 1200px;
  padding: 4%;
}

.intro-text{
  flex:1; 
  width: 94%;
  min-width:300px;
}
.intro-text h2{
  text-align:center;
  font-family: kokoro;
  font-weight: 400;
}
.intro-text p{
  text-align: justify;
  width: 100%;
  margin: 120px auto;
}


.about-introduce{
  padding:80px 20px; 
  text-align:center; 
  background: #fff;
}

.about-introduce-innner{
  width: 100%;
  margin: auto;
  max-width: 1100px;
}

.img-tilted-left {
  transform: rotate(-5deg);
  overflow: visible;
  margin-top: 25%;
}
.image-frame-intro{
  overflow: visible;
}
.about-maker{
  position: absolute;
  z-index: 999;
  width: 70%;
  height: auto;
  top: -200px;
  right: 0;
}
.process-cards{
  padding: 0 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  position:relative;
}
.process-bg{
  background: #c1db80;
  padding: 100px 0;
}
.card-grid{
  display: grid; 
  grid-template-columns: 
  repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 30px; 
  margin:100px auto;
}
.card-imgs{
  width:100%; 
  height:180px; 
  object-fit:cover;
  border-radius: 5px 5px 0 0;
}
.card-text{
  padding:15px 20px; 
  background: #fff; 
  border-radius: 0 0 5px 5px;
  max-height:120px;
}
.card-text h3{
  font-size:1.2em; 
  color:#74b267; 
  font-family: kokoro;
  font-weight: 400;
  margin-bottom: 10px;
}
.about-follow{
  padding:60px 20px; 
  background:#fff; 
  text-align:center;"
}
.about-follow h3{
  font-size:1.5em; 
  margin-bottom:10px;
}
.about-flow-illust{
    max-width: 100%;
    width: 20%;
    position: absolute;
    top: -100px;
    right:0;
}
.media-content{
 padding: 10%;
}


.media-grid{
  width: 100%;
  max-width: 1000px;
  display:flex;
  margin:100px auto 0;
}
.media-item{
  width:80%;
  margin:auto; 
  text-align:center;
  border-radius: 10px;
  padding: 10px;
  transition: box-shadow 0.3s ease;
}

.media-img{
  width:100%; 
  height:180px; 
  object-fit:cover; 
  border-radius:8px;
}
.media-item p{
  font-size:0.9em; 
  margin-top:8px;
}























.about-section-title {
  text-align: center;
  font-size: 2em;
  margin: 60px auto 20px;
  font-family: 'Kokoro', serif;
  font-weight: 400;
}

.about-decoration {
  display: block;
  margin: 0 auto 30px;
  width: 120px;
}

.about-message-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 60px;
  font-size: 0.95em;
  line-height: 2;
  text-align: justify;
}

.about-profile-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.about-profile-text {
  flex: 1 1 300px;
}

.about-career {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.about-career li {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 8px;
}

.about-profile-images {
  flex: 1 1 300px;
  position: relative;
}

.about-grape-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}
.about-grape-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-profile-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-process {
  background: #f0f9ea;
  padding: 80px 20px;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-process-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.about-process-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.about-process-card h3 {
  font-size: 1em;
  color: #5a964d;
  margin: 15px 0 5px;
}

.about-process-card p {
  font-size: 0.9em;
  padding: 0 10px 20px;
  color: #555;
}

.about-media {
  padding: 80px 20px;
  background: #f9f9f9;
}

.about-media-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.about-media-item {
  width: 200px;
  text-align: center;
}

.about-media-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.about-media-item p {
  margin-top: 10px;
  font-size: 0.9em;
  color: #555;
}

/* --- Responsive --- */


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

.img-tilted-left {
  transform: rotate(-5deg);
  overflow: visible;
  margin-top: 25%;
}
.intro-text p {
  margin: 120px auto 0;
}
.process-cards {
    padding: 20px 15px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.image-frame-intro{
  overflow: visible;
}
.about-maker{
  position: absolute;
  z-index: 999;
  width: 30%;
  height: auto;
  top:0;
  right: 0;
}
.stripe-bg {
    position: absolute;
    bottom: 0;
    left: 33px;
    width: 90%;
    height: 52px;
    background: repeating-linear-gradient(-45deg, #333 0, #333 2px, transparent 2px, transparent 6px);
}
}






















@media screen and (max-width: 768px) {
  .about-profile-inner {
    flex-direction: column;
    align-items: center;
  }
  .about-profile-images {
    text-align: center;
  }
  .about-hero-title {
    font-size: 2em;
  }
  .about-section-title {
    font-size: 1.5em;
  }
  .about-maker{
    position: absolute;
    width: 100px;
    height: auto;
    top: 200px;
    bottom:0;
    right: 0;
    left:0;
    z-index: 0;
}
.about-flow-illust {
    max-width: 100%;
    width: 40%;
    position: absolute;
    top: 120px;
    right:10px;
}
.process-bg{
  background: #c1db80;
  padding: 0;
}
  .media-grid {
    width: 100%;
    max-width: 1000px;
    display: block;
    margin: auto;
}
.intro-text {
    flex: 1;
    width: 100%;
    min-width: 300px;
}
}






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

ブログ

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

.blog-left-part{
  flex: 1 1 45%; 
  min-width: 280px; 
  padding: 20px 0;
  position:relative;
}

.blog-left-part::after {
  content: "";
  position: absolute;
  top: -50px;
  left: 75%;
  transform: translateX(-50%);
  background-image: url(images/top_illust_blog.png);
  background-repeat: no-repeat;
  background-size: 300px;
  width: 300px;
  height: 300px;
  z-index: 1;
}

.blog-archive{
  max-width: 1000px; margin: 40px auto;
}
.top-blog-list{
  list-style: none; 
  padding-left: 0; 
  margin-top: 10%;
}
.top-blog-list li{
  margin-bottom: 12px; 
  font-size: 1.2rem;
  border-left: 3px solid #104303;
  padding-left: 1rem;
}


/* --- Responsive --- */
@media screen and (max-width: 768px) {
.blog-left-part::after {
    content: "";
    position: absolute;
    top: -10px;
    right: 0;
    left:65%;
    /* transform: translateX(-50%); */
    background-image: url(images/top_illust_blog.png);
    background-repeat: no-repeat;
    background-size: 200px;
    width: 200px;
    height: 200px;
    z-index: 1;
}
}






















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

FAQ

--------------------------------*/
.faq-answer{
  background:#d8e7e7;
  padding: 2%;
  margin: 2% 0;
}
.faq-answer p:first-child {
  display: inline;
}

.faq-answer-inner {
  background-color: #f2faf9;

  padding-right: 20px;
  line-height: 1.6;
}

.container {
  position: relative;
}
.container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 250px;
}
.container p {
  position: absolute;
  padding: 10px;
  margin: 0;
}
.container .tag {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  font-size: 2em;
  color: #fff;
}
.container .tag-b {
  top: 54%;
  left: 50%;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .container .tag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.7em;
    color: #fff;
  }
  .container .tag-b {
    top: 50%;
    left: 46%;
    color: #fff;
    font-size: 1em;
  }
}

.faq-list {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.faq-container {
  max-width: 650px;
  width: 100%;
  margin: auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .faq-layout {
    max-width: 100%;
    margin: 0 auto;
  }
  .faq-container {
    max-width: 100%;
    margin: 0 auto;
  }
  .faq-list {
    max-width: 100%;
    margin: 0 auto;
  }
}
.decoration {
  position: absolute;
  top: -90px;
  right: 0;
  width: 340px;
  height: 100px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
}

.decoration-b {
  position: absolute;
  bottom: -50px;
  left: 0px;
  width: 340px;
  height: 100px;
  border-bottom: 1px solid #333;
  border-left: 1px solid #333;
}

@media screen and (max-width: 768px) {
  .decoration {
    position: absolute;
    top: -60px;
    right: 0;
    width: 170px;
    height: 60px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
  }
  .decoration-b {
    position: absolute;
    bottom: -40px;
    left: -10px;
    width: 170px;
    height: 60px;
    border-bottom: 1px solid #333;
    border-left: 1px solid #333;
  }
}















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

  メディア掲載ページ用スタイル
  
----------------------------------*/

/* アーカイブページ用カードレイアウト */
.media-archive-grid {
  /*display: flex;*/
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}


.media-card {
  width:100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  max-width: 800px;
}

.media-thumb img {
  width: 200px;
  height: auto;
  border-radius: 5px;
}

.media-card-text {
  flex: 1;
}

.media-card-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.media-card-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}

.media-card-link {
  color: #009966;
  text-decoration: underline;
}


.media-card:hover {
  transform: translateY(-5px);
}
.wp-block-image img {
    box-sizing: border-box;
    height: auto;
    max-width: 500px;
    vertical-align: bottom;
}
/* 詳細ページ（single）用 */
.about-media {
  padding:0 20px;
  background: #fff;
  width: 100%;
  max-width: 1200px;
  margin: 10% auto;
}

.media-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.media-item p {
  margin-top: 10px;
  font-size: 0.95em;
  color: #333;
}

/* イラスト（PCのみ表示） */
.pconly {
  display: block;
}
@media screen and (max-width: 768px) {
  .media-card, .media-item {
    flex: 1 1 100%;
  }
  .media-item {
    width: 100% !important;
    margin: 100px 0 0;
  }
  .pconly {
    display: none;
  }
  
  .about-media {
    margin: 100px auto;
  }
}
@media screen and (max-width: 768px) {
  .media-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .media-thumb img {
    width: 100%;
    max-width: 300px;
  }

  .media-card-text {
    width: 100%;
  }
  .media-archive{
  padding:0 5px;
  }

}

.section-title {
  text-align: left;
  font-size: 2em;
  margin: 0;
  font-family: 'Kokoro', sans-serif;
  font-weight: 400;
}


.media-archive-grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column; /* または grid にしてもOK */
  align-items: center;
  gap: 30px;
  margin: 100px auto;
  padding: 0 20px;
  justify-content: center;
  max-width: 1000px;
}

/*.media-card {
  flex: 1 1 45%;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}*/

.media-card:hover {
  transform: translateY(-5px);
}

.media-card-title {
  font-size: 1.1em;
  margin-bottom: 15px;
  font-weight: bold;
}

.media-card-link {
  display: inline-block;
  margin-top: 10px;
  color: #295732;
  text-decoration: underline;
}

.media-no-posts {
  text-align: center;
  font-size: 1em;
  color: #666;
}

.media-item:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.media-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.media-item p {
  margin-top: 10px;
  font-size: 0.9em;
}

.btn-media-archive {
  display: inline-block;
  margin-top: 40px;
  background: #295732;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-media-archive:hover {
  background: #3a6c40;
}
.media-no-posts {
  text-align: center;
  font-size: 1em;
  color: #666;
  margin: 20px 0;
}

.media-archive-link {
  text-align: center;
  margin-top: 40px;
}

.btn-media-archive {
  display: inline-block;
  background: #295732;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-media-archive:hover {
  background: #3a6c40;
}






























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

フッター

--------------------------------*/
#site-footer {
  background:#2e5c30; 
  color: #fff; 
  padding: 50px 40px; 
  text-align: center;
}

#site-footer a:hover {
  text-decoration: underline;
  color: #c1db80;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.site-footer-inr{
 max-width: 1400px;
 margin: 0 auto; 
 display: flex; 
 flex-wrap: wrap; 
 justify-content: 
 space-between; align-items: 
 flex-start; gap: 30px;
}

.footer-logo-pc{
 display:block;
 flex: 1 1 200px; 
 text-align: left;
}
.footer-logo-sp{
 display:none;
}
.footer-menu-left {
 flex: 1 1 700px; 
 display: flex; 
 justify-content:space-between; 
 padding: 0 20px; 
 text-align: left;
}
.footer-menu-left-a{
 width: 33%; 
 list-style: none; 
 margin: 0; 
 padding: 0 20px 0 10px; 
 line-height: 1.8; 
 border-left: 1px solid #fff;
}

.footer-menu-left-b{
 width: 33%; 
 list-style: none; 
 margin: 0; 
 padding: 0 20px 0 10px; 
 line-height: 1.8; 
 border-left: 1px solid #fff; 
 border-right: 1px solid #fff;
}

/* =========================
   スマホ用
========================= */
@media screen and (max-width: 768px) {
.footer-logo-pc{
 display:none;
}
.footer-logo-sp{
 text-align: center;
 display: block;
 margin-top: 100px;
}




.footer-menu-left {
    display: block;
    justify-content: space-between;
    padding: 0;
    text-align: left;
    flex: 1 1 700px;
}

.footer-menu-left-a {
    width: 100%;
    text-align: center;
    line-height: 3;
    border-left: 1px solid #fff; 
    border-right: 1px solid #fff;
}
.footer-menu-left-b{
    width: 100%;
    text-align: center;
    line-height: 3;
    border-left: 1px solid #fff; 
    border-right: 1px solid #fff;
}

}
/*-------------------------------
修正
--------------------------------*/

/* @ aboutページ全体の中央ズレ修正 */
#main-content section {
  /*padding:0;*/
  box-sizing: border-box;
}

/* A ギャラリー画像を横4枚×2段、高さ統一 */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-grid a {
  display: block;
  width: 100%;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

@media screen and (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .gallery-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
  .gallery-item {
    width: 45% !important;
  }
}
/* B メディア掲載画像の高さを統一 */

.about-media .media-item {
  width: 200px;
  text-align: center;
}
.about-media .media-item img {
  width: 100%;
    height: 180px;
  object-fit: cover;
  border-radius: 8px;
}
.about-media .media-item p {
  font-size: 0.9em;
  margin-top: 8px;
}
@media (min-width: 922px) {
  .page-id-4707 .site-content .ast-container {
    display: block !important;
  }
}
body.page-id-4707 .ast-container {
  display: block !important;
  flex-direction: unset !important;
  justify-content: unset !important;
}
/* aboutページだけ Astraのdisplay:flexを無効化（ズレ解消） */
body.page-id-4707 .site-content .ast-container {
  display: block !important;
}
/* Aboutページだけ、左右余白を完全になくす */
body.page-id-4704 .ast-container {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
}
body.page-id-4704 .site-main {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
}








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

スマホ横

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



@media screen and (max-width: 1024px) and (orientation: landscape) {
  /* NEWSセクションの文字サイズ微調整 */
  .section-news h2,
  .top-post ul li {
    font-size: 0.85em;
  }

  /* 商品一覧を3列に変更（2列だと隙間が多くなるため） */
  .product-list ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px;
  }

  /* Instagramグリッドも4列まで拡張 */
  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* VOICEセクションの吹き出し幅調整 */
  .voice-card {
    width: 90%;
    margin: 0 auto 40px;
  }

  .pict-budo {
    top: 100px;
    width: 80px;
    height: 80px;
  }

  /* ギャラリー（aboutページ）も最適化 */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .gallery-item {
    width: 100% !important;
  }

  /* aboutセクション画像の配置調整 */
  .about-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
  }

  .about-text, .about-image {
    flex: 1 1 48%;
  }


.section-content {
    width: 100% !important;
    padding: 5% 8%;
    margin: auto;
}
.custom-header-content {
    display:none;
}
  .cute-faq-button {
    width: 24vw;
}
}




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

下層

--------------------------------*/
.u-page-title{
  font-family: kokoro;
  color: #fff;
  font-weight: 400;
  text-shadow: 1px 1px 10px #007b15;
 }

.u-page-title::before{
    content: "";
    position:absolute;
    top: 5vh;
    left: 40px;
    background: url('/wp-content/themes/astra-child/images/ligo_white.png') no-repeat center center;
    z-index: 9999;
    padding:0;
    width: 150px;
    height: 150px;
    background-size: contain;
  }





.blog-hero {
  background: url('/wp-content/themes/astra-child/images/online_image_main.png') no-repeat center center;
  background-size: cover;
  height:30vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.news-hero {
  background: url('/wp-content/themes/astra-child/images/online_image_main.png') no-repeat center center;
  background-size: cover;
  height:30vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.faq-hero {
  background: url('/wp-content/themes/astra-child/images/faq_image_main.png') no-repeat center center;
  background-size: cover;
  height:30vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.voice-hero {
  background: url('/wp-content/themes/astra-child/images/voice_image_main.png') no-repeat center center;
  background-size: cover;
  height:30vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.blog-hero {
  background: url('/wp-content/themes/astra-child/images/blog_image_main.png') no-repeat center center;
  background-size: cover;
  height:30vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.blogs-hero {
  background: url('/wp-content/themes/astra-child/images/blogs_image_main.png') no-repeat center center;
  background-size: cover;
  height:30vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-hero {
  background: url('/wp-content/themes/astra-child/images/contact_image_main.png') no-repeat center center;
  background-size: cover;
  height:30vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}






.kaso-page-section{
  max-width: 1200px; 
  margin: 100px auto; 
  position: relative; 
  padding: 160px 120px 60px;
}

.under-content{
  max-width: 1200px; 
  margin: 100px auto; 
  position: relative; 
  padding: 160px 120px 60px;
}

.left-corner{
  position: absolute; 
  top: 0; 
  right: 0; 
  width: 400px; 
  height: 160px; 
  border-top: 1px solid #ccc; 
  border-right: 1px solid #ccc;
}

.right-corner{
  position: absolute; 
  bottom: 0; 
  left: 0; 
  width: 400px; 
  height: 160px; 
  border-bottom: 1px solid #ccc; 
  border-left: 1px solid #ccc;
}

.under-content-ttl{
  text-align: left; 
  margin-left:0; 
  margin-bottom: 140px; 
  position: relative;
}
.under-content-ttl img{
  position: absolute; 
  top: -150px; 
  right: -110px; 
  width: 50%; 
  z-index: 1;
}





@media (max-width: 768px) {
.kaso-page-section{
  max-width: 1200px; 
  margin: 100px auto; 
  position: relative; 
  padding:0;
}

.left-corner{
  position: absolute; 
  top: -80px; 
  right: 0; 
  width: 25vw; 
  height: 160px; 
  border-top: 1px solid #ccc; 
  border-right: 1px solid #ccc;
}
.right-corner{
  position: absolute; 
  bottom: -80px; 
  left: 0; 
  width: 25vw; 
  height:60px; 
  border-bottom: 1px solid #ccc; 
  border-left: 1px solid #ccc;
}

.u-page-title::before {
    content: "";
    position: absolute;
    background: url(/wp-content/themes/astra-child/images/ligo_white.png) no-repeat center center;
    z-index: 9999;
    padding: 0;
    width: 100px;
    height: 150px;
    background-size: contain;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.u-page-title {
    text-shadow: 1px 1px 10px #007b15;
    margin-top: 100px;
}







.custom-header-content {
    display:none;
}
.under-content{
  width: 94%;
  max-width: 1200px; 
  margin: 100px auto; 
  position: relative; 
  padding:10px;
}
.under-content-ttl{
  text-align: left; 
  margin-left:0; 
  margin-bottom: 100px; 
  position: relative;
}
.under-content-ttl img{
  position: absolute; 
  top: -80px; 
  right: 0px; 
  width: 40vw; 
  z-index: 1;
}























}

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

スマホ横向きだけ反映確認用

--------------------------------*/
@media screen and (max-width: 1024px) and (orientation: landscape) {
  body::after {
    content: "スマホ横向きCSS読まれたよ！";
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: red;
    color: white;
    font-size: 10px;
    z-index: 9999;
    padding: 2px 6px;
  }
  .u-page-title::before {
    content: "";
    position: absolute;
    top: 5vh;
    left: 40px;
    background: url(/wp-content/themes/astra-child/images/ligo_white.png) no-repeat center center;
    z-index: 9999;
    padding: 0;
    width: 150px;
    height: 70px;
    background-size: contain;
}
}



/* ▼ PCヘッダーはトップページ以外で非表示 */
body:not(.home) .custom-header {
  display: none !important;
}

/* ▼ ハンバーガーは常に表示（必要に応じてSP用メディアクエリで調整） */
.hamburger-morph {
  display: block;
}

/* ▼ PC用ナビをSPで非表示にする場合（任意） */
@media screen and (max-width: 768px) {
  .custom-header {
    display: none !important;
  }
}


.hamburger-morph {
  z-index: 9999 !important;
  pointer-events: auto !important;
}


@media screen and (max-width: 1024px) and (orientation: landscape) {
.section-corner.news::after {
    right: 2%;
    top: 8%;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.section-corner.news::before {
    left: 2%;
    bottom: 8%;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.section-corner.news::before, .section-corner.news::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 2;
}
.top-products-illust {
    position: absolute;
    top: -10px;
    right: 5%;
    width: 24%;
    z-index: 1;
}
.section-corner.about::after {
    right: 2%;
    top: 2%;
    border-top: 1px solid #56565f;
    border-right: 1px solid #56565f;
}
.section-corner.about::before {
    left: 2%;
    bottom: 2%;
    border-left: 1px solid #56565f;
    border-bottom: 1px solid #56565f;
}
.section-corner.about::before, .section-corner.about::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 2;
}
.image-frame {
    position: relative;
    overflow: hidden;
    width: 50%;
}
.shop-cart.pconly {
    display: flex;
    position: fixed;
    top: 0%;
    right: 0;
    z-index: 99999999999999999999999999999999999999999999999999999999;
    width: 50%;
    justify-content: end;
    text-align: center;
}
.top-img-voice {
    width: 20rem;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}
.ms-nav-container {
  max-height: 100vh; /* 画面高の最大まで */
  overflow-y: auto;  /* 垂直スクロールを有効に */
}
}
/*-------------------------------

store

--------------------------------*/
body, .ast-separate-container {
    background-image:none;
    background: #fff;
}
.ast-container{
 width:100%;
 max-width:1200px !important;
 margin:auto;
 padding:2%; 
}

.ast-row {
  display: flex;
  flex-wrap: nowrap;
}
.sidebar {
  width: 25%;
  padding:2%;
}
.content-area {
  width: 96% !important;
  padding:2%;
}
.astra-shop-summary-wrap{
  background: #fff;
  padding: 10px;
  max-height: 170px;
  height: 100%;
}

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

woo-thankyou

--------------------------------*/
.thankyou-message {
  margin-top: 30px;
  padding: 20px;
  background-color: #f3fdf3;
  border: 1px solid #cce5cc;
  text-align: center;
}
.thankyou-message .button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  border-radius: 5px;
}

.thankyou-hero {
  background-color: #f4f4e8;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}
.thankyou-hero h1 {
  font-size: 2rem;
  color: #3a3a1c;
  margin-bottom: 10px;
}
.thankyou-hero p {
  font-size: 1.2rem;
  color: #555;
}

/* ヒーローセクション全体 */
.thankyou-hero {
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  padding: 80px 20px;
  text-align: center;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* アニメーション用クラス（JSで付与される） */
.thankyou-hero.visible {
  opacity: 1;
  transform: translateY(0);
}

.thankyou-hero h1 {
  font-size: 2.2rem;
  color: #2e7d32;
  margin-bottom: 20px;
}

.thankyou-hero .subtext {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.hero-button {
  display: inline-block;
  background-color: #43a047;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #2e7d32;
}

/* WooCommerce外ラッパー */
.thankyou-hero-wrapper {
  width: 100%;
  background: linear-gradient(135deg, #f4ffe9, #e0f7e9);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.thankyou-hero-wrapper-inr{
  width: 90%;
  margin: 100px auto;
}





/* 中央寄せ＆サイズ制限 */
.thankyou-hero {
  max-width: 900px;
  width: 100%;
  text-align: center;
  background: white;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 1s ease-out both;
}

/* アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* テキストスタイル */
.thankyou-hero h1 {
  font-size: 2.4rem;
  color: #2e7d32;
  margin-bottom: 20px;
}

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

/* ボタン */
.hero-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #43a047;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #2e7d32;
}


/*--------------------------------商品ページ--*/
	

.product-hero-wrapper {
  width: 100%;
  height:30vh;
  background: url('/wp-content/themes/astra-child/images/online_image_main.png') no-repeat center center;
  padding:0;
  display: flex;
  justify-content: center;
  background-size: cover !important;
}



.product-hero h1.product-title {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 10px;
}

.product-hero .product-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 商品ページ全体を中央寄せ */
.woocommerce div.product {
  max-width: 1200px;
  width:100%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.woocommerce div.product .summary,
.woocommerce div.product .woocommerce-product-gallery {
  float: none !important;
  text-align:left;
  max-width: 600px;
  margin: 0 auto;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: left;
  line-height: 1.6;
}
.woocommerce-Tabs-panel {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}
.woocommerce-Tabs-panel p {
  margin-bottom: 1.2em;
}
.woocommerce-Tabs-panel img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* 商品画像ギャラリーと説明を横並びで中央配置 */
.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none !important;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}




.woocommerce div.product div.images img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* 商品説明のテキスト崩れ対策 */
.woocommerce div.product .summary,
.woocommerce div.product .woocommerce-product-details__short-description {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: left;
  line-height: 1.7;
}

/* 本文（タブ）も中央に揃える */
.woocommerce-Tabs-panel {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.8;
  text-align: left;
}

/* 画像の統一スタイル（本文中） */
.woocommerce-Tabs-panel img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* 商品タイトル・価格・カートボタンも中央揃え */
.woocommerce div.product .product_title,
.woocommerce div.product .price,
.woocommerce div.product form.cart {
  text-align:left;
  margin: 0 auto 20px;
}












/* ▼ WooCommerce 商品グリッドのレスポンシブ調整 */
@media (max-width: 768px) {
  .woocommerce ul.products.columns-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
  }

  .woocommerce .widget-area {
    width: 100%;
    margin-top: 30px;
    float: none;
    display: block;
  }

  .woocommerce .content-area {
    width: 100%;
    float: none;
  }
  .ast-row {
    display: block;
    flex-wrap: nowrap;
  }
  .content-area {
    width: 96% !important;
    padding: 2%;
  }
  .ast-row {
    margin-left:20px;
    margin-right:20px;
  }
  .woocommerce-js .woocommerce-ordering select, .woocommerce-page .woocommerce-ordering select {
    background-color: #fff;
    border: 1px solid #8a939d;
    border-radius: 0;
    margin-right: 0;
    margin-left: 25%;
  }
}

/* ▼ スマホ最小幅対応（1列にする） */
@media (max-width: 480px) {
  .woocommerce ul.products.columns-3 {
    grid-template-columns: 1fr;
  }
}

/* ▼ ハンバーガーメニュー初期状態 */
.nav-morph {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(46, 115, 48, 0.94); /* 背景色 */
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}

/* ▼ メニュー表示時 */
.nav-morph.active {
  clip-path: circle(150% at calc(100% - 44px) 44px);
  pointer-events: auto;
  opacity: 1;
}

.woocommerce-Price-currencySymbol {
  font-family: "Noto Sans JP", sans-serif !important;
}
.woocommerce-ordering select {
    display: none;
}

.empty{
  height:100px;
  }
