* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
p {
  font-size: min(3.6vw, 18px);
}
body {
  font-family: "M PLUS 1", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  background-color: #F6F9F6 !important;
  overflow-x: hidden;
  width: 100%;
}
.zen-maru {
  font-family: "Zen Maru Gothic", sans-serif;
}
.yusei {
  font-family: "Yusei Magic", sans-serif;
}
.m-plus {
  font-family: "M PLUS 1", sans-serif;
}
.en {
  font-family: "Hind Vadodara", sans-serif;
  font-size: min(4vw, 32px);
  color: #7E4C9B;
}
.bold {
  font-weight: bold;
}
/*-----------------
 ヘッダー
------------------*/
header {
  background-color: #A462CA;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
#header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1400px;
  margin: 1rem auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.logo img {
  height: 50px;
  margin-left: 1rem;
}
.logo span {
  color: #fff;
  font-size: min(5vw, 36px);
}
.header-nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  padding: 6rem;
  transform: translateX(100%); 
  background-color: #A462CA;
  transition: ease .4s;
}
/* ハンバーガーメニュー */
.header-hamburger {
  width: 50px;
  height: 100%;
}
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
.hamburger span {
  width: 100%;
  height: 0.2rem;
  border-radius: 8px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 0.4rem 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
.header-nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: -5%;
  left: -40%;
  transform: translateY(620%) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -5%;
  left: -40%;
  transform: translateY(5%) rotate(-45deg);
}
.nav-items {
  padding-top: 250px;
  padding-bottom: 200px;
}
.pc-nav-item:hover {
  opacity: 0.6;
}
/* ナビのリンク */
.nav-items-item a {
  color: #fff;
  width: 100%;
  display: block;
  text-align: left;
  font-size: 2rem;
  margin-bottom: 2rem;
  padding: 1rem 3rem;
}
.nav-items-item:last-child a {
  margin-bottom: 0;
}
header {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
}

header.is-visible {
  opacity: 1;
  visibility: visible;
}

/* header レスポンシブ */
@media screen and (min-width: 1198px) {
  .pc-nav {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: space-between;
  }
  .pc-nav-item {
    margin: 1rem 1rem auto;
  }
  .pc-nav-item {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }
  .header-nav, .hamburger {
    display: none;
  }
}
@media screen and (max-width: 1197px) {
    .pc-nav {
        display: none;
    }
    header, #header {
        height: 60px;
    }
    #header {
      align-items: center;
      margin: auto;
    }
    .logo img {
      height: 40px;
    }
    .nav-items-item a {
        font-size: 1.2rem;
        margin-bottom: 0;
        padding: 1rem;
    }
    .header-nav {
        padding: 1rem;
    }
}
/*---------------
CTA
---------------*/
.cta {
  background-color: #A462CA;
  border-radius: 30px;
  border: 5px solid #fff;
  padding: 0.8rem;
  margin-left: 1rem;
  z-index: 999;
}
.cta-tel, .cta-title {
  color: #fff;
}
.cta-tel {
  font-size: 24px;
  margin: .6rem auto;
}
.cta-mail {
  color: #7E4C9B;
  background-color: #fff;
  border-radius: 3rem;
  padding: 8px 40px 8px 20px;
  position: relative;
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.cta-mail:hover {
  opacity: 0.6;
}
.cta-mail::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 51%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #7E4C9B;
  border-right: 2px solid #7E4C9B;
  transform: translateY(-50%) rotate(45deg);
}
.cta-title::before, .cta-title::after, .aboutus-content-title::before, .aboutus-content-title::after {
  content: "";
  display: inline-block;
  width: min(8vw, 24px);
  height: min(6vw, 16px);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.cta-title::before, .aboutus-content-title::before {
  background-image: url(../images/peach.png);
  margin-right: 8px;
}
.cta-title::after, .aboutus-content-title::after {
  background-image: url(../images/grape.png);
  margin-left: 8px;
}
.cta-tel::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 28px;
  background-image: url(../images/tel-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: bottom;
  margin-right: 2px;
}

/*---------------
共通
---------------*/
.inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}
.flex {
  display: flex;
  align-items: center;
}
.reverse {
  flex-direction: row-reverse;
}
.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
.section-title {
  margin-bottom: 4rem;
}
.section-title p, .section-title h2 {
  text-shadow:
    3px 3px 0 #fff,
    -1px 1px 0 #fff,
    -1px -1px 0 #fff,
    1px -1px 0 #fff;
  text-align: center;
  letter-spacing: 5px;
}
.section-title h2 {
  font-size: min(7vw, 54px);
  color: #7E4C9B;
}
.pink {
  color: #FF85CA;
}
.purple {
  color: #A462CA;
}
.red {
  color: #FE3030;
}
.center {
  text-align: center;
}
.small {
  font-size: 12px;
}
.section-title .zen-maru::before, .section-title .zen-maru::after {
  content: "";
  display: inline-block;
  width: min(10vw, 72px);
  height: min(6vw, 45px);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: baseline;
}
.section-title .zen-maru::before {
  background-image: url(../images/peach.png);
  margin-right: 8px;
}
.section-title .zen-maru::after {
  background-image: url(../images/grape.png);
  margin-left: 8px;
}
#peach .section-title .zen-maru::after {
  background-image: url(../images/peach.png);
}
#grape .section-title .zen-maru::before, #grape-picking .section-title .zen-maru::before {
  background-image: url(../images/grape.png);
}

