@keyframes Bounce {
  0%   { transform: scale(1); z-ititle-animndex: 1; }
  50%  { transform: scale(1.4); z-index: 10;  }
  100% { transform: scale(1); z-index: 1; }
}
@keyframes Bounce2 {
  0%   { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
@keyframes Shake2 {
  0%   { transform: rotate(0); }
  20%   { transform: rotate(10deg); }
  40%  { transform: rotate(-10deg); }
  60%  { transform: rotate(10deg); }
  80%  { transform: rotate(-10deg); }
  100% { transform: rotate(0); }
}
@keyframes Shake {
  0%   { transform: rotate(0); }
  20%   { transform: rotate(5deg); }
  40%  { transform: rotate(-5deg); }
  60%  { transform: rotate(5deg); }
  80%  { transform: rotate(-5deg); }
  100% { transform: rotate(0); }
}
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  0%   { opacity: 0;transform: scale(0)}
  100% { opacity: 1;transform: scale(1)}
}
@keyframes Poyon {
  0%, 40% {transform: skew(0deg, 0deg);}
  5% {transform: skew(5deg, 5deg);}
  10% {transform: skew(-4deg, -4deg);}
  15% {transform: skew(3deg, 3deg);}
  20% {transform: skew(-2deg, -2deg);}
  25% {transform: skew(1deg, 1deg);}
  30% {transform: skew(-0.6deg, -0.6deg);}
  35% {transform: skew(0.3deg, 0.3deg);}
}
@keyframes Shine {
  0%   { left: -75%; opacity: 1; }
  20%  { left: 125%; opacity: 1; } 
  100% { left: 125%; opacity: 0; } 
}
/*@keyframes MoveR {
  0%   { background-position: right -200px top 0; opacity: 0 }
  100% { background-position: right 0 top 0; opacity: 1 }
}
@keyframes MoveL {
  0%   { background-position: left -200px top 0; opacity: 0 }
  100% { background-position: left 0 top 0; opacity: 1 }
}
*/
.data-animate.st .wait2,.data-animate.st.wait2{ animation-delay: 0.2s !important; }
.data-animate.st .wait4,.data-animate.st.wait4{ animation-delay: 0.4s !important; }
.data-animate.st .wait6,.data-animate.st.wait6{ animation-delay: 0.6s !important; }
.data-animate.st .wait8,.data-animate.st.wait8{ animation-delay: 0.8s !important; }
.data-animate.st .wait10,.data-animate.st.wait10{ animation-delay: 1s !important; }


/*##### ani-fadeUp #####*/
.data-animate .ani-fadeUp,.data-animate.ani-fadeUp{
  opacity: 0;
  transform: translateY(30px);
}
.data-animate.st .ani-fadeUp,.data-animate.st.ani-fadeUp{
  animation: fadeUp 0.6s ease-out forwards;
}

/*##### ani-fadeIn #####*/
.data-animate .ani-fadeIn,.data-animate.ani-fadeIn{
  opacity: 0;
  transform: scale(0)
}
.data-animate.st .ani-fadeIn,.data-animate.st.ani-fadeIn{
  animation: fadeIn 0.6s ease-out forwards;
}

/*##### Shake #####*/
.data-animate.st .ani-Shake,.data-animate.st.ani-Shake{
  animation: Shake 0.8s ease-out forwards;
}

/*##### Poyon #####*/
.data-animate.st .ani-Poyon,.data-animate.st.ani-Poyon {
  animation: Poyon 3s forwards;
}

/*##### Bounce #####*/
.data-animate.st .ani-Bounce,.data-animate.st.ani-Bounce {
  animation: Bounce2 1s forwards;
}

.data-animate .ani-Kiran,.data-animate.ani-Kiran{
  overflow: hidden;
  position: relative;
}
.data-animate .ani-Kiran::before,.data-animate.ani-Kiran::before{
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: -75%; /* 画面外からスタート */
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 100%
  );
  z-index: 2;
}
.data-animate.st .ani-Kiran::before,.data-animate.st.ani-Kiran::before {
  animation: Shine 5s linear infinite;
}
/*.data-animate.st .ani-Move-r,.data-animate.st.ani-Move-r,.data-animate.st .ani-Move-l,.data-animate.st.ani-Move-l{
  content: none;
}

.data-animate.st .ani-Move-r::before,.data-animate.st.ani-Move-r::before{
  animation: MoveR 0.8s ease-out forwards;
}
.data-animate.st .ani-Move-l::before,.data-animate.st.ani-Move-l::before{
  animation: MoveL 0.8s ease-out forwards;
}*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,body{overflow-x: hidden;}
html { font-size: 14px;}
body {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  color: #444;
  line-height: 1.8rem;
}
section {
  box-sizing: border-box;
  text-align: center;
  padding: 0 20px 6rem;
  max-width: 1400px;
  margin: auto;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
ul.dot{
  list-style: disc;         /* ● ドットを表示 */
  padding-left: 1.5rem;       /* インデントを少し戻す */
}
ul.cap,p.cap{
  line-height: 1.4rem;
  font-size: 0.9rem
}
ul.cap li,p.cap{
  position: relative;
  padding-left: 1.2em; /* ●の分だけ文字を右にずらす */
  text-indent: -1.2em; /* 1行目だけ左に戻す */
  margin-left: 1rem;
  text-align: left;
  padding: 0.1rem 0;
}
ul.cap li::before,p.cap::before{
  content: "※";
  margin-right: 0.3em;
}
ul.cap.ro li::before,p.cap.ro::before{
  content: "●";
}
h2,.sub-title{
  font-family: "ads-dada", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.7rem;
  margin-bottom: 2rem;
  letter-spacing: -0.1rem;
  line-height:2.2rem;
  color: #134634;
}
/*h2::after {
  content: "••••";
  display: block;
  font-size: 3rem;
  margin-top: 6px;
  color: #9FBA9F;
  letter-spacing: -0.05rem;
}*/
h3{
  font-family: 'M PLUS 1', Meiryo, sans-serif;
  font-weight: 700;
  margin:0 0 1rem 0;
  font-size: 1.2em;
  color: #134634;
  line-height: 1.6rem
}
h4{
  font-family: 'M PLUS 1', Meiryo, sans-serif;
  font-weight: 700;
}
a, button,.faq-item,.hamburger{
  -webkit-tap-highlight-color: transparent;
}
.c_btn{
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #B7A8A8;
  font-family: 'M PLUS 1', Meiryo, sans-serif;
  font-weight: 700;
  margin: 20px auto 0 auto;
  padding: 0;
  font-size:1em;
}
.c_btn>a,.c_btn>span{
  color: #462D2D;
  display: block;
  padding: 12px 24px;
  text-decoration: none;
}
.c_btn:not(.tel-pc):active {
  background-color:#FFDC26; 
  border: 1px solid #FFDC26;
}
ul.list_3{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
ul.list_3>li{
  width: 100%;
  padding:0.5rem 0.2rem;
}
ul.list_3 img{
  margin: auto;
  max-width: 300px;
}
.g-center{
  display: flex;
  align-items: center; 
  justify-content: center;
}
.g-icon,.g-icon2 {
  margin-right: 10px;
  font-size: 2.5rem;
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}
.g-icon2 {
  font-variation-settings:
    'FILL' 0;
}
.font_outline {
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.90), -1px 1px 3px rgba(255, 255, 255, 0.90), 1px -1px 3px rgba(255, 255, 255, 0.90), -1px -1px 3px rgba(255, 255, 255, 0.90), 1px 0px 3px rgba(255, 255, 255, 0.90), 0px 1px 3px rgba(255, 255, 255, 0.90), -1px 0px 3px rgba(255, 255, 255, 0.90), 0px -1px 3px rgba(255, 255, 255, 0.90);
}
.backline{
  position: relative;
  display: inline-block;
  padding: 5px 0.5rem 5px 1rem;
  overflow: hidden;
}
.backline::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0rem;
  height: 3rem; 
  width: 100%;
  background: url('img/deco/line.png') no-repeat left bottom;
  background-size: auto 100%;
  z-index: -1;
  
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s ease;
}
.backline.st{
  text-shadow: none;
}
.backline.st::after {
  clip-path: inset(0 0 0 0);
}
.tel a{
  text-decoration: none;
  color: inherit;   
}
.shiratori_link.c_btn{
  border-radius: 50px;
  display: inline-block;
}
.shiratori_link.c_btn a{
  padding: 8px 1.2rem;
}

