@charset "UTF-8";
/* 共通 
----------------------*/
body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    color: #4E301B;
}
.inner{
    padding: 0 20px;
    margin: 0 auto;
}
a {
    color: #4E301B;
    text-decoration: none;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
.section-ttl {
    font-size: 32px;
    text-align: center;
    margin-bottom: 90px;
}
@media screen and (max-width: 599px) {
    .section-ttl {
        margin-bottom: 50px;
    }
}
.middle-img--right {
    position: absolute;
    right: 0;
}
.middle-img--left {
    position: absolute;
    left: 0;
}
@media screen and (max-width: 767px) {
    .img-fruits {
        width: 250px;
    }
}
/* ローディング 
--------------------------*/
.loading__wrapper {
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4000;
}
.loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.loading__logo {
    width: 50%;
}
.loading__none {
    animation: loading-anime 1.5s forwards;
}

@keyframes loading-anime {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none;
    }
}
/* ファーストビュー 
-----------------------*/
.fv {
    height: 854px;
    background-image: url(../img/fv.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}
@media screen and (max-width: 1024px) {
    .fv {
        height: clamp(667px, calc(667px + (854 - 667) * ((100vw - 375px) / (1024 - 375))), 854px);
        background-position: right center;
    } 
} 
@media screen and (max-width: 799px) {
    .fv { 
        background-position: center; 
    } 
}
.fv__copy-wrapper {
    position: absolute;
    top: 112px;
    right: 146px;
    display: flex;
    flex-direction: row-reverse;
    gap:21px;
}
@media screen and (max-width: 799px) {
    .fv__copy-wrapper {
        top: 423px;
        left: 10%;
        right: auto;
        flex-direction: column;
        gap: calc(6px + (15 - 6) * ((100vw - 375px) / (799 - 375)));
    }
}
.fv__copy-item {
    background-color: #fff;
    padding: 10px 15px 0;
    font-size: 32px;
    writing-mode: vertical-rl;
    letter-spacing: 15px;
    color: #4E301B;
}
.fv__copy-item:last-child{
    height: 151px;
}
@media screen and (max-width: 799px) {
    .fv__copy-item {
        writing-mode: unset;
        font-size: clamp(24px, 2.16vw + 16.2px, 32px);
        padding: 7px;
        letter-spacing: 0;
    }
    .fv__copy-item:last-child{
        width: 38%;
        height: auto;
    }
}

/* header 
-------------------------------*/

.header {
    background-color: #FDF9EF;
}
.header__inner {
    max-width: 1085px;
    position: relative;
}
.header__logo-img-box {
    position: absolute;
    top: -74px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FDF9EF;
    width: 154px;
    height: 154px;
    border-radius: 50%;
    padding: 29px;
}
.header__nav {
    display: flex;
    padding-top: 53px;
    gap:39px;
}
.header__nav-list {
    display: flex;
    margin-top: 37px;
    gap:39px;
}
@media screen and (max-width: 1100px) {
    .header__nav-list {
    display: none;
    }
}
.header__nav-logo-ttl{
    z-index: 1;
}
@media screen and (max-width: 1100px) {
    .header__nav-logo-ttl {
    margin-right: auto;
    margin-left: auto;
    }
}
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    width: 48px;
    height: 48px;
    background-color: #FED966;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.5s ease;
    display: none;
}
@media screen and (max-width: 1100px) {
    .hamburger {
    display: inline-block;
    }
}
.hamburger__line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 18px;
    height: 2px;
    background-color: #4E301B;
    -webkit-transition: inherit;
    transition: inherit;
}
.hamburger__line::before, .hamburger__line::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    transition: inherit;
    background-color: #4E301B;
}
.hamburger__line::before {
    top: -5px;
}
.hamburger__line::after {
    top: 5px;
}

.hamburger[aria-expanded=true] .hamburger__line {
    background-color: transparent;
}
.hamburger[aria-expanded=true] .hamburger__line::before, .hamburger[aria-expanded=true] .hamburger__line::after {
    top: 0;
    background-color: #4E301B;
}

.hamburger[aria-expanded=true] .hamburger__line::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger[aria-expanded=true] .hamburger__line::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.sp-global-menu {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.9);
    color: #4E301B;
    visibility: hidden;
    padding: 60px;
    text-align: center;
    z-index: 2000;
}
.sp-global-menu__list {
    margin-top: 36px;
}
.sp-global-menu__item {
    margin-bottom: 16px;
}


