@charset "UTF-8";
/* CSS Document */

/*
全ページ共通ヘッダー・フッター
10.トップページ
*/

/* =========================
   Header
========================= */
.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 3px 14px rgba(38, 54, 56, 0.09);
}

.header-inner {
    display: flex;
    align-items: center;
    min-height: 150px;
}

.header-brand {
    flex: 0 0 122px;
}

.header-logo {
    flex: 0 0 122px;
}

.header-logo img {
    width: 108px;
    margin: 0 auto;
}

.header-main {
    flex: 1;
    padding-left: 56px;
}

.header-info-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 42px;
    min-height: 75px;
}

.header-hours {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.header-hours strong {
    font-size: 20px;
    letter-spacing: 0.12em;
}

.header-hours small {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.header-phone {
    color: var(--orange);
    font-size: clamp(25px, 2.5vw, 42px);
    font-weight: 700;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.header-contact-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 205px;
    padding: 17px 26px;
    color: #fff;
    border-radius: 999px;
    background: var(--orange);
    box-shadow: var(--shadow);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.header-contact-button svg {
    width: 17px;
    height: 17px;
}

.global-nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(20px, 2.5vw, 45px);
    min-height: 62px;
}

.global-nav-list a {
    position: relative;
    display: block;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.global-nav-list a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.global-nav-list a:hover::after,
.global-nav-list .current-menu-item > a::after {
    transform: scaleX(1);
}

/* =========================
   Top MV
========================= */
.top-mv {
    position: relative;
}

.top-mv picture,
.top-mv picture img {
    width: 100%;
}

.top-mv-copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top-mv-copy h1 {
    width: 48%;
    margin-bottom: 42px;
    color: #d58a16;
    font-size: clamp(32px, 3.2vw, 52px);
    line-height: 1.55;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* =========================
   Problems
========================= */
.problem-section {
    position: relative;
    overflow: hidden;
    padding: 78px 0 0;
    color: var(--text);
    background: var(--blue);
}

.problem-inner {
    position: relative;
    min-height: 470px;
}

.section-title--ear::before {
    content: "☞";
    display: inline-block;
    margin-right: 14px;
    transform: rotate(-18deg);
    font-size: 34px;
}

.problem-list {
    width: min(880px, 100%);
    margin: 0 auto;
}

.problem-list li {
    margin-bottom: 28px;
    padding: 17px 40px;
    border-radius: 999px;
    background: #fff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-align: center;
}

.problem-answer {
    width: 470px;
    margin: 15px auto 0;
    text-align: center;
}

.problem-answer span {
    display: block;
    width: 0;
    height: 0;
    margin: 0 auto 10px;
    border-top: 50px solid #f8e86e;
    border-right: 80px solid transparent;
    border-left: 80px solid transparent;
}

.problem-answer p {
    color: #fff;
    font-size: 27px;
    font-weight: 700;
    text-align: center;
}

.problem-woman {
    position: absolute;
    right: -5px;
    bottom: 0;
    width: 180px;
}

/* =========================
   Reasons
========================= */
.reason-section {
    position: relative;
    padding: 110px 0 0;
    background: var(--cream-light);
}

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

.reason-list {
    width: min(980px, 100%);
    margin: 0 auto;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 75px;
    margin-bottom: 85px;
}

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

.reason-image-wrap {
    position: relative;
    width: 49%;
    flex: 0 0 49%;
    padding: 12px 0 0 12px;
}

.reason-image-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 12px;
    left: 0;
    border-radius: 38px 38px 38px 6px;
    background: linear-gradient(135deg, var(--orange), var(--coral));
}

.reason-item--reverse .reason-image-wrap::before {
    right: 0;
    left: 12px;
    border-radius: 38px 38px 6px 38px;
}

.reason-image {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    border-radius: 38px 38px 38px 6px;
}

.reason-item--reverse .reason-image {
    border-radius: 38px 38px 6px 38px;
}

.reason-copy {
    position: relative;
    flex: 1;
}

.reason-number {
    display: block;
    margin-bottom: -10px;
    color: rgba(243, 152, 0, 0.19);
    font-size: 92px;
    font-weight: 700;
    line-height: 1;
}

.reason-copy h3 {
    margin-bottom: 20px;
    color: #d89419;
    font-size: 24px;
}

.reason-copy p {
    line-height: 1.9;
}

.reason-cloud {
    position: absolute;
    z-index: 1;
    width: 220px;
    height: 120px;
    opacity: 0.8;
    background: url('../images/reason-cloud.png') center / contain no-repeat;
}

.reason-cloud--one {
    top: 10px;
    left: 3%;
}

.reason-cloud--two {
    top: 44%;
    right: 2%;
    transform: scale(0.72);
}

.reason-town {
    width: 100%;
    margin-top: 10px;
}

/* =========================
   Top services / shared cards
========================= */
.top-services,
.business-menu {
    padding: 82px 0 76px;
}

.service-card-list {
    display: flex;
    justify-content: center;
    gap: 36px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 270px;
    min-height: 315px;
    padding: 26px 28px 36px;
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 3px 8px 16px rgba(80, 58, 16, 0.24);
}

.service-card img {
    width: 165px;
    margin-bottom: 12px;
}

.service-card strong {
    font-size: 20px;
    letter-spacing: 0.08em;
}

.service-card .circle-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.section-more {
    margin-top: 38px;
    text-align: center;
}

.section-more--right {
    margin-top: 24px;
    text-align: right;
}

.section-more--right a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
}

.section-more--right svg {
    width: 16px;
    height: 16px;
}

/* =========================
   Top price
========================= */
.top-price {
    padding: 85px 0 95px;
}

.top-price-inner {
    text-align: center;
}

.price-summary {
    width: min(660px, 100%);
    margin: 0 auto 35px;
}

.price-summary > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 15px 10px;
}

.price-summary dt,
.price-summary dd {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.price-summary dt {
    text-align: left;
}

.price-summary dd {
    text-align: right;
}

/* =========================
   Contact CTA
========================= */
.contact-cta {
    padding: 38px 0 42px;
    background: var(--cream);
}

.contact-cta-inner {
    width: min(1180px, calc(100% - 48px));
}

.contact-cta-heading {
    position: relative;
    width: calc(100% - 70px);
    margin: 0 auto 34px;
    padding: 14px 130px 14px 45px;
    border-radius: 999px;
    background: var(--orange);
}

.contact-cta-heading h2 {
    color: #fff;
    font-size: clamp(25px, 2.8vw, 42px);
    text-align: center;
}

.contact-cta-heading img {
    position: absolute;
    right: 20px;
    bottom: -3px;
    width: 135px;
    max-height: 145px;
    object-fit: contain;
    object-position: bottom;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 185px;
    padding: 22px 18px;
    border: 4px solid var(--orange);
    border-radius: 30px;
    background: #fff;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.contact-method-icon {
    display: block;
    margin-bottom: 12px;
    color: var(--orange);
    font-size: 56px;
}

.contact-method--line .contact-method-icon {
    color: #06c755;
}

.contact-method strong {
    color: #383838;
    font-size: 22px;
    letter-spacing: 0.06em;
}

.contact-method--phone strong {
    color: var(--orange);
    font-size: 28px;
}

.contact-method small {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 700;
}

/* =========================
   Office summary / Topics / Partners
========================= */
.top-office,
.topics-section,
.top-partners {
    padding: 90px 0;
}

.office-summary-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr;
    gap: 55px;
    align-items: stretch;
    width: min(930px, 100%);
    margin: 0 auto;
}

.office-summary-table,
.office-detail-table {
    width: 100%;
    border-collapse: collapse;
}

.office-summary-table th,
.office-summary-table td,
.office-detail-table th,
.office-detail-table td {
    padding: 18px 22px;
    border: 1px solid #555;
    font-size: 15px;
    line-height: 1.65;
    text-align: left;
    vertical-align: middle;
}

.office-summary-table th,
.office-detail-table th {
    width: 28%;
    font-weight: 700;
    text-align: center;
}

.map-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: #cddff3;
}

