@charset "UTF-8";
/* ==========
common
===========*/
:root {
    --primary-white:#FCFCF9;
    --primary-brown:#62554E;
    --primary-green:#214F4B;
    --primary-red:#C30D23;
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 1.6rem;
    font-style: normal;
    color: var(--primary-brown, #62554E);
    line-height: 2;
    letter-spacing: 0.1em;
    background-color: var(--primary-white);
}
img {
    width: 100%;
    height: auto;
}
.container {
    overflow: hidden;
}
.section__topic {
    text-align: center;
    font-family: "Julius Sans One", Arial;
    font-size: 2.4rem;
    line-height: 1; /* 24px */
    letter-spacing: 0.03em;
}
.section__txt {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.5; /* 42px */
    letter-spacing: 0.1em;
    margin-top: 5px;
}
.cta__btn {
    max-width: 372px;
}
.cta__btn:hover {
    opacity: 0.7;
}
.red {
    color: var(--primary-red);
    font-size: 3.6rem;
    font-weight: 600;
}
.green {
    color: var(--primary-green);
    font-size: 3.6rem;
    font-weight: 600;
}
/* common sp */
@media screen and (max-width: 768px) {
    .section__topic {
        font-size: 2.0rem;
    }
    .section__txt {
        font-size: 2.0rem;
        margin-top: 10px;
    }
    .red,
    .green {
        color: var(--primary-red);
        font-size: 2.4rem;
        font-weight: 600;
    }
}
/* =============
main
============== */
.hero {
    width: 100%;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/mainimage_pc.jpg) center/cover no-repeat;
}
.center--content {
    display: flex;
    text-align: center;
}
.mainTitle {
    text-align: center;
    padding: 110px 140px 120px 140px;
    background: url(../img/mainFlame.png) center/contain no-repeat;
}
.logo {
    width: 66%; 
    /* 239/(602-pad(120+120)) */
    aspect-ratio: 239/70;
    margin: 0 auto;
}
.mainTitle__name {
    font-size: 4.8rem;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.1em;
    margin-top: 20px;
}
.mainTitle__txt {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.1em;
    margin-top: 10px;
}
.mainSubTitle {
    padding: 80px 9.7%;
    justify-content: center;
    display: flex;
    align-items: center;
    background-image: url(../img/bg_silk.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.mainSubTitle__txt {
    text-align: center;
    margin-right: 30px;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 200%; /* 48px */
    letter-spacing: 0.1em;
}
.spBr {
    display: none;
}
/* 1024px */
@media screen and (max-width: 1024px) {
    .logo {
        width: 54%; 
        /* 125/(228+pad(65*2)) */
    }   
    .mainTitle__name {
        font-size: 2.8rem;
        margin-top: 5px;
    }
    .mainTitle__txt {
        font-size: 1.6rem;
        margin-top: 5px;
    } 
    .mainTitle {
        padding: 60px 65px;
    }
}
/* 768px  */
@media screen and (max-width: 768px) {
    .hero {
        background: url(../img/mainimage_500px.png) center/cover no-repeat;
    }
    .mainSubTitle {
        padding: 60px 15px;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-image: url(../img/bg_silk.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .mainSubTitle__txt {
        margin-right: 0;
        margin-bottom: 40px;
        font-size: 2.0rem;
        line-height: 1.5;
    }
}
/* 500px */
@media screen and (max-width: 500px) {
    .hero {
        height: 600px;
        background: url(../img/mainimage_sp.jpg) center/cover no-repeat;
    }
    .spBr {
        display: block;
    }
}
/* 320px */
@media screen and (max-width: 320px) {
    .mainTitle__name {
        font-size: 2.6rem;
        margin-top: 5px;
    }
    .mainTitle__txt {
        font-size: 1.4rem;
        margin-top: 5px;
    } 
}
/* ABOUT */
.about {
    position: relative;
    background-image: url(../img/aboutImg.webp);
    background-size: cover;
    height: 400px;
    object-fit: cover;
    background-position: center;
    overflow: visible;
    display: block;
}
.about__txt {
    padding: 40px 30px;
    background-color: rgba(255, 255, 255, 0.90);
    position: absolute;
    left: 5.5%;
    top: 80px;
    z-index: 1000;
}
.about__detail {
    text-align: center;
    line-height: 3; /* 48px */
    margin-top: 40px;
}
.slider {
    overflow: hidden;
    width: 100%;
}
.slider-track {
    display: flex;
    animation: scroll 40s linear infinite;
    animation-play-state: running; 
}
.slider:hover .slider-track {
    animation-play-state: paused;
}
.slider-track img {
    width: 25%;
    aspect-ratio: 3/2;
    object-fit: cover;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* モバイル対応：2枚表示 */
  @media screen and (max-width: 768px) {
    .slider-track img {
      width: 50%;
    }
}
/* 768px */
@media screen and (max-width: 768px) {
    .about {
        text-align: center;
        background-image: url(../img/about_sp.jpg);
        background-position: top;
        height: 850px;
    }
    .about__txt {
        padding: 40px 10px;
        position: absolute;
        top: auto;
        bottom: 0;
        left:50%;
        transform: translateX(-50%);
        width: 96%;
        height: auto;
        z-index: 1000;
    }
}

/* payflow */
.about__payflow {
    padding: 80px 9.7% 120px;
}
.payflow {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.1em;
}
.payflow__txt {
    margin-top: 10px;
}
.payflow__content {
    margin: 40px auto 0;
    max-width: 1160px;
    display: flex;
    align-items: stretch;
    gap: 80px;
    position: relative;
}
.payflow__step {
    padding: 20px 0;
    width: 27.6%;
    background-color: #ffffff;
    box-shadow: 4px 4px 4px 0 rgba(118,112,109,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    flex: 1;
    position: relative;
}
.payflow__step:not(:last-child)::after {
    content: " "; 
    background-image: url(../img/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: -52px; 
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}
.step {
    display: flex;
    align-items: center;
}
.step__title {
    background-color: var(--primary-green);
    color: #FFF;
    text-align: center;
    font-family: "EB Garamond";
    font-weight: 500;
    line-height: 1.3; /* 20.8px */
    letter-spacing: 0.1em;
    padding: 5px 10px;
}
.step__description {
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1.3; /* 26px */
    letter-spacing: 0.1em;
    margin-left: 10px;
}
.payflow__step img {
    aspect-ratio: 320/200;
    object-fit: cover;
}
.step__txt {
    text-align: center;
}
/* 768px */
@media screen and (max-width: 768px) {
    .about__payflow {
        padding: 60px 4%;
    } 
    .payflow {
        font-size: 2.0rem;
        font-weight: 600;
        line-height: 1.5; /* 30px */
    }
    .payflow__content {
        margin: 30px auto 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 80px;
    }
    .payflow__step {
        padding: 20px 0;
        width: 94%;
        background-color: #ffffff;
        box-shadow: 4px 4px 4px 0 rgba(118,112,109,0.1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
        flex: 1;
        position: relative;
    }
    .payflow__step:not(:last-child)::after {
        content: " "; 
        background-image: url(../img/arrow.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        top: calc(100% + 40px); /* 矢印をstepボックスの下に配置 */
        left: 50%;               /* 横中央 */
        transform: translate(-50%, -50%) rotate(90deg);
        width: 24px;
        height: 24px;
    }
}
/* dish */
.dish {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.dish__title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}
.dish__svg {
    width: 40px;
    height: 36px;
    display: block;
}
.dish__svg--right {
    transform: rotate(-180deg);
}
/* 768px */
@media screen and (max-width: 768px) {
    .dish {
        padding: 0 4%;
        gap: 5px;
    }
    .dish__title {
        font-size: 2.0rem;
        font-weight: 600;
        line-height: 1.5; /* 30px */
    }
}
/* trial */
.section--trial {
    background-image: linear-gradient(rgba(252, 252, 249, 0.20), rgba(252, 252, 249, 0.20)), url(../img/bg_dairiseki.jpg);
    background-size: cover;
    padding: 80px 9.7%;
    text-align: center;
}
.trial__txt {
    font-size: 4.0rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.1em;
    margin-top: 40px;
    position: relative;
    display: inline-block;
    padding: 0 24px;
}
.trial__txt::before,
.trial__txt::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background: var(--primary-brown);
    border-radius: 3px;
    /* 端が丸くなる */
}
.trial__txt::before {
    left: 0;
    top: 0;
    transform: rotate(-15deg);
}
.trial__txt::after {
    right: 0;
    top: 0;
    transform: rotate(15deg);
}

.trial {
    display: flex;
    max-width: 1160px;
    gap: 100px;
    margin: 60px auto 0;
}
.trial__item {
    background-color: var(--primary-white);
    padding: 10px 10px 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
    box-shadow: 4px 4px 4px 0 rgba(118,112,109,0.1);
}
.trial__img {
    aspect-ratio: 4/3;
}
.trial__titleText {
    display: inline-block;
    background-color: var(--primary-green);
    color: #FFF;
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.5;
    padding: 5px 10px;
}
.trial__titleText--red {
    background-color: var(--primary-red);
}  
.trial__detailText {
    display: inline-block;
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding: 5px;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}
.trial__balloon--green {
    position: absolute;
    top: -40px;  /* 斜め上に配置 */
    left: -40px;
    width: 100px;
    height: auto;
}
.trial__balloon--red {
    position: absolute;
    top: -40px;  /* 斜め上に配置 */
    right: -40px;
    width: 100px;
    height: auto;
}
  .balloon__img {
    width: 100%;
    height: auto;
    display: block;
}
.balloon__txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFF;
    text-align: center;
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.3; /* 26px */
    letter-spacing: 0.1em;
    width: 100%;
    padding: 10px;
}
/* 768px */
@media screen and (max-width: 768px) {
    .section--trial {
        padding: 60px 4%;
    }
    .trial__txt {
        font-size: 3.0rem;
        padding: 0 10px;
    }
    .trial {
        flex-direction: column;
        gap: 60px;
        margin-bottom: 30px;
    }
    .balloon__txt {
        font-size: 1.6rem;
        font-weight: 500;
    }
    .trial__item {
        margin-bottom: 0;
    }
    .trial__balloon--green {
        position: absolute;
        top: -30px;  /* 斜め上に配置 */
        left: -10px;
        width: 80px;
        height: auto;
    }
    .trial__balloon--red {
        position: absolute;
        top: -30px;  /* 斜め上に配置 */
        right: -10px;
        width: 80px;
        height: auto;
    }
}
/* point */
.section--point {
    padding: 80px 9.7%;
    text-align: center;
}
.section__txt--point {
    display: inline-block;
    margin: 0 auto;
    max-width: 90%;
}
.point {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1160px;
    margin: 40px auto 0;
}
.point__item {
    display:flex;
    align-items: center;
    gap:40px;
}
.point__item:nth-child(2) {
    flex-direction: row-reverse;
}
.point__img {
    width: 40.5%;
    aspect-ratio: 471/314;
    position: relative;
}
.point__img img {
    width: 100%;
    height: auto;
    display: block;
  }  
.point__decoration {
    color: #F1EAE7;
    font-family: "Bilbo Swash Caps";
    font-size: 9.6rem;
    letter-spacing: 0.1em;
    line-height: 1.3; /* 124.8px */
    display: inline-block;
    transform: rotate(-8.25deg);
    position: absolute;
    left: -2%;
    bottom: -10%;
}
.point__content {
    width: 38%;
    padding: 30px 20px;
    position: relative;
    border-top: 1px solid #D9D9D9;
}
.point__number {
    font-family: "Julius Sans One";
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    background-color: #FCFCF9;
    padding: 0 10px;
    position: absolute;
    top:-15px;
    left: 50%;
    transform: translateX(-50%);
}
.point__title {
    text-align: center;
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1.3; /* 26px */
    letter-spacing: 0.1em;
}
.point__txt {
    margin-top: 20px;
}
.point__catchcopy {
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
    padding: 0 10px;
    border: 1px solid;
    border-image:linear-gradient(to right, #DCAA5A, #FFE68C, #DCAA5A) 1;
}
.tomato {
    position: absolute;
    width: 76%;
    max-width: 312px;
    top: -50%;
    right: -100%;
}
.papurica {
    position: absolute;
    width: 70.8%;
    max-width: 291px;
    top: -10%;
    left: -100%;
}
.sayaendo {
    position: absolute;
    width: 102.6%;
    max-width: 422px;
    top: 20%;
    right: -110%;
}
.spPosition {
    display: none;
}
/* 768px */
@media screen and (max-width: 768px) {
    .section--point {
        padding: 60px 4%;
    }
    .section__txt--point {
        max-width: 80%;
    }
    .point {
        gap: 30px;
    }
    .point__item,
    .point__item:nth-child(2)  {
        flex-direction: column;
        gap: 30px;
    }
    .point__img {
        width: 100%;
        position: relative;
    }
    .point__content {
        width: 100%;
        padding: 30px 10px 25px;
    }
    .point__catchcopy {
        display: block;
        font-size: 1.6rem;
        line-height: 2.0; /* 32px */
        letter-spacing: 0.05em;
        padding: 0;
    }
    .spPosition {
        display: block;
    }
    .tomato {
        position:absolute;
        width: 35%;
        max-width: 160px;
        top:-30%;
        right: -15%;
    }
    .papurica {
        width: 35%;
        max-width: 190px;
        top: -10%;
        left: -22%;
    }
    .sayaendo {
        top: auto;
        width: 40%;
        max-width: 180px;
        bottom: -12%;
        right: -13%;
    }
    .pcPosition {
        display: none;
    }

}
/* organic */
.section--organic {
    background-image: url(../img/organic.jpg);
    background-position: center;
    background-size: cover;
    padding: 80px 9.7%;
    text-align: center;
}
.organic {
    background-color: rgba(255, 255, 255, 0.90);
    padding: 40px 50px;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
}
.organic__txt {
    margin-top: 40px;
}
.green__txt {
    color: var(--primary-green);
    font-weight: 700;
}
@media screen and (max-width: 768px) {
    .section--organic {
        padding: 60px 4%;
    }
    .organic {
        padding: 40px 15px;
    }
    .organic__txt {
        margin-top: 30px;
        text-align: start;
        font-weight: 400;
    }
}
/* farmer */
.section--farmer {
    padding: 80px 9.7% 120px;
    position:relative;
}
.farmer__aspara {
    width: 15%;
    max-width: 300px;
    height: auto;
    position: absolute;
    right: 0;
    bottom: -8%;
}
.farmer__onion {
    width: 21.6%;
    height: auto;
    position: absolute;
    left: -5%;
    top: 10px;
}
.farmer {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 100px;
    margin-top: 40px;
}
.farmer__item {
    width: 32.1%;
    max-width: 372px;
}
.farmer__item img {
    aspect-ratio: 372/220;
    object-fit: cover;
}
.farmer__info {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.5; /* 30px */
    margin-top: 16px;
}
.farmer__txt {
    margin-top: 8px;
}
/* 768ｐｘ */
@media screen and (max-width: 768px) {
    .section--farmer {
        padding: 60px 4% 90px;
    }
    .farmer {
        flex-direction: column;
        gap:40px;
        align-items: center;
    }
    .farmer__item {
        width: 100%;
    }
    .farmer__aspara {
        width: 25%;
        max-width: 100px;
        bottom: -3%;
    }
    .farmer__onion {
        width: 40%;
        max-width: 180px;
        top: -3%;
    }
}
/* voice */
.section--voice {
    padding: 0 4.2%;
}
.voice {
    font-family: "Noto Sans JP";
    line-height: 1.87; /* 187.5% */
}
.voice__item {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid var(--primary-brown);
    width: 100%;
    max-width: 386px;
}
.insta__name {
    padding: 8px 18px;
}
.insta__content {
    padding: 16px 18px 20px;
}
.insta__img {
    aspect-ratio: 373/240;
    object-fit: cover;
}
.insta__svg {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}
.insta__svg img {
    width: 20px;
    height: auto;
}
.insta__txt {
    margin-top: 10px;
} 
  /* 矢印ボタンカスタム（必要なら） */
.swiper-container-wrapper {
    position: relative;
    padding: 0 70px; /* ボタンを外に置く余白 */
    max-width: 1300px;
    margin: 40px auto 0;
  
}
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 10;
}
.swiper-button-prev img,
.swiper-button-next img {
  width: 40px;
  height: auto;
}
.swiper-button-next img {
    transform: rotate(180deg);
  }
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}
.swiper-button-prev {
    left: 50%;
}
.swiper-pagination {
    text-align: center;
    position: static !important; /* 外に置く */
  }
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 1 !important;             /* 透過を無効化 */
    background-color: #ccc !important;
    margin: 0 4px;
    transition: background-color 0.3s;
}
  
.swiper-pagination-bullet.is-active {
    background-color: #214F4B !important;
}  
/* 768px */
@media screen and (max-width: 768px) {
    .section--voice {
        padding: 0 1.3%;
    }
    .swiper-container-wrapper {
        padding: 0 2.8%;
    }
    .voice__item {
        max-width: 100%;
    }
}
/* question */
.section--question {
    padding: 120px 9.7% 80px;
}
.faq {
    margin-top: 40px;
}
.faq__item {
    width: 83%;
    max-width: 965px;
    padding: 40px 0px;
    margin: 0 auto;
    box-sizing: border-box;
    border-bottom: var(--primary-brown) 1px solid;
    position:relative;
}
.faq__item:first-of-type {
    border-top: var(--primary-brown) 1px solid;
}
.faq__dots::before,
.faq__dots::after {
  content: '';
  position: absolute;
  top: -5px;
  width: 10px;
  height: 10px;
  background-color: var(--primary-brown);
  transform: rotate(-45deg);
}
.faq__dots::before {
  left: 0;
}
.faq__dots::after {
  right: 0;
}
.faq__item::before {
    content: '';
    position: absolute;
    bottom: -5px;
    width: 10px;
    height: 10px;
    background-color: var(--primary-brown);
    transform: rotate(-45deg);
    left: 0;
}

.faq__item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    width: 10px;
    height: 10px;
    background-color: var(--primary-brown);
    transform: rotate(-45deg);
    right: 0;
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    cursor: pointer;
}
.faq__answer {
    margin-top: 40px;
}
.faq__en {
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 4.8rem;
    line-height: 1.3;
    width: 125px;
    max-width: 125px;
}
.faq__question__content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap:20px;
}
.faq__title {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.5; /* 36px */
    width: 100%;
    letter-spacing: 0.05em;
}
.faq__btn {
    width: 23px;
    height: auto;
}
.faq__answer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq__answer--detail {
    margin-top: 10px;
    width: calc(100% - 125px);
    margin-left: auto;
}
/* 768px */
@media screen and (max-width: 768px) {
    .section--question {
        padding: 90px 4% 60px;
    }
    .faq__item {
        width: 100%;
    }
    .faq__en {
        font-size: 3.2rem;
        width: 30px;
        max-width: 30px;
    }
    .faq__title {
        font-size: 2.0rem;
    }
    .faq__answer--detail {
        width: calc(100% - 50px);
    }
}
/* footer */
.footer {
    margin: 60px auto 80px;
    text-align: center;
    position: relative;
}
.footer img {
    width: 239px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.footer small {
    font-size: 1.2;
    line-height: 1.3;
    margin-top: 10px;
}
.scroll__btn {
    text-align: center;
    background-color: var(--primary-green);
    color: #FFF;
    padding: 34px 28px;
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1.6; /* 32px */
    letter-spacing: 0.05em;
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    right:7%;
    bottom: 0;
}