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

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #1e2939;
    background-color: #fff;
}

:root {
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5dc;
    --color-gray-400: #99a1af;
    --color-gray-500: #6a7282;
    --color-gray-600: #4a5565;
    --color-gray-700: #364153;
    --color-gray-800: #1e2939;
    --color-gray-900: #101828;
    --color-blue-50: #eff6ff;
    --color-blue-400: #51a2ff;
    --color-blue-500: #2b7fff;
    --color-blue-600: #155dfc;
    --color-blue-700: #1447e6;
    --color-blue-900: #1c398e;
    --color-yellow-50: #fefce8;
    --color-yellow-300: #ffdf20;
    --color-yellow-400: #fcc800;
    --color-yellow-500: #efb100;
    --color-yellow-600: #d08700;
    --color-orange-50: #fff7ed;
    --color-orange-100: #ffedd4;
    --color-orange-200: #ffd6a8;
    --color-orange-300: #ffb86a;
    --color-orange-400:#ff8904;
    --color-orange-500:#ff6900;
    --color-orange-600:#f54a00;
    --color-orange-700:#ca3500;
    --color-red-50: #fef2f2;
    --color-red-300: #ffa2a2;
    --color-red-400: #ff6467;
    --color-red-600: #e7000b;
    --color-red-700: #c10007;
    --color-red-900: #82181a;
}

/* テキスト */
.t900 {
    color: var(--color-gray-900);
}

.t700 {
    color: var(--color-gray-700);
}

p.tac {
    text-align: center;
    font-weight: 700;
}


/* Header PC */
.header-pc {
    background-color: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav a {
    text-decoration: none;
    color: var(--color-gray-700);
    font-size: 14px;
    font-weight: 700;
    transition: opacity 0.3s;
}

.nav a:nth-child(6) {
    font-weight: 400;
}

.nav a:hover {
    color: #155dfc;
}

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

.header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.hours-label {
    font-size: 12px;
    color: var(--color-gray-600);
    font-weight: 500;
    line-height: 1;
}

.phone-number {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-blue-600);
    line-height: 1;
}

.btn-header-phone {
    background-color: var(--color-blue-600);
    color: #fff;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-header-phone:hover {
    background-color: var(--color-blue-700);
}

.btn-header-phone svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.btn-header-mail {
    background-color: var(--color-yellow-400);
    color: #333;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration:none;
}

.btn-header-mail:hover {
    background-color: var(--color-yellow-500);
}

.btn-header-mail svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Header SP */
.header-sp {
    display: none;
    width: 100%;
}

.header-sp-image {
    width: 100%;
    height: auto;
    display: block;
}


/* Hero Section */
#hero {
    position: relative;
    width: 100%;
}

.hero-background {
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-sp {
    display: none;
}



/* Sub Banner */
.sub-banner {
    background-color: var(--color-gray-700);
    padding: 12px 20px;
    text-align: center;
}

.sub-banner p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFEF6C;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1060px) {
    .header-pc {
        display: none;
    }

    .header-sp {
        display: block;
    }

    #hero {
        min-height: calc(100vw * 0.56);
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        min-height: calc(100vw * 0.56);
    }
}

@media (max-width: 768px) {
    /* SP: Image width 100%, height auto to maintain aspect ratio */
    .hero-image-pc {
        display: none;
    }

    .hero-image-sp {
        display: block;
    }

    #hero {
        height: auto;
        min-height: auto;
        overflow: visible;
    }

    .hero-background {
        position: relative;
        width: 100%;
    }

    .sub-banner {
        padding: 10px 16px;
    }

    .sub-banner p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .sub-banner p {
        font-size: 15px;
    }
}

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

/* Section 1: Stats */
#stats {
    position: relative;
    padding: 60px 0;
    background-image: url('img/sec1.webp');
    background-size: cover;
    background-position: center;
}

.sec1-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

#stats .container {
    position: relative;
    z-index: 2;
}

.sec1-header {
    text-align: center;
    margin-bottom: 20px;
}

.sec1-badge {
    display: inline-block;
    background-color: var(--color-orange-500);
    color: #fff;
    padding: 12px 104px;
    border-radius: 50px;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 8px;
}