.btn {
  color: #7E4C9B;
  font-size: min(4vw, 20px);
  font-weight: bold;
  background-color: #fff;
  border: 2px solid #7E4C9B;
  border-radius: 3rem;
  padding: 16px 40px 16px 20px;
  margin: 1.6rem auto 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
}
.btn:hover {
  background-color: #7E4C9B;
  color: #fff;
}
.btn::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #7E4C9B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}
.btn:hover::after {
  background-color: #fff;
}
.btn:hover::before {
  border-color: #7E4C9B;
}
.page-btn {
  width: 60%;
}
/*---------------
MV
---------------*/
#mv {
  position: relative;
  width: 90%;
  margin: 80px auto 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.splide {
  width: 90%;
  margin: 8rem auto;
}
.splide__slide figure {
  background-color: #333;
  border-radius: 6rem;
}
.splide__slide img {
  width: 100%;
  max-height: 618px;
  object-fit: cover;
  border-radius: 6rem;
  opacity: 0.7;
}
.splide__arrow {
  display: none !important;
}
.mv-right, .mv-left, .mv-right-bg {
  position: absolute;
  width: 25%;
  opacity: 1;
  position: absolute;
}
.mv-left {
  top: -40px;
  left: 0px;
}
.mv-right {
  bottom: -40px;
  right: 0px;
}
#mv h1, .page-mv h1 {
  color: #fff;
  font-size: min(6vw, 54px);
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.arch-text {
  display: inline-flex;
  justify-content: center;
  position: relative;
  font-size: min(3vw, 24px);
  padding: 20px; 
}
.arch-text .surge-in {
  display: inline-block;
  transform-origin: center 150px; 
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out, filter 1.2s ease-out;
}
/* --- 各文字の角度設定 ---*/
.arch-text .surge-in:nth-of-type(1)  { transform: rotate(-25deg) scale(0.1); }
.arch-text .surge-in:nth-of-type(2)  { transform: rotate(-19deg) scale(0.1); }
.arch-text .surge-in:nth-of-type(3)  { transform: rotate(-13deg) scale(0.1); }
.arch-text .surge-in:nth-of-type(4)  { transform: rotate(-7deg)  scale(0.1); }
.arch-text .surge-in:nth-of-type(5)  { transform: rotate(-2deg)  scale(0.1); }
.arch-text .surge-in:nth-of-type(6)  { transform: rotate(2deg)   scale(0.1); }
.arch-text .surge-in:nth-of-type(7)  { transform: rotate(7deg)   scale(0.1); }
.arch-text .surge-in:nth-of-type(8)  { transform: rotate(13deg)  scale(0.1); }
.arch-text .surge-in:nth-of-type(9)  { transform: rotate(19deg)  scale(0.1); }
.arch-text .surge-in:nth-of-type(10) { transform: rotate(25deg)  scale(0.1); }
#mv.is-visible .arch-text .surge-in {
  opacity: 1;
  filter: blur(0);
}
#mv.is-visible .arch-text .surge-in:nth-of-type(1)  { transform: rotate(-25deg) scale(1); transition-delay: 0.8s; }
#mv.is-visible .arch-text .surge-in:nth-of-type(2)  { transform: rotate(-19deg) scale(1); transition-delay: 0.85s; }
#mv.is-visible .arch-text .surge-in:nth-of-type(3)  { transform: rotate(-13deg) scale(1); transition-delay: 0.9s; }
#mv.is-visible .arch-text .surge-in:nth-of-type(4)  { transform: rotate(-7deg)  scale(1); transition-delay: 0.95s; }
#mv.is-visible .arch-text .surge-in:nth-of-type(5)  { transform: rotate(-2deg)  scale(1); transition-delay: 1.0s; }
#mv.is-visible .arch-text .surge-in:nth-of-type(6)  { transform: rotate(2deg)   scale(1); transition-delay: 1.05s; }
#mv.is-visible .arch-text .surge-in:nth-of-type(7)  { transform: rotate(7deg)   scale(1); transition-delay: 1.1s; }
#mv.is-visible .arch-text .surge-in:nth-of-type(8)  { transform: rotate(13deg)  scale(1); transition-delay: 1.15s; }
#mv.is-visible .arch-text .surge-in:nth-of-type(9)  { transform: rotate(19deg)  scale(1); transition-delay: 1.2s; }
#mv.is-visible .arch-text .surge-in:nth-of-type(10) { transform: rotate(25deg)  scale(1); transition-delay: 1.25s; }
#mv.is-visible .arch-text .surge-in:nth-of-type(10) { transform: rotate(25deg) translateY(0) scale(1); transition-delay: 1.25s; }
#mv.is-visible .arch-text .surge-in {
    opacity: 1;
    filter: blur(0);
    margin-top: 0; 
}
/* MVアニメーション */
#mv.is-visible {
  opacity: 1;
}
.splide {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease 0.3s, transform 1.2s ease 0.3s;
}
#mv.is-visible .splide {
  opacity: 1;
  transform: translateY(0);
}
.surge-in {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px) scale(0.1);
  filter: blur(10px);
  transition: 
      opacity 1.2s ease-out, 
      transform 1.2s,
      filter 1.2s ease-out;
}
#mv.is-visible .surge-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
/* --- 1行目：DAIMATSUEN --- */
#mv.is-visible .surge-in:nth-of-type(1) {
  transition-delay: 0.8s;
}
/* --- 2行目：『桃・ぶどう日本一』 --- */
#mv.is-visible .surge-in:nth-of-type(2) {
  transition-delay: 1.2s;
}
/* --- 3行目：山梨県笛吹市から産地直送 --- */
#mv.is-visible .surge-in:nth-of-type(3) {
  transition-delay: 1.6s;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1), 
              transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: opacity, transform;
}
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/*---------------
information
---------------*/
#mv-text {
  background-image: url(../images/mv-bg1.jpg);
  background-size: 100%;
}
.mv-text {
  background-color: rgba(255, 255, 255, 0.562);
  padding: 10rem 0;
}
.information-box {
  width: 80%;
  margin: 0 auto;
}
.information-fv1, .information-fv2 {
  font-size: min(3.2vw, 20px);
  border: 3px solid #FF85CA;
  outline: solid 15px #fff;  
  background-color: #fff;
  border-radius: 10rem;
  padding: 1rem 3rem;
  width: 70%;
  max-width: 784px;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.information-fv1 {
  margin: 0 auto 6rem 2rem;
}
.information-fv2 {
  margin: 0 2rem 0 auto;
}
.information-fv1 img, .information-fv2 img {
  width: auto;
  height: 160px;
}
#information {
  background-image: url(../images/bg-grape.png);
  background-size: 100%;
  padding: 10rem 0;
}
.information-contentbox .flex, #news .flex {
  gap: 2rem;
  margin: 4rem auto;
  justify-content: center;
}
.content-img img{
  border: 7px solid #fff;
  border-radius: 50%;
  width: 320px;
  height: 310px;
  object-fit: cover;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.2);
}

/*---------------
ようこそ大松園へ
---------------*/
#aboutus {
  position: relative;
  margin: 3rem 0;
  padding: 4rem 0;
  background-color: #F69BCF;
  background-image:
    linear-gradient(rgba(246, 155, 207, 0.8), rgba(246, 155, 207, 0.8)),
    url(../images/bg-peach.png);
  background-size: 100%;
}
.kumo.up{
  position: absolute;
  top: -2%;
  z-index: -1;
  height: 40px;
  width: 100%;
  background: radial-gradient(circle at 50% 100%, #F69BCF 70%, #F6F9F6 71%) repeat-x;
  background-size: 50px 40px;
}
.kumo.down {
  position: absolute;
  bottom: -3%;
  z-index: -1;
  height: 40px;
  width: 100%;
  background: radial-gradient(circle at 50% 0%, #F69BCF 70%, #F6F9F6 71%) repeat-x;
  background-size: 50px 40px;
}
.aboutus-title {
  width: auto;
  height: 70px;
  display: block;
  margin: 4rem auto;
}
#aboutus .flex {
  gap: 2rem;
  margin: 4rem auto;
  align-items: stretch;
}
.aboutus img {
  width: 40%;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
.contentbox {
  background-color: #fff;
  border-radius: 2rem;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0px 0px 0px 5px rgba(255, 133, 202, 1), 0px 0px 0px 16px rgba(255, 255, 255, 1);
}
.aboutus-content-title {
  font-size: min(4.8vw, 20px);
  text-align: center;
  margin-bottom: 2rem;
}
.aboutus-text {
  font-size: min(3.8vw, 18px);
}

/*---------------
最新情報
---------------*/
#news {
  background-image: url(../images/bg-grape.png);
  background-size: 100%;
}
.content-box {
  padding: 6rem 0;
}
#news .content, .variety-box .content {
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.2);
}
#news .content:hover {
  opacity: 0.6;
}
#news .content-img img, .variety-box .content-img img{
  display: block;
  border: none;
  border-radius: 10px;
  width: auto;
  height: 200px;
  object-fit: cover;
  margin: 1rem auto;
  box-shadow: none;
}
.news-title {
  font-weight: bold;
  color: #A462CA;
  padding: 1rem;
}
.news-date {
  text-align: right;
  margin-top: 1rem;
}

