:root {
    --primary-color: #f1965a;
    --primary-light: #fff3eb;
    --secondary-color: #ff7b3d;
    /* Accent for buttons like Booking */
    --background-color: #fdfdfb;
    --text-color: #3d332e;
    --text-light: #706660;
    --white: #ffffff;
    --grey: #f4f4f4;
    --line-color: #06C755;
    --font-main: 'Noto Sans JP', sans-serif;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --border-radius: 16px;
}

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

html {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-main);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 120px;
    /* Increased space for larger sticky footer */
}

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header-top {
    padding: 10px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1400px;
    position: relative;
}

/* Mobile Menu Toggle */
/* Mobile SNS icons (always visible in mobile header) */
.mobile-sns {
    display: none;
    align-items: center;
    gap: 12px;
    order: 2;
}

.mobile-sns-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 18px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-sns-icon:hover {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.header-right-top {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

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

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone-upper {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
}

.phone-upper i {
    font-size: 14px;
}

.phone-label {
    font-size: 12px;
    font-weight: 700;
}

.phone-number {
    font-size: 32px;
    /* Increased size */
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: 0.02em;
}

.phone-hours {
    font-size: 14px;
    color: var(--text-light);
}

.header-btns-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-sns {
    display: flex;
    gap: 10px;
    margin-right: 5px;
}

.sns-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey);
    color: var(--text-color);
    font-size: 28px;
    transition: 0.3s;
}

.sns-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.sns-icon i {
    font-family: 'Font Awesome 6 Brands', 'Font Awesome 5 Brands', sans-serif !important;
}

.btn-header {
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    text-align: center;
    min-width: 110px;
    transition: 0.3s;
}

.btn-header:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-inquiry {
    background: #FF8C5E;
}

.btn-catalog {
    background: #FFAD8A;
}

.btn-booking {
    background: #FF6B3D;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

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

.about-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-point {
    margin-top: 30px;
}

.about-point h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    margin-bottom: 10px;
}

.about-point h4 i {
    color: var(--primary-color);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Doctor Section */
.doctor-section {
    padding: 100px 0;
    background: var(--grey);
}

.doctor-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 50px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    box-shadow: var(--shadow);
}

.doctor-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.doctor-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.doctor-profile {
    font-size: 16px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 15px;
}

.doctor-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.clinic-info {
    background: var(--primary-light);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.clinic-logo-wrapper {
    flex: 0 0 200px;
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clinic-logo {
    max-width: 100%;
    height: auto;
}

.clinic-text {
    flex: 1;
}

.clinic-info h4 {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 18px;
}

.clinic-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Reason Section */
.reason-section {
    padding: 100px 0;
    background: var(--white);
}

.reason-representative {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: center;
    background: var(--primary-light);
    border-radius: var(--border-radius);
    padding: 50px;
    margin-bottom: 60px;
}

.rep-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.rep-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.rep-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.rep-name-en {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-light);
    margin-left: 10px;
}

.rep-message {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-color);
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
}

.rep-message::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.reason-research {
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--border-radius);
    padding: 60px;
    box-shadow: var(--shadow);
}

.research-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.research-header i {
    font-size: 32px;
}

.research-header h3 {
    font-size: 24px;
}

.research-intro {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.research-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.research-item {
    background: var(--grey);
    padding: 30px;
    border-radius: 12px;
}

.research-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.research-item h4 .num {
    font-size: 24px;
    font-weight: 900;
    opacity: 0.3;
}

.research-footer {
    border-top: 1px dashed #ccc;
    padding-top: 30px;
    text-align: center;
    font-weight: 700;
    color: var(--text-color);
}

.subtitle {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: -10px;
}

.main-nav {
    background: var(--primary-color);
    width: 100%;
}

.container-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav ul {
    display: flex;
    justify-content: space-between;
}

.main-nav ul li {
    flex: 1;
}

.main-nav ul li a {
    display: block;
    padding: 15px 10px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    transition: 0.3s;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.main-nav ul li:last-child a {
    border-right: none;
}

.main-nav ul li a:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Condition Section */
.condition-section {
    padding: 80px 0;
    background: var(--grey);
}

.condition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.condition-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
}

.condition-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

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

.soel-card-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    background: white;
    padding: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.condition-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.4;
}

.service-name {
    font-size: 26px;
    color: var(--primary-color);
    font-weight: 900;
    display: block;
    margin-top: 5px;
}

