@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    overscroll-behavior: none;
}
body {
    margin: 0;
    padding: 0;
    background: #fff;
    color: #000;
    font-family: "見出ゴMB31", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.66;
    letter-spacing: 0.05em;
    font-feature-settings: "palt" 1;
    -webkit-text-size-adjust: none;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-size: 100%;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0;
}
p {
    margin: 0;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
ol {
    margin: 0;
    padding: 0 0 0 28px;
}
dl,dt,dd {
    margin: 0;
    padding: 0;
}
figure {
    margin: 0;
    padding: 0;
}
a,
.a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    transition: .2s var(--easing);
}
a img {
    border: none;
}
img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border: 0;
    vertical-align: middle;
}
sup {
    display: inline-block;
    font-size: 0.8em;
}
em {
    font-style: normal;
}
table {
    border-collapse: collapse;
}
main {
    display: block;
}
.en{
    font-family: "Inter", "見出ゴMB31", sans-serif;
    font-weight: 500 !important;
}



    .pc { display: block; }
    .sp { display: none; }

@media (max-width: 767px) {
    body {
        font-size: 14px;
        font-weight: 500;
    }
    .pc { display: none; }
    .sp { display: block; }
}

/*l-container*/
.l-container{
    width: 100%;
    max-width: calc(448px + 22svw);
    margin: 0 auto;
    padding: 0 11svw;
}

/*l-square-container*/
.l-square-container{
    width: 100%;
    padding: 11svh 11svw;
}
@media (max-width: 767px){
    .l-square-container{
        padding: 15svh 11svw;
    }
}

/*header*/
header{
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: space-between;
    padding: 37px 37px 0 37px;
    z-index: 9999;
    pointer-events: none;
}
header .logo{
    font-size: 47px;
    width: fit-content;
    line-height: 1;
    pointer-events: auto;
}
header .menu{
    position: relative;
    pointer-events: auto;
}
header .menu .h{
    font-size: 47px;
    width: fit-content;
    cursor: pointer;
    line-height: 1;
}
header .nav{
    position: absolute;
    top: 93px;
    left: 8px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}
header .nav.on{
    opacity: 1;
    visibility: visible;
}
header .nav li{
    margin-bottom: 18px;
}
header .nav li span{
    display: block;
    white-space: nowrap;
    line-height: 1;
}
header .nav li .en{
    font-size: 20px;
    margin-bottom: 6px;
}
header .nav li .ja{
    font-size: 16px;
}
header .menu .close-btn{
    display: none;
}

@media(max-width:767px){
    header{
        padding: 18px 18px 0 18px;
    }
    header .logo{
        font-size: 34px;
        z-index: 2;
    }
    header .menu .h{
        font-size: 34px;
    }
    header .menu .close-btn{
        opacity: 0;
        display: block;
        position: fixed;
        top: 18px;
        right: 18px;
        z-index: 2;
        pointer-events: none;
        width: 26px;
        height: 26px;
    }
    header .menu .close-btn span:first-of-type{
        position: absolute;
        top: 50%;
        right: 0;
        width: 24px;
        height: 2px;
        transform: rotate(45deg);
        background: #000;
    }
    header .menu .close-btn span:last-of-type{
        position: absolute;
        top: 50%;
        right: 0;
        width: 24px;
        height: 2px;
        transform: rotate(-45deg);
        background: #000;
    }
    header .nav.on .close-btn{
        opacity: 1;
        pointer-events: visible;
    }
    header .nav{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100svh;
        background-color: #fff;
        padding-top: 100px;
        padding-left: 37px;
        padding-right: 37px;
    }
}

/*main*/
main{
    position: relative;
    z-index: 99;
}

