@charset "utf-8";

/*全体*/
*{
    box-sizing: border-box;
    cursor:none;
}
html {
    scroll-behavior: smooth;
}

body{
    font-family: "Zen Old Mincho", serif;
    font-weight:bold;
    margin:0;
    padding:0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color:#4d4d4d;
    background:#F2F2F2;
}
body.loaded {
    opacity: 1;
}
a{
    text-decoration: none;
    color:#4d4d4d;
}
ul{
    list-style: none;
    padding:0;
    margin:0;
}
img{
    max-width:100%;
    height:auto;
    vertical-align: bottom;
}
section{
    display:block;
}
dl,dt,dd,h1,h2,h3,h4,p,figure{
    margin:0;
}
.cursor-dot {
    width: 15px;
    height: 15px;
    background: #17325F;
    opacity:.8;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%,-50%);
    transition: transform .2s ease;
    z-index: 10000;
}
.cursor-dot.hover {
    transform: translate(-50%, -50%) scale(2.5);
}
@media (hover: none), (pointer: coarse) {
    .cursor-dot {
        display: none;
    }
}

.page-fade-in {
    opacity: 0;
    transition: all 2.5s;
}
.page-fade-in.show {
    opacity: 1;
}
:lang(yg){
    font-family: "Yu Gothic", "Noto Sans JP" , sans-serif;
}
.main{
    padding-top:7.5rem;
}

/*アニメーション*/
.fade-in{
    opacity:0;
    transform:translateY(10px);
}
.fade-in.js-on {
    animation-name: fadeout;
    animation-duration: 1s;
    animation-delay: .5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    }
    @keyframes fadeout {
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-left{
    opacity:0;
    transform:translateX(-10px);
}
.fade-left.js-on {
    animation-name: fadeout;
    animation-duration: 1s;
    animation-delay: .5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    }
    @keyframes fadeout {
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-right{
    opacity:0;
    transform:translateX(10px);
}
.fade-right.js-on {
    animation-name: fadeout;
    animation-duration: 1s;
    animation-delay: .8s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    }
    @keyframes fadeout {
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/*ヘッダー*/
.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:100;
}
.header_inner{
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding:10px 10px 0;
}
.header_logo a{
    display:flex;
    flex-direction: column;
    color:#17325F;
    text-align: center;
    line-height: 1;
}
.header_logo img{
    width:100%;
    max-width:180px;
}

/*ハンバーガーメニュー*/
.no-scroll {
    overflow: hidden;
}
.hamburger {
    width: 40px;
    height: 40px;
    position: relative;
    top:0;
    right:10px;
    z-index: 300;
    display:flex;
    align-items: center;
    justify-content: center;
    transition:all .6s;
}
.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    left:50%;
    top:50%;
    transform:translateX(-50%);
    background: #17325F;
    transition:all .6s;
}
.hamburger span:nth-child(1) { top: 34%; }
.hamburger span:nth-child(2) { top: 65%; }
.hamburger.active span:nth-child(1) {
    transform:translateX(-50%) rotate(45deg);
    top: 50%;
}
.hamburger.active span:nth-child(2) {
    transform:translateX(-50%) rotate(-45deg);
    top: 50%;
}
#hamburger-window {
    position: fixed;
    inset: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #F2F2F2;
    transition: all .6s;
    opacity:0;
    visibility: hidden;
    z-index: 100;
    overflow-y:auto;
    display:flex;
    flex-direction: column;
    padding-right:12vw;
}
#hamburger-window.active {
    opacity:1;
    visibility: visible;
}
.hamburger-window_wrapper{
    height:100%;
    position:relative;
    display:flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap:50px;
}
.hamburger-menu{
    width:35%;
    text-align: center;
    display:flex;
    flex-direction: column;
    gap:50px;
}
.ham_list{
    display:flex;
    flex-direction: column;
    gap:30px;
}
.ham_list li a{
    font-size:1.2em;
    letter-spacing: 0.05em;
}
.ham_foot li a{
    border:1px solid #4d4d4d;
    border-radius:50px;
    padding:20px 40px;
}
.hamburger-banner{
    width:50%;
    height:100vh;
}
.hamburger-banner img{
    width:100%;
    height:100%;
    object-fit: cover;
}