.coler-blue{color:#2e6b98;}
.coler-green{color:#227549;}
.coler-purple{color:#794095;}
.coler-brown{color:#704e3d;}
.font-tp1{
  font-family: "ads-dada", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
}
.font-tp2{
  font-family: 'M PLUS 1', Meiryo, sans-serif;
  font-weight: 700;
}
.pickup-line{
  font-family: "ads-dada", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: -0.08em;

  color: #1E528D;
  font-size: 1.6rem;
  display: inline-block;
  padding:0 10px 0.5rem;
  background-repeat: no-repeat; 
  background-position: center center;
  background-position: center bottom;
  background-size: 100% 24px;
  background-image: url("img/deco/line2.png");
}
.deco{
  background-color: #D6EAC4;
  padding: 15px 1rem;
  margin-bottom: 20px;
  font-weight: 800;
}
.text-pc{
  display: none;
}
.icon-box{
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.icon-box .g-icon,.icon-box .g-icon2{
  font-size: 1.5rem;
}

/*★★★★★★★★★★*/
.section-description{
  margin-bottom: 3rem;
  display: inline-block;
  text-align: left;
  width: 90%;
}
.section-content{
  max-width: 1000px;
  margin: 0 auto;
}
.h2-dot::after{
  content: "••••";
  display: block;
  color: #9FBA9F;
  font-size: 2.0rem;
  letter-spacing: 0.15rem;
  margin: -30px 0 10px;
}
#pricing::before{
	background: url("img/deco/food1.webp");
  background-repeat: no-repeat;
  background-position:left top;
  opacity: 1;
	background-size:130px auto;
  transform: translate(-20px, -20px);
}
#foods::before{
	background: url("img/deco/food3.webp");
  background-repeat: no-repeat;
  background-position:right top;
  opacity: 1;
	background-size:250px auto;
  transform: translate(140px, -30px);
}
#guidelines::before{
	background: url("img/deco/food2.webp");
  background-repeat: no-repeat;
  background-position:left top;
  opacity: 1;
	background-size:180px auto;
  transform: translate(-80px, -40px);
}
#park::before{
	background: url("img/deco/food5.webp");
  background-repeat: no-repeat;
  background-position:right top;
  opacity: 1;
	background-size:180px auto;
  transform: translate(55px, -50px);
}
#faq::before{
	background: url("img/deco/food4.webp");
  background-repeat: no-repeat;
  background-position:left  top;
  opacity: 1;
	background-size:180px auto;
  transform: translate(-80px, -50px);
}
@media all and (min-width: 500px) {
  #pricing::before{
    background-size:200px auto;
    transform: translate(-30px, -30px);
  }
  #foods::before{
    background-size:300px auto;
    transform: translate(140px, -30px);
  }
  #guidelines::before{
    background-size:250px auto;
    transform: translate(-100px, -50px);
  }
  #park::before{
    background-size:250px auto;
    transform: translate(55px, -50px);
  }
  #faq::before{
    background-size:250px auto;
    transform: translate(-60px, -40px);
  }
}
@media all and (min-width: 768px) {
  .h2-dot::after{
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    margin: -15px 0 40px;
  }
  #pricing::before{
    background-size:220px auto;
    transform: translate(0px, -30px);
  }
  #foods::before{
    background-size:350px auto;
    transform: translate(170px, -50px);
  }
  #guidelines::before{
    background-size:320px auto;
    transform: translate(-110px, -90px);
  }
  #park::before{
    background-size:320px auto;
    transform: translate(55px, -50px);
  }
  #faq::before{
    background-size:300px auto;
    transform: translate(-60px, -60px);
  }
}
@media all and (min-width: 1024px) {
  #pricing::before{
    background-size:280px auto;
    transform: translate(0px, -100px);
  }
  #foods::before{
    background-size:500px auto;
    transform: translate(150px, -80px);
  }
  #guidelines::before{
    background-size:400px auto;
    transform: translate(-100px, -150px);
  }
  #park::before{
    background-size:380px auto;
    transform: translate(50px, -50px);
  }
  #faq::before{
    background-size:340px auto;
    transform: translate(0px, -60px);
  }
}

