/* ===== リセットCSS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ===== CTA（緊急）背景 ===== */
.cta-block {
    position: relative;
}

.cta-block__background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* 背景グラデーション（urgent用） */
.cta-block--urgent .cta-block__background {
    background: linear-gradient(135deg, #E6EDE5 0%, #FFFFFF 100%);
}

/* うっすらしたパターン（urgent用） */
.cta-block__pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(135deg, rgba(5, 108, 0, 0.05) 25%, transparent 25%),
        linear-gradient(225deg, rgba(5, 108, 0, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, rgba(5, 108, 0, 0.05) 25%, transparent 25%),
        linear-gradient(315deg, rgba(5, 108, 0, 0.05) 25%, transparent 25%);
    background-position: 10px 0, 10px 0, 0 0, 0 0;
    background-size: 20px 20px;
}

/* コンテンツを前面に（urgentコンテンツ） */
.cta-block__content {
    position: relative;
    z-index: 1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
    line-height: 1.8;
    color: #333333;
    background-color: #FFFFFF;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== 共通クラス ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* モバイル用改行 */
.mobile-break {
    display: none;
}

.section__title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 20px;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #078E00, #08B000);
    border-radius: 2px;
}

/* テキスト強調 */
.highlight-text {
    color: #056C00;
    font-weight: 900;
    font-size: 1.1em;
    background: linear-gradient(transparent 60%, rgba(8, 176, 0, 0.3) 60%, rgba(8, 176, 0, 0.3) 85%, transparent 85%);
    padding: 2px 8px;
    border-radius: 2px;
    position: relative;
    display: inline-block;
    line-height: 1.6;
}

/* ===== ボタンスタイル ===== */
.btn {
    display: inline-block;
    padding: 18px 48px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    line-height: 1.0;
}

.btn--primary {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #B91C1C, #DC2626);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--header {
    background-color: #D70308;
    color: #FFFFFF;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(215, 3, 8, 0.4);
    letter-spacing: 0.02em;
}

.btn--header:hover {
    background-color: #B00206;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(215, 3, 8, 0.5);
}


/* ===== ヘッダー ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    height: 80px;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

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

.header__logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #056C00;
    text-decoration: none;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.header__nav {
    display: flex;
    gap: 32px;
}

.header__nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    transition: color 0.3s ease;
}

.header__nav-link:hover {
    color: #056C00;
}

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 24px;
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333333;
    transition: all 0.3s ease;
}

/* ===== ファーストビュー ===== */
.hero {
    padding: 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    background-image: url('../images/first-view-pc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__container {
    display: flex;
    width: 100%;
    height: auto;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
}

.hero__left {
    width: 100%;
    padding: 10vh 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    overflow: visible;
    max-width: 800px;
    background: transparent;
    margin: 5vh 0;
}

/* 左側の背景を削除して背景画像を活かす */
.hero__left::before {
    display: none;
}

.hero__tag {
    display: block;
    background: linear-gradient(90deg, #056C00 0%, #08B000 100%);
    color: #FFFFFF;
    padding: 1.1vw 2.2vw;
    margin-bottom: 2vh;
    width: fit-content;
    font-size: 4.1vw;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.35;
    position: relative;
    z-index: 10;
    white-space: nowrap;
}

.hero__tag-small {
    font-size: 0.85em;
    font-weight: 600;
}

.hero__title {
    display: block;
    background: linear-gradient(90deg, #056C00 0%, #08B000 100%);
    color: #FFFFFF;
    padding: 1.4vw 2.2vw;
    margin-bottom: 4.5vh;
    width: fit-content;
    font-size: 4.1vw;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.35;
    position: relative;
    z-index: 10;
    white-space: nowrap;
}

/* 幅を揃えるためのJavaScript制御用 */
.hero__tag.width-matched,
.hero__title.width-matched {
    width: var(--hero-text-width);
}

.hero__text {
    margin-bottom: 7.5vh;
    position: relative;
    z-index: 10;
    width: fit-content;
    max-width: 55vw;
}

.hero__text p {
    color: #333333;
    font-size: 25px;
    line-height: 1.9;
    margin-bottom: 0.8vh;
}

.hero__text strong {
    font-weight: 700;
    color: #333333;
}

.hero__badges {
    display: flex;
    gap: 2.8vw;
    flex-wrap: wrap;
}

.hero__badge-image {
    width: 11.5vw;
    height: 11.5vw;
    min-width: 150px;
    min-height: 150px;
    object-fit: contain;
}

.hero__badge {
    width: 11.5vw;
    height: 11.5vw;
    min-width: 150px;
    min-height: 150px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5vh;
    position: relative;
    background: white;
}

.hero__badge::before {
    content: '';
    position: absolute;
    inset: -0.32vw;
    border-radius: 50%;
    padding: 0.32vw;
    background: linear-gradient(135deg, #056C00 0%, #08B000 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.hero__badge-top {
    color: #078E00;
    font-size: 2.4vw;
    font-weight: 700;
    line-height: 1.3;
}

.hero__badge-middle {
    color: #078E00;
    font-size: 2.4vw;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.3;
}

.hero__badge-bottom {
    color: #333333;
    font-size: 2.4vw;
    font-weight: 400;
    line-height: 1.3;
}

/* 3行バッジの調整 */
.hero__badge--three-line {
    gap: 0;
}

.hero__badge--three-line .hero__badge-top {
    color: #333333;
    font-size: 1.1vw;
    font-weight: 400;
    margin-bottom: -0.6vh;
}

.hero__badge--three-line .hero__badge-middle {
    margin-bottom: -0.6vh;
}

.hero__badge--three-line .hero__badge-bottom {
    font-size: 1.1vw;
    font-weight: 400;
}

.hero__badge-number {
    font-size: 3.6vw;
    font-weight: 700;
}

.hero__badge-unit {
    font-size: 0.95vw;
    font-weight: 400;
    color: #333333;
}

/* PC版では右側画像エリアを非表示（背景画像を使用） */
.hero__right {
    display: none;
}

.hero__right::before {
    content: '';
    position: absolute;
    left: -6.5vw;
    top: -3%;
    width: 13vw;
    height: 106%;
    background-color: rgba(255, 255, 255, 0.7);
    transform: skewX(-7deg);
    z-index: 0;
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.05);
}


.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    transform: translateX(-50px);
}

/* デスクトップではモバイル画像を非表示 */
.hero__image--mobile {
    display: none;
}

/* タブレット・モバイルではモバイル画像を表示 */
@media (max-width: 1024px) {
    .hero {
        padding: 0 !important;
        background: none !important;
        height: auto !important;
        margin-top: 60px !important;
    }
    
    .hero__container {
        display: block !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .hero__left {
        display: none !important;
    }
    
    .hero__right {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        position: relative !important;
    }
    
    .hero__image--desktop {
        display: none !important;
    }
    
    .hero__image--mobile {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
        transform: none !important;
    }
}

/* ===== 選ばれる理由 ===== */
.reasons {
    padding: 60px 20px;
    background-color: #FFFFFF;
}

.reasons .container {
    max-width: 1400px;
    margin: 0 auto;
}

.main-title {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    color: #056C00;
    margin-bottom: 60px;
    line-height: 1.4;
}

.cards-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.card {
    background-color: white;
    border-radius: 12px;
    padding: 50px 35px 45px;
    flex: 1;
    max-width: 420px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.card-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #056C00, #078E00);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #056C00 0%, #078E00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 4px 12px rgba(5, 108, 0, 0.3);
}

.icon-circle svg {
    width: 50px;
    height: 50px;
    fill: #FFFFFF;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.5;
}

.card-title-green {
    color: #056C00;
}

.card-title-black {
    color: #056C00;
}

.check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
}

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

.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #056C00 0%, #078E00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 12px;
    margin-top: 2px;
    box-shadow: 0 2px 6px rgba(5, 108, 0, 0.3);
}

.check-icon::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.check-content {
    flex: 1;
}

.check-title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 6px;
    line-height: 1.4;
}

.check-description {
    font-size: 13px;
    color: #333333;
    line-height: 1.6;
}

/* ===== 解決への矢印 ===== */
.solution-arrow {
    background: #FFFFFF;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.solution-arrow__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-arrow__text {
    font-size: 32px;
    font-weight: 900;
    color: #D70308;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(215, 3, 8, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.solution-arrow__text::before,
.solution-arrow__text::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D70308);
}