/*メインビジュアル*/
.mv{
    padding:0 30px;
}
.mv_inner{
    max-width:1500px;
    margin:0 auto;
}
.swiper{
    border-radius:20vw;
}
.slide-size img{
    width:100%;
    height:100%;
    object-fit: cover;
}

/*ストーリー*/
.story{
    padding:70px 40px 100px;
}
.story_inner{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items: center;
    gap:50px;
}
.story_left > h2{
    margin:20px 0;
    font-size:1.8em;
}
.story_ttl > h1{
    font-size:5em;
    color:#B9CFDD;
    font-weight:500;
    line-height: 1;
    margin-bottom:10px;
}
.story_ttl > span{
    font-size:.9em;
    font-weight:400;
}

.story_right{
    display:flex;
    gap:20px;
    align-items: flex-end;
}
.story_img01{
    aspect-ratio: 3 / 4;
    max-width:240px;
}
.story_img01 img{
    width:100%;
    height:100%;
    object-fit: cover;
    border-radius:20px;
}
.story_img02{
    aspect-ratio: 1 / 1;
    max-width:200px;
    margin-bottom:-50px;
}
.story_img02 img{
    width:100%;
    height:100%;
    object-fit: cover;
    border-radius:20px;
}

/*商品一覧*/
.item{
    background:#B9CFDD;
    border-radius:20vw;
}
.item_inner{
    max-width:1200px;
    margin:0 auto;
    padding:100px 40px;
}
.ttl{
    text-align: center;
    margin-bottom:50px;
}
.ttl > h2{
    font-size:1.8em;
    color:#17325F;
    font-weight:600;
    letter-spacing: 0.05em;
}
.ttl > span{
    font-weight:400;
    font-size:.9em;
}