/*★★★★★　navi　★★★★★*/
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999; /
}
.nav-section.open ~ .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}
#nav-trigger {
  height: 1px;
  margin: 0;
  padding: 0;
}
/* ハンバーガーメニュー：スマホ左上に固定 */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 22px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #444;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
  box-shadow: 0 0 3px 2px rgba(255, 255, 255, 0.8);
}
/* 初期位置：3本線を上下に分ける */
.hamburger span:nth-child(1) {
  top: -8px;
}
.hamburger span:nth-child(2) {
  top: 0;
}
.hamburger span:nth-child(3) {
  top: 8px;
}
.nav-section.open .hamburger span {
  box-shadow: none;
}
.nav-section.open .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 0;
}
.nav-section.open .hamburger span:nth-child(2) {
  opacity: 0;
}
.nav-section.open .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  top: 0;
}
.nav-section ul {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color:#d6eac9;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  padding: 45px 20px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  gap: 10px;
}
.nav-section ul li {
  width: 100%;
  text-align: center;
  /*/*border-bottom: 1px dotted #ccc;*/
  background-color: #FFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.nav-section ul li:last-child {
  border-bottom: none;
}
.nav-section ul li a{
  font-family: "ads-dada", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  display: block;
  padding: 14px 0;
  font-size: 1.3em;
  color: #2B6629;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: transform 0.3s ease, background-color 0.1s ease;
}
.nav-section ul li a:hover,.nav-section ul li a:active{
  opacity: 1;
  background-color: #FFF673;
}

/*★★★★★　hero　★★★★★*/
.hero {
  position: relative;
  width: 100%;
  height: 60vh; 
  min-height:60vh;
  padding: 0;
  
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider,.hero-slider .swiper-wrapper,.hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
}
.hero-slider{
  overflow: hidden;
}
.swiper-wrapper{
  position: absolute;
}
.hero-slider .swiper-slide {
  background-size: cover;
  background-position: center;
}
.hero-slider .swiper-slide.slide1 {
  background-image: url("img/hero/top_1_sp.webp");
}
.hero-slider .swiper-slide.slide2 {
  background-image: url("img/hero/top_2_sp.webp");
}
.hero-slider .swiper-slide.slide3 {
  background-image: url("img/hero/top_3_sp.webp");
}
.hero-slider .swiper-slide.slide4 {
  background-image: url("img/hero/top_4_sp.webp");
}




.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  display: block;
  pointer-events: none;
  z-index: 2;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 10;
  width: 100%;
  max-width: 700px;
  margin-top: 20px;
  padding: 0 10px;
}
.hero-text img{
  margin: auto;
}
.hero-title{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 10px auto 10px;
  width: 95%;
  max-width: 360px;
}
.hero-title li {
  display: inline-block;
  position: relative; /* z-indexが効くようにする */
  animation: Bounce 0.6s ease forwards;
}
.hero-title li:nth-child(1){
  width: 38%;
  animation-delay: 0.2s;
}
.hero-title li:nth-child(2){
  margin-top: 2%;
  width: 10%;
  animation-delay: 0.8s;
}
.hero-title li:nth-child(3){
  width: 26%;
  animation: Shake2 0.6s ease forwards;
  animation-delay: 1.4s;
}
.hero-title li:nth-child(4){
  width: 26%;
  animation-delay: 2.0s;
}
img.hero-top{
  max-width: 250px;
  width: 70%;
}
img.hero-sub{
  max-width: 250px;
  width: 70%;
  animation: Bounce 1.2s ease forwards;
  animation-delay: 2.6s;
}
img.hero-bottom{
  width: 95%;
  max-width: 350px;
  margin: 1.5rem auto 1.5rem;
}
.shadow{
  filter: drop-shadow(6px 6px 6px rgba(0,0,0,0.8));
}
.hero-pickup{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 240px;
  margin: auto;
  gap: 4px;
}
.hero-pickup img{
  filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.5));
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
  animation: pickupScale 0.6s forwards;
}
.hero-pickup li{
  width: 32%;
}
.hero-pickup li:nth-child(1),.hero-pickup li:nth-child(2){
  margin: 0 2% -8px 2%;
}
.hero-pickup li:nth-child(1) img { animation-delay: 2.8s; }
.hero-pickup li:nth-child(2) img { animation-delay: 3.0s; }
.hero-pickup li:nth-child(3) img { animation-delay: 3.2s; }
.hero-pickup li:nth-child(4) img { animation-delay: 3.4s; }
.hero-pickup li:nth-child(5) img { animation-delay: 3.6s; }

@keyframes pickupScale {
  0% {
    transform: scale(0);
    opacity: 0;
    visibility: visible; 
  }
  100% {
    transform: scale(1);
    opacity: 1;
    visibility: visible; 
  }
}

/*★★★★★　about　★★★★★*/
.back-img{
  position: relative;
}
.back-img:before,.back-img:after{
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  opacity:0.9;
  margin:0;
  width: 100%;
  height: 100%;
  z-index:-80;
}
.about{
  padding: 3rem 20px 6rem 20px;
}
.about::before{
	background: url("img/about/deli.webp");
  background-repeat: no-repeat;
  background-position:right 0 bottom 0 ;
	background-size:180px auto;
  opacity: 0;
}
.about::after{
	background: url("img/about/bbq.webp");
  background-repeat: no-repeat;
  background-position: 0 0;
	background-size:200px auto;
  opacity: 1;
  transform: translate(-115px, 110px);
}
.about.st::before{
  animation: Move1 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes Move1 {
    0%   { transform: translate(200px, 50px); opacity: 0 }
    100% { transform: translate(35px, -10px); opacity: 1 }
  }
.about h2{ 
  margin-bottom: 2.5rem;
}
.sub-title{
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}
.about ul.section-description li{
  display: inline;
}

/*★★★★★　features　★★★★★*/
#features .section-content{
  max-width: 1100px;
}
#features .section-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#features .item{
  width: 100%;
  padding: 0 1rem;
}
#features .img{
  margin: 0 auto 10px;
  max-width: 230px;
}
#features .text{
  text-align: left;
}
#features .text p{
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