.map-box iframe {
    height: 100%;
    min-height: 300px;
}

.map-box span {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.topics-section {
    position: relative;
}

.topics-section::before {
    content: "";
    display: block;
    width: min(1120px, calc(100% - 48px));
    height: 2px;
    margin: -25px auto 75px;
    background: var(--line);
}

.topic-heading {
    margin-bottom: 30px;
    font-size: 27px;
    text-align: center;
}

.column-card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.column-card {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(38, 54, 56, 0.1);
}

.column-thumb {
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
    background: #f3f3f3;
}

.column-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.column-card:hover .column-thumb img {
    transform: scale(1.04);
}

.column-card-body {
    position: relative;
    min-height: 125px;
    padding: 22px 52px 24px 22px;
    background: #fffaf1;
}

.column-card-body time {
    color: var(--muted);
    font-size: 13px;
}

.column-card-body h4 {
    margin-top: 8px;
    font-size: 17px;
    line-height: 1.55;
}

.column-card-body .circle-arrow {
    position: absolute;
    right: 15px;
    bottom: 18px;
}

.topic-heading--news {
    margin-top: 75px;
}

.news-list,
.news-archive-list {
    border-top: 2px solid var(--line);
}

.news-row,
.news-archive-row {
    display: grid;
    grid-template-columns: 120px 1fr 36px;
    gap: 20px;
    align-items: center;
    min-height: 72px;
    padding: 12px 6px;
    border-bottom: 2px solid var(--line);
}

.news-row time,
.news-archive-row time {
    font-size: 14px;
}

.news-row > span,
.news-archive-row > span {
    font-weight: 700;
}

.top-partners {
    padding-top: 45px;
}

.partner-logo-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.partner-logo-list img:first-child {
    width: 180px;
}

.partner-logo-list img:last-child {
    width: 360px;
}

/* =========================
   Footer
========================= */
.site-footer {
    padding: 75px 0 24px;
    background: #fff;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 100px;
}

.footer-office h2 {
    margin-bottom: 22px;
    font-size: 27px;
}

.footer-office dl > div {
    margin-bottom: 18px;
}

.footer-office dt {
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 700;
}

.footer-office dd {
    font-size: 14px;
    line-height: 1.75;
}

.footer-instagram {
    display: inline-block;
    margin-top: 8px;
    color: #e7539a;
    font-size: 48px;
}

.footer-nav-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
}

