/*---------------------------------------------------
 汎用
----------------------------------------------------*/

.px-12{
    padding-right: 12px;
    padding-left: 12px;
}

.px-20{
    padding-right: 20px;
    padding-left: 20px;
}

.py-10{
    padding-top: 10px;
    padding-bottom: 10px;
}

.gap-y-20{
    gap: 0 20px;
}

.gap-y-30{
    gap: 0 30px;
}

.lh-17{
    line-height: 1.7;
}

.ols-80{
    letter-spacing: 0.08em!important;
}

.rounded-10{
    border-radius: 10px;
}

.rounded-30{
    border-radius: 30px;
}

@media (min-width: 992px) {

    .px-lg-30{
        padding-right: 30px;
        padding-left: 30px;
    }

    .px-lg-40{
        padding-right: 40px;
        padding-left: 40px;
    }

    .gap-y-lg-20{
        gap: 0 20px;
    }

    .rounded-lg-10{
        border-radius: 10px!important;
    }

}

@media (min-width: 1200px) {

    .ofs-xl-39 { /* 50px */
        font-size: 3.125rem !important;
    }

}

.common-link-btn-between{
    max-width: 220px;
}

/*---------------------------------------------------
 loader
----------------------------------------------------*/

#content {
    transition: opacity .7s ease;
    will-change: opacity;
}

body.home #content {
    /*opacity: 0;*/
    /*transform: translateY(6px);*/
    pointer-events: none;
}

body.loader-fading #content {
    /*opacity: 1;*/
    /*transform: translateY(0);*/
}

body.loader-done #content {
    /*opacity: 1;*/
    /*transform: none;*/
    pointer-events: auto;
}

.top-fv {
    background: #fff;
}

.top-fv img {
    opacity: 0;
    transition: opacity .6s ease;
    will-change: opacity;
}

.top-fv img.is-ready {
    opacity: 1;
}

:root {
    --loader-fade-ms: 300ms
}

#loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100svh;
    min-height: 100vh;
    background-color: transparent;
    z-index: 10010;
    display: grid;
    place-items: center;
    opacity: 1;
    transition: opacity var(--loader-fade-ms) ease;
    will-change: opacity;
    touch-action: none;
    pointer-events: auto;
    overscroll-behavior: contain;
    overflow: hidden;
    contain: paint;
    isolation: isolate
}

#loader {
    height: 100vh;
}

@supports (height: 100dvh) {
    #loader {
        height: 100dvh;
    }
}

#loader.is-hide {
    opacity: 0;
    pointer-events: none
}

#loader.is-gone {
    display: none
}

#lottie {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden
}

@supports (height: 100svh) {
    #lottie{
        height: 100svh;
    }
}

@supports (height: 100dvh) {
    #lottie{
        height: 100dvh;
    }
}

#lottie > svg, #lottie > canvas, #lottie > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center
}




/*---------------------------------------------------
 フッターLINE
----------------------------------------------------*/