#features .section-list li:last-child .text p{
  margin-bottom: 0px;
}
.section-list li.item img{
  transform: scale(1);
}
.section-list li.item.st img{
  display: inline-block;
  animation: Poyon 2.5s ease forwards;
}
#features h3{
  display: flex;
  align-items: center;
  justify-content: center;
}
#features h3 .g-icon.tp2{
  font-size: 2.2rem;
}
#features h3 .g-icon.tp4{
  font-size: 2.8rem;
}

/*★★★★★　pricing　★★★★★*/
#pricing .section-content{
  max-width: 900px;
  text-align: center;
}
.pricing-time,.pricing-fee{
  margin-bottom: 80px;
}
.pricing-time .des{
  width: 90%;
}
.pricing-time .time-img{
  max-width: 400px;
  margin:30px auto 0;
}
.time-pickup{
  text-align: left;
}
.price-list .label{
  margin: 1rem auto 1rem;
  border-radius: 100px;
}
#pricing .other{
  color: #666;
  font-size: 0.9rem;
}
.price-list{
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 30px auto 20px;
  max-width: 300px;
  gap: 5px;
}
.price-list li{
  /*width: 33%;*/
  background-repeat: no-repeat;
  background-position: center center; 
  background-size: contain;
  padding: 2rem 0 ;
  margin-bottom: 10px;
  padding: 1rem 0;
  flex: 0 0 48%;
}
.price-list li:nth-child(1) {
  background-image: url("img/pricing/price-1.png");
  margin: 0 4% -5%;
}
.price-list li:nth-child(2) {
  background-image: url("img/pricing/price-2.png");
}
.price-list li:nth-child(3){
  background-image: url("img/pricing/price-3.png");
}
.price-list .label{
  width: auto;
  display: inline-block;
  padding: 0 20px;
  color: #FFF;
  font-size: 0.9rem;
  margin: 1rem auto 0.7rem;
  padding:0 4px;
  line-height: 1.4rem;
}
.price-list li:nth-child(1) .label {
  background-color: #F36290;
}
.price-list li:nth-child(2) .label {
  background-color: #507FAA;
}
.price-list li:nth-child(3) .label {
  background-color: #EA933D;
}
.price-list .value{
  color: #523838;
  line-height: 1.2rem;}
.price-list .value span{
  font-size: 2.0rem;
  letter-spacing: -0.1em;
  margin-right: 1px;
  }
.price-list .other{
  margin-top: -2px;
}
.price-pickup{
  text-align: center;
  margin: 20px auto 0 auto;
}
#pricing .des{
  max-width: 700px;
  margin: auto;
  font-size: 0.9rem;
}
#pricing .rental,#pricing .option{
  border: 3px dashed #97C2B3;
  border-radius: 20px;
  padding: 3rem 1.5rem;
}
#pricing .rental{
  background-color: #FDFAF0;
  margin-bottom: 50px;
}
#pricing .option{
  background-color: #EDFCFF;
}
#pricing .rental h3,#pricing .option h3{
  background-color: initial;
  padding: 0;
  font-size: 1.2rem;
  font-weight: 800;
}
#pricing .rental img,#pricing .option img{
  max-width: 200px;
}
.rental-pickup{
  margin-bottom: 20px;
}
ul.rental-list.list_3>li{
  width: 33%;
  padding:0.5rem 0.2rem;
}
ul.rental-price{
  line-height: 1.5rem;
  font-size: 0.9rem;
  text-align: left;
  display:inline-block;
  margin-top: 10px;
}
ul.rental-price > li {
  padding-top:0;
  padding-bottom:0;
  width: auto;
}
ul.rental-price > li p::before{
  content: "●";
  margin-right: 0.3em;}
ul.rental-price p{
  display: inline-block;
}
ul.rental-price > li p::after{
  content: "　";
}

/*★★★★★　foods　★★★★★*/
#foods .pickup-line{
  margin: 0 auto 30px;
}
#foods .chatch-list{
  justify-content: center;
  max-width: 350px;
  margin: 0 auto 40px auto;
}
#foods .menu h3 span{
  font-size: 1.0rem;
  }
#foods .menu h4{
  font-weight: 800;
  color:#135AA4 ;
  }
ul.foods-list.list_3 img {
  max-width: 230px;
}
ul.chatch-list.list_3 > li {
  flex: 0 0 48%; /* デフォルトは2列 */
  padding:0 0.5rem;
}
ul.chatch-list.list_3 > li:first-child {
  margin: 0 4%;
}
.discount{
  padding: 30px 0 30px 0;
  margin:0 auto 50px;
  max-width: 600px;
  font-size: 1.3rem;
  border-radius:200px;
  background-size: 100% 100% !important;
  background: url('img/deco/drop.png') no-repeat center bottom;
}
.discount::before{ animation-delay: 0.5s !important; }
.discount div{
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4rem;
}
.discount h4{
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 2.1rem;
  display: inline-block;
  padding:0 10px 0.5rem;
}
.discount h4 .ta {
  color: #EB3956; 
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
#foods .des{
  max-width: 700px;
  margin: 2.5rem auto 0px auto;
}
ul.foods-list{
  padding: 0.5rem 1.5rem;
}
ul.foods-list h4 ,.foods-child h4{
  font-size: 1.25rem;
  margin: 10px 10px 5px;
}
.food_dis{
  color: #FFF;
  background-color: #F4799C;
  border-radius:50px;
  display: inline-block;
  padding: 0 0.8rem;
  font-size: 0.95rem;
  line-height: 1.5rem;
}
.food_price{
  color: #523838;
  margin: 5px 0 5px 0;
}
.food_price span{
  font-size: 2rem;
  letter-spacing: -0.08em;
  margin: 0 2px 0 5px;
}
.food_con{
  display: inline-block;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.3rem;
  padding: 5px 0 10px;
}
.menu .child{
  background-color: #FFFDE0;
  padding: 2.5rem 2rem;
  border-radius:1rem;
  max-width: 300px;
  margin: 30px auto 0;
  border:2px dashed #bbb;
  box-shadow: 0 0 0 12px #FFFDE0;
  width: 90%;
}
.menu .child .child-text{
  max-width: 300px;
  margin: 0 auto 5px;
  width: 100%;
}
.child>p{
  font-size: 1.2rem;
  color:#E0347A;
  margin-bottom: 20px;
  /*letter-spacing: -0.08em;*/
  display: inline-block;
  padding:10px 20px;
  line-height: 1.5rem;
  border-top: 2px solid #E95792;
  border-bottom: 2px solid #E95792;
  font-weight: 800;
}
.child_img{
  max-width: 160px;
  margin: auto;
  }
