@charset "UTF-8";

:root{
    --color-text:#5B5148;
    --color-title:#4B5D4A;
    --color-takatiho:#4B5D4A;
    --color-taiyou:#E8B75B;
    --color-perpule:#8D7AB8;
    --color-base:#F8F6F2;
    --color-aotake-rgb:122,155,130;
    --color-aosima-rgb:127,169,201;
}

/*
フォント
----------------------------------------------------------- */
html,
body{
    overflow-x: clip;
}

img,
video{
    max-width: 100%;
}

body{
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--color-base);
    color: var(--color-text);
}

section{
    padding-top: 160px;
}

.wrapper-mid{
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 15px;
    text-align:center;
}

.sec-ttl,
.nav-list,
.slide-ttl,
.content-ttl{
    font-family: 'Cormorant Garamond', serif;
}

.sec-ttl{
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    letter-spacing:.08em;
    color: var(--color-title);
}

.content-ttl{
    font-size: 26px;
    text-align: center;
}

.sec-txt{
    font-size: 22px;
    text-align: center;
    padding-top: 96px;
}

.content-txt{
    font-size: 18px;
    text-align: center;
    padding-top: 60px;
}

.fv-catch,
.intro,
.sec-txt,
.slide-subttl,
.content-txt{
    font-family: 'Zen Old Mincho', serif;
}

.flex{ display: flex; }

.containar-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding-top: 96px;
    width: 100%;
}

/*
ボタン
----------------------------------------------------------- */
.btn{
    font-size: 14px;
    position:relative;
    display:inline-block;
    padding-right:80px;
    color:var(--color-takatiho);
    transition:color .3s;
}

.btn::after{
    content:"";
    position:absolute;
    top:50%;
    right:0;
    width:50px;
    height:1px;
    background:var(--color-takatiho);
    transform:translateY(-50%);
    transition:right .45s ease, width .45s ease;
}

.btn::before{
    content:"";
    position:absolute;
    top:50%;
    right:0;
    width:12px;
    height:1px;
    background:var(--color-takatiho);
    transform:translateY(-50%) rotate(45deg);
    transform-origin:right center;
    transition:right .45s ease;
}

.btn:hover::after{
    width:70px;
    right:-20px;
}

.btn:hover::before{
    right:-20px;
}

.btn:hover{
    color:var(--color-text);
}

.btn-wrap{
    padding-top: 60px;
    text-align: center;
}

/*
loading
----------------------------------------------------------- */
#loading{
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-base);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .8s ease;
}

#loading.is-hidden{
    opacity: 0;
    pointer-events: none;
}

.loading-logo{
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .6s ease, transform .6s ease;
}

.loading-logo.is-visible{
    opacity: 1;
    transform: translateY(0);
}

.loading-logo img{
    width: 80px;
    height: auto;
}

/*
FV
----------------------------------------------------------- */
.fv{
    position: relative;
    max-height: 800px;
    overflow: hidden;
    margin:0;
    padding-top: 0;
}

.fv::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.2);
    z-index: 2;
}

.image-video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv-content{
    position:absolute;
    top:50%;
    left:5%;
    transform: translateY(-50%);
    z-index: 3;
}

.fv-catch{
    color: var(--color-base);
    text-shadow:0 2px 8px rgba(0,0,0,.25);
    font-size: 36px;
    line-height: 1.8;
    letter-spacing:.08em;
}

.intro{
    font-size: 24px;
    text-align: center;
    padding: 200px 0 60px;
}

/*
header
----------------------------------------------------------- */
.header{
    position: sticky;
    top: 0;
    z-index: 100;
}

.header::before{
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-base);
    backdrop-filter: blur(10px);
    z-index: -1;
}

.wrapper{
    padding-inline: 15px;
    box-sizing: border-box;
}

.header .wrapper{
    display:flex;
    justify-content:space-between;
    align-items: center;
    height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
}

.header-right{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:50px;
    height:auto;
    display:block;
    margin-left: 0;
}

.nav-link,
.sns-link{
    display: block;
    padding: 0 10px;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-text);
    position: relative;
    display: inline-block;
    transition: 0.3s;
}