.sec1-subtitle {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}

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

.stat-card {
    background: linear-gradient(135deg, var(--color-yellow-400) 0%, var(--color-orange-500) 100%);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: solid 4px var(--color-yellow-300);
}

.stat-label {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.stat-number {
    font-weight: 900;
    color: var(--color-gray-900);
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

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

.stat-unit {
    font-size: 56px;
}

/* Section 3: Trouble */
#trouble {
    background: linear-gradient(135deg, var(--color-yellow-50) 0%, var(--color-orange-50) 50%, var(--color-red-50) 100%);
    padding: 60px 0;
}

.trouble-box {
    background: linear-gradient(135deg, var(--color-yellow-300) 0%, var(--color-yellow-400) 50%, var(--color-yellow-500) 100%);
    border: 4px solid #000;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.trouble-box::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 20px, #000 20px, #000 40px);
    border-radius: 8px;
    z-index: 0;
}

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

.trouble-header {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: var(--color-yellow-300);
    padding: 16px 24px;
    border-radius: 8px;
    border: 2px solid var(--color-yellow-400);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.trouble-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    stroke: currentColor;
}

.trouble-title {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    color: currentColor;
}

.trouble-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.trouble-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--color-gray-100);
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid var(--color-yellow-500);
    transition: background-color 0.3s;
}

.trouble-item:hover {
    background: var(--color-yellow-50);
}

.trouble-item-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: var(--color-yellow-600);
    margin-top: 2px;
}

.trouble-item p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.trouble-warning {
    background: linear-gradient(135deg, var(--color-red-600) 0%, var(--color-red-700) 100%);
    color: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

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

.trouble-warning-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-yellow-400);
    border-radius: 50%;
    flex-shrink: 0;
}

.trouble-warning-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-red-700);
}

.trouble-warning h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.trouble-warning p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.trouble-warning .highlight {
    color: var(--color-yellow-300);
    text-decoration: underline;
}

.trouble-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.trouble-image-card {
    background: linear-gradient(135deg, var(--color-red-50) 0%, var(--color-orange-50) 100%);
    border: 2px solid var(--color-red-300);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    position: relative;
}

.trouble-image-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.trouble-image-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--color-red-400);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.trouble-image-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.trouble-image-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-red-600);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.trouble-image-card h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-red-900);
    margin: 0;
    line-height: 1.3;
}

.trouble-image-card p {
    font-size: 14px;
    color: var(--color-gray-700);
    line-height: 1.5;
    margin: 0;
}

.trouble-footer {
    background: var(--color-gray-900);
    padding: 24px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.trouble-footer p {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.7;
}

.trouble-footer .danger {
    color: var(--color-red-400);
}

.trouble-footer .highlight-yellow {
    color: var(--color-yellow-300);
}

.trouble-source {
    padding-top: 12px;
    border-top: 1px solid #4a5568;
}

.trouble-source p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.6;
}

.trouble-source a {
    color: #60a5fa;
    text-decoration: underline;
    word-break: break-all;
}

.trouble-source a:hover {
    color: #93c5fd;
}

/* Section 4: CTA */
#cta {
    background: linear-gradient(135deg, var(--color-orange-100) 50%, var(--color-orange-50) 100%);
    padding: 60px 0;
}

#cta .container {
    text-align: center;
}
.sec4-image {
    width: 900px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
    border: solid 4px var(--color-blue-900);
}

.btn-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--color-orange-500) 0%, var(--color-orange-600) 100%);
    color: #fff;
    text-decoration: none;
    padding: 16px 80px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s, transform 0.2s;
}

.btn-cta:hover {
    opacity: 0.9;
    background: linear-gradient(to right, var(--color-orange-600), #c2410c);
    transform: scale(1.05);
}

.btn-cta-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.btn-cta-text {
    font-size: 30px;
    font-weight: 500;
}

/* Section 2: Services */
#service {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.sec1-overlay.service {
    background-color: rgba(255, 255, 255, 0.1);

}

#service::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('img/sec5.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
}

#service .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.badge {
    display: inline-block;
    background-color: var(--color-orange-500);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    margin: 0;
}

