:root {
    --primary-color: #2d4a3e;
    /* Deep Green */
    --secondary-color: #333333;
    /* Charcoal Grey */
    --accent-color: #c9a66b;
    /* Gold accent for luxury */
    --bg-light: #f9f9f9;
    --text-color: #222;
    --white: #ffffff;
    --soft-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-user-select: none;
    /* Prevent selection as requested (right click handled in JS) */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background-color: #fafaf8;
    /* Extremely subtle warm grey/white */
}

@media (max-width: 767px) {
    .container {
        padding: 0 5%;
    }

    .section {
        padding: 70px 0;
    }
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: #043c28;
    /* Deep Green from reference */
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.scrolled {
    background: #043c28;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1025px) {
    #header {
        background: #043c28;
        /* Keep solid on PC if needed, or keep transparent for overlap design */
    }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    /* Wider padding like in the image */
}

.logo {
    font-size: 32px;
    /* Larger logo */
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.logo a {
    color: var(--white);
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

/* PC Nav */
.pc-nav {
    display: block;
    /* Visible on PC */
}

.pc-nav ul {
    display: flex;
    gap: 40px;
    /* Space between items */
    align-items: center;
}

.pc-nav li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    transition: var(--transition);
    text-align: center;
}

.pc-nav .en {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.pc-nav .jp {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 4px;
}

.pc-nav .nav-contact {
    font-size: 16px;
    /* Match EN size */
    font-weight: 700;
    letter-spacing: 0.05em;
    /* Contact is just text in the image, maybe slightly different? Treated same for consistency unless specified */
}

.pc-nav li a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .header-inner {
        padding: 0 20px;
    }

    .pc-nav {
        display: none;
        /* Hide on Tablet/SP */
    }

    .menu-trigger {
        display: block;
    }
}

/* Removed old .btn styling for header as it is replaced by Nav text */
.btn-insta {
    /* Keep generic styles if used elsewhere */
    background: linear-gradient(135deg, var(--primary-color), #3d6354);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(45, 74, 62, 0.2);
}

/* Hamburger */
.menu-trigger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 45px;
    height: 32px;
    position: relative;
    z-index: 2000;
}

.menu-trigger span {
    display: block;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    position: absolute;
    transition: var(--transition);
    border-radius: 2px;
}

.menu-trigger span:nth-child(1) {
    top: 0;
}

.menu-trigger span:nth-child(2) {
    top: 14px;
}

.menu-trigger span:nth-child(3) {
    bottom: 0;
}

.menu-trigger.active span {
    background: var(--white) !important;
}

.menu-trigger.active span:nth-child(1) {
    transform: translateY(14px) rotate(45deg);
}

.menu-trigger.active span:nth-child(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-child(3) {
    transform: translateY(-14px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .menu-trigger {
        width: 36px;
        /* Slightly narrower for a better ratio */
        height: 24px;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: block;
    }

    #header .header-inner {
        position: relative;
        min-height: 60px;
        /* Adjusted to 60px */
    }

    .logo img {
        height: 36px;
        /* Slightly larger to look good in 60px height */
    }

    .menu-trigger span {
        height: 3px;
        width: 100%;
        background: var(--accent-color);
        position: absolute;
        left: 0;
        transition: var(--transition);
        border-radius: 2px;
    }

    .menu-trigger span:nth-child(1) {
        top: 0;
    }

    .menu-trigger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-trigger span:nth-child(3) {
        bottom: 0;
    }

    .menu-trigger.active span:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
        /* Center of 24px is 12px, half of 3px is 1.5, so 10.5 */
    }

    .menu-trigger.active span:nth-child(2) {
        opacity: 0;
        transform: translate(-10px, -50%);
        /* Slide out slightly */
    }

    .menu-trigger.active span:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }
}

/* SP Nav */
.sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--secondary-color);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: var(--transition);
    padding-top: 60px;
    /* Space for back button */
}

.sp-nav-back-wrap {
    position: absolute;
    top: 30px;
    left: 40px;
}

.sp-nav-close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 24px;
    border-radius: 4px;
    transition: var(--transition);
}

.sp-nav-close-btn:hover {
    background: var(--accent-color);
    color: var(--white);
}