.nav-link:hover,
.sns-link:hover{
    transform:scale(1.08);
}

.nav-link::after,
.sns-link::after{
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-title);
    transition: width 0.3s ease;
}

.nav-link:hover{
    transform:scale(1.08);
}

/*
sec-01
----------------------------------------------------------- */
.concept-img{
    width:100%;
    height:600px;
    padding-top: 96px;
    margin-bottom:60px;
}

.concept-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/*
sec-02
----------------------------------------------------------- */
.sec-02{ padding-bottom: 0;}

.loop-slide-area{
    overflow: hidden;
    padding-top: 96px;
}

.swiper-slide:after{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        transparent 40%,
        rgba(0,0,0,.45) 100%
    );
}

.swiper-slide img{
    width:100%;
    display:block;
    transition:
    transform .8s ease,
    filter .8s ease;
}

.loop-slider .swiper-slide{
    width: 600px;
    height: 750px;
    flex-shrink: 0;
    overflow:hidden;
    position: relative;
}

.loop-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.swiper-slide:hover img{
    transform:scale(1.04);
    filter:brightness(.9);
}

.swiper-slide::after{
    pointer-events:none;
}

.slide-content{
    position:absolute;
    left:40px;
    bottom:40px;
    z-index:10;
}

.slide-ttl{
    font-size:40px;
    color:#F8F6F2;
}

.slide-subttl{
    padding-top: 8px;
    color:#F8F6F2;
    font-size:20px;
    letter-spacing:.1em;
}

.scene-link{
    display:block;
    width:100%;
    height:100%;
}

/*
sec-03
----------------------------------------------------------- */
.sec-03{ padding-bottom: 0;}

.box-list{ padding-top: 96px; }

.box{
    display: flex;
    align-items: center;
    gap: 80px;
}

.box+.box{ margin-top: 48px; }

.box-img{ width: 100%; }

.box-content{ width: 50%; }

.reverse{ flex-direction: row-reverse; }

.box-img img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/*
sec-04
----------------------------------------------------------- */
.containar-item{
    width: calc(50% - 40px);
}

.containar-item .content-ttl{
    padding-top: 30px;
}

.item-img img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/*
sec-05
----------------------------------------------------------- */
.news-list{ padding-top: 48px; }

.news-item{
    border-bottom: 1px solid var(--color-text);
}

.news-item:first-child{
    border-top:1px solid var(--color-text);
}

.news-item a{
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 24px 0;
    color: var(--color-text);
    text-decoration: none;
    transition: 0.3s;
}

.news-item a:hover{
    background: rgba(var(--color-aosima-rgb), .15);
    letter-spacing: .08em;
}

.news-date{
    flex-shrink: 0;
    width: 120px;
    color: var(--color-text);
    font-size: 14px;
}

.news-title{
    flex: 1;
    color: var(--color-text);
    font-size: 16px;
}

.new{
    flex-shrink: 0;
    display: inline-block;
    width: 40px;
    height: 20px;
    line-height: 20px;
    border-radius: 3px;
    background: var(--color-perpule);
    text-align: center;
    font-size: 14px;
    color: var(--color-base);
    margin-left: 30px;
    visibility: hidden;
}

.new.is-new{
    visibility: visible;
}

/*
footer
----------------------------------------------------------- */
.footer{
    background: rgba(var(--color-aotake-rgb), .15);
    margin-top: 160px;
}

.footer .wrapper-narrow{
    align-items: flex-start;
    justify-content: space-between;
}

.footer .containar-box{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 200px;
    padding-top: 60px;
}

.footer-left{
    width: 350px;
    text-align: center;
}

.footer-left .logo{
    text-align:center;
}

.footer-left .logo img{
    width:240px;
    height:auto;
    display:block;
    margin:0 auto;
}

.footer .content-txt{
    padding-top: 10px;
    font-size: 16px;
}

.footer-left .sns-list{
    justify-content: center;
    gap: 24px;
    padding-top: 10px;
}