/*snap-wrap*/
.snap-wrap{
    overflow: auto;
    scroll-snap-type: y mandatory;
    height: 100svh;
    -webkit-overflow-scrolling: touch;
}
.snap-container{
    scroll-snap-align: start;
    height: 100svh;
    transition: opacity 0.3s;
}
.snap-container .l-square-container{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-container .snap-container .l-square-container .img{
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 999;
        /* iOS Safari対応 */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.home-container .snap-container .l-square-container .img.on{
    opacity: 1;
}
.home-container .snap-container .l-square-container .img a{
    display: block;
    width: 100%;
    height: 100%;
}
.home-container .snap-container .l-square-container .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*fix-title*/
.fix-title{
    position: fixed;
    bottom: 37px;
    left: 37px;
    z-index: 9;
}
.fix-title .h {
    opacity: 1;
    transition: opacity 0.3s ease;
    line-height: 1;
}
.fix-title .h.on {
    opacity: 1;
}
.fix-title .h span {
    display: inline-block;
}
.fix-title .h .top{
    display: block;
    white-space: nowrap;
    margin-bottom: 10px;
}
.fix-title .h .bottom{
    display: block;
    white-space: nowrap;
}
.fix-title .h .en{
    font-size: 47px;
}
.fix-title .h .en.uppercase{
    font-size: 36px;
}
.fix-title .h .ja{
    font-size: 36px;
}
.fix-title .h .top.date{
    font-size: 36px;
}

@media (max-width:767px){
    .fix-title{
        left: 18px;
    }
    .fix-title .h .top{
        margin-bottom: 6px;
    }
    .fix-title .h .en {
        font-size: 34px;
    }
    .fix-title .h .en.uppercase{
        font-size: 26px;
    }
    .fix-title .h .ja {
        font-size: 26px;
    }
    .fix-title .h .top.date{
        font-size: 26px;
    }
}
/*product*/
.product-container .snap-container{
    display: grid;
    align-items: center;
    justify-content: space-between;
    grid-template-rows: auto;
    padding: 0 11svw;
}
.product-container .snap-container .item{
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-container .snap-container .item .img{
    position: relative;
    z-index: 999;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
}
.product-container .snap-container .item .img a{
    display: block;
    width: 100%;
    height: 100%;
}
.product-container .snap-container .item .img img{
    object-fit: cover;
}
.product-container .snap-container .item .name{
    opacity: 0;
    position: fixed;
    bottom: 37px;
    z-index: 99;
    line-height: 1;
    pointer-events: none;
}

.product-container .snap-container .item .name span{
    display: inline-block;
}
.product-container .snap-container .item .name span a{
  display: inline-block;
}
.product-container .snap-container .item .name .top{
    display: block;
    margin-bottom: 10px;
    white-space: nowrap;
    font-size: 47px;
}
.product-container .snap-container .item .name .bottom{
    display: block;
    white-space: nowrap;
    font-size: 36px;
}
.product-container .snap-container .item .name .en{
    font-size: 47px;
}
.product-container .snap-container .item .name .en.uppercase{
    font-size: 36px;
    font-weight: 600 !important;
}
.product-container .snap-container .item .name .ja{
    font-size: 36px;
}
.product-container .snap-container .item .name .bottom span.ja,
.product-container .snap-container .item .name .bottom span.en{
    font-family: "見出ゴMB31", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 36px;
}
.product-container .snap-container .item .num{
    opacity: 0;
    font-size: 36px;
    position: fixed;
    bottom: 37px;
    z-index: 999;
    line-height: 1;
    pointer-events: none;
}
.product-container .snap-container .item.on .name,
.product-container .snap-container .item.on .num{
    opacity: 1;
    pointer-events: auto;
}
.product-container .snap-container.col2{
    grid-template-columns: repeat(2, 33.5svw);
}
.product-container .snap-container.col3{
    grid-template-columns: repeat(3, 18.66svw);
}
.product-container .snap-container.col1{
    grid-template-columns: repeat(1, 1fr);
}
.product-container .snap-container.col2 .item:nth-of-type(1) .name{
    left: 37px;
}
.product-container .snap-container.col2 .item:nth-of-type(1) .num{
    left: 44.5svw;
}
.product-container .snap-container.col2 .item:nth-of-type(2) .name{
    left:calc(50svw + 2.6svw);
}
.product-container .snap-container.col2 .item:nth-of-type(2) .num{
    left: auto;
    right: 37px;
}
.product-container .snap-container.col1 .item .name{
    left: 37px;
}
.product-container .snap-container.col1 .item .num{
    left: auto;
    right: 37px;
}
.product-container .snap-container.col3 .item:nth-of-type(1) .name{
    left: 37px;
}
.product-container .snap-container.col3 .item:nth-of-type(2) .name{
    left: 37svw;
}
.product-container .snap-container.col3 .item:nth-of-type(3) .name{
    left: 67svw;
}
.product-container .snap-container.col3 .item:nth-of-type(1) .num{
    left: 29.66svw;
}
.product-container .snap-container.col3 .item:nth-of-type(2) .num{
    left: 59.33svw;
}
.product-container .snap-container.col3 .item:nth-of-type(3) .num{
    left: auto;
    right: 37px;
}

@media (max-width: 767px){
    .product-container .snap-container.col1 .item .name{
        left: 18px;
    }
    .product-container .snap-container .item .name .top{
        margin-bottom: 6px;
        font-size: 34px;
    }
    .product-container .snap-container .item .name .bottom{
        font-size: 26px;
    }
    .product-container .snap-container .item .name .en{
        font-size: 34px;
    }
    .product-container .snap-container .item .name .en.uppercase{
        font-size: 26px;
    }
    .product-container .snap-container .item .name .ja{
        font-size: 26px;
    }
    .product-container .snap-container .item .name .bottom span.ja,
    .product-container .snap-container .item .name .bottom span.en{
        font-size: 26px;
    }
    .product-container .snap-container.col1 .item .num{
        right: 18px;
        font-size: 26px;
        margin-right: 0 !important;
    }
}

/*product-detail*/
.product-detail-container{
    padding: 0 11svw;
}
.product-detail-container .slider{
    position: fixed;
    z-index: 999;
    width: calc(50svw - 16.5svw);
    top: 50svh;
    left: 11svw;
    transform: translateY(-50%);
}
.product-detail-container .slider .img{
    aspect-ratio: 1 / 1;
}
.product-detail-container .slider .img img{
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1 / 1;
}
.is-small-gap .product-detail-container .slider{
    width: 48.33svw;
    aspect-ratio: auto;
}
.product-detail-container .slick-list {
    margin: 0 -2.25svw;
}
.product-detail-container .slick-slide {
    margin: 0 2.25svw;
}
.is-small-gap .slick-list {
    margin: 0 -5.5svw;
}
.is-small-gap .slick-slide {
    margin: 0 5.5svw;
}
.product-detail-container .slider .slide-arrow{
    position: absolute;
    width: 8px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}
.product-detail-container .slider .slide-arrow span{
    position: absolute;
    display: block;
    width: 11.2px;
    height: 2px;
    background: #000;
    top: calc(50% - 1px);
}
.product-detail-container .slider .prev-arrow{
    left: -40px;
}
.product-detail-container .slider .prev-arrow span:first-of-type{
    transform-origin: 1px 50%;
    transform: rotate(49.4deg);
    left: 0;
}
.product-detail-container .slider .prev-arrow span:last-of-type{
    transform-origin: 1px 50%;
    transform: rotate(-49.4deg);
    left: 0;
}
.product-detail-container .slider .next-arrow{
    right: -40px;
}
.product-detail-container .slider .next-arrow span:first-of-type{
    transform-origin: calc(100% - 1px) 50%;
    transform: rotate(49.4deg);
    right: 0;
}
.product-detail-container .slider .next-arrow span:last-of-type{
    transform-origin: calc(100% - 1px) 50%;
    transform: rotate(-49.4deg);
    right: 0;
}
.product-detail-container .txt{
    width: 33.5svw;
    margin-left: auto;
    margin-right: 0;
}
.is-small-gap .product-detail-container .txt{
    width: 18.66svw;
}
.product-detail-container .txt p{
    margin-bottom: 1.42em;
    text-align: justify;
}
.product-detail-container .txt p:last-of-type{
    margin-bottom: 0;
}
.product-detail-container .txt .link{
    margin-top: 2.84em;
}
.product-detail-container .h{
    margin-bottom: 20px;
}
.product-detail-container .h span{
    display: block;
    font-size: 14px;
    line-height: 1.42;
}
.product-detail-container .name{
    position: fixed;
    bottom: 37px;
    left: 37px;
    z-index: 99;
    line-height: 1;
}
.product-detail-container .name span{
    display: inline-block;
}
.product-detail-container .name .top{
    display: block;
    margin-bottom: 10px;
    white-space: nowrap;
    font-size: 47px;
}
.product-detail-container .name .bottom{
    display: block;
    white-space: nowrap;
    font-size: 36px;
}
.product-detail-container .name .en{
    font-size: 47px;
}
.product-detail-container .name .en.uppercase{
    font-size: 36px;
}
.product-detail-container .name .ja{
    font-size: 36px;
}
.product-detail-container .name .bottom span.ja,
.product-detail-container .name .bottom span.en{
    font-family: "見出ゴMB31", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 36px;
}
.product-detail-container .num{
    position: fixed;
    font-size: 36px;
    bottom: 37px;
    right: 37px;
    z-index: 99;
    line-height: 1;
}
.link a{
    text-decoration: underline;
}

@media (max-width: 767px){
    .product-detail-container .name{
        left: 18px;
    }
    .product-detail-container .name .top{
        margin-bottom: 6px;
        font-size: 34px;
    }
    .product-detail-container .name .top .ja{
        font-size: 26px;
    }
    .product-detail-container .name .bottom{
        font-size: 26px;
    }
    .product-detail-container .name .en{
        font-size: 34px;
    }
   
    .product-detail-container .name .en.uppercase{
        font-size: 26px;
    }
    .product-detail-container .name .bottom span.ja{
        font-size: 26px;
    }
     .product-detail-container .name .bottom span.en {
        font-size: 26px;
     }
    .product-detail-container .num{
        right: 18px;
        font-size: 26px;
    }
    .product-detail-container .slider{
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: 180px;
    }
}

/*body-container*/
.body-container main{
    padding-top: calc((100svh - ((100svw - 33svw)/2))/2);
    padding-bottom: calc((100svh - ((100svw - 33svw)/2))/2);
    overflow: auto;
    max-height: 100svh;
}
.body-container.is-small-gap main{
    padding-top: calc((100svh - ((100svw - 44svw)/3))/2);
    padding-bottom: calc((100svh - ((100svw - 44svw)/3))/2);
}

@media (max-width: 767px){
    .body-container main{
        padding-top: calc((100svh - (100svw - 22svw))/2);
    }
    .product-detail-container .slider .slide-arrow{
        display: none!important;
    }
    .product-detail-container .txt{
        width: 100%;
    }
}

/*post*/
.post-container section{
    min-height: 100svh;
}
.post-container p{
    margin-bottom: 31px;
}
article p{
    font-size: 14px;
    line-height: 1.42;
}

/*about*/
.about.body-container main{
    padding-top: 0;
}
.about section{
    margin-bottom: 260px;
}
.about section:first-of-type{
    display: flex;
    justify-content: center;
    align-items: center;
}
.about section:last-of-type{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    min-height: auto;
}
.about article p{
    font-size: 18px;
    line-height: 1.66;
    margin-bottom: 1.66em;
    text-align: justify;
}
.about article p:last-of-type{
    margin-bottom: 0;
}
.about article .img{
    display: block;
}
.about article .img svg{
    letter-spacing: 0;
    font-feature-settings: normal;
    margin: 0 auto;
}
.about article p+.img{
    margin: 148px auto 0;
}
.about article .member{
    margin-bottom: 80px;
}
.about article .member:last-of-type{
    margin-bottom: 0;
}
.about article .member .name{
    font-size: 18px;
    line-height: 1.66;
    margin-bottom: 1.66em;
}

@media (max-width: 767px){
    .about article .member .name{
        font-size: 14px;
        line-height: 1.42;
        margin-bottom: 1.42em;
    }
    .about article p{
        font-size: 14px;
        line-height: 1.42;
        margin-bottom: 1.42em;
    }
    .about article .img{
        max-width: 300px;
    }
}

/*news*/
.news.news-archive main{
    padding-top: 0;
    padding-bottom: 0;
}
.news.news-archive .article{
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 37px 0;
}
.news.news-archive .article>article{
    width: 100%;
}
.news .news-content{
    font-size: 14px;
    margin-bottom: 58px;
}
.news .article article:last-of-type .news-content{
    margin-bottom: 0;
}
.news .news-content .title{
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}
.news .news-content .txt .link-lead{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}
.news .news-content p{
    margin-bottom: 1.42em;
    text-align: justify;
}
.news .news-content p:last-of-type{
    margin-bottom: 0;
}
.news .news-content figure{
    aspect-ratio: 1 / 1;
}
.news .news-content figure img{
    object-fit: cover;
}
.news .news-content p+figure{
    margin-top: 34px;
}
.news .news-content figure+p{
    margin-top: 34px;
}
.news .news-content figure+.date{
    margin-top: 34px;
}
.page-list{
    position: fixed;
    bottom: 37px;
    right: 37px;
    font-size: 36px;
    width: fit-content;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 8px;
    line-height: 1;
    z-index: 999;
}
.page-list li:first-of-type{
    position: relative;
    display: inline-block;
    width: 18px;
    height: 30px;
    transform: translateY(1px);
}
.page-list li:last-of-type{
    position: relative;
    display: inline-block;
    width: 18px;
    height: 30px;
    transform: translateY(1px);
}
.page-list li img{
    display: block;
    width: 100%;
}
.news-detail .news-content{
    margin-bottom: 0;
}
.news-content .thumbnail {
    margin-bottom: 20px;
}
.news-content .thumbnail img {
    width: 100%;
    height: auto;
}

@media (max-width: 767px){
    .page-list{
        right: 18px;
        font-size: 26px;
    }
    .page-list li:first-of-type,
    .page-list li:last-of-type{
        width: 12px;
        height: 20px;
    }
    .news .news-content{
        margin-bottom: 1.42em;
    }
}

/*stockist*/
.stockist-container{
    margin-bottom: 34px;
}
.stockist-container:last-of-type{
    margin-bottom: 0;
}
.prefecture{
    margin-bottom: 18px;
}
.stockist-container .stockist-content{
    margin-bottom: 18px;
}
.stockist-container .stockist-content:last-of-type{
    margin-bottom: 0;
}
.stockist-container .stockist-content a{
    text-decoration: underline;
}

/*contact*/
.contact main {
    padding-top: 0;
    padding-bottom: 0;
}
.contact .article {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 37px 0;
}
.contact section {
    width: 100%;
    margin: 0 auto;
}
.contact .form {
    width: 100%;
}
.contact .form .wp-block-snow-monkey-forms-item{
    margin-bottom: 32px;
}
.contact .form .wp-block-snow-monkey-forms-item:last-of-type {
    margin-bottom: 0;
}
.contact .form label,
.contact .form-group .h,
.smf-item__col--label {
    display: block;
    font-size: 14px;
    line-height: 1.42;
    margin-bottom: 4px;
}

/* フォーム入力要素の統一スタイル */
.contact .form input,
.contact .form textarea,
.snow-monkey-form input,
.snow-monkey-form textarea,
.snow-monkey-form select,
.snow-monkey-form .smf-text-control__control,
.snow-monkey-form .smf-textarea-control__control {
    max-width: 100%;
    width: 100%;
    padding: 8px;
    font-size: 14px;
    line-height: 1.42;
    border: 1px solid #000;
    border-radius: 0;
    font-family: "Zen Kaku Gothic New","Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    font-weight: 500;
}

.contact .form textarea{
    height: 155px;
    vertical-align: top;
}
.contact .form textarea:focus{
    outline: none;
}
.smf-action{
    display: flex;
    margin-bottom: 30px;
    gap: 10px;
}
.smf-action .smf-button-control+.smf-button-control {
    margin-left: 0!important;
}
.contact .smf-action button[type="submit"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 36px;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    margin-top: 10px;
    border: 1px solid #000;
    font-family: "見出ゴMB31", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    -webkit-appearance: none;
    border-radius: 0;
    padding: 0;
    background-image: none;
    font-size: 14px;
    line-height: 1.42;
    color: #000;
}
.contact .lead{
    margin-bottom: 32px;
    display: none;
}
[data-screen="confirm"] .lead{
    display: block;
}
[data-screen="confirm"] .smf-action{
    margin-top: 22px;
}
.contact label ~ span {
    display: none;
}
.contact label:has(input:user-invalid) ~ span {
    display: block;
    color: #E30920;
}
.contact label:has(textarea:user-invalid) ~ span {
    display: block;
    color: #E30920;
}
.smf-error-messages {
    font-family: "見出ゴMB31", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif!important;
    color: #E30920;
    font-size: 14px;
}
.contact form:has(input:invalid) .submit{
    opacity: 0.5;
    pointer-events: none;
}
.snow-monkey-form[data-screen="confirm"]+p,
.snow-monkey-form[data-screen="complete"]+p{
    display: none;
}

/* プレースホルダーテキストの統一スタイル */
.smf-placeholder,
.snow-monkey-form .smf-placeholder {
    font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    font-size: 14px;
    line-height: 1.42;
    font-weight: 500;
}

.form-bottom a{
    text-decoration: underline;
}

@media (max-width: 767px){
    .contact main{
        padding-top: calc((100svh - (100svw - 22svw)) / 2);
        padding-bottom: calc((100svh - (100svw - 22svw)) / 2);
    }
    .contact .article{
        display: block;
        padding: 0;
        min-height: fit-content;
    }
}

/*data-top,data-bottom*/
.data-top,
.data-bottom{
    display: none;
}
