/* ========================================
   リセットCSS
======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/*
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #0a0a0a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    opacity: 0.7;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}
*/
/* ========================================
   共通スタイル
======================================== */
.section-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: clamp(24px, 3vw, 40px);
}

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

.section-title--highlight {
    font-size: clamp(34px, 4vw, 42px);
    color: #F0831E;
}

.section-title--black {
    color: #0a0a0a;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px clamp(16px, 3vw, 32px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo-img {
    height: 40px;
    width: auto;
}

.header__nav-list {
    display: flex;
    gap: clamp(16px, 2vw, 32px);
    align-items: center;
}

.header__nav-link {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.header__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
}

.header__menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #0a0a0a;
    transition: all 0.3s ease;
}

@media (max-width: 719px) {
    .section-title {
        line-height: 1.2;
    }
    
    .header__nav-list {
        display: none;
    }
    
    .header__menu-btn {
        display: flex;
    }
}

/* ========================================
   ボタン
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 380px;
}

.btn--secondary {
    gap: 0;
}

.btn--primary {
    background: linear-gradient(180deg, #E11919 0%, #B40F0F 70%, #571607 100%);
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn--primary:hover {
    background: linear-gradient(180deg, #d10909 0%, #a40000 70%, #471000 100%);
    opacity: 1;
}

.btn--secondary {
    background: linear-gradient(180deg, #FFFFFF 70%, #FFEEE1 100%);
    color: #0a0a0a;
    padding: 16px;
}

.btn--secondary:hover {
    background: linear-gradient(180deg, #f5f5f5 70%, #ffdec1 100%);
    opacity: 1;
}

.btn--large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn__icon {
    font-size: 20px;
}

.btn__icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.btn--secondary .btn__icon-img {
    width: 45px;
    height: 45px;
}

.btn--secondary .btn__icon-img--phone {
    left: -24px;
    position: relative;
}

.btn__badge {
    background-color: #ffffff;
    color: #c82506;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 700;
    text-shadow: none;
}

.btn__phone-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-left: -44px;
}

@media (max-width: 719px) {
    .btn__phone-wrapper {
        margin-left: -18px;
    }

    .btn--secondary .btn__icon-img {
        width: 28px;
        height: 28px;
    }

    .btn__icon-img {
        width: 20px;
        height: 20px;
    }

}

.btn__phone-label {
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.btn__phone-label strong {
    font-size: 14px;
}

.btn__phone {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4.8px;
}

.btn__phone-note {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}

@media (max-width: 719px) {
    .btn {
        width: 47%;
        padding: 10px 1.6px;
        font-size: 14px;
    }
    
    .btn__phone {
        font-size: 22.4px;
    }

    .btn__phone-note {
        font-size: 10px;
    }

    .btn__phone-label {
        font-size: 8px;
        margin-bottom: 3px;
    }

    .btn__phone-label strong {
        font-size: 10px;
    }

    .btn--secondary .btn__icon-img--phone {
        top: -7px;
        left: -12px;
        position: relative;
    }
}

/* ========================================
   ファーストビュー
======================================== */
.hero {
    background-color: #FCFAF7;
    overflow: hidden;
}

.hero__container {
    position: relative;
    padding: clamp(24px, 6vw, 96px) clamp(16px, 3vw, 32px) 0;
    overflow: visible;
}

.hero__background {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: calc(50vw + 632px - 375px);
}

.hero__background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.hero__content {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 1264px;
}

.hero__subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

@media (max-width: 719px) {
    .hero__subtitle {
        font-size: 18px;
    }
}

.hero__subtitle::before,
.hero__subtitle::after {
    content: '';
    width: 60px;
    height: 1px;
    background-color: #BD9F66;
}

.hero__title {
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 1.6px;
}

.hero__title-line {
    display: inline-block;
    background-color: #ffffff;
    padding: 0 8px;
    width: fit-content;
    white-space: nowrap;
}

.hero__title-highlight {
    color: #F0831E;
    font-size: 48px;
}

.hero__title-large {
    font-size: 48px;
}

.hero__title-small {
    font-size: 38px;
}

@media (max-width: 719px) {
    .hero__title{
        margin-bottom: 0;
    }

    .hero__title-highlight {
        font-size: 30px;
        font-weight: 600;
    }
    
    .hero__title-large {
        font-size: 28px;
    }
    
    .hero__title-small {
        font-size: 22px;
    }
}

.hero__badges {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-left: -10px;
}

.hero__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
}

.hero__badge-laurel {
    height: 95px;
    width: auto;
}

.hero__badge-laurel--right {
    transform: scaleX(-1);
}

.hero__badge-content {
    text-align: center;
    margin-top: -10px;
}

.hero__badge-label {
    font-size: 18px;
    font-weight: 700;
    color: #3D2B00;
}

.hero__badge-label sup {
    font-size: 10px;
    font-weight: 400;
    vertical-align: baseline;
    position: relative;
}

.hero__badge-number {
    line-height: 1;
    white-space: nowrap;
}

.hero__badge-num {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #F0831E;
}

.hero__badge-unit {
    font-size: 14px;
    font-weight: 700;
    color: #F0831E;
    vertical-align: baseline;
}

.hero__badges-note {
    font-size: 10px;
    margin-top: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
    white-space: nowrap;
}

@media (max-width: 719px) {
    .hero__badges-note {
        text-align: left;
        white-space: normal;
    }
}

@media (max-width: 719px) {
    .hero__badges {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 16px;
        margin-left: 0;
    }
    
    .hero__badge:first-child {
        grid-column: 1 / -1;
    }
    
    .hero__badge:nth-child(2),
    .hero__badge:nth-child(3) {
        grid-column: span 1;
    }
    
    .hero__badge {
        padding: 16px;
        gap: 8px;
    }
    
    .hero__badge-laurel {
        height: 80px;
    }
    
    .hero__badge-label {
        font-size: 14px;
    }
    
    .hero__badge-num {
        font-size: 40px;
    }
    
    .hero__badge-unit {
        font-size: 18px;
    }
}

@media (max-width: 719px) {
    .hero__subtitle::before {
        display: none;
    }
    
    .hero__background {
        position: relative;
        margin-right: 0;
        top: -40px;
        right: auto;
        order: 3;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        display: block;
        overflow: hidden;
        z-index: -1;
        margin-bottom: -90px;
    }
    
    .hero__background-img {
        object-position: center center;
        width: 100vw;
        display: block;
    }
    
    .hero__content {
        max-width: 100%;
    }
    
    .hero__badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .hero__badge:first-child {
        grid-column: 1 / -1;
        margin-bottom: -30px;
    }
}

.hero__cta {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
    text-align: center;
    position: relative;
    z-index: 9;
    margin-bottom: -48px;
}

.hero__cta-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    white-space: nowrap;
}

.hero__cta-text::before,
.hero__cta-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #BD9F66;
    max-width: 230px;
}

.hero__cta-buttons {
    position: relative;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__info-group {
    padding-top: 75px;
    background: linear-gradient(90deg, rgba(201, 189, 173, 0.5) 0%, rgba(254, 237, 170, 0.5) 100%);
}

.hero__description {
    padding: 32px clamp(16px, 3vw, 32px);
    text-align: center;
}

.hero__description-text {
    position: relative;
    display: inline-block;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.8;
    color: #0a0a0a;
    padding: 0 24px;
}

.hero__description-text::before,
.hero__description-text::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 19.2px;
    height: 100px;
    border: 1px solid #D87837;
}

.hero__description-text::before {
    left: 0;
    border-right: none;
}

.hero__description-text::after {
    right: 0;
    border-left: none;
}

.hero__description-highlight {
    font-weight: 700;
    font-size: clamp(18px, 1.5vw, 24px);
    text-decoration: underline;
    text-decoration-color: #FF8904;
    text-decoration-thickness: 4px;
    text-underline-offset: 4px;
}

.pc-only {
    display: inline;
}

.sp-only {
    display: none;
}

@media (max-width: 719px) {
    .pc-only {
        display: none;
    }
    
    .sp-only {
        display: block;
        position: relative;
    }
    
    .hero__description-text {
        text-align: left;
    }
    
    .hero__description-text::before,
    .hero__description-text::after {
        height: 150px;
    }
    
    .hero__description-highlight {
        text-decoration-thickness: 2px;
    }

    .hero__info-group {
        padding-top: 70px;
    }

    .hero__cta-text {
        gap: 8px;

    }

}