.sp-nav.active {
    transform: translateX(0);
}

.sp-nav ul {
    text-align: center;
}

.sp-nav li {
    margin-bottom: 30px;
}

.sp-nav a {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

/* SP Nav CTA */
.sp-nav-cta {
    width: 80%;
    margin: 0 auto 30px;
}

.btn-sp-insta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), #3d6354);
    color: var(--white);
    padding: 16px 30px;
    border-radius: 0;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* FV */
#fv {
    width: 100%;
    /* Height is determined by content */
    margin: 70px 0 0 0;
    /* Header offset */
    padding: 0;
    overflow: visible;
}

@media (max-width: 1024px) {
    #fv {
        margin-top: 90px;
        /* Lowered by an additional 30px (Total 90px offset) */
    }
}

.fv-container {
    display: flex;
    width: 100%;
    align-items: stretch;
    /* Align height */
}

/* Left Column */
.fv-left {
    width: 65%;
    position: relative;
    line-height: 0;
}

.fv-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* 上下左右切れないように */
}

/* Right Column */
.fv-right {
    width: 35%;
    position: relative;
    overflow: hidden;
    /* Height will match fv-left because of flex stretch */
}

.fv-right-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fv-right-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Background is allowed to be cropped */
}

.fv-swiper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.fv-swiper .swiper-slide {
    height: 100%;
    display: flex;
    /* Center image */
    align-items: center;
    justify-content: center;
}

.fv-swiper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 上下左右切れないように */
    /* 左右余白なし -> Swiper default is no gap unless spaceBetween is set */
}

/* Utility Display Classes */
.sp-only,
.sp-title-img {
    display: none;
}

@media (max-width: 767px) {

    .pc-only,
    .pc-title-img {
        display: none !important;
    }

    .sp-only,
    .sp-title-img,
    .title-bg {
        display: block;
    }
}

/* SP FV Styles */
@media (max-width: 767px) {
    .sp-fv {
        position: relative;
        width: 100%;
        height: 135vw;
        /* Increased from 110vw to show more of the bottom stripes */
        line-height: 0;
        overflow: hidden;
        /* Crop everything below 110vw */
        background-color: var(--primary-color);
    }

    .sp-fv-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .sp-fv-bg img {
        width: 100%;
        height: auto;
        /* Natural scale to ensure sides are visible (contain behavior) but vertically overflowed */
        display: block;
        object-fit: contain;
        object-position: center top;
    }

    .sp-fv-slider-wrap {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        /* Align to bottom area of FV */
        z-index: 10;
        overflow: visible;
    }

    .sp-fv-swiper {
        width: 100%;
        height: auto;
        padding-top: 20px;
        /* Reduced to show more background */
        padding-bottom: 20px;
        /* Reduced to show more background */
        transform: translateY(-20px);
        /* Lowered by an additional 30px (Total adjustment -20px) */
        /* Base padding to allow overflow visualization */
        overflow: visible !important;
    }

    .sp-fv-swiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s;
    }

    /* .sp-fv-swiper .swiper-slide-active rule removed to stop scaling deformation */

    .sp-fv-swiper .slide-inner-circle {
        position: relative;
        width: 52vw;
        height: 52vw;
    }

    .sp-fv-swiper .slide-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* Show the entire graphic including waves */
        border-radius: 0;
        /* Already has circle in image */
        border: none;
        /* Already has border in image */
        box-shadow: none;
        /* Already has styling in image */
    }

    .sp-fv-swiper .wave-overlay {
        position: absolute;
        bottom: -20px;
        /* Adjust vertical position */
        right: -30px;
        /* Adjust horizontal position */
        width: 100px;
        /* Adjust size of the wave */
        height: auto;
        z-index: 5;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }
}

/* Section Title */
.section-title-wrap {
    position: relative;
    text-align: center;
    margin-bottom: 80px;
}

.title-bg {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
    filter: none;
    /* Removed filter */
}

#about .pc-title-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#service .pc-title-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#menu .pc-title-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#voice .pc-title-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#message .pc-title-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Voice */
.voice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.voice-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: var(--soft-shadow);
    padding: 40px;
    border-radius: 0;
}

.voice-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.voice-author {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
}

/* Layout Grids */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    /* Maintain height */
}

