html {
    margin: 0 !important;
    padding: 0 !important;
    scroll-behavior: smooth;
}


a {
    display: inline-block;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


address {
    font-style: normal;
}

@media screen and (max-width: 960px) {

}



    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-ja);
        background: var(--color-white);
        color: var(--color-text);
        line-height: 1.8;
        overflow-x: hidden;
    }

    a {
        color: inherit;
        text-decoration: none;
        transition: opacity .3s ease;
    }

    a:hover {
        opacity: .7;
    }

    ul {
        list-style: none;
    }

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

    .wrapper {
        max-width: var(--max-width);
        width: 100%;
        margin: 0 auto;
        padding: 0 min(5%, 60px);
                box-sizing: border-box;
    }

    .pc { display: block; }
    .sp { display: none; }

    /* ========================
       Header
    ======================== */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        transition: background .4s ease, box-shadow .4s ease;
        padding: 0 40px;
                box-sizing: border-box;
    }

    .header.is-scrolled {
        background: rgba(250, 250, 250, 0.95);
        backdrop-filter: blur(8px);
        box-shadow: 0 1px 20px rgba(61, 100, 128, 0.08);
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px;
    }

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

    .header-logo {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .header-logo-img {
        height: 45px;
        width: auto;
        display: block;
    }

    .header-logo-en {
        font-family: var(--font-en);
        font-size: 22px;
        font-weight: 400;
        letter-spacing: .12em;
        color: var(--color-blue-dark);
        line-height: 1;
    }

    .header-logo-sub {
        font-family: var(--font-en-sans);
        font-size: 9px;
        font-weight: 300;
        letter-spacing: .22em;
        color: var(--color-blue);
        line-height: 1;
        text-transform: uppercase;
    }

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

    .nav-list {
        display: flex;
        gap: 32px;
    }

    .nav-item a {
        font-family: var(--font-en-sans);
        font-size: 11px;
        font-weight: 400;
        letter-spacing: .18em;
        color: var(--color-text-light);
        text-transform: uppercase;
        position: relative;
    }

    .nav-item a::after {
        content: '';
        display: block;
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--color-pink);
        transition: width .3s ease;
    }

    .nav-item a:hover::after {
        width: 100%;
    }

    .nav-item a:hover {
        opacity: 1;
        color: var(--color-blue-dark);
    }

    .header-cta {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .btn-line {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 9px 20px;
        background: #06C755;
        color: #fff;
        border-radius: 3px;
        font-family: var(--font-en-sans);
        font-size: 11px;
        font-weight: 500;
        letter-spacing: .1em;
        box-sizing: border-box;
    }

    .btn-line:hover {
        opacity: .85;
    }

    .btn-tel {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-family: var(--font-en);
        font-size: 18px;
        font-weight: 400;
        letter-spacing: .05em;
        color: var(--color-blue-dark);
    }

    .btn-tel svg {
        width: 14px;
        height: 14px;
    }

    /* hamburger */
/* ハンバーガーボタン本体 */
.hamburger {
    display: flex !important;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
}

/* 3本線 */
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-blue-dark);
    transition: transform .3s ease, opacity .3s ease;
    transform-origin: center;
}

/* 1本目：下へ移動して45度回転 */
.hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

/* 2本目：消す */
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