/*---------------
取り扱い商品
---------------*/
#product {
  background-color: #FFF7F7;
  background-image: url(../images/bg-peach.png);
  background-size: 100%;
}
#product .flex {
  justify-content: center;
  gap: 2rem;
  margin: 4rem auto;
}
#product .content {
  position: relative;
}
.hukidashi {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 70%;
  z-index: 1;
  opacity: 0;
}
#product .content:hover .hukidashi {
  opacity: 1;
}

/*---------------
footer
---------------*/
footer {
  background-color: #A462CA;
  padding: 4rem 2rem 2rem;
}
footer .flex {
  justify-content: space-around;
  align-items: center;
}
footer .logo {
  margin-bottom: 1rem;
}
footer p {
  color: #fff;
  line-height: 1.7;
}
.footer-nav {
  font-size: min(3.8vw, 20px);
  color: #fff;
  line-height: 2;
}
footer:hover .logo:hover, .map:hover, .footer-nav:hover, .line:hover {
  opacity: 0.6;
}
.copyright {
  font-size: 12px;
  text-align: center;
  padding-top: 4rem;
}
.footer-content {
  width: 20%;
}
.line {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.line-img {
  display: block;
  width: 60%;
  margin: 0 auto;
}

/*---------------
下層ページ共通
---------------*/
#flow, #scd-Act, #peach, #set, #faq, .single-contents-wrapper, #privacy {
  background-color: #FFF7F7;
  background-image: url(../images/bg-peach.png);
  background-size: 100%;
}
#contact-mail, #pay, #grape, #outlet, #about, #grape-picking, .contents-wrapper {
  background-image: url(../images/bg-grape.png);
  background-size: 100%;
}
.page-mv {
  background-image: url(../images/page-mv-img.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  height: 300px;
  position: relative;
}
#contact-mail h2 {
  letter-spacing: 0;
}
/*---------------
お問い合わせ
---------------*/
.Form, .flow-content, .faq-box, .about-content, #privacy .content-box {
  width: 80%;
  margin: 0 auto;
}
.form-content {
  /*display: flex;
  justify-content: space-between;*/
  margin: 3rem auto;
}
.required {
  color: #fff;
  font-size: 9px;
  background-color: #FE3030;
  border-radius: 3px;
  padding: 1px 3px;
}
.wpcf7-form-control-wrap {
  width: 70%;
}
.wpcf7-text {
  width: 100%;
  height: 3rem;
  border-radius: 10px;
  border: 2px solid #A462CA;
  padding: .5rem 1rem;
  margin: 1rem;
}
.wpcf7-textarea {
  width: 100%;
  height: 10rem;
  border-radius: 10px;
  border: 2px solid #A462CA;
  padding: .5rem 1rem;
  margin: 1rem;
}
.wpcf7-list-item-label {
  color: #2C3E50;
}
.wpcf7-list-item  {
  margin: 0;
}
.button-wrap {
  display: flex;
  justify-content: center;
}
.submit-btn {
  margin: 0 auto;
  padding: 16px 9rem;
}
.wpcf7-spinner {
	display: none;
}