.hero__features {
    padding: 32px clamp(16px, 3vw, 32px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__feature-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.2px;
}

.hero__feature-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 60px;
    padding: 0 24px;
    background: linear-gradient(180deg, #FFFFFF 70%, #F4E7C5 100%);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero__feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.hero__feature-btn-text {
    font-size: clamp(12px, 1.5vw, 16px);
    font-weight: 700;
    color: #0a0a0a;
    white-space: nowrap;
}

.hero__feature-arrow {
    display: block;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #F0831E;
    font-size: 0;
    line-height: 0;
}

@media (max-width: 719px) {
    .btn--primary {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .btn--primary .btn__icon-img {
        order: 1;
        margin-right: 8px;
    }
    
    .btn--primary .btn__badge {
        order: 2;
        padding: 0em 4.8px;
        font-size: 12px;
    }
    
    .btn--primary .btn__text {
        order: 3;
        width: 100%;
        margin-top: -23px;
    }
    
    .btn__text-main {
        font-size: 18px;
    }
    
    .btn__text-sub {
        font-size: 10px;
    }
    
    .hero__cta-buttons {
        flex-direction: row;
    }
    
    .hero__features {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
        padding: 24px 8px;
    }
    
    .hero__feature-wrapper:nth-child(1),
    .hero__feature-wrapper:nth-child(2),
    .hero__feature-wrapper:nth-child(3) {
        grid-column: span 2;
    }
    
    .hero__feature-wrapper:nth-child(4) {
        grid-column: 2 / 4;
    }
    
    .hero__feature-wrapper:nth-child(5) {
        grid-column: 4 / 6;
    }
    
    .hero__feature-btn {
        width: 100%;
        min-width: 0;
        font-size: 12px;
        height: 60px;
        padding: 0 8px;
    }
    
    .hero__feature-arrow {
        font-size: 16px;
    }
}

/* ========================================
   お悩みセクション
======================================== */
.concerns {
    padding: clamp(48px, 8vw, 96px) 0;
    background-color: #F5F5F5;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}

.concerns__container {
    max-width: 1264px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
}

.concerns__title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    margin-bottom: clamp(32px, 4vw, 48px);
    color: #0a0a0a;
    letter-spacing: 0.1em;
}

.concerns__title-bold {
    font-size: clamp(34px, 4vw, 42px);
    color: #0a0a0a;
    background-image: radial-gradient(circle at center, #F0831E 15%, transparent 15%);
    background-position: -2px 0;
    background-repeat: repeat-x;
    background-size: 1.07em 0.5em;
    padding-top: 0.3em;
    display: inline-block;
}

.concerns__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.concerns__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.concerns__card {
    background-color: #ffffff;
    width: 100%;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.concerns__emoji {
    font-size: 64px;
    line-height: 1;
}

.concerns__icon-img {
    width: 50%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
}

.concerns__text {
    margin-top: 12px;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    line-height: 1.7;
    color: #0a0a0a;
    text-align: center;
}

.concerns__highlight {
    color: #F0831E;
}

@media (max-width: 719px) {
    .concerns__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .concerns__card {
        border-radius: 10px;
        padding: 10px 0;
    }
    
    .concerns__text {
        text-align: left;
        margin-bottom: 25px;
    }
    
    .concerns__emoji {
        font-size: 48px;
    }
    
    .concerns__icon-img {
        width: 50%;
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    .concerns__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .concerns__icon-img {
        width: 100%;
        max-height: 90px;
    }
}

/* ========================================
   解決セクション
======================================== */
.solution {
    padding: clamp(48px, 8vw, 96px) 0 0 0;
    background-color: #ffffff;
}

.solution__container {
    max-width: 1264px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
}

.solution__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.solution__item {
    display: flex;
    flex-direction: column;
}

.solution__image-wrapper {
    position: relative;
    width: 100%;
}

.solution__image {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.solution__label {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(224, 120, 32, 0.9);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
}

.solution__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    color: #0a0a0a;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.solution__highlight {
    color: #F0831E;
}

.solution__divider {
    border: none;
    border-top: 1px dashed #cccccc;
    margin: 12px 0 8px;
}

.solution__desc {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    color: #0a0a0a;
    text-align: left;
}

@media (max-width: 719px) {
    .solution__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 53px;
    }
    
    .solution__title {
        margin-bottom: 0;
    }
}

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

.solution__cta {
    margin: 64px 0 0;
    padding: 48px clamp(16px, 3vw, 32px);
    background-image: url('../images/cta-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.solution__cta-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.solution__cta-text::before,
.solution__cta-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #BD9F66;
    max-width: 230px;
}

.solution__cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 719px) {
    .solution__grid {
        grid-template-columns: 1fr;
    }
    
    .solution__cta-buttons {
        flex-direction: row;
    }

    .solution__cta-text {
        gap: 8px;
    }
}

/* ========================================
   強みセクション
======================================== */
.strength {
    padding: clamp(48px, 8vw, 96px) 0 0 0;
}

.strength__container {
    max-width: 1264px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
}

.strength__subtitle {
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.8;
    color: #0a0a0a;
    text-align: center;
    margin-bottom: 48px;
}

.strength__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px;
}

.strength__item {
    text-align: center;
}

.strength__chart {
    margin-bottom: 20px;
    position: relative;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.strength__chart-figure {
    margin: 0;
    position: relative;
}

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

.strength__chart-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
}

.strength__chart-detail {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
    background-color: #F0831E;
    border-radius: 8px;
    padding: 4.8px 4.8px;
}

.strength__chart-dl {
    display: flex;
    align-items: center;
    gap: 8px;
}

.strength__chart-dt {
    font-size: 14px;
    color: #FF8904;
    background-color: #ffffff;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.strength__chart-dd {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.strength__chart-unit-wrapper {
    position: relative;
    display: inline-block;
    line-height: 1;
}

.strength__chart-note {
    position: absolute;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.strength__chart-unit {
    font-size: 14px;
    line-height: 1;
}

.strength__chart-num {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
}

.strength__chart-dd sup {
    font-size: 10px;
    font-weight: 400;
}

.strength__chart--area {
    position: relative;
}

.strength__chart-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Noto Sans JP', sans-serif;
    color: #FF8904;
    font-weight: 700;
    white-space: nowrap;
}

.strength__chart-label-text {
    font-size: 16px;
}

.strength__chart-label-num {
    font-size: 32px;
    margin: 0 2px;
}

.strength__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: #F0831E;
    margin-bottom: 16px;
}

.strength__title-small {
    font-size: clamp(18px, 2vw, 22px);
    color: #0a0a0a;
}

.strength__title-large {
    font-size: clamp(22px, 2.5vw, 24px);
}

.strength__divider {
    border: none;
    border-top: 1px dashed #cccccc;
    margin: 0 0 12px 0;
}

.strength__text {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: #0a0a0a;
    text-align: left;
}

.strength__note {
    margin-top: 16px;
    font-size: clamp(10px, 1.5vw, 12px);
    line-height: 1.6;
    color: #0a0a0a;
    text-align: left;
}

@media (max-width: 719px) {
    .strength__grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    
    .strength__item:nth-child(3) {
        margin-bottom: 32px;
    }

    .strength__chart {
        margin-bottom: 6.4px;
    }

    .strength__title {
        margin-bottom: 8px;
    }

    .strength__divider{
        margin-bottom: 8px;
    }
    .strength__subtitle {
        text-align: left;
    }
}

/* ========================================
   比較セクション
======================================== */
.comparison {
    padding: clamp(48px, 8vw, 80px) 0;
    background-color: #F4F7FA;
    margin: clamp(32px, 5vw, 64px) clamp(16px, 3vw, 32px);
    border-radius: 20px;
}

.comparison__container {
    max-width: 1264px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
}

.comparison__subtitle {
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 48px;
}

.comparison__subtitle-highlight {
    color: #F0831E;
    font-weight: 700;
}

.comparison__subtitle-text {
    color: #0a0a0a;
}

.comparison__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.comparison__flow,
.comparison__table {
    position: relative;
}

.comparison__flow-img,
.comparison__table-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
}

.comparison__flow-img--sp {
    display: none;
}

@media (max-width: 719px) {
    .comparison__flow-img--pc {
        display: none;
    }
    
    .comparison__flow-img--sp {
        display: block;
    }
}

.comparison__note {
    font-size: 12px;
    color: #0a0a0a;
    text-align: right;
    margin-top: 8px;
    background-color: transparent;
}

.comparison__cta {
    margin: 64px 0 0;
    padding: 48px clamp(16px, 3vw, 32px);
    background-image: url('../images/cta-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.comparison__cta-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.comparison__cta-text::before,
.comparison__cta-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #BD9F66;
    max-width: 230px;
}

.comparison__cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 719px) {
    .comparison__content {
        grid-template-columns: 1fr;
    }
    
    .comparison__cta-buttons {
        flex-direction: row;
    }

    .comparison__subtitle {
        text-align: left;
        line-height: 1.6;
    }

    .comparison__cta-text {
    gap: 8px;
    }
}

/* ========================================
   お客様の声セクション
======================================== */
.voice {
    padding: clamp(48px, 8vw, 96px) 0;
    background-image: url('../images/voice-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.voice__container {
    margin: 0 auto;
}

.voice__subtitle {
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.8;
    color: #0a0a0a;
    text-align: center;
    margin-bottom: 48px;
}

.voice__slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.voice__swiper {
    margin: 0 clamp(16px, 7vw, 100px) 48px;
    padding: 0;
    overflow: visible;
}

.voice__swiper .swiper-slide {
    width: 280px;
    height: auto;
}

.voice__navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.voice__card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voice__card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

.voice__card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 3.2px 3.2px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.voice__card-name {
    white-space: nowrap;
}

.voice__card-occupation {
    color: #F0831E;
}

.voice__card-occupation--black {
    color: #0a0a0a;
}

.voice__card-info--white {
    background-color: rgba(240, 131, 30, 0.9);
}

.voice__card-divider {
    color: #d9d9d9;
}

.voice__card-label {
    padding: 10px;
}

.voice__card-label-text {
    display: inline-block;
    background-color: #f0801e;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    text-align: center;
}

.voice__card-label-text--orange {
    background-color: #F1E4D9;
    color: #FF8904;
}

.voice__card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: #0a0a0a;
    padding: 2px 20px 10px;
}

.voice__card-title--orange {
    color: #FF8904;
}

.voice__card-text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #0a0a0a;
    padding: 0 20px 24px;
}