.footer-line-bg{
    background-image: url(../image/general/footer-line-bg-sp.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}

.footer-line-btn{
    width: 186px;
    height: auto;
    aspect-ratio: 1 / 1;
}

.footer-line-btn img, .footer-shop-btn img{
    width: 54px;
    height: 54px;
}

@media screen and (min-width: 768px) {
    .footer-line-bg{
        background-image: url(../image/general/footer-line-bg-tab.svg);
    }
}


@media screen and (min-width: 992px) {

    .footer-line-bg{
        background-image: url(../image/general/footer-line-bg-pc.svg);
    }

    .footer-line-btn{
        width: 234px;
    }
}


/*---------------------------------------------------
 TOP
----------------------------------------------------*/

/*テキストワイプアニメ*/

.wipe-anim {
    display: inline-block;
    transition: clip-path .6s ease-in-out;
    will-change: clip-path;
}

/* 左→右 */
.wipe-anim--lr {
    clip-path: inset(0 100% 0 0);
}

.wipe-anim--lr.is-in {
    clip-path: inset(0 0 0 0);
}

/* 右→左 */
.wipe-anim--rl {
    clip-path: inset(0 0 0 100%);
}

.wipe-anim--rl.is-in {
    clip-path: inset(0 0 0 0);
}

/* 上→下 */
.wipe-anim--tb {
    clip-path: inset(100% 0 0 0);
}

.wipe-anim--tb.is-in {
    clip-path: inset(0 0 0 0);
}

/* 下→上 */
.wipe-anim--bt {
    clip-path: inset(0 0 100% 0);
}

.wipe-anim--bt.is-in {
    clip-path: inset(0 0 0 0);
}

/* ===== スライド（任意で併用）— 定数指定 ===== */
/*.slide-anim{*/
/*    transform: translateY(100%);*/
/*    transition: transform .6s ease-in-out;*/
/*}*/

.slide-anim.is-in {
    transform: translateY(0);
}

/*テキストフェード&ブラーアニメ*/

.scroll-fade-blur {
    display: inline-block;
}

.scroll-fade-blur .char {
    opacity: 0;
    transform: translate3d(-4px, -4px, 0);
    filter: blur(0.2em);
    display: inline-block;

    transition-property: opacity, transform, filter;
    transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
    transition-delay: 0s;
}

.scroll-fade-blur.is-in .char {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
    letter-spacing: -0.2em;
}


/*テキストフェードアップアニメ*/

.scroll-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition-duration: 1.2s;
    transition: opacity .75s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.scroll-fade-up.is-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-group > .scroll-fade-up:nth-child(1) {
    transition-delay: 0.5s;
}
.scroll-fade-group > .scroll-fade-up:nth-child(2) {
    transition-delay: 0.7s;
}
.scroll-fade-group > .scroll-fade-up:nth-child(3) {
    transition-delay: 0.9s;
}

/*------*/

.top-fv{
    height: 100svh;
}

.top-topic-title::before{
    content: "";
    width: 11.5px;
    height: 10px;
    background-image: url(../image/general/nav-arrow-right.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: -24px;
    transform: translateY(-50%);
}

.parallax-frame{
    position: relative;
    overflow: hidden;
    border-radius: inherit;
}

.parallax-frame .parallax-img{
    display:block;
    width:100%;
    height: calc(100% + var(--overscan, 20%)); /* はみ出し量 */
    position: relative;
    top: calc(var(--overscan, 20%) / -2);      /* 真ん中基準にズラす */
    object-fit: cover;
    will-change: transform;
}

.parallax-about{
    aspect-ratio: 366 / 549;
}

.parallax-signboard{
    aspect-ratio: 366 / 200;
}

.top-product-page{
    position: relative;
}

.top-product-page picture img{
    height: 100vh;
    min-height: 880px;
    object-position: center bottom;
}

@supports (height: 100svh) {
    .top-product-page picture img{
        height: 100svh;
    }
}

@supports (height: 100dvh) {
    .top-product-page picture img{
        height: 100dvh;
    }
}

.top-product-content{
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 130px;
}

.top-footer{
    margin-top: -52px;
}

@media (max-width: 375px) {
    .top-product-page picture img {
        object-position: center top;
    }
}


@media (min-width: 992px) {

    .top-fv{
        height: 118svh;
    }

    .top-signboard-px{
        padding-left: 36px;
        padding-right: 36px;
    }

    .top-product-stack {
        position: relative!important;
    }

    .top-product-stack {
        overflow: visible !important;
        contain: none !important;
        transform: none !important;
        will-change: auto !important;
    }

    .top-product-pages {
        position: relative;
        height: calc(100vh * 1.392);
    }

    @supports (height: 100svh) {
        .top-product-pages {
            height: calc(100svh * 1.392);
        }
    }

    @supports (height: 100dvh) {
        .top-product-pages {
            height: calc(100dvh * 1.392);
        }
    }

    .top-product-page {
        position: absolute;
        inset: 0;
        overflow: hidden;
        will-change: transform;
    }

    .top-product-page picture img {
        width: 100%;
        height: 100%;
        min-height: unset;
        object-fit: cover;
        object-position: center bottom!important;
        display: block;
    }

    .top-product-page--1 {
        z-index: 3;
    }

    .top-product-page--2 {
        z-index: 2;
    }

    .top-product-page--3 {
        z-index: 1;
    }

    .parallax-about{
        aspect-ratio: 429 / 643;
    }

    .parallax-signboard{
        aspect-ratio: 1294 / 491;
    }

}

@media (min-width: 1200px) {

    .top-product-content{
        padding-top: 320px;
    }

}

@media (min-width: 1400px) {

    .top-signboard-px{
        padding-left: 12px;
        padding-right: 12px;
    }

}


/*---------------------------------------------------
 私たちについて
----------------------------------------------------*/

.about-top-bg {
    position: sticky;
    top: 0;
    height: 100vh;
}

@supports (height: 100svh) {
    .about-top-bg {
        height: 100svh;
    }
}

@supports (height: 100dvh) {
    .about-top-bg {
        height: 100dvh;
    }
}

.about-top-bg picture,
.about-top-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-top-pin-wrap {
    position: relative;
    overflow: visible !important;
}

.about-top-pin-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.about-top-pin-overlay.is-on {
    opacity: 1;
}

.about-top-pin-text-wrap {
    position: relative;
    z-index: 3;
}

.about-top-pin-overlay.is-on {
    opacity: 1;
}

.about-top-pin-wrap {
    display: grid;
}

.about-top-pin-wrap > * {
    grid-area: 1 / 1;
}

.about-top-pin-text-wrap {
    /*min-height: 250vh;*/
    display: flex;
    position: relative;
    z-index: 3;
}

.about-top-pin-text-wrap::before{
    content: "";
    width: 100%;
    height: auto;
    aspect-ratio: 390 / 86;
    background-image: url(../image/about/about-top-wave-sp.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -1px;
    left: 0;
}

.about-top-pin-text {
    width: 100%;
    padding-top: calc(100vh + 40px);
}

.about-top-pin,
.about-top-pin-wrap {
    overflow: visible;
}

.about-milk-wrap{
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: 663px;
    padding-left: 12px;
    padding-right: 12px;
}

.about-milk-wrap::before{
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform .3s ease;
    z-index: 0;
}

.about-milk-wrap-left::before {
    background-image: url(../image/about/about-milk-bg-left.jpg);
}
.about-milk-wrap-center::before {
    background-image: url(../image/about/about-milk-bg-center.jpg);
    background-position: center bottom;
}
.about-milk-wrap-right::before {
    background-image: url(../image/about/about-milk-bg-right.jpg);
}

.about-milk-wrap:hover::before {
    transform: scale(1.1);
}

.about-milk-wrap::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 1;
}

.about-milk-header,
.about-milk-content,
.about-milk-footer{
    z-index: 2;
}

.about-milk-content{
    max-width: 367px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    opacity: 0;
    transition-property: max-height, opacity;
}

.about-milk-wrap.is-open::after{
    opacity: 1;
}

.about-milk-wrap.is-open .about-milk-content{
    opacity: 1;
}

.about-milk-btn{
    width: 44px;
    height: 44px;
    transition: transform .3s ease;
    will-change: transform;
}

.about-milk-btn::before,
.about-milk-btn::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12.8px;
    height: 1px;
    background-color: #222;
    border-radius: 0.5px;
    transform: translate(-50%, -50%);
    transition: transform .3s ease, opacity .3s ease;
    transform-origin: center;
}

.about-milk-btn::after{
    transform: translate(-50%, -50%) rotate(90deg);
}

.about-milk-wrap:hover .about-milk-btn{
    transform: rotate(360deg);
}

.about-milk-wrap.is-open .about-milk-btn::after{
     opacity: 0;
}

/* --- */

.about-logo-trigger {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .6s ease, transform .6s ease;
}

.about-logo-trigger.is-sticky {
    opacity: 1;
    transform: translateY(0);
}

.about-logo-wrap{
    height: 100svh;
}

.about-logo-path{
    max-width: 238px;
    aspect-ratio: 238 / 119;
}

.about-logo-btn{
    width: 44px;
    height: 44px;
    transition: transform .3s ease;
}

.about-logo-btn::before,
.about-logo-btn::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12.8px;
    height: 1px;
    background-color: #222;
    border-radius: 0.5px;
    transform: translate(-50%, -50%);
    transition: transform .3s ease, opacity .3s ease;
    transform-origin: center;
}

