/* ==========================================================================
   Hikoya Real Estate - Vacant House / Inheritance Consultation LP
   Design Theme: Hiko Green (#8DD1C2), Button Green (#76A900), Hiko Navy (#004c20)
   ========================================================================== */

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

body {
    font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
    color: #333333;
    line-height: 1.7;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Helpers */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* Background Colors */
.bg-cream {
    background-color: #FFFBEB;
}

.bg-mint {
    background-color: #F6FFFA;
}

.bg-gray {
    background-color: #F1F1F1;
}

.bg-main {
    background-color: #8DD1C2;
}

/* Visibility classes */
.pc-only {
    display: block !important;
}

.sp-only {
    display: none !important;
}

@media (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
    .sp-only {
        display: block !important;
    }
}

/* Typography elements */
.highlight-red {
    color: #e8412e;
}

.highlight-green-text {
    color: #004c20;
    font-weight: 700;
}

.underline-orange {
    border-bottom: 4px solid #e8412e;
    padding-bottom: 3px;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 800;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    padding: 15px 30px;
}

.btn-green {
    background-color: #76A900;
    color: #ffffff !important;
}

.btn-green:hover {
    background-color: #5d8500;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-dark-green {
    background-color: #004c20;
    color: #ffffff !important;
}

.btn-dark-green:hover {
    background-color: #003315;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-yellow {
    background-color: rgb(248, 202, 0);
    color: #000000 !important;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-yellow:hover {
    background-color: #e5b900;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-large {
    font-size: 22px;
    padding: 18px 50px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Floating Header */
.floating-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid #004c20;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-logo img {
    height: 44px;
    width: auto;
}

/* Header Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-nav-link {
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}

.header-nav-link .nav-text {
    text-decoration: underline;
}

.header-nav-link:hover {
    color: #76A900;
}

.header-nav-divider {
    color: #999999;
    font-size: 14px;
    font-weight: normal;
}

.sdgs-mini-badge {
    height: 18px;
    width: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    vertical-align: middle;
}

@media (max-width: 991px) {
    .header-logo-nav-wrapper {
        gap: 15px;
    }
    .header-nav {
        gap: 10px;
    }
    .header-nav-link {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none !important;
    }
}

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

.header-contact {
    text-align: right;
}

.header-contact .tel-num {
    font-size: 18px;
    font-weight: 800;
    color: #004c20;
}

.header-contact .tel-num i {
    margin-right: 5px;
}

.header-contact .hours {
    font-size: 11px;
    color: #666666;
    margin-top: -2px;
}

.header-sp-tel .sp-tel-icon {
    font-size: 36px;
    color: #76A900;
    display: block;
    line-height: 1;
}

/* Hero Section */
.hero-section {
    margin-top: 70px; /* offset header height */
    overflow: hidden;
}

.hero-pc img,
.hero-sp img {
    width: 100%;
    display: block;
}

/* Empathy Intro */
.empathy-intro {
    background-color: #FFFBEB;
}

.intro-bg-pc,
.intro-bg-sp {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.intro-bg-pc {
    height: 480px;
    padding: 40px;
}

.intro-bg-sp {
    height: auto;
    padding: 60px 20px;
}

.intro-content {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 35px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    max-width: 600px;
    width: 100%;
}

.intro-sub {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 5px;
}

.intro-title {
    font-size: 28px;
    font-weight: 800;
    color: #004c20;
    line-height: 1.5;
    margin: 15px 0;
}

.intro-desc {
    font-size: 22px;
    font-weight: 800;
    color: #e8412e;
    line-height: 1.5;
}

/* Contact Area */
.contact-area {
    padding: 60px 0;
}

.contact-box {
    background-color: #ffffff;
    border-radius: 16px;
    border: 4px solid #76A900;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 45px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-left {
    flex: 1.2;
}

.contact-note {
    font-size: 14px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 4px;
}

.contact-tel {
    font-size: 36px;
    font-weight: 800;
    color: #004c20;
    line-height: 1.2;
    margin: 5px 0;
}

.contact-hours {
    font-size: 13px;
    color: #666666;
}

.contact-right {
    flex: 0.8;
    margin-left: 40px;
    text-align: center;
}

/* Worry Section */
.worry-section {
    padding: 60px 0;
}

.worry-img-box {
    max-width: 960px;
    margin: 0 auto 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    overflow: hidden;
}

.worry-img-box:last-child {
    margin-bottom: 0;
}

.worry-img-box img {
    width: 100%;
    display: block;
}

.fear-accent {
    background-color: #ffffff;
    border-left: 8px solid #e8412e;
    padding: 25px 35px;
    max-width: 960px;
    margin: 0 auto 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.fear-accent h3 {
    font-size: 24px;
    font-weight: 800;
    color: #333333;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
}

.solution-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.solution-text {
    flex: 1.2;
}

.sol-sub {
    font-size: 18px;
    font-weight: 700;
    color: #76A900;
    margin-bottom: 8px;
}

.sol-title {
    font-size: 26px;
    font-weight: 800;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 20px;
}

.sol-title span {
    color: #004c20;
    font-size: 30px;
    border-bottom: 3px solid #8DD1C2;
    padding-bottom: 2px;
    display: inline-block;
}

.sol-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

.solution-img {
    flex: 0.8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.solution-img img {
    width: 100%;
    display: block;
}

/* Support Section */
.support-section {
    padding: 80px 0;
}

.arrow-title {
    text-align: center;
    margin-bottom: 60px;
}

.arrow-title h2 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    display: inline-block;
    background-color: #8DD1C2;
    padding: 15px 45px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(141, 209, 194, 0.3);
    position: relative;
}

.arrow-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: #8DD1C2 transparent transparent;
}

.support-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 480px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.support-item.support-1 {
    background-image: url('images/support_1_pc.jpg');
}
.support-item.support-2 {
    background-image: url('images/support_2_pc.jpg');
}
.support-item.support-3 {
    background-image: url('images/support_3_pc.jpg');
}

.support-left {
    justify-content: flex-start;
}

.support-right {
    justify-content: flex-end;
}

.support-content-wrapper {
    width: 50%;
    padding: 0 50px;
}

.support-inner-content {
    background-color: rgba(255, 255, 255, 0.94);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.support-title {
    font-size: 24px;
    font-weight: 800;
    color: #004c20;
    margin-bottom: 18px;
    line-height: 1.4;
    border-bottom: 3px solid #8DD1C2;
    padding-bottom: 10px;
}

.support-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #444444;
}

@media (max-width: 768px) {
    .support-item {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        background-image: none !important;
        margin-bottom: 45px;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    }

    .support-item::before {
        content: '';
        display: block;
        width: 100%;
        height: 240px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .support-item.support-1::before {
        background-image: url('images/support_1_sp.jpg');
    }
    .support-item.support-2::before {
        background-image: url('images/support_2_sp.jpg');
    }
    .support-item.support-3::before {
        background-image: url('images/support_3_sp.jpg');
    }

    .support-content-wrapper {
        width: 100%;
        padding: 25px 20px;
    }

    .support-inner-content {
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
    }

    .support-title {
        font-size: 18px;
        font-weight: 800;
        color: #004c20;
        margin-bottom: 12px;
        border-bottom: 2px solid #8DD1C2;
        padding-bottom: 8px;
        line-height: 1.4;
    }

    .support-desc {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Cases Section */
.cases-section {
    padding: 80px 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.case-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 20px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    position: relative;
    border-top: 5px solid #76A900;
}

.case-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #004c20;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.case-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #004c20;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.4;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-card-img {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.case-card-img img {
    width: 100%;
    display: block;
    height: 180px;
    object-fit: cover;
}

.case-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.ribbon-title {
    text-align: center;
    margin-bottom: 40px;
}

.ribbon-title h2 {
    display: inline-block;
    background-color: #8DD1C2;
    color: #ffffff;
    padding: 12px 60px;
    font-size: 26px;
    font-weight: 800;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(141, 209, 194, 0.3);
}

.section-subtitle-accent {
    text-align: center;
    margin-bottom: 30px;
}

.section-subtitle-accent h3 {
    font-size: 22px;
    font-weight: 800;
    color: #004c20;
    border-bottom: 3px solid #76A900;
    display: inline-block;
    padding-bottom: 8px;
}

.testimonials-intro-text {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 40px;
}

.youtube-wrapper {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Reviews Callout */
.reviews-callout {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    text-align: center;
}

.reviews-callout .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: 1;
}

.callout-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.callout-title {
    font-size: 26px;
    font-weight: 800;
    color: #004c20;
    margin-bottom: 25px;
    border-bottom: 3px solid #76A900;
    display: inline-block;
    padding-bottom: 8px;
}

.callout-desc {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #333333;
}

/* Flow Section */
.flow-section {
    padding: 80px 0;
}

.timeline {
    max-width: 720px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border-left: 6px solid #8DD1C2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-step {
    background: #004c20;
    color: #ffffff;
    padding: 6px 15px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}

.timeline-content {
    flex-grow: 1;
}

.timeline-title {
    font-size: 18px;
    font-weight: 800;
    color: #004c20;
    margin-bottom: 10px;
    line-height: 1.4;
}

.timeline-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
}

/* Contact Area 2 (Hiko Green Theme) */
.contact-area.bg-main {
    color: #ffffff;
    padding: 80px 0;
}

.contact-box-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #ffffff;
}

.contact-box-simple {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.tel-block-simple {
    text-align: center;
}

.tel-num-large {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.tel-num-large a {
    color: inherit;
}

.hours-simple {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Representative Greeting Section */
.representative-section {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.representative-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

.representative-container {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
}

.rep-title {
    text-align: center;
    margin-bottom: 50px;
}

.rep-title h2 {
    font-size: 28px;
    font-weight: 800;
    color: #004c20;
    border-bottom: 4px solid #8DD1C2;
    display: inline-block;
    padding-bottom: 8px;
}

.rep-body {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.rep-left {
    flex: 0.8;
}

.rep-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.rep-img img {
    width: 100%;
    display: block;
}

.rep-right {
    flex: 1.2;
}

.rep-post {
    font-size: 13px;
    color: #666666;
    margin-bottom: 4px;
}

.rep-name {
    font-size: 26px;
    font-weight: 800;
    color: #004c20;
    margin-bottom: 25px;
    line-height: 1.3;
}

.rep-name span {
    font-size: 15px;
    font-weight: 500;
    color: #666666;
    margin-left: 8px;
}

.rep-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 20px;
}

.rep-text strong {
    color: #004c20;
}

.rep-text .divider {
    text-align: center;
    color: #cccccc;
    margin: 25px 0;
    font-size: 16px;
}

/* Company Section */
.company-section {
    padding: 80px 0;
}

.company-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
}

.company-table-wrapper {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.company-table th,
.company-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #eeeeee;
    font-size: 14px;
    line-height: 1.6;
    vertical-align: top;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

.company-table th {
    width: 140px;
    font-weight: 700;
    color: #004c20;
    border-right: 1px solid #eeeeee;
}

.company-table td {
    color: #444444;
}

.link-underline {
    text-decoration: underline;
    color: #004c20;
    font-weight: 700;
}

.business-list {
    padding-left: 20px;
    margin: 0;
}

.business-list li {
    margin-bottom: 4px;
}

.company-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.company-map iframe {
    display: block;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: #004c20;
    transition: background-color 0.3s;
}

.faq-question i {
    font-size: 14px;
    color: #8DD1C2;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fcfefe;
    border-top: 1px solid transparent;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: #444444;
    padding: 20px 25px;
}

/* Active FAQ Item styling */
.faq-item.active .faq-question {
    background-color: #f6fffa;
    border-bottom: 1px solid #eefbf7;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* high enough value to show full answer */
    border-top: 1px solid #eefbf7;
}

/* Footer */
.main-footer {
    background-color: #004c20;
    color: #ffffff;
    padding: 30px 20px;
    text-align: center;
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Floating Mobile CTA */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.08);
    padding: 12px 20px;
    backdrop-filter: blur(5px);
}

.floating-cta-btn {
    display: block;
    width: 100%;
    background: #e8412e;
    color: #ffffff;
    text-align: center;
    padding: 14px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(232, 65, 46, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Floating Header SP */
    .floating-header {
        height: 60px;
    }

    .header-container {
        height: 60px;
        padding: 5px 15px;
    }

    .header-logo img {
        height: 32px;
    }

    .header-right {
        gap: 12px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .hero-section {
        margin-top: 60px;
    }

    /* Empathy Intro SP */
    .intro-content {
        padding: 25px 20px;
    }

    .intro-sub {
        font-size: 16px;
    }

    .intro-title {
        font-size: 20px;
        margin: 10px 0;
    }

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

    /* Contact Area SP */
    .contact-area {
        padding: 40px 0;
    }

    .contact-box {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
        text-align: center;
    }

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

    .contact-tel {
        font-size: 26px;
    }

    .contact-right {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
    }

    /* Worry Section SP */
    .worry-section {
        padding: 40px 0;
    }

    .worry-img-box {
        margin-bottom: 25px;
    }

    .fear-accent {
        padding: 20px;
        margin-bottom: 25px;
    }

    .fear-accent h3 {
        font-size: 18px;
        line-height: 1.5;
    }

    /* Solution SP */
    .solution-section {
        padding: 40px 0;
    }

    .solution-container {
        padding: 25px 20px;
        gap: 25px;
        text-align: center;
    }

    .sol-title {
        font-size: 18px;
    }

    .sol-title span {
        font-size: 20px;
    }

    .sol-desc {
        font-size: 14px;
        line-height: 1.7;
    }


    /* Cases SP */
    .cases-section {
        padding: 45px 0;
    }

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

    .case-card-title {
        height: auto;
        margin-bottom: 15px;
    }

    /* Testimonials SP */
    .testimonials-section {
        padding: 45px 0;
    }

    .ribbon-title h2 {
        font-size: 18px;
        padding: 10px 30px;
    }

    .section-subtitle-accent h3 {
        font-size: 18px;
    }

    .testimonials-intro-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 25px;
        text-align: left;
    }

    /* Reviews Callout SP */
    .reviews-callout {
        padding: 60px 0;
    }

    .callout-title {
        font-size: 18px;
    }

    .callout-desc {
        font-size: 14px;
        line-height: 1.7;
        text-align: left;
    }

    .btn-yellow {
        font-size: 15px;
        padding: 12px 25px;
    }

    /* Flow Timeline SP */
    .flow-section {
        padding: 45px 0;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    /* Contact Area 2 SP */
    .contact-area.bg-main {
        padding: 50px 0;
    }

    .contact-box-title {
        font-size: 18px;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .tel-num-large {
        font-size: 26px;
    }

    .btn-dark-green.btn-large {
        font-size: 16px;
        padding: 15px 30px;
    }

    /* Rep SP */
    .representative-section {
        padding: 60px 0;
    }

    .rep-title h2 {
        font-size: 20px;
    }

    .rep-body {
        flex-direction: column;
        gap: 30px;
    }

    .rep-left {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .rep-name {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .rep-name span {
        font-size: 14px;
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }

    .rep-text p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Company Section SP */
    .company-section {
        padding: 45px 0;
    }

    .company-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .company-table th {
        width: 90px;
        padding: 10px 8px;
        font-size: 13px;
    }

    .company-table td {
        padding: 10px 8px;
        font-size: 13px;
    }

    /* FAQ SP */
    .faq-section {
        padding: 45px 0;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 14px;
    }

    .faq-answer p {
        padding: 15px 20px;
        font-size: 13px;
    }
}

/* ==========================================================================
   MEO Buttons & SNS & Media Style
   ========================================================================== */
.meo-buttons-container {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-meo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-meo.route-btn {
    background-color: #8DD1C2;
    color: #ffffff !important;
}

.btn-meo.route-btn:hover {
    background-color: #72beb0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(141, 209, 194, 0.2);
}

.btn-meo.review-btn {
    background-color: #f8ca00;
    color: #333333 !important;
}

.btn-meo.review-btn:hover {
    background-color: #e5b900;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(248, 202, 0, 0.2);
}

/* SNS Section Hover Effects */
.btn-outline-sns:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.btn-yt:hover {
    background-color: #ff0000 !important;
    color: #ffffff !important;
}
.btn-insta:hover {
    background-color: #E1306C !important;
    color: #ffffff !important;
}

/* Hero Link styling */
.hero-link {
    display: block;
    width: 100%;
    transition: opacity 0.3s ease;
}
.hero-link:hover {
    opacity: 0.95;
}

/* ==========================================================================
   Fade-in Animations (Intersection Observer)
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustment for SNS section */
@media (max-width: 768px) {
    .sns-row {
        flex-direction: column;
        align-items: center;
        gap: 20px !important;
    }
    .sns-row-insta {
        flex-direction: column;
        align-items: center;
        gap: 20px !important;
    }
    .insta-col {
        max-width: 100% !important;
    }
    .btn-outline-sns {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* ==========================================================================
   Contact Section & Floating Buttons (Inquiry Form Design)
   ========================================================================== */
.contact-section {
    background-color: #F6FFFA;
}

.contact-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 3px solid #8DD1C2;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

@media (max-width: 768px) {
    .contact-card-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-side {
    padding: 50px;
    border-right: 1px dashed #dddddd;
    text-align: left;
}

@media (max-width: 768px) {
    .contact-info-side {
        padding: 30px 20px;
        border-right: none;
        border-bottom: 1px dashed #dddddd;
    }
}

.contact-sub {
    font-size: 13px;
    font-weight: 800;
    color: #76A900;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.contact-info-side h2 {
    font-size: 26px;
    font-weight: 800;
    color: #004c20;
    margin-bottom: 15px;
    line-height: 1.4;
}

.contact-info-side p {
    font-size: 14px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.method-icon {
    background-color: #8DD1C2;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.method-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.method-label {
    font-size: 11px;
    font-weight: 800;
    color: #888888;
}

.method-value {
    font-size: 24px;
    font-weight: 800;
    color: #004c20;
    text-decoration: none;
    line-height: 1.2;
    margin-top: 2px;
}

.method-value:hover {
    color: #76A900;
}

.method-value-link {
    font-size: 18px;
    font-weight: 700;
    color: #004c20;
    text-decoration: underline;
    margin-top: 2px;
}

.method-value-link:hover {
    color: #76A900;
}

.method-note {
    font-size: 11px;
    color: #e8412e;
    font-weight: 700;
    margin-top: 4px;
}

.contact-cta-side {
    background-color: #FFFBEB;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .contact-cta-side {
        padding: 40px 20px;
    }
}

.cta-box-inner {
    width: 100%;
    text-align: center;
}

.btn-accent {
    background-color: #f8ca00;
    color: #333333 !important;
}

.btn-accent:hover {
    background-color: #e5b900;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(248, 202, 0, 0.25);
}

.cta-sub-text {
    font-size: 11px;
    color: #888888;
    margin-top: 15px;
}

/* Pulsing effect for CTA button */
.cta-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(248, 202, 0, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(248, 202, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(248, 202, 0, 0);
    }
}

/* PC Floating Action Buttons */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 50%;
    transform: translateY(50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9998;
}

@media (max-width: 768px) {
    .floating-actions {
        display: none !important;
    }
}

.float-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    color: #ffffff !important;
}

.float-btn i {
    font-size: 16px;
    margin-top: 5px;
}

.float-btn.consult {
    background-color: #e8412e;
}

.float-btn.consult:hover {
    background-color: #c9301e;
    transform: scale(1.05);
}

.float-btn.line {
    background-color: #06C755;
}

.float-btn.line:hover {
    background-color: #05a847;
    transform: scale(1.05);
}

/* Smartphone Bottom Fixed Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 8px 10px;
    backdrop-filter: blur(5px);
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }
}

.mobile-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.mobile-nav-btn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    color: #333333 !important;
    text-decoration: none;
    transition: background-color 0.2s;
    background-color: #f7f7f7;
}

.mobile-nav-btn-item i {
    font-size: 20px;
    margin-bottom: 3px;
}

.mobile-nav-btn-item.line-btn {
    background-color: #06C755;
    color: #ffffff !important;
}

.mobile-nav-btn-item.line-btn i {
    color: #ffffff;
}

/* Adjust page bottom padding for mobile layout to prevent overlap */
body {
    padding-bottom: 70px;
}
@media (min-width: 769px) {
    body {
        padding-bottom: 0;
    }
}

/* SDGs Banner Hover Effect */
.header-sdgs-banner img:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
}