/* 3本目：上へ移動して-45度回転 */
.hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


    /* sp menu */
    .sp-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(250, 250, 248, 0.98);
        backdrop-filter: blur(12px);
        z-index: 99;
        padding: 100px 20px;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: transform .35s ease, opacity .35s ease;
    }

    .sp-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .sp-nav-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid var(--color-border);
    }

    .sp-nav-list li a {
        display: block;
        padding: 18px 0;
        border-bottom: 1px solid var(--color-border);
        font-family: var(--font-en-sans);
        font-size: 12px;
        letter-spacing: .18em;
        color: var(--color-text-light);
        text-transform: uppercase;
    }

    .sp-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 28px;
    }

    .sp-cta .btn-line {
        justify-content: center;
        padding: 14px;
        font-size: 13px;
        box-sizing: border-box;
    }

    .sp-cta .btn-tel {
        justify-content: center;
        font-size: 22px;
    }

    /* ========================
       FV (First View)
    ======================== */
    .fv {
        position: relative;
        height: 100svh;
        min-height: 640px;
        background: var(--color-white);
        padding: 80px;
        box-sizing: border-box;
    }

    /* 植物装飾（画像）※ .fv の外枠基準で配置 */
    .fv-leaf {
        position: absolute;
        pointer-events: none;
        z-index: 5;
    }

    .fv-leaf-01 {
        top: 0;
        right: 0;
        width: 320px;
    }

    .fv-leaf-02 {
        bottom: 0;
        left: 0;
        width: 300px;
    }

    /* 写真エリア（余白・角丸付き） */
    .fv-photo-zone {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 30px;
        overflow: hidden;
        z-index: 1;
    }

    .fv-photo-main {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    /* 左側グラデーションオーバーレイ */
    .fv-photo-main::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to right,
            rgba(20, 30, 40, 0.55) 0%,
            rgba(20, 30, 40, 0.35) 40%,
            rgba(20, 30, 40, 0.05) 70%,
            transparent 100%
        );
        z-index: 1;
    }

    .fv-kv-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

    /* テキストゾーン */
    .fv-content {
        position: absolute;
        left: 80px;
        top: 80px;
        width: 50%;
        height: calc(100% - 160px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: min(8%, 100px);
        padding-right: 40px;
        z-index: 6;
        box-sizing: border-box;
    }

    .fv-label {
        font-family: var(--font-en-sans);
        font-size: 10px;
        font-weight: 400;
        letter-spacing: .28em;
        color: #fff;
        text-transform: uppercase;
        margin-bottom: 28px;
        display: flex;
        align-items: center;
        gap: 12px;
        opacity: 0;
        animation: fv-fade-up .8s ease .3s forwards;
    }

    .fv-label::before {
        content: '';
        display: block;
        width: 32px;
        height: 1px;
        background: var(--color-pink);
    }

    .fv-catch {
        font-family: var(--font-ja);
        font-size: clamp(24px, 2.8vw, 38px);
        font-weight: 300;
        line-height: 1.9;
        letter-spacing: .06em;
        color: #fff;
        margin-bottom: 32px;
        opacity: 0;
        animation: fv-fade-up .9s ease .5s forwards;
    }

    .fv-catch em {
        font-style: normal;
        font-weight: 400;
        color: #fff;
    }

    .fv-sub {
        font-size: 14px;
        font-weight: 300;
        letter-spacing: .06em;
        color: rgba(255, 255, 255, .8);
        line-height: 2;
        margin-bottom: 44px;
        opacity: 0;
        animation: fv-fade-up .9s ease .7s forwards;
    }

    .fv-btns {
        display: flex;
        gap: 16px;
        opacity: 0;
        animation: fv-fade-up .9s ease .9s forwards;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 32px;
        background: var(--color-blue-dark);
        color: #fff;
        font-family: var(--font-en-sans);
        font-size: 11px;
        font-weight: 400;
        letter-spacing: .2em;
        text-transform: uppercase;
        border-radius: 2px;
        transition: background .3s ease, transform .3s ease;
        box-sizing: border-box;
    }

    .btn-primary:hover {
        opacity: 1;
        background: var(--color-blue-mid);
        transform: translateY(-2px);
    }

    .btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 28px;
        box-sizing: border-box;
        border: 1px solid var(--color-blue-light);
        color: var(--color-blue-dark);
        font-family: var(--font-en-sans);
        font-size: 11px;
        font-weight: 400;
        letter-spacing: .2em;
        text-transform: uppercase;
        border-radius: 2px;
        transition: background .3s ease, transform .3s ease;
    }

    .btn-outline:hover {
        opacity: 1;
        background: var(--color-blue-pale);
        transform: translateY(-2px);
    }

    .fv .btn-outline {
        border-color: rgba(255, 255, 255, .7);
        color: #fff;
    }

    .fv .btn-outline:hover {
        background: rgba(255, 255, 255, .15);
    }

    /* FV アニメーション */
    @keyframes fv-fade-up {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ========================
       Section 共通
    ======================== */
    .section {
        padding: min(8%, 100px) 0;
        box-sizing: border-box;
    }

    .section-heading {
        margin-bottom: 60px;
    }

    .section-heading._center {
        text-align: center;
    }

    .common-h2-en {
        font-family: var(--font-en);
        font-size: 70px;
        font-weight: 300;
        font-style: italic;
        letter-spacing: .06em;
        color: var(--color-blue-dark);
        line-height: 1;
        margin-bottom: 10px;
    }

    .common-h2-ja {
        font-size: 12px;
        font-weight: 400;
        letter-spacing: .2em;
        color: var(--color-blue);
        font-family: var(--font-en-sans);
        text-transform: uppercase;
    }

    .section-lead {
        font-size: 15px;
        font-weight: 300;
        letter-spacing: .06em;
        color: var(--color-text-light);
        line-height: 2.2;
        margin-top: 20px;
    }

    /* ========================
       Clinic CTA
    ======================== */
    .clinic-cta {
        padding: 0 80px 80px;
        margin-top: -1px;
        background: var(--color-white);
        box-sizing: border-box;
    }

    .clinic-cta-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .clinic-cta-card {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 36px 48px;
                box-sizing: border-box;
        border-radius: 12px;
        overflow: hidden;
        text-decoration: none;
        transition: transform .3s ease, box-shadow .3s ease;
    }

    .clinic-cta-card:hover {
        opacity: 1;
        transform: translateY(-3px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
    }

    .clinic-cta-card._shibuya {
        background: var(--color-shibuya);
    }

    .clinic-cta-card._ginza {
        background: var(--color-ginza);
    }

    .clinic-cta-card:hover .clinic-cta-arrow {
        background: rgba(255, 255, 255, .2);
        border-color: rgba(255, 255, 255, .7);
    }

    .clinic-cta-text {
        position: relative;
        z-index: 1;
    }

    .clinic-cta-en {
        font-family: var(--font-en-sans);
        font-size: 10px;
        font-weight: 400;
        letter-spacing: .28em;
        color: rgba(255, 255, 255, .65);
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .clinic-cta-ja {
        font-family: var(--font-ja);
        font-size: clamp(18px, 1.8vw, 24px);
        font-weight: 400;
        letter-spacing: .08em;
        color: #fff;
        line-height: 1.3;
    }

    .clinic-cta-arrow {
        position: relative;
        z-index: 1;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, .4);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: background .3s ease, border-color .3s ease;
    }

    .clinic-cta-card:hover .clinic-cta-arrow {
        background: rgba(255, 255, 255, .2);
        border-color: rgba(255, 255, 255, .7);
    }

    .clinic-cta-arrow svg {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: #fff;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    @media screen and (max-width: 960px) {
        .clinic-cta {
            padding: 0 16px 48px;
            margin-top: 0;
                    box-sizing: border-box;
        }

        .clinic-cta-grid {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .clinic-cta-card {
            padding: 28px 32px;
                    box-sizing: border-box;
        }
    }

    /* ========================
       Anniversary
    ======================== */
    .anniversary {
        background: var(--color-blue-pale);
        padding: min(6%, 80px) 0;
        position: relative;
        overflow: hidden;
    }

    .anniversary-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .anniversary-photo {
        position: relative;
        border-radius: 4px;
        overflow: hidden;
        aspect-ratio: 4 / 3;
        box-shadow: 0 16px 60px rgba(61, 100, 128, .13);
    }

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

    .anniversary-badge {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        border: 1px solid var(--color-blue-light);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background: #fff;
        box-shadow: 0 8px 40px rgba(61, 100, 128, .1);
        position: relative;
    }

    .anniversary-badge::before {
        content: '';
        position: absolute;
        inset: 5px;
        border-radius: 50%;
        border: 1px solid rgba(176, 200, 220, .4);
    }

    .anniversary-num {
        font-family: var(--font-en);
        font-size: 52px;
        font-weight: 300;
        line-height: 1;
        color: var(--color-blue-dark);
        letter-spacing: -.02em;
    }

    .anniversary-num-unit {
        font-family: var(--font-en-sans);
        font-size: 10px;
        font-weight: 400;
        letter-spacing: .2em;
        color: var(--color-blue);
        text-transform: uppercase;
        margin-top: 2px;
    }

    .anniversary-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-en-sans);
        font-size: 10px;
        font-weight: 400;
        letter-spacing: .22em;
        color: var(--color-blue);
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .anniversary-tag::before,
    .anniversary-tag::after {
        content: '';
        display: block;
        width: 20px;
        height: 1px;
        background: var(--color-blue-light);
    }

    .anniversary-title {
        font-size: clamp(18px, 2vw, 22px);
        font-weight: 400;
        letter-spacing: .05em;
        color: var(--color-blue-dark);
        margin-bottom: 20px;
    }

    .anniversary-text {
        font-size: 15px;
        font-weight: 300;
        line-height: 2.2;
        color: var(--color-text-light);
        letter-spacing: .04em;
    }

    .anniversary-stat {
        display: flex;
        gap: 40px;
        margin-top: 28px;
        padding-top: 24px;
        border-top: 1px solid var(--color-border);
                box-sizing: border-box;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .stat-num {
        font-family: var(--font-en);
        font-size: 32px;
        font-weight: 300;
        color: var(--color-blue-dark);
        letter-spacing: .02em;
        line-height: 1;
    }

    .stat-num span {
        font-size: 18px;
    }

    .stat-label {
        font-size: 12px;
        font-weight: 300;
        letter-spacing: .1em;
        color: var(--color-blue);
    }

    /* ========================
       News / Blog
    ======================== */
    .news-blog {
        background: var(--color-white);
    }

    .news-blog-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .news-block-label {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 28px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--color-border);
                box-sizing: border-box;
    }

    .news-block-label-en {
        font-family: var(--font-en);
        font-size: 70px;
        font-weight: 300;
        font-style: italic;
        color: var(--color-blue-dark);
        line-height: 1;
    }

    .news-block-label-ja {
        font-family: var(--font-en-sans);
        font-size: 10px;
        letter-spacing: .2em;
        color: var(--color-blue);
        text-transform: uppercase;
    }

    .news-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .news-item {
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 20px;
        align-items: start;
        padding: 16px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .news-item:first-child {
        border-top: none;
    }

    .news-date {
        font-family: var(--font-en-sans);
        font-size: 12px;
        font-weight: 300;
        letter-spacing: .08em;
        color: var(--color-blue);
        padding-top: 3px;
    }

    .news-title-link {
        font-size: 14px;
        font-weight: 400;
        letter-spacing: .03em;
        color: var(--color-text);
        line-height: 1.7;
    }

    .news-title-link:hover {
        color: var(--color-blue-dark);
        opacity: 1;
    }

    .news-tag {
        display: inline-block;
        padding: 2px 10px;
        border: 1px solid var(--color-blue-light);
        font-size: 10px;
        letter-spacing: .1em;
        color: var(--color-blue);
        margin-right: 8px;
        margin-bottom: 4px;
        font-family: var(--font-en-sans);
                box-sizing: border-box;
    }

    .news-more {
        margin-top: 24px;
        text-align: right;
    }

    .news-wrapper,
    .news-wrapper ul {
        display: flex;
        flex-wrap: wrap;
    }


    .news-wrapper li {
        line-height: 1;
    }

    .link-more {
        font-family: var(--font-en-sans);
        font-size: 11px;
        font-weight: 400;
        letter-spacing: .2em;
        color: var(--color-blue);
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .link-more::after {
        content: '→';
        transition: transform .3s ease;
    }

    .link-more:hover {
        opacity: 1;
        color: var(--color-blue-dark);
    }

    .link-more:hover::after {
        transform: translateX(4px);
    }

    /* ========================
       Service (サービス内容)
    ======================== */
    .service {
        background: url('service_bg.jpg') center center / cover no-repeat;
        position: relative;
    }

    .service::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, .72);
        pointer-events: none;
    }

    .service .wrapper {
        position: relative;
        z-index: 1;
    }

    .service-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 20px;
    }

    .service-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .service-item._reverse {
        direction: rtl;
    }

    .service-item._reverse > * {
        direction: ltr;
    }

    .service-photo {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        aspect-ratio: 4 / 3;
    }

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

    /* 画像未設定時のプレースホルダー */
    .service-photo-placeholder {
        width: 100%;
        height: 100%;
        background: var(--color-blue-pale);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-en);
        font-size: 14px;
        letter-spacing: .25em;
        color: var(--color-blue-light);
    }

    .service-content {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .service-num {
        font-family: var(--font-en);
        font-size: 80px;
        font-weight: 300;
        line-height: 1;
        color: var(--color-blue-pale);
        letter-spacing: -.02em;
        margin-bottom: -12px;
    }

    .service-tag {
        font-family: var(--font-en-sans);
        font-size: 10px;
        font-weight: 400;
        letter-spacing: .28em;
        color: var(--color-blue);
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .service-title {
        font-size: clamp(20px, 2.2vw, 26px);
        font-weight: 400;
        letter-spacing: .06em;
        color: var(--color-blue-dark);
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .service-lead {
        font-size: 15px;
        font-weight: 300;
        line-height: 2.2;
        color: var(--color-text-light);
        letter-spacing: .04em;
        margin-bottom: 28px;
    }

    .service-points {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 24px 0;
        border-top: 1px solid var(--color-border);
    }

    .service-point {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 14px;
        font-weight: 300;
        color: var(--color-text-light);
        letter-spacing: .04em;
        line-height: 1.8;
    }

    .service-point::before {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--color-blue);
        flex-shrink: 0;
        margin-top: 9px;
    }

    @media screen and (max-width: 960px) {
        .service-list {
            gap: 64px;
        }

        .service-item,
        .service-item._reverse {
            grid-template-columns: 1fr;
            direction: ltr;
            gap: 32px;
        }

        .service-num {
            font-size: 56px;
        }
    }

    /* ========================
       Clinic (店舗情報)
    ======================== */
    .clinic {
        background: var(--color-blue-pale);
        position: relative;
        overflow: hidden;
    }

    .clinic::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(176, 200, 220, .22) 0%, transparent 70%);
    }

    .clinic-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 20px;
    }

    .clinic-card {
        background: #fff;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 8px 40px rgba(61, 100, 128, .08);
        transition: transform .35s ease, box-shadow .35s ease;
    }

    .clinic-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 60px rgba(61, 100, 128, .13);
    }

    /* 渋谷院: 落ち着いたブルー */
    .clinic-photo {
        width: 100%;
        display: inline-block;
        height: 200px;
        background: linear-gradient(135deg, #B8CEDF 0%, #9AB8CE 100%);
        position: relative;
        overflow: hidden;
    }

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

    .clinic-photo::after {
        content: 'PHOTO';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-family: var(--font-en);
        font-size: 16px;
        letter-spacing: .25em;
        color: rgba(255,255,255,.45);
    }

    /* imgが読み込まれたらPHOTOテキストを非表示 */
    .clinic-photo img + *,
    .clinic-photo:has(img)::after {
        display: none;
    }

    /* 銀座院: 少し深いブルー */
    .clinic-photo._ginza {
        background: linear-gradient(135deg, #8AAABF 0%, #7098B0 100%);
    }

    /* 渋谷院テーマ */
    .clinic-card._shibuya .clinic-photo {
        background: linear-gradient(135deg, var(--color-shibuya-light) 0%, var(--color-shibuya) 100%);
    }

    .clinic-card._shibuya .clinic-name {
        color: var(--color-shibuya);
    }

    .clinic-card._shibuya .clinic-detail-link {
        color: var(--color-shibuya);
    }

    .clinic-card._shibuya .clinic-detail-link:hover {
        color: var(--color-shibuya);
        opacity: .7;
    }

    /* 銀座院テーマ */
    .clinic-card._ginza-theme .clinic-photo._ginza {
        background: linear-gradient(135deg, var(--color-ginza-light) 0%, var(--color-ginza) 100%);
    }

    .clinic-card._ginza-theme .clinic-name {
        color: var(--color-ginza);
    }

    .clinic-card._ginza-theme .clinic-detail-link {
        color: var(--color-ginza);
    }

    .clinic-card._ginza-theme .clinic-detail-link:hover {
        color: var(--color-ginza);
        opacity: .7;
    }

    /* 店舗情報導線ボタン */
    .clinic-detail-link {
        font-family: var(--font-en-sans);
        font-size: 11px;
        font-weight: 400;
        letter-spacing: .2em;
        color: var(--color-blue);
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 24px;
    }

    .clinic-detail-link::after {
        content: '→';
        transition: transform .3s ease;
    }

    .clinic-detail-link:hover {
        opacity: 1;
        color: var(--color-blue-dark);
    }

    .clinic-detail-link:hover::after {
        transform: translateX(4px);
    }

    .clinic-detail-link-arrow {
        display: none;
    }

    /* 店舗説明テキスト */
    .clinic-desc {
        font-size: 14px;
        font-weight: 300;
        line-height: 2;
        color: var(--color-text-light);
        letter-spacing: .04em;
        margin-top: 16px;
    }

    .clinic-body {
        padding: 32px;
                box-sizing: border-box;
    }

    .clinic-area {
        font-family: var(--font-en-sans);
        font-size: 10px;
        font-weight: 400;
        letter-spacing: .22em;
        color: var(--color-blue-mid);
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .clinic-name-row {
        display: flex;
        align-items: baseline;
        gap: 16px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .clinic-name {
        font-size: 32px;
        font-weight: 400;
        letter-spacing: .06em;
        color: var(--color-blue-dark);
        margin-bottom: 0;
    }

    .clinic-name-row .clinic-detail-link {
        margin-top: 0;
    }

    .clinic-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .clinic-info-row {
        display: grid;
        grid-template-columns: 72px 1fr;
        gap: 12px;
        font-size: 14px;
        line-height: 1.7;
    }

    .clinic-info-label {
        font-family: var(--font-en-sans);
        font-size: 10px;
        font-weight: 400;
        letter-spacing: .15em;
        color: var(--color-blue);
        text-transform: uppercase;
        padding-top: 3px;
    }

    .clinic-info-value {
        font-weight: 300;
        letter-spacing: .03em;
        color: var(--color-text);
    }

    .clinic-map {
        margin-top: 24px;        
    }

    .clinic-map-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 24px;
        padding: 10px 20px;
        border: 1px solid var(--color-blue-light);
        color: var(--color-blue-mid);
        font-family: var(--font-en-sans);
        font-size: 11px;
        letter-spacing: .15em;
        text-transform: uppercase;
        border-radius: 2px;
        transition: background .3s ease;
        box-sizing: border-box;
    }

    .clinic-map-btn:hover {
        background: var(--color-blue-pale);
        opacity: 1;
    }

    /* ========================
       FAQ
    ======================== */
    .faq {
        background: var(--color-white);
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        max-width: 820px;
        margin: 0 auto;
    }

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

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

    .faq-q {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 0;
        cursor: pointer;
        transition: color .3s ease;
    }

    .faq-q:hover {
        color: var(--color-blue-dark);
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--color-blue-pale);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-family: var(--font-en);
        font-size: 15px;
        font-weight: 400;
        color: var(--color-blue-dark);
    }

    .faq-q-text {
        flex: 1;
        font-size: 15px;
        font-weight: 400;
        letter-spacing: .04em;
        line-height: 1.7;
        padding-top: 3px;
    }

    .faq-toggle {
        width: 20px;
        height: 20px;
        position: relative;
        flex-shrink: 0;
        margin-top: 5px;
    }

    .faq-toggle::before,
    .faq-toggle::after {
        content: '';
        position: absolute;
        background: var(--color-blue);
        border-radius: 1px;
        transition: transform .3s ease, opacity .3s ease;
    }

    .faq-toggle::before {
        width: 14px;
        height: 1px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .faq-toggle::after {
        width: 1px;
        height: 14px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .faq-item.is-open .faq-toggle::after {
        transform: translate(-50%, -50%) rotate(90deg);
        opacity: 0;
    }

    .faq-a {
        display: flex;
        gap: 20px;
        padding: 0 0 24px;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height .4s ease, opacity .4s ease, padding .4s ease;
    }

    .faq-item.is-open .faq-a {
        max-height: 300px;
        opacity: 1;
    }

    .faq-a-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--color-blue-pale);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-family: var(--font-en);
        font-size: 15px;
        font-weight: 400;
        color: var(--color-blue-mid);
    }

    .faq-a-text {
        font-size: 14px;
        font-weight: 300;
        line-height: 2;
        color: var(--color-text-light);
        letter-spacing: .04em;
        padding-top: 3px;
    }

    /* ========================
       Contact
    ======================== */
    .contact {
        background: url('contact_bg.jpeg') center center / cover no-repeat;
        position: relative;
        overflow: hidden;
    }

    .contact::before {
        content: '';
        position: absolute;
        inset: 0;
    }

    .contact-inner {
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .contact-lead {
        font-size: 15px;
        font-weight: 300;
        letter-spacing: .06em;
        color: var(--color-text-light);
        line-height: 2.2;
        margin-top: 12px;
        margin-bottom: 48px;
    }

    /* 2院カード横並び */
    .contact-clinics {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        max-width: 760px;
        margin: 0 auto 32px;
    }

    .contact-clinic-card {
        background: #fff;
        border-radius: 4px;
        padding: 36px 32px;
        box-shadow: 0 8px 40px rgba(61, 100, 128, .08);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        transition: transform .3s ease;
                box-sizing: border-box;
    }

    .contact-clinic-card:hover {
        transform: translateY(-4px);
    }

    .contact-clinic-label {
        font-family: var(--font-en-sans);
        font-size: 10px;
        font-weight: 400;
        letter-spacing: .22em;
        color: var(--color-blue-mid);
        text-transform: uppercase;
    }

    .contact-clinic-name {
        font-size: 28px;
        font-weight: 400;
        letter-spacing: .06em;
        color: var(--color-blue-dark);
    }

    /* 渋谷院カード */
    .contact-clinic-card:first-child .contact-clinic-name {
        color: var(--color-shibuya);
    }

    .contact-clinic-card:first-child .contact-reserve-btn {
        border-color: var(--color-shibuya-light);
        color: var(--color-shibuya);
    }

    .contact-clinic-card:first-child .contact-reserve-btn:hover {
        background: var(--color-shibuya-pale);
    }

    /* 銀座院カード */
    .contact-clinic-card:last-child .contact-clinic-name {
        color: var(--color-ginza);
    }

    .contact-clinic-card:last-child .contact-reserve-btn {
        border-color: var(--color-ginza-light);
        color: var(--color-ginza);
    }

    .contact-clinic-card:last-child .contact-reserve-btn:hover {
        background: var(--color-ginza-pale);
    }

    .contact-clinic-tel {
        font-family: var(--font-en);
        font-size: 26px;
        font-weight: 300;
        color: var(--color-blue-dark);
        letter-spacing: .05em;
        line-height: 1;
    }

    .contact-clinic-tel a {
        color: inherit;
    }

    .contact-clinic-tel a:hover {
        opacity: .7;
    }

    .contact-clinic-note {
        font-size: 12px;
        font-weight: 300;
        color: var(--color-text-light);
        letter-spacing: .06em;
        line-height: 1.8;
    }

    .contact-reserve-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 24px;
        border: 1px solid var(--color-blue-light);
        color: var(--color-blue-dark);
        border-radius: 2px;
        font-family: var(--font-en-sans);
        font-size: 11px;
        font-weight: 400;
        letter-spacing: .15em;
        text-transform: uppercase;
        transition: background .3s ease;
        margin-top: 4px;
                box-sizing: border-box;
    }

    .contact-reserve-btn:hover {
        opacity: 1;
        background: var(--color-blue-pale);
    }

    .contact-reserve-btn::after {
        content: '→';
        transition: transform .3s ease;
    }

    .contact-reserve-btn:hover::after {
        transform: translateX(4px);
    }

    /* LINE共通ボタン */
    .contact-line-wrap {
        max-width: 760px;
        margin: 0 auto;
        padding-top: 24px;
        border-top: 1px solid var(--color-border);
    }

    .contact-line-note {
        font-size: 12px;
        font-weight: 300;
        color: var(--color-text-light);
        letter-spacing: .06em;
        margin-bottom: 16px;
    }

    .btn-line-lg {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 36px;
        background: #06C755;
        color: #fff;
        border-radius: 3px;
        font-family: var(--font-en-sans);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: .1em;
        transition: opacity .3s ease;
                box-sizing: border-box;
    }

    .btn-line-lg:hover {
        opacity: .85;
    }

    .btn-line-lg svg {
        width: 20px;
        height: 20px;
        fill: #fff;
        flex-shrink: 0;
    }

    /* ========================
       Footer
    ======================== */
    .footer {
        background: var(--color-blue-dark);
        color: rgba(255,255,255,.7);
        padding: 60px 0 32px;
    }

    .footer-inner {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 48px;
    }

    .footer-logo-en {
        font-family: var(--font-en);
        font-size: 28px;
        font-weight: 300;
        letter-spacing: .12em;
        color: rgba(255,255,255,.9);
        margin-bottom: 4px;
    }

    .footer-logo-sub {
        font-family: var(--font-en-sans);
        font-size: 9px;
        font-weight: 300;
        letter-spacing: .25em;
        color: rgba(255,255,255,.45);
        text-transform: uppercase;
    }

    .footer-logo-img {
        height: 70px;
        width: auto;
        display: block;
        margin-bottom: 4px;
    }

    .footer-tagline {
        font-size: 13px;
        font-weight: 300;
        letter-spacing: .06em;
        color: rgba(255,255,255,.5);
        margin-top: 20px;
        line-height: 2;
    }

    .footer-sns {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 28px;
    }

    .footer-sns-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.2);
        transition: border-color .3s ease, background .3s ease;
    }

    .footer-sns-link:hover {
        border-color: rgba(255,255,255,.6);
        background: rgba(255,255,255,.08);
    }

    .footer-sns-link img {
        width: 16px;
        height: 16px;
        opacity: .35;
        transition: opacity .3s ease;
    }

    .footer-sns-link:hover img {
        opacity: 1;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,.1);
        padding-top: 24px;
        text-align: left;
    }

    .footer-copy {
        font-family: var(--font-en-sans);
        font-size: 11px;
        font-weight: 300;
        letter-spacing: .15em;
        color: rgba(255,255,255,.35);
    }

    .footer-privacy {
        font-size: 11px;
        font-weight: 300;
        letter-spacing: .15em;
        color: rgba(255,255,255,.35);
        cursor: pointer;
    }

    /* ========================
       Scroll Animation
    ======================== */
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .75s ease, transform .75s ease;
    }

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

    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    /* ========================
       Green decoration (plant SVG)
    ======================== */
    .plant-deco {
        position: absolute;
        pointer-events: none;
        opacity: .35;
    }

    /* ========================
       Responsive
    ======================== */
    @media screen and (max-width: 960px) {

        .pc { display: none !important; }
        .sp { display: block !important; }

        /* header */
        .header {
            padding: 0 20px;
                    box-sizing: border-box;
        }

        .header-inner {
            height: 64px;
        }

        .header-logo-en {
            font-size: 18px;
        }

        .nav { display: none; }
        .header-cta { display: none; }

        .hamburger {
            display: flex;
        }

        .sp-menu {
            display: block;
        }

            .common-h2-en {
                font-size: 58px;
            }

        /* FV */
        .fv {
            padding: 16px;
                    box-sizing: border-box;
        }

        .fv-photo-zone {
            border-radius: 20px;
        }

        .fv-content {
            left: 16px;
            top: 16px;
            width: calc(100% - 48px);
            height: calc(100% - 32px);
            padding: 0 24px;
            justify-content: flex-end;
            padding-bottom: 48px;
            z-index: 6;
                    box-sizing: border-box;
        }

        .fv-catch {
            font-size: clamp(22px, 6vw, 30px);
        }

        .fv-leaf-01 {
            width: 180px;
            top: 0;
            right: 0;
        }

        .fv-leaf-02 {
            width: 160px;
            bottom: 0;
            left: 0;
        }

        .fv-sub {
            font-size: 14px;
        }

        .fv-btns {
            flex-direction: column;
        }

        .btn-primary,
        .btn-outline {
            justify-content: center;
        }

        /* anniversary */
        .anniversary-inner {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        /* news blog */
        .news-blog-grid {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        /* clinic */
        .clinic-grid {
            grid-template-columns: 1fr;
        }

            .contact-clinic-name {
            font-size: 24px;
        }

            .clinic-name {
            font-size: 25px;
        }

        /* faq */
        .faq-q-text { font-size: 14px; }

        /* contact */
        .contact-clinics {
            grid-template-columns: 1fr;
        }

        /* footer */

        .section-heading {
            margin-bottom: 40px;
        }
    }



/* =========================================
   固定ボタン（矢印）
========================================= */

.arrow-fixed {
    position: fixed;
    height: auto;
    right: 10px;
    bottom: 10px;
    z-index: 13;
}

.arrow-fixed-link {
    width: 50px;
    height: auto;
}

@media screen and (max-width: 960px) {
    .heading._footer {
        padding: 30px min(5.333%, 20px);
                box-sizing: border-box;
    }
}


/* =========================================
   page02 共通
========================================= */

.page02 {
    background: #fff;
    padding: 0 !important;
}

.heading._page02,
.heading._page03 {
    max-width: 1200px;
    padding: 80px 0;
}

.fv2 {
    display: flex;
    justify-content: center;
    align-items: end;
    background: #EDF3F8;
    height: 308px;
}

.fv2-h1 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    color: #0052A1;
}

@media screen and (max-width: 960px) {
    .heading._page02,
    .heading._page03 {
        max-width: 600px;

        padding: 80px 0;
    }

    .fv2-h1 {
        font-size: 28px;
    }
}


/* =========================================
   パンくずリスト
========================================= */

.heading._crumbs {
    max-width: 1200px;
    padding: 10px 0;
}

#crumbs {
    position: relative;
}