.scroll-guide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #fff;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 10;
    pointer-events: none;
}

.scroll-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hand-icon {
    stroke: #fff;
}

.arrow-icon {
    stroke: #fff;
}

.arrow-left {
    transform: scaleX(-1);
    animation: scroll-bounce-left 1.5s infinite;
}

.arrow-right {
    animation: scroll-bounce-right 1.5s infinite;
}

@keyframes scroll-bounce-left {
    0%, 100% {
        transform: scaleX(-1) translateX(0);
    }
    50% {
        transform: scaleX(-1) translateX(-6px);
    }
}

@keyframes scroll-bounce-right {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(6px);
    }
}

.services-scroll {
    position: relative;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 16px 4px;
    margin-bottom: 32px;
    scroll-behavior: smooth;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.services-scroll::-webkit-scrollbar {
    display: none;
}

.services-scroll:active {
    cursor: grabbing;
}

.service-card {
    flex: 0 0 350px;
    background: #fff;
    border: 2px solid var(--color-orange-300);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-price {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--color-yellow-400);
    color: var(--color-gray-900);
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--color-gray-900);
}

.service-content p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-gray-600);
    font-weight: 700;
    margin: 0;
}

/* Section 7: Voice */
#voice {
    background: var(--color-orange-200);
    padding: 60px 0;
}

.voice-scroll {
    position: relative;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 16px 4px;
    scroll-behavior: smooth;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.voice-scroll::-webkit-scrollbar {
    display: none;
}

.voice-scroll:active {
    cursor: grabbing;
}

.voice-card {
    flex: 0 0 350px;
    background: #fff;
    border: 1px solid var(--color-orange-300);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.voice-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.voice-image {
    height: 192px;
    overflow: hidden;
}

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

.voice-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.voice-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.star-icon {
    width: 16px;
    height: 16px;
    fill: var(--color-yellow-400);
    stroke: var(--color-yellow-400);
}

.voice-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-gray-700);
    margin: 0;
    flex: 1;
}

.voice-author {
    text-align: center;
    padding-top: 16px;
    margin-top: auto;
}

.voice-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.voice-info {
    font-size: 12px;
    color: var(--color-gray-600);
}

/* Section 5: Promise */
#promise {
    background: linear-gradient(135deg, var(--color-orange-50) 0%, #fff7ed 100%);
    padding: 60px 0;
}

#promise .section-title, #flow .section-title{
    color: var(--color-blue-900);
}

.sec6-subtitle {
    color: var(--color-orange-600);
    font-size: 24px;
}

.promise-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.promise-card {
    background: #fff;
    border: 4px solid var(--color-orange-200);
    border-radius: 16px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.promise-card:hover {
    border-color: var(--color-orange-400);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

.promise-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-orange-400) 0%, var(--color-orange-600) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.promise-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.promise-badge {
    background-color: var(--color-blue-600);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.promise-content h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--color-blue-900);
    margin: 0 0 16px 0;
}

.promise-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.promise-image {
    height: 256px;
    overflow: hidden;
    border-radius: 12px;
    border: 4px solid var(--color-orange-300);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.promise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.promise-footer {
    background: linear-gradient(90deg, var(--color-orange-500) 0%, var(--color-orange-600) 100%);
    color: #fff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: 0 auto;
}

.promise-footer-text1 {
    font-size: 20px;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.promise-footer-text2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.highlight-yellow {
    color: var(--color-yellow-300);
    text-decoration: underline;
}

/* Section 6: Reason */
#reason {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

#reason::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('img/sec7.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

#reason .container {
    position: relative;
    z-index: 1;
}

.badge.reason{
    display: inline-block;
    background-color: var(--color-orange-500);
    color: #fff;
    padding: 6px 20px;
    border-radius: 12px;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
}

#reason .section-title{
    color: var(--color-blue-600);
    margin-top: 20px;
}

.reason-tables {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.reason-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-blue-500);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: solid 4px var(--color-blue-500);
}

.reason-table-header {
    background-color: var(--color-blue-600);
    color: #fff;
    font-size: 24px;
    padding: 12px;
    text-align: center;
    border-bottom: 2px solid var(--color-blue-700);
}