/* Swiperナビゲーションボタンのカスタマイズ */
.voice__swiper-button-prev,
.voice__swiper-button-next {
    position: static;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 10px;
    color: #F0831E;
    margin: 0;
}

.voice__swiper-button-prev:after,
.voice__swiper-button-next:after {
    font-size: 18px;
    font-weight: bold;
}

.voice__swiper-button-prev:hover,
.voice__swiper-button-next:hover {
    background-color: rgba(255, 137, 4, 0.1);
}

.voice__swiper-button-prev.swiper-button-disabled,
.voice__swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

@media (max-width: 719px) {
    .voice__slider {
        padding: 0 clamp(16px, 3vw, 32px);
    }
    
    .voice__swiper {
        margin-bottom: 32px;
    }
    
    .voice__swiper-button-prev:after,
    .voice__swiper-button-next:after {
        font-size: 16px;
    }
    
    .voice__subtitle{
        text-align: left;
        margin: 0 15px 50px;
    }
}

@media (min-width: 1920px) {
    .voice__swiper {
        max-width: 1760px;
        margin: 0 auto 48px;
        padding: 0;
    }
    
    .voice__swiper .swiper-wrapper {
        justify-content: center;
    }
    
    .voice__navigation {
        display: none;
    }
}


/* ========================================
   フッターCTA
======================================== */
.footer-cta {
    padding: clamp(48px, 8vw, 80px) 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.footer-cta__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
    text-align: center;
}

