@charset "UTF-8";

/* Variables */
:root {
    --color-text: #333333;
    --color-main: #61A653; /* A natural green from the design */
    --color-bg-light: #F9F6F0; /* Creamy beige background */
    --color-white: #FFFFFF;
    --color-accent: #E88732; /* Orange accent */
    --font-ja: 'Noto Sans JP', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-ja);
    font-size: 16px;
    color: var(--color-text);
    background-color: var(--color-bg-light);
    line-height: 1.8;
    letter-spacing: 0.05em;
    overflow-x: hidden;
    width: 100%;
    /* Disable right-click, selection, and copy */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

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

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

.text-center {
    text-align: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4%;
}

.section {
    padding: 80px 0;
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 96%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 50px;
    z-index: 1000;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 4%;
    max-width: 1200px;
    margin: 0 auto;
}
.header-logo img {
    height: 50px;
}
.header-nav ul {
    display: flex;
    gap: 30px;
}
.header-nav a {
    font-weight: 700;
    color: var(--color-text);
}
.header-nav a:hover {
    color: var(--color-main);
}
.header-contact-btn {
    color: var(--color-white) !important;
}
@media screen and (max-width: 768px) {
    .header-nav {
        display: none;
    }
    .header {
        top: 10px;
        border-radius: 30px;
        width: 95%;
    }
    .header-inner {
        padding: 10px;
        justify-content: center;
    }
    .header-logo span {
        font-size: 0.95rem !important;
    }
    .header-logo img {
        height: 30px !important;
    }
    .fv {
        min-height: 600px !important;
    }
    .fv-text-box {
        margin-top: 0px !important;
    }
    .fv-tagline {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }
    .fv-catch {
        font-size: 1.4rem !important;
    }
}

/* Opening Animation */
.opening-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-main);
    z-index: 9999;
    animation: slideUpCurtain 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s forwards;
    transform-origin: top;
}
@keyframes slideUpCurtain {
    0% { transform: scaleY(1); }
    100% { transform: scaleY(0); }
}

/* FV - Ricoas Style */
.fv {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}
.fv-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.fv-slide-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 6s linear;
}
.fv-bg-1 { background-image: url('../img/FV1.jpg'); }
.fv-bg-2 { background-image: url('../img/FV2.jpg'); }
.swiper-slide-active .fv-slide-img {
    transform: scale(1.1);
}
.fv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}
.fv-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4%;
}
.fv-text-box {
    color: var(--color-white);
    margin-top: 0px; /* Offset for header reduced to move text higher */
}
.fv-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 1.2s forwards;
}
.fv-catch {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.fv-catch-line {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}
.fv-catch-line span {
    display: inline-block;
    animation: revealText 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transform: translateY(100%);
    opacity: 0;
}
.fv-catch-line:nth-child(1) span { animation-delay: 1.4s; }
.fv-catch-line:nth-child(3) span { animation-delay: 1.6s; }

/* FV Buttons */
.fv-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 1.8s forwards;
}
.fv-btn-tel, .fv-btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    min-width: 200px;
    text-decoration: none;
}
.fv-btn-tel {
    background: #FF9800;
    color: #fff !important;
}
.fv-btn-tel:hover {
    background: #e68a00;
    transform: translateY(-3px);
}
.fv-btn-contact {
    background: #11a34f;
    color: #fff !important;
}
.fv-btn-contact:hover {
    background: #0e8541;
    transform: translateY(-3px);
}
@media screen and (max-width: 768px) {
    .fv-btns {
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
    }
    .fv-btn-tel, .fv-btn-contact {
        width: 100%;
        min-width: auto;
    }
}

/* Scroll down indicator */
.scroll-down {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}
.scroll-down-text {
    font-size: 0.8rem;
    color: var(--color-white);
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.scroll-down-line {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}
.scroll-down-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    animation: scrollDownAnim 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollDownAnim {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}
@keyframes revealText {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Typography */
.section-title, .worry-title, .voice-title, .price-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-main);
}
.section-title span, .price-title span, .voice-title span {
    font-size: 1rem;
    display: block;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
}

