        :root {
            --enji: #8b0000;

            --enji-pale: #fcf6f6;
            --wa-green: #2d4032;

            --wa-green-pale: #f2f5f2;
            --kinari: #faf8f3;

            --warm-white: #ffffff;
            --sumi: #2d2d2d;

            --text-mid: #555555;
            --text-light: #999999;
            --border-wa: rgba(45, 64, 50, 0.08);

            --shadow-subtle: 0 15px 45px rgba(0, 0, 0, 0.03);


            --hill-back: #e9f0e9;
            --hill-mid: #dee9de;
            --hill-front: #d4e2d4;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Noto Sans JP', sans-serif;
            background: var(--kinari);
            color: var(--sumi);
            overflow-x: hidden;
            line-height: 1.8;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }


        .hero {
            min-height: 70vh;

            display: grid;
            grid-template-columns: 320px 1fr;
            overflow: hidden;
            padding: 30px;
            position: relative;

        }


        .hero-sidebar {
            background: rgba(250, 248, 243, 0.5);

            backdrop-filter: blur(5px);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 48px 24px 40px;
            border-right: 1px solid var(--border-wa);
            position: relative;
            z-index: 10;
            overflow-y: auto;
        }

        .sidebar-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 16px;
            text-decoration: none;
        }

        .sidebar-logo-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 10px;
        }

        .sidebar-logo-name {
            font-family: 'Noto Serif JP', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--sumi);
            letter-spacing: 0.08em;
            margin-bottom: 4px;
        }

        .sidebar-logo-en {
            font-size: 11px;
            color: var(--enji);
            letter-spacing: 0.18em;
            margin-bottom: 10px;
        }

        .sidebar-specialties {
            font-size: 13px;
            color: var(--text-light);
            letter-spacing: 0.04em;
            text-align: center;
            line-height: 1.8;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--border-wa);
            width: 100%;
        }

        .sidebar-nav {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            width: 100%;
            margin: 16px 0;
        }

        .sidebar-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 7px;
            padding: 18px 8px;
            background: var(--warm-white);
            border: 1px solid var(--border-wa);
            border-radius: 12px;
            text-decoration: none;
            color: var(--sumi);
            font-size: 15px;
            transition: all 0.25s ease;
            text-align: center;
        }

        .sidebar-nav-item:hover {
            border-color: var(--enji);
            background: var(--enji-pale);
            color: var(--enji);
        }

        .sidebar-cta {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
            width: 100%;
            margin-bottom: 18px;
        }

        .btn-reserve {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--enji);
            color: #fff;
            padding: 13px 8px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 500;
            text-decoration: none;
            box-shadow: 0 2px 10px rgba(139, 0, 0, 0.2);
        }

        .btn-tel {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--warm-white);
            color: var(--enji);
            border: 1.5px solid var(--enji);
            padding: 13px 8px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
        }

        .sidebar-social {
            display: flex;
            gap: 15px;
            margin-top: 5px;
            width: 100%;
            justify-content: center;
        }

        .social-link-icon {
            font-size: 40px;
            color: var(--sumi);
            transition: 0.3s;
            text-decoration: none;
        }

        .social-link-icon:hover {
            color: var(--enji);
        }

        .sidebar-hours {
            width: 100%;
            border-top: 1px solid var(--border-wa);
            padding-top: 24px;
        }

        .sidebar-hours-title {
            font-size: 15px;
            color: var(--text-light);
            text-align: center;
            margin-bottom: 10px;
        }

        .sidebar-hours-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }

        .sidebar-hours-table th,
        .sidebar-hours-table td {
            padding: 8px 2px;
            text-align: center;
            border-bottom: 1px solid var(--border-wa);
        }

        .sidebar-hours-table td.open {
            color: var(--enji);
            font-weight: 600;
        }

        .sidebar-hours-note {
            font-size: 14px;
            color: var(--enji);
            text-align: center;
            margin-top: 12px;
            font-weight: 500;
            letter-spacing: 0.05em;
        }


        .hero-photo {
            position: relative;
            overflow: hidden;
            background: #fff;
        }

        .fv-swiper {
            width: 100%;
            height: 100%;
        }

        .fv-swiper img {
            width: 100%;
            height: 100%;
            object-fit: cover;

            transition: 0.5s;
        }


        .shape-drum img {
            border-radius: 40px 40px 140px 140px;
        }

        .shape-leaf-r img {
            border-radius: 140px 40px 140px 40px;
        }

        .shape-leaf-l img {
            border-radius: 40px 140px 40px 140px;
        }


        .hero-waves {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 440px;

            z-index: 1;
            pointer-events: none;
        }

        .hero-waves svg {
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .sp-waves {
            display: none;
        }

        .wave-layer-1 {
            fill: var(--hill-back);
        }

        .wave-layer-2 {
            fill: var(--hill-mid);
            opacity: 0.8;
        }

        .wave-layer-3 {
            fill: var(--hill-front);
        }

        .hero-photo-inner {
            width: 100%;
            height: 100%;
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;

            justify-content: flex-start;
            padding: 40px 0 0 40px;

        }

        .swiper-container-wrap {
            width: 100%;
            overflow: visible;
            position: relative;
        }

        .fv-swiper {
            width: 100%;
            overflow: hidden;

        }

        .fv-swiper .swiper-wrapper {
            transition-timing-function: linear !important;

        }

        .fv-swiper .swiper-slide {
            width: 550px !important;
            aspect-ratio: 320 / 230;

            margin-right: 40px;
        }

        .fv-swiper img {
            width: 100%;
            height: 100%;
            object-fit: cover;

            transition: 0.5s;
        }

        .hero-copy {
            position: relative;
            z-index: 10;
            width: auto;
            text-align: left;
            margin-bottom: 30px;
        }

        .hero-copy h1 {
            font-family: 'Noto Serif JP', serif;
            font-size: clamp(40px, 6vw, 76px);
            color: var(--sumi);
            line-height: 1.45;
            display: inline-block;
            text-shadow: none;

            letter-spacing: 0.12em;
        }


        section {
            padding: 140px 60px;
        }

        .section-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-label {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 13px;
            color: var(--enji);
            letter-spacing: 0.25em;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-label::before {
            content: '';
            width: 30px;
            height: 1px;
            background: var(--enji);
        }

        .section-title {
            font-family: 'Noto Serif JP', serif;
            font-size: clamp(26px, 3.8vw, 42px);
            font-weight: 500;
            color: var(--sumi);
            line-height: 1.6;
            letter-spacing: 0.05em;
        }


        .about {
            background-color: #fffcf9;

            position: relative;
            overflow: hidden;
        }

        .about .section-inner {
            position: relative;
            z-index: 2;
        }

        .about-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .about::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--wa-green-pale) 0%, transparent 75%);
            pointer-events: none;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 60px;
        }

        .about-visual {
            position: relative;
        }

        .about-img-wrap {
            border-radius: 30px;
            overflow: hidden;
            aspect-ratio: 4/5;
            box-shadow: var(--shadow-subtle);
        }

        .about-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-badge-float {
            position: absolute;
            bottom: -30px;
            right: 30px;
            background: var(--enji);
            color: #fff;
            border-radius: 2px;
            padding: 24px 28px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(139, 0, 0, 0.15);
        }

        .about-badge-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 300;
        }

        .about-badge-text {
            font-size: 11px;
            margin-top: 4px;
            opacity: 0.9;
        }

        .about-philosophy {
            font-family: 'Noto Serif JP', serif;
            font-size: 20px;
            line-height: 2.2;
            color: var(--sumi);
            border-left: 2px solid var(--enji);
            padding-left: 30px;
            margin: 40px 0;
            letter-spacing: 0.03em;
        }


        .trouble {
            position: relative;
            overflow: hidden;
            background: url('img/trouble_01.jpg') center/cover no-repeat;
        }

        .trouble::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fdfaf5e0;

            z-index: 1;
        }

        .trouble .section-inner {
            position: relative;
            z-index: 2;
        }


        #service {
            position: relative;
            background-color: #fdfaf5;
            overflow: hidden;
        }

        #service .section-inner {
            position: relative;
            z-index: 2;
        }

        .pc-only-video {
            display: block;
        }

        .sp-only-video {
            display: none;
        }

        .service-video-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .service-video-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;

        }


        .service-video-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.6);
            z-index: 1;
        }

        @keyframes gradientWave {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .bg-wave-anim {
            background: linear-gradient(-45deg, #ffffff, #fdfaf5, #f4f0e6, #ffffff) !important;
            background-size: 300% 300% !important;
            animation: gradientWave 10s ease infinite;
        }

        .trouble-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin: 40px 0;
        }

        @media (max-width: 1024px) {
            .trouble-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .trouble-item {
            background: #fff;
            padding: 15px 3px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            border: 1px solid var(--border-wa);
        }

        .trouble-item::before {
            content: '・';
            color: var(--enji);
            font-weight: bold;
        }


        .bg-blob {
            position: absolute;
            display: block;
        }

        .blob-1 {
            width: 360px;
            height: 360px;
            top: -5%;
            left: -8%;
            transform: rotate(15deg);
        }

        .blob-2 {
            width: 280px;
            height: 280px;
            top: 15%;
            right: -4%;
            transform: rotate(-10deg);
        }

        .blob-3 {
            width: 240px;
            height: 240px;
            top: 40%;
            left: -6%;
            transform: rotate(-5deg);
        }

        .blob-4 {
            width: 270px;
            height: 270px;
            top: 58%;
            right: -5%;
            transform: rotate(12deg);
        }

        .blob-5 {
            width: 340px;
            height: 340px;
            bottom: -8%;
            left: 18%;
            transform: rotate(-15deg);
        }

        .blob-6 {
            width: 200px;
            height: 200px;
            bottom: 12%;
            right: 12%;
            transform: rotate(20deg);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .service-card {
            background: var(--warm-white);
            padding: 56px 40px;
            border-radius: 24px;
            border: 1px solid var(--border-wa);
            transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: var(--shadow-subtle);
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--enji);
        }

        .service-title {
            font-family: 'Noto Serif JP', serif;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .service-text {
            font-size: 14px;
            color: var(--text-mid);
            line-height: 2;
        }


        #owner {
            background: url('../img/profile_bg.png') center/cover fixed;
            position: relative;
        }

        .owner-grid {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 60px;
            align-items: start;
            margin-top: 60px;
        }

        .owner-img-wrap {
            border-radius: 20px;
            overflow: visible;
            aspect-ratio: 3/4;
        }

        .owner-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .owner-info h3 {
            font-family: 'Noto Serif JP', serif;
            font-size: 28px;
            margin-bottom: 10px;
        }

        .owner-tag {
            color: var(--enji);
            font-size: 12px;
            letter-spacing: 0.1em;
            font-weight: 700;
            margin-bottom: 5px;
            display: block;
        }

        .owner-profile {
            font-size: 14px;
            color: var(--text-mid);
            margin-bottom: 30px;
        }

        .history-group {
            border-top: 1px solid var(--border-wa);
            padding-top: 32px;
            margin-bottom: 32px;
        }

        .history-title {
            font-size: 13px;
            font-weight: 700;
            color: var(--enji);
            margin-bottom: 12px;
        }

        .history-list {
            list-style: none;
            font-size: 13.5px;
            color: var(--text-mid);
        }

        .history-list li {
            margin-bottom: 8px;
            display: flex;
            gap: 15px;
        }


        .flow {
            background: var(--wa-green-pale);
        }

        .flow-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        .flow-card {
            background: #fff;
            padding: 30px 20px;
            border-radius: 12px;
            text-align: center;
            position: relative;
        }

        .flow-num {
            width: 36px;
            height: 36px;
            background: var(--enji);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-weight: 700;
            font-size: 14px;
        }

        .flow-card h4 {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .flow-card p {
            font-size: 13px;
            color: var(--text-mid);
            line-height: 1.6;
        }


        .qa-list {
            max-width: 800px;
            margin: 60px auto 0;
        }

        .qa-item {
            background: #fff;
            border: 1px solid var(--border-wa);
            border-radius: 8px;
            overflow: hidden;
        }

        .qa-q {
            padding: 20px 25px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            text-align: left;
        }

        .qa-q::after {
            content: '+';
            font-size: 24px;
            color: var(--enji);
            margin-left: auto;
            transition: transform 0.3s ease;
            font-weight: 400;
        }

        .qa-q.active::after {
            transform: rotate(45deg);
        }

        .qa-q::before {
            content: 'Q';
            color: var(--enji);
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            margin-right: 15px;
        }

        .qa-a {
            padding: 0 25px 20px 65px;
            display: none;
            font-size: 14px;
            color: var(--text-mid);
            border-top: 1px solid var(--kinari);
            padding-top: 15px;
            text-align: left;
        }

        .qa-a::before {
            content: 'A';
            color: var(--sumi);
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            float: left;
            margin-left: -40px;
            margin-top: -5px;
        }


        footer {
            background: var(--sumi);
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 40px 30px;
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 3fr;
            gap: 80px;
        }

        .footer-logo {
            font-family: 'Noto Serif JP', serif;
            font-size: 24px;
            color: #fff;
            margin-bottom: 20px;
        }

        .footer-nav {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .footer-nav a {
            color: inherit;
            text-decoration: none;
            font-size: 13px;
            display: block;
            margin-bottom: 12px;
            transition: 0.3s;
        }

        .footer-nav a:hover {
            color: #fff;
        }

        .footer-social {
            display: flex;
            gap: 40px;
            margin-top: 15px;
            justify-content: flex-start;
        }

        .copyright {
            text-align: center;
            margin-top: 60px;
            font-size: 11px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
        }


        .theory-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 40px;
            align-items: start;
        }


        .prescriptions {
            background: var(--warm-white);
        }

        .presc-intro-text {
            margin-top: 30px;
            font-size: 15px;
            color: var(--text-mid);
            line-height: 2;
        }

        .presc-accordion {
            margin-top: 60px;
            border-top: 1px solid var(--border-wa);
        }

        .presc-acc-item {
            border-bottom: 1px solid var(--border-wa);
        }

        .presc-acc-header {
            padding: 35px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Noto Serif JP', serif;
            font-size: 20px;
            transition: 0.3s;
            background: var(--warm-white);
        }

        .presc-acc-header:hover {
            background: var(--kinari);
        }

        .presc-acc-header .icon {
            color: var(--enji);
            transition: 0.3s;
            font-size: 18px;
        }

        .presc-acc-item.active .presc-acc-header .icon {
            transform: rotate(180deg);
        }

        .presc-acc-content {
            display: none;
            background: var(--kinari);
            padding: 50px 40px;
        }

        .presc-cat-intro {
            font-size: 14px;
            color: var(--enji);
            border-left: 2px solid var(--enji);
            padding-left: 15px;
            margin-bottom: 40px;
            font-weight: 500;
            line-height: 1.8;
        }

        .access-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 60px;
            align-items: start;
        }

        .presc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .presc-card {
            background: var(--warm-white);
            padding: 32px;
            border-radius: 12px;
            border: 1px solid var(--border-wa);
            box-shadow: var(--shadow-subtle);
        }

        .presc-card-name {
            font-family: 'Noto Serif JP', serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--sumi);
            margin-bottom: 20px;
            display: block;
            border-bottom: 1px solid var(--kinari);
            padding-bottom: 10px;
        }

        .presc-card-subhead {
            font-size: 11px;
            font-weight: 700;
            color: var(--enji);
            letter-spacing: 0.05em;
            display: block;
            margin-bottom: 6px;
            text-transform: uppercase;
        }

        .presc-card-desc {
            font-size: 14px;
            color: var(--text-mid);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .presc-card-desc:last-child {
            margin-bottom: 0;
        }

        .presc-footer-note {
            text-align: center;
            margin-top: 100px;
            font-size: 14px;
            color: var(--text-mid);
            line-height: 2.2;
            border-top: 1px solid var(--border-wa);
            padding-top: 40px;
        }

        .sp-br {
            display: none;
        }

        .diff-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }


        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: 1s ease;
        }

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


        .fixed-cta-sp {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            display: none;
            z-index: 100;
        }

        .fixed-cta-sp>* {
            flex: 1;
            padding: 18px 10px;
            text-align: center;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            line-height: 1.3;
        }

        .cta-tel-sp {
            background: var(--enji);
            color: #fff;
            font-weight: 700;
            font-size: 16px;
        }

        .cta-hours-sp {
            background: var(--hill-back);
            color: var(--sumi);
            font-size: 13px;
            border-top: 1px solid var(--border-wa);
        }


        .mobile-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(5px);
            z-index: 999;
            padding: 12px 20px;
            display: none;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid var(--border-wa);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
            height: 60px;
        }

        .mobile-header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-family: 'Noto Serif JP', serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--sumi);
            letter-spacing: 0.08em;
            transition: 0.3s;
        }

        .mobile-header-icon {
            width: 28px;
            height: 28px;
        }


        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 24px;
            height: 18px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
            position: absolute;
            right: 20px;
            z-index: 1000;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: var(--sumi);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.is-active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.is-active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.is-active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        body.menu-open {
            overflow: hidden;
        }

        @media (max-width: 375px) {
            .presc-grid {
                grid-template-columns: 1fr;
            }
            
            .presc-acc-content {
                padding: 30px 20px;
            }
            
            .presc-card {
                padding: 20px;
            }
        }

        @media (max-width: 1024px) {
            body {
                padding-top: 60px;
            }

            .mobile-header {
                display: flex;
            }

            .hamburger {
                display: flex;
            }

            .sp-indent {
                display: inline-block;
                padding-left: 1.5em;

            }

            .book-row-1 {
                justify-content: center !important;
            }

            .book-row-2 {
                text-align: center;
            }

            .hero {
                display: flex;
                flex-direction: column;
                padding: 0;
            }

            .hero-sidebar {
                position: fixed;
                top: 60px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 60px);
                overflow-y: auto;
                background: rgba(255, 252, 249, 0.98);
                backdrop-filter: blur(10px);
                z-index: 998;
                transition: left 0.4s ease;
                border: none;
                padding: 40px 20px 120px;

            }

            .hero-sidebar.is-active {
                left: 0;
            }

            .hero-photo {
                height: auto;
                order: 1;

                background: transparent;
                padding-bottom: 30px;
            }

            .hero-waves {
                height: 480px;
                top: 0;
                bottom: auto;
                z-index: 1;
            }

            .pc-waves {
                display: none;
            }

            .sp-waves {
                display: block;
            }



            .hero-photo-inner {
                height: auto;
                margin-top: 0;
                padding: 20px 0 0 0;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
            }

            .swiper-container-wrap {
                width: 100%;
                order: 1;
            }

            .fv-swiper .swiper-slide {
                width: 320px !important;
            }

            .hero-copy {
                position: relative;
                width: 100%;
                margin: 20px 0 20px 0;

                padding: 0 30px;
                text-align: left;
                z-index: 10;
                order: 2;
            }

            .hero-copy h1 {
                font-size: 28px;
                padding: 0;
                background: none;
                box-shadow: none;
                color: var(--sumi);
                line-height: 1.6;
            }


            .shape-drum img {
                border-radius: 20px 20px 80px 80px !important;
            }

            .shape-leaf-r img {
                border-radius: 80px 20px 80px 20px !important;
            }

            .shape-leaf-l img {
                border-radius: 20px 80px 20px 80px !important;
            }


            .blob-1 {
                width: 240px;
                height: 240px;
                top: -2%;
                left: -15%;
            }

            .blob-2 {
                width: 200px;
                height: 200px;
                top: 15%;
                right: -10%;
            }

            .blob-3 {
                width: 160px;
                height: 160px;
                top: 38%;
                left: -10%;
            }

            .blob-4 {
                width: 190px;
                height: 190px;
                top: 58%;
                right: -12%;
            }

            .blob-5 {
                width: 260px;
                height: 260px;
                bottom: -3%;
                left: -5%;
            }

            .blob-6 {
                width: 140px;
                height: 140px;
                bottom: 10%;
                right: -5%;
            }

            .about-grid,
            .owner-grid,
            .service-grid,
            .flow-grid,
            .theory-grid,
            .access-grid,
            .diff-grid,
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-nav {
                grid-template-columns: 1fr;
                gap: 0;
            }

            p,
            .qa-a,
            .trouble-item,
            .presc-card-desc {
                font-size: 16px !important;
                line-height: 1.8;
            }

            .sp-br {
                display: block;
            }

            .fixed-cta-sp {
                display: flex;
            }

            section {
                padding: 70px 20px;
            }

            .footer-social {
                justify-content: center !important;
            }

            .pc-only-video {
                display: block;
            }

            .pc-only-video video {
                object-position: 70% center;
            }

            .sp-only-video {
                display: block;
            }

            #owner {
                background-attachment: scroll;
                background-size: cover;
            }
        }




        .inline-sp-sidebar {
            display: none;
        }

        @media (max-width: 1024px) {
            .inline-sp-sidebar {
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 40px 20px;
                background: rgba(255, 252, 249, 0.98);
                width: 100%;
                border-top: 1px solid var(--border-wa);
                position: relative;
                z-index: 10;
                margin-top: 0;
                order: 2;
            }
        }

        /* Page Top Button */
        .page-top {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 60px;
            height: 60px;
            background: var(--enji);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            text-decoration: none;
            z-index: 99;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .page-top:hover {
            opacity: 1;
        }

        @media (max-width: 1024px) {
            .page-top {
                right: 15px;
                bottom: 85px;
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }
