@charset "utf-8";
:root {
  --main-color: #b9c6be;
  --sub-color: #edf1ef;
  --bk-color: #F6F2EA;
  --text-color: #4c4c4c;
  --serif: "Noto Serif JP", serif;
  --sans: "Zen Kaku Gothic New", sans-serif;
  --libre: "Libre Baskerville", serif;
   --pc1-width:700px; 
    
}

.serif {
  font-family: var(--serif);
}

.sans {
  font-family: var(--sans);
}

.libre {
  font-family: var(--libre);
}



/* ------------------------------
  common(sp)
------------------------------ */
body {
  font-family: var(--sans);
  line-height: 1;
  font-weight: 400;
  color: var(--text-color);
  letter-spacing: 0.06em;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

    p{
    font-size: 14px;
    line-height: 1.75em;
    letter-spacing: 0.05em;
}

.pc {
  display: none;
}

.sp {
  display: inline-block;
}

/* ------------------------------
  header(sp)
------------------------------ */
.header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 60px;
  font-family: var(--sans);
  background-color: #fff;
}

.header-logo {
  width: 200px;
  padding: 20px 0 0 10px;
}

.header-logo a {
  display: block;
}




.pc-nav {
  display: none;
}

.sp-nav {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  background-color: rgba(255, 255, 255, 1);
  transition: 0.5s;
}

.active .sp-nav {
  opacity: 1;
  visibility: visible;
}

.sp-nav nav {
  width: fit-content;
  margin-inline: auto;
  min-height: calc(100% + 1px);
}

.navi-logo{
    max-width: 100px;
    margin: auto;
    display: block;
    padding-top: 80px;
    padding-bottom: 30px;
}


.sp-nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
    padding-top: 0px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 50px;
}

.sp-nav ul li {
  padding: 0 15px;
}



.sp-nav a {
  display: flex;
  width: fit-content;
  margin-inline: auto;
  padding: 0.5em;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #231815;
}

  .sp-nav li.insta img {
    width: 34px;
    height: 34px;
  }

  .sp-nav li.insta a {
    padding: 0em 0em;

  }


  .sp-nav li.online {
    background-color: #B094C4;
    height: 50px;
    margin-top: 0px;
    display: block;
    border-radius: 25px;
  }
    
  .sp-nav li.online a{
    color: rgba(255,255,255,1.00);
    padding: 0;

    line-height: 50px;      
    }
    
    .sp-nav li.online a::before{
    background: url("../images/grape_mark.svg") 0 0 no-repeat;
    display: inline-block;
    width: 28px;
    height: 27px;
    -webkit-background-size: 28px 27px;
    content: "";
    position: relative;
    top: 10px;
    margin-right: 5px;
    }

	.sp-nav li.torihiki a{
		font-size: 12px;
	}


.hamburger {
  position: fixed;
  z-index: 100;
  top: 11px;
  right: 12px;
  width: 48px;
  height: 48px;
}

.hamburger span,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  position: absolute;
  width: 36px;
  height: 2px;
  left: 50%;
  top: 50%;
  border-radius: 1px;
  background-color: var(--main-color);
  transition: all 0.5s;
}

.hamburger span {
  transform: translate(-50%, -50%);
}

.hamburger::before {
  transform: translate(-50%, calc(-50% - 8px));
}

.hamburger::after {
  transform: translate(-50%, calc(-50% + 8px));
}

.active .hamburger span {
  opacity: 0;
}

.active .hamburger::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.active .hamburger::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ------------------------------
  footer(sp)
------------------------------ */
.footer {
    color: #fff;
    text-align: center;
}

.footer-inner {
    background-color: var(--main-color);
    padding-top: 15px;
    padding-bottom: 30px;
    margin-top: 10px;
}

.footer-logo {
    max-width: 100px;
    margin: auto;
  display: block;
}

.footer-address {
  margin-top: 15px;
  font-size: 15px;
}



.footer-torihiki {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  text-align: center;
}

/* ------------------------------
  top page(sp)
------------------------------ */
.main {
  padding-top: 60px;
}

:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
}

.hero .slide-media {
  position: relative;
  overflow: hidden;
}

.hero .slide-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero .swiper-fade .swiper-slide {
  transition-property: opacity, transform !important;
  pointer-events: none;
}

/* .hero .swiper-fade .swiper-slide-active {
  pointer-events: auto;
} */

.hero .slide {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  height: calc(100vh - 80px);
  padding: 0 4.8vw 20px 0;
  color: #4c4c4c;
}