.about-logo-btn::after{
    transform: translate(-50%, -50%) rotate(90deg);
}

.about-logo-trigger:hover .about-logo-btn{
    transform: rotate(360deg);
}

.modal{
    z-index: 10000;
}

.modal-backdrop.show {
    opacity: 0.25; /* デフォルトは 0.5 */
}

.about-logo-modal-bg {
    position: relative;
}

.about-logo-follow{
    position: sticky;
    top: 84px;
    height: 0;
    z-index: 10;
    pointer-events: none;
    overflow: visible;
}

.about-logo-float{
    position: absolute;
    top: -50px;
    right: 7px;
    pointer-events: auto;
}

.about-logo-modal-close{
    width: 44px;
    height: 44px;
    background-color: #fff!important;
    transition: all .3s ease;
}

.about-logo-modal-close::before,
.about-logo-modal-close::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12.8px;
    height: 1px;
    background-color: #222;
    border-radius: 0.5px;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform .3s ease, opacity .3s ease;
    transform-origin: center;
}

.about-logo-modal-close::after{
    transform: translate(-50%, -50%) rotate(135deg);
}

.about-logo-modal-close:hover{
    background-color: var(--color-light-gray)!important;
}

.about-logo-modal-path{
    max-width: 180px;
    aspect-ratio: 303 / 152;
}

.about-logo-modal-pb{
    height: 100px;
}


.about-staff-bg {
    position: sticky;
    top: 0;
    height: 100vh;
}

@supports (height: 100svh) {

    .about-staff-bg {
        height: 100svh;
    }

}

@supports (height: 100dvh) {
    .about-staff-bg {
        height: 100dvh;
    }
}

.about-staff-bg picture,
.about-staff-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-staff-pin-wrap {
    display: grid;
    overflow: visible;
    position: relative;
    z-index: 0;
}

.about-staff-pin-wrap > * {
    grid-area: 1 / 1;
}

.about-staff-pin-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity .3s linear;
    pointer-events: none;
    z-index: 2;
}

.about-staff-pin-overlay.is-on {
    opacity: 1;
}

.about-staff-pin-text-wrap {
    display: flex;
    position: relative;
    z-index: 3;
}

.about-staff-pin-text {
    width: 100%;
    padding-top: calc(100vh + 40px);
}

.about-staff-pin,
.about-staff-pin-wrap {
    overflow: visible;
}

.pane {
    position: sticky;
    top: -70%;
    min-height: 100svh;
}

.pane2 {
    z-index: 2;
    min-height: max-content;
}

.pane-gap {
    height: 0;
}


.about-store-wave{
    transform: translateY(1px);
    min-width: 100vw;
}

.about-store-bg{
    background-color: #fcfcfc;
    padding-bottom: 26px;
}

.about-store-img{
    aspect-ratio: 366 / 234.5;
}

.about-store-desc{
    padding-left: 28px;
}