.asymmetry {
    grid-template-columns: 6.5fr 3.5fr;
    /* Text side: 65%, Image side: 35% */
}

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

#message .img-box img {
    width: 60%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.clean-layout .text-box {
    padding: 0;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
}

/* Concept Lux List */
.concept-lux-list {
    margin-bottom: 40px;
    padding-left: 0;
}

.concept-lux-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(45, 74, 62, 0.1);
    /* Subtle primary color border */
}

.lux-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Times New Roman', serif;
    /* Serif accent */
    margin-top: 5px;
    position: relative;
}

.lux-num::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 10px;
    height: 1px;
    background: var(--accent-color);
}

.lux-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 1.6;
}

.brand-emphasis {
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
}

.main-desc {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 30px;
}

@media (max-width: 767px) {
    .lux-text {
        font-size: 16px;
    }

    .main-desc {
        font-size: 18px;
    }
}

/* SV Section */
.compact-sv {
    margin-bottom: 12px;
    padding-top: 50px;
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .compact-sv {
        padding-top: 35px;
        padding-bottom: 7px;
    }
}


.small-banner {
    max-height: 200px;
    /* Significant reduction */
}

.small-banner img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* CTA Bar Inline Fixed Styles */
.cta-bar-inline {
    margin-top: 0;
    text-align: center;
}

.cta-banner-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    line-height: 0;
    transition: var(--transition);
}

.cta-banner-container:hover {
    transform: translateY(-3px);
}

.cta-banner-img {
    width: 100%;
    height: auto;
}

.cta-overlay-link {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 10;
}

.tel-area {
    top: 0;
}

.insta-area {
    bottom: 0;
}

/* Hover effect for clickable areas */
.cta-overlay-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-banner-link {
    display: block;
    width: 100%;
    line-height: 0;
    transition: opacity 0.3s;
}

.cta-banner-link:hover {
    opacity: 0.8;
}

.cta-banner-link img {
    width: 100%;
    height: auto;
}

/* Custom overlay for "WEBお問い合わせ" if needed, 
   but ideally the image itself is used. 
   Assuming the user wants the image part clickable. */
.insta-part {
    margin-top: -2px;
    /* Slight overlap to avoid gap */
}