/* 1. Worry Section */
.worry {
    padding: 0; /* Background image might have padding */
    margin-top: 60px;
}
.worry-bg-container {
    background-image: url('../img/worrybg.png');
    background-size: cover;
    background-position: center top;
    padding: 100px 0 calc(100px + 8vw);
    color: var(--color-white);
}
.worry-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}
.worry-title {
    color: var(--color-white);
    border-bottom: 1px solid var(--color-white);
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 0;
}
.worry-image {
    text-align: center;
    margin-bottom: 30px;
}
.worry-image img {
    max-width: 600px;
}
.worry-list-container {
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.worry-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.worry-list li {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.worry-list .check-icon {
    color: var(--color-white);
    margin-right: 10px;
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .worry-list {
        grid-template-columns: 1fr;
    }
}

/* 2. About Section */
.about {
    background-color: var(--color-white);
    border-radius: 50% 50% 0 0 / 8vw 8vw 0 0;
    margin-top: -8vw;
    padding-top: calc(40px + 8vw);
    position: relative;
    z-index: 1;
}
.about .container, .service .container {
    max-width: 1100px;
}
.about-line {
    width: 1px;
    height: 80px;
    background-color: #2b4e2b;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.about-line::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #2b4e2b;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
}
.about-intro {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 80px;
}
.marker-orange {
    background-image: linear-gradient(transparent 60%, #FF9800 60%);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0% 100%;
    transition: background-size 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s;
}
:not(.js-enabled) .marker-orange {
    background-size: 100% 100%;
}
.js-enabled .is-visible .marker-orange {
    background-size: 100% 100%;
}
.large-text {
    font-size: 1.3em;
}
.about-badges {
    margin-top: 100px;
}
.about-badges-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 15px;
}
.about-badges-desc {
    margin-bottom: 30px;
    font-weight: 500;
    display: inline-block;
    word-break: keep-all;
}
.badge-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
}
.badge-item {
    text-align: center;
    font-weight: 700;
    color: var(--color-text);
    flex-shrink: 0;
}
.badge-item img {
    width: 180px;
    display: block;
    margin-bottom: 10px;
}
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}
.about-image {
    flex: 1.8;
}
.about-image img {
    border-radius: 10px;
}
.about-text {
    flex: 1;
}
.about-catch {
    font-size: 1.3rem;
    color: var(--color-main);
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    .badge-list {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 20px;
    }
    .badge-item img {
        width: 140px;
    }
}

/* 3. Service Section */
.service {
    background-color: var(--color-bg-light);
}
.fukidashi {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
}
.fukidashi::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: var(--color-accent) transparent transparent transparent;
}
.service-main-title {
    font-size: 2rem;
    color: var(--color-main);
    margin-bottom: 60px;
}
.service-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.service-item {
    display: flex;
    align-items: center;
    gap: 0;
    background: transparent;
}
.service-item.reverse {
    flex-direction: row-reverse;
}
.service-item-text {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}
.service-item:not(.reverse) .service-item-text {
    margin-right: -60px;
}
.service-item.reverse .service-item-text {
    margin-left: -60px;
}
.service-title-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.service-num {
    color: var(--color-main);
    font-weight: 900;
    line-height: 1;
    display: flex;
    flex-direction: column;
}
.point-text {
    font-size: 1.2rem;
}
.num-text {
    font-size: 4rem;
}
.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 0;
}
.service-item-image {
    flex: 1.5;
    position: relative;
    z-index: 2;
}
.service-item-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

@media screen and (max-width: 768px) {
    .service-item, .service-item.reverse {
        flex-direction: column;
    }
    .service-item-text {
        padding: 30px 20px;
    }
}