/*---------------
FAX・お電話のご注文方法
---------------*/
.flow-title, .secondtitle {
  font-size: 28px;
  font-weight: bold;
  color: #A462CA;
}
.secondtitle {
  margin-bottom: 1rem;
}
.flow-title span {
  color: #fff;
  background-color: #FF85CA;
  border-radius: 50%;
  padding: 0.6rem;
  margin-right: 1rem;
}
.flow-content .flex {
  gap: 1rem;
  align-items: center;
}
#pay .contentbox, #grape .contentbox, #grape-picking .contentbox, #about .contentbox {
  box-shadow: 0px 0px 0px 5px rgba(164, 98, 202, 1), 0px 0px 0px 16px rgba(255, 255, 255, 1);
}
.flow-contentbox {
  margin: 1rem 0;
}
.flow-contentbox2 {
  margin-bottom: 2rem;
}
.telfax {
  width: auto;
  height: 30px;
}
.arrow-down {
  display: block;
  margin: 2rem auto;
  width: 40px;
}
.table-container {
  width: 80%;
  margin: 2rem auto;
}
.table-container td {
  padding: 1rem 0;
}
.table-container table td:first-child {
  font-weight: bold;
  margin-right: 1rem;
  width: 20%;
}

/*---------------
ぶどう・桃の種類
---------------*/
.variety-box {
  width: 80%;
  margin: 0 auto 4rem;
}
.variety-box .flex {
  gap: 2rem;
  margin: 2rem auto;
}
.variety-textbox {
  width: 60%;
}
.variety-box .contentbox {
  width: 80%;
}
.variety-img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  object-fit: cover;
}
.variety-box table {
  width: 70%;
  margin: 0 auto 1.5rem;
}
.variety-box td:first-child  {
  padding: .5rem 0;
  width: 50%;
}
.variety-title {
  font-size: min(3.8vw, 20px);
}
.variety-box .content {
  text-align: center;
}
.text-left {
  text-align: left !important;
  padding: 2rem !important;
}

