html {
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 62.5%;
    font-feature-settings: "palt";
    letter-spacing: 0.06em;
    color: #333333;
    font-weight: 400;
    z-index: 1;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
}

.ttl__comp {
    font-size: 2rem;
    font-weight: 200;
    line-height: 1.5;
    letter-spacing: 0.12em;
}

.txt__comp {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.12em;
}

.num__comp {
    font-family: "Montserrat", sans-serif;
}

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

    .ttl__comp {
        font-size: 2.2rem;
        font-weight: 200;
        line-height: 2;
    }

    .txt__comp {
        font-size: 1.6rem;
        letter-spacing: 0.24em;
        line-height: 2;

    }
}


/* ==========================
// common subpage style
========================== */

:root {
    --color-main: #1C208E;
    --color-bg_gray: #F5F5F5;
}


/* 1920px以上 → 等倍表示 */
@media screen and (min-width: 1921px) {
    html {
        font-size: 10px;
        /* 10 / 1920 * 100 */
    }

    .layout-container {
        width: 1366px;
        margin: auto;
        transform: none;
    }
}

/* 1441px〜1920px → 1920px固定、スケーリングなし、見切れOK */
@media screen and (max-width: 1920px) and (min-width: 1441px) {
    html {
        font-size: 10px;
    }

    .layout-container {
        width: 1366px;
        margin: auto;
        transform: none;
    }
}

/* 768px〜1440px → 1366pxを縮小スケーリング表示 */
@media screen and (max-width: 1440px) and (min-width: 768px) {
    html {
        font-size: 10px;
    }

    .layout-container {
        max-width: 1366px;
        width: 100%;
    }
}

@media screen and (max-width: 1200px) and (min-width: 766px) {
    html {
        font-size: 0.833vw;
    }
}

/* ～767px → 750px 等倍 */
@media screen and (max-width: 767px) {
    html {
        font-size: 2.666vw;
        /* 10 / 750 * 100 */
    }

    .layout-container {
        width: 100%;
        transform: none;
    }
}