.footer-cta__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-cta__text {
    font-size: 18px;
    color: #d9d9d9;
    margin-bottom: 40px;
}

.footer-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 719px) {
    .footer-cta__buttons {
        flex-direction: column;
    }
}

/* ========================================
   追従ボタン
   ======================================== */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.7);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
}

.fixed-cta__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px clamp(16px, 3vw, 32px);
    text-align: center;
}

.fixed-cta__text {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fixed-cta__text-line1 {
    font-size: 14px;
}

.fixed-cta__text-line2 {
    font-size: 20px;
}

.fixed-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 720px) {
    .fixed-cta__inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px 32px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    
    .fixed-cta__text {
        margin-bottom: 0;
    }

    .fixed-cta {
        .btn {
            font-size: 18px;
            width: 300px;
            padding-bottom: 19px;
        }

        .btn__badge {
            font-size: 14px;
            padding: 0px 4px;
        }

        .btn__icon-img {
            top: 1px;
            width: 20px;
            height: 20px;
            position: relative;
        }

        .btn__phone-wrapper {
            gap: 2px;
            margin-left: -30px;
        }

        .btn--secondary {
            padding: 5px;
        }

        .btn--secondary .btn__icon-img {
            width: 35px;
            height: 35px;
        }

        .btn--secondary .btn__icon-img--phone {
            left: -20px;
        }

        .btn__phone {
            margin-bottom: 0;
            font-size: 30px;
        }

        .btn__phone-note {
            font-size: 9px;
        }

        .btn__phone-label {
            font-size: 9px;
        }

        .btn__phone-label strong {
            font-size: 10px;
        }
    }
}

