@charset "utf-8";

/* ========================
common
=========================== */
:root {
    --primary-deepGray: #212121;
    --primary-deepGrayR: 33, 33, 33;
    --primary-ivoryWhite: #FAF7F0;
    --primary-ivoryWhiteR: 250, 247, 240;
    --primary-darkGreen: #2E7D32;
    --primary-darkGreenR: 46, 125, 50;
    --primary-darkGreenH: #276529;
    --primary-orange: #E97451;
    --primary-lightgreen: #A5D6A7;
    --primary-lightGray: #D9D9D9;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        'Noto Sans JP',
        Arial,
        sans-serif;
    color: var(--primary-deepGray);
    background-color: var(--primary-ivoryWhite);
}

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

.logo {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}

.section {
    padding: 32px 16px;
    text-align: center;
    scroll-margin-top: 59px;
}

.section__topic {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.section__background-label {
    position: absolute;
    top: 0;
    font-family: "Noto Serif JP";
    font-size: 4.8rem;
    font-weight: 700;
    color: rgba(var(--primary-darkGreenR), 0.1);
    letter-spacing: 0.2rem;
    z-index: 1;
    white-space: nowrap;
}

.section__title {
    position: relative;
    margin-top: 22px;
    font-family: "Noto Serif JP";
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    z-index: 2;
}

.section__area {
    text-align: center;
    margin-top: 24px;
}

.section__txt {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 2.1;
    text-align: left;
}

.txt__color {
    color: var(--primary-darkGreen);
}

.slider__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-darkGreen);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.slider__btn:hover {
    background-color: var(--primary-darkGreenH);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.arrow__left,
.arrow__right {
    width: auto;
    height: 16px;
}

/* common pc */
@media screen and (min-width:769px) {
    html {
        scroll-behavior: smooth;
    }

    .logo {
        width: 180px;
        height: auto;
        flex-shrink: 0;
    }

    .section {
        padding: 48px 80px;
        text-align: center;
        scroll-margin-top: 84.5px;
    }

    .section__background-label {
        font-size: 9rem;
    }

    .section__title {
        font-size: 4rem;
        margin-top: 47px;
    }

    .section__area {
        margin-top: 40px;
    }

    .section__title-break {
        display: none;
    }

    .section__txt {
        font-size: 1.6rem;
    }

    .slider__btn {
        width: 44px;
        height: 44px;
    }

    .arrow__left,
    .arrow__right {
        width: auto;
        height: 20px;
    }
}

/*=======================
header
=======================*/
.main__visual .mainImg__pc {
    display: none;
}

.main__visual {
    position: relative;
    overflow: hidden;
}

.mainImg__sp {
    width: 100%;
}

.main__header {
    position: absolute;
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background-color: var(--primary-ivoryWhite);
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.hamburger {
    width: 28px;
    height: 22px;
    position: relative;
    z-index: 100;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-deepGray);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9.5px;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(45deg);
}

.btn__main-trial {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 358px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px 12px 12px;
    background-color: var(--primary-darkGreen);
    border-radius: 300px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.badge__limited {
    width: 40px;
    height: 40px;
    background-color: var(--primary-orange);
    color: var(--primary-ivoryWhite);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.trial__txt {
    color: var(--primary-ivoryWhite);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
}

.btn__main-trial:hover {
    transform: translateX(-50%) translateY(-2px);
    background-color: var(--primary-darkGreenH);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-ivoryWhite);
    z-index: 100;
    transition: right 0.3s ease;
    padding: 119px 0 0 16px;
}

.nav.active {
    right: 0;
}

.menu__list {
    display: none;
}

.nav__item {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-left: 20px;
    color: var(--primary-deepGray);
    font-size: 1.6rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav__item:first-of-type {
    margin-top: 0;
}

.nav__item:last-of-type {
    margin-left: 0px;
}

.nav__item:hover {
    color: var(--primary-darkGreen);
}

.btn__nav-trial {
    display: inline-block;
    padding: 10px 20px;
    color: var(--primary-ivoryWhite);
    background-color: var(--primary-darkGreen);
    border-radius: 300px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn__nav-trial:hover {
    background-color: var(--primary-darkGreenH);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

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

/* header pc */
@media screen and (min-width:769px) {
    .main__visual .mainImg__pc {
        display: block;
        width: 100%;
    }

    .mainImg__sp {
        display: none;
    }

    .main__header {
        top: 48px;
        left: 80px;
        right: 80px;
        padding: 16px 32px;
        border-radius: 24px;
    }

    .hamburger {
        display: none;
    }

    .menu__list {
        display: block;
        display: flex;
    }

    .menu__item {
        display: flex;
        align-items: center;
        margin-left: 32px;
        color: var(--primary-deepGray);
        font-size: 1.6rem;
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .menu__item:first-of-type {
        margin-left: 0;
    }

    .menu__item:hover {
        color: var(--primary-darkGreen);
    }

    .btn__menu-trial {
        display: inline-block;
        padding: 10px 20px;
        color: var(--primary-ivoryWhite);
        background-color: var(--primary-darkGreen);
        border-radius: 300px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .btn__menu-trial:hover {
        background-color: var(--primary-darkGreenH);
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .btn__main-trial {
        bottom: 48px;
        left: 80px;
        right: auto;
        transform: none;
        max-width: 420px;
        padding: 16px 32px 16px 16px;
    }

    .btn__main-trial:hover {
        transform: translateY(-2px);
    }

    .badge__limited {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

    .trial__txt {
        font-size: 2rem;
    }
}

/*=======================
reason
=======================*/
.reason {
    max-width: 1280px;
    margin: 0 auto;
}

.reason__item {
    margin-top: 24px;
}

.reason__img {
    width: 100%;
    border-radius: 20px;
}

.reason__content {
    margin-top: 16px;
    display: inline-block;
}

.reason__num {
    color: var(--primary-deepGray);
    font-family: "Noto Serif JP";
    font-size: 2.4rem;
    font-weight: 700;
}

.reason__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 8px;
}

.reason__txt {
    font-size: 1.4rem;
    line-height: 210%;
    text-align: left;
    margin-top: 12px;
}

@media screen and (min-width:769px) {
    .reason__item {
        display: flex;
        margin-top: 40px;
    }

    .reason__img {
        width: 509px;
        height: 333px;
        border-radius: 24px;
    }

    .reason__content {
        margin-top: 0;
        margin-left: 50px;
        text-align: left;
    }

    .reason__num {
        font-size: 4rem;
    }

    .reason__title {
        font-size: 2.8rem;
    }

    .reason__txt {
        font-size: 1.6rem;
        margin-top: 20px;
    }
}

/*=======================
trial
=======================*/
.trial__item {
    margin-top: 24px;
}

.trial__img {
    width: 100%;
    border-radius: 20px;
}

.trial__content {
    margin-top: 16px;
    text-align: center;
    display: inline-block;
}

.trial__title {
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
}

.trial__place {
    display: flex;
    align-items: center;
    margin-top: 6px;
}

.trial__town {
    font-size: 1.4rem;
}

.trial__shop {
    font-size: 1.4rem;
    font-weight: 700;
    margin-left: 14px;
}

.trial__price {
    display: flex;
    align-items: end;
    margin-top: 6px;
}

.trial__yen {
    font-size: 2.2rem;
}

.trial__tax {
    font-size: 1.4rem;
}

.btn__trial {
    max-width: 358px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px 12px 12px;
    margin: 16px auto 0;
    background-color: var(--primary-darkGreen);
    border-radius: 300px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn__trial:hover {
    background-color: var(--primary-darkGreenH);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width:769px) {
    .trial__item {
        text-align: center;
    }

    .trial__list {
        display: flex;
        justify-content: center;
        margin: 40px auto 0;
        gap: 50px;
        max-width: 1280px;
    }

    .trial__img {
        border-radius: 24px;
    }

    .trial__title {
        font-size: 2.4rem;
    }

    .trial__place {
        margin-top: 12px;
    }

    .trial__town {
        font-size: 1.6rem;
    }

    .trial__shop {
        font-size: 1.6rem;
        margin-left: 16px;
    }

    .trial__price {
        display: flex;
        align-items: end;
        margin-top: 12px;
    }

    .trial__yen {
        font-size: 2.6rem;
    }

    .trial__tax {
        font-size: 1.6rem;
    }

    .btn__trial {
        max-width: 420px;
        padding: 16px 32px 16px 16px;
        margin-top: 24px;
    }
}

/*=======================
moneybackguarantee
=======================*/
.section__title-mbg {
    position: relative;
    margin-top: 54px;
    z-index: 2;
}

.section__title-sub {
    font-family: "Noto Serif JP";
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;

}

.section__title-main {
    font-family: "Noto Serif JP";
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-top: 8px;
}

.moneybackguarantee__area {
    margin-top: 20px;
}

.moneybackguarantee__img {
    width: 100%;
    border-radius: 32px;
}

.moneybackguarantee__txt {
    font-size: 1.4rem;
    line-height: 210%;
    text-align: left;
    margin-top: 24px;
}

@media screen and (min-width:769px) {
    .section__title-mbg {
        margin-top: 115px;
    }

    .section__title-sub {
        font-size: 24px;
    }

    .section__title-main {
        font-size: 40px;
    }
}

/*=======================
farmers
=======================*/
.farmers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.farmers__list {
    flex: 1;
    align-items: stretch;
    margin-top: 24px;
    overflow: hidden;
}

.farmers__list .slick-track {
    display: flex;
}

.farmers__item {
    flex: 1;
    border-radius: 20px;
    background: var(--primary-ivoryWhite);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    margin: 0 8px;
}

.farmers__img {
    width: 100%;
    height: auto;
    border-radius: 20px 20px 0 0;
}

.farmers__content {
    text-align: left;
    padding: 16px;
}

.farmers__title {
    font-size: 1.6rem;
    font-weight: 700;
}

.farmers__place {
    font-size: 1.4rem;
    margin-top: 6px;
}

.farmers__name {
    font-size: 1.4rem;
    margin-top: 4px;
}

.farmers__comment {
    font-size: 1.4rem;
    margin-top: 12px;
}

@media screen and (min-width:769px) {
    .farmers__list {
        margin-top: 40px;
        gap: 24px;
        max-width: 1173px;
    }

    .farmers__item {
        border-radius: 24px;
        margin-left: 24px;
    }

    .farmers__item:first-of-type {
        margin-left: 0;
    }

    .farmers__img {
        border-radius: 24px 24px 0 0;
    }

    .farmers__content {
        text-align: left;
        padding: 24px;
    }

    .farmers__title {
        font-size: 2.4rem;
        font-weight: 700;
    }

    .farmers__place {
        font-size: 1.6rem;
        margin-top: 8px;
    }

    .farmers__name {
        font-size: 1.6rem;
        margin-top: 6px;
    }

    .farmers__item:nth-of-type(2) {
        display: block;
    }

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

/*=======================
voice
=======================*/
.voice {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.voice__list {
    flex: 1;
    align-items: stretch;
    margin-top: 24px;
    overflow: hidden;
}

.voice__list .slick-track {
    display: flex;
}

.voice__item {
    flex: 1;
    border-radius: 20px;
    background: var(--primary-ivoryWhite);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    margin: 0 8px;
}

.voice__img {
    width: 100%;
    height: auto;
    border-radius: 20px 20px 0 0;
}

.voice__content {
    text-align: left;
    padding: 16px;
}

.voice__title {
    font-size: 1.6rem;
    font-weight: 700;
}

.voice__name {
    font-size: 1.4rem;
    margin-top: 6px;
}

.voice__comment {
    font-size: 1.4rem;
    margin-top: 12px;
}

@media screen and (min-width:769px) {
    .voice__list {
        margin-top: 40px;
        gap: 24px;
        max-width: 1146px;
    }

    .voice__item {
        border-radius: 24px;
    }

    .voice__img {
        border-radius: 24px 24px 0 0;
    }

    .voice__content {
        padding: 24px;
    }

    .voice__title {
        font-size: 2.4rem;
    }

    .voice__name {
        font-size: 1.6rem;
        margin-top: 8px;
    }

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

    .voice__item:nth-of-type(2),
    .voice__item:nth-of-type(3) {
        display: block;
    }
}

/*=======================
faq
=======================*/
.faq {
    margin: 24px auto 0;
}

.faq__item {
    margin-top: 24px;
}

.faq__question {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 16px 71px 16px 60px;
    border-radius: 20px;
    transition: border-radius 0.3s ease;
    background: var(--primary-darkGreen);
    width: 100%;
}

.faq__question.is-open {
    border-radius: 20px 20px 0 0;
}

.faq__question.active {
    border-radius: 20px 20px 0 0;
}

.faq__question::after {
    position: absolute;
    left: 16px;
    top: 12px;
    content: "Q";
    color: var(--primary-darkGreen);
    width: 28px;
    height: 28px;
    border-radius: 50px;
    background-color: var(--primary-ivoryWhite);
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq__question::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 29px;
    background-image: url(../images/arrow-up.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
    transition: transform 0.3s ease;
}

.faq__question.active::before {
    transform: translateY(-50%) rotate(180deg);
}

.q__txt {
    color: var(--primary-ivoryWhite);
    font-size: 1.6rem;
    text-align: left;
}

.faq__answer {
    position: relative;
    display: none;
    align-items: center;
    padding: 16px 24px 16px 60px;
    border-radius: 0px 0px 20px 20px;
    background: var(--primary-lightgreen);
    width: 100%;
}

.faq__answer::before {
    position: absolute;
    left: 16px;
    top: 12px;
    content: "A";
    color: var(--primary-ivoryWhite);
    width: 28px;
    height: 28px;
    border-radius: 50px;
    background-color: var(--primary-darkGreen);
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.a__txt {
    color: var(--primary-darkGreen);
    font-size: 1.6rem;
    text-align: left;
}

@media screen and (min-width:769px) {
    .faq {
        max-width: 1280px;
        margin: 40px auto 0;
    }

    .faq__item {
        margin-top: 40px;
    }

    .faq__question {
        padding: 24px 106px 24px 98px;
        border-radius: 24px;
    }

    .faq__question.is-open {
        border-radius: 24px 24px 0 0;
    }

    .faq__question.active {
        border-radius: 24px 24px 0 0;
    }

    .faq__question::after {
        left: 24px;
        top: 13px;
        width: 50px;
        height: 50px;
        font-size: 2.4rem;
    }

    .q__txt {
        font-size: 2.4rem;
    }

    .faq__answer {
        padding: 24px 36px 24px 98px;
        border-radius: 0px 0px 24px 24px;
    }

    .faq__answer::before {
        left: 24px;
        top: 13px;
        width: 50px;
        height: 50px;
        font-size: 2.4rem;
    }

    .a__txt {
        font-size: 2.4rem;
    }
}

/*=======================
footer
=======================*/
.footer {
    padding: 16px;
    text-align: center;
    align-items: center;
}

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

@media screen and (min-width:769px) {
    .footer {
        display: flex;
        justify-content: space-between;
        padding: 24px 80px;
    }

    .copy {
        margin-top: 0;
    }
}

/*==========================
fadeIn
==========================*/
.fadeIn {
    transform: translate(0, 20px);
    opacity: 0;
    transition: 0.6s;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}

/*==========================
slider
==========================*/
.slick-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-lightGray);
}

.slick-dots li.slick-active button {
    width: 10px;
    height: 10px;
    background-color: var(--primary-darkGreen);
}

@media screen and (min-width:769px) {
    .slick-dots {
        gap: 24px;
        margin-top: 40px;
    }

    .slick-dots li button,
    .slick-dots li.slick-active button {
        width: 14px;
        height: 14px;
    }
}