.footer-nav li,
.footer-subnav li {
    margin-bottom: 18px;
}

.footer-nav a,
.footer-subnav a {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 65px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
    color: #666;
}

/* =========================
   Smartphone
========================= */
@media only screen and (max-width: 1024px) {
    .site-header {
        position: sticky;
        top: 0;
    }

    .header-inner {
        min-height: 64px;
    }

    .header-logo {
        flex: 0 0 54px;
    }

    .header-logo img {
        width: 46px;
    }

    .mobile-header-actions {
        display: flex;
        align-items: stretch;
        gap: 0;
        margin-left: auto;
        align-self: stretch;
    }

    .mobile-phone,
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 62px;
        font-size: 27px;
    }

    .mobile-phone {
        color: var(--orange);
    }

    .menu-toggle {
        color: #fff;
        background: var(--orange);
    }

    .menu-toggle-close {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-open {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-close {
        display: block;
    }

    .mobile-navigation {
        position: fixed;
        top: 64px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 999;
        padding: 20px 24px 40px;
        overflow-y: auto;
        background: rgba(255, 250, 240, 0.99);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    }

    .mobile-navigation.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-nav-list li {
        border-bottom: 1px solid #e7c98e;
    }

    .mobile-nav-list a {
        display: flex;
        align-items: center;
        min-height: 54px;
        padding: 8px 10px;
        font-size: 16px;
        font-weight: 700;
    }

    .mobile-nav-contact {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: min(280px, 100%);
        min-height: 52px;
        margin: 28px auto 0;
        color: #fff;
        border-radius: 999px;
        background: var(--orange);
        font-weight: 700;
    }

    .top-mv-copy {
        top: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transform: translateX(-50%);
    }

    .top-mv-copy h1 {
        width: 72%;
        margin: 0 0 26px 4%;
        font-size: clamp(25px, 7.3vw, 38px);
        line-height: 1.6;
    }

    .top-mv-copy .button {
        align-self: flex-start;
        margin-left: 4%;
    }

    .problem-section {
        padding-top: 56px;
    }

    .problem-inner {
        min-height: 500px;
        padding-bottom: 150px;
    }

    .section-title--ear::before {
        font-size: 27px;
    }

    .problem-list li {
        margin-bottom: 18px;
        padding: 14px 20px;
        border-radius: 24px;
        font-size: 14px;
        line-height: 1.7;
    }

    .problem-answer {
        width: 100%;
    }

    .problem-answer span {
        border-top-width: 36px;
        border-right-width: 55px;
        border-left-width: 55px;
    }

    .problem-answer p {
        font-size: 21px;
    }

    .problem-woman {
        right: 0;
        width: 135px;
    }

    .reason-section {
        padding-top: 70px;
    }

    .reason-item,
    .reason-item--reverse {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 62px;
    }

    .reason-image-wrap {
        width: 100%;
        flex-basis: auto;
    }

    .reason-copy {
        width: 100%;
    }

    .reason-number {
        font-size: 72px;
    }

    .reason-copy h3 {
        font-size: 20px;
    }

    .reason-cloud {
        width: 130px;
    }

    .top-services,
    .business-menu {
        padding: 58px 0;
    }

    .service-card-list {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    .service-card {
        width: min(300px, 100%);
        min-height: 235px;
    }

    .service-card img {
        width: 130px;
    }

    .top-price {
        padding: 65px 0;
    }

    .price-summary > div {
        grid-template-columns: 1fr auto;
        gap: 15px;
        padding: 12px 0;
    }

    .price-summary dt,
    .price-summary dd {
        font-size: 16px;
    }

    .contact-cta {
        padding: 28px 0 32px;
    }

    .contact-cta-inner {
        width: min(100% - 24px, 680px);
    }

    .contact-cta-heading {
        width: 100%;
        margin-bottom: 20px;
        padding: 11px 72px 11px 18px;
    }

    .contact-cta-heading h2 {
        font-size: clamp(18px, 5vw, 25px);
    }

    .contact-cta-heading img {
        right: 8px;
        width: 72px;
        max-height: 85px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-method {
        display: grid;
        grid-template-columns: 62px 1fr;
        min-height: 96px;
        padding: 13px 18px;
        border-width: 2px;
        border-radius: 17px;
    }

    .contact-method-icon {
        grid-row: 1 / span 2;
        margin: 0;
        font-size: 40px;
    }

    .contact-method strong {
        font-size: 17px;
        text-align: center;
    }

    .contact-method--phone strong {
        font-size: 20px;
    }

    .contact-method small {
        font-size: 11px;
        text-align: center;
    }

    .top-office,
    .topics-section,
    .top-partners {
        padding: 65px 0;
    }

    .office-summary-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .office-summary-table th,
    .office-summary-table td,
    .office-detail-table th,
    .office-detail-table td {
        padding: 13px 12px;
        font-size: 13px;
    }

    .office-summary-table th,
    .office-detail-table th {
        width: 31%;
    }

    .map-box {
        min-height: 245px;
    }

    .column-card-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .topic-heading--news {
        margin-top: 58px;
    }

    .news-row,
    .news-archive-row {
        grid-template-columns: 80px 1fr 30px;
        gap: 10px;
        min-height: 66px;
    }

    .news-row time,
    .news-archive-row time {
        font-size: 12px;
    }

    .partner-logo-list {
        flex-direction: column;
        gap: 35px;
    }

    .partner-logo-list img:first-child {
        width: 145px;
    }

    .partner-logo-list img:last-child {
        width: min(330px, 90%);
    }

    .site-footer {
        padding-top: 55px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-office h2 {
        font-size: 23px;
    }

    .footer-nav-wrap {
        gap: 24px;
    }

    .footer-nav a,
    .footer-subnav a {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        margin-top: 35px;
        font-size: 11px;
    }
}

/* =========================
   v1.0.1 typography / header / footer adjustments
========================= */
.contact-method-icon,
.contact-method-icon svg {
    width: 60px;
    height: 60px;
}

.contact-method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 60px;
    font-size: 60px;
}

.footer-bottom {
    display: block;
    text-align: center;
}

.footer-bottom small {
    display: block;
}

@media only screen and (min-width: 1025px) {
    .top-mv-copy h1,
    .page-hero h1,
    .single-header h1,
    .error-section h1 {
        font-size: 48px;
    }

    .section-title,
    .contact-cta-heading h2,
    .footer-office h2 {
        font-size: 36px;
    }

    .section-title--small,
    .reason-copy h3,
    .topic-heading {
        font-size: 30px;
    }

    .column-card-body h4 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 1024px) {
    .header-inner {
        width: 100%;
        min-height: 64px;
        padding-left: 12px;
    }

    .header-brand {
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
        flex: 1;
    }

    .header-logo {
        flex: 0 0 42px;
    }

    .header-logo img {
        width: 40px;
        margin: 0;
    }

    .header-site-name {
        margin: 0;
        color: var(--text);
        font-size: 12px;
        font-weight: 700;
        line-height: 1.35;
        letter-spacing: 0.03em;
        white-space: nowrap;
    }

    .mobile-header-actions {
        flex: 0 0 64px;
        margin-left: auto;
    }

    .menu-toggle {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .mobile-navigation {
        top: 64px;
    }

    .contact-method {
        grid-template-columns: 72px 1fr;
    }

    .contact-method-icon,
    .contact-method-icon svg {
        width: 60px;
        height: 60px;
    }

    .footer-bottom {
        margin-top: 35px;
        text-align: center;
    }
}

@media only screen and (max-width: 370px) {
    .header-inner {
        padding-left: 8px;
    }

    .header-brand {
        gap: 6px;
    }

    .header-logo {
        flex-basis: 38px;
    }

    .header-logo img {
        width: 36px;
    }

    .header-site-name {
        font-size: 11px;
    }

    .mobile-header-actions,
    .menu-toggle {
        width: 58px;
        flex-basis: 58px;
    }
}

/* =========================
   v1.0.2 Top page refinements
========================= */
@media only screen and (min-width: 1025px) {
    .site-header { position: sticky; top: 0; }
    .global-nav-list a { font-size: 18px; }
    .top-mv-copy h1 { width: 58%; font-size: 48px; line-height: 1.65; }
    .top-mv-copy h1 span { display: block; white-space: nowrap; }
    .top-mv-copy .button { min-width: 300px; min-height: 72px; font-size: 32px; }

    .section-title--ear { display:flex; align-items:center; justify-content:center; gap:18px; }
    .section-title--ear::before { display:none; }
    .section-title--ear img { width:54px; height:54px; object-fit:contain; }
    .problem-list { width:min(1080px, 100%); }
    .problem-list li { padding:20px 30px; font-size:30px; }
    .problem-inner { min-height:610px; }
    .problem-answer { margin-top:26px; padding-bottom:55px; }
    .problem-answer p { font-size:34px; }
    .problem-woman { right:-25px; width:240px; }

    .reason-number { font-size:80px; }
    .reason-copy h3 { font-size:30px; }
    .reason-copy p { font-size:16px; }

    .service-card { width:300px; min-height:350px; }
    .service-card strong { font-size:25px; }
    .top-services .button { font-size:24px; min-width:340px; }

    .top-price-inner { position:relative; padding-bottom:82px; }
    .top-price .button { position:absolute; right:0; bottom:0; font-size:24px; }
    .price-summary { margin-bottom:0; }
    .price-summary dt, .price-summary dd { font-size:28px; }

    .contact-cta-heading h2 { font-size:42px; }
    .contact-method strong { font-size:28px; }
    .contact-method--phone strong { font-size:34px; }
    .contact-method small { font-size:16px; }
    .contact-method-icon img { width:60px; height:60px; object-fit:contain; }

    .office-summary-table th, .office-summary-table td { font-size:18px; }
    .top-partners .section-more--right a { font-size:22px; }

    .footer-office h2 { font-size:30px; }
    .footer-office dt, .footer-office dd { font-size:16px; }
    .footer-nav a, .footer-subnav a { font-size:20px; }
    .footer-line img { width:48px; }
    .footer-legal { display:flex; justify-content:flex-end; gap:30px; margin-top:20px; font-size:16px; font-weight:700; }
    .footer-bottom { justify-content:center; }
}

@media only screen and (max-width: 1024px) {
    .site-header { position:sticky; top:0; }
    .header-brand { display:flex; align-items:center; gap:10px; flex:1; }
    .header-site-name { font-size:18px; font-weight:700; white-space:nowrap; }
    .menu-toggle { width:70px; }
    .menu-toggle svg { width:38px; height:38px; }
    .mobile-navigation { top:64px; padding:34px 28px 60px; }
    .mobile-nav-list { width:min(560px,100%); margin:0 auto; }
    .mobile-nav-list a { justify-content:center; min-height:62px; font-size:20px; }
    .mobile-nav-contact { width:min(320px,100%); margin:32px auto 0; justify-content:center; min-height:58px; border-radius:999px; color:#fff; background:var(--orange); font-size:18px; font-weight:700; }

    .top-mv-copy { top:47%; }
    .top-mv-copy h1 { width:100%; margin-bottom:26px; font-size:clamp(30px,8vw,48px); line-height:1.5; }
    .top-mv-copy h1 span { display:block; white-space:nowrap; }
    .top-mv-copy .button { min-width:250px; font-size:18px; }

    .problem-section { padding-top:48px; }
    .problem-inner { min-height:430px; }
    .section-title--ear { display:flex; align-items:center; justify-content:center; gap:8px; font-size:24px; }
    .section-title--ear::before { display:none; }
    .section-title--ear img { width:34px; height:34px; object-fit:contain; }
    .problem-list { width:100%; }
    .problem-list li { margin-bottom:14px; padding:12px 5px; font-size:clamp(10px,2.9vw,15px); white-space:nowrap; letter-spacing:0; }
    .problem-answer { width:100%; margin-top:12px; padding-bottom:50px; }
    .problem-answer span { border-top-width:38px; border-right-width:60px; border-left-width:60px; }
    .problem-answer p { font-size:22px; }
    .problem-woman { right:-8px; bottom:0; width:130px; }

    .reason-section { padding-top:55px; }
    .reason-item, .reason-item--reverse { display:flex; flex-direction:column; gap:0; margin-bottom:55px; }
    .reason-image-wrap { width:100%; flex-basis:auto; padding:8px 0 0 8px; }
    .reason-item--reverse .reason-image-wrap { order:0; }
    .reason-copy { width:100%; padding:8px 10px 0; }
    .reason-number { margin:0; font-size:58px; color:var(--orange); }
    .reason-copy h3 { margin-bottom:16px; font-size:22px; }
    .reason-copy p { font-size:15px; line-height:1.65; }
    .reason-image { aspect-ratio:1.52/1; border-radius:38px; }
    .reason-image-wrap::before, .reason-item--reverse .reason-image-wrap::before { right:8px; bottom:8px; left:0; border-radius:38px; }

    .top-services { padding:55px 0; }
    .service-card-list { flex-direction:column; align-items:center; }
    .service-card { width:min(300px,100%); min-height:315px; }
    .service-card strong { font-size:24px; }
    .top-services .button { font-size:18px; }

    .top-price { padding:60px 0; }
    .price-summary dt, .price-summary dd { font-size:20px; }
    .top-price .button { font-size:18px; }

    .contact-cta { padding:48px 0 60px; }
    .contact-cta-heading { width:100%; margin-bottom:24px; padding:0; background:transparent; }
    .contact-cta-heading h2 { color:var(--text); font-size:28px; line-height:1.25; }
    .contact-cta-heading h2::after { content:""; display:block; width:170px; height:3px; margin:8px auto 0; background:var(--orange); }
    .contact-cta-heading img { display:none; }
    .contact-methods { display:flex; flex-direction:column; gap:26px; }
    .contact-method { min-height:210px; border-width:4px; border-radius:30px; box-shadow:var(--shadow); }
    .contact-method-icon img { width:60px; height:60px; object-fit:contain; }
    .contact-method strong { font-size:25px; }
    .contact-method--phone strong { font-size:31px; }
    .contact-method small { font-size:16px; }
    .contact-method--line { position:relative; padding-bottom:40px; }
    .contact-method--line::after { content:""; position:absolute; right:-4px; bottom:-4px; width:105px; height:125px; background:url('../images/cta-woman.png') right bottom/contain no-repeat; }

    .office-summary-grid { grid-template-columns:1fr; gap:25px; }
    .office-summary-table th, .office-summary-table td { padding:14px 10px; font-size:15px; }
    .map-box iframe { min-height:320px; }
    .top-partners .section-more--right a { font-size:20px; }

    .site-footer { padding:55px 0 24px; }
    .footer-inner { display:block; }
    .footer-office h2 { font-size:22px; }
    .footer-office dt, .footer-office dd { font-size:15px; }
    .footer-line { display:inline-block; margin:15px 0; }
    .footer-line img { width:46px; }
    .footer-nav-wrap { display:none; }
    .footer-legal { display:flex; justify-content:center; gap:28px; margin-top:25px; font-size:14px; font-weight:700; }
    .footer-bottom { justify-content:center; margin-top:22px; padding-top:0; border:0; }
}

/* =========================
   v1.0.3 visual corrections
   - mobile top page aligned to the supplied 418px comp
   - mobile navigation layout reset
========================= */
@media only screen and (min-width: 1025px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .global-nav-list a {
        font-size: 18px;
    }

    .top-mv-copy h1 {
        width: 60%;
        margin-bottom: 42px;
        font-size: 48px;
        line-height: 1.55;
    }

    .top-mv-copy h1 > span {
        white-space: nowrap;
    }

    .top-mv-copy .button {
        min-width: 300px;
        min-height: 72px;
        font-size: 32px;
    }
}

@media only screen and (max-width: 1024px) {
    /* Header */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.99);
    }

    .header-inner {
        width: 100%;
        min-height: 68px;
        padding: 0 0 0 14px;
    }

    .header-brand {
        display: flex;
        align-items: center;
        min-width: 0;
        gap: 9px;
    }

    .header-logo {
        flex: 0 0 44px;
    }

    .header-logo img {
        width: 42px;
        margin: 0;
    }

    .header-site-name {
        margin: 0;
        font-size: 18px;
        line-height: 1.25;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .mobile-header-actions,
    .menu-toggle {
        width: 68px;
        height: 68px;
        flex: 0 0 68px;
    }

    .menu-toggle {
        font-size: 36px;
    }

    .menu-toggle svg {
        width: 38px;
        height: 38px;
    }

    .mobile-navigation {
        top: 68px;
        padding: 26px 34px 52px;
        background: rgba(255, 250, 240, 0.99);
    }

    .mobile-navigation .mobile-nav-list,
    .mobile-navigation .global-nav-list {
        display: block;
        width: min(560px, 100%);
        min-height: 0;
        margin: 0 auto;
    }

    .mobile-navigation .mobile-nav-list li,
    .mobile-navigation .global-nav-list li {
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(243, 152, 0, 0.35);
    }

    .mobile-navigation .mobile-nav-list a,
    .mobile-navigation .global-nav-list a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 59px;
        padding: 10px 4px;
        font-size: 18px;
        letter-spacing: 0.06em;
    }

    .mobile-navigation .global-nav-list a::after {
        display: none;
    }

    .mobile-nav-contact {
        width: min(300px, 100%);
        min-height: 54px;
        margin-top: 30px;
        font-size: 17px;
    }

    /* Main visual: explicit three-line copy from the mobile comp */
    .top-mv-copy {
        inset: 0;
        width: 100%;
        margin: 0;
        transform: none;
    }

    .top-mv-copy h1 {
        position: absolute;
        top: 31.2%;
        left: 8.1%;
        width: 80%;
        margin: 0;
        font-size: 30px;
        line-height: 1.65;
        letter-spacing: 0.06em;
    }

    .top-mv-copy h1 > span {
        white-space: nowrap;
    }

    .top-mv-copy .button {
        position: absolute;
        top: 61.1%;
        left: 8.1%;
        min-width: min(250px, 58vw);
        min-height: 50px;
        margin: 0;
        padding: 10px 24px;
        font-size: 18px;
    }

    /* Problems: fixed section proportions and one-line pills */
    .problem-section {
        padding: 0;
    }

    .problem-section::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 22px;
        width: 56px;
        height: 42px;
        background: url('../images/reason-cloud.png') center / contain no-repeat;
        opacity: 0.9;
    }

    .problem-inner {
        width: min(100%, 418px);
        height: clamp(390px, 101.5vw, 424px);
        min-height: 0;
        padding: 25px clamp(19px, 9.1vw, 38px) 0;
    }

    .section-title--ear {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 26px;
        font-size: 22px;
        line-height: 1.35;
        letter-spacing: 0.06em;
        white-space: nowrap;
    }

    .section-title--ear::before {
        display: none;
    }

    .section-title--ear img {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        object-fit: contain;
    }

    .problem-list {
        display: flex;
        flex-direction: column;
        gap: clamp(22px, 6.6vw, 28px);
        width: 100%;
        margin: 0;
    }

    .problem-list li {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 36px;
        min-height: 36px;
        margin: 0;
        padding: 0 5px;
        border-radius: 999px;
        font-size: 13px;
        line-height: 1;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .problem-answer {
        width: 100%;
        margin: 15px auto 0;
        padding: 0;
    }

    .problem-answer span {
        margin-bottom: 14px;
        border-top-width: 36px;
        border-right-width: 61px;
        border-left-width: 61px;
    }

    .problem-answer p {
        position: relative;
        z-index: 2;
        width: calc(100% - 40px);
        margin: 0;
        font-size: 21px;
        line-height: 1.35;
        letter-spacing: 0.04em;
        text-align: center;
    }

    .problem-woman {
        right: 0;
        bottom: 0;
        width: 128px;
        z-index: 1;
    }

    /* Reasons */
    .reason-section {
        padding-top: 54px;
    }

    .reason-list {
        width: min(100%, 418px);
    }

    .reason-item,
    .reason-item--reverse {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 58px;
    }

    .reason-item--reverse .reason-image-wrap {
        order: 0;
    }

    .reason-image-wrap {
        width: 100%;
        padding: 8px 0 0 8px;
    }

    .reason-image,
    .reason-item--reverse .reason-image {
        aspect-ratio: 1.52 / 1;
        border-radius: 38px;
    }

    .reason-image-wrap::before,
    .reason-item--reverse .reason-image-wrap::before {
        right: 8px;
        bottom: 8px;
        left: 0;
        border-radius: 38px;
    }

    .reason-copy {
        width: 100%;
        padding: 7px 10px 0;
    }

    .reason-number {
        margin: 0;
        color: var(--orange);
        font-size: 58px;
        line-height: 1.05;
    }

    .reason-copy h3 {
        margin-bottom: 17px;
        font-size: 21px;
        line-height: 1.45;
    }

    .reason-copy p {
        font-size: 15px;
        line-height: 1.65;
        overflow-wrap: normal;
        word-break: normal;
    }

    /* Mobile contact block: reset the earlier grid and match the supplied cards */
    .contact-cta {
        padding: 53px 0 64px;
    }

    .contact-cta-inner {
        width: min(calc(100% - 76px), 680px);
    }

    .contact-cta-heading {
        width: 100%;
        margin: 0 auto 25px;
        padding: 0;
        background: transparent;
    }

    .contact-cta-heading h2 {
        color: var(--text);
        font-size: 28px;
        line-height: 1.28;
        letter-spacing: 0.04em;
        text-align: center;
    }

    .contact-cta-heading h2::after {
        content: "";
        display: block;
        width: 172px;
        height: 3px;
        margin: 6px auto 0;
        background: var(--orange);
    }

    .contact-cta-heading img {
        display: none;
    }

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

    .contact-method {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 210px;
        padding: 24px 18px;
        border: 4px solid var(--orange);
        border-radius: 30px;
        box-shadow: var(--shadow);
        text-align: center;
    }

    .contact-method-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        margin: 0 0 24px;
        grid-row: auto;
    }

    .contact-method-icon img {
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .contact-method--phone .contact-method-icon img {
        width: 58px;
        height: 58px;
    }

    .contact-method--mail .contact-method-icon img {
        width: 72px;
        height: auto;
    }

    .contact-method--line .contact-method-icon img {
        width: 68px;
        height: 68px;
    }

    .contact-method strong {
        font-size: 26px;
        line-height: 1.35;
        letter-spacing: 0.04em;
        text-align: center;
    }

    .contact-method--phone strong {
        color: var(--orange);
        font-size: 31px;
        white-space: nowrap;
    }

    .contact-method small {
        margin-top: 6px;
        font-size: 15px;
        line-height: 1.3;
        text-align: center;
    }

    .contact-method--line {
        padding-bottom: 38px;
    }

    .contact-method--line::after {
        content: "";
        position: absolute;
        right: -4px;
        bottom: -4px;
        width: 112px;
        height: 132px;
        background: url('../images/cta-woman.png') right bottom / contain no-repeat;
        pointer-events: none;
    }

    .contact-method--line strong {
        position: relative;
        z-index: 1;
        padding-right: 32px;
    }

    /* Footer mobile comp */
    .site-footer {
        padding: 54px 0 30px;
    }

    .site-footer .footer-inner,
    .site-footer .footer-legal,
    .site-footer .footer-bottom {
        width: min(calc(100% - 76px), 680px);
    }

    .footer-inner {
        display: block;
    }

    .footer-office h2 {
        margin-bottom: 20px;
        font-size: 19px;
        line-height: 1.45;
    }

    .footer-office dl > div {
        margin-bottom: 17px;
    }

    .footer-office dt,
    .footer-office dd {
        font-size: 15px;
        line-height: 1.65;
    }

    .footer-socials {
        display: flex;
        align-items: center;
        gap: 22px;
        margin-top: 18px;
    }

    .footer-social,
    .footer-line {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .footer-social img,
    .footer-line img {
        width: 38px;
        height: 38px;
        object-fit: contain;
    }

    .footer-nav-wrap {
        display: none;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        gap: 27px;
        margin-top: 28px;
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
    }

    .footer-bottom {
        display: block;
        margin-top: 22px;
        padding-top: 0;
        border: 0;
        text-align: center;
    }

    .footer-bottom small {
        font-size: 13px;
        font-weight: 700;
    }
}

@media only screen and (max-width: 360px) {
    .header-site-name {
        font-size: 14px;
    }

    .top-mv-copy h1 {
        font-size: 25px;
    }

    .section-title--ear {
        font-size: 19px;
    }

    .problem-inner {
        padding-right: 15px;
        padding-left: 15px;
    }

    .problem-list li {
        font-size: 10px;
    }

    .contact-cta-inner,
    .site-footer .footer-inner,
    .site-footer .footer-legal,
    .site-footer .footer-bottom {
        width: calc(100% - 44px);
    }

    .contact-method--phone strong {
        font-size: 26px;
    }

    .footer-legal {
        gap: 18px;
        font-size: 12px;
    }
}

/* =========================
   v1.0.8 Problem answer single-line correction
========================= */
.problem-answer {
    width: 100%;
    max-width: none;
}

.problem-answer p {
    white-space: nowrap;
    word-break: keep-all;
}

@media only screen and (min-width: 1025px) {
    .problem-answer p {
        font-size: 34px;
    }
}

@media only screen and (max-width: 1024px) {
    .problem-answer p {
        font-size: clamp(17px, 5vw, 22px);
        letter-spacing: 0.02em;
    }
}