.foods-list-pick{
  margin: 0 10px 20px 10px;
  font-size: 1.2rem;
  color: #1D6A29;
  line-height: 1.9rem;
}
.foods-list-pick span{
  font-weight: 400;
  color: #333;
  font-size: 0.85em;
}

/*★★★★★　guidelines　★★★★★*/
#guidelines h3{
  color: #FFFFFF;
  background-color: #5B96B4;
  font-weight: 700;
  text-align: left;
  font-size: 1.1rem;
}
#guidelines .reserv{
  color: #216C49;
  margin:0 auto 1.5rem;
  font-size: 1.1rem;
  text-align: left;
  width: 100%;
  line-height: 1.5rem;
  padding: 10px 10px;
}
#guidelines .guide b,#park .request b{
  font-family: 'M PLUS 1', Meiryo, sans-serif;
  font-weight: 700;
  color: #E63E54;
}
#guidelines .guide h4{
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}
#guidelines .guide ul{
  font-size: 0.95rem;
}
#guidelines .guide ul li{
  padding: 0.4rem 0;
}
#guidelines .guide .g-icon{
  font-size: 1.8rem;
}
.guide .reservation,.guide .cancel{
  padding: 2.5rem 8% 2.5rem 8%;
  /*border: 1px solid #ddd;*/
  max-width: 600px;
  margin: 0 auto;
  border-radius: 6px;
}
.guide .reservation{
  background-color: #EFFCFF;
  margin-bottom: 20px;
  border: 3px dotted #99b1b7;
}
.guide .reservation h4{
  color: #155260;
}
.guide .cancel{
  background-color: #FFEFEF;
  border: 3px dotted #e1acb6;
}
.guide .cancel h4{
  color: #A83A4E;
}
.guide ul.cap li,.guide p.cap{
    margin-left: 1rem;
  }

/*★★★★★　park　★★★★★*/
#park .park-cap{
  max-width: 600px;
  margin: auto;
  color: #E63E54;
  display: inline-block;
  margin: 2rem 0.5rem 3rem;
}
#park .detail{
  margin-bottom: 4rem;
}
#park .closed{
  display: inline-block;
  color: #E63E54;
  font-size: 1.1rem;
  padding: 0 1rem 5px;
  margin-bottom: 12px;
  background-repeat: no-repeat; 
  background-position: center center;
  background-position: center bottom;
  background-size: 100% 20px;
  background-image: url("img/deco/line2.png");
}
#park .chatch-list {
  max-width: 350px;
  margin: auto;
  justify-content: center;
}
.park-time .cap{
  text-align: center;
}
.park-time h4{
  color: #135AA4;
  margin-top: 1.5rem;
  line-height: 1.5rem;
}
.park-img img{
  max-width: 450px;
  margin: 1rem auto 0;
}
.request ul.res,.request ul.req{
  margin-top: 30px;
}
.request li.item{
  font-size: 1.1rem;
  margin:0 auto 10px;
  color: #0f508a;
  background-color: #CDEBFF;
  width: 90%;
  padding: 8px;
}
.request li.lifo{
  text-align: left;
}
.request .cap{
  display: inline-block;
}
.park-tel{
  border: 1px #eee solid;
  padding: 2rem 1rem;
  background-color: #FFFEC3;
  margin:50px auto 0;
  max-width: 700px;
  border-radius:10px;
}
.park-tel .label{
  background-color: #146448;
  border-radius:50px;
  color: #FFF;
  display: inline-block;
  padding: 0 1rem;
}
.park-tel .name{
  margin: 20px 0 0 0;
  /*line-height: 1.4rem;*/
  color: #215E8A;
  font-size: 1.05rem;
  font-weight: 700;
}
.park-tel .time{
  /*margin: 20px 0 5px 0;
  line-height: 1.4rem;*/
  font-size: 0.9rem;
}
.park-tel .tel{
  color: #146448;
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}
.park-tel .tel .g-icon{
  font-size: 2rem;
}
.park-tel .tel .tel-number{
  padding-bottom: 5px;
}
.guide-map{
  max-width: 800px;
  margin: auto;
}
.guide-list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 50px auto 0;
}
.guide-list li{
  width: 48%;
  padding: 10px 0;
  border-radius:8px;
  max-width: 300px;
}
.guide-list h4{
  color: #146448;
  margin: 10px 0 5px 0;
font-size: 1.1rem}
.guide-list p{
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.4rem;
}
.g-map {
  height: 300px;
  border: 1px solid #ccc;
  margin: 30px auto 50px auto;
  max-width: 800px;
}
.detail .materials{
  max-width: 700px;
  margin: 40px auto 0;
}
.access h4{
  font-size: 1.2rem;
  color: #146448;
}
.access .add{
  margin: 10px 0 20px;
}
.access-list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 900px;
  margin: auto;
}
.access-list>li{
  width: 100%;
  border: 3px dotted #81A2AE;
  background-color: #F4FCFF;
  padding: 2.2rem 20px 2rem;
  border-radius: 8px;
  max-width: 550px;
  margin: 10px auto;
}
.access-list>li ul{
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.4rem;
}
.access-list>li ul li{
  padding: 0.4rem 0;
}
.access-list .label{
  background-color: #3b8399;
  border-radius: 50px;
  color: #FFF;
  display: inline-block;
  padding: 0.1rem 1.5rem;
  margin-bottom: 10px;
}
#park .access .detail{
  margin-bottom: 0;
}