.item_list{
    display:flex;
    flex-direction: column;
    gap:8vw;
}
.item_content{
    display:flex;
    gap:6vw;
}
.item_slide,
.item_detail{
    width:50%;
}
.swiper2{
    overflow: hidden;
    border-radius: 20px;
}
.item_slide{
    position:relative;
}
.web{
    position:absolute;
    top:-20px;
    left:0;
    width:70px;
    height:70px;
    aspect-ratio: 1 / 1;
    background:#17325F;
    color:#fff;
    z-index:1;
    border-radius:50px;
    display:flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.swiper3{
    margin-top:20px;
}
.slider_thumbnail .swiper-slide img {
    transition: border .3s;
    border: 3px solid transparent;
    border-radius:10px;
}
.slider_thumbnail .swiper-slide-thumb-active img{
    border: 3px solid #17325F;
}
.item_slide_img{
    aspect-ratio: 4 / 3;
}
.item_slide_img img{
    width:100%;
    height:100%;
    object-fit: cover;
}

.item_detail{
    display:flex;
    flex-direction: column;
    gap:30px;
}
.item_name > h4{
    font-size:1.6em;
}
.item_name > span{
    font-weight:500;
}
.item_txt > p{
    font-weight:500;
}
.item_ing{
    margin:30px 0;
}
.accordion{
    border-top:1px solid #17325F;
    border-bottom:1px solid #17325F;
}
.accordion-header{
    padding:15px;
    transition:all .6s;
    position:relative;
    display:flex;
    align-items: flex-start;
    font-weight:500;
}
.accordion-header::before,
.accordion-header::after{
    content:"";
    position:absolute;
    top:0;
    right:20px;
    bottom:0;
    width:10px;
    height:1px;
    margin:auto;
    background:#4d4d4d;
}
.accordion-header::after{
    transform:rotate(-90deg);
    transition:transform .4s;
}
.accordion-header.active2::after{
    transform:rotate(0deg);
}
.accordion-content{
    padding:0 15px 15px;
    font-weight:500;
}

.item_price{
    display:flex;
    align-items: flex-end;
    gap:20px;
}
.old_price{
    display:flex;
    flex-direction: column;
    font-weight:500;
}
.txt-line{
    text-decoration: line-through;
}
.new_price{
    color:#c33131;
    font-size:1.3em;
}
.order_btn{
    text-align: center;
    background:#17325F;
    width:max-content;
    margin:0 auto;
    border-radius:50px;
}
.order_btn a{
    color:#fff;
    display:block;
    padding:20px 90px;
    height:100%;
    width:100%;
    border-radius:50px;
    font-weight:500;
    transition:all .6s;
}
.item_name2{
    display:flex;
    align-items: flex-end;
    gap:5px;
}
.item_name2 > h4{
    font-size:1.6em;
}
.item_name2 > span{
    font-weight:500;
}
.item_price2{
    display:flex;
    flex-direction: column;
    gap:10px;
    font-weight:500;
}

/*ショップガイド*/
.shop-guide{
    padding:100px 40px;
}
.shop-guide_inner{
    max-width:1200px;
    margin:0 auto;
}
.guide_ttl{
    background:#fff;
    width:max-content;
    padding:15px 70px;
    border-radius: 50px;
}
.guide_ttl > h2{
    font-size:1.6em;
    color:#17325F;
    letter-spacing: 0.05em;
}
.guide_ttl > span{
    font-weight:500;
    font-size:.9em;
}
/*送料*/
.shipping{
    padding:40px 0;
}
.shipping_inner > p{
    font-weight:500;
    margin:30px 0;
}
.table_box{
    width:100%;
    overflow-x: auto;
}
.scroll{
    display:none;
    color:#c33131;
}
.table_box table{
    border-collapse: collapse;
    border-spacing: 0;
    width:100%;
    margin-top:30px;
}
.table_box th,
.table_box td{
    border:1px solid #4d4d4d;
    padding:1vw 4vw;
    white-space: nowrap;
}
.table_box td{
    font-weight:500;
}
.table_box td:nth-child(1){
    text-align: center;
}
/* 横スクロールカスタマイズ */
.table_box::-webkit-scrollbar,
.table_box2::-webkit-scrollbar {
    height: 10px;
}
.table_box::-webkit-scrollbar-track,
.table_box2::-webkit-scrollbar-track {
    background: #fff; 
    border-radius: 4px;
}
.table_box::-webkit-scrollbar-thumb,
.table_box2::-webkit-scrollbar-thumb {
    background: #B9CFDD; 
    opacity:0.6;
    border-radius: 4px;
}

.shipping_inner > ul{
    margin-top:20px;
}
.shipping_inner > ul li{
    position:relative;
    padding-left:1em;
    font-weight:500;
}
.shipping_inner > ul li::before{
    content:"※";
    position:absolute;
    top:0;
    left:0;
}

/*お支払*/
.payment{
    padding:40px 0;
}
.payment_inner > p{
    font-weight:500;
    margin:30px 0;
}
.red{
    color:#c33131;
}

.daibiki{
    display:flex;
    align-items: flex-end;
    justify-content: center;
    letter-spacing: 0.05em;
    color:#17325F;
    margin-bottom:20px;
}
.daibiki > span{
    font-weight:500;
}
.table_box2{
    width:100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table_box2 table{
    border-collapse: collapse;
    border-spacing: 0;
    width:80%;
    margin:0 auto;
}
.table_box2 th,
.table_box2 td{
    border:1px solid #4d4d4d;
    padding:1vw 4vw;
    white-space: nowrap;
}
.table_box2 td{
    font-weight:500;
    text-align: center;
}

/*その他*/
.other{
    padding-top:40px;
}
.other_list{
    margin-top:30px;
    display:flex;
    flex-direction: column;
    gap:30px;
}
.other_list li > h3{
    letter-spacing: 0.05em;
    margin-bottom:10px;
}
.other_list li > p{
    font-weight:500;
}

/*フッター*/
.footer{
    background:#B9CFDD;
    border-radius:100px 100px 0 0;
}
.footer_inner{
    text-align: center;
    padding:40px 40px 20px;
    display:flex;
    flex-direction: column;
    gap:20px;
}
.f_logo{
    width:max-content;
    margin:0 auto;
}
.f_logo a{
    display:flex;
    flex-direction: column;
}
.f_logo img{
    width:100%;
    max-width:220px;
}
.f_other{
    display:flex;
    align-items: center;
    justify-content: center;
    gap:20px;
}
.f_other li a{
    font-size:.9em;
    text-decoration: underline;
    text-underline-offset: 5px;
}
.f_btn{
    width:max-content;
    margin:0 auto;
    background:#fff;
    border-radius:50px;
}
.f_btn a{
    display:block;
    height:100%;
    width:100%;
    padding:20px 50px;
}
.footer_inner small{
    font-weight:500;
}