.condition-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.condition-card:hover .card-btn {
    background: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fdfdfb 0%, #f0f7ef 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 50%, #eee 100%);
    border: 3px double #D4AF37;
    /* Double gold border */
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.8);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    /* For shine effect */
}

/* Shine effect animation */
.badge-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.badge-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
    border-color: #f1c40f;
}

.badge-item i {
    font-size: 24px;
    color: #D4AF37;
    margin-bottom: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.badge-item span {
    font-size: 12px;
    font-weight: 900;
    color: #b8860b;
    /* Darker gold/bronze */
    text-align: center;
    line-height: 1.1;
    padding: 0 5px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
}

.btn:active {
    transform: scale(0.98);
}

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

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

/* Flow Section */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title .subtitle {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.flow-section {
    padding: 100px 0;
    background: var(--white);
}

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

.flow-item {
    background: var(--primary-light);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.flow-item:not(:last-child)::after {
    content: '▶';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 12px;
}

.flow-number {
    font-size: 14px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.flow-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.flow-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.flow-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--background-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-light);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.faq-icon {
    min-width: 30px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.05);
    z-index: 2000;
    padding: 15px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: stickyFadeIn 0.8s ease forwards;
    animation-delay: 2.5s;
}

@keyframes stickyFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-btns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    max-width: 70%;
    margin: 0 auto;
}

.footer-btn {
    padding: 15px 12px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    color: var(--white);
    line-height: 1.3;
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}

.footer-btn:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.footer-btn i {
    font-size: 28px;
    margin-bottom: 8px;
}

.btn-tel {
    background: #7ca566;
}

.btn-line {
    background: var(--line-color);
}

.btn-booking {
    background: var(--secondary-color);
}

/* Responsive */
@media (max-width: 1100px) {
    nav {
        display: none;
        /* Hide nav earlier to make room for buttons and phone */
    }
}

@media (max-width: 991px) {
    .flow-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .flow-item:nth-child(3)::after {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .about-grid,
    .doctor-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .doctor-card {
        padding: 30px;
    }

    .doctor-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .condition-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reason-representative {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
    }

    .rep-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .rep-message {
        padding-left: 0;
        padding-top: 20px;
    }

    .rep-message::before {
        left: 50%;
        top: 0;
        bottom: auto;
        width: 40px;
        height: 4px;
        transform: translateX(-50%);
    }

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

    .research-section {
        padding: 60px 0;
    }

    .research-card {
        padding: 30px;
    }
}


@media (max-width: 767px) {
    .flow-grid {
        grid-template-columns: 1fr;
    }

    .flow-item::after {
        display: none !important;
    }

    nav,
    .main-nav {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-badges {
        justify-content: center;
        gap: 10px;
    }

    .badge-item {
        width: 80px;
        height: 80px;
    }

    .badge-item span {
        font-size: 10px;
    }

    .header-right {
        gap: 10px;
    }

    .phone-number {
        font-size: 22px;
    }

    .header-btns-group {
        display: none;
    }

    .phone-label,
    .phone-hours {
        display: none;
    }

    .cta-header {
        display: none;
    }

    .about-section,
    .doctor-section {
        padding: 60px 0;
    }

    .about-text h3 {
        font-size: 26px;
    }

    .doctor-content h3 {
        font-size: 24px;
    }

    .rep-content h3 {
        font-size: 28px;
    }

    .rep-message {
        font-size: 18px;
    }

    .research-header h3 {
        font-size: 20px;
    }

    .research-item {
        padding: 20px;
    }

    .header-sns {
        display: none;
    }

    .footer-btn {
        font-size: 14px;
        padding: 12px 8px;
    }

    .footer-btn i {
        font-size: 22px;
    }

    .footer-btns {
        max-width: 80%;
    }

    body {
        padding-bottom: 151px;
    }
}

@media (max-width: 480px) {
    .footer-btns {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-btn {
        flex-direction: row;
        gap: 15px;
        font-size: 22px;
        padding: 15px;
    }

    .footer-btn i {
        margin-bottom: 0;
    }

    body {
        padding-bottom: 250px;
    }

    /* Extra Small Mobile Adjustments */
    .logo img {
        height: 60px !important;
    }

    .phone-number {
        font-size: 20px !important;
    }

    .sns-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .soel-hero h1 {
        font-size: 20px;
    }

    .soel-hero p {
        font-size: 13px;
    }

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

    .service-header h2 {
        font-size: 18px;
    }

    .price-main {
        font-size: 32px;
    }

    .option-price {
        font-size: 24px;
    }

    .container {
        padding: 0 15px;
    }

    .check-list li {
        font-size: 14px;
        padding: 12px;
    }

    .price-options {
        flex-direction: column;
    }

    .about-soel,
    .faq-section,
    .service-pricing-title,
    .soel-service {
        padding: 40px 0;
    }
}

/* ================================================= =
   Soel Page Styles
================================================== */

.service-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 28px;
    border-radius: 50px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.soel-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faf7 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.soel-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 120%;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

.soel-hero .container {
    position: relative;
    z-index: 1;
}

.soel-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.soel-brand {
    margin-bottom: 40px;
}

.soel-main-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    background: white;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(241, 150, 90, 0.2);
    /* Subtle warm glow matching the logo */
}

.soel-hero h1 {
    font-size: 52px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--text-color);
}

.soel-hero p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Soel Check Section */
.soel-check {
    padding: 80px 0;
    background: var(--white);
}

.check-box {
    background: var(--primary-light);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.check-box h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
}

.check-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.check-list li {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.check-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.check-list li i {
    color: var(--primary-color);
    font-size: 24px;
}

.check-note {
    text-align: center;
    margin-top: 30px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
}

/* About Soel Section */
.about-soel {
    padding: 100px 0;
    background: var(--background-color);
}

.about-soel-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.lead-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-soel-text p {
    font-size: 17px;
    line-height: 2;
    color: var(--text-color);
    margin-bottom: 25px;
}

.about-soel-text p:last-child {
    margin-bottom: 12px;
}

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

.feature-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--white);
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* Soel Pain Section */
.soel-pain {
    padding: 100px 0;
    background: #fafaf8;
}

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

.pain-text p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.pain-points {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    border-left: 5px solid var(--secondary-color);
}

.pain-points span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.pain-points span:last-child {
    margin-bottom: 0;
}

.pain-text .highlight {
    font-size: 22px;
    font-weight: 900;
    color: var(--text-color);
    border-bottom: 3px solid var(--primary-color);
    display: inline;
}

.pain-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Soel Concept Section */
.soel-concept {
    padding: 120px 0;
    background: linear-gradient(to bottom, #fafaf8, #ffffff);
    text-align: center;
}

.concept-header h2 {
    font-size: 42px;
    margin-bottom: 40px;
    line-height: 1.4;
}

.concept-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
}

.concept-image {
    flex: 0 0 50%;
}

.concept-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.concept-body {
    flex: 1;
}

.concept-body p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .concept-layout {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .concept-image {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* Soel Support Section */
.soel-support {
    padding: 100px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.support-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid var(--grey);
}

.support-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.support-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
    opacity: 0.8;
}

.support-item p {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
}

.support-desc {
    max-width: 1000px;
    margin: 50px auto 0;
    background: var(--primary-light);
    padding: 40px;
    border-radius: 20px;
}

.support-desc p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.support-desc small {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

/* Use Cases Section */
.soel-usecases {
    padding: 100px 0;
    background: #fafaf8;
}

.usecase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.usecase-item {
    border-radius: 12px;
    overflow: hidden;
}

.usecase-label {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 20px;
}

.usecase-desc {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 28px;
}

.usecase-desc strong {
    color: var(--text-color);
    font-weight: 700;
}

.usecase-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    border-radius: 12px;
    margin: 0 auto;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

@media (min-width: 769px) {
    .usecase-img:hover {
        opacity: 0.85;
    }
}

@media (max-width: 768px) {
    .usecase-grid {
        grid-template-columns: 1fr;
    }
    .usecase-img {
        cursor: default;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, background 0.4s ease, visibility 0.4s ease;
}

.lightbox-modal.is-open {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.82);
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

.lightbox-modal.is-open .lightbox-img {
    transform: scale(1);
    opacity: 1;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}

.lightbox-modal.is-open .lightbox-close {
    opacity: 0.8;
}

.lightbox-close:hover {
    opacity: 1 !important;
}

/* Service and Pricing Title Section */
.service-pricing-title {
    padding: 80px 0 40px 0;
    background: var(--background-color);
}

/* Soel Service Section */
.soel-service {
    padding: 100px 0;
    background: var(--grey);
}

.soel-service:first-of-type {
    padding-top: 60px;
}

.soel-service + .soel-service {
    padding-top: 0;
}

.service-box {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    text-align: center;
}

.service-header-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.soel-mini-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    padding: 10px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.soel-mini-logo-center {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    padding: 15px;
    margin: 0 auto 30px;
    display: block;
    box-shadow: 0 10px 25px rgba(241, 150, 90, 0.1);
}

.service-header h2 {
    font-size: 32px;
    margin: 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    padding: 60px;
    align-items: center;
}

.service-text p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.price-card {
    background: var(--primary-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

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

.price-main {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 10px;
}

.price-main span {
    font-size: 20px;
    font-weight: 700;
}

.price-card ul {
    text-align: left;
    margin-top: 30px;
}

.price-card li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
}

.price-card li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 900;
}

.price-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.price-option {
    flex: 1;
    max-width: 150px;
}

.option-duration {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.option-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
}

.option-price span {
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-top: 5px;
}

/* Soel Counseling Section (Legacy - No longer used) */
.soel-counseling {
    padding: 100px 0;
}

.counseling-box {
    border: 2px solid var(--primary-light);
    border-radius: 30px;
    padding: 60px;
}

.counseling-header h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

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

.counseling-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.price-table {
    background: #fff;
    border: 1px solid var(--grey);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--grey);
}

.price-row:last-of-type {
    border-bottom: 2px solid var(--primary-color);
}

.price-row .label {
    font-size: 20px;
    font-weight: 900;
}

.price-row .value {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
}

.price-row .value span {
    font-size: 16px;
    margin-left: 5px;
}

.note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
}

/* Soel Points Section */
.soel-points {
    padding: 100px 0;
    background: #fafaf8;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.point-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.point-card:hover {
    transform: scale(1.02);
}

.point-card i {
    font-size: 40px;
    color: var(--primary-color);
    background: var(--primary-light);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.point-card p {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.points-footer {
    text-align: center;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 2px dashed var(--primary-light);
}

.points-footer p {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.6;
}

/* Staff Section */
.staff-section {
    padding: 100px 0;
    background: var(--white);
}

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

.staff-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.staff-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: var(--grey);
}

.staff-image-default,
.staff-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.staff-image-hover {
    opacity: 0;
}

.staff-card:hover .staff-image-hover {
    opacity: 1;
}

.staff-card:hover .staff-image-default {
    opacity: 0;
}

.staff-info {
    padding: 30px 25px;
    text-align: center;
}

.staff-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.staff-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: none;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.staff-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Soel Philosophy Section */
/* Message Video Section */
.soel-message-video {
    padding: 100px 0;
    background: #fafaf8;
}

.video-wrap {
    max-width: 860px;
    margin: 50px auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Soel CTA Section */
.soel-cta {
    padding: 100px 0;
}

.cta-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(139, 177, 116, 0.4);
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-large {
    padding: 25px 60px;
    font-size: 22px;
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-large:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
}

/* Access Section */
.soel-access {
    padding: 100px 0;
    background: var(--background-color);
}

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

.access-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.access-info dl {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.access-info dt {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.access-info dd {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    padding-left: 20px;
}

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

.access-info dd a:hover {
    text-decoration: underline;
}

.access-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.access-map iframe {
    display: block;
}

/* Soel Responsive */
@media (max-width: 991px) {
    .soel-hero h1 {
        font-size: 36px;
    }

    .soel-hero p {
        font-size: 16px;
    }

    .pain-grid,
    .service-content,
    .counseling-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .service-content {
        padding: 40px;
    }

    .price-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .price-options {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }

    .price-option {
        max-width: 200px;
    }

    /* Tablet Header */
    .header-top .container {
        gap: 20px;
    }

    .header-btns-group {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-header {
        min-width: 100px;
        font-size: 13px;
        padding: 12px 15px;
    }

    /* Tablet About Features */
    .about-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    /* Mobile Header */
    .mobile-menu-toggle {
        display: flex;
    }

    .header-top .container {
        flex-wrap: wrap;
    }

    .logo {
        order: 1;
    }

    .logo img {
        height: 70px !important;
    }

    .mobile-sns {
        display: flex;
        order: 2;
    }

    .mobile-menu-toggle {
        order: 3;
    }

    .header-right {
        order: 3;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        padding: 20px 0;
    }

    .header-right.active {
        display: flex;
    }

    .header-phone {
        display: none !important;
    }

    .header-right-top {
        display: none;
    }

    .header-right-bottom {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .header-sns {
        justify-content: center;
        margin-right: 0;
        gap: 15px;
    }

    .sns-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .header-btns-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-header {
        width: 100%;
        padding: 16px;
        font-size: 17px;
        border-radius: 12px;
    }

    /* Mobile Navigation */
    .main-nav {
        display: none;
        background: var(--white);
        padding: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav ul li {
        border-bottom: 2px solid var(--primary-light);
    }

    .main-nav ul li:last-child {
        border-bottom: none;
    }

    .main-nav ul li a {
        padding: 20px 25px;
        font-size: 18px;
        font-weight: 700;
        border-right: none;
        text-align: left;
        color: var(--text-color);
        display: block;
        transition: all 0.3s ease;
    }

    .main-nav ul li a:hover,
    .main-nav ul li a:active {
        background: var(--primary-light);
        color: var(--primary-color);
        padding-left: 30px;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        overflow-y: auto;
        max-height: 100vh;
        max-height: 100dvh;
        -webkit-overflow-scrolling: touch;
        z-index: 1000;
    }

    /* Typography */
    h1 {
        font-size: 26px !important;
        line-height: 1.5 !important;
    }

    h2 {
        font-size: 24px !important;
        line-height: 1.5 !important;
    }

    h3 {
        font-size: 20px !important;
    }

    p, li {
        font-size: 16px !important;
        line-height: 1.8 !important;
    }

    .subtitle {
        font-size: 15px !important;
    }

    /* Sections */
    section {
        padding: 50px 0 !important;
    }

    .container {
        padding: 0 20px !important;
    }

    /* Hero */
    .soel-hero {
        padding: 40px 0 !important;
        text-align: center;
    }

    .soel-hero h1 {
        font-size: 24px !important;
        margin-bottom: 20px;
    }

    .soel-hero p {
        font-size: 15px !important;
    }

    .service-tag {
        font-size: 18px !important;
        padding: 8px 16px;
    }

    /* About */
    .section-title h2 {
        font-size: 26px !important;
    }

    .lead-text {
        font-size: 18px !important;
    }

    .about-features {
        gap: 25px;
        margin-top: 40px;
    }

    .feature-item {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    /* Pain/Service */
    .pain-grid,
    .service-content {
        gap: 30px;
    }

    .service-header {
        padding: 25px 20px;
    }

    .service-header h2 {
        font-size: 20px !important;
    }

    .service-content {
        padding: 25px 20px !important;
    }

    .price-card {
        padding: 25px 20px;
    }

    .price-main {
        font-size: 36px !important;
    }

    .price-options {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .price-option {
        text-align: center;
        width: 100%;
        max-width: 250px;
    }

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

    .option-price {
        font-size: 28px !important;
        text-align: center;
    }

    /* Check */
    .check-box {
        padding: 30px 20px !important;
    }

    .check-list li {
        padding: 15px;
    }

    /* FAQ */
    .faq-item {
        margin-bottom: 15px;
    }

    .faq-question {
        padding: 20px 18px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    /* CTA */
    .cta-box {
        padding: 35px 20px !important;
    }

    .btn-large {
        padding: 16px 30px !important;
        font-size: 17px !important;
    }

    /* Support Grid - 1 Column */
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .staff-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .staff-info {
        padding: 25px 20px;
    }

    .staff-name {
        font-size: 20px;
    }

    .staff-role {
        font-size: 12px;
    }

    .staff-description {
        font-size: 14px;
    }

    .support-item {
        padding: 30px 20px;
    }

    .support-item i {
        font-size: 36px;
    }

    /* Footer - 3 Columns */
    .sticky-footer {
        padding: 12px 0;
    }

    .footer-btns {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        max-width: 95%;
    }

    .footer-btn {
        flex-direction: column;
        gap: 4px;
        font-size: 11px !important;
        padding: 10px 4px;
        text-align: center;
        min-height: 70px;
    }

    .footer-btn i {
        font-size: 18px;
    }

    body {
        padding-bottom: 90px;
    }
}

/* Hero Image Area */
.hero-image-area {
    display: flex;
    justify-content: center;
    padding: 40px 20px 0;
}

.hero-image-area img {
    width: 100%;
    max-width: 1160px;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Site Footer */
.site-footer {
    background: var(--text-color);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 20px;
}

.copyright {
    font-size: 13px;
    letter-spacing: 0.05em;
}

/* Page Top Button */
#page-top {
    position: fixed;
    right: 24px;
    bottom: 120px;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
   
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background 0.3s;
    z-index: 999;
}

#page-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#page-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    #page-top {
        right: 16px;
        bottom: 110px;
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .access-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .access-map iframe {
        height: 260px;
    }
}

/* モバイルアンカーリンクのスクロール余白 */
@media (max-width: 767px) {
    section[id] {
        scroll-margin-top: 20px;
    }
}