.footer-right{
    width: 350px;
    text-align: center;
    padding-top: 20px;
}

.footer-right .content-ttl,
.footer-guide .content-ttl{
    display: inline-block;
    width: auto;
    height: auto;
    line-height: 1.5;
    background-color: var(--color-title);
    color: var(--color-base);
    margin-bottom: 10px;
    padding: 0 10px;
}

.footer .nav-list{
    display: grid;
    grid-template-columns: repeat(2, 120px);
    gap: 20px 45px;
    width: fit-content;
    margin: 28px;
}

.guide-list{
    align-items: center;
    justify-content: center;
}

.footer-guide{
    text-align: center;
    padding-top: 40px;
    gap: 80px;
}

.footer .guide-list{
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 26px;
}

.copyright{
    text-align: center;
    padding: 30px 0;
}

/*
page-product
----------------------------------------------------------- */
.box-txt{
    font-size: 16px;
    text-align: left;
    padding-top: 60px;
}

.box-content .sec-txt{
    padding-top: 60px;
}

/*
page-cart
----------------------------------------------------------- */
.cart-page {
    padding: 140px 0;
}

.cart-inner {
    max-width: 900px;
    margin: 96px auto 0;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(91, 81, 72, .25);
}

.cart-img {
    width: 35%;
}

.cart-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.cart-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cart-content > div {
    width: 100%;
}

.cart-select {
    width: 100%;
    max-width: 260px;
    padding: 10px 16px;
    margin: 8px auto 16px;
    border: 1px solid rgba(91, 81, 72, .35);
    background: #fff;
    color: var(--color-text);
    font-family: inherit;
}

.cart-field {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 16px;
}

.cart-price {
    width: 100%;
    padding: 10px 16px;
    margin-top: 8px;
    border-top: 1px solid rgba(91, 81, 72, .35);
    border-bottom: 1px solid rgba(91, 81, 72, .35);
    text-align: center;
}
.cart-type,
.cart-price {
    margin-bottom: 16px;
}

.cart-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
}

.cart-quantity button {
    width: 32px;
    height: 32px;
    border: 1px solid currentColor;
    background: transparent;
    cursor: pointer;
}

.cart-remove,
.cart-back {
    display: inline-block;
    margin-top: 16px;
    font-size: 14px;
}

.cart-summary {
    margin-top: 48px;
}

.cart-summary dl div {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(91, 81, 72, .2);
}

.cart-total {
    font-size: 20px;
    font-weight: 600;
}

/*
page-contact
---------------------------------------------------------------*/
.contact-page {
    padding: 140px 0;
}

.contact-form {
    max-width: 700px;
    margin: 80px auto 0;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(91, 81, 72, .3);
    background: #fff;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 200px;
    resize: vertical;
}

.contact-form p {
    margin-bottom: 32px;
}

.contact-form input[type="submit"] {
    display: block;
    width: 220px;
    margin: 48px auto 0;
    cursor: pointer;
}

/*
guide-page-------------------------------------------*/
.guide-page .content-txt,
.guide-page .content-ttl,
.guide-page .sec-txt{
    text-align: left;
    line-height: 2;
}

.faq-item + .faq-item {
    margin-top: 0;
}

.faq-item .sec-txt{
    border-bottom: 1px solid rgba(91, 81, 72, .35);
    padding-top: 30px;
}

.faq-item .content-txt{
    padding-top: 10px;

}





@media screen and (max-width: 767px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .cart-img {
        width: 100%;
    }
}

/*
ホバー
----------------------------------------------------------- */
@media (hover: hover) and (pointer: fine){
    .nav-link:hover::after{
        width: 100%;
    }
}

.nav-overlay,
.menu{ display: none; }

/*
tablet
----------------------------------------------------------- */
@media screen and (max-width: 1199px){
    .loop-slider .swiper-slide{
        width: 400px;
        height: 500px;
    }
    .concept-img{
        height: 400px;
    }
    .box-img img{
        height: 400px;
    }
    .item-img img{
        height: 400px;
    }
    .box{
        gap: 40px;
    }
    .containar-box{
        gap: 40px;
    }
    .containar-item{
        width: calc(50% - 20px);
    }
    .footer .containar-box{
        gap: 60px;
    }
    .footer-left,
    .footer-right{
        width: auto;
    }
}