.main__wrap {
    position: relative;
    margin-top: 8rem;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.sp_only {
    display: none !important;
}

@media screen and (max-width:767px) {
    .pc_only {
        display: none !important;
    }

    .sp_only {
        display: block !important;
    }
}

/* ========== splide ========== */

.splide__pagination {
    bottom: 1.25em;
}

.splide__pagination__page {
    margin: 0 0.8rem;
    opacity: 0.8;
    background-color: #fff;
}

.splide__pagination__page.is-active {
    background-color: transparent;
    border: 2px solid #fff;
    transform: scale(2.2);

}

/* ========== bg-blob ========== */

.bg-wrapper {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.bg-blob {
    position: absolute;
    width: 20rem;
    aspect-ratio: 1/1;
    background: #1D2088;
    opacity: 0.3;
    will-change: top, right, left, border-radius, filter, opacity, transform;
}

/* blob1: top/leftで動かす例 */
.blob1 {
    top: 10%;
    left: 5%;
    animation: blobMove1 25s ease-in-out infinite alternate;
}

/* blob2: top/rightで動かす例 */
.blob2 {
    top: 80%;
    right: 10%;
    animation: blobMove2 25s ease-in-out infinite alternate;
}

/* blob3: top/leftで動かす例 */
.blob3 {
    top: 40%;
    left: 90%;
    animation: blobMove3 25s ease-in-out infinite alternate;
}

@keyframes blobMove1 {
    0% {
        top: 5%;
        left: 5%;
        border-radius: 45% 55% 65% 35%;
        filter: blur(24px);
        opacity: 0.3;
        transform: scale(0.8);
    }

    25% {
        top: 30%;
        left: 9%;
        border-radius: 70% 30% 60% 40%;
        filter: blur(22px);
        opacity: 0.1;
        transform: scale(1.0);
    }

    50% {
        top: 25%;
        left: 13%;
        border-radius: 50% 70% 40% 60%;
        filter: blur(29px);
        opacity: 0.4;
        transform: scale(0.7);
    }

    75% {
        top: 10%;
        left: 8%;
        border-radius: 60% 45% 50% 70%;
        filter: blur(27px);
        opacity: 0.2;
        transform: scale(0.8);
    }

    100% {
        top: 5%;
        left: 5%;
        border-radius: 45% 55% 65% 35%;
        filter: blur(25px);
        opacity: 0.3;
        transform: scale(0.8);
    }
}

@keyframes blobMove2 {
    0% {
        top: 80%;
        right: 10%;
        border-radius: 55% 40% 60% 50%;
        filter: blur(23px);
        opacity: 0.4;
        transform: scale(1.5);
    }

    25% {
        top: 70%;
        right: 12%;
        border-radius: 45% 60% 55% 35%;
        filter: blur(28px);
        opacity: 0.3;
        transform: scale(1.2);
    }

    50% {
        top: 90%;
        right: 8%;
        border-radius: 65% 50% 40% 60%;
        filter: blur(21px);
        opacity: 0.2;
        transform: scale(0.9);
    }

    75% {
        top: 85%;
        right: 11%;
        border-radius: 50% 70% 60% 40%;
        filter: blur(29px);
        opacity: 0.4;
        transform: scale(1.4);
    }

    100% {
        top: 80%;
        right: 10%;
        border-radius: 55% 40% 60% 50%;
        filter: blur(24px);
        opacity: 0.3;
        transform: scale(1.5);
    }
}

@keyframes blobMove3 {
    0% {
        top: 40%;
        left: 60%;
        border-radius: 50% 50% 40% 70%;
        filter: blur(25px);
        opacity: 0.3;
        transform: scale(0.5);
    }

    25% {
        top: 10%;
        left: 87%;
        border-radius: 70% 60% 50% 30%;
        filter: blur(30px);
        opacity: 0.2;
        transform: scale(0.7);
    }

    50% {
        top: 60%;
        left: 71%;
        border-radius: 60% 45% 70% 50%;
        filter: blur(20px);
        opacity: 0.3;
        transform: scale(1.2);
    }

    75% {
        top: 30%;
        left: 65%;
        border-radius: 40% 50% 60% 70%;
        filter: blur(27px);
        opacity: 0.2;
        transform: scale(0.8);
    }

    100% {
        top: 40%;
        left: 60%;
        border-radius: 50% 50% 40% 70%;
        filter: blur(25px);
        opacity: 0.3;
        transform: scale(0.5);
    }
}



@media screen and (min-width: 767px) {
    .bg-blob {
        width: 70rem;
    }


    @keyframes blobMove1 {
        0% {
            top: 30%;
            left: 5%;
            border-radius: 45% 55% 65% 35%;
            filter: blur(75px);
            opacity: 0.3;
            transform: scale(0.8);
        }

        25% {
            top: 20%;
            left: 50%;
            border-radius: 70% 30% 60% 40%;
            filter: blur(70px);
            opacity: 0.1;
            transform: scale(1.0);
        }

        50% {
            top: 50%;
            left: 120%;
            border-radius: 50% 70% 40% 60%;
            filter: blur(65px);
            opacity: 0.1;
            transform: scale(0.2);
        }

        75% {
            top: 10%;
            left: 30%;
            border-radius: 60% 45% 50% 70%;
            filter: blur(60px);
            opacity: 0.2;
            transform: scale(0.4);
        }

        100% {
            top: 30%;
            left: 5%;
            border-radius: 45% 55% 65% 35%;
            filter: blur(75px);
            opacity: 0.3;
            transform: scale(0.8);
        }
    }

    @keyframes blobMove2 {
        0% {
            top: 40%;
            right: 10%;
            border-radius: 55% 40% 60% 50%;
            filter: blur(60px);
            opacity: 0.4;
            transform: scale(0.7);
        }

        25% {
            top: 70%;
            right: 40%;
            border-radius: 45% 60% 55% 35%;
            filter: blur(75px);
            opacity: 0.1;
            transform: scale(1.2);
        }

        50% {
            top: 5%;
            right: 60%;
            border-radius: 65% 50% 40% 60%;
            filter: blur(65px);
            opacity: 0.3;
            transform: scale(0.9);
        }

        75% {
            top: 30%;
            right: 80%;
            border-radius: 50% 70% 60% 40%;
            filter: blur(60px);
            opacity: 0.1;
            transform: scale(1.4);
        }

        100% {
            top: 40%;
            right: 10%;
            border-radius: 55% 40% 60% 50%;
            filter: blur(60px);
            opacity: 0.1;
            transform: scale(1.5);
        }
    }

    @keyframes blobMove3 {
        0% {
            top: 40%;
            left: 90%;
            border-radius: 50% 50% 40% 70%;
            filter: blur(55px);
            opacity: 0.1;
            transform: scale(0.8);
        }

        25% {
            top: 10%;
            left: 60%;
            border-radius: 70% 60% 50% 30%;
            filter: blur(75px);
            opacity: 0.2;
            transform: scale(0.5);
        }

        50% {
            top: 60%;
            left: 40%;
            border-radius: 60% 45% 70% 50%;
            filter: blur(65px);
            opacity: 0.3;
            transform: scale(1.2);
        }

        75% {
            top: 20%;
            left: 30%;
            border-radius: 40% 50% 60% 70%;
            filter: blur(60px);
            opacity: 0.2;
            transform: scale(0.5);
        }

        100% {
            top: 40%;
            left: 90%;
            border-radius: 50% 50% 40% 70%;
            filter: blur(55px);
            opacity: 0.1;
            transform: scale(0.8);
        }
    }


}



/* ========== header ========== */


/* ヘッダー */
.header {
    width: 100vw;
    height: 6rem;
    margin-bottom: 6rem;
    margin-left: calc(50% - 50vw);
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    mix-blend-mode: exclusion;
}


.header .logo {
    width: 15rem;
    color: #1D2088;
}



/* メニューボタン */
.layout-container:has(.menu-overlay.active) .header .logo {
    color: #fff;
}

.layout-container:has(.menu-overlay.active) .header {
    mix-blend-mode: initial;
    color: #fff;
}

.layout-container:has(.menu-overlay.active) .menu-button .menu-line span {
    background-color: #fff;
}


.menu-button {
    color: #1C208E;
    font-size: 1.3rem;
    font-weight: 300;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.menu-button .menu-line {
    margin-left: 0.8rem;
    position: relative;
    width: 1.25rem;
    height: 1rem;
}

.menu-button .menu-line span {
    position: absolute;
    /* ← 追加！ */
    left: 0;
    top: 0;
    width: 100%;
    height: 0.15rem;
    background-color: #1C208E;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.menu-button .menu-line span:nth-child(2) {
    width: 70%;
    top: 0.5rem;
    left: 0.3rem;
}

/* アクティブ時の変形 */
.menu-button.active .menu-line span:nth-child(1) {
    transform: rotate(45deg);
    top: 0.5rem;
}

.menu-button.active .menu-line span:nth-child(2) {
    width: 100%;
    transform: rotate(-45deg);
    top: 0.5rem;
    left: 0rem;

}

/* オーバーレイメニュー */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem 2rem;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-overlay::after {
    content: "";
    position: absolute;
    top: 4.8%;
    left: 93.4%;
    width: 10px;
    height: 10px;
    background-color: #1C208E;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease-in-out;
    z-index: -1;
}

.menu-overlay.active::after {
    transform: translate(-50%, -50%) scale(300);
    /* or scale(200) for large screens */
}

.menu-overlay.after-hidden::after {
    transform: translate(-50%, -50%) scale(0);
}

/* メニュー項目 */
.menu-nav {
    display: contents;
}

.menu-nav ul {
    list-style: none;
}

.menu__nav-main li {
    margin-bottom: 2rem;
}

.menu-nav a {
    color: white;
    text-decoration: none;
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 0.05rem;
    transition: opacity 0.3s ease;
    display: block;
}

.menu-nav a:hover {
    opacity: 0.7;
}

/* サブメニュー */
.menu__nav-sub {
    margin-top: 2rem;
    padding-top: 1rem;
}

.menu__nav-sub li {
    margin-bottom: 1rem;
}

.menu__nav-sub a {
    font-size: 1.4rem;
    font-weight: 300;
}

/* SNSアイコン */
.menu__nav-sns {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.menu__nav-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.menu__nav-sns svg {
    width: 4.2rem;
    height: 4.2rem;
    fill: white;
}

/* menu active */
.menu__nav-main li {
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s ease;
}

.menu-button.active .menu-text {
    color: #fff;
}

.menu-overlay.active .menu__nav-main li {
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay.active .menu__nav-main li:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-overlay.active .menu__nav-main li:nth-child(2) {
    transition-delay: 0.2s;
}

.menu-overlay.active .menu__nav-main li:nth-child(3) {
    transition-delay: 0.3s;
}

.menu-overlay.active .menu__nav-main li:nth-child(4) {
    transition-delay: 0.4s;
}

.menu__nav-sub li {
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s ease;
}

.menu-overlay.active .menu__nav-sub li {
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay.active .menu__nav-sub li:nth-child(1) {
    transition-delay: 0.5s;
}

.menu-overlay.active .menu__nav-sub li:nth-child(2) {
    transition-delay: 0.6s;
}

.menu-overlay.active .menu__nav-sub li:nth-child(3) {
    transition-delay: 0.7s;
}

.menu__nav-sns {
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s ease;

}

.menu-overlay.active .menu__nav-sns {
    opacity: 1;
    transform: translateY(0);
}


@media screen and (min-width: 767px) {
    .header {
        top: 1rem;
        padding: 2rem 2.6rem;
    }

    .header .logo {
        width: 24rem;
    }

    .menu-button {
        font-size: 1.8rem;
    }

    .menu-nav {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-nav-inner {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        column-gap: 7rem;
    }

    .menu__nav-img {
        width: 40rem;
        opacity: 0;
        transform: translateY(1rem);
        transition: all 0.3s ease-in-out;
    }

    .menu-overlay.active .menu__nav-img {
        opacity: 1;
        transform: translateY(0);
        transition: all 1s ease-in-out;
    }

    .menu-nav a {
        letter-spacing: 0.5rem;
    }

    .menu__nav-main {
        margin-bottom: 10rem;
    }

    .menu__nav-sub {
        display: flex;
        column-gap: 2.8rem;
    }

    .menu__nav-sns {
        column-gap: 2.8rem;

    }

    .menu-overlay.active::after {
        transform: translate(-50%, -50%) scale(550);
    }

    .menu-overlay::after {
        top: 4.8%;
        left: 98.1%;
    }

}

/* ========== shoplist ========== */

.common__shoplist {
    margin-top: 7rem;
}

.common__shoplist h2 {
    position: relative;
    width: fit-content;
    margin: auto;
}

.common__shoplist ul {
    margin-top: -1rem;
    padding: 0 1rem;
}

.common__shoplist__cont {
    margin-bottom: 4rem;
}

.common__shoplist__cont:nth-child(odd) .common__shoplist__item {
    margin-right: 1rem;
    margin-left: -1rem;
    border-radius: 0 10px 10px 0;
}

.common__shoplist__cont:nth-child(even) .common__shoplist__item {
    margin-right: -1rem;
    margin-left: 1rem;
    border-radius: 10px 0 0 10px;
}

.common__shoplist__cont:nth-child(odd) .common__shoplist__item img {
    border-radius: 0 10px 10px 0;
}

.common__shoplist__cont:nth-child(even) .common__shoplist__item img {
    border-radius: 10px 0 0 10px;
}

.common__shoplist__item-txtwrap.txt__comp .common__shoplist__name,
.common__shoplist__item-txtwrap.txt__comp .common__shoplist__address,
.common__shoplist__item-txtwrap.txt__comp .common__shoplist__tel,
.common__shoplist__item-txtwrap.txt__comp .common__shoplist__tel span,
.common__shoplist__item-txtwrap.txt__comp .common__shoplist__open-hour,
.common__shoplist__item-txtwrap.txt__comp .common__shoplist__open-time {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 100;
}

.common__shoplist__item-txtwrap.txt__comp {
    display: flex;
    align-items: end;
    background-color: var(--color-main);
    border-radius: 10px;
    margin-top: -10rem;
    padding: 2rem;
    padding-top: 12rem;
}


.common__shoplist__item-txtwrap .button__comp {
    transform: translate(2rem, 2rem);
}


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

    .common__shoplist {
        position: relative;
    }

    .common__shoplist h2 {
        position: absolute;
        z-index: 101;
        top: -7%;
        left: 14%;
    }


    .common__shoplist__item {
        position: relative;
        flex-shrink: 0;
        width: 70vw;
        height: auto;
        display: block;
        object-fit: cover;
        padding-bottom: 3rem;
    }

    .common__shoplist__item::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: -1rem;
        width: 60vw;
        max-width: 88rem;
        height: 80%;
        background-color: #1D2088;
        border-radius: 0 0 0 10px;
        z-index: 1;
    }

    .common__shoplist__item img {
        position: relative;
        z-index: 3;
        min-height: 48rem;
        object-fit: cover;
    }

    .common__shoplist__cont:nth-child(odd) .common__shoplist__item img {
        border-radius: 0 10px 10px 0;
    }

    .common__shoplist__cont:nth-child(even) .common__shoplist__item img {
        border-radius: 10px 0 0 10px;
    }

    .common__shoplist__item-txt {
        width: 80%;
        letter-spacing: 0.1em;
    }


    .common__shoplist__item-txtwrap.txt__comp .common__shoplist__name {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .common__shoplist__item-txtwrap.txt__comp .common__shoplist__address,
    .common__shoplist__item-txtwrap.txt__comp .common__shoplist__tel {
        margin-bottom: 1.2rem;
    }

    .common__shoplist__cont {
        display: flex;
        position: relative;
        margin: 7rem 0;
    }

    .common__shoplist__cont:nth-child(even) {
        flex-direction: row-reverse;
    }

    .common__shoplist__cont:nth-child(odd) .common__shoplist__item {
        margin-right: 0;
        border-radius: 0 10px 10px 0;
        width: 80vw;
        margin-left: calc(-50vw + 50%);
        z-index: 100;
        flex: 1;
        max-width: initial;
    }

    .common__shoplist__cont:nth-child(even) .common__shoplist__item {
        margin-left: -1rem;
        border-radius: 10px 0 0 10px;
        width: 80vw;
        margin-right: calc(-50vw + 50%);
        z-index: 100;
        flex: 1;
        max-width: initial;
    }

    .common__shoplist__cont:nth-child(even) .common__shoplist__item-txtwrap.txt__comp {
        border-radius: 10px 0 0 10px;
    }

    .common__shoplist__cont:nth-child(even) .common__shoplist__item::after {
        left: 0rem;
        width: 60vw;
        border-radius: 0 0 10px 0;
    }

    .common__shoplist__item-txtwrap {
        position: relative;
        z-index: 1;
    }

    .common__shoplist__item-txtwrap.txt__comp {
        min-width: 26rem;
        margin-top: 10rem;
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: flex-start;
        padding: 0;
        padding-top: 8rem;
        padding-left: 2rem;
        padding-bottom: 4rem;
        border-radius: 0 10px 10px 0;
    }

    .common__shoplist__item-txtwrap .button__comp {
        margin-left: 2.6rem;
    }
}




/* ========== button__comp ========== */
.button__comp {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: fit-content;
    margin-left: auto;
    height: 8rem;
    /* 描画領域を制御して空白問題を解決 */
    contain: layout style;
    isolation: isolate;
    /* スタッキングコンテキストを作成 */
}

.circle-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    flex-shrink: 0;
    /* サイズを固定 */
}

/* 外側の円 */
.circle-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: conic-gradient(from 315deg, #1C208E 0% 75%, transparent 0% 100%);
    /* より効率的なマスク指定 */
    mask-image: radial-gradient(circle,
            transparent 47%,
            rgba(0, 0, 0, 0.1) 48%,
            black 48.5%,
            black 50%,
            rgba(0, 0, 0, 0.1) 50.5%,
            transparent 51%);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
    -webkit-mask-image: radial-gradient(circle,
            transparent 47%,
            rgba(0, 0, 0, 0.1) 48%,
            black 48.5%,
            black 50%,
            rgba(0, 0, 0, 0.1) 50.5%,
            transparent 51%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    contain: layout style paint;
}

@property --progress {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 0%;
}

/* 内側の円（アニメーション用） */
.circle-inner {
    --progress: 0%;
    position: absolute;
    top: 0.1rem;
    /* 外側の円より少し内側 */
    left: 0.1rem;
    width: 7.8rem;
    height: 7.8rem;
    border-radius: 50%;
    background: conic-gradient(from 315deg, #1C208E 0% var(--progress), transparent 0% 100%);
    /* より効率的なマスク指定 */
    mask-image: radial-gradient(circle,
            transparent 46.5%,
            rgba(0, 0, 0, 0.05) 47.5%,
            rgba(0, 0, 0, 0.2) 48%,
            rgba(0, 0, 0, 0.6) 48.3%,
            black 48.5%,
            black 50%,
            rgba(0, 0, 0, 0.6) 50.2%,
            rgba(0, 0, 0, 0.2) 50.5%,
            rgba(0, 0, 0, 0.05) 51%,
            transparent 52%);

    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
    -webkit-mask-image: radial-gradient(circle,
            transparent 46.5%,
            rgba(0, 0, 0, 0.05) 47.5%,
            rgba(0, 0, 0, 0.2) 48%,
            rgba(0, 0, 0, 0.6) 48.3%,
            black 48.5%,
            black 50%,
            rgba(0, 0, 0, 0.6) 50.2%,
            rgba(0, 0, 0, 0.2) 50.5%,
            rgba(0, 0, 0, 0.05) 51%,
            transparent 52%);

    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    transition: --progress 0.4s ease;
    contain: layout style paint;
}

.button__comp:hover .circle-inner {
    --progress: 75%;
}

/* 矢印を円の中央に配置 */
.button__comp .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2rem;
    transition: transform 0.3s ease;
    z-index: 10;
    contain: layout style;
}

.button__comp .arrow svg {
    display: block;
    width: 100%;
    height: auto;
}

.button__comp:hover .arrow {
    transform: translate(calc(-50% + 3px), -50%);
}

.button__txt {
    position: absolute;
    left: calc(40% * -0.72);
    transform: translateX(calc(-100% + 4.5rem));
    white-space: nowrap;
    contain: layout style;
    z-index: 1;
}

/* ========== button__comp-white ========== */
.button__comp.button__white .circle-outer {
    background: conic-gradient(from 315deg, #fff 0% 75%, transparent 0% 100%);
}

.button__comp.button__white .circle-inner {
    background: conic-gradient(from 315deg, #fff 0% var(--progress), transparent 0% 100%);
}

.button__comp.button__white:hover .arrow::after {
    border-color: #fff;
}

/* レスポンシブ対応 */
@media screen and (min-width: 768px) {

    .button__txt {
        transform: translateX(calc(-100% + 6rem));
    }

    .button__comp {
        height: 10rem;
    }

    .circle-container {
        width: 10rem;
        height: 10rem;
    }

    .circle-outer {
        width: 10rem;
        height: 10rem;
    }

    .circle-inner {
        width: 9.8rem;
        height: 9.8rem;
    }

    .button__comp .arrow {
        width: 2.4rem;
    }
}

/* パフォーマンス最適化 */
.button__comp {
    will-change: auto;
    /* 必要な時のみGPUアクセラレーションを使用 */
}

.button__comp:hover {
    will-change: transform;
    /* ホバー時のみアニメーション最適化 */
}

.circle-inner {
    will-change: auto;
}

.button__comp:hover .circle-inner {
    will-change: background;
}

/* ========== footer ========== */

.footer {
    position: relative;
    padding: 4rem 5rem 2rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    background-color: #1C208E;
}

.footer__scroll {
    position: absolute;
    top: 81%;
    right: -6%;
    font-size: 1rem;
    display: flex;
    flex-direction: row-reverse;
    color: #fff;
    transform: rotate(90deg);
    z-index: 10;
}

.footer__scroll span {
    margin-right: 1rem;
}

.footer__scroll span svg {
    transform: rotate(180deg);
    vertical-align: baseline;
}

.footer__scroll-line {
    stroke: #fff;
    stroke-width: 1;
    fill: none;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: fvdrawLine 2s ease-in-out infinite;
}

.footer__sns {
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.footer__sns-item {
    width: 4.2rem;
    height: 4.2rem;
}

.footer__sns-item svg {
    fill: #fff;
}

.footer__info {
    display: flex;
    justify-content: space-between;
}


.footer__nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}

.footer__logo-item:nth-of-type(2) {
    width: 48%;
    margin: 6rem auto 1rem;
}

.draw-line {
    stroke: #fff;
    stroke-width: 1;
    fill: none;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: drawLine 2s ease-in-out infinite;
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 60;
        /* 線が非表示（始点から） */
    }

    50% {
        stroke-dashoffset: 0;
        /* 線が全て表示 */
    }

    100% {
        stroke-dashoffset: -60;
        /* 線が全て表示 */
    }
}


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

    .footer {
        padding: 4rem 8rem;
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }

    .footer__scroll {
        top: 61%;
        right: -1%;
        font-size: 1.2rem;
    }

    .footer__inner {
        display: flex;
        flex-direction: row-reverse;
        align-items: end;
        justify-content: space-between;
    }

    .footer__nav {
        width: 40%;
        align-items: flex-end;
        margin-bottom: 0;
    }

    .footer__logo {
        width: 40%;
        display: grid;
        grid-template-columns: max-content 1fr;
        gap: 1.6rem;
        align-items: end;
        margin-top: 0;
    }


    .footer__logo-item:nth-of-type(2) {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 20rem;
        margin: 0;
        margin-bottom: 4.5rem;
        margin-left: 2rem;
    }

    .footer__logo .footer__logo-item:nth-child(3) {
        grid-column: 1 / -1;
        /* 両列にまたがる */
        justify-self: start;
        /* 中央寄せ */
        margin-top: 1rem;
    }

    .footer__info-item {
        font-size: 1.4rem;
        margin-left: 4rem;
    }

    .footer__copyright {
        font-size: 1.4rem;
    }
}


/* ==========================
// breadcrumb style
========================== */
.breadcrumb ol {
    color: var(--color-main);
    font-size: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    margin-top: 5rem;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li+li::before {
    content: "/";
    margin: 0 0.5em;
    color: #999;
}

@media screen and (min-width: 767px) {
    .breadcrumb ol {
        margin-top: 10rem;
        margin-left: 0;
        margin-bottom: 3rem;
    }

    .shop .breadcrumb ol {
        padding: 0 4rem;
    }
}

/* ==========================
// footer height style
========================== */
.contents_height {
    width: 100%;
    min-height: 50vh;
}