/*★★★★★　faq　★★★★★*/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  
}
.faq-item {
  border: 1px solid #ccc;
  padding: 25px 5%;
  border-radius: 0.5em;
  transition: all 0.5s ease; 
  box-shadow: 0 2px 3px rgba(0,0,0,0.1);
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.8);
}
.faq-question,.faq-answer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq-answer {
  align-items: flex-start;  
  height: 0;
  opacity: 0;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.5s ease;
}
.faq-question img,.faq-answer img {
  width: 30px;
}
.faq-answer img {
  flex-shrink: 0;
}
.faq-question h4 {
  margin: 0;
  font-size: 1.05em;
  color: #134634;
  text-align: left;
}
.faq-answer p {
  margin: 0;
  font-size: 0.95em;
  line-height: 1.6;
  text-align: left;
  margin-top: 0.3em; 
}
.faq-item.active .faq-answer {
  height: auto;
  opacity: 1;
  transform: scaleY(1);
}
.faq-answer .c_btn{
  border-radius: 50px;
  display: inline-block;
}
.faq-answer .c_btn>a{
  padding: 10px 22px;
  font-size: 0.8em;
  display: inline-block;
}
.faq-answer b{
  font-weight: 700;
  color: #E63E54;
}

.bbqbin{
  margin: 80px auto 0;
  max-width: 400px;
}
.bbqbin .c_btn{
  border-radius:50px;
  background-color: #3C84A8;
  border: 1px solid #3C84A8;
}
.bbqbin .c_btn a{
  color: #FFF;
}
.bbqbin .c_btn:hover {
  background-color: #3C84A8;
  border: 1px solid #3C84A8;
  opacity: 0.7;
  }

/*★★★★★　contact　★★★★★*/
#contact .contact-btns {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 30px 0 10px 0;
  margin: 0;
  list-style: none;
  z-index: 1000;
  background: linear-gradient(to top,
    rgba(255, 255, 255, 0.8) 0%,   /* 下端はしっかり白 */
    rgba(255, 255, 255, 0.6) 50%,  /* 少し透ける */
    rgba(255, 255, 255, 0) 100%    /* 上端は完全透明 */
  );
  /* 初期状態は非表示（下に隠す） */
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
#contact .contact-btns.show {
  transform: translateY(0);
  opacity: 1;
}
#contact .contact-btns .btn {
  flex: 1;
  max-width: 150px;
  border-radius: 30px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0,0,0,0.2);
  transition: background-color 0.1s ease;
}
#contact .contact-btns .btn a {
  display: flex;
  align-items: center; 
  justify-content: center; 
  /*gap: 6px;  */
  padding: 10px 0;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#contact .contact-btns .g-icon{
  font-size: 1.4rem;
}
#contact .contact-btns .btn.tel {
  background-color: #399ACE; 
}
#contact .contact-btns .btn.tel:active{
  background-color: #6BBBE0;
}
#contact .contact-btns .btn.mail {
  background-color: #62BA45;
}
#contact .contact-btns .btn.mail:active {
  background-color: #8CD872;
}
#contact .contact-btns .btn.mail .g-icon{
  padding-top:2px;
}

/*★★★★★　footer　★★★★★*/
.site-footer {
  background-color: #f8f8f8;
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
  color: #666;
}


/* =========================================== */
/* スマホ */
/* =========================================== */
@media (max-width: 499px) {
  .sp_off,.sptb_off{display: none !important;}
  
  ul.foods-list .wait2,ul.foods-list .wait4,ul.foods-list .wait6{ animation-delay: 0s !important; }
}