.solution-arrow__text::before {
    right: calc(100% + 20px);
    background: linear-gradient(90deg, transparent, #D70308);
}

.solution-arrow__text::after {
    left: calc(100% + 20px);
    background: linear-gradient(270deg, transparent, #D70308);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.solution-arrow__icon {
    font-size: 56px;
    color: #D70308;
    animation: bounce 2s infinite;
    text-shadow: 0 2px 8px rgba(215, 3, 8, 0.2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* ===== CTAブロック ===== */
.cta-block {
    background: linear-gradient(135deg, #056C00 0%, #078E00 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* シンプルCTA */
.cta-simple {
    background: linear-gradient(135deg, #056C00 0%, #078E00 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-simple__background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
pointer-events: none;
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 40%, rgba(8, 176, 0, 0.1) 70%, rgba(255, 255, 255, 0.02) 100%);
}

.cta-simple__pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(7, 142, 0, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.cta-simple__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-simple__box {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-simple__box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #08B000;
}

.cta-simple__title {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.cta-simple__subtitle {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-simple__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #D70308;
    color: #FFFFFF;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(215, 3, 8, 0.3);
}

.cta-simple__button:hover {
    background: #B00206;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(215, 3, 8, 0.4);
}

.cta-simple__arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cta-simple__button:hover .cta-simple__arrow {
    transform: translateX(4px);
}

.cta-simple__phone {
    margin: 20px 0 16px;
}

.cta-simple__phone a {
    font-size: 40px;
    font-weight: 700;
    color: #D70308;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.cta-simple__phone a:hover {
    color: #B00206;
}

.cta-simple__hours {
    font-size: 12px;
    color: #666666;
    margin-top: 10px;
}

.cta-block::before {
    content: '';
}

.cta-block__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.cta-block__pattern {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.05) 10px,
        rgba(255,255,255,0.05) 20px
    );
}

.cta-block__content {
    position: relative;
    z-index: 2;
}

.cta-block__header {
    text-align: center;
    margin-bottom: 60px;
}

.cta-block__badge {
    background: linear-gradient(135deg, #078E00, #08B000);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(7, 142, 0, 0.4);
}

.cta-block__title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-block__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.cta-block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.cta-block__form,
.cta-block__phone {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-block__form:hover,
.cta-block__phone:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-block__form-header,
.cta-block__phone-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.cta-block__form-icon,
.cta-block__phone-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-block__form-title,
.cta-block__phone-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.cta-block__form-desc,
.cta-block__phone-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.btn--cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #078E00, #08B000);
    border: none;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(7, 142, 0, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.btn--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn--cta:hover::before {
    left: 100%;
}

.btn--cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(7, 142, 0, 0.6);
}

.btn__icon {
    font-size: 20px;
}

.btn__arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn--cta:hover .btn__arrow {
    transform: translateX(5px);
}

.cta-block__benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-block__benefit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-block__phone-number {
    text-align: center;
    margin-bottom: 24px;
}

.cta-block__number-link {
    display: inline-block;
    text-decoration: none;
    padding: 16px 24px;
    background: linear-gradient(135deg, #08B000, #078E00);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cta-block__number-link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(8, 176, 0, 0.4);
}

.cta-block__number-text {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #1a365d;
    line-height: 1;
}

.cta-block__number-sub {
    display: block;
    font-size: 12px;
    color: #1a365d;
    opacity: 0.8;
    margin-top: 2px;
}

.cta-block__phone-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-block__hours,
.cta-block__guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-block__hours-icon,
.cta-block__guarantee-icon {
    font-size: 16px;
}

.cta-block__urgency {
    text-align: center;
    padding: 20px;
    background: rgba(217, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(217, 0, 0, 0.3);
}

.cta-block__urgency-text {
    font-size: 16px;
    font-weight: 700;
    color: #08B000;
    animation: pulse 2s infinite;
}

.cta-block__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="%23ffffff" opacity="0.1"/></svg>');
    pointer-events: none;
}

.cta-block__hours {
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 8px;
}

/* ===== アニメーション ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLine {
    from {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }
    to {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-in.from-left {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-in.from-right {
    animation: fadeInRight 0.6s ease-out forwards;
}

/* 初期状態（アニメーション前） */
.reason-card,
.problem-card,
.hero__badge,
.solution__circle,
.case-study,
.flow__step,
.contact-form__form {
    opacity: 0;
    transform: translateY(30px);
}

/* ===== ヘッダースクロール時の変化 ===== */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* ===== モバイルメニュー ===== */
@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .header__nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header__nav-link {
        padding: 12px 0;
        border-bottom: 1px solid #E0E0E0;
        font-size: 18px;
    }
    
    .header__nav-link:last-child {
        border-bottom: none;
    }
    
    .header__hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .header__hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .header__hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* ===== レスポンシブ対応 ===== */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }
    
    .hero__badges {
        gap: 20px;
    }
    
    .hero__badge {
        width: 110px;
        height: 110px;
    }
    
    .main-title {
        font-size: 36px;
    }

    .cards-container {
        gap: 25px;
    }
    
    .card {
        padding: 45px 30px 40px;
    }
}

@media (max-width: 1023px) {
    .container {
        padding: 0 24px;
    }
    
    .section__title {
        font-size: 32px;
        margin-bottom: 48px;
        line-height: 1.3;
    }
    
    /* ヘッダー調整 */
    .header {
        height: 70px;
    }
    
    .header__logo-img {
        height: 36px;
    }
    
    .header__nav {
        gap: 24px;
    }
    
    .header__cta {
        padding: 12px 24px;
        font-size: 16px;
        font-weight: 700;
    }
    
    /* ヒーロー調整 */
    .hero {
        padding: 80px 0 60px;
        margin-top: 70px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero__content {
        padding-left: 0;
    }
    
    .hero__tag {
        font-size: 20px;
        padding: 10px 20px;
        margin-bottom: 4px;
    }
    
    .hero__tag--primary {
        font-size: 18px;
    }
    
    .hero__tag--secondary {
        font-size: 24px;
        padding: 12px 20px;
    }
    
    .hero__description {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .hero__badges {
        gap: 24px;
        justify-content: center;
    }
    
    .hero__badge {
        width: 120px;
        height: 120px;
        border-width: 3px;
    }
    
    .hero__badge-label {
        font-size: 14px;
    }
    
    .hero__badge-sub {
        font-size: 12px;
    }
    
    .hero__badge-number {
        font-size: 28px;
    }
    
    .hero__badge-unit {
        font-size: 12px;
    }
    
    /* セクション調整 */
    .reasons {
        padding: 50px 20px;
    }
    
    .main-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    
    .card {
        max-width: 600px;
        width: 100%;
    }
    
    .reason-card {
        padding: 32px 24px;
    }
    
    .reason-card__title {
        font-size: 18px;
    }
    
    .reason-card__description {
        font-size: 15px;
    }
    
    /* CTA調整 */
    .cta-block {
        padding: 50px 0;
    }
    
    .cta-block__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-block__title {
        font-size: 20px;
    }
    
    /* サービスメリット調整 */
    .service-merit {
        padding: 80px 0;
    }
    
    .service-merit__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-merit__description {
        font-size: 16px;
    }
    
    /* 問題セクション調整 */
    .problems {
        padding: 50px 0 15px 0;
    }
    
    .problems__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .problem-card {
        padding: 32px 24px;
    }
    
    /* ソリューション調整 */
    .solution {
        padding: 60px 0;
    }
    
    .solution__diagram {
        flex-direction: column;
        gap: 24px;
    }
    
    .solution__circle {
        width: 200px;
        height: 200px;
    }
    
    .solution__plus {
        font-size: 36px;
        transform: rotate(90deg);
    }
    
    .solution__description {
        font-size: 16px;
    }
}

/* タブレット (1024px以下) */
@media (max-width: 1024px) {
    .hero {
        margin-top: 60px;
        padding: 0;
        background: none;
    }
    
    .hero__container {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero__left {
        display: none;
    }
    
    
    .hero__right {
        width: 100%;
        min-height: auto;
        height: auto;
        order: 0;
        margin-bottom: 0;
    }
    
    .hero__right::before {
        display: none;
    }
    
    /* 画像設定は上部の独立メディアクエリで処理 */
    
    .hero__right::after {
        font-size: 6vw;
        bottom: 6vh;
        right: 6vw;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }
    
    .header .container {
        padding: 0 12px;
    }
    
    /* モバイル用改行を表示 */
    .mobile-break {
        display: inline;
    }
    
    /* ヘッダー（モバイル） */
    .header {
        height: 60px;
    }
    
    .header__logo {
        gap: 8px;
    }
    
    .header__logo-img {
        height: 32px;
    }
    
    .header__logo-text {
        font-size: 14px;
    }
    
    .header__nav {
        display: none;
    }
    
    .header__hamburger {
        display: none;
    }
    
    .header__cta {
        padding: 10px 16px;
        font-size: 14px;
        font-weight: 700;
        margin-left: auto;
        margin-right: 0;
        white-space: nowrap;
    }
    
    /* セクションタイトル */
    .section__title {
        font-size: 24px;
        margin-bottom: 32px;
        line-height: 1.4;
        padding-bottom: 16px;
    }
    
    .highlight-text {
        font-size: 1.05em;
        padding: 2px 6px;
    }
    
    .section__title::after {
        width: 60px;
        height: 3px;
    }
    
    /* ヒーロー（モバイル） */
    .hero {
        margin-top: 60px !important;
        padding: 0 !important;
        background: none !important;
        height: auto !important;
    }
    
    .hero__container {
        display: block !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .hero__left {
        display: none !important;
    }
    
    .hero__right {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        position: relative !important;
    }
    
    .hero__image--desktop {
        display: none !important;
    }
    
    .hero__image--mobile {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
        transform: none !important;
    }
    
    .hero__right::before {
        display: none;
    }
    
    .hero__left::before {
        width: 60%;
        background-color: rgba(230, 237, 229, 0.92);
        clip-path: none;
    }
    
    .hero__tag {
        padding: 12px 20px;
        margin-bottom: 4px;
        font-size: 20px;
        line-height: 1.4;
        display: block;
        width: 100%;
        text-align: center;
        border-radius: 0;
    }
    
    .hero__tag-small {
        font-size: 1em;
    }
    
    .hero__title {
        padding: 12px 20px;
        margin-bottom: 30px;
        font-size: 20px;
        line-height: 1.4;
        display: block;
        width: 100%;
        text-align: center;
        border-radius: 0;
    }
    
    .hero__text {
        margin-bottom: 30px;
        max-width: 100%;
        text-align: center;
    }
    
    .hero__text p {
        font-size: 14px;
        line-height: 1.7;
        font-weight: 500;
        margin-bottom: 8px;
        color: #333333;
    }
    
    .hero__badges {
        position: absolute;
        bottom: 20px;
        left: 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        z-index: 3;
    }
    
    .hero__badge-image {
        width: 80px;
        height: 80px;
        min-width: 80px;
        min-height: 80px;
        object-fit: contain;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    
    .hero__right {
        width: 100%;
        height: auto;
        position: relative;
        z-index: 0;
    }
    
    .hero__right::before {
        display: none;
    }
    
    .hero__right::after {
        display: none;
    }
    
    .hero__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero__content {
        order: 2;
        padding-right: 0;
    }
    
    .hero__tags {
        margin-bottom: 24px;
    }
    
    .hero__description {
        font-size: 14px;
        margin-bottom: 32px;
        text-align: center;
    }
    
    .hero__badges {
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .hero__badge {
        width: 100px;
        height: 100px;
        border-width: 2px;
    }
    
    .hero__badge-label {
        font-size: 12px;
    }
    
    .hero__badge-sub {
        font-size: 10px;
    }
    
    .hero__badge-number {
        font-size: 20px;
    }
    
    .hero__badge-unit {
        font-size: 10px;
    }
    
    .hero__tag {
        font-size: 14px;
        padding: 8px 16px;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .hero__service-name {
        font-size: 20px;
        padding: 12px 16px;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.3;
    }
    
    .hero__description {
        font-size: 14px;
        margin-bottom: 32px;
        text-align: center;
        line-height: 1.7;
    }
    
    .hero__badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .hero__badge {
        width: 90px;
        height: 90px;
        border: 2px solid #078E00;
    }
    
    .hero__badge-number {
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    .hero__badge-label {
        font-size: 11px;
        line-height: 1.1;
    }
    
    .hero__badge-sub {
        font-size: 9px;
        margin-top: 1px;
    }
    
    /* ボタン（モバイル） */
    .btn {
        padding: 14px 28px;
        font-size: 15px;
        border-radius: 6px;
    }
    
    .btn--header {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    /* 理由セクション（モバイル） */
    .reasons {
        padding: 50px 20px;
    }
    
    .reasons .main-title {
        font-size: 26px;
        margin-bottom: 50px;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }
    
    .card {
        padding: 35px 20px 30px;
        margin: 25px 10px 10px;
        border-radius: 16px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    }
    
    .card-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 3px 12px rgba(0, 165, 80, 0.4);
    }
    
    .icon-circle {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #056C00 0%, #078E00 100%);
    }
    
    .icon-circle svg {
        width: 40px;
        height: 40px;
        fill: #FFFFFF;
    }
    
    .card-title {
        font-size: 18px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .check-title {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .check-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .check-item {
        margin-bottom: 16px;
    }
    
    .check-icon {
        width: 20px;
        height: 20px;
        margin-top: 1px;
    }
    
    .reason-card {
        padding: 24px 20px;
        text-align: center;
    }
    
    .reason-card__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .reason-card__icon-img {
        width: 30px;
        height: 30px;
    }
    
    .reason-card__title {
        font-size: 16px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .reason-card__description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* CTAブロック（モバイル） */
    .cta-block {
        padding: 40px 0;
    }
    
    .cta-simple {
        padding: 40px 0;
    }
    
    .cta-simple__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 16px;
    }
    
    .cta-simple__box {
        padding: 20px 28px;
    }
    
    .cta-simple__title {
        font-size: 19px;
    }
    
    .cta-simple__subtitle {
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .cta-simple__button {
        padding: 16px 36px;
        font-size: 16px;
    }
    
    .cta-simple__phone a {
        font-size: 32px;
    }
    
    .cta-simple__hours {
        font-size: 12px;
    }
    
    .cta-block__grid {
        gap: 32px;
    }
    
    .cta-block__title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .cta-block__btn {
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .cta-block__number a {
        font-size: 24px;
    }
    
    .cta-block__note {
        font-size: 13px;
        line-height: 1.5;
    }
    
    /* サービスメリット（モバイル） */
    .service-merit {
        padding: 60px 0;
    }
    
    .service-merit__description {
        font-size: 15px;
        margin-bottom: 24px;
        text-align: center;
    }
    
    .service-merit__item {
        font-size: 14px;
        margin-bottom: 12px;
        padding-left: 20px;
    }
    
    .service-merit__item::before {
        font-size: 16px;
    }
    
    /* CTAブロック（モバイル） */
    .cta-block--urgent {
        padding: 60px 0;
    }
    
    .cta-block__header {
        margin-bottom: 40px;
    }
    
    .cta-block__title {
        font-size: 24px;
    }
    
    .cta-block__subtitle {
        font-size: 16px;
    }
    
    .cta-block__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .cta-block__form,
    .cta-block__phone {
        padding: 24px 20px;
    }
    
    .cta-block__form-header,
    .cta-block__phone-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .cta-block__form-icon,
    .cta-block__phone-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .btn--cta {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .cta-block__number-text {
        font-size: 24px;
    }
    
    /* 解決への矢印（モバイル） */
    .solution-arrow {
        padding: 15px 20px;
    }
    
    .solution-arrow__text {
        font-size: 24px;
        margin-bottom: 12px;
        letter-spacing: 0.01em;
    }
    
    .solution-arrow__text::before,
    .solution-arrow__text::after {
        display: none;
    }
    
    .solution-arrow__icon {
        font-size: 44px;
    }
    
    /* 問題セクション（モバイル） */
    .problems {
        padding: 40px 0 10px 0;
    }
    
    .problems__header {
        margin-bottom: 40px;
    }
    
    .problems__title-main {
        font-size: 26px;
    }
    
    .problems__title-sub {
        font-size: 17px;
    }
    
    .problems__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .problem-card {
        padding: 24px 20px;
    }
    
    .problem-card__header {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
    }
    
    .problem-card__icon {
        width: 90%;
        height: 120px;
        max-width: 280px;
    }
    
    .problem-card__img {
        width: 75%;
        height: 85px;
    }
    
    .problem-card__title {
        font-size: 19px;
        margin-bottom: 16px;
    }
    
    .problem-card__symptom {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .problem-card__consequence-text {
        font-size: 16px;
    }
    
    .problems__cta-content {
        padding: 24px 20px;
    }
    
    .problems__cta-main {
        font-size: 20px;
    }
    
    .problems__cta-sub {
        font-size: 14px;
    }
    
    .btn--problems {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    /* ソリューション（モバイル） */
    .solution {
        padding: 50px 0;
    }
    
    .solution__circle {
        width: 160px;
        height: 160px;
        padding: 18px;
    }
    
    .solution__circle-title {
        font-size: 14px;
        margin-bottom: 6px;
        letter-spacing: 0.06em;
        line-height: 1.2;
    }
    
    .solution__circle-sub {
        font-size: 11px;
    }
    
    .solution__plus {
        font-size: 28px;
    }
    
    .solution__description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .solution__goal {
        font-size: 22px;
        line-height: 1.4;
    }
}

/* ===== サービスのメリット ===== */
.service-merit {
    padding: 120px 0;
    background-color: #FFFFFF;
}

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

.service-merit__img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-merit__text {
    background-color: #E6EDE5;
    padding: 32px;
    border-radius: 12px;
}

.service-merit__description {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #333333;
}

.service-merit__list {
    list-style: none;
}

.service-merit__item {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.service-merit__item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #056C00;
    font-weight: 700;
    font-size: 18px;
}

/* ===== よくある事業者様の悩み ===== */
.problems {
    padding: 60px 0 20px 0;
    background: #FFFFFF;
    position: relative;
}

.problems__background {
    display: none;
}

.problems__overlay {
    display: none;
}

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

.problems__alert {
    background: #078E00;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.problems__title {
    color: #333333;
    margin-bottom: 0;
}

.problems__title-main {
    display: block;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #333333;
}

.problems__title-sub {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
}

.problems__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.problem-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #E0E0E0;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    transition: all 0.3s ease;
}

.problem-card--critical::before {
    background: #078E00;
}

.problem-card--warning::before {
    background: #08B000;
}

.problem-card--danger::before {
    background: #056C00;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: #078E00;
}

.problem-card__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
    gap: 16px;
}

.problem-card__icon {
    width: 95%;
    height: 150px;
    max-width: 350px;
    background: linear-gradient(135deg, #E6EDE5, #FFFFFF);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.problem-card__img {
    width: 80%;
    height: 110px;
    object-fit: contain;
}

.problem-card__urgency {
    background: #078E00;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.problem-card--warning .problem-card__urgency {
    background: #08B000;
}

.problem-card--danger .problem-card__urgency {
    background: #056C00;
}

.problem-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333333;
}

.problem-card__symptoms {
    margin-bottom: 20px;
}

.problem-card__symptom {
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 8px;
    padding-left: 4px;
}

.problem-card__consequence {
    background: #F8F9FA;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid #078E00;
}

.problem-card--warning .problem-card__consequence {
    border-left-color: #08B000;
}

.problem-card--danger .problem-card__consequence {
    border-left-color: #056C00;
}

.problem-card__consequence-label {
    display: block;
    font-size: 12px;
    color: #999999;
    margin-bottom: 4px;
}

.problem-card__consequence-text {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #078E00;
}

.problem-card--warning .problem-card__consequence-text {
    color: #08B000;
}

.problem-card--danger .problem-card__consequence-text {
    color: #056C00;
}

.problems__question {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: #078E00;
    margin-top: 32px;
}

/* ===== 私たちのソリューション ===== */
.solution {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.solution__diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
}

.solution__circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: linear-gradient(135deg, #056C00 0%, #08B000 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(5, 108, 0, 0.3);
}

.solution__circle-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.solution__circle-sub {
    font-size: 14px;
    line-height: 1.4;
}

.solution__plus {
    font-size: 48px;
    font-weight: 700;
    color: #056C00;
}

.solution__description {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 24px;
    color: #333333;
}

.solution__goal {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #D70308;
    margin-top: 40px;
    line-height: 1.4;
}

/* ===== レスポンシブ対応（追加分） ===== */
@media (max-width: 1023px) {
    .service-merit__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .problems__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution__diagram {
        flex-direction: column;
        gap: 24px;
    }
    
    .solution__circle {
        width: 180px;
        height: 180px;
    }
    
    .solution__plus {
        font-size: 36px;
        transform: rotate(90deg);
    }
}

@media (max-width: 767px) {
    .service-merit {
        padding: 60px 0;
    }
    
    .service-merit__text {
        padding: 24px;
    }
    
    .service-merit__description {
        font-size: 16px;
    }
    
    .problems {
        padding: 40px 0 10px 0;
    }
    
    .problems__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .problem-card {
        padding: 24px;
    }
    
    .problems__question {
        font-size: 18px;
    }
    
    .solution {
        padding: 50px 0;
    }
    
    .solution__circle {
        width: 170px;
        height: 170px;
    }
    
    .solution__circle-title {
        font-size: 16px;
        letter-spacing: 0.07em;
        line-height: 1.2;
    }
    
    .solution__circle-sub {
        font-size: 12px;
    }
    
    .solution__description {
        font-size: 16px;
    }
    
    .solution__goal {
        font-size: 24px;
    }
}

/* ===== ご利用事例 ===== */
.case-studies {
    padding: 120px 0;
    background-color: #F5F5F5;
}

.case-studies__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.case-study {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-study::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2D5F3F, #4CAF50);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 95, 63, 0.15);
}

.case-study:hover::before {
    transform: scaleX(1);
}

.case-study__header {
    margin-bottom: 24px;
}

.case-study__title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}

.case-study__tags {
    display: flex;
    gap: 8px;
}

.case-study__tag {
    background-color: #056C00;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.case-study__content {
    margin-bottom: 24px;
}

.case-study__subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}

.case-study__list {
    list-style: none;
    margin-bottom: 20px;
}

.case-study__list li {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.case-study__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #056C00;
    font-weight: 700;
}

.case-study__quote {
    background-color: #F8F9FA;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #078E00;
}

.case-study__quote-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    font-style: italic;
    margin-bottom: 8px;
}

.case-study__quote-author {
    font-size: 12px;
    color: #666666;
    text-align: right;
}

/* ===== 料金比較 ===== */
.pricing-comparison {
    padding: 120px 0;
    background: linear-gradient(135deg, #E6EDE5 0%, #FFFFFF 100%);
}

.pricing-comparison__subtitle {
    text-align: center;
    font-size: 18px;
    color: #666666;
    margin-bottom: 48px;
}

.pricing-table {
    overflow-x: auto;
    overflow-y: visible;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
    height: auto;
}

.pricing-table__table {
    width: 100%;
    min-width: 700px;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #FFFFFF;
    height: auto;
    max-height: none;
}

.pricing-table__header {
    background-color: #F8F9FA;
    padding: 24px 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    border-bottom: 3px solid #E0E0E0;
    position: relative;
}

.pricing-table__header:first-child {
    border-radius: 16px 0 0 0;
}

.pricing-table__header:last-child {
    border-radius: 0 16px 0 0;
}

.pricing-table__header--highlight {
    background: linear-gradient(135deg, #078E00, #08B000);
    color: #FFFFFF;
    position: relative;
    border-bottom-color: #078E00;
}

.pricing-table__header--highlight::after {
    display: none;
    background-color: #078E00;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(7, 142, 0, 0.3);
}

.pricing-table__cell {
    padding: 20px;
    text-align: center;
    font-size: 15px;
    border-bottom: 1px solid #E0E0E0;
    color: #666666;
}

.pricing-table__cell--label {
    background-color: #F8F9FA;
    font-weight: 700;
    color: #333333;
    text-align: left;
    padding-left: 20px;
    font-size: 15px;
    width: 20%;
    max-width: 160px;
}

.pricing-table__cell--highlight {
    background-color: #F0F8F0;
    font-weight: 600;
    color: #056C00;
}

.pricing-table__table tr:last-child .pricing-table__cell:first-child {
    border-radius: 0 0 0 16px;
}

.pricing-table__table tr:last-child .pricing-table__cell:last-child {
    border-radius: 0 0 16px 0;
}

.pricing-table__table tr:last-child .pricing-table__cell {
    border-bottom: none;
}

/* ===== レスポンシブ対応（追加分） ===== */
@media (max-width: 1023px) {
    .case-studies__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .case-study {
        padding: 28px 24px;
    }
    
    .case-study__title {
        font-size: 18px;
    }
    
    .pricing-comparison {
        padding: 80px 0;
    }
    
    .pricing-comparison__subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .flow__steps {
        flex-direction: column;
        gap: 50px;
    }
    
    .flow__steps::before {
        left: 40px;
        top: 100px;
        bottom: 100px;
    }
    
    .flow__step-number {
        left: 24px;
        top: 24px;
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .flow__step:not(:last-child)::after {
        left: 40px;
        bottom: -30px;
        font-size: 20px;
        width: 28px;
        height: 28px;
    }
    
    
    .flow__step {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    /* 事例セクション（モバイル） */
    .case-studies {
        padding: 60px 0;
    }
    
    .case-studies__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-study {
        padding: 24px 20px;
    }
    
    .case-study__title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .case-study__tags {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .case-study__tag {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .case-study__subtitle {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .case-study__list li {
        font-size: 13px;
        margin-bottom: 6px;
        padding-left: 14px;
    }
    
    .case-study__quote {
        padding: 12px;
        margin-top: 16px;
    }
    
    .case-study__quote-text {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 6px;
    }
    
    .case-study__quote-author {
        font-size: 11px;
    }
    
    /* 料金比較（モバイル） */
    .pricing-comparison {
        padding: 80px 0;
    }
    
    .pricing-comparison__subtitle {
        font-size: 17px;
        margin-bottom: 40px;
        line-height: 1.6;
    }
    
    .pricing-table {
        border-radius: 12px;
        margin: 0 16px;
        position: relative;
    }
    
    .pricing-table::after {
        content: '← スワイプして比較 →';
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 13px;
        color: #078E00;
        font-weight: 600;
        white-space: nowrap;
        z-index: 10;
    }
    
    .pricing-table__header {
        padding: 18px 8px;
        font-size: 16px;
    }
    
    .pricing-table__header:first-child {
        border-radius: 12px 0 0 0;
    }
    
    .pricing-table__header:last-child {
        border-radius: 0 12px 0 0;
    }
    
    .pricing-table__header--highlight::after {
        top: -10px;
        right: 8px;
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .pricing-table__cell {
        padding: 16px 12px;
        font-size: 15px;
    }
    
    .pricing-table__cell--label {
        font-size: 14px;
        padding-left: 14px;
        width: 25%;
        max-width: 120px;
    }
    
    .pricing-table__table tr:last-child .pricing-table__cell:first-child {
        border-radius: 0 0 0 12px;
    }
    
    .pricing-table__table tr:last-child .pricing-table__cell:last-child {
        border-radius: 0 0 12px 0;
    }
    
    /* フロー（モバイル） */
    .flow {
        padding: 60px 0;
    }
    
    .flow__step {
        max-width: 100%;
        min-height: 140px;
        padding: 20px 16px;
    }
    
    .flow__step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .flow__step-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .flow__step-description {
        font-size: 12px;
        line-height: 1.5;
    }
    
    
    /* FAQ（モバイル） */
    .faq {
        padding: 60px 0;
    }
    
    .faq__question {
        padding: 16px 0;
    }
    
    .faq__question-text {
        font-size: 15px;
        margin-right: 8px;
        line-height: 1.4;
    }
    
    .faq__icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .faq__answer.active {
        max-height: 300px;
        padding: 0 0 16px 0;
    }
    
    .faq__answer p {
        font-size: 13px;
        line-height: 1.6;
        padding: 16px 12px;
        border-left: 3px solid #078E00;
    }
    
    /* フォーム（モバイル） */
    .contact-form {
        padding: 60px 0;
    }
    
    .contact-form__subtitle {
        font-size: 15px;
        margin-bottom: 32px;
        line-height: 1.6;
    }
    
    .contact-form__form {
        padding: 24px 20px;
        border-radius: 12px;
    }
    
    .contact-form__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .contact-form__label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .contact-form__input,
    .contact-form__select,
    .contact-form__textarea {
        padding: 10px 12px;
        font-size: 15px;
        border-radius: 6px;
    }
    
    .contact-form__textarea {
        min-height: 100px;
    }
    
    .contact-form__checkbox {
        font-size: 13px;
        gap: 8px;
    }
    
    .contact-form__checkmark {
        width: 18px;
        height: 18px;
    }
    
    .contact-form__btn {
        min-width: 180px;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .contact-form__note {
        font-size: 13px;
    }
    
    /* フォーム成功メッセージ（モバイル） */
    .form-success {
        padding: 32px 20px;
        border-radius: 12px;
    }
    
    .form-success__title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .form-success__message {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* フッター（モバイル） */
    .footer {
        padding: 40px 0 16px;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 24px;
    }
    
    .footer__logo {
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .footer__logo-img {
        height: 28px;
    }
    
    .footer__logo-text {
        font-size: 16px;
    }
    
    .footer__description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .footer__phone a {
        font-size: 16px;
    }
    
    .footer__hours,
    .footer__address {
        font-size: 13px;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer__nav {
        margin-bottom: 24px;
    }
    
    .footer__nav:last-child {
        margin-bottom: 0;
    }
    
    .footer__nav nav {
        gap: 6px;
    }
    
    .footer__nav-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .footer__nav-link {
        font-size: 13px;
    }
    
    .footer__copyright {
        font-size: 12px;
    }
}

/* ===== 超小型デバイス対応 ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    /* ヒーロー（超小型） */
    .hero__left {
        padding: 15px;
    }
    
    .hero__tag {
        font-size: 22px;
    }
    
    .hero__title {
        font-size: 22px;
    }
    
    .hero__text p {
        font-size: 14px;
    }
    
    .hero__badges {
        height: 280px;
    }
    
    .hero__badge-image {
        width: 150px;
        height: 150px;
        min-width: 150px;
        min-height: 150px;
    }
    
    .hero__badge-image:nth-child(1) {
        left: 5px;
    }
    
    .hero__badge-image:nth-child(2) {
        right: 5px;
    }
    
    /* 料金表（超小型の可読性向上） */
    .pricing-table__header {
        padding: 20px 8px;
        font-size: 17px;
    }
    .pricing-table__cell {
        padding: 18px 12px;
        font-size: 16px;
    }
    
    .main-title {
        font-size: 22px;
        margin-bottom: 40px;
        padding: 0 5px;
    }

    .card {
        padding: 30px 15px 25px;
        margin: 20px 5px 5px;
        border-radius: 12px;
    }

    .card-number {
        width: 36px;
        height: 36px;
        font-size: 18px;
        top: -18px;
        left: 50%;
        transform: translateX(-50%);
    }

    .icon-circle {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .icon-circle svg {
        width: 35px;
        height: 35px;
        fill: #FFFFFF;
    }

    .card-title {
        font-size: 17px;
        margin-bottom: 18px;
    }

    .check-title {
        font-size: 14px;
    }

    .check-description {
        font-size: 12px;
    }

    .check-item {
        margin-bottom: 14px;
    }

    .check-icon {
        width: 18px;
        height: 18px;
    }
    
    /* ヘッダー（超小型） */
    .header {
        height: 56px;
    }
    
    .header__logo {
        gap: 6px;
    }
    
    .header__logo-img {
        height: 28px;
    }
    
    .header__logo-text {
        font-size: 12px;
    }
    
    .header__cta {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* ヒーロー（超小型） */
    .hero {
        padding: 0;
        margin-top: 56px;
        min-height: auto;
        height: auto;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
    }
    
    /* 超小型でも画像を最初に表示 */
    .hero__image {
        order: 1;
        margin-bottom: 20px;
    }
    
    .hero__content {
        order: 2;
        padding-right: 0;
    }
    
    .hero__tags {
        margin-bottom: 20px;
    }
    
    .hero__tag {
        font-size: 14px;
        padding: 10px 16px;
        margin-bottom: 8px;
    }
    
    .hero__tag--secondary {
        font-size: 16px;
        padding: 12px 16px;
    }
    
    .hero__description {
        font-size: 13px;
        margin-bottom: 24px;
        text-align: center;
    }
    
    .hero__badges {
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero__badge {
        width: 80px;
        height: 80px;
        border-width: 2px;
    }
    
    .hero__badge-label {
        font-size: 10px;
    }
    
    .hero__badge-sub {
        font-size: 9px;
    }
    
    .hero__badge-number {
        font-size: 16px;
    }
    
    .hero__badge-unit {
        font-size: 9px;
    }
    
    .hero__badge {
        width: 80px;
        height: 80px;
    }
    
    .hero__badge-number {
        font-size: 14px;
    }
    
    .hero__badge-label {
        font-size: 10px;
    }
    
    .hero__badge-sub {
        font-size: 8px;
    }
    
    /* セクションタイトル（超小型） */
    .section__title {
        font-size: 20px;
        margin-bottom: 24px;
        padding-bottom: 12px;
    }
    
    .section__title::after {
        width: 50px;
        height: 2px;
    }
    
    /* ボタン（超小型） */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* 各セクション（超小型） */
    .reasons,
    .service-merit,
    .problems,
    .solution,
    .case-studies,
    .pricing-comparison,
    .flow,
    .faq,
    .contact-form {
        padding: 50px 0;
    }
    
    .cta-block {
        padding: 30px 0;
    }
    
    /* カード（超小型） */
    .reason-card,
    .problem-card,
    .case-study,
    .flow__step {
        padding: 20px 16px;
    }
    
    /* テキストサイズ調整 */
    .reason-card__title,
    .problem-card__title,
    .case-study__title {
        font-size: 15px;
    }
    
    .reason-card__description,
    .problem-card__description {
        font-size: 13px;
    }
    
    /* フォーム（超小型） */
    .contact-form__form {
        padding: 20px 16px;
    }
    
    .contact-form__input,
    .contact-form__select,
    .contact-form__textarea {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .contact-form__btn {
        min-width: 160px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* 料金比較（超小型） */
    .pricing-comparison {
        padding: 70px 0;
    }
    
    .pricing-comparison__subtitle {
        margin-bottom: 35px;
    }
    
    /* 料金表（超小型） */
    .pricing-table {
        margin: 0 8px;
        border-radius: 8px;
        position: relative;
    }
    
    .pricing-table::after {
        content: '← スワイプ →';
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 12px;
        color: #078E00;
        font-weight: 600;
        white-space: nowrap;
        z-index: 10;
    }
    
    .pricing-table__header:first-child {
        border-radius: 8px 0 0 0;
    }
    
    .pricing-table__header:last-child {
        border-radius: 0 8px 0 0;
    }
    
    .pricing-table__header--highlight::after {
        top: -8px;
        right: 4px;
        padding: 3px 6px;
        font-size: 9px;
    }
    
    .pricing-table__cell {
        padding: 10px 6px;
        font-size: 11px;
    }
    
    .pricing-table__cell--label {
        font-size: 11px;
        padding-left: 10px;
        width: 28%;
        max-width: 100px;
    }
    
    .pricing-table__table tr:last-child .pricing-table__cell:first-child {
        border-radius: 0 0 0 8px;
    }
    
    .pricing-table__table tr:last-child .pricing-table__cell:last-child {
        border-radius: 0 0 8px 0;
    }
    
    /* FAQ（超小型） */
    .faq__question-text {
        font-size: 14px;
    }
    
    .faq__icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    
    .faq__answer p {
        font-size: 12px;
        padding: 12px 10px;
    }
    
    /* フッター（超小型） */
    .footer {
        padding: 30px 0 12px;
    }
    
    .footer__description {
        font-size: 13px;
    }
    
    .footer__phone a {
        font-size: 15px;
    }
    
    .footer__hours,
    .footer__address {
        font-size: 12px;
    }
    
    .footer__nav-title {
        font-size: 15px;
    }
    
    .footer__nav-link {
        font-size: 12px;
    }
    
    .footer__copyright {
        font-size: 11px;
    }
}

/* ===== ご利用の流れ ===== */
.flow {
    padding: 120px 0;
    background: linear-gradient(135deg, #E6EDE5 0%, #FFFFFF 100%);
    position: relative;
}

.flow__steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.flow__steps::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 120px;
    bottom: 120px;
    width: 4px;
    background: linear-gradient(180deg, #078E00 0%, #08B000 50%, #078E00 100%);
    border-radius: 2px;
    z-index: 1;
    opacity: 0;
    animation: fadeInLine 1.2s ease-out 0.3s forwards;
}


.flow__step {
    padding: 0;
    position: relative;
    margin-bottom: 40px;
    z-index: 1;
    display: flex;
    align-items: flex-start;
}

.flow__step:not(:last-child)::after {
    display: none;
}

.flow__step-number {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #078E00, #08B000);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.flow__step-content {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px 20px 20px 70px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 120px;
    min-height: 120px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.flow__step-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flow__step-icon {
    width: 60px;
    height: 60px;
    background: #F8F9FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow__step-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.flow__step-title {
    font-size: 18px;
    font-weight: 700;
    color: #078E00;
    margin-bottom: 8px;
    line-height: 1.3;
}

.flow__step-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    text-align: left;
}


/* ===== よくある質問 ===== */
.faq {
    padding: 120px 0;
    background-color: #FFFFFF;
}

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

.faq__item {
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 16px;
}

.faq__question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq__question:hover {
    color: #056C00;
}

.faq__question-text {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    line-height: 1.5;
    flex: 1;
    margin-right: 16px;
}

.faq__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #E6EDE5;
    color: #078E00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq__question.active .faq__icon {
    background-color: #078E00;
    color: #FFFFFF;
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 0 0 0;
}

.faq__answer.active {
    max-height: 200px;
    padding: 0 0 24px 0;
}

.faq__answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    background-color: #F8F9FA;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #078E00;
}

/* ===== iPad版対応（768px〜1024px） ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    .flow {
        padding: 80px 0 !important;
    }
    
    .flow__steps {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
        max-width: 700px !important;
        margin: 0 auto !important;
        position: relative !important;
    }
    
    .flow__steps::before {
        content: '' !important;
        position: absolute !important;
        left: 40px !important;
        width: 3px !important;
        top: 50px !important;
        bottom: 50px !important;
        background: linear-gradient(180deg, #078E00 0%, #08B000 100%) !important;
        z-index: 0 !important;
        border-radius: 2px !important;
        opacity: 0 !important;
        animation: fadeInLine 1.2s ease-out 0.3s forwards !important;
    }
    
    .flow__step {
        display: flex !important;
        align-items: flex-start !important;
        gap: 0 !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 1 !important;
        margin-bottom: 20px !important;
        background: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    
    .flow__step-number {
        position: absolute !important;
        left: 25px !important;
        top: 20px !important;
        width: 32px !important;
        height: 32px !important;
        font-size: 16px !important;
        z-index: 3 !important;
        background: linear-gradient(135deg, #078E00, #08B000) !important;
        color: #FFFFFF !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        font-weight: 700 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    }
    
    .flow__step-content {
        display: flex !important;
        gap: 18px !important;
        align-items: center !important;
        padding: 20px 20px 20px 70px !important;
        background: #FFFFFF !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
        height: 120px !important;
        min-height: 120px !important;
        overflow: hidden !important;
    }
    
    .flow__step-icon {
        width: 70px !important;
        height: 70px !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #F8F9FA !important;
        border-radius: 8px !important;
        margin: 0 !important;
    }
    
    .flow__step-img {
        width: 45px !important;
        height: 45px !important;
        object-fit: contain !important;
    }
    
    .flow__step-text {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        height: 100% !important;
        overflow: hidden !important;
    }
    
    .flow__step-title {
        font-size: 15px !important;
        font-weight: 700 !important;
        color: #078E00 !important;
        margin-bottom: 6px !important;
        line-height: 1.2 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    
    .flow__step-description {
        font-size: 12px !important;
        line-height: 1.4 !important;
        color: #666666 !important;
        margin: 0 !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
    }
}

@media (max-width: 767px) {
    .flow {
        padding: 60px 0;
    }
    
    .flow__steps {
        display: flex;
        flex-direction: column;
        gap: 40px;
        position: relative;
    }
    
    /* モバイル版の流れ線 */
    .flow__steps::before {
        content: '';
        position: absolute;
        left: 35px;
        width: 2px;
        top: 50px;
        bottom: 50px;
        background: linear-gradient(180deg, #078E00 0%, #08B000 100%);
        z-index: 0;
        opacity: 0;
        animation: fadeInLine 1.2s ease-out 0.3s forwards;
    }
    
    .flow__step {
        padding: 0;
        position: relative;
        margin-bottom: 30px;
        z-index: 1;
        display: flex;
        align-items: flex-start;
    }
    
    .flow__step-number {
        position: absolute;
        left: 20px;
        top: 20px;
        width: 32px;
        height: 32px;
        font-size: 16px;
        z-index: 3;
        background: linear-gradient(135deg, #078E00, #08B000);
        color: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .flow__step-content {
        display: flex;
        gap: 16px;
        align-items: center;
        padding: 20px 20px 20px 65px;
        background: #FFFFFF;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        height: 120px;
        min-height: 120px;
        position: relative;
        z-index: 2;
        width: 100%;
    }
    
    .flow__step-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #F8F9FA;
        border-radius: 50%;
    }
    
    .flow__step-img {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }
    
    .flow__step-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .flow__step-title {
        font-size: 15px;
        margin-bottom: 6px;
        font-weight: 700;
        color: #078E00;
        line-height: 1.3;
    }
    
    .flow__step-description {
        font-size: 13px;
        line-height: 1.5;
        color: #666666;
        margin: 0;
    }
    
    /* モバイル版の矢印を削除 */
    .flow__step:not(:last-child)::after {
        display: none;
    }
    
    .faq {
        padding: 60px 0;
    }
    
    .faq__question {
        padding: 20px 0;
    }
    
    .faq__question-text {
        font-size: 16px;
        margin-right: 12px;
    }
    
    .faq__icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .faq__answer p {
        font-size: 14px;
        padding: 16px;
    }
}

/* ===== 問い合わせフォーム ===== */
.contact-form {
    padding: 120px 0;
    background-color: #F5F5F5;
}

.contact-form__subtitle {
    text-align: center;
    font-size: 18px;
    color: #666666;
    margin-bottom: 48px;
}

.contact-form__form {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-form__field--full {
    grid-column: 1 / -1;
}

.contact-form__label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.contact-form__required {
    color: #D90000;
    font-weight: 700;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: #056C00;
    box-shadow: 0 0 0 3px rgba(45, 95, 63, 0.1);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__privacy {
    margin-bottom: 32px;
}

.contact-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
}

.contact-form__checkbox input[type="checkbox"] {
    display: none;
}

.contact-form__checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #E0E0E0;
    border-radius: 4px;
    background-color: #FFFFFF;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-form__checkbox input[type="checkbox"]:checked + .contact-form__checkmark {
    background-color: #056C00;
    border-color: #056C00;
}

.contact-form__checkbox input[type="checkbox"]:checked + .contact-form__checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
}

.contact-form__privacy-link {
    color: #056C00;
    text-decoration: underline;
}

.contact-form__privacy-link:hover {
    color: #078E00;
}

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

.contact-form__btn {
    margin-bottom: 16px;
    min-width: 200px;
    background: #D70308;
    color: #FFFFFF;
}

.contact-form__btn:hover {
    background: #B00206;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(215, 3, 8, 0.4);
}

.contact-form__note {
    font-size: 14px;
    color: #666666;
}

/* フォームエラー表示 */
.contact-form__input.error,
.contact-form__select.error,
.contact-form__textarea.error {
    border-color: #D90000;
    box-shadow: 0 0 0 3px rgba(217, 0, 0, 0.1);
}

/* フォーム成功メッセージ */
.form-success {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid #078E00;
}

.form-success__title {
    font-size: 24px;
    font-weight: 700;
    color: #056C00;
    margin-bottom: 16px;
}

.form-success__message {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

/* ===== フォームメッセージ（新） ===== */
.form-message {
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

.form-message.success {
    background: linear-gradient(135deg, #E8F5E8 0%, #F0F9F0 100%);
    border-left: 4px solid #078E00;
}

.form-message.error {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEF7F7 100%);
    border-left: 4px solid #DC2626;
}

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

.form-message__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.form-message.success .form-message__title {
    color: #078E00;
}

.form-message.error .form-message__title {
    color: #DC2626;
}

.form-message__text {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

/* フィールドエラー */
.error-message {
    color: #DC2626;
    font-size: 14px;
    margin-top: 4px;
    display: block;
}

input.error,
select.error,
textarea.error {
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* 個人情報保護方針同意 */
.contact-form__privacy {
    background: #F8F9FA;
    border: 1px solid #E9ECEF;
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
}

.contact-form__privacy-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin-bottom: 12px;
}

.contact-form__privacy-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #DC2626;
}

.contact-form__privacy-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
}

.contact-form__privacy-link {
    color: #DC2626;
    text-decoration: underline;
    font-weight: 600;
}

.contact-form__privacy-link:hover {
    color: #B91C1C;
    text-decoration: none;
}

.contact-form__privacy-note {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
    padding-left: 30px;
}

/* チェックボックスエラー状態 */
.contact-form__privacy-checkbox.error {
    outline: 2px solid #DC2626;
    outline-offset: 2px;
}

/* モバイル対応 */
@media (max-width: 767px) {
    .form-message {
        padding: 20px;
        margin-bottom: 24px;
    }
    
    .form-message__title {
        font-size: 18px;
    }
    
    .form-message__text {
        font-size: 14px;
    }
    
    .contact-form__privacy {
        padding: 16px;
    }
    
    .contact-form__privacy-text {
        font-size: 14px;
    }
    
    .contact-form__privacy-note {
        font-size: 13px;
        padding-left: 26px;
    }
}

/* ===== プライバシーポリシー ===== */
.privacy-policy {
    padding: 120px 0 60px;
    background: #FFFFFF;
}

.privacy-policy__content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-policy__title {
    font-size: 36px;
    font-weight: 700;
    color: #056C00;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
}

.privacy-policy__updated {
    text-align: center;
    color: #666666;
    font-size: 14px;
    margin-bottom: 48px;
}

.privacy-policy__section {
    margin-bottom: 40px;
}

.privacy-policy__section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #056C00;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E6EDE5;
}

.privacy-policy__section p {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 16px;
}

.privacy-policy__section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.privacy-policy__section li {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 8px;
}

.privacy-policy__contact {
    background: #F8F9FA;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #078E00;
}

.privacy-policy__contact p {
    margin-bottom: 8px;
}

.privacy-policy__contact a {
    color: #078E00;
    text-decoration: none;
}

.privacy-policy__contact a:hover {
    text-decoration: underline;
}

.privacy-policy__back {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #E6EDE5;
}

/* プライバシーポリシー（モバイル） */
@media (max-width: 767px) {
    .privacy-policy {
        padding: 80px 0 40px;
    }
    
    .privacy-policy__title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .privacy-policy__updated {
        margin-bottom: 32px;
    }
    
    .privacy-policy__section {
        margin-bottom: 32px;
    }
    
    .privacy-policy__section h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .privacy-policy__section p,
    .privacy-policy__section li {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .privacy-policy__contact {
        padding: 20px;
    }
    
    .privacy-policy__back {
        margin-top: 32px;
        padding-top: 24px;
    }
}

/* ===== フッター ===== */
.footer {
    background-color: #333333;
    color: #FFFFFF;
    padding: 60px 0 20px;
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer__logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer__logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.footer__description {
    font-size: 16px;
    line-height: 1.8;
    color: #CCCCCC;
    margin-bottom: 24px;
}

.footer__contact {
    font-size: 14px;
    line-height: 1.6;
}

.footer__info-item {
    margin-bottom: 20px;
}

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

.footer__info-item strong {
    display: block;
    color: #078E00;
    font-size: 13px;
    margin-bottom: 6px;
    font-weight: 700;
}

.footer__info-item p {
    margin: 0;
    line-height: 1.8;
}

.footer__info-item a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__info-item a:hover {
    color: #078E00;
}

.footer__phone a {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.footer__phone a:hover {
    color: #078E00;
}

.footer__hours {
    color: #CCCCCC;
    margin: 8px 0;
}

.footer__address {
    color: #CCCCCC;
}

.footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer__nav {
    margin-bottom: 32px;
}

.footer__nav:last-child {
    margin-bottom: 0;
}

.footer__nav nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__nav-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.footer__nav-list {
    list-style: none;
}

.footer__nav-list li {
    margin-bottom: 8px;
}

.footer__nav-link {
    color: #CCCCCC;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: #078E00;
}

.footer__bottom {
    border-top: 1px solid #555555;
    padding-top: 20px;
    text-align: center;
}

.footer__copyright {
    font-size: 14px;
    color: #CCCCCC;
}

/* ===== レスポンシブ対応（フォーム・フッター） ===== */
@media (max-width: 1023px) {
    .contact-form__form {
        padding: 32px;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__links {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .contact-form {
        padding: 60px 0;
    }
    
    .contact-form__form {
        padding: 24px;
    }
    
    .contact-form__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer__content {
        gap: 30px;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ===== 375px以下（iPhone SE等） ===== */
@media (max-width: 375px) {
    /* ヒーロー（極小） */
    .hero__tag {
        font-size: 20px;
    }
    
    .hero__title {
        font-size: 20px;
    }
    
    .hero__text p {
        font-size: 13px;
    }
    
    .hero__badges {
        height: 260px;
    }
    
    .hero__badge-image {
        width: 140px;
        height: 140px;
        min-width: 140px;
        min-height: 140px;
    }
    
    .hero__badge-image:nth-child(1) {
        left: 0;
    }
    
    .hero__badge-image:nth-child(2) {
        right: 0;
    }
}