/*---------------
ぶどう狩り
---------------*/
#grape-picking table {
  margin: 1rem auto;
}
#grape-picking .table-container table td:first-child {
 width: 50%;
 text-align: right;
 padding-right: 1rem;
}
/*---------------
アコーディオン
---------------*/
.accordion-008 {
  margin-bottom: 2rem;
  border-radius: 25px;
  box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
  background-color: #fff;
}
.accordion-008 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1.5em 2rem 1.5em;
  color: #7E4C9B;
  font-weight: 600;
  cursor: pointer;
}
.accordion-008 summary::-webkit-details-marker {
  display: none;
}
.accordion-008 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #A462CA;
  border-right: 3px solid #A462CA;
  content: '';
  transition: transform .3s;
}
.accordion-008[open] summary::after {
  transform: rotate(225deg);
}
.accordion-008 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0 2em 1.5em;
  color: #333333;
  transition: transform .5s, opacity .5s;
}
.accordion-008[open] p {
  transform: none;
  opacity: 1;
}


/*---------------
販売ページ
---------------*/
.products, .product {
	width: 60%;
	margin: 4rem auto;
}
.product_meta, .wc-tabs {
	display: none;
}

/*---------------
レスポンシブ
---------------*/
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    margin-bottom: 2rem;
  }
  .section-title h2 {
    letter-spacing: 0;
  }
  .aboutus-title {
    height: 35px;
  }
  .splide {
    margin-bottom: 6rem;
  }
  .splide, .information-box, .information-fv1, .information-fv2, .aboutus img {
    width: 100%;
  }
  .splide__slide img, .splide__slide figure {
    border-radius: 3rem;
	min-height: 260px;
  }
  .mv-left {
    top: -60px;
    left: 0;
    width: 40%;
  }
  .mv-right {
    width: 40%;
    right: 0;
    bottom: -80px;
  }
  .mv-text, #information  {
	padding: 3rem 0;
  }
  .information-fv1, .information-fv2 {
    margin: 1rem auto 2rem;
    border-radius: 3rem;
    padding: 1rem;
    flex-direction: row;
    outline: solid 8px #fff; 
	gap: 0;
  }
  .information-fv1 img, .information-fv2 img {
    height: 60px;
  }
	.information-fv1 p, .information-fv2 p {
	font-size: 3.4vw;
  }
  .information-contentbox .flex, #news .flex, #product .flex, #aboutus .flex {
    margin: 2rem auto;
  }
  .content-box {
    padding: 2rem 0;
  }
  #aboutus {
    padding: 1rem 0;
  }
  .aboutus-title {
    margin: 2rem auto;
  }
  .aboutus-content-title {
    margin-bottom: 1rem;
  }
  .contentbox{
    padding: 2rem .6rem;
    box-shadow:  0px 0px 0px 3px rgba(255, 133, 202, 1), 0px 0px 0px 10px rgba(255, 255, 255, 1)
  }
  .kumo.down {
    bottom: -2%;
  }
  #news .content {
    width: 90%;
    margin: 0 auto;
  }
  .hukidashi {
    width: 50%;
    right: -5%;
  }
  .content {
    width: 80%;
  }
  .content-img img {
    display: block;
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
  #product .flex, footer .flex {
    gap: 2rem;
  }
  footer {
    padding: 2rem 2rem 76px;
  }
  .footer-content {
	width: 100%;
  }
  .line-img {
	width: 50%;
  }
  .Form, .flow-content, .faq-box, .about-content, #privacy .content-box, .table-container {
	width: 95%;
  }