/* =========================================== */
/* タブレット */
/* =========================================== */
@media all and (min-width: 500px) {
  html {font-size: 15px;}
  h2{
    font-size: 1.9rem;
    line-height:2.8rem;
  }
/*  h2::after {
    letter-spacing: 0.1rem;
  }*/
  ul.list_3>li{
    padding:0.5rem 0.5rem;
  }
  ul.cap li,p.cap{
    margin-left: 3rem;
  }
  .section-description{
    text-align: center;
  }
  .sptb_off{display: none !important;}
  .pc_off{display: none !important;}
  
  /*★★★★★　hero　★★★★★*/
  .hero {
    min-height:80vh;
  }
  .hero-text {
    padding: 0 30px;
    margin-top: 0;
    
  }
  img.hero-top{
    max-width: 450px;
    width: 50%;
  }
  .hero-title{
    width: 70%;
    max-width: 600px;
  }
  img.hero-sub{
    max-width: 480px;
    width: 55%;
  }
  img.hero-bottom{
    width: 70%;
    max-width: 650px;
    margin: 1.5rem auto 2rem;
  }
  .hero-pickup{
     flex-wrap: nowrap;
     max-width: 500px;;
  }
  .hero-pickup li{
    width: auto;
  }
  .hero-pickup li:nth-child(1),.hero-pickup li:nth-child(2){
    margin: 0;
  }

  /*★★★★★　about　★★★★★*/
  .about::before{
    background-size:270px auto;
  }
  @keyframes Move1 {
    0%   { transform: translate(200px, 50px); opacity: 0 }
    100% { transform: translate(30px, 0px); opacity: 1 }
  }
  .about::after{
    background-size:350px auto;
    transform: translate(-160px, 0);
  }
  .about ul{
    text-align: left;
  }
  .about .sp_off{
    display: none;
  }
  
  /*★★★★★　features　★★★★★*/
  #features .item{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0.5rem 0;
  }
  #features .img{
    width: 40%;
    margin: auto;
    max-width: 180px;
  }
  #features .text{
    width: 55%;
  }
  #features .text p{
    margin-bottom: 0;
  }
  
  /*★★★★★　pricing　★★★★★*/
  #pricing .rental,#pricing .option{
    padding: 4rem 3.0rem;
  }
  
  ul.rental-list.list_3>li{
    padding:0.5rem 0.5rem;
  }
  ul.rental-price{
    display:flex;
    text-align: center;
    margin-top: 0;
  }
  ul.rental-price > li {
    padding-top:0;
    padding-bottom:0;
  }
  ul.rental-price > li p{
    display: block;
  }
  ul.rental-price > li p::after{
    content: "";
  }
  .price-list{
    max-width: 700px;
    gap: 0;}
  .price-list li{
    width: 33%;
    padding: 2rem 0 ;
    flex: initial;
  }
  .price-list .value{
    line-height: 1.4rem;}
  .price-list .value span{
    font-size: 2.8rem;
    letter-spacing: -0.08em;
    margin-right: 2px;
    }
  .price-list .label {
    margin: 1rem auto 1rem;
    font-size: 1rem;
    padding: 0 10px;
    line-height: 1.6rem;
  }
  .price-list li:nth-child(1) {
    margin: 0;
  }
  
  /*★★★★★　foods　★★★★★*/
  #foods .chatch-list{
    margin: 0 auto 80px auto;
    max-width: 800px;
  }
  ul.chatch-list.list_3 > li {
    flex: initial;
    width: 32%;
    padding: 0.5rem 0.5rem;
  }
  ul.chatch-list.list_3 > li:first-child {
    margin: 0;
  }
  #foods .pickup-line{
    font-size: 1.8rem;
  }
  .discount{
    padding: 30px 0 30px 0;
    margin:0 auto 50px;
    font-size: 1.3rem;
  }
  .discount div{
    font-size: 0.9rem;
    line-height: 1.4rem;
  }
  .discount h4{
    font-size: 1.5rem;
    padding:0 10px 0.5rem;
  }
  .discount h4 .ta {
    font-size: 1.3rem;
  }
  ul.foods-list.list_3 img {
    max-width: 300px;
  }
  .foods-list-pick{
    margin: 0 10px 40px 10px;
  }
  .menu .child{
    max-width: 650px;
    padding: 2.5rem 5%;
  }
  .menu .child .child-text{
    width: 65%;
  }
  .foods-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 450px;
    margin: auto;
  }
  .child_img{
    max-width: 170px;
    margin: auto;
    width: 34%
    }
  .child_text{
    width: 62%
    }
  /*★★★★★　park　★★★★★*/
  #park .chatch-list {
    max-width: 800px;
  }
  #park .closed{
    font-size: 1.3rem;
    padding: 0 1rem 5px;
    margin-bottom: 12px;
  }
  .guide-list li{
    width: 24%;
  }
  
  /*★★★★★　faq　★★★★★*/
  .faq-list {
    max-width: 550px;
    margin: auto;
  }
}
/* =========================================== */
/* スマホ・タブレット（PCより小さいサイズ） */
/* =========================================== */
@media (max-width: 767px) {
  /*★★★★★　navi　★★★★★*/
  .nav-section ul {
    pointer-events: none;
  }
  .nav-section.open ul {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-section.close ul {
    opacity: 1;
    transform: translateY(-100%);
  }
}

/* =========================================== */
/* PC */
/* =========================================== */
@media all and (min-width: 768px) {
  html {font-size: 16px;}
  section {
    padding: 0 30px 9rem;
  }
  h2{
    font-size: 2.3rem;
  }
/*  h2::after {
    font-size: 3.2rem;
    
    margin-top: 8px;
  }*/
  h3{
    font-size: 1.0em;
    line-height: 1.4rem
  }
  .c_btn{
    transition: opacity 0.2s ease, background-color 0.2s ease, border 0.2s ease;
  }
  .c_btn>a,.c_btn>span{
    /*font-size: 0.95em;*/
    padding: 12px 8%;
  }
  .c_btn:not(.tel-pc):hover {
    background-color:#FFDC26; /* 背景色を薄く */
    border: 1px solid #FFDC26;
  }
  ul.list_3>li{
    width: 33%;
  }
  .deco{
    margin-bottom: 40px;
  }
  .text-pc{
    display: block;
  }
  .text-sp{
    display: none;
  }
  .backline{
    padding: 5px 0.5rem 5px 1rem;
  }
  .backline::after{
    height: 3.5rem; 
  }
  .section-description{
    font-size: 1.05rem;
    margin-bottom: 4rem;
  }
  .sptb_off{display: block !important;}
  
  /*★★★★★　navi　★★★★★*/
  .hamburger {
    display: none;
  }
  .nav-section {
    position: relative;
    background-color: #fff;
    z-index: 1000;
    transition: all 0.3s ease;
  }
  .nav-section.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  .nav-section ul {
    opacity: 1;
    all: unset;
    display: flex;
    justify-content: center;
    gap: 3.5%;
    padding: 6px 0;
    margin: 0;
    list-style: none;
  }
  .nav-section ul li {
    width:auto;
    border-bottom: none;
    background-color: inherit;
    box-shadow: none;
  }
  .nav-section ul li a{
    padding: 5px 0;
    color: #FFF;
    display: inline-block;      /* transform を効かせるために block/inline-block */
    transition: transform 0.3s ease;
    font-size: 1.25rem;
    }
  .nav-section ul li a:hover{
    background-color: inherit;
    color:#FFF00F;
    transform: scale(1.2) rotate(-5deg);
    font-weight: 500;
  }
  .nav-section ul{
    position: relative;
    overflow: hidden;
  }
  .nav-section ul::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0rem;
    height: 5rem; 
    width: 100%;
    background-color: #30682E;
    z-index: -1;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1s ease;
  }
  .nav-section ul.st::after {
    clip-path: inset(0 0 0 0);
  }
  
  /*★★★★★　hero　★★★★★*/
  .hero {
    min-height:100vh;
    margin-bottom: 1rem;
  }
  .hero-wave {
    height: 60px;
    z-index: 2;
  }
  .hero-pickup{
     max-width: 700px;
  }
  .hero-text {
    max-width: 900px;
  }
  .hero-slider .swiper-slide.slide1 {
    background-image: url("img/hero/top_1.webp");
  }
  .hero-slider .swiper-slide.slide2 {
    background-image: url("img/hero/top_2.webp");
  }
  .hero-slider .swiper-slide.slide3 {
    background-image: url("img/hero/top_3.webp");
  }
  .hero-slider .swiper-slide.slide4 {
    background-image: url("img/hero/top_4.webp");
  }
  
  
  /*★★★★★　about　★★★★★*/
  .about{
    padding: 6rem 30px 9rem 30px;
  }
  .about::before{
    background-size:320px auto;
  }
  .about::after{
    background-position: 0 50px;
    background-size:450px auto;
    transform: translate(-200px, 50px);
  }
   @keyframes Move1 {
    0%   { transform: translate(200px, 50px); opacity: 0 }
    100% { transform: translate(50px, 0px); opacity: 1 }
  }
  .sub-title{
    font-size: 1.6rem;
    margin:1rem 0 0.5rem;
  }
  .about ul{
    text-align: center;
  }
  .about ul.section-description li{
    display:block;
    padding: 10px 0;
  }
  .about .sp_off{
    display: block;
  }
  
/*★★★★★　features　★★★★★*/
  #features .section-list {
    justify-content: space-between;
  }
  #features .item {
    display: block;
    width: 23.5%;
    padding: 0;
  }
  #features .img,#features .text{
    width: 100%;
  }
  #features .img {
    max-width:none;
    margin: 0 auto 1rem;
  }
  #features .item:nth-child(even) {
    margin-top: 50px;
  }
  .section-list li.item.st:nth-child(1) img { animation-delay: 0s; }
  .section-list li.item.st:nth-child(2) img { animation-delay: 0.2s; }
  .section-list li.item.st:nth-child(3) img { animation-delay: 0.4s; }
  .section-list li.item.st:nth-child(4) img { animation-delay: 0.6s; }
  .section-list li.item.st:nth-child(5) img { animation-delay: 0.8s; }
  