/* 4. Price Section */
.price {
    background-color: var(--color-white);
}
.price-notes-wrapper {
    text-align: center;
}
.price-notes {
    display: inline-block;
    text-align: left;
    margin-bottom: 30px;
    font-weight: 500;
}
.price-table-wrapper {
    background: var(--color-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.price-table {
    width: 100%;
    border-collapse: collapse;
}
.price-table th, .price-table td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: left;
}
.price-table th {
    background-color: var(--color-main);
    color: var(--color-white);
    text-align: center;
    font-weight: 700;
}
.table-section-header td {
    background-color: #eaf1e8; /* Light green */
    font-weight: 700;
    color: var(--color-main);
    text-align: center;
}
.price-val {
    text-align: right !important;
    font-weight: 700;
    white-space: nowrap;
}
.small-text {
    font-size: 0.8rem;
    color: #666;
    display: block;
    margin-top: 5px;
}
.text-sm {
    font-size: 0.85rem;
}
.table-highlight td {
    background-color: transparent;
}

@media screen and (max-width: 768px) {
    .price-table th, .price-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
    .price-val {
        white-space: normal;
    }
}

/* Gallery Slider */
.gallery-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 80px;
    padding: 10px 0 20px;
}
.gallery-track {
    display: flex;
    width: max-content;
    animation: scrollGallery 30s linear infinite;
}
.gallery-list {
    display: flex;
    gap: 20px;
    padding-right: 20px; /* Match the gap */
}
.gallery-list img {
    width: 320px;
    height: 240px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media screen and (max-width: 768px) {
    .gallery-slider {
        margin-top: 60px;
    }
    .gallery-list {
        gap: 15px;
        padding-right: 15px;
    }
    .gallery-list img {
        width: 240px;
        height: 180px;
    }
}

/* 5. Voice Section */
.voice {
    padding: 0;
}
.voice-bg-container {
    background-image: url('../img/voicebg.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    padding: 100px 0;
}
.voice-title {
    color: var(--color-white);
}
.voice-title span {
    color: rgba(255,255,255,0.7);
}
.voice-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.voice-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}
.voice-text {
    position: relative;
    flex-grow: 1;
}
.voice-text-inner {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}
.voice-card.is-open .voice-text-inner {
    -webkit-line-clamp: unset;
    display: block;
}
.read-more-btn {
    background: none;
    border: none;
    color: var(--color-main);
    font-weight: bold;
    cursor: pointer;
    padding-top: 15px;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    outline: none;
}
.btn {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(232, 135, 50, 0.3);
    transition: transform 0.3s;
}
.btn:hover {
    transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
    .voice-card {
        width: 100%;
    }
}

/* 6. Access Section */
.access-logo {
    margin-bottom: 40px;
}
.access-logo img {
    max-height: 80px;
}
.access-content {
    display: flex;
    gap: 50px;
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.access-info {
    flex: 1;
}
.access-map {
    flex: 1;
}
.access-info dl {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
}
.access-info dt, .access-info dd {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}
.access-info dt {
    width: 30%;
    font-weight: 700;
    color: var(--color-main);
}
.access-info dd {
    width: 70%;
}

@media screen and (max-width: 768px) {
    .access-content {
        flex-direction: column;
        padding: 20px;
    }
    .access-info dt {
        width: 100%;
        border-bottom: none;
        padding-bottom: 5px;
    }
    .access-info dd {
        width: 100%;
        padding-top: 0;
    }
}

/* Footer */
.footer {
    background-color: var(--color-main);
    color: var(--color-white);
    text-align: center;
    padding: 20px 0;
}
.footer .copy {
    font-size: 0.9rem;
}

/* Page Top Button */
.page-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--color-main);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.page-top.is-show {
    opacity: 1;
    visibility: visible;
}
.page-top:hover {
    background: #4a823f;
    transform: translateY(-3px);
}

/* --- Scroll Animations --- */
.js-enabled .fv-content, 
.js-enabled .worry-title-wrap, 
.js-enabled .worry-image, 
.js-enabled .worry-list li, 
.js-enabled .about-line,
.js-enabled .about-intro, 
.js-enabled .about-badges-title,
.js-enabled .about-badges-desc,
.js-enabled .badge-item, 
.js-enabled .about-image, 
.js-enabled .about-text, 
.js-enabled .service-header, 
.js-enabled .service-item, 
.js-enabled .price-title, 
.js-enabled .price-notes-wrapper, 
.js-enabled .price-table-wrapper, 
.js-enabled .price-cta, 
.js-enabled .voice-title, 
.js-enabled .voice-card, 
.js-enabled .access-logo, 
.js-enabled .access-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js-enabled .is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Stagger delays */
.js-enabled .worry-list li:nth-child(1) { transition-delay: 0.1s; }
.js-enabled .worry-list li:nth-child(2) { transition-delay: 0.2s; }
.js-enabled .worry-list li:nth-child(3) { transition-delay: 0.3s; }
.js-enabled .worry-list li:nth-child(4) { transition-delay: 0.4s; }
.js-enabled .worry-list li:nth-child(5) { transition-delay: 0.5s; }
.js-enabled .worry-list li:nth-child(6) { transition-delay: 0.6s; }

.js-enabled .badge-item:nth-child(1) { transition-delay: 0.1s; }
.js-enabled .badge-item:nth-child(2) { transition-delay: 0.2s; }
.js-enabled .badge-item:nth-child(3) { transition-delay: 0.3s; }
.js-enabled .badge-item:nth-child(4) { transition-delay: 0.4s; }
.js-enabled .badge-item:nth-child(5) { transition-delay: 0.5s; }

.js-enabled .voice-card:nth-child(1) { transition-delay: 0.1s; }
.js-enabled .voice-card:nth-child(2) { transition-delay: 0.2s; }
.js-enabled .voice-card:nth-child(3) { transition-delay: 0.3s; }

/* =======================================================
   Mobile Specific Overrides (Requested Adjustments)
   ======================================================= */
/* u-sp-only defaults */
.u-sp-only { display: none; }
.drawer-menu { display: none; }

/* Base Price notes text indent (all devices to prevent text under ※) */
.price-notes p {
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
    /* 1. Hamburger Menu CSS */
    .u-sp-only { display: block; }
    
    .header-contact-btn {
        display: none; /* Hide button in header if using drawer */
    }
    
    .hamburger {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        width: 30px;
        height: 24px;
        position: relative;
        z-index: 1001;
        margin-left: auto; /* push to right */
    }
    .hamburger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--color-main);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .hamburger span:nth-child(3) { bottom: 0; }
    .hamburger.is-active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    .hamburger.is-active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.is-active span:nth-child(3) {
        bottom: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }
    .drawer-menu {
        display: flex; /* Override desktop display: none */
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        z-index: 999;
        transition: right 0.3s ease, visibility 0.3s ease;
        justify-content: center;
        align-items: center;
        visibility: hidden;
    }
    .drawer-menu.is-active {
        right: 0;
        visibility: visible;
    }
    .drawer-menu ul {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .drawer-menu a {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--color-main);
    }
    body.no-scroll {
        overflow: hidden;
    }

    /* 2. Worry Section */
    .worry-bg-container {
        background-image: url('../img/SPworrybg.png') !important;
        background-size: 100% auto !important;
        background-position: top center !important;
        background-repeat: no-repeat !important;
    }
    .worry-title {
        font-size: 1.3rem !important;
    }
    .worry-image img {
        width: 100%;
        max-width: 100%;
    }
    .worry-list-container {
        padding: 15px !important;
    }

    /* 3. About Section */
    .about-intro {
        font-size: 0.95rem !important;
    }
    .about-intro .large-text {
        font-size: 1.1em !important;
    }
    .about-intro p {
        text-align: left !important;
    }
    .about-badges-title {
        font-size: 1.2rem !important;
    }
    .about-badges-desc {
        text-align: left !important;
        word-break: normal !important;
    }
    .badge-list {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 15px !important;
        overflow: visible !important;
        padding-bottom: 0 !important;
    }
    .badge-item:nth-child(5) {
        grid-column: 1 / -1;
    }
    .badge-item img {
        width: 100% !important;
        max-width: 150px;
        margin: 0 auto 5px !important;
    }
    .badge-item p {
        font-size: 0.85rem;
    }

    /* 4. Service Section */
    .service-main-title {
        font-size: 1.2rem !important;
    }
    .service-item:nth-child(3) .service-title {
        font-size: 1.15rem !important; /* Increased from 1.05rem to fit better */
    }
    .service-item, .service-item.reverse {
        flex-direction: column-reverse !important;
    }
    .service-item-text {
        margin: 0 !important;
        padding: 25px 20px !important;
    }
    
    /* 5. Price Section */
    .price-table-wrapper {
        overflow-x: auto;
        white-space: nowrap;
        padding: 15px !important;
    }
    .price-scroll-note {
        font-size: 0.85rem;
        color: #666;
        margin-bottom: 10px;
        text-align: right;
    }
    .price-cta-tel {
        font-size: 1.3rem !important;
    }

    /* Voice Section */
    .voice-bg-container {
        background-image: url('../img/SPvoicebg.png') !important;
        background-size: 100% auto !important;
        background-position: top center !important;
        background-repeat: no-repeat !important;
    }

    /* FV SP Images */
    .fv-bg-1 { background-image: url('../img/SPFV1.jpg') !important; }
    .fv-bg-2 { background-image: url('../img/SPFV2.jpg') !important; }

    /* Fixed Footer Buttons */
    body {
        padding-bottom: 70px; /* Offset for fixed footer */
    }
    .sp-fixed-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        background: #fff;
    }
    .sp-fixed-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px 0;
        color: #fff !important;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.95rem;
        gap: 8px;
    }
    .sp-fixed-btn-tel {
        background: #FF9800;
    }
    .sp-fixed-btn-contact {
        background: #11a34f;
    }
    .sp-fixed-btn svg {
        width: 20px;
        height: 20px;
    }
    .page-top {
        bottom: 90px !important; /* Move above footer */
    }

    /* Hide FV Buttons on SP (since we have fixed footer) */
    .fv-btns {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .u-pc-only { display: none !important; }
    .sp-text-left { text-align: left !important; font-size: 1.05rem !important; }
}