.crumbs {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.crumbs::-webkit-scrollbar {
    display: none;
}

.crumbs-link {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.44px;
    color: #3D6480;
}

.crumbs-separator {
    margin: 0 8px;
    color: #333;
}

.crumbs-current {
    font-size: 16px;
    color: #333;
}

@media screen and (max-width: 960px) {
    .heading._crumbs {
        max-width: 600px;
        padding: 10px min(5.333%, 20px);
                box-sizing: border-box;
    }
}


/* =========================================
   page03 共通
========================================= */

.page03 {
    background: #fff;
    padding: 80px 0 0 0;
}

.fv3 {
    height: 20px;
}

.detail h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3.36px;
    color: #3D6480;
    padding: 0 0 30px 0;
    margin: 0 0 80px 0;
    border-bottom: 2px solid #3D6480;
}

.detail-common-area h2,
.common-archive-h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    border-left: 6px solid #3D6480;
    padding: 0 0 0 10px;
    margin: 0 0 40px 0;
    color: #333;
}

.detail-common-area img {
    margin: 0 0 20px 0;
}

.detail-common-area h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.48px;
    color: #3D6480;
    border-bottom: 1px solid #3D6480;
    padding: 0 0 10px 0;
    margin: 0 0 15px 0;
}

.detail-common-area h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 40px 0;
    color: #333;
}

.detail-common-area p {
    font-size: 16px;
    margin: 0 0 30px 0;
    color: #333;
}

.detail-common-area a {
    font-size: 16px;
    color: #3D6480;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.detail-common-area ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.detail-common-area ul li {
    font-size: 16px;
    color: #333;
    margin: 0 0 10px 0;
    position: relative;
    padding: 0 0 0 18px;
    line-height: 24px;
}

.detail-common-area ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    background-color: #3D6480;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

@media screen and (max-width: 960px) {
    .page03 {
        padding: 50px 0 0 0;
    }
}


/* =========================================
   共通
========================================= */

._minheight {
    min-height: 56vh;
}

.non-text {
    text-align: center;
    font-size: 16px;
    margin: 0;
}

@media screen and (max-width: 960px) {
    ._minheight {
        min-height: 62vh;
    }
}



/* =========================================
   ページネーション
========================================= */

.pagenum-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0 0 0;
}

.pagenum {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1rem;
}

.pagenum li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    width: 45px;
    height: 45px;
    color: #3D6480;
    background: #ffffff 0% 0% no-repeat padding-box;
    border: 1px solid #3D6480;
}

.pagenum li a:hover,
.pagenum li a.current,
.pagenum li a.active {
    background: #3D6480 0% 0% no-repeat padding-box;
    color: #fff;
}