.cta-flex {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-bar-inline .cta-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 45px;
    border-radius: 0;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.cta-bar-inline .btn-tel {
    background: linear-gradient(135deg, var(--primary-color), #3d6354);
}

.cta-bar-inline .btn-insta {
    background: linear-gradient(135deg, #e1306c, #c13584);
}

.cta-bar-inline .cta-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 0;
}

.gallery-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-img:hover {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cta-flex {
        flex-direction: column;
        gap: 10px;
    }
}

.mb-cta {
    margin-bottom: 80px;
    /* Space below Service CTA */
}

/* Radius Custom */
.radius-lg {
    border-radius: 0;
}

.radius-custom {
    border-radius: 0;
}

/* Service */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 80px;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-img {
    flex: 1;
}

.service-img img {
    width: 100%;
    border-radius: 0;
    box-shadow: var(--soft-shadow);
}

.service-content {
    flex: 1.2;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Menu Highlight */
.fixed-bg-section {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 120px 0;
    position: relative;
    color: var(--white);
}

.fixed-bg-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.menu-highlight {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(45, 74, 62, 0.9);
    color: var(--white);
}

.menu-highlight h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
}

.price span {
    font-size: 16px;
    color: var(--white);
}

/* Special Course Redesign */
.special-course-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.special-course-card {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 40px;
    background: var(--bg-light);
    border-left: 8px solid var(--primary-color);
    margin-bottom: 40px;
}

.special-course-card:last-child {
    margin-bottom: 0;
}

.menu-btn-wrap {
    text-align: center;
    margin-top: 60px;
}

.btn-more {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: var(--transition);
    border: 1px solid var(--primary-color);
}

.btn-more:hover {
    background: transparent;
    color: var(--primary-color);
}

.course-img-small {
    flex: 0 0 35%;
}

.course-img-small img {
    width: 100%;
    border-radius: 0;
    box-shadow: var(--soft-shadow);
}

.course-content-rich {
    flex: 1;
}

.course-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 0;
    margin-bottom: 15px;
}

.course-content-rich h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.price-val {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price-val span {
    font-size: 14px;
    color: #666;
}

.course-hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
    width: 60px;
}

.course-description {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.course-note {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

@media (max-width: 900px) {
    .special-course-card {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }

    .course-img-small {
        flex: 1;
        width: 100%;
        max-width: 300px;
    }
}

/* Gallery */
.gallery-swiper {
    padding: 40px 0;
}

.gallery-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-img:hover {
    filter: brightness(0.8);
    transform: scale(0.98);
}

/* Access Table */
.access-table {
    width: 100%;
    border-collapse: collapse;
}

.access-table tr:first-child th,
.access-table tr:first-child td {
    border-top: 1px solid #ddd;
}

.access-table th,
.access-table td {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.access-table th {
    width: 100px;
    white-space: nowrap;
    padding-right: 40px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 15px;
}

.access-table td {
    font-size: 16px;
    color: #444;
}

.access-table td a {
    color: var(--primary-color);
    font-weight: 700;
}

/* Access Logo */
.access-logo {
    text-align: center;
    margin-bottom: 50px;
}

.access-logo img {
    width: 100%;
    max-width: 210px;
    /* Reduced to 70% */
    height: auto;
}

/* Access Grid */
.access-grid {
    display: grid;
    grid-template-columns: 4.5fr 5.5fr;
    gap: 40px;
}

.sns-icons {
    margin-top: 40px;
}

.insta-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #E1306C;
}

/* Footer */
#footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 40px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.copyright {
    font-size: 12px;
    opacity: 0.6;
}

/* Floating UI */
.pagetop {
    position: fixed;
    right: 30px;
    bottom: 100px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 900;
}

.pagetop.show {
    opacity: 1;
    pointer-events: auto;
}

.sp-fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {

    .grid-2col,
    .asymmetry,
    .asymmetry.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .broken-grid-right,
    .broken-grid-left,
    .shift-left,
    .shift-right,
    .overlay-text {
        transform: none;
        margin: 0;
    }

    .glass-box {
        padding: 40px 20px;
    }
}

@media (max-width: 767px) {

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

    .menu-trigger {
        display: block;
    }

    .section-title {
        font-size: 24px;
    }

    .service-item,
    .service-item.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .voice-grid {
        grid-template-columns: 1fr;
    }

    .access-grid {
        grid-template-columns: 1fr;
    }

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

    .sp-fixed-cta a {
        flex: 1;
        padding: 15px;
        text-align: center;
        font-weight: 700;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .cta-tel {
        background: var(--primary-color);
        color: var(--white);
    }

    .cta-line {
        background: #06C755;
        color: var(--white);
    }

    .cta-line img {
        width: 24px;
    }

    #fv .swiper-slide img {
        height: auto;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}

/* Banner Link Style */
.banner-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: var(--soft-shadow);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.banner-link:hover .banner-overlay {
    opacity: 1;
}

.banner-text {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    border: 2px solid var(--white);
    padding: 10px 20px;
}

/* Modified Concept Title Decoration */
#tv .section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
}

#tv .section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 30px;
    background-image: url('../img/concept_bg.png');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 10px;
}

/* Adjust padding for About section to reduce space below banner */
#about {
    padding-top: 50px;
}

.cta-banner-img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 800px;
    /* PCでの表示幅を制限する場合 */
    margin: 0 auto;
}

/* Collage Grid Styles */
.collage-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, auto);
    gap: 10px;
    width: 100%;
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.collage-img.lg {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
}

.collage-img.md {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    aspect-ratio: 1 / 1;
}

.collage-img.sm {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    aspect-ratio: 1 / 1;
}

@media (max-width: 767px) {
    .collage-grid {
        gap: 5px;
    }
}

/* Service Image Grid */
.service-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: end;
}

.service-img-grid.size-diff {
    grid-template-columns: 1.5fr 1fr;
    /* 鯵(大) vs 鳥白湯(小) */
}

.square-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
    /* 角Rを止める */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.square-img.sm {
    width: 80%;
    /* 鳥白湯をさらに小さく調整 */
}

@media (max-width: 767px) {
    .service-img-grid {
        gap: 10px;
    }
}