.about-store-map::before{
    content: "";
    width: 14.2px;
    height: 19.2px;
    background-image: url(../image/about/about-store-icon-map.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translate(-100%, -50%);
}

.about-store-tel::before{
    content: "";
    width: 14.5px;
    height: 14.5px;
    background-image: url(../image/about/about-store-icon-tel.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translate(-100%, -50%);
}

.about-store-hour::before{
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../image/about/about-store-icon-clock.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translate(-100%, -50%);
}

.about-footer .footer-line{
    background-color: #fcfcfc
}

.google-map {
    position: relative;
    display: inline-block;
    width: 3.8px;
    height: 6.7px;
}

.google-map::before,
.google-map::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 0;
    width: 5px;
    height: 1px;
    background-color: #000000;
    transform-origin: calc(100% - 0.5px) 50%;
}

.google-map::before {
    transform: rotate(45deg);
}

.google-map::after {
    transform: rotate(-45deg);
}

@media (min-width: 768px) {
    .pane {
        top: -50%;
    }
}

@media (max-width: 991.98px) {
    .about-top-pin-overlay,
    .about-staff-pin-overlay {
        position: absolute;
    }
}


@media (min-width: 992px){

    .about-top-mt{
        margin-top: -80px;
    }

    .about-top-pin-overlay {
        position: absolute;
    }

    .about-top-pin-text-wrap {
        min-height: 225vh;
    }

    .about-top-pin-text-wrap::before{
        content: "";
        aspect-ratio: 1366 / 278;
        background-image: url(../image/about/about-top-wave-pc.svg);
    }

    .about-logo-follow{
        top: 70px;
    }

    .about-logo-float {
        top: -14px;
        right: 52px;
    }

    .about-logo-path{
        max-width: 303px;
    }

    .about-logo-modal-path{
        max-width: 294px;
    }

    .about-staff-pin-text-wrap {
        min-height: 225vh;
    }

    .pane {
        top: -50%;
    }

    .about-store-bg{
        min-height: 50vh;
        padding-bottom: 200px;
    }

    @supports (height: 100svh) {
        .about-store-bg{
            min-height: 50svh;
        }
    }

    @supports (height: 100dvh) {
        .about-store-bg{
            min-height: 50dvh;
        }
    }
}

@media (min-width: 1400px){
    .pane {
        top: -40%;
    }
}


/*---------------------------------------------------
 商品紹介
----------------------------------------------------*/

.prod-thumb-img{
    aspect-ratio: 339 / 226!important;
    object-fit: cover;
    object-position: center;
    flex: 0 0 auto;
    width: 100%;
    height: auto;
}

.prod-card{
    min-height: 100%;
}

.prod-main{
    margin-bottom: 3.75rem;
}

.prod-main-img {
    width: 100%;
    height: 100vh;
}

@supports (height: 100svh) {
    .prod-main-img{
        height: 100svh;
    }
}

@supports (height: 100dvh) {
    .prod-main-img{
        height: 100dvh;
    }
}

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

.prod-main-txt {
    border-radius: 12px;
    padding-top: 40px;
}

.prod-main-desc p{
    margin-bottom: 34px;
}

.prod-content h2{
    font-size: 1.5rem !important;
    letter-spacing: 0.1em !important;
    line-height: 35px;
    margin-bottom: 1.5rem;
}

.prod-content h3{
    font-size: 1.25rem !important;
    letter-spacing: 0.1em !important;
    line-height: 24px;
}

.prod-content p{
    font-size: 1rem !important;
    letter-spacing: 0;
    line-height: 27px;
    margin-bottom: 0;
}

.prod-content img{
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.prod-swiper-feedback .swiper-slide {
    width: 263px;
    flex-shrink: 0;
    overflow: visible;
}

.prod-swiper-feedback{
    width: 100%;
}

.prod-swiper-feedback .swiper-slide{
    width: 263px;
    flex-shrink: 0;
    overflow: visible;
}

.feedback-item{
    padding: 58px 20px 50px;
    border-radius: 70px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feedback-item::before{
    content: "";
    background-image: url(../image/product/prod-feedback-tail.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 30px;
    height: 27.5px;
    position: absolute;
    bottom: 0.1px;
    left: 50%;
    transform: translate(-50%, 100%);
}

.prod-swiper-controls-wrapper{
    top: 0;
    left: 50%;
}

.translate-x-center {
    transform: translateX(-50%);
}

.prod-swiper-feedback-controls {
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-3%);
    pointer-events: none;
    z-index: 5;
    gap: 0 30px;
}

.prod-swiper-feedback-button-prev,
.prod-swiper-feedback-button-next {
    width: 42px;
    height: 42px;
    pointer-events: auto;
    position: relative;
    cursor: pointer;
}

.prod-swiper-feedback-button-prev::before,
.prod-swiper-feedback-button-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13.5px;
    height: 12px;
    background-image: url(../image/general/swiper-arrow-left.svg);
    background-size: cover;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
}

.prod-swiper-feedback-button-next::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.allergen-table-wrap{
    border-radius: 60px;
}

.allergen-table{
    border-collapse: collapse;
    table-layout: fixed;
    text-align: center;
    width: 100%;
}

.allergen-table tr{
    height: 38px;
}

.allergen-table th,
.allergen-table td {
    border: 1px solid var(--color-gray);
}

.allergen-table th:first-child,
.allergen-table td:first-child {
    border-left: none;
}

.allergen-table th:last-child,
.allergen-table td:last-child {
    border-right: none;
}

.allergen-table thead tr:first-child th {
    border-top: none;
}

.allergen-table tbody tr:last-child td {
    border-bottom: none;
}

.prod-swiper-other .swiper-slide{
    width: 318px;
}

.prod-nav-fixed {
    position: fixed;
    bottom: 8px;
    padding: 12px 0;
    z-index: 50;
}

.prod-nav-frame{
    height: 60px;
}

.prod-nav-fixed .prod-nav-btn {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    font-size: .9rem;
    transition: all .3s ease;
}

.prod-nav-fixed .prod-nav-btn.disabled {
    opacity: .3;
    pointer-events: none;
}


@media (min-width: 768px) {
    .prod-main {
        display: grid;
        grid-template-columns: minmax(0, 3fr) minmax(0, 4fr);
        height: 100svh;
        max-height: 800px;
        margin-bottom: 9.375rem;
    }

    .prod-main-img {
        height: 100%;
        max-height: 800px;
    }

    .prod-main-img > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .prod-main-right {
        min-width: 0;
        height: 100%;
        max-height: 800px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .prod-main-right .container {
        max-height: max-content;
    }

    .prod-main-txt {
        max-height: 100svh;
        overflow: auto;
        scrollbar-width: none;
        padding-top: 31.4svh;
        padding-bottom: 7svh;
    }

    .prod-main-txt::-webkit-scrollbar {
        display: none;
    }

}


@media (min-width: 992px) {

    .prod-swiper-controls-wrapper{
        top: 70px;
    }

    .allergen-table{
        height: fit-content;
    }

    .allergen-table-wrap {
        border-radius: 70px;
    }

    .allergen-table:first-child{
        border-right: 1px solid var(--color-gray);
    }

    .prod-swiper-other .swiper-slide{
        width: 340px;
    }

    .prod-nav-fixed{
        bottom: 18px;
    }

    .sgl-prod-footer{
        margin-top: -40px;
    }

}

@media (min-width: 1200px) {

    .prod-main {
        max-height: unset;
    }

    .prod-main-img {
        max-height: unset;
    }

    .prod-main-right {
        max-height: unset;
    }

}

@media (min-width: 1400px) {
    .prod-main {
        max-height: 1200px;
        margin-bottom: 12.5vw;
    }

    .prod-main-img {
        max-height: 1200px;
    }

    .prod-main-right {
        max-height: 1200px;
    }
}

/*---------------------------------------------------
 お知らせ
----------------------------------------------------*/

.tag-btn {
    gap: 16px 10px;
}

.tag-btn a{
    min-width: 102px;
    height: 32px;
}

.tag-btn a.active {
    border: none !important;
    background-color: var(--color-gray) !important;
    transition: .3s;
}

.tag-btn a.active span {
    color: white !important;
}

.custom-pagination .pagination-rail {
    grid-template-columns: 12px 250px 12px;
    align-items: center;
    justify-content: center;
    gap: 27px;
}

.custom-pagination .pager-btn {
    width: 12px;
    height: 26px;
}

.custom-pagination .pager-btn img {
    display: block;
    width: 12px;
    height: 10px;
}

.custom-pagination .pager-btn.is-disabled {
    opacity: .3;
    pointer-events: none;
}

.custom-pagination .pagination-item a,
.custom-pagination .pagination-item span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 26px;
    height: 26px;
    padding: 0 8px;
    color: #cbcbcb!important;
}

.custom-pagination .pagination-item a:hover {
    color: var(--color-gray)!important;
}

.custom-pagination .pagination-item .current {
    color: var(--color-gray)!important;
}

.news-content p{
    line-height: 27px;
    margin-bottom: 26px;
}

.news-nav-btn.disabled{
    visibility: hidden;
    pointer-events: none;
}

.arc-news-footer{
    margin-top: -50px;
}


@media (min-width: 992px) {
    .tag-btn {
        gap: 20px;
    }

    .tag-btn a{
        min-width: 142px;
    }

    .arc-news-footer{
        margin-top: 0;
    }
}

/*---------------------------------------------------
 NEW MAGAZINE
----------------------------------------------------*/

.new-magazine-thumb-img{
    aspect-ratio: 356 / 237;
    object-fit: cover;
    object-position: center;
    flex: 0 0 auto;
    width: 100%;
    height: auto;
}

.new-magazine-card{
    min-height: 100%;
}

.arc-nm-footer{
    margin-top: -50px;
}

.archive-link-btn{
    position: absolute;
    bottom: 0;
    left: 12px;
    transform: translateY(100%);
}

.new-magazine-content figure{
    margin-bottom: 40px;
}

.new-magazine-content p{
    line-height: 27px;
    margin-bottom: 40px;
}

.new-magazine-content img {
    border-radius: 5px;
}

@media (max-width: 340px) {
    .new-magazine-ttl-pt{
        padding-top: 90px!important;
    }

    .new-magazine-ttl-mb{
        margin-bottom: 14vw!important;
    }

    .new-magazine-ttl-desc{
        font-size: 3.5vw!important;
        line-height: 2!important;
    }
}

@media (max-width: 768px) {
    .new-magazine-post-px{
        padding-left: 6px!important;
        padding-right: 6px!important;
    }
}

@media (min-width: 992px) {
    .arc-nm-footer{
        margin-top: -20px;
    }

    .sgl-nm-footer{
        margin-top: -40px;
    }
}

/*---------------------------------------------------
 よくあるご質問
----------------------------------------------------*/

.faq-question::before{
    content: "Q";
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1;
    padding-right: 20px;
    transform: translateY(-10%);
}

/*---------------------------------------------------
 お問い合わせ
----------------------------------------------------*/

.form-control{
    background-color: #f7f7f7!important;
}

.contact-btn{
    max-width: 220px;
}

/*---------------------------------------------------
 404・thanks
----------------------------------------------------*/

.pt-404{
    padding-top: 220px;
}

.fs-404{
    font-size: 140px;
}

.thanks-path{
    max-width: 460px;
}