/*---------------
下層ページレスポンシブ
---------------*/
   .form-content {
    flex-direction: column;
    margin: 1rem;
  }
  .wpcf7-form-control-wrap {
    width: 90%;
  }
  .page-mv {
    height: 150px;
  }
  #flow, #pay, #scd-Act {
    padding: 0 1rem 2rem;
  }
  #grape-picking .faq-box {
    width: 90%;
  }
  .table-container td {
    display: block;
    padding: 0;
  }
  #grape-picking .table-container td {
	display: table-cell;
  }
  .table-container table td:first-child {
    margin: 1rem 0 0;
    width: 100%; 
  }
  .flow-content p, .table-container table td:last-child {
    font-size: 3.8vw;
  }
  .flow-title, .secondtitle {
    font-size: 5.2vw !important;
  }
  .flow-content .flex {
    flex-direction: row;
  }
  .arrow-down  {
    width: 30px;
    margin: 1.5rem auto;
  }
  #pay .contentbox, #grape .contentbox, #grape-picking .contentbox, #about .contentbox {
  box-shadow: 0px 0px 0px 3px rgba(164, 98, 202, 1), 0px 0px 0px 10px rgba(255, 255, 255, 1);
  }
  .variety-box {
	width: 90%;
  }
  .variety-textbox {
    width: 100%;
  }
  .variety-box .flex {
    margin-top: 0;
  }
  .variety-img {
    width: 200px;
    height: 200px;
  }
  .variety-box td:first-child {
    width: 70%;
  }
  .page-btn, .submit-btn {
    width: 100%;
  }
  #faq {
    padding: 0 1rem;
  }
}

/* スマホ専用フッター（PCでは隠す） */
.fixed-footer-menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .fixed-footer-menu {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 60px;
    background-color: #FF85CA; 
    border-radius: 10px 10px 0 0;
    z-index: 9999;
    overflow: hidden;
    /* iPhoneのホームバー対策（セーフエリア） */
    margin-bottom: env(safe-area-inset-bottom);
  }
  .footer-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 10px;
    position: relative;
  }
  .footer-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .footer-item .icon {
    width: auto;
    height: 30px;
    margin-bottom: 2px;
  }
  .footer-item .label {
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .products, .product {
	width: 90%;
	}
  .variety-box .btn {
    margin: 0;
	}
	#wpfront-scroll-top-container {
		display: none !important;
	}
}

/*---------------
投稿ページ
---------------*/
/* 横並びのレイアウト設定 */
.contents-wrapper, .single-contents-wrapper {
    display: flex;
    justify-content: space-between;
	padding: 4rem 2rem;
}
.single-contents-wrapper {
    align-items: flex-start;
    gap: 40px;
}

/* メインコンテンツの幅（左） */
.page-content {
    flex: 1;
	width: 80%;
}
.category-content {
	width: 60%;
	margin: 0 auto 4rem;
}
.category-content img {
	border-radius: 10px;
	object-fit: cover;
	width;: 300px;
	height: 250px;
}
.category-content .news-title {
	padding: 0;
	margin-top: 1rem;
}
.pagination .btn {
	display: block;
    width: 60%;
	margin: 0 auto;
}
.single-page-content .btn::before, .single-page-content .btn::after {
	display: none;
}
.single-page-content .btn {
	border: none;
}
/* サイドバーの幅（右） */
.my-sidebar {
    width: 300px;
}
.wp-block-archives-list li {
	margin: 1rem auto;
}
.wp-block-archives-list li a, .sidebar-post-title {
	color: #7E4C9B;
}
.recent-posts img {
	border-radius: 10px;
}
.recent-posts li {
	margin: 1rem auto;
}
@media (max-width: 768px) {
    .single-contents-wrapper {
        flex-direction: column;
    }
    .my-sidebar, .page-content, .pagination, .category-content, .pagination .btn {
        width: 100%;
    }
	.category-content {
		margin-bottom: 2rem;
	}
	.category-content img {
	    width;: 250px;
	    height: 200px;
}
}