/* ABOUT 
--------------------------------------*/
.about {
    background-color: #FDF9EF;
    padding-top: 45px;
    padding-bottom: 188px;
    position: relative;
}
@media screen and (max-width: 1024px) {
    .about {
        padding-bottom: 100px;
    }
}
.about__inner {
    max-width: 924px;
}
.about__txt-wrapper {
    margin-top: 56px;
    position: relative;
    z-index: 5;
}
@media screen and (max-width: 799px) {
    .about__txt-wrapper {
        margin: 0;
        text-align: center;
    }
}
@media screen and (max-width: 599px) {
    .about__txt-wrapper {
    text-align: left;
    }
}
.about__ttl {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 9px 10px;
    font-size: 40px;
    color: #35A1C3;
}
@media screen and (max-width: 1024px) {
    .about__ttl {
        font-size: 32px;
    }
}
@media screen and (max-width: 750px) {
    .no-wrap{
        display: block;
    }
}
@media screen and (max-width: 499px) {
    .about__ttl {
        font-size: 24px;
    }
}
.about__desc {
    display: inline-block;
    margin-top: 28px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    line-height: 2.5;
    color: #857868;
}
.about__img-big {
    position: absolute;
    top: 45px;
    right: 10%;
    width: 786px;
}
@media screen and (max-width: 1024px) {
    .about__img-big {
        right: 3.359%;
        width: 600px;
    }
}
@media screen and (max-width: 799px) {
    .about__img-big {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
}
.about__img-small {
    position: absolute;
    top: 607px;
    right: 10%;
    margin-top: 38px;
    width: 393px;
}
@media screen and (max-width: 1024px) {
    .about__img-small {
        top: 476px;
        right: 3.359%;
        width: 300px;
    }
}
@media screen and (max-width: 799px) {
    .about__img-small {
        position: static;
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
}



/* 製品一覧 
---------------------------*/
.product {
    background-color: #FDF9EF;
    padding-bottom: 94px;
}
.swiper {
    padding: 6px 0;
}
.swiper-wrapper {
    transition-timing-function: linear;
}
.swiper-slide {
    width: 264px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.swiper-slide__img {
    width: 100%;
    height: 166px;
    object-fit: cover;
}
.swiper-slide__txt-wrapper {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 165px;
    padding: 16px;
}
.swiper-slide__price {
    font-weight: normal;
}

/* お知らせ 
------------------------------------*/
.info {
    padding-top: 91px;
    padding-bottom: 91px;
}
.info__inner {
    max-width: 974px;
}
.info__item {
    display: flex;
    line-height: 4.2;
    border-top: 1px solid rgba(198, 198, 198, 1);
}
.info__item:last-child {
    border-bottom: 1px solid rgba(198, 198, 198, 1);
}
@media screen and (max-width: 600px) {
    .info__item {
        flex-direction: column;
        align-items: center;
        line-height: 2.5;
    }
}
.info__date {
    font-size: 13px;
    color: rgba(64, 63, 63, 1);
    width: 20%;
    font-weight: normal;
}

.info__txt {
    color: rgba(78, 48, 27, 1);
    flex: 1;
    font-weight: normal;
}
.img-grapes{
    margin-top: 12px;
}

/* FAQ 
------------------------------------------*/
.faq{
    background-color: #FDF9EF;
    padding-top: 91px;
    padding-bottom: 91px;
}
.faq__inner {
    max-width: 780px;
}
.faq__question {
    background-color: #FFFFFF;
    padding: 12px 40px 12px 14px;
    font-size: 18px;
    position: relative;
}
.faq__question::before {
    content: "Q";
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    padding-right: 8px;
}
.faq__question::after {
    content: "";
    display: block;
    position: absolute;
    top: 35%;
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: 3px solid #C6C6C6;
    border-right: 3px solid #C6C6C6;
    transform: rotate(135deg);
}
.faq__question.rotate--315::after {
    transform: rotate(315deg);
}
.faq__answer {
    height: 0;
    overflow: hidden;
    padding-top: 31px;
}
.faq__answer.faq--open {
    height: auto;
    line-height: 1.5;
    padding-bottom: 31px;
    font-weight: normal;
}
.img-breakfast{
    margin-top: 20px;
}

/* アクセス 
--------------------------------------------*/
.access {
    padding-top: 91px;
    padding-bottom: 78px;
}
.access__inner {
    max-width: 974px;
}
.access__wrapper {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 1024px) {
    .access__wrapper {
        flex-direction: column;
        align-items: center;
    }
}
.googlemap__wrapper {
    flex: 0 0 443px;
    margin-left: 32px;
}
@media screen and (max-width: 1024px) {
    .googlemap__wrapper {
        flex: 0 0 350px;
        margin-left: 0;
        margin-top: 20px;
    }
}
.googlemap {
    width: 100%;
}
.access__list-wrapper{
    flex: 1;
}
@media screen and (max-width: 1024px) {
    .access__list-wrapper{
        max-width: 100%
    }
}
.access__list-item {
    display: flex;
    font-size: 18px;
    line-height: 3.6;
    border-top: 1px solid #C6C6C6;
    color: #4E301B;
}
.access__list-item:last-child {
    border-bottom: 1px solid #C6C6C6;
}
@media screen and (max-width: 1024px) {
    .access__list-item {
        flex-direction: column;
        align-items: center;
        line-height: 2.5;
    }
    .access__ttl {
        text-align: center;
    }
}
.access__ttl {
    width: 35%;
    font-size: 18px;
    color: rgba(64, 63, 63, 1);
}
@media screen and (max-width: 499px) {
    .access__ttl {
        text-align: center;
    }
}


/* お問い合わせ 
---------------------------------------*/
.contact {
    background-color: #FDF9EF;
    padding-top: 104px;
    padding-bottom: 30px;
}
.contact__inner {
    max-width: 780px;
}
.contact__cta {
    text-align: center;
    font-size: 18px;
    margin-bottom: 93px;
}
.contact-form {
    background-color: #FFFFFF;
    padding: 37px 76px 43px;
    border-radius: 20px;
}
@media screen and (max-width: 499px) {
    .contact-form {
        padding: 37px 20px 43px;
    }
}
.contact-form__txt {
    font-size: 18px;
    text-align: center;
    margin-bottom: 44px;
}
.contact-form__item {
    margin-bottom: 24px;
    display: flex;
}
@media screen and (max-width: 767px) {
    .contact-form__item {
        flex-direction: column;
    }
}
.contact-form__ttl {
    width: 40%;
}
@media screen and (max-width: 767px) {
    .contact-form__ttl {
        width: 100%;
        margin-bottom: 20px;
    }
}
.contact-form--must {
    font-size: 14px;
    padding: 5px 11px;
    background-color: #FED966;
    border-radius: 10px;
    margin-left: 18px;
}
.radio__wrapper {
    display: flex;
    flex-direction: column;
}

.radio__item {
    font-weight: normal;
}
.radio__btn {
    /* デフォルトのラジオボタンを初期化 */
    opacity: 0;
}
.radio__label {
    /* 新しいラジオボタンの位置を設定 */
    position: relative;
    display: inline-block;
    padding-left: 23px;
    margin-bottom: 10px;
    cursor: pointer;
}
.radio__label--custom::before {
     /* 新しいラジオボタン（チェック前）のスタイルを設定 */
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #4E301B;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.radio__btn:checked + .radio__label--custom::before {
    content: "";
    background: #4E301B;
}
.radio__btn:checked + .radio__label--custom::after {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background-color: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 6px;
}

.contact-form__input {
    width: 60%;
    background-color: #EFEAE6;
    border-radius: 5px;
    height: 40px;
    padding: 5px 16px;
    font-weight: normal;
}
@media screen and (max-width: 767px) {
    .contact-form__input {
        width: 100%;
    }
}
.post-code__input {
    width: 28%;
    background-color: #EFEAE6;
    border-radius: 5px;
    height: 40px;
    padding: 5px 16px;
    font-weight: normal;
}
@media screen and (max-width: 767px) {
    .post-code__input {
        width: 40%;
    }
}
@media screen and (max-width: 499px) {
    .post-code__input {
        width: 60%;
    }
}
.content__input {
    width: 60%;
    background-color: #EFEAE6;
    border-radius: 5px;
    padding: 5px 16px;
    resize: none;
    font-weight: normal;
}
@media screen and (max-width: 767px) {
    .content__input {
        width: 100%;
    }
}
.submit-btn {
    margin-top: 50px;
    text-align: center;
    background-color: #FED966;
    border-radius: 10px;
    text-align: center;
    padding: 13px;
    font-size: 14px;
    width: 243px;
    display: block;
    margin-right: auto;
    margin-left: auto;
}
@media screen and (max-width: 499px) {
    .submit-btn {
        width: 150px;
    }
}
.end-message {
    display: none;
    text-align: center;
    color: #35A1C3;
}
.false-message {
    display: none;
    text-align: center;
    color: #35A1C3;
}

/* フッター 
---------------------------------------------------*/
.footer{
    margin-top: 24px;
    text-align: center;
    position: relative;
}
.footer__inner{
    max-width: 608px;
    padding-bottom: 97px;
}
.footer-nav{
    margin-top: 33px;
}
.footer-nav__list{
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    .footer-nav__list {
    flex-direction: column;
    }
    .footer-nav__item {
        margin-bottom: 16px;
    }
}
.footer__middle-img {
    bottom: 57px;
}
@media screen and (max-width: 1024px) {
    .footer__middle-img {
    width: 150px;
    }
}
.footer__bottom{
    padding: 22px 0;
    background-color: #D9D9D9;
    color: #4E301B;
}
.copyright {
    font-size: 12px;
    font-weight: normal;
}