@media screen and (max-width: 960px) {
    .pagenum li a {
        width: 40px;
        height: 40px;
    }
}


    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --color-white: #FAFAFA;
        --color-pink: #B0C8DC;
        --color-pink-light: #C8DCEA;
        --color-pink-pale: #EDF3F8;
        --color-blue: #7B9BB5;
        --color-blue-light: #B0C8DC;
        --color-blue-pale: #EDF3F8;
        --color-blue-mid: #5A829E;
        --color-blue-dark: #3D6480;
        --color-accent: #527994;
        --color-text: #2E3440;
        --color-text-light: #607080;
        --color-border: #D8E4EC;
        --color-shibuya: #B8808A;
        --color-shibuya-light: #D4A8B0;
        --color-shibuya-pale: #F5ECEE;
        --color-ginza: #8A7898;
        --color-ginza-light: #B0A0C0;
        --color-ginza-pale: #F0ECF5;
        --font-en: 'Cormorant Garamond', serif;
        --font-en-sans: 'Montserrat', sans-serif;
        --font-ja: 'Noto Serif JP', serif;
        --max-width: 1160px;
    }
/* =========================================
   カテゴリーフィルター
========================================= */

.tag-cat-ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 30px 0;
    padding: 0;
}

.tag-cat-link {
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 1.12px;
    color: #0052A1;
    font-weight: 700;
    padding: 7px 18px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #0052A1;
    border-radius: 15px;
    transition: background 0.2s, color 0.2s;

}

.tag-cat-link:hover,
.tag-cat-link._current {
    background: #0052A1;
    color: #fff;
}

@media screen and (max-width: 960px) {
    .tag-cat-link {
        font-size: 13px;
    }
}





.btn-wrapper1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 30px 0 0 0;
}

.btn-wrapper1._nomargin {
    margin: 0;
}

.btn-more1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #7B9BB5 0% 0% no-repeat padding-box;
    border-radius: 25px;
    border: none;
    border-radius: 30px;
    max-width: 210px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    padding: 13px 0;
}

.btn-more1:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

@media screen and (max-width: 960px) {
    .btn-wrapper1._left {
        justify-content: center;
    }
}


.news-li {
  padding: 20px 0;
  border-bottom: 1px solid #dddddd;
}

.news-tags-ul {
    display: flex;
    flex-wrap: wrap;
}