.hero .slide-media {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero .slide-media img {
  transition: 7s 1s linear;
  transform: translateX(-1.5%) scale(1.1);
}

.hero .slide-title,
.hero .slide-text {
  display: block;
  animation: 2s var(--easing) both;
  opacity: 0;
}

.hero .slide-title {
  font-family: var(--libre);
  font-weight: 700;
  font-size: 10.93vw;
  letter-spacing: 0.06em;
  text-align: right;
  font-size: min(10.93vw, 40px);
}

.hero .slide-text {
  font-size: min(3.46vw, 13px);
  text-align: right;
  margin-top: 1em;
  animation-delay: 0.2s;
}

.hero .swiper-slide[class*="-active"] .slide-media img {
  transition-delay: 0s;
  transform: translateX(1.5%) scale(1.05);
}

.hero .swiper-slide.anm-started .slide-title,
.hero .swiper-slide.anm-started .slide-text {
  animation-name: hero-fadeIn;
}

.hero .swiper-slide.anm-finished .slide-title,
.hero .swiper-slide.anm-finished .slide-text {
  animation-name: hero-fadeOut;
}

@keyframes hero-fadeIn {
  0% {
    -webkit-transform: translateY(5rem);
    transform: translateY(5rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes hero-fadeOut {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-5rem);
    transform: translateY(-5rem);
    opacity: 0;
  }
}

.container {
  padding: 0 9vw;
}

section{
    margin-bottom:150px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.home-top{
    text-align: center;
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
}

.home-top-icon{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.home-logo{
    width: 120px;
    height: auto;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.home-top h1{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    font-size: 26px;
    line-height: 2em;
    letter-spacing: 0.1em;
}
.home-top p.lead{
    font-size: 18px;
    line-height: 2em;
    margin-bottom: 1.5em;
}


.home-top p.bodycopy {
    padding: 120px 0 0px;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.06em;
    text-align: left;
}

.home-section-title {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.home-section-title img{
    height: 23px;
}

.home-section-title span:nth-of-type(1) {
  display: block;
  font-family: var(--libre);
  font-size: 34px;
  letter-spacing: 0.06em;
  text-indent: 0.06em;
}

.home-section-title span:nth-of-type(2) {
  display: block;
  margin-top: 1em;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  font-weight: 700;
}



.button-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.6em;
  width: fit-content;
  font-size: 15px;
  font-weight: 600;
}

.button-link::after {
  content: "";
  width: 45px;
  height: 45px;
  background: url(../images/button_main.svg) no-repeat center / cover;
}

.home-clala-text-wrap .button-link {
  margin: 30px auto 0;
}




/*info*/

.home-information {
    background-color: var(--bk-color);
    margin-bottom: 50px; 
}

.home-information-inner{
     
}

.information-wrap {
  position: relative;
  margin: 40px 20px;
}

.info-container:last-child{
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(216,216,216,1.00);
}

.info-container {
    overflow: hidden;
    width: 100%;
    margin: 25px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(216,216,216,1.00);
    text-align: left;
}

.info-container a{
    display: flex;
}

.info-container img{
    width: 35%;  
}
.info-container div{
    margin-left: 15px;
}

.information-slider a {
    display: block;
      
}

.info-container .date, .information-detail-container .date {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.06em;
    margin: 1.5em 0 0.8em;
    color: rgba(88,88,88,1.00);
}

.info-container span, .information-detail-container span.catg{
    display: inline-block;
    padding-top: 3px;
    padding-right: 0.5em;
    padding-left: 0.5em;
    padding-bottom: 3px;
    background-color: #DCDDDD;
    border-radius: 0.5em;
    margin-left: 0.5em;
    font-size: 12px;
}

.info-container .title {
    font-size: 15px;
    line-height: 1.75em;
    letter-spacing: 0.06em;
    margin-top: 0.5em;
}


 .information-detail-container{
    text-align: left;
     width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

.information-detail-container .title {
    font-size: 20px;
    line-height: 1.75em;
    letter-spacing: 0.06em;
    margin-top: 0.5em;
    text-align: left;
}

.information-single-content {
    margin-top: 30px;
    margin-bottom: 40px;
}


.information-slider-wrap .button-link {
  margin: 30px auto 0;
}


.home-information-inner{
    text-align: center;
}



/*sns*/

.home-sns {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 100px;

}

.home-sns img.icon{
    width: 38px;
    display: inline-block;
}

.home-sns p{
    font-size: 15px;
    line-height: 1.5em;
}


/*home-fruits*/
.home-fruits {

    padding-right: 0;
    padding-left: 0;
    text-align: center;
    width: auto;
    
}

.home-fruits-icon{
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;

}


.home-fruits-pic {
    width: auto;
    height: 560px;
    background: url("../images/home_fruits_bg_sp.jpg") no-repeat center / cover;
    margin-bottom: 40px;
    margin-top: 40px;

}

  .home-fruits-txt{
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 80px;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.06em;
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
    } 
    
    .home-fruits-txt h3{
    font-size: 26px;
    line-height: 1.75em;
    letter-spacing: 0.05em;
    margin-bottom: 1em;
}
    
    .home-fruits-txt p{
    font-size: 16px;
    letter-spacing: 0.06em;
    display: block;
} 


   .home-fruits-wrapper{
    width: auto;
    margin-left: 35px;
    margin-right:35px;
    margin-bottom: 50px;
    display: block;
    }
    
    .home-fruits-container{
    width: 100%;
    padding-bottom: 50px;
    text-align: left;
    margin-bottom: 50px;
    border-bottom: 1px dotted rgba(169,169,169,1.00);
    position: relative;
    padding-top: 50px;
}
   
    .fruits-popmark{
    position: absolute;
    top: 30px;
    left: 10px;
}
    .fruits-popmark img{
    width: 80px;
    height: auto;
}


    .home-fruits-container .fruits-pic{
    margin-bottom: 30px;
}
    
    .home-fruits-container h4{
    letter-spacing: 0.05em;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}
    .home-fruits-container p.season{
    font-size: 13px;
    margin-bottom: 15px;
    /* [disabled]height: 2em; */
    min-height: 4em;
}
    
    .home-fruits-container p.exposition{
    font-size: 15px;
    margin-bottom: 35px;
}
    .home-fruits-container .btnarea, .btnarea{
    text-align: center;
    margin-bottom: 30px;
}

.onlinestore_banner_wrapper{
    margin-bottom: 80px;
}

   .onlinestore_banner{
    width: auto;
    margin-left: 30px;
    margin-right: 30px;
    padding: 20px;
    background-color: #E4DAEA;
    border-radius: 10px;
    margin-bottom: 20px;
}
    
    a .onlinestore_banner{
        transition: all 0.5s 0s ease;
    } 
    a .onlinestore_banner:hover{
    background-color: #D4C4DF;
    
}
    
    .onlinestore_banner div:first-child{
    padding-right: 0px;
    margin-bottom: 0px;
    }
    .onlinestore_banner h2 span{
    width: 100%;
    display: block;
    margin-bottom: 20px;
    margin-top: 0px;
    padding-top: 5px;

}

    .onlinestore_banner h2 span img{
    width: 200px;
	}
    .onlinestore_banner  span:nth-of-type(2){
    text-align: left;
      display: block;
  margin-top: -10px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.25em;
  font-weight: 600;
}
    .onlinestore_banner p{
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.75em;
    text-align: left;
}
    
    .onlinestore_banner img.online-pic{
    width: 100%;
}


p.contact_torihiki{
    font-size: 13px;
    text-align: center;
margin-top:-50px;
margin-bottom:70px;
}


    .home-fruits_sub{
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
    }
    
    
    .home-fruits_sub h3{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-bottom: 15px;
    display: flex;
    align-items: center; 
    justify-content: left; 
    text-wrap:nowrap;
}
.home-fruits_sub h3:after {
    border-top: 1px solid;
    content: "";
    width: 100%;
    margin-left: 1em;
    max-width: 100%;
}
    
    .home-fruits_sub h3:nth-of-type(2){
    margin-top: 80px;
}
    
    .home-fruits_sub p{
    margin-top: 1em;
    font-size: 15px;
    text-align: left;
}


/* 横スライド(SP)*/
@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}

.scroll-infinity{
    margin-top: 80px;
}

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  height:150px;
  width:auto;
}
.scroll-infinity__item>img {
  height:150px;
  width:auto;
}




/*home-about*/
  .home-about {
    
    background-color: var(--bk-color);

  }
    
    
 .home-about-icon{
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}       


.home-about-inner{
    padding-right: 0vw;
    padding-left: 0vw;

}

  .home-about-pic {
    width: 100%;
    height: 300px;
    background: url(../images/home_about_bg_pc.jpg) no-repeat center / cover;
    margin-bottom: 50px;
    margin-top: 50px;
  }
    
  .home-about-txt{
    max-width: auto;
        margin-left: 20px;
    margin-right: 20px;
    } 
    
    .home-about-txt h3{
    font-size: 26px;
    line-height: 1.75em;
    letter-spacing: 0.05em;
    margin-bottom: 1em;
}
    
    .home-about-txt p{
    font-size: 15px;
    letter-spacing: 0.06em;
	line-height: 2em;
} 
    
      .home-about-map{
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 100px;
    width: auto;
    } 
    
    
     .home-about-pic1{
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 30px;
    height: auto;
    margin-bottom: 50px;
    } 
    
     .home-about-pic2{
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 50px;
    height: auto;
    margin-bottom: 20px;
    } 
    
    .home-about p.message{
    font-size: 18px;
    font-weight: 600;
    margin-top: 60px;
}


    
.home-contact{
    widht: auto;
    margin-right: 20px;
    margin-left: 20px;
} 
    
.home-contact > p{
    text-align: left;
    margin-top: 30px;
}
    
.home-contact-form{

}


.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: block;
  width: 19px;
  height: 88px;
  background: url("../images/button_pagetop.png") no-repeat center / cover;
}

.pagetop {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.pagetop.active {
  opacity: 1;
  visibility: visible;
}



/*投稿一覧*/
.info_catg{
    margin-top: 50px;
    margin-bottom: 50px;
}
.info_catg p{
    font-size: 13px;
}

.info_catg_menu{
    width: auto;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 10px;
    display: flex;
    justify-content:space-between;
    flex-flow: row wrap;
}

.info_catg_menu li{
    flex-basis: 47%;
    
}

.info_catg_menu li a, .info_catg_name{
    display: inline-block;
    padding-top: 7px;
    padding-right: 1em;
    padding-left: 1em;
    padding-bottom: 7px;
    background-color: #DCDDDD;
    border-radius: 1em;
    font-size: 13px;
    width: 10em;
    max-width: 10em;
    margin-bottom: 1em;
    line-height: 1.5em;
    text-align: center;
}

.info_catg_name{
    color: rgba(0,0,0,1.00);
    background-color: rgba(255,255,255,1.00);
}

.information-list-wrap {
  position: relative;
  margin: 40px 20px;
}


.information-detail-wrap {
  position: relative;
  margin: 40px 20px;
}


/* ------------------------------
  お問い合わせ(sp)
------------------------------ */

   .home-contact{
    width: auto;
    margin-left: 35px;
    margin-right:35px;
    margin-bottom: 50px;
    display: block;
    }


.contact-privacy {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: var(--spacing);
}

.contact-privacy-title {
  margin-bottom: 0.5em;
}

.contact-privacy-title::before {
  content: "【";
}

.contact-privacy-title::after {
  content: "】";
}

.contact-privacy p + .contact-privacy-title {
  margin-top: 2em;
}

.contact-privacy P + p {
  margin-top: 2em;
}

.contact-form {
  padding: 50px 0;
  margin-bottom: 50px;

  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: var(--spacing);
}

.contact-form dl {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

.contact-form dt {
  margin-bottom: 1em;
}

.contact-form dt > p {
  display: flex;
}

.contact-form dt span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 24px;
  font-size: 13px;
  line-height: 1;
  color: #fff;
  background-color: #f5b186;
  margin-right: 0.5em;
}

.contact-form dd > p > span {
  display: block;
}

.contact-form span + span {
  margin-top: 20px;
}

.contact-confirm_message{
text-align:center;
  margin-top: 30px;
}

.contact-confirm dd{
	padding:1em;
background-color:#f2f2f2;
}

.formback{
display: block;
text-align:center;}

.formback p{padding:1em;}

/* input_style(sp) */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 1em;
  border: solid 1px #919191;
  border-radius: 0;
  background-color: #fff;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: var(--spacing);
  color: var(--text-color);
  font-weight: 400;
}

input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

span.wpcf7-radio {
  display: flex;
  flex-direction: column;
}
span.wpcf7-list-item {
  margin-left: 0px;
}

span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 2px solid green;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: #48c949;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}


textarea {
  height: 270px;
  resize: vertical;
  line-height: 1.6;
}

input::placeholder {
  color: #a2a2a2;
}

input[type="submit"] {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 278px;
  height: 64px;
  margin: 50px auto 0;
  font-family: var(--sans);
  font-size: 20px;
  letter-spacing: var(--spacing);
  color: #fff;
  background-color: #71c3c6;
	text-align: center;
}

.grecaptcha-badge {
  visibility: hidden;
}

.page-id-26 .grecaptcha-badge {
  visibility: visible;
}


/*ぶどうシルエット(sp)*/ 

    .grape_icon01{
    background: url(../img/images/grape01.png)no-repeat center / cover;
    width: 70px;
    height: 75px;
}  
    .grape_icon02{
    background: url(../img/images/grape02.png)no-repeat center / cover;
    width: 57px;
    height: 62px;
    }
    .grape_icon03{
    background: url(../img/images/grape03.png)no-repeat center / cover;
    width: 48px;
    height: 52px;
}  
    .grape_icon04{
    background: url(../img/images/grape04.png)no-repeat center / cover;
    width: 59.4px;
    height: 64.8px;
}  

    .grape_icon05{
    background: url(../img/images/grape05.png)no-repeat center / cover;
    width: 51.8px;
    height: 56.1px;
}  
     
    .grape_icon06{
    background: url(../img/images/grape06.png)no-repeat center / cover;
    width: 58.1px;
    height: 62.3px;
}  
    
    .grape_icon07{
    background: url(../img/images/grape07.png)no-repeat center / cover;
    width: 47.6px;
    height: 54.6px;
}  
     
     
    
/*ぶどうアイコン(sp)*/
    
    .home-top-icon .grape_icon01{
    top: 500px;
    right: 10px;
    position: absolute;}
    
    .home-top-icon .grape_icon02{
    top: 400px;
    left: 0px;
    position: absolute;
}
    
    .home-top-icon .grape_icon03{
    top: 950px;
    right: 50px;
    position: absolute;}
   
    .home-fruits-icon .grape_icon04{
    top: -20px;
    left: -20px;
    position: absolute;}
    
    .home-fruits-icon .grape_icon05{
    top: 0px;
    right:0px;
    position: absolute;}
    
    .home-about-icon .grape_icon06{
    top: -40px;
    left: -10px;
    position: absolute;}
    
    .home-about-icon .grape_icon07{
    top: 80px;
    right: 30px;
    position: absolute;}


/*torihiki*/

.home-torihiki {
    background-color: var(--bk-color);
    margin-bottom: 50px; 
}

.home-torihiki-inner{
    width: auto;
    margin-left: 30px;
    margin-right: 30px;
}

.home-torihiki-inner h2 span:nth-of-type(1) {
  display: block;
  margin-top: 1em;
  font-family: var(--sans);
  font-size: 20px;
  letter-spacing: 0.2em;
  text-indent: 0em;
  font-weight: 700;
}

table.torihiki {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 14px;
    line-height: 1.75em;
    margin-top: 50px;
}
table.torihiki th {
    width: 22%;
    background-color: #F2F2F2;
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 15px;
    vertical-align: middle;
    font-weight: normal;
    text-align: center;
}
table.torihiki td {
  background: #fff;
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 15px;
  vertical-align: top;
  text-align: left;
}

  table.torihiki th, table.torihiki td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  table.torihiki tr:last-child td:last-child {
    border-bottom: 1px solid #ccc;
  }



@media (min-width: 1000px) {
  /* ---------------------------------------------------------------------
    common(pc)
  ------------------------------ */
  html {
    scroll-padding: 114px;
  }

  img {
    width: auto;
    max-width: 100%;
  }
        p{
    font-size: 15px;
    line-height: 1.75em;
    letter-spacing: 0.05em;
}

  .pc {
    display: inline-block;
  }

  .sp {
    display: none;
  }
    


  /* ------------------------------
    header(pc)
  ------------------------------ */
  .header {
    height: 80px;
  }

  .header-logo {
    width: 260px;
    padding: 25px 0 0 30px;
  }

  .sp-nav-wrap {
    display: none;
  }

  .pc-nav {
    display: block;
  }

  .pc-nav ul {
    display: flex;
    justify-content: space-between;
    width: 720px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 20px;
    margin-bottom: 0;
    align-items: center;
  }

    .pc-nav ul li{
    margin-top: 0px;
    padding-right: 0px;
}
    
  .pc-nav a {
    font-size: 15px;
    letter-spacing: 0.08em;
  }

  .pc-nav li.insta {
    width: 34px;
    height: 34px;
  }

  .pc-nav li.insta a {
    padding: 0em 0em;

  }
    
  .pc-nav li.online {
    background-color: #B094C4;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 1.2em;
    padding-bottom: 1em;
    height: 80px;
    margin-top: 0px;
  }
    
  .pc-nav li.online a{
    color: rgba(255,255,255,1.00);
    }
    
    .pc-nav li.online a::before{
    background: url("../images/grape_mark.svg") 0 0 no-repeat;
    display: inline-block;
    width: 28px;
    height: 27px;
    -webkit-background-size: 28px 27px;
    content: "";
    position: relative;
    top: 7px;
    margin-right: 5px;
    }

  /* ------------------------------
    footer(pc)
  ------------------------------ */
  .footer-inner {
    display: block;
    max-width: 100%;
    margin-inline: auto;
  }

  .footer-info {
    flex-shrink: 0;
  }

  .footer-address {
    margin-top: 15px;
  }

  .footer-address span {
    padding-left: 1em;    
  }

  .footer-copyright {
    margin-top: 70px;
    text-align: right;
  }

  /* ------------------------------
    top page(pc)
  ------------------------------ */
  .main {
    padding-top: 80px;
  }
    
section{
    margin-bottom: 150px;
    padding-top: 60px;
    padding-bottom: 60px;
}

  .hero .slide {
    height: calc(100vh - 80px);
    /* padding: 0 11.25vw 60px 0; */
    padding: 0 calc((100% - 1000px) / 2) 60px 0;
  }

  .hero .slide-title {
    /* font-size: 4.375vw; */
    font-size: 56px;
  }

  .hero .slide-text {
    /* font-size: 1.4vw; */
    font-size: 18px;
    animation-delay: 0.2s;
  }

.home-top{
    text-align: center;
    width: var(--pc1-width);
    margin-left: auto;
    margin-right: auto;
    
}
    
.home-top-icon{
    width: 1000px;
}

.home-logo{
    width: 180px;
    height: auto;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.home-top h1{
    writing-mode: horizontal-tb;
    -ms-writing-mode: tb-rl;/*IE用*/
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 32px;
    line-height: 2em;
    letter-spacing: 0.1em;
}
.home-top p.lead{
    font-size: 20px;
    line-height: 2em;
    margin-bottom: 15px;
    font-weight: normal;
}


.home-top p.bodycopy {
    padding: 50px 0 80px 0.06em;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.06em;
    text-align: left;
}

    
    
.home-section-title img{
    height: 30px;
}

    
  .home-section-title span:nth-of-type(1) {
    font-size: 40px;
  }

  .home-section-title span:nth-of-type(2) {
    font-size: 16px;
  }



  .button-link {
    font-size: 20px;
  }

  .button-link::after {
    width: 52px;
    height: 52px;
  }

 

    

  /* info */
  .home-information {

  }
    
  .home-information-inner {
    max-width: 1200px;
    margin-inline: auto;

  } 

  .information-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 0px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 20px;
  }

.info-container {
    overflow: hidden;
    flex-basis: 28%;
    margin: 25px auto 0;
    padding-top: 25px;
    border-top: none;
    text-align: left;
}
    
.info-container:last-child{
    border-bottom: none;
}


.info-container a{
    display: block;
}
 
.info-container img{
    width: 100%;  
}

.info-container div{
    margin-left: 0px;
}

.info-container .title {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.06em;
    margin-top: 0.5em;
}
    
    
/*home-fruits*/
  .home-fruits {
    padding: 100px 0 30px;
    width: 100%;
  }
    
.home-fruits-icon{
    width: 1000px;
}

  .home-fruits-pic {
    width: 100%;
    height: 500px;
    background: url(../images/home_fruits_bg_pc.jpg) no-repeat center / cover;
    margin-bottom: 90px;
    margin-top: 50px;
  }

  .home-fruits-txt{
    width: var(--pc1-width);
    margin-left: auto;
    margin-right: auto;
    } 
    
    .home-fruits-txt h3{
    font-size: 40px;
    line-height: 1.75em;
    letter-spacing: 0.05em;
    margin-bottom: 0.5em;
}
    
    .home-fruits-txt p{
    font-size: 16px;
    line-height: 2em;
    letter-spacing: 0.08em;
} 
  
    
    .home-fruits-wrapper{
    width: 1000px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-right: auto;
    margin-left: auto;
    margin-top: 0px;
    padding-top: 70px;
    margin-bottom: 30px;
    }
    
    .home-fruits-container{
    width: 450px;
    padding-top: 50px;
    padding-bottom: 50px;
    border-bottom-style: none;
    position: relative;
}
    
    .fruits-popmark{
    position: absolute;
    top: 10px;
    left: 10px;
}
    .fruits-popmark img{
    width: 100px;
    height: auto;
}
    
    .home-fruits-container .fruits-pic{
    margin-bottom: 30px;
}
    
    .home-fruits-container h4{
    letter-spacing: 0.05em;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}
    .home-fruits-container p.season{
    font-size: 14px;
    line-height: 1.75em;
    margin-bottom: 15px;
    /* [disabled]height: 2em; */
    min-height: 4em;
}
    
    .home-fruits-container p.exposition{
    font-size: 15px;
    line-height: 1.75em;
    margin-bottom: 35px;
}
    .home-fruits-container .btnarea, .btnarea{
    text-align: center;
    margin-bottom: 0px;
}
    

    .onlinestore_banner{
    width: var(--pc1-width);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    padding: 30px;
    justify-content: space-between;
    background-color: #E4DAEA;
    margin-bottom: 20px;
}
    
    a .onlinestore_banner{
        transition: all 0.5s 0s ease;
    } 
    a .onlinestore_banner:hover{
    background-color: #D4C4DF;
    
}
    
    .onlinestore_banner div:first-child{
        padding-right: 40px;
    }
    .onlinestore_banner h2 span{
    width: 300px;
    display: block;
    margin-bottom: 20px;
    margin-top: 0px;
    padding-top: 5px;
    
    
}

    .onlinestore_banner h2 span img{
    width: 230px;
	}

    .onlinestore_banner  span:nth-of-type(2){
    text-align: left;
      display: block;
  margin-top: -10px;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0.25em;
  font-weight: 600;
}
    .onlinestore_banner p{
    margin-bottom: 20px;
        font-size: 14px;
        line-height: 1.75em;
}
    
    .onlinestore_banner img.online-pic{
    width: auto;
}
    

    .home-fruits_sub{
    width: var(--pc1-width);
    margin-left: auto;
    margin-right: auto;
    }
    
    
    .home-fruits_sub h3{
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-bottom: 0.5em;
    display: flex;
    align-items: center; 
    justify-content: left; 
    text-wrap:nowrap;
}
.home-fruits_sub h3:after {
    border-top: 1px solid;
    content: "";
    width: 100%;
    margin-left: 1em;
    max-width: 100%;
}
    
    
    .home-fruits_sub h3:nth-of-type(2){
    margin-top: 80px;
}
    
    .home-fruits_sub p{
    margin-top: 1em;
    font-size: 16px;
}
    
    
/* 横スライド(PC)*/
    
.scroll-infinity__item {
  height:200px;
width:auto;
}
.scroll-infinity__item>img {
    height: 200px;
    width: auto;
    max-width: none;
}
    
    
    
/*home-about*/
  .home-about {

    background-color: var(--bk-color);

  }
    
    
 .home-about-icon{

    width: 1000px;

}           


.home-about-inner{
 
    padding-right: 0vw;
    padding-left: 0vw;
}

  .home-about-pic {
    width: 100%;
    height: 500px;
    background: url(../images/home_about_bg_pc.jpg) no-repeat center / cover;
    margin-bottom: 90px;
    margin-top: 75px;
  }
    
  .home-about-txt{
    max-width:  var(--pc1-width);
    margin-left: auto;
    margin-right: auto;
    } 
    
    .home-about-txt h3{
    font-size: 40px;
    line-height: 1.75em;
    letter-spacing: 0.05em;
    margin-bottom: 0.5em;
}
    
    .home-about-txt p{
    font-size: 16px;
    line-height: 2em;
    letter-spacing: 0.08em;
} 
    
      .home-about-map{
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 100px;
    width: auto;
    } 
    
    
     .home-about-pic1{
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    max-width: 1000px;
    height: auto;
    margin-bottom: 50px;
    } 
    
     .home-about-pic2{
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    max-width:  var(--pc1-width);
    height: auto;
    margin-bottom: 50px;
    } 
    
    .home-about p.message{
    font-size: 20px;
    font-weight: 600;
    margin-top: 60px;
}
    
    
    
.home-contact{} 
    
.home-contact > p{
    text-align: center;
    margin-top: 30px;
}
    
.home-contact-form{
    max-width: var(--pc1-width);
    margin-right: auto;
    margin-left: auto;
}

 


/*投稿一覧（PC）*/
    
.info_catg_menu{
    width: auto;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 10px;
    display: flex;
    justify-content:center;
    flex-flow: row wrap;
}

.info_catg_menu li{
    flex-basis: auto;
    margin-left: 10px;
    margin-right: 10px;
} 
    
  .information-list-wrap {
    display: flex;
    flex-direction: row;
    gap: 40px 5%;
    margin-top: 0px;
    margin-left: auto;
    margin-bottom: 20px;
    flex-wrap: wrap;
    margin-right: auto;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

 .information-list-wrap .info-container {
    overflow: hidden;
    margin-top: 25px;
    margin-bottom: 0;
    padding-top: 25px;
    border-top: none;
    text-align: left;
   flex-basis: 30%;
    margin-right: 0px;
    margin-left: 0px;
    
}
    

    
 .information-detail-container{
    text-align: left;
     width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
}
 
.information-detail-container .title {
    font-size: 24px;
}

.information-single-content {
    margin-top: 30px;
    margin-bottom: 40px;
}

  /* ------------------------------
    お問い合わせ(pc)
  ------------------------------ */
.home-contact{
    max-width: var(--pc1-width);
    margin-right: auto;
    margin-left: auto;
} 


.contact-privacy {
	max-width: var(--pc1-width);
    margin-right: auto;
    margin-left: auto;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: var(--spacing);
}
    
.home-contact > p{
    text-align: center;
    margin-top: 30px;
}
    
.contact-form{
    max-width: var(--pc1-width);
    margin-right: auto;
    margin-left: auto;
}


  .contact-text {
    padding: 70px 0 60px var(--spacing);
  }

  .contact-form div {
    display: flex;
  }

  .contact-form dt {
    flex-shrink: 0;
    width: 225px;
    padding-top: 1em;
    padding-left: calc(44px + 0.5em);
  }

  .contact-form dt.required {
    padding-left: 0;
  }

  .contact-form dd {
    flex-grow: 1;
  }

  .contact-form dd > p {
    flex-grow: 1;
  }

.contact-confirm dd{
	padding:1em;
background-color:#f2f2f2;
}

  input[type="submit"] {
    margin: 70px auto 0;
    max-width: 452px;
  }

dd.radiobtn{padding-top:15px;}


  /* ------------------------------
    特定商取引(pc)
  ------------------------------ */
    .home-torihiki-inner{
    width: 936px;
    margin-left: auto;
    margin-right: auto;
}
    
table.torihiki {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 15px;
    line-height: 1.75em;
}
table.torihiki th {
    width: 28%;

    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 15px;
    vertical-align: middle;
    text-align: left;
    display: table-cell;
}
table.torihiki td {
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 15px;
    vertical-align: middle;
    text-align: left;
    display: table-cell;
}
}

@media (any-hover: hover) {
  .hover {
    transition: 0.5s;
  }

  .hover:hover {
    opacity: 0.7;
  }

  .pc-nav a {
    position: relative;
    padding: 0.4em 0.2em;
  }

  .pc-nav a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #231815;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
  }

  .pc-nav a:hover::after {
    visibility: visible;
    opacity: 1;
    transition: 0.7s;
  }


/*ぶどうシルエット(PC)*/ 

    .grape_icon01{
    background: url(../img/images/grape01.png)no-repeat center / cover;
    width: 86px;
    height: 96px;
}  
    .grape_icon02{
    background: url(../img/images/grape02.png)no-repeat center / cover;
    width: 72px;
    height: 78px;
    }
    .grape_icon03{
    background: url(../img/images/grape03.png)no-repeat center / cover;
    width: 61px;
    height: 65px;
}  
    .grape_icon04{
    background: url(../img/images/grape04.png)no-repeat center / cover;
    width: 83px;
    height: 90px;
}  

    .grape_icon05{
    background: url(../img/images/grape05.png)no-repeat center / cover;
    width: 72px;
    height: 78px;
}  
     
    .grape_icon06{
    background: url(../img/images/grape06.png)no-repeat center / cover;
    width: 83px;
    height: 89px;
}  
    
    .grape_icon07{
    background: url(../img/images/grape07.png)no-repeat center / cover;
    width: 68px;
    height: 78px;
}  
     
/*pc-nav個別設定*/ 
	li.insta a::after{height: 0px;}
	li.online a::after{background: white;}
    
    
    
/*ぶどうアイコン(PC)*/
    
    .home-top-icon .grape_icon01{
    top: 250px;
    right: 100px;
    position: absolute;}
    
    .home-top-icon .grape_icon02{
    top: 400px;
    left: -150px;
    position: absolute;
}
    
    .home-top-icon .grape_icon03{
    top: 670px;
    right: 250px;
    position: absolute;}
   
    .home-fruits-icon .grape_icon04{
    top: -80px;
    left: 80px;
    position: absolute;}
    
    .home-fruits-icon .grape_icon05{
    top: 0px;
    right: 50px;
    position: absolute;}
    
    .home-about-icon .grape_icon06{
    top: -50px;
    left: 80px;
    position: absolute;}
    
    .home-about-icon .grape_icon07{
    top: 0px;
    right: 80px;
    position: absolute;}
}