.reason-table-header h4 {
    font-size: 24px;
    margin: 0;
}

.reason-table tbody tr {
    border-bottom: 2px solid #e5e7eb;
}

.reason-table tbody tr:last-child {
    border-bottom: none;
}

.reason-label {
    background-color: #1f2937;
    color: #fff;
    padding: 16px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    width: 150px;
    border-right: 2px solid #e5e7eb;
}

.reason-value {
    background-color: var(--color-blue-600);
    color: #fff;
    padding: 16px;
    position: relative;
}

.reason-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    user-select: none;
}

.reason-value p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.reason-table-main tbody tr:last-child .reason-value p {
    font-weight: 700;
}

.text-highlight {
    color: var(--color-yellow-300);
}


.reason-table.reason-table-comparison {
    border: 4px solid var(--color-gray-300);
    background: var(--color-gray-300);
}

.reason-table-comparison thead tr {
    background-color: #e5e7eb;
    border-bottom: 4px solid #1f2937;
}

.reason-label-empty {
    background-color: #1f2937;
    width: 100px;
    border-right: 2px solid #e5e7eb;
}

.reason-comparison-header {
    background-color: #e5e7eb;
    color: #1f2937;
    padding: 16px;
    text-align: center;
    border-right: 2px solid #e5e7eb;
}

.reason-comparison-header:last-child {
    border-right: none;
}

.reason-comparison-header h4 {
    font-size: 18px;
    margin: 0;
}

.reason-comparison-value {
    background-color: #f3f4f6;
    color: #1f2937;
    padding: 16px;
    position: relative;
    border-right: 2px solid #e5e7eb;
}

.reason-comparison-value:last-child {
    border-right: none;
}

.reason-mark-gray {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: rgba(156, 163, 175, 0.25);
    pointer-events: none;
    user-select: none;
}

.reason-comparison-value p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.reason-table-comparison tbody tr:last-child .reason-comparison-value p {
    font-weight: 700;
}

/* Section 8: Flow */
#flow {
    background: linear-gradient(135deg, var(--color-yellow-50)  0%, var(--color-orange-100) 50%);
    padding: 60px 0;
}

#flow .sec6-subtitle {
    font-size: 30px;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.flow-card {
    background: #fff;
    border: 3px solid var(--color-orange-300);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.flow-card:hover {
    border-color: var(--color-blue-400);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.flow-step-badge {
    display: inline-block;
    background-color: var(--color-blue-700);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.flow-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.flow-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--color-blue-700);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.flow-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-blue-700);
}

.flow-card h4 {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-blue-900);
    margin: 0 0 16px 0;
    line-height: 1.4;
    text-align: center;
}

.flow-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.flow-card-image {
    border: 3px solid var(--color-orange-300);
    padding: 0;
    overflow: hidden;
}

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

.flow-text {
    font-size: 18px;
    margin: 0 auto;
    max-width: 900px;
    line-height: 1.8;
    font-weight: 400;
}

.flow-text-sub {
    font-weight: 500;
    color: var(--color-orange-600);;
}

/* Section 9: FAQ */
#faq {
    background: linear-gradient(135deg, var(--color-orange-50) 0%, var(--color-orange-100) 100%);
    padding: 60px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 32px;
}

.faq-item {
    background: #fff;
    border: 2px solid var(--color-orange-300);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.8s;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    color: var(--color-gray-900);
}

.faq-item.active .faq-question {
    background-color: transparent;
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: #666;
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 16px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-gray-600);
}

/* Section 10: Contact Form */
#contact.section-contact {
    background: var(--color-orange-50);
    padding: 60px 0;
}

.section-contents {
    max-width: 600px;
    text-align: left;
    margin: 0 auto;
}

.contact-note {
    font-size: 14px;
    color: var(--color-gray-600);
    margin: 32px 0;
    line-height: 1.5;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 32px;
    border: 4px solid var(--color-orange-200);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.label-required {
    background-color: #dc2626;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 8px;
}

.label-optional {
    background-color: #9ca3af;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 8px;
}

.label-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-gray-900);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-orange-500);
}

.form-textarea {
    resize: none;
    line-height: 1.6;
}

.radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.radio-label input[type="radio"] {
    margin-right: 6px;
}

/* Date Preference */
.date-preference {
    background: #f9fafb;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.date-preference-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--color-gray-900);
}

.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.date-input {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.time-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-inputs .form-select {
    flex: 1;
}

.time-separator {
    font-weight: 700;
    color: var(--color-gray-600);
}

.date-note {
    font-size: 12px;
    color: var(--color-gray-600);
    margin-top: 8px;
}

/* Privacy Policy */
.privacy-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-gray-900);
}

.privacy-content {
    background: #f9fafb;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    padding: 16px;
    max-height: 320px;
    overflow-y: auto;
    font-size: 12px;
    color: var(--color-gray-600);
    line-height: 1.8;
}

.privacy-content h5 {
    font-size: 12px;
    font-weight: 700;
    margin: 16px 0 8px;
    color: var(--color-gray-700);
}

.privacy-content h5:first-of-type {
    margin-top: 12px;
}

.privacy-content p {
    margin-bottom: 12px;
}

.privacy-content ul {
    margin: 0 0 12px 20px;
    padding: 0;
    line-height: 1;
}

.privacy-content li {
    margin-bottom: 4px;
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 32px;
}

.btn-submit {
    background: linear-gradient(to right, var(--color-orange-500), var(--color-orange-600));
    color: #fff;
    padding: 16px 48px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
}

.btn-submit:hover {
    background: linear-gradient(to right, var(--color-orange-600), #c2410c);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

/* Form Validation Errors */
.input-error {
    border-color: #dc2626 !important;
    background-color: #fef2f2;
}

.form-error {
    color: #dc2626;
    font-size: 13px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.form-error::before {
    content: "※";
}

.form-error-global {
    background-color: #fef2f2;
    border: 1px solid #dc2626;
    color: #dc2626;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 500;
}

.form-result-message {
    margin-top: 16px;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.form-result-success {
    background-color: #f0fdf4;
    border: 1px solid #22c55e;
    color: #16a34a;
}

.form-result-error {
    background-color: #fef2f2;
    border: 1px solid #dc2626;
    color: #dc2626;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Section 11: CTA Footer */
.section-cta-footer {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-footer-title {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 24px;
}

.cta-footer-text {
    font-size: 20px;
    color: var(--color-blue-50);
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-footer-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-yellow-400);
    color: var(--color-gray-900);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-phone:hover {
    background: var(--color-yellow-500);
    transform: translateY(-2px);
}

.btn-cta-phone svg {
    width: 18px;
    height: 18px;
}

.btn-cta-mail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1d4ed8;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all 0.3s;
}

.btn-cta-mail:hover {
    background: #eff6ff;
    transform: translateY(-2px);
}

.btn-cta-mail svg {
    width: 18px;
    height: 18px;
}

.cta-footer-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-blue-50);
    font-size: 16px;
}

.cta-footer-time svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: var(--color-gray-900);
    color: #9ca3af;
    padding: 60px 0 24px;
}

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

.footer-logo {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--color-gray-300);
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: var(--color-gray-300);
    font-weight: 500;
    transition: color 0.3s;
}

.social-link:hover {
    color: #fff;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--color-gray-300);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-phone {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: block;
}

.footer-phone:hover {
    color: #dbeafe;
}

.footer-phone-note {
    font-size: 12px;
    color: var(--color-gray-400);
    display: block;
}

.footer-contact a {
    color: var(--color-gray-300);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-address {
    line-height: 1.5;
    color: var(--color-gray-300);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
}

/* Fixed Bottom Banner */
.fixed-bottom-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    align-items: stretch;
    border-top: solid 1px var(--color-blue-900);
    height: 72px;
}

.fixed-banner-left {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 4px 8px;
    text-decoration: none;
    gap: 4px;
}

.fixed-banner-phoneimage {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.fixed-banner-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fixed-banner-small {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray-500);
    margin: 0;
    line-height: 1.4;
}

.fixed-banner-phone {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #102554;
    margin: 1px 0 4px;
    letter-spacing: 2px;
    line-height: 1.0;
}

.fixed-banner-note {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #102554;;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 1px;
}

.fixed-banner-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
}