/* Menu Section Fixes */
.special-course-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
}

.menu-item-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px;
    width: 100%;
}

.course-img-fixed {
    width: 300px;
    flex-shrink: 0;
}

.course-img-fixed img {
    width: 100%;
    height: 225px;
    /* 4:3 Aspect Ratio */
    object-fit: cover;
    border-radius: 4px;
}

/* Ensure text container takes remaining space */
.course-content-rich {
    flex: 1;
}

@media (max-width: 767px) {
    .menu-item-row {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .course-img-fixed {
        width: 100%;
        margin-bottom: 20px;
    }

    .course-img-fixed img {
        height: auto;
        aspect-ratio: 4/3;
    }
}

/* Menu Typography Update */
.course-content-rich h3 {
    font-size: 18pt;
}

.course-content-rich .price-val {
    font-size: 18pt;
}

/* Google Review Style Voice Section */
.voice-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 50px;
    /* Space for arrows */
}

.voice-grid.google-style {
    display: flex !important;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    gap: 20px;
    padding-bottom: 20px;
    scrollbar-width: none;
    /* Firefox */
}

.voice-grid.google-style::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.voice-card.google-card {
    min-width: 320px;
    flex: 0 0 320px;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Noto Sans JP', sans-serif;
    text-align: left;
    border: 1px solid #eee;
    position: relative;
    /* For absolute positioning of Google Icon */
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.reviewer-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-right: 12px;
}

.icon-gray {
    background-color: #5f6368;
}

.icon-orange {
    background-color: #e3710e;
}

.icon-green {
    background-color: #0f9d58;
}

.icon-blue {
    background-color: #1a73e8;
}

.reviewer-info {
    flex: 1;
    padding-right: 30px;
    /* Prevent overlap with absolute icon */
}

.reviewer-name {
    font-size: 15px;
    font-weight: 700;
    color: #202124;
    line-height: 1.2;
    margin-bottom: 4px;
}

.review-date {
    font-size: 12px;
    color: #70757a;
}

/* Absolute Positioned Google Icon */
.google-mark {
    position: absolute;
    top: 24px;
    right: 24px;
}

.google-mark img {
    width: 24px;
    height: 24px;
    display: block;
}

.star-rating {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #fbbc04;
    /* Google Star Color */
    font-size: 14px;
    gap: 5px;
}

.verified-badge {
    color: #1a73e8;
    font-size: 14px;
}

.voice-text {
    font-size: 14px;
    color: #3c4043;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* Truncate text if too long */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    /* White background for visibility */
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
    /* Adjust size for text arrow */
    font-weight: bold;
    color: #5f6368;
    line-height: 1;
}

.slider-btn:hover {
    background: #f8f9fa;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

@media (max-width: 767px) {
    .voice-slider-wrapper {
        padding: 0;
    }

    .slider-btn {
        display: none;
        /* Hide arrows on mobile */
    }

    .voice-card.google-card {
        min-width: 280px;
        flex: 0 0 280px;
    }
}

/* --- SP Styles Adjustment --- */
@media (max-width: 767px) {
    .section {
        padding: 20px 0 !important;
    }

    #about,
    #service,
    #menu,
    #voice,
    #message {
        padding: 20px 0 !important;
    }

    /* Reduce gap between title and content */
    .section-title-wrap {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 25px !important;
    }

    /* Tighten SV (Banner) section */
    .compact-sv {
        padding-top: 15px !important;
        padding-bottom: 5px !important;
    }

    /* Reduce gaps between items */
    .service-list {
        gap: 40px !important;
    }

    .service-item,
    .service-item.reverse {
        gap: 15px !important;
    }

    .service-img-grid {
        gap: 8px !important;
    }

    /* Tighten CTA spacing */
    .mb-cta {
        margin-bottom: 30px !important;
    }

    .cta-bar-inline.section-padding {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    /* Menu items spacing */
    .special-course-wrapper {
        gap: 30px !important;
    }

    .menu-btn-wrap {
        margin-top: 30px !important;
    }

    /* Container fluid width with safe side padding */
    .container {
        width: 100% !important;
        max-width: none !important;
        padding-left: 5% !important;
        padding-right: 5% !important;
    }
}