/*★★★★★　pricing　★★★★★*/
  .time-pickup{
    text-align: center;
  }
  .price-pickup{
    margin: 20px auto 5px auto;
    padding:0 20px 0.5rem;
  }
  .pricing-time .time-img{
    max-width: 500px;
  }
  .price-list li{
    padding: 1.8rem 0 ;
  }
  #pricing .rental,#pricing .option{
    padding: 4rem 5rem;
  }
  #pricing .rental h3,#pricing .option h3{
    font-size: 1.4rem;
  }
  ul.rental-list.list_3>li{
    padding:0.5rem 1rem;
  }
  ul.rental-price > li {
    padding-top:0;
    padding-bottom:0;
  }
  
/*★★★★★　foods　★★★★★*/
  .menu .child{
    padding: 2.5rem 6rem;
  }
  .child_img{
    width: 40%;
    margin: 0;
  }
  .child_text{
    width: 52%;
    padding: 10px 0;
  }
  .food_con{
    font-size: 0.85rem;
  }
  .child .food_price {
    margin: 10px 0 10px 0;
  }
/*★★★★★　guidelines　★★★★★*/
  #guidelines h3{
    text-align: center;
  }
  #guidelines .reserv{
    margin:0 auto 2rem;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.7rem;
    width: 95%;
  }
  #guidelines .guide{
    display: flex;
    justify-content: space-between;
  }
  #guidelines .guide h4{
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .guide .reservation,.guide .cancel{
    width: 48%;
  }
  .guide .reservation,.guide .cancel{
    padding: 3em 4%;
  }
  .guide .reservation{
    margin-bottom: 0;
  }

/*★★★★★　park　★★★★★*/
  .park-img img{
    max-width: 600px;
  }
  .guide-list{
    max-width: 900px;
  }
  .access-list>li{
    width: 48%;
  }
  .g-map {
    height: 500px;
  }
  .request-list{
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin:30px auto 0;
    width: 90%;
  }
  .request-list .res-list,.request-list .req-list{
    width: 48%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px 30px;
  }
  .request ul.res, .request ul.req {
    margin-top: 0;
  }
  .res-list .cap{
    margin-top: 10px;
  }
  .request li.item {
    width: 100%;
  }
  .request-list .info{
    width: 80%;
    margin: auto;
  }
  
/*★★★★★　faq　★★★★★*/
   .faq-list {
    max-width: 800px;
    gap: 20px;
  }
  .faq-item {
    padding: 30px 10%;
  }
  .faq-question,.faq-answer {
    gap: 25px;
  }
  .faq-question h4 {
    font-size: 1.15em;
  }
  .faq-question img,.faq-answer img {
    width: 32px;
  }
  
/*★★★★★　contact　★★★★★*/
  #contact {
    display: none;
  }
}
/* =========================================== */
/*パソコンサイズで高さが500pxより小さい場合
/* =========================================== */
@media all and (max-width: 499px) and (max-height: 600px) {
   .hero-pickup {
    flex-wrap: nowrap;
    max-width: 500px;
  }
   .hero-pickup li:nth-child(1), .hero-pickup li:nth-child(2) {
    margin: 0;
  }
}
@media all and (min-width: 500px) and (max-height: 550px) {
  .hero-text { max-width: 500px; width: 75%; }
}
@media all and (min-width: 768px) and (max-height: 550px) {
  .hero-text { max-width: 650px; width: 75%; }
}


/* =========================================== */
/* PC大 */
/* =========================================== */
@media all and (min-width: 1024px) {
  h3{
    font-size: 1.2em;
    line-height: 1.6rem
  }
  ul.list_3>li{
    padding:0.5rem 1rem;
  }
  .hero-pickup{
     max-width: 800px;;
  }
  
  /*★★★★★　about　★★★★★*/
  .about::before{
    background-size:380px auto;
  }
  .about::after{
    background-size:560px auto;
    transform: translate(-180px, 50px);
  }
   @keyframes Move1 {
    0%   { transform: translate(200px, 50px); opacity: 0 }
    100% { transform: translate(0, 0px); opacity: 1 }
  }
  
  
  /*★★★★★　features　★★★★★*/
  #features .item {
    width: 22%;
    padding: 0;
  }
  
  /*★★★★★　foods　★★★★★*/
  ul.chatch-list.list_3 > li {
    padding: 0.5rem 1rem;
  }
}
