@charset "uft-8";

/* ====================
common
==================== */

:root {
    --primary-green: #656733;
    --primary-lightgreen: #C3CEB2;
    --primary-white: #F8F8F8;
    --primary-black: #262626;
    --primary-padding: 6.4%;
    --primary-paddingB: 10%;
    --primary-paddingPC: 6%;
}

html{
    font-size: 62.5%;
}


body {
    font-family: "Noto Serif JP",
                 serif;
    font-style: normal;
    color: var(--primary-black,#262626);
    background-color: var(--primary-white,#F8F8F8);
    line-height: 1.8;
    letter-spacing: 0.05em;
}

img {
    max-width: 100%;
    height: auto;
}

.section {
    padding: 100px 24px;
}

.topic {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--primary-green,#656733);
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 2.0rem;
    line-height: 1;
    letter-spacing: 0.1em;
    margin: 0 auto;
    overflow:hidden;
}

.subTopic {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.subTopic span{
    display: flex;
    width: fit-content;
    font-family: "Caveat";
    font-size: 1.6rem;
    flex-shrink: 0;
}

.subTopic::before,
.subTopic::after {
    content: '';
    display: inline-block;
    max-width: 120px;
    width: 50%;
    height: 1px;
    background-color: var(--primary-green,#656733);
}

.btn {
    display: block;
    border-radius: 8px;
    margin: 48px auto 0;
    padding: 20px 0 20px;
    max-width: 300px;
    color: var(--primary-white, #F8F8F8);
    font-family: "Shippori Mincho";
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    background-color: var(--primary-green, #656733);
    position: relative;
    transition: 0.4s;
}

.btn::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 30px;
    background-image: url(../images/arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}

.btn:hover {
    opacity: 0.5;
}

/* common pc */
@media screen and (min-width:769px) {
    .section {
        padding: 150px var(--primary-paddingPC,6%);
    }

    .topic {
        font-size: 3.6rem;
        line-height: 1.6;
    }

    .subTopic span {
        font-size: 3.0rem;
        line-height: 1;
    }

    .btn {
        margin-top: 56px;
        padding: 30px 0 30px;
        font-size: 2.0rem;
    }

}

/* pc 769px */

/* ====================
header
==================== */

.header {
    padding: 10px var(--primary-paddingB,10%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__topic img,
.nav__topic img{
    align-items: center;
    align-self: center;
    width: 138px;
    height: 43px;
    min-width: 140px;
}

/* nav initial */

.nav {
    background-color: var(--primary-green, #656733);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: 0.4s;
}

.nav__header {
    padding: 10px var(--primary-paddingB,10%);
    background-color: var(--primary-white,#F8F8F8);
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.nav__list {
    display: flex;
    padding: 48px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.nav__item a {
    text-align: center;
}

.nav__en {
    font-size: 2.4rem;
    font-family: "Lora";
    color: var(--primary-white,#F8F8F8);
    line-height: 1;
    margin: 0 auto;
}

.nav__jp {
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-white,#F8F8F8);
}

.nav__jp::before {
    content: '';
    display: block;
    width: 81px;
    height: 1px;
    background-color: var(--primary-white, #F8F8F8);
}

.nav__jp::after {
    content: '';
    display: block;
    width: 81px;
    height: 1px;
    background-color: var(--primary-white, #F8F8F8);
}

.header__btn {
    position: fixed;
    top: 10px;
    right: 10%;
    z-index: 50;
    border: 1px solid var(--primary-white, #F8F8F8);
}

/* nav active */
.nav.active {
    transform: translateX(0%);
}

/* header pc */
@media screen and (min-width:769px) {
    .header {
        padding: 12px 20px;
        margin: 0 auto;
        max-width: 1280px;
        justify-content: center;
        gap: 8%;
    }

    .header__topic img {
        width: 240px;
        height: auto;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    }

    .nav__list {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2vw;
    }

    .nav__item {
        margin: 0;
        line-height: 1.3;
    }

    .nav__item span {
        color: var(--primary-green,#656733);
        text-align: center;
    }

    .nav__en {
        font-size: 1.7vw;
    }

    .nav__jp {
        margin-top: 5px;
        white-space: nowrap;
        font-size: 0.8vw;
    }

    .nav__jp::before,
    .nav__jp::after,
    .nav__btn,
    .header__btn,
    .nav__topic,
    .nav__header {
        display: none;
    }


}

/* pc 769px */

/* ====================
main visual
==================== */

#mainVisual {
    padding: 0;
}

/* ====================
main topic
==================== */

#tagline {
    padding: 48px 13%;
}

.mainTopic__topic {
    color: var(--primary-green,#656733);
    text-align: center;
    font-family: Caveat;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.1em;
}

.mainTopic__txt {
    margin-top: 17px;
    font-size: 1.8rem;
}

.brPC {
    display: none;
}



/* topic pc */
@media screen and (min-width: 769px) {

    #tagline {
        padding: 150px var(--primary-paddingPC, 6%);
    }

    .mainTopic__topic {
        font-size: 3rem;
    }

    .brPC {
        display: block;
    }

    .mainTopic__txt {
        text-align: center;
        margin-top: 24px;
        font-size: 2.4rem;
    }

    .brSP {
        display: none;
    }
}


/* pc 769px */

/* ====================
reason
==================== */

.reason__contents {
    margin:48px auto 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 400px;
}

.reason__img {
    border-radius: 0px 50px 0px 0px;
}

.number {
    display: none;
}

.reason__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 10px 10px;
}

.reason__txt {
    font-size: 1.6rem;
}

/* reason pc0 */
@media screen and (min-width: 769px) {
    #reason {
        padding: 150px 0;
    }

    .reason__subTopic::before,
    .reason__subTopic::after {
        width: 230px;
        max-width: 100%;
    }

    .reason__contents{
        flex-direction: row;
        max-width: 1440px;
        margin-top: 88px;
    }

    .reason__item {
        padding: 0;
        width: 50%;
    }

    .reason__item h3 {
        max-width: 450px;
    }

    .number {
        display: block;
        font-size: 2.4rem;
        color: var(--primary-lightgreen, #C3CEB2);
        letter-spacing: 0.15em;
        line-height: 1;
    }

    .number span {
        font-size: 4.8rem;
        color: var(--primary-green,#656733);
    }

    .reason01 {
        gap: 40px;
    }

    .reason02 {
        margin-top: 72px;
        gap: 32px;
        flex-direction: row-reverse;
    }

    .reason03 {
        margin-top: 72px;
        gap: 56px;
    }

    .reason02__item {
        width: 53%;
    }

    .reason__img {
        border-radius: 0 100px 0 0;
        max-width: 540px;
        width: 38vw;
        min-height: 230px;
        height: auto;
    }

    .reason02 img {
        border-radius: 100px 0 0 0;
    }
}


/* pc 769px */

/* ====================
traial
==================== */

.section--traial {
    background-image: url(../images/paper-1914903_1280.jpg);
    background-color: rgba(255, 255, 255, 0.7);
    background-blend-mode: lighten;
    background-size: cover;
    height: 100%;
    background-repeat: no-repeat;
}

.traial__topic {
    color: var(--primary-black,#262626);
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

.topic__txt {
    font-size: 1.2rem;
}

.traial__subTopic {
    padding: 0 10px 10px;
    color: var(--primary-green,#656733);
}

.traial__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    max-width: 400px;
    margin: 48px auto 0;
}

.traial__contents {
    overflow: hidden;
    border-radius: 8px;
}

.traial__contents--txt {
    background-color: var(--primary-white, #F8F8F8);
    padding: 32px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.traial__goods {
    font-size: 1.8rem;
    font-family: "Shippori Mincho";
    letter-spacing: 0.1em;
}

.traial__name {
    border: var(--primary-green,#656733) 1px solid;
    margin: 0 auto;
    padding: 4px 20px;
    font-size: 1.6rem;
    font-family: "Shippori Mincho";
    font-weight: 700;
}

.traial__price {
     font-size: 1.2rem;
}

.yen {
    font-size: 2.4rem;
    font-family: "Lora";
}

.yenSign {
    font-size: 1.2rem;
    font-family: "Lora";
}

.traial__producer {
    font-size: 1.6rem;
    letter-spacing: 0em;
}

/* traial pc */
@media screen and (min-width:769px) {
    .traial__subTopic::before,
    .traial__subTopic::after {
        width: 320px;
        max-width: 100%;
    }

    .topic__txt {
        font-size: 1.6rem;
    }

    .traial__container {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        gap: 68px;
        margin-top: 88px;
        max-width: 1200px;

    }

    .traial__contents {
        max-width: 500px;
        width: 42%;
        /* height: 620px; */
        flex-shrink: 1;
        }

    .traial__contents--txt {
        height: 100%;
    }

    .traial__goods {
        font-size: 2.4rem;
    }

    .yen {
        font-size: 3.2rem;
    }

    .yenSign {
        font-size: 1.6rem;
    }

    .tax {
        font-size: 1.6rem;
    }
}


/* pc 769px */

/* ====================
famars
==================== */

.famars__container {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.famars__contents {
    background-color: var(--primary-lightgreen,#C3CEB2);
    border-radius: 8px;
    padding: 16px 24px 40px;
    max-width: 400px;
    margin: 0 auto;
}

.famars__txt {
    margin-top: 16px;
    font-size: 1.6rem;
}

/* famars pc */
@media screen and (min-width:769px) {
    .famars__subTopic::before,
    .famars__subTopic::after {
        width: 310px;
        max-width: 100%;
    }

    .famars__container {
        flex-direction: row;
        align-items: stretch;
        max-width: 1200px;
        margin: 88px auto 0;
    }

    .famars__contents {
        max-width: 100%;
        padding: 40px 48px 110px;
    }

    .famars__txt {
        margin-top: 32px;
    }
}

/* pc 769px */

/* ====================
voice
==================== */

.section--voice {
    background-color: var(--primary-green, #656733);
}

.voice__topic {
    color: var(--primary-white, #F8F8F8);
}

.voice__subTopic {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.voice__subTopic span{
    display: flex;
    width: fit-content;
    font-family: "Caveat";
    font-size: 1.6rem;
    flex-shrink: 0;
}

.voice__subTopic::before,
.voice__subTopic::after {
    content: '';
    display: inline-block;
    max-width: 120px;
    width: 50%;
    height: 1px;
    background-color: var(--primary-white, #F8F8F8);
}

.voice__container {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.voice__contents {
    background-color: var(--primary-white, #F8F8F8);
    border-radius: 8px;
    border: var(--primary-black,#262626) 1x solid;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
}

.voice__consumer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.voice__icon {
    width: 40px;
    height: 40px;
}

.voice__name {
    font-size: 1.6rem;
}

.voice__txt {
    font-size: 1.6rem;
}

/* voice pc */
@media screen and (min-width:769px) {
    .voice__subTopic::before,
    .voice__subTopic::after {
        width: 210px;
        max-width: 100%;
    }

    .voice__subTopic span{
        font-size: 3.0rem;
        line-height: 1;
    }

    .voice__container {
        margin: 88px auto;
        flex-direction: row;
        align-items: stretch;
        gap: 2%;
        max-width: 1200px;
    }

    .voice__contents {
        max-width: 380px;
        width: 32%;
        max-height: 600px;
    }

}

/* pc 769px */

/* ====================
recipe
==================== */
.section--recipe {
    padding: 100px 0 100px;
}

.recipe__contents {
    margin-top: 48px;
}

.modal {
    display: none;
}

.recipe__img {
    width: 260px;
    max-width: 400px;
    margin: 0 10px;
    cursor: pointer;
}

.slick-num {
    color: var(--primary-green, #656733);
    font-size: 1.6rem;
    font-family: "Noto Serif JP";
    font-weight: 700;
    padding: 10px;
    margin-top: 10px;
    text-align: center;
    position: relative;
}

.slider {
    overflow: visible;
}

.all-count {
    font-size: 1.2rem;
}

/* arrow */

.arrow__box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* margin: 20px 0 0; */
    position: relative;
}

.prev-arrow,
.next-arrow {
    display: block;
    width: 15px;
    height: 20px;
    background-image: url(../images/Vector_right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: all .3s ease;
    cursor: pointer;
    position:relative;
}

.prev-arrow {
    transform: rotate(180deg);
    position: absolute;
    top:-35px;
    left: 37%;
}


.next-arrow {
    position: absolute;
    top: -35px;
    right: 37%;
}

/* modal */

.modal {
    height: 100vh;
}

.modal__contents {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    height: 80%;
    overflow-y: scroll;
}



.modal__contents p {
    text-align: center;
    font-size: 2.0rem;
    font-family: "Shippori Mincho";
    color: var(--primary-white, #F8F8F8);
    white-space: nowrap;

}

.cooking {
    display: flex;
    justify-content: center;
    gap: 30%;
    margin-top: 15px;
}

.modal__img {
    min-width: 300px;
    width: 300px;
    min-height: 300px;
    height: 300px;
    margin: 0 auto;
}

.cooking li {
    font-size: 1.6rem;
    font-family: "Shippori Mincho";
    color: var(--primary-white, #F8F8F8);
    white-space: nowrap;
    line-height: 2;
}

.ingredient,
.quantity {
    margin-bottom: 10px;
}



.modal__btn {
    display: block;
    border-radius: 8px;
    margin: 10px auto 0;
    padding: 10px 60px 10px;
    max-width: 300px;
    color: var(--primary-white, #F8F8F8);
    font-family: "Shippori Mincho";
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    background-color: var(--primary-green, #656733);
    transition: 0.4s;
}

.modal.open {
    display: block;
}

.modal__bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #262626;
    opacity: 0.99;
    z-index: 200;
    top: 0;
    left: 0;
    right: 0;
}

.modal__bg.open {
    display: block;
}

.modalPc__btn {
    display: none;
}

/* pc recipe */
@media screen and (min-width: 769px) {
    .recipe__subTopic::before,
    .recipe__subTopic::after {
        width: 220px;
        max-width: 100%;
    }

    .section--recipe {
        padding: 150px 80px;
    }

    .recipe__contents {
        margin: 88px auto 0;
    }

    .pc__modal {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        align-content: center;
        gap: 10px;
    }

    .recipe__img {
        max-width: 260px;
        margin: 0;
    }



    /* modal */
    .modal__contents{
        height: 90vh;
        overflow-x: visible;
    }

    .modalPc__btn {
        display: block;
        border-radius: 8px;
        padding: 10px 30px 10px;
        max-width: 300px;
        color: var(--primary-white, #F8F8F8);
        font-family: "Shippori Mincho";
        text-align: center;
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1;
        background-color: var(--primary-green, #656733);
        transition: 0.4s;
        position: fixed;
        z-index: 400;
        top: 24px;
        right: 10%;
        /* transform: translate(-50%,-50%); */
    }

    .modal__btn {
        display: none;
    }



    .modal__img {
        min-width: 300px;
        width: 400px;
        min-height: 300px;
        height: 400px;
    }

    .modal__contents p {
        font-size: 2.4rem;
    }
}
/* pc 769px */

/* ====================
q&a
==================== */

.accordion {
font-size: 1.6rem;
margin-top: 48px;
}

.accordion__contents {
    display: none;
    padding: 16px 24px;
    margin-top: 5px;
    background-color: #fff;
    border: var(--primary-green, #656733) 1px solid;
    border-radius: 8px;
}

.accordion__header {
    background-color: #fff;
    border: var(--primary-green, #656733) 1px solid;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion__header::after {
    content: '';
    display: block;
    min-width: 40px;
    min-height: 40px;
    background-image: url(../images/qa_btn.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 20px;
    cursor: pointer;
}

.accordion__header.open::after {
    transform: rotate(180deg);
}

/* q&a pc  */
@media screen and (min-width: 769px) {
    .section--question {
        padding: 150px 80px;
    }

    .accordion {
        margin: 56px auto 0;
        max-width: 1200px;
    }

    .accordion__header {
        font-size: 2.4rem;
        padding: 32px 64px;
    }
}
/* pc 769px */

/* ====================
footer
==================== */

.footer__group {
    padding: 32px 48px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__topic {
    width: 133px;
    margin: 0 auto;
}

.footer__txt {
    font-size: 1.4rem;
    letter-spacing: 0em;
}

.copy {
    text-align: center;
    margin-top: 10px;
}

/* footer pc */
@media screen and (min-width:769px) {
    .footer__group {
        padding: 32px 27%;
        flex-direction: row;
        justify-content: space-between;
    }

    .footer__topic {
        margin: 0;
        width: 235px;
    }

    .copy {
        text-align: end;
    }
}
/* pc 769px */