@media (max-width: 719px) {
    .fixed-cta__inner {
        padding: 6px 2px 8px;
    }
    
    .fixed-cta__text {
        align-items: center;
        margin-bottom: 5px;
    }

    .fixed-cta__text-line1 {
        font-size: 18px;
    }
    
    .fixed-cta__text-line2 {
        display: none;
    }
    
    .fixed-cta__buttons {
        flex-direction: row;
        gap: 8px;
    }
    
    .fixed-cta {
        .btn {
            padding: 8px 0;
        }
        .btn__icon-img {
            width: 16px;
            height: 16px;
        }

        .btn--primary .btn__text {
            margin-top: -12px;
        }
        .btn--primary .btn__icon-img {
            margin-right: 0;
        }
        .btn--primary .btn__badge {
        font-size: 10px;
        }
        .btn__text-main {
            font-size: 16px;
        }
        .btn__phone {
            margin-bottom: -2px;
            font-size: 20px;
        }

        .btn__phone-label {
            margin-bottom: -2px;
        }

        .btn__phone-note {
            font-size: 8px;
        }

        .btn--secondary .btn__icon-img--phone {
            top: 2px;
            left: 7px;
        }
        .btn--secondary .btn__icon-img {
            width: 22px;
            height: 22px;
        }

     }
}
/* ========================================
   フッター
======================================== */
.footer {
    background-color: #0a0a0a;
    padding: 48px 0 32px;
}

.footer__container {
    max-width: 1264px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
    text-align: center;
}

.footer__logo {
    margin-bottom: 32px;
}

.footer__logo-img {
    height: 40px;
    margin: 0 auto;
}

.footer__nav-list {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.footer__nav-link {
    font-size: 14px;
    color: #d9d9d9;
}

.footer__nav-link:hover {
    color: #ffffff;
}

.footer__copyright {
    font-size: 12px;
    color: #0a0a0a;
    padding-top: 32px;
    border-top: 1px solid #0a0a0a;
}

@media (max-width: 719px) {
    .footer__nav-list {
        flex-direction: column;
        gap: 16px;
    }
}

/* ========================================
   ユーティリティ
======================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* スムーズスクロール */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* アクセシビリティ：フォーカス表示 */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #ff8904;
    outline-offset: 2px;
}


/* ========================================
   Override
======================================== */
footer.footer{
    margin-top: 0;
}
.voice__swiper-button-prev,
.voice__swiper-button-next{
    padding: 0;
}
.swiper-button-next,
.swiper-button-prev{
    z-index: 1;
}
.voice__swiper-button-prev::before,
.voice__swiper-button-next::before{
    display: none;
}
.usingland_form_contact{
    font-weight: 500;
    line-height: 1.8;
}
.solution__divider,
.strength__divider {
    visibility: visible;
}