/*
SP
----------------------------------------------------------- */
@media screen and (max-width: 767px){
    section{
        padding-top: 80px;
    }
    .header{
        position: fixed;
        top: 0;
        width: 100%;
    }
    .menu{
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 650;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
    }
    .menu span,
    .menu span::before,
    .menu span::after{
        content: "";
        display: block;
        width: 28px;
        height: 1px;
        background: var(--color-text);
        margin: 0 auto;
        transition: .3s;
        position: relative;
    }
    .menu span::before{
        top: -8px;
    }
    .menu span::after{
        top: 7px;
    }
    body.open .menu span{
        background: transparent;
    }
    body.open .menu span::before{
        top: 0;
        transform: rotate(45deg);
    }
    body.open .menu span::after{
        top: -1px;
        transform: rotate(-45deg);
    }
    .nav-overlay{
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.4);
        z-index: 590;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
    }
    body.open .nav-overlay{
        opacity: 1;
        pointer-events: auto;
    }
    .header-right{
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100%;
        background: var(--color-base);
        z-index: 600;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right .3s ease;
    }
    body.open .header-right{
        right: 0;
    }
    .nav-list{
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .fv{
        height: calc(100svh - 78px);
        max-height: none;
        margin-top: 78px;
    }
    .image-video{
        height: calc(100svh - 78px);
    }
    .sec-ttl{
        font-size: 28px;
    }
    .sec-txt{
        font-size: 18px;
        margin-top: 48px;
    }
    .fv-catch{
        font-size: 24px;
    }
    .concept-img{
        height: 260px;
    }
    .loop-slider .swiper-slide{
        width: 280px;
        height: 360px;
    }
    .box,
    .reverse{
        flex-direction: column;
        gap: 32px;
    }
    .box-img,
    .box-content{
        width: 100%;
    }
    .box-img img{
        height: 260px;
    }
    .box + .box{
        margin-top: 80px;
    }
    .containar-box{
        flex-direction: column;
        align-items: center;
    }
    .containar-item{
        width: 100%;
    }
    .item-img img{
        height: 260px;
    }
    .news-item a{
        flex-wrap: wrap;
        gap: 8px;
        position: relative;
    }
    .news-date{
        width: auto;
    }
    .news-title{
        width: 100%;
        flex: none;
        text-align: left;
    }
    .new{
        position: absolute;
        top: 24px;
        right: 0;
        margin-left: 0;
    }
    .footer .containar-box{
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    .footer-left,
    .footer-right{
        width: 100%;
    }
    .footer .nav-list{
        grid-template-columns: repeat(2, 1fr);
        margin: 20px auto;
    }
    .footer .guide-list{
        flex-wrap: wrap;
        gap: 20px;
    }

    /*  cart---------------------------*/
    .cart-content {
        padding: 0 20px;
    }

    .cart-content > div {
        margin-bottom: 24px;
    }

    .cart-select {
        width: 100%;
        padding: 14px 16px;
        font-size: 16px;
        border: 1px solid rgba(91, 81, 72, .3);
        border-radius: 4px;
        background-color: #fff;
    }

    .cart-price {
        font-size: 18px;
        letter-spacing: .04em;
    }

    .cart-quantity {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .cart-minus,
    .cart-plus {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(91, 81, 72, .3);
        border-radius: 50%;
        background: #fff;
        font-size: 18px;
    }

    .cart-num {
        min-width: 24px;
        text-align: center;
        font-size: 16px;
    }

    .cart-summary {
        margin-top: 64px;
        padding: 40px 20px;
    }

    .cart-summary dl {
        width: 100%;
    }

    .cart-summary dl div {
        display: flex;
        justify-content: space-between;
        padding: 16px 0;
        border-bottom: 1px solid rgba(91, 81, 72, .2);
    }

    .cart-total {
        font-size: 18px;
        font-weight: 500;
    }



}