.fixed-banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 4px;
}

.fixed-banner-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

/* Privacy Policy Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 640px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #f3f4f6;
}

.modal-close svg {
    width: 24px;
    height: 24px;
    stroke: #6b7280;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-gray-700);
}

.modal-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 24px 0 12px;
}

.modal-body h4:first-of-type {
    margin-top: 16px;
}

.modal-body p {
    margin-bottom: 12px;
}

.modal-body ul {
    margin: 0 0 16px 20px;
    padding: 0;
}

.modal-body li {
    margin-bottom: 6px;
}

.modal-body section {
    margin-bottom: 24px;
}

.modal-body section:last-child {
    margin-bottom: 0;
}

.contact-box {
    background: #f9fafb;
    padding: 16px;
    border-radius: 8px;
    margin-top: 12px;
}

.contact-box p {
    margin-bottom: 4px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.modal-footer-section {
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.modal-signature {
    text-align: right;
    color: var(--color-gray-600);
}

/* 1024px以下で固定バナー表示 */
@media (max-width: 1024px) {
    .fixed-bottom-banner {
        display: flex;
    }

    .footer {
        padding-bottom: 100px;
    }
}




/* Additional Responsive Design */
@media (max-width: 768px) {
    #stats {
        padding: 40px 0;
    }

    .sec1-badge {
        padding: 8px 32px;
        font-size: 24px;
        font-weight: 400;
        margin-bottom: 8px;
    }

    .sec1-subtitle {
        font-size: 14px;
    }

    .sec1-stats {
        gap: 8px;
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-card {
        padding: 16px 8px;
        border-radius: 12px;
        border-width: 2px;
    }

    .stat-label {
        font-size: 10px;
        margin-bottom: 8px;
        font-weight: 900;
    }

    .stat-number .number {
        font-size: 24px;
    }

    .stat-unit {
        font-size: 20px;
    }

    #trouble {
        padding: 40px 0;
    }

    .trouble-box {
        padding: 16px;
        border-width: 3px;
    }

    .trouble-header {
        padding: 12px 16px;
        gap: 8px;
        margin-bottom: 16px;
    }

    .trouble-icon {
        width: 20px;
        height: 20px;
    }

    .trouble-title {
        font-size: 16px;
    }

    .trouble-list {
        gap: 8px;
        margin-bottom: 16px;
    }

    .trouble-item {
        padding: 8px 12px;
        gap: 8px;
    }

    .trouble-item-icon {
        width: 16px;
        height: 16px;
    }

    .trouble-item p {
        font-size: 12px;
    }

    .trouble-warning {
        padding: 16px;
        margin-bottom: 20px;
    }

    .trouble-warning-header {
        gap: 8px;
        margin-bottom: 8px;
    }

    .trouble-warning-icon {
        width: 32px;
        height: 32px;
    }

    .trouble-warning-icon svg {
        width: 20px;
        height: 20px;
    }

    .trouble-warning h3 {
        font-size: 14px;
    }

    .trouble-warning p {
        font-size: 14px;
    }

    .trouble-images {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 20px;
    }

    .trouble-image-card {
        padding: 12px;
    }

    .trouble-image-card img {
        height: 120px;
    }

    .trouble-image-header {
        gap: 6px;
        margin-bottom: 8px;
    }

    .trouble-image-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .trouble-image-card h4 {
        font-size: 12px;
    }

    .trouble-image-card p {
        font-size: 12px;
    }

    .trouble-footer {
        padding: 16px;
    }

    .trouble-footer p {
        font-size: 13px;
    }

    .trouble-source p {
        font-size: 11px;
    }

    #cta {
        padding: 40px 0;
    }

    .sec4-image {
        width: 100%;
        border-width: 2px;
        margin-bottom: 24px;
    }

    .btn-cta {
        padding: 12px 40px;
        border-radius: 40px;
    }

    .btn-cta-label {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .btn-cta-text {
        font-size: 20px;
    }

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

    .service-card {
        flex: 0 0 280px;
    }

    .service-image {
        height: 160px;
    }

    .service-content {
        padding: 16px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    #voice {
        padding: 60px 0;
    }

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

    .voice-image {
        height: 160px;
    }

    .voice-content {
        padding: 12px;
    }

    .sec6-subtitle {
    font-size: 20px;
    }

    .promise-card {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .promise-content h3 {
        font-size: 20px;
    }

    .promise-content p {
        font-size: 14px;
    }

    .promise-image {
        height: 200px;
    }

    .promise-footer {
        padding: 24px 16px;
    }

    .promise-footer-text1 {
        font-size: 18px;
    }

    .promise-footer-text2 {
        font-size: 20px;
    }
    
    .badge.reason{
    font-size: 24px;
}

    .reason-label {
        font-size: 14px;
        padding: 12px 8px;
        width: 100px;
    }

    .reason-value,
    .reason-comparison-value {
        padding: 12px;
    }

    .reason-value p,
    .reason-comparison-value p {
        font-size: 13px;
    }

    .reason-mark,
    .reason-mark-gray {
        font-size: 40px;
    }

    .reason-table-header h4 {
        font-size: 18px;
    }

    .reason-comparison-header h4 {
        font-size: 14px;
        padding: 8px;
    }

    #flow .sec6-subtitle {
    font-size: 24px;
    }

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

    .flow-card {
        padding: 20px;
    }

    .flow-card h4 {
        font-size: 18px;
    }

    .flow-card p {
        font-size: 14px;
    }

    .flow-text {
    font-size: 16px;
    }

    .faq-question {
        font-size: 14px;
        padding: 12px 16px;
    }

    .faq-answer p {
        font-size: 13px;
        padding: 0 16px 12px;
    }

    /* Section 10: Contact Form Responsive */
    .section-contact {
        padding: 40px 0;
    }

    .section-contact .section-title {
        font-size: 28px;
    }

    .contact-note {
        text-align: left;
        padding: 0;
    }

    .contact-form {
        padding: 20px;
        border-radius: 12px;
        margin: 0 8px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .label-required,
    .label-optional {
        font-size: 11px;
        padding: 3px 6px;
    }

    .label-text {
        font-size: 13px;
    }

    .form-input,
    .form-textarea,
    .form-select {
        padding: 10px 12px;
        font-size: 13px;
    }

    .date-inputs {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .date-input {
        font-size: 16px;
        padding: 16px 8px;
    }

    .time-inputs {
        gap: 4px;
    }

    .time-inputs .form-select {
        font-size: 16px;
        padding: 10px 4px;
        min-width: 0;
    }

    .privacy-content {
        max-height: 240px;
        padding: 12px;
    }

    .btn-submit {
        padding: 14px 32px;
        font-size: 16px;
        width: 100%;
    }

    /* Section 11: CTA Footer Responsive */
    .section-cta-footer {
        padding: 60px 0;
    }

    .cta-footer-title {
        font-size: 28px;
    }

    .cta-footer-text {
        font-size: 14px;
    }

    .cta-footer-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .btn-cta-phone,
    .btn-cta-mail {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }

    .cta-footer-time {
        font-size: 14px;
    }

    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-column {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .fixed-banner-note {
        font-size: 11px;
            letter-spacing: 0;
    }

    .fixed-banner-left {
        padding: 4px 4px;
        gap:0;
    }

    .fixed-banner-phone {
        font-size: 26px;
        line-height: 1.1;
    }

    .fixed-banner-small {
        font-size: 11px;
    }

    .fixed-banner-phoneimage {
        width: 50px;
        height: 50px;
    }

    .fixed-banner-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
        .fixed-banner-icon img {
        border-radius: 8px;
    }
}

@media (max-width: 375px) {
    .fixed-banner-phone {
        font-size: 22px;
    }

    .fixed-banner-small {
        font-size: 10px;
    }

    .fixed-banner-note {
        font-size: 9px;
    }

    .fixed-banner-phoneimage {
        width: 44px;
        height: 44px;
    }

    .fixed-banner-left {
        gap: 6px;
        padding: 6px 8px;
    }

    .fixed-banner-icon {
        width: 48px;
        height: 48px;
    }

    .fixed-banner-icons {
        gap: 2px;
        margin-right: 6px;
    }
}