/* ======= 共通スタイル ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

body {
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* メインコンテナ - 最大幅1280px固定 */
.main-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    overflow: hidden;
    /* はみ出し防止 */
}

/* スクロール可能なコンテナ */
.scroll-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    /* iOSのスムーズスクロール */
    scrollbar-width: none;
    /* Firefox用 */
    -ms-overflow-style: none;
    /* IE/Edge用 */
}

/* スクロールバーを非表示に */
.scroll-container::-webkit-scrollbar {
    display: none;
}

/* スクロールヒントのカスタマイズ */
.scroll-hint-icon-white {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.scroll-hint-icon-white .scroll-hint-text {
    font-size: 14px;
    color: #333;
}

/* 製品カードのコンテナ */
.products-wrapper {
    display: inline-flex;
    gap: 20px;
    padding: 0 20px;
}

/* 製品カード - PCではより大きく設定 */
.product-card-campaign {
    width: 800px;
    /* PCではカードをより大きく表示 */
    min-width: 800px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    white-space: normal;
    height: 550px;
    display: inline-block;
    vertical-align: top;
}

.hitachi-card {
    background-color: #fff5f8;
    /* 薄いピンク */
    border: 3px solid #ff80ab;
    /* ピンクの枠線 */
}

/* 背景のプレースホルダー */
.background-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fce4ec;
    /* 薄いピンク */
    z-index: 0;
}

/* 補助金バッジ */
.subsidy-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background-color: #ff4081;
    /* ピンク */
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 18px;
    border-radius: 0 0 10px 10px;
    z-index: 2;
}

/* ブランドセクション */
.brand-section {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.brand-name {
    font-size: 40px;
    font-weight: bold;
    color: #333;
}

.brand-slogan {
    font-size: 20px;
    color: #333;
    font-style: italic;
}

.model-number {
    font-size: 54px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
    letter-spacing: -1px;
}

/* 特徴タグ */
.feature-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    max-width: 350px;
}

.feature-tag {
    border: 2px solid #ff4081;
    /* ピンク */
    border-radius: 30px;
    padding: 8px 15px;
    font-size: 18px;
    text-align: center;
    background-color: white;
    color: #ff4081;
}

/* 工事・撤去費用 */
.construction-cost {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 1;
    text-align: center;
}

.cost-label {
    font-size: 18px;
    color: #333;
    background-color: white;
    border-radius: 20px;
    padding: 5px 10px;
    display: inline-block;
    margin-bottom: 5px;
}

.komikomi {
    font-size: 40px;
    font-weight: bold;
    color: #ff4081;
    /* ピンク */
    text-shadow: 1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white;
    line-height: 1;
}

.provide-text {
    font-size: 18px;
    color: #333;
}

/* 価格セクション */
.price-section {
    positio: absolute;
    top: 50px;
    right: 30px;
    widt: 360px;
    z-index: 1;
}

.price-row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.price-label {
    font-size: 16px;
    color: #333;
    margin-right: 15px;
    white-space: nowrap;
}

.special-label {
    display: inline-block;
    background-color: #26c6da;
    /* 水色 */
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.campaign-label {
    display: inline-block;
    background-color: #ff4081;
    /* ピンク */
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.final-label {
    display: inline-block;
    background-color: #ff5722;
    /* オレンジ */
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.price-value {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    position: relative;
}

.original .price-value {
    font-size: 30px;
    text-decoration: line-through;
    color: #666;
}

.special-value {
    font-size: 36px;
    color: #26c6da;
    /* 水色 */
    text-shadow: 1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white;
}

.campaign-value {
    font-size: 40px;
    color: #ff4081;
    /* ピンク */
    text-shadow: 1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white;
}

.final-value {
    font-size: 48px;
    color: #ff5722;
    /* オレンジ */
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.tax {
    font-size: 16px;
    vertical-align: middle;
    font-weight: normal;
}

/* 矢印 */
.arrow-down {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #ffa726;
    /* オレンジ色の矢印 */
    position: absolute;
    right: 150px;
    bottom: -25px;
    z-index: 2;
}

/* 製品情報 */
.product-info {
    position: absolute;
    top: 140px;
    right: 30px;
    z-index: 1;
    text-align: center;
    width: 230px;
}

.new-model {
    font-size: 32px;
    font-weight: bold;
    color: #ffc107;
    /* 金色 */
    text-shadow: 1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white;
    margin-bottom: 10px;
}

.warranty {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.warranty-text {
    color: #333;
    font-size: 18px;
}

.warranty-years {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    position: relative;
}

.warranty-years::before,
.warranty-years::after {
    content: '';
    position: absolute;
    width: 45px;
    height: 35px;
    background-color: #ffc107;
    /* 金色 */
    opacity: 0.6;
    border-radius: 50% 50% 0 0;
    z-index: -1;
}

.warranty-years::before {
    top: -10px;
    left: -20px;
    transform: rotate(-30deg);
}

.warranty-years::after {
    top: -10px;
    right: -20px;
    transform: rotate(30deg);
}

.warranty-years span {
    font-size: 20px;
    vertical-align: middle;
}

.product-image {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 20px auto;
}

/* 桜の背景プレースホルダー */
.sakura-placeholder {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 192, 203, 0.3);
    /* 薄いピンク（透明度あり） */
    border-radius: 50%;
    z-index: 0;
}

/* ナビゲーション矢印 */
.nav-arrows {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    margin-bottom: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    user-select: none;
}

.nav-arrow:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

/* レスポンシブデザイン */
@media (max-width: 1280px) {
    .main-container {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .product-card {
        width: 750px;
        min-width: 750px;
    }

    .price-section {
        width: 340px;
    }
}

@media (max-width: 1100px) {
    .product-card {
        width: 700px;
        min-width: 700px;
    }

    .price-section {
        width: 320px;
    }

    .final-value {
        font-size: 44px;
    }
}

@media (max-width: 1000px) {
    .product-card {
        width: 650px;
        min-width: 650px;
    }

    .price-section {
        width: 300px;
    }

    .model-number {
        font-size: 48px;
    }
}

@media (max-width: 900px) {
    .product-card {
        width: 600px;
        min-width: 600px;
    }

    .price-section {
        width: 280px;
    }

    .model-number {
        font-size: 42px;
    }

    .feature-tags {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .product-card {
        width: 90%;
        min-width: 90%;
        height: 600px;
    }

    .price-section {
        width: 60%;
        right: 15px;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .arrow-down {
        right: 50%;
        bottom: -15px;
    }

    .special-value,
    .campaign-value,
    .final-value {
        font-size: 28px;
    }

    .construction-cost {
        bottom: 30px;
        left: 30px;
    }

    .product-info {
        right: 10px;
        top: 160px;
        width: 150px;
    }

    .new-model {
        font-size: 24px;
    }
}

@media (max-width: 520px) {
    .product-card {
        width: 95%;
        min-width: 95%;
        height: 700px;
    }

    .price-section {
        width: 65%;
    }

    .product-info {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 20px;
        margin-bottom: 20px;
        width: 100%;
    }

    .construction-cost {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
    }

    .feature-tags {
        max-width: 100%;
    }
}

/* ======= セクション: 補助金情報 ======= */
.subsidies2025 {
    width: 100%;
    background-color: #00a550;
    /* Green background */
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.subsidies2025 > div {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.subsidy-box {
    background-color: white;
    border-radius: 15px;
    width: calc(50% - 10px);
    padding: 20px;
    position: relative;
    overflow: hidden;
    min-width: 300px;
}

.point-label {
    position: absolute;
    top: -5px;
    left: -5px;
    background-color: #ffeb3b;
    /* Yellow */
    padding: 5px 15px;
    font-weight: bold;
    transform: rotate(-5deg);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.icon-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon {
    width: 80px;
    margin-right: 20px;
}

.title {
    color: #00a550;
    /* Green text */
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 10px;
}

.highlight {
    color: #f39800;
    /* Orange text */
    font-weight: bold;
}

.note {
    font-size: 12px;
    text-align: right;
    margin-top: 10px;
}

/* ======= セクション: 3つのポイント ======= */
.three-points {
    width: 100%;
    background-color: #ffeb3b;
    /* Yellow background */
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.three-points > div {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.title-small {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.title-large {
    font-size: 48px;
    font-weight: bold;
    color: #ff4081;
    /* Pink color */
    text-shadow: 2px 2px 0 white, -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white;
    -webkit-text-stroke: 2px white;
}

.point-box {
    background-color: white;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.point-number {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background-color: #ff4081;
    /* Pink color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 40px;
    font-weight: bold;
}

.point-content {
    margin-left: 60px;
}

.point-text {
    font-size: 18px;
    margin-bottom: 10px;
}

.point-highlight {
    font-size: 32px;
    font-weight: bold;
    color: #ff4081;
    /* Pink color */
    margin-bottom: 10px;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.google-logo {
    width: 40%;
}

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

.rating-number {
    font-size: 48px;
    font-weight: bold;
    color: #ffc107;
    /* Gold color */
    position: relative;
}

.rating-stars {
    color: #ffc107;
    /* Gold color */
    font-size: 24px;
}

.rating-text {
    font-size: 24px;
    font-weight: bold;
}

.rating-date {
    font-size: 12px;
    color: #666;
}

/* 支払いオプション */
.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.payment-button {
    flex: 1;
    min-width: 100px;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
    color: white;
    font-weight: bold;
}

.cash {
    background-color: #2196f3;
    /* Blue */
}

.bank {
    background-color: #4caf50;
    /* Green */
}

.credit {
    background-color: #ff9800;
    /* Orange */
}

.loan {
    background-color: #ff4081;
    /* Pink */
}

.credit-cards {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.credit-card {
    height: 20px;
}

/* ローンシミュレーション */
.loan-simulation {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.simulation-title {
    background-color: #ff4081;
    /* Pink */
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    width: 60%;
    margin: 0 auto 20px;
}

.simulation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 14px;
    color: #666;
}

.price-number {
    font-size: 24px;
    font-weight: bold;
    color: #ff4081;
    /* Pink */
}

.arrow {
    color: #ff4081;
    /* Pink */
    font-size: 32px;
    font-weight: bold;
}

.payment-terms {
    text-align: center;
    font-weight: bold;
    font-size: 36px;
}

.monthly-payment {
    border: 2px solid #ff4081;
    /* Pink */
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    position: relative;
}

.monthly-label {
    font-size: 18px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffeb3b;
    /* Yellow */
    padding: 0 10px;
}

.monthly-amount {
    font-size: 36px;
    font-weight: bold;
    color: #ff4081;
    /* Pink */
}

.monthly-note {
    font-size: 12px;
    color: #666;
    text-align: right;
}

.interest-note {
    background-color: #ffeb3b;
    /* Yellow */
    border: 2px solid #ff4081;
    /* Pink */
    padding: 10px;
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
    font-size: 18px;
}

.interest-highlight {
    color: #ff4081;
    /* Pink */
}

.footnotes {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

/* ======= セクション: バナー ======= */
.banner-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1280px;
    margin: 0 auto;
}

/* 365日バナー */
.days365-banner {
    position: relative;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 0 10px rgba(0, 180, 100, 0.2);
}

.days365-banner::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid white;
}

.days365-text {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
}

.days365-orange {
    color: #ff5722;
    /* Orange color */
}

.days365-green {
    color: #00a550;
    /* Green color */
}

/* お問い合わせバナー */
.contact-banner {
    position: relative;
    background-color: #ff5722;
    /* Orange background */
    border-radius: 15px;
    padding: 20px 30px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(255, 87, 34, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-title {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.contact-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.phone-icon {
    width: 50px;
    height: 50px;
    background-color: #ffeb3b;
    /* Yellow */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #ff5722;
}

.number {
    color: white;
    font-size: 42px;
    font-weight: bold;
}

.click-hand {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
}

.click-rings {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border: 2px dashed #ffeb3b;
    /* Yellow */
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.click-rings::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px dashed #ffeb3b;
    /* Yellow */
    border-radius: 50%;
    animation: pulse 2s infinite;
    animation-delay: 0.5s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ======= セクション: 補助金バナー ======= */
.subsidy-banner {
    max-width: 1280px;
    margin: 0 auto;
    background-color: #fff9c4;
    /* Light yellow background */
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* サンバースト背景 */
.subsidy-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-radial-gradient(circle at center, #fff9c4, #fff9c4 10px, #ffee58 10px, #ffee58 20px);
    z-index: -1;
}

.header-bubble {
    background-color: #00a550;
    /* Green */
    color: white;
    text-align: center;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    width: fit-content;
    position: relative;
}

/* 吹き出しポインター */
.header-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #00a550;
}

.main-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #00a550;
    /* Green */
    text-shadow: 3px 3px 0 #ffee58, -1px -1px 0 #ffee58, 1px -1px 0 #ffee58, -1px 1px 0 #ffee58, 1px 1px 0 #ffee58;
    margin-bottom: 20px;
    line-height: 1.3;
}

.amount {
    text-align: center;
    font-size: 48px;
    margin-bottom: 30px;
}

.amount-prefix {
    font-size: 36px;
    font-weight: bold;
    color: #00a550;
    /* Green */
    text-shadow: 2px 2px 0 white;
}

.amount-number {
    font-size: 72px;
    font-weight: bold;
    color: #ffee58;
    /* Yellow */
    text-shadow:
        3px 3px 0 #00a550,
        -1px -1px 0 #00a550,
        1px -1px 0 #00a550,
        -1px 1px 0 #00a550,
        1px 1px 0 #00a550;
    vertical-align: middle;
}

.amount-suffix {
    font-size: 36px;
    font-weight: bold;
    color: #00a550;
    /* Green */
    text-shadow: 2px 2px 0 white;
}

.benefits {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    flex: 1;
    background-color: white;
    border: 3px solid #00a550;
    /* Green */
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    font-weight: bold;
    color: #00a550;
    /* Green */
    font-size: 20px;
    position: relative;
}

/* 吹き出しポインター（下部） */
.benefit-item::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #00a550;
}

.footer {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #ffee58;
    /* Yellow */
    text-shadow:
        3px 3px 0 #00a550,
        -1px -1px 0 #00a550,
        1px -1px 0 #00a550,
        -1px 1px 0 #00a550,
        1px 1px 0 #00a550;
    padding: 10px;
}

/* ======= セクション: 商品紹介 ======= */
.product-banner {
    width: 100%;
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.product-banner .header {
    background: linear-gradient(135deg, #4caf50, #81c784);
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px 15px 0 0;
}

.product-banner .title {
    color: white;
    font-size: 46px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: -20px;
    padding: 0 5%;
}

.logo-box {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 22%;
    min-width: 200px;
    margin: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.logo-box::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

.logo-box::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.logo-placeholder {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    background-color: white;
    padding: 40px 20px;
    min-height: 300px;
}

/* ======= セクション: ダイキン製品 ======= */
.daikin-header {
    background-color: #d5ebd5;
    /* Light green */
    color: #00a550;
    /* Green text */
    padding: 15px 20px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    width: 100%;
    margin-bottom: 20px;
}

.model-header {
    background: linear-gradient(to right, #d4af37, #f5f5dc);
    /* Gold gradient */
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.model-title {
    font-size: 28px;
    color: #222;
    font-weight: normal;
    letter-spacing: 1px;
}

.series-title {
    font-size: 36px;
    color: #222;
    font-weight: bold;
    padding-left: 15px;
    border-left: 2px solid #222;
}

.release-info {
    background-color: #222;
    color: #d4af37;
    /* Gold text */
    text-align: center;
    padding: 15px;
    font-size: 32px;
    letter-spacing: 2px;
    margin: 0;
}

/* ======= セクション: 製品カード ======= */
.products-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-card {
    background-color: white;
    border: 5px solid #00a550;
    /* Green border */
    border-radius: 20px;
    padding: 20px;
    position: relative;
}

.subsidy-badge {
    position: absolute;
    top: -5px;
    right: 40px;
    background-color: #00a550;
    /* Green */
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 18px;
    border-radius: 0 0 10px 10px;
}

.brand-logo {
    width: 180px;
    margin-bottom: 10px;
}

.model-number {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
}

.feature-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    border: 2px solid #00a550;
    /* Green */
    border-radius: 30px;
    padding: 8px 15px;
    font-size: 16px;
    width: fit-content;
    max-width: 350px;
    text-align: center;
}

.price-section {
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    margin-bottom: 5px;
}

.original-price {
    font-size: 24px;
    text-decoration: line-through;
    color: #666;
    margin-bottom: 10px;
    font-weight: bold;
}

.special-price {
    font-size: 36px;
    color: #00a550;
    /* Green */
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    position: relative;
}

.product-card .arrow {
    color: #ff9800;
    /* Orange */
    font-size: 40px;
    margin-left: 10px;
    vertical-align: middle;
}

.final-price {
    font-size: 50px;
    color: #ff5722;
    /* Orange-red */
    font-weight: bold;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    position: relative;
}

.final-price-badge {
    position: absolute;
    right: -15px;
    top: -75px;
    background-color: #f8eb25;
    color: #ff5722;
    font-size: 28px;
    font-weight: bold;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transform: rotate(10deg);
}

.discount-percent {
    font-size: 40px;
    line-height: 1;
}

.final-price-label {
    display: inline-block;
    background-color: #ff5722;
    /* Orange-red */
    color: white;
    padding: 5px 15px;
    font-size: 16px;
    font-weight: bold;
    margin-right: 15px;
}

.new-model-badge {
    position: absolute;
    top: 50px;
    right: 38px;
    background-color: #ff5722;
    /* Orange-red */
    color: white;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 10px;
    text-align: center;
    line-height: 1.2;
}

.warranty {
    position: absolute;
    top: 110px;
    right: 130px;
    text-align: center;
}

.warranty-text {
    color: #333;
    font-size: 14px;
}

.warranty-years {
    font-size: 36px;
    font-weight: bold;
    margin: 5px 0;
    position: relative;
}

.warranty-years::before,
.warranty-years::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 30px;
    background-color: #ffeb3b;
    /* Yellow */
    opacity: 0.5;
    border-radius: 50% 50% 0 0;
}

.warranty-years::before {
    top: -10px;
    left: -20px;
    transform: rotate(-30deg);
}

.warranty-years::after {
    top: -10px;
    right: -20px;
    transform: rotate(30deg);
}

.product-card .product-image {
    position: absolute;
    top: 100px;
    right: 20px;
    width: 200px;
    height: auto;
}

.installation-note {
    background-color: #00a550;
    /* Green */
    color: white;
    text-align: center;
    padding: 10px 15px;
    font-weight: bold;
    margin: 20px 0;
    border-radius: 5px;
}

.contact-button {
    display: block;
    width: 100%;
    background-color: #ff5722;
    /* Orange-red */
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
    background-color: #e64a19;
}

.arrow-icon {
    display: inline-block;
    margin-left: 10px;
}

/* ======= セクション: その他の品番バナー ======= */
.other-models-banner {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background-color: #fff8e1;
    /* Light yellow */
    border-radius: 0;
    padding: 30px 20px;
    overflow: hidden;
    max-width: 1280px;
}

.daikin-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: auto;
}

.contact-bubble {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ff5722;
    /* Orange */
    color: white;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.4;
    padding: 10px;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
}

.contact-bubble::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #ff5722;
    /* Orange */
}

.green-banner {
    background-color: #4caf50;
    /* Green */
    border-radius: 30px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 15px 20px;
    margin: 0 auto 20px;
    width: 90%;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.models-section {
    display: flex;
    justify-content: center;
    margin-left: 180px;
    margin-top: 70px;
}

.model-label {
    font-size: 18px;
    margin-right: 20px;
    font-weight: bold;
}

.model-list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 600px;
}

.model-item {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.bullet {
    width: 8px;
    height: 8px;
    background-color: #000;
    border-radius: 50%;
    margin-right: 10px;
}

.etc-text {
    font-size: 24px;
    margin-left: 20px;
}

.other-models-banner .product-image {
    position: absolute;
    right: 20px;
    bottom: 0;
    width: 300px;
    height: auto;
}

/* ======= レスポンシブデザイン ======= */
@media (max-width: 1280px) {

    .container,
    .subsidies2025 > div,
    .three-points > div,
    .subsidy-banner,
    .product-banner,
    .products-grid,
    .other-models-banner {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 1200px) {

    .special-price,
    .final-price {
        font-size: 32px;
    }

    .final-price-badge {
        width: 80px;
        height: 80px;
        font-size: 20px;
    }

    .discount-percent {
        font-size: 28px;
    }

    .model-number {
        font-size: 32px;
    }
}

@media (max-width: 900px) {
    .logo-container {
        padding: 0 20px;
    }

    .logo-box {
        width: 45%;
        min-width: 150px;
        margin: 10px 5px;
    }
}

@media (max-width: 768px) {

    /* 補助金情報セクション */
    .subsidies2025 {
        flex-direction: column;
    }

    .subsidies2025 > div {
        flex-direction: column;
    }

    .subsidy-box {
        width: 100%;
    }

    /* 3つのポイントセクション */
    .title-large {
        font-size: 36px;
    }

    .point-highlight {
        font-size: 24px;
    }

    .rating-number {
        font-size: 36px;
    }

    .payment-options {
        flex-direction: column;
    }

    .simulation-content {
        flex-direction: column;
        gap: 10px;
    }

    .simulation-content .product-image {
        width: 40%;
    }

    .simulation-content .arrow {
        transform: rotate(90deg);
    }

    /* バナーセクション */
    .banner-container {
        flex-direction: column;
        align-items: center;
    }

    .days365-text {
        font-size: 36px;
    }

    .days365-banner::after {
        right: 50%;
        top: auto;
        bottom: -20px;
        transform: translateX(50%) rotate(90deg);
    }

    .contact-title {
        font-size: 20px;
    }

    .number {
        font-size: 32px;
    }

    /* 補助金バナーセクション */
    .benefits {
        flex-direction: column;
    }

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

    .amount-prefix,
    .amount-suffix {
        font-size: 24px;
    }

    .amount-number {
        font-size: 56px;
    }

    .footer {
        font-size: 28px;
    }

    /* ダイキンセクション */
    .model-title {
        font-size: 20px;
    }

    .series-title {
        font-size: 26px;
    }

    .release-info {
        font-size: 24px;
    }

    /* 製品カードセクション */
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* その他の品番バナーセクション */
    .other-models-banner {
        padding-top: 100px;
        /* Space for logo */
    }

    .daikin-logo {
        width: 150px;
        top: 20px;
    }

    .contact-bubble {
        position: relative;
        left: 0;
        transform: none;
        margin: 0 auto 20px;
        width: 140px;
        height: 140px;
        font-size: 16px;
    }

    .contact-bubble::after {
        display: none;
    }

    .green-banner {
        font-size: 18px;
    }

    .models-section {
        flex-direction: column;
        margin-left: 0;
        margin-top: 20px;
        align-items: center;
    }

    .model-label {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .model-list {
        gap: 20px;
        justify-content: center;
    }

    .other-models-banner .product-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: 200px;
        margin: 20px auto 0;
        display: block;
    }
}

@media (max-width: 600px) {
    .product-banner .title {
        font-size: 36px;
    }

    .logo-container {
        flex-direction: column;
        align-items: center;
    }

    .logo-box {
        width: 80%;
        margin: 15px 0;
    }

    .hitachi-card .model-number {
        font-size: 32px;
    }

    .hitachi-card .feature-tags {
        max-width: 100%;
    }
}

/* ======= 倉庫バナースタイル - インライン化して競合を避ける ======= */
.warehouse-banner-section {
    width: 100%;
    max-width: 1280px;
    margin: 30px auto;
    padding: 0;
}

.warehouse-banner-section * {
    box-sizing: border-box;
}

.warehouse-banner-section .banner-container {
    width: 100%;
    background-color: #fefcf3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    position: relative;
    flex-wrap: nowrap;
}

.warehouse-banner-section .content-area {
    flex: 0 0 65%; /* 左側コンテンツエリアを65%に設定 */
    padding: 20px 25px;
    position: relative;
    min-width: 0;
    height: 400px; /* 高さを調整 */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.warehouse-banner-section .image-area {
    flex: 0 0 35%; /* 右側画像エリアを35%に設定 */
    min-width: 0; /* 最小幅の制限を解除 */
    height: 400px; /* 高さを調整 */
    background-size: cover;
    background-position: center;
    position: relative;
}

.warehouse-banner-section .image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.warehouse-banner-section .equipment-image {
    position: absolute;
    left: 65px;
    top: 109px;
    z-index: 2;
    width: 180px;
    height: auto;
}

.warehouse-banner-section .speech-bubble {
    background-color: #00a550;
    color: white;
    border-radius: 50px;
    padding: 15px 30px 15px 40px;
    position: relative;
    margin-top: 60px;
    margin-bottom: 15px;
    margin-left: 150px;
    z-index: 1;
    width: calc(100% - 80px); /* 吹き出しの幅を調整 */
}

.warehouse-banner-section .speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 180px;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 40px solid #00a550;
}

.warehouse-banner-section .small-text {
    font-size: 30px;
    margin-bottom: 5px;
	text-align: center;
}

.warehouse-banner-section .large-text {
    font-size: 40px;
    font-weight: bold;
    color: #ffee58;
	text-align: center;
}

/* 重要: 横並びの強制指定 */
.warehouse-banner-section .main-display {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin-top: 20px;
    margin-left: 60px; /* 吹き出しに合わせてマージン追加 */
    width: calc(100% - 80px); /* 吹き出しと同じ幅 */
}

.warehouse-banner-section .number-text {
    color: #00a550;
    font-size: 70px; /* 吹き出しに合わせてサイズ調整 */
    font-weight: bold;
    line-height: 1;
    margin: 0;
    margin-right: 20px;
    display: flex;
    align-items: flex-end;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    flex: 0 0 auto !important;
}

.warehouse-banner-section .number-text::after {
    content: '日';
    font-size: 35px; /* 数字に合わせて調整 */
    font-weight: bold;
    color: #00a550;
    margin-left: 8px;
    margin-bottom: 10px;
    display: inline-block;
}

.warehouse-banner-section .service-message {
    font-size: 30px; /* 大きくして存在感を出す */
    font-weight: bold;
    line-height: 1.3;
    flex: 1 1 auto !important;
}

.warehouse-banner-section .orange-colored {
    color: #ff5722;
	font-size: 40px;
}

.warehouse-banner-section .green-colored {
    color: #00a550;
	font-size: 30px;
}

/* レスポンシブデザイン */
@media (max-width: 1280px) {
    .warehouse-banner-section .content-area,
    .warehouse-banner-section .image-area {
        height: 380px;
    }
    
    .warehouse-banner-section .speech-bubble {
        margin-top: 50px;
        width: calc(100% - 220px);
    }
    
    .warehouse-banner-section .main-display {
        width: calc(100% - 70px);
        margin-left: 50px;
    }
    
    .warehouse-banner-section .equipment-image {
        top: 30px;
    }
    
    .warehouse-banner-section .number-text {
        font-size: 80px;
    }
    
    .warehouse-banner-section .number-text::after {
        font-size:40px;
    }
    
    .warehouse-banner-section .service-message {
        font-size: 28px;
    }
}

@media (max-width: 1000px) {
    .warehouse-banner-section .content-area,
    .warehouse-banner-section .image-area {
        height: 360px;
    }
    
    .warehouse-banner-section .speech-bubble {
        margin-top: 40px;
        padding: 12px 25px 12px 75px;
        margin-left: 40px;
        width: calc(100% - 60px);
    }
    
    .warehouse-banner-section .main-display {
        margin-left: 40px;
        width: calc(100% - 60px);
    }
    
    .warehouse-banner-section .small-text {
        font-size: 20px;
    }
    
    .warehouse-banner-section .large-text {
        font-size: 28px;
    }
    
    .warehouse-banner-section .equipment-image {
        top: 90px;
        width: 80px;
    }
    
    .warehouse-banner-section .main-display {
        margin-top: 20px;
    }
    
    .warehouse-banner-section .number-text {
        font-size: 60px;
        margin-right: 15px;
    }
    
    .warehouse-banner-section .number-text::after {
        font-size: 30px;
        margin-bottom: 8px;
    }
    
    .warehouse-banner-section .service-message {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .warehouse-banner-section .banner-container {
        flex-direction: column;
    }
    
    .warehouse-banner-section .content-area,
    .warehouse-banner-section .image-area {
        height: auto;
        flex: none !important;
        width: 100%;
    }
    
    .warehouse-banner-section .content-area {
        padding: 15px 20px 40px;
    }
    
    .warehouse-banner-section .image-area {
        min-height: 200px;
        order: 2;
    }
    
    .warehouse-banner-section .content-area {
        order: 1;
    }
    
    /* スマホでは縦並びに変更 */
    .warehouse-banner-section .main-display {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .warehouse-banner-section .number-text {
        font-size: 70px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .warehouse-banner-section .number-text::after {
        font-size: 35px;
        margin-bottom: 9px;
    }
    
    .warehouse-banner-section .service-message {
        font-size: 24px;
        margin-top: 0 !important;
    }
    
    .warehouse-banner-section .speech-bubble {
        margin-top: 50px;
        margin-bottom: 20px;
        padding: 12px 25px 12px 75px;
    }
    
    .warehouse-banner-section .small-text {
        font-size: 18px;
    }
    
    .warehouse-banner-section .large-text {
        font-size: 26px;
    }
    
    .warehouse-banner-section .equipment-image {
        width: 80px;
        top: 50px;
        left: 15px;
    }
}

@media (max-width: 520px) {
    .warehouse-banner-section .speech-bubble {
        margin-left: 25px;
        width: calc(100% - 40px);
    }
    
    .warehouse-banner-section .main-display {
        margin-left: 25px;
        width: calc(100% - 40px);
    }
    
    .warehouse-banner-section .number-text {
        font-size: 65px;
    }
    
    .warehouse-banner-section .number-text::after {
        font-size: 32px;
        margin-bottom: 8px;
    }
    
    .warehouse-banner-section .service-message {
        font-size: 22px;
    }
    
    .warehouse-banner-section .equipment-image {
        left: 10px;
        top: 50px;
        width: 75px;
    }
    
    .warehouse-banner-section .speech-bubble {
        padding: 10px 20px 10px 65px;
    }
    
    .warehouse-banner-section .small-text {
        font-size: 16px;
    }
    
    .warehouse-banner-section .large-text {
        font-size: 24px;
    }
}

/* W10年保証セクションのスタイル */
.warranty-banner-section {
    width: 100%;
    max-width: 1280px;
    margin: 30px auto;
    padding: 0;
}

.warranty-container {
    width: 100%;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ヘッダー部分 */
.warranty-header {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.warranty-header-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.warranty-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* コンテンツ部分 */
.warranty-content {
    display: flex;
    padding: 20px;
}

.warranty-left {
    flex: 3;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.warranty-right {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ポイントタグ */
.warranty-tags {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: center;
}

.warranty-tag {
    background-color: #ffee58;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 30px;
    position: relative;
}

.warranty-tag::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ffee58;
}

/* W10ロゴ */
.warranty-w10-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.left-boxes {
    display: flex;
    flex-direction: column;
    margin-right: 10px;
}

.w10-product, .w10-installation {
    background-color: #4caf50;
    color: white;
    font-weight: bold;
    font-size: 30px;
    padding: 8px 12px;
    border-radius: 5px;
    margin-bottom: 5px;
    text-align: center;
}

.w10-text {
    font-weight: bold;
    display: flex;
    align-items: flex-end;
}

.w10-red {
    font-size: 80px;
    color: #ff5722;
    line-height: 1;
}

.year-text {
    font-size: 40px;
    color: #333;
}

/* 説明文 */
.warranty-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* メッセージ */
.warranty-message {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: center;
    color: #333;
}

/* 注記 */
.warranty-note {
    font-size: 14px;
    color: #666;
    text-align: center;
	margin-bottom: 40px;
}

/* 保証バッジ */
.warranty-badges {
    display: flex;
    gap: 20px;
}

.badge-wrapper {
    width: 200px;
    height: 200px;
}

.warranty-badge {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .warranty-content {
        flex-direction: column;
    }
    
    .warranty-right {
        margin-top: 30px;
    }
    
    .warranty-title {
        font-size: 30px;
    }
    
    .w10-product, .w10-installation {
        font-size: 18px;
    }
    
    .w10-text {
        font-size: 32px;
    }
    
    .warranty-message {
        font-size: 24px;
    }
    
    .w10-highlight {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .warranty-header {
        height: 100px;
    }
    
    .warranty-title {
        font-size: 24px;
    }
    
    .warranty-tags {
        flex-direction: column;
        gap: 10px;
    }
    
    .warranty-w10-logo {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .left-boxes {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .w10-product, .w10-installation {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .w10-red {
        font-size: 40px;
    }
    
    .year-text {
        font-size: 28px;
    }
    
    .warranty-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* 他社比較セクションのスタイル */
.comparison-section {
    width: 100%;
    max-width: 1280px;
    margin: 30px auto;
    padding: 0;
}

/* ヘッダー */
.comparison-header {
    background: linear-gradient(to right, #4caf50, #8bc34a);
    padding: 20px 0;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.comparison-title {
    color: white;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* テーブルコンテナ */
.comparison-container {
    background-color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* テーブルラッパー（スクロール用） */
.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* 比較テーブル */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 800px; /* スクロールが必要になる最小幅 */
}

/* セルの共通スタイル */
.comparison-table td, .comparison-table th {
    height: 120px; /* すべてのセルの高さを統一 */
    vertical-align: middle;
}

.warranty-item {
    padding: 10px;
    text-align: center;
}

/* テーブルヘッダー - 会社名 */
.company-col {
    width: 25%;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    padding: 15px 10px;
    position: relative;
}

/* 会社列の枠線 */
.company-a, .company-us, .company-b {
    border: 3px solid #fff;
}

.warranty-item, .category-item {
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

/* 中央(当社)の列を強調 */
td:nth-child(3) {
    background-color: rgba(255, 138, 101, 0.05);
    border-left: 2px solid #ff8a65;
    border-right: 2px solid #ff8a65;
}

tr:last-child td:nth-child(3) {
    border-bottom: 2px solid #ff8a65;
}

.company-us {
    border-left: 2px solid #ff8a65;
    border-right: 2px solid #ff8a65;
    border-top: 2px solid #ff8a65;
}

.company-col::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}

.company-a {
    background-color: #aed581; /* 薄い緑 */
}

.company-a::after {
    border-top: 20px solid #aed581;
}

.company-us {
    background-color: #ff8a65; /* オレンジ */
}

.company-us::after {
    border-top: 20px solid #ff8a65;
}

.company-b {
    background-color: #aed581; /* 薄い緑 */
}

.company-b::after {
    border-top: 20px solid #aed581;
}

/* 左側のカテゴリー列 */
.category-col {
    width: 20%;
    background-color: #f5f5f5;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.category-item {
    padding: 20px 10px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    background-color: #f5f5f5;
}

/* 共通の行・セルスタイル */
.product-warranty-row td,
.installation-row td,
.repair-limit-row td,
.repair-count-row td {
    border-bottom: 1px dashed #ccc;
}

.repair-count-row td {
    border-bottom: none;
}

/* 保証項目 */
.warranty-item {
    padding: 15px 10px;
    text-align: center;
}

.warranty-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warranty-value {
    font-size: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    height: 60px; /* 高さを固定 */
}

.repair-limit-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

/* マーク */
.x-mark {
    color: #f44336; /* 赤 */
    margin-right: 10px;
    font-weight: bold;
    font-size: 36px;
}

.circle-mark {
    color: #f44336; /* 赤 */
    margin-right: 10px;
    font-weight: bold;
    font-size: 36px;
}

.triangle-mark {
    color: #ff9800; /* オレンジ */
    margin-right: 10px;
    font-weight: bold;
    font-size: 36px;
}

/* 数字とテキスト */
.big-number {
    font-size: 48px;
    color: #333;
    line-height: 1;
}

.unit {
    font-size: 20px;
}

.no-limit {
    font-size: 40px;
}

/* レスポンシブ対応 */
@media (max-width: 960px) {
    .comparison-title {
        font-size: 30px;
    }
    
    .category-heading, .category-item {
        font-size: 20px;
    }
    
    .warranty-value, .repair-count-value, .repair-limit-value {
        font-size: 26px;
    }
    
    .big-number {
        font-size: 36px;
    }
    
    .no-limit {
        font-size: 30px;
    }
    
    .unit {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .comparison-title {
        font-size: 26px;
    }
    
    .company-col {
        font-size: 20px;
    }
    
    .category-heading, .category-item {
        font-size: 18px;
        padding: 15px 5px;
    }
    
    .warranty-label {
        font-size: 12px;
        min-height: 30px;
    }
    
    .warranty-value, .repair-count-value, .repair-limit-value {
        font-size: 22px;
    }
    
    .x-mark, .circle-mark, .triangle-mark {
        font-size: 26px;
    }
    
    .big-number {
        font-size: 32px;
    }
    
    .no-limit {
        font-size: 26px;
    }
    
    .unit {
        font-size: 18px;
    }
    
    .repair-limit-note {
        font-size: 12px;
    }
}

/* 業界最安値セクションのスタイル */
.lowest-price-section {
    width: 100%;
    max-width: 1280px;
    margin: 30px auto;
    padding: 0;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* ヘッダー */
.lowest-price-header {
    background: linear-gradient(to right, #1a473f, #2e7364);
    padding: 25px 0;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.lowest-price-title {
    color: white;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* コンテンツエリア */
.lowest-price-content {
    background-color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 2分割レイアウト */
.two-column-layout {
    display: flex;
    flex-wrap: wrap;
}

/* 左側: フロー比較エリア (50%) */
.flow-comparison {
    width: 50%;
    display: flex;
    gap: 10px;
    padding: 10px;
}

.company-box {
    width: calc(50% - 5px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.company-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    padding: 12px;
    color: #333;
}

.other-company {
    border: 2px solid #aaa;
}

.other-company .company-title {
    background-color: #f0f0f0;
}

.our-company {
    border: 2px solid #ff8a65;
}

.our-company .company-title {
    color: white;
    background-color: #ff8a65;
}

.flow-image {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow-img {
    max-width: 100%;
    height: auto;
}

/* 右側: 3つのポイント (50%) */
.reasons-list {
    width: 50%;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.reason-card {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #ffb299;
}

.reason-number {
    font-size: 52px;
    color: #ffb299;
    font-weight: 300;
    padding: 0 15px;
    border-right: 1px solid #eee;
    margin-right: 20px;
    line-height: 1;
    min-width: 80px;
    text-align: center;
}

.reason-content {
    flex: 1;
}

.reason-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}

/* レスポンシブデザイン - タブレット */
@media (max-width: 1024px) {
    .flow-comparison, .reasons-list {
        padding: 10px;
    }
    
    .reason-number {
        font-size: 45px;
        min-width: 60px;
        padding: 0 10px;
        margin-right: 15px;
    }
    
    .reason-content p {
        font-size: 16px;
    }
    
    .company-title {
        font-size: 20px;
    }
}

/* レスポンシブデザイン - モバイル */
@media (max-width: 768px) {
    .two-column-layout {
        flex-direction: column;
    }
    
    .flow-comparison, .reasons-list {
        width: 100%;
        padding: 5px;
    }
    
    .flow-comparison {
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .company-box {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .lowest-price-title {
        font-size: 28px;
    }
    
    .reason-card {
        margin-bottom: 15px;
    }
}

/* レスポンシブデザイン - 小型モバイル */
@media (max-width: 480px) {
    .lowest-price-title {
        font-size: 24px;
    }
    
    .company-title {
        font-size: 18px;
        padding: 10px;
    }
    
    .reason-number {
        font-size: 40px;
        min-width: 50px;
        padding: 0 8px;
        margin-right: 10px;
    }
    
    .reason-content p {
        font-size: 14px;
    }
    
    .reason-card {
        padding: 12px;
    }
}

/* サポート体制セクションのスタイル */
.support-system-section {
    width: 100%;
    max-width: 1280px;
    margin: 30px auto;
    padding: 0;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* ヘッダー */
.support-header {
    background-color: #5cb85c;
    padding: 20px 0;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.support-title {
    color: white;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* コンテンツエリア */
.support-content {
    background-color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* メインバナー */
.main-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.banner-line {
    background-color: #e67e22;
    color: white;
    font-size: 24px;
    font-weight: bold;
    padding: 8px 20px;
    margin: 5px 0;
    text-align: center;
    border-radius: 5px;
    min-width: 300px;
    max-width: 80%;
}

/* 説明テキスト */
.support-description {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.circle {
    display: inline-block;
    color: #5cb85c;
    font-weight: bold;
    margin-left: 5px;
}

/* フローチャート */
.flow-chart {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-step {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

/* お問い合わせステップ */
.inquiry .step-content {
    background-color: #fff9c4;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

/* 本社営業本部ステップ */
.headquarters .step-content {
    background-color: #5cb85c;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

/* 吹き出し */
.speech-bubble {
    position: absolute;
    top: -20px;
    right: 50px;
    background-color: #e67e22;
    color: white;
    padding: 15px;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    z-index: 2;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 15px solid #e67e22;
}

/* 矢印 - 使用しない
.arrow-down {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #e67e22;
    margin: 15px 0;
}
*/

/* 営業所画像 */
.offices-image-container {
    width: 100%;
    text-align: center;
    padding: 10px;
}

.offices-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 工事画像 */
.construction-image-container {
    width: 100%;
    text-align: center;
    padding: 10px;
}

.construction-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* アフターフォローステップ */
.follow-up .follow-up-content {
    background-color: #5cb85c;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-align: center;
    width: 100%;
    max-width: 600px;
    line-height: 1.4;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .banner-line, 
    .inquiry .step-content, 
    .headquarters .step-content, 
    .follow-up .follow-up-content {
        font-size: 20px;
    }
    
    .speech-bubble {
        width: 150px;
        height: 150px;
        font-size: 14px;
        right: 40px;
    }
}

@media (max-width: 768px) {
    .support-title {
        font-size: 24px;
    }
    
    .banner-line {
        font-size: 18px;
        min-width: auto;
        width: 100%;
    }
    
    .support-description {
        font-size: 16px;
    }
    
    .inquiry .step-content, 
    .headquarters .step-content, 
    .follow-up .follow-up-content {
        font-size: 18px;
        padding: 10px 20px;
    }
    
    .speech-bubble {
        position: relative;
        top: auto;
        right: auto;
        width: 200px;
        height: 100px;
        margin: 20px 0;
        border-radius: 10px;
    }
    
    .speech-bubble::after {
        display: none;
    }
    
    .arrow-down {
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .support-title {
        font-size: 20px;
    }
    
    .banner-line {
        font-size: 16px;
    }
    
    .support-description {
        font-size: 14px;
    }
    
    .inquiry .step-content, 
    .headquarters .step-content, 
    .follow-up .follow-up-content {
        font-size: 16px;
        padding: 10px 15px;
    }
}

/* お客様の声セクションのスタイル */
.customer-reviews-section {
    width: 100%;
    max-width: 1280px;
    margin: 30px auto;
    padding: 0;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* ヘッダー */
.reviews-header {
    background: linear-gradient(to right, #4caf50, #8bc34a);
    padding: 25px 0;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.reviews-title {
    color: white;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* コンテンツエリア */
.reviews-content {
    background-color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* メインコピー */
.reviews-main-copy {
    text-align: center;
    margin-bottom: 30px;
}

.thanks-heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.company-message {
    font-size: 18px;
    color: #333;
}

/* レビュースライダーコンテナ */
.reviews-slider-container {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
    width: 100%;
}

/* スライダーコントロール矢印 */
.slider-arrow {
    width: 40px;
    height: 40px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

.slider-arrow:hover {
    background-color: #388e3c;
}

/* レビュースライダー */
.reviews-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 450px;
}

/* レビューカード */
.review-card {
    position: absolute;
    top: 0;
    width: 380px; /* カードを広くする */
    border: 2px solid #e0f2e0;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    opacity: 0;
    height: 400px;
}

.review-card.active {
    z-index: 5;
    opacity: 1;
    transform: translateX(0) scale(1);
}

.review-card.prev {
    z-index: 4;
    opacity: 0.7;
    transform: translateX(-150%) scale(0.8); /* 左のカードの位置調整 */
}

.review-card.next {
    z-index: 4;
    opacity: 0.7;
    transform: translateX(150%) scale(0.8); /* 右のカードの位置調整 */
}

/* レビューヘッダー */
.review-header {
    background-color: #f5f5f5;
    padding: 10px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.review-tag {
    font-size: 12px;
    color: #666;
    text-transform: lowercase;
}

.review-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* レビューコンテンツ */
.review-content {
    padding: 15px;
}

/* 星評価 */
.review-rating {
    margin-bottom: 15px;
    text-align: center;
    background-color: #f9f9f9;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #eaeaea;
}

.star {
    color: #ddd;
    font-size: 24px;
    letter-spacing: 2px;
}

.star.filled {
    color: #ffbd00;
    text-shadow: 0 0 2px rgba(255, 189, 0, 0.5);
}

/* レビュアー情報 */
.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
    margin-right: 15px;
    border: 2px solid #e0f2e0;
}

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

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.construction-date {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #4caf50;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* レビューテキスト */
.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    height: 150px;
    overflow-y: auto;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .reviews-title {
        font-size: 30px;
    }
    
    .thanks-heading {
        font-size: 28px;
    }
    
    .company-message {
        font-size: 16px;
    }
    
    .review-card {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .reviews-title {
        font-size: 24px;
    }
    
    .thanks-heading {
        font-size: 22px;
    }
    
    .company-message {
        font-size: 14px;
    }
    
    .review-card {
        width: 85%;
        min-width: 250px;
    }
    
    .reviews-slider-container {
        padding: 0 10px;
    }
}

/* CTAセクションのスタイル - クラス名刷新版 */
.cool-cta-section {
    width: 100%;
    max-width: 1280px;
    margin: 30px auto;
    padding: 0;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.cool-cta-container {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* グリッドレイアウト */
.cool-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    width: 100%;
}

/* 24時間365日が2列分の幅を取る */
.cool-service-hours {
    grid-column: span 2;
}

/* 全グリッドアイテムの共通スタイル */
.cool-grid-item {
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ① 上段: 24時間365日部分 */
.cool-service-hours {
    background-color: #f9f9f9;
}

.cool-service-text {
    line-height: 1.2;
    text-align: center;
}

.cool-number-24, .cool-number-365 {
    font-size: 90px;
    font-weight: bold;
    color: #4caf50;
    line-height: 1;
    display: inline-block;
}

.cool-text-hours, .cool-text-days {
    font-size: 34px;
    font-weight: bold;
    color: #333;
    display: inline-block;
    vertical-align: middle;
}

.cool-text-nonstop {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

/* ⑤ 右中: 「今日必ずお湯が出ます！」吹き出し */
.cool-hot-water-bubble {
    background-color: #f9f9f9;
}

/* 吹き出し */
.cool-speech-bubble {
    background-color: white;
    border-radius: 10px;
    padding: 20px 30px;
    border: 2px solid #000;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.3;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.cool-bubble-text-black {
    color: #000;
}

.cool-bubble-text-red {
    color: #e53935;
}

/* ④ 左中: メールフォームCV部分 */
.cool-form-cv {
    padding: 0;
}

/* ③ 左下: LINE CV部分 */
.cool-line-cv {
    padding: 0;
}

/* ② 右下: 電話CV部分 */
.cool-phone-cv {
    background-color: #f9f9f9;
    padding: 0;
}

/* 電話番号 */
.cool-phone-container {
    background: linear-gradient(to right, #f17432, #ea5b0c);
    color: white;
    border-radius: 10px;
    padding: 20px 30px;
    text-align: center;
    width: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.cool-phone-header {
    font-size: 22px;
    margin-bottom: 10px;
}

.cool-phone-number {
    font-size: 46px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cool-phone-icon {
    margin-right: 10px;
    font-size: 40px;
}

/* 問い合わせボタン共通 */
.cool-contact-button {
    padding: 20px;
    border-radius: 10px;
    color: white;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
}

.cool-contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.cool-line-button {
    background-color: #4caf50;
}

.cool-form-button {
    background-color: #e53935;
}

.cool-button-icon {
    margin-right: 10px;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .cool-number-24, .cool-number-365 {
        font-size: 70px;
    }
    
    .cool-text-hours, .cool-text-days {
        font-size: 28px;
    }
    
    .cool-text-nonstop {
        font-size: 32px;
    }
    
    .cool-speech-bubble {
        font-size: 28px;
        padding: 15px 20px;
    }
    
    .cool-phone-header {
        font-size: 20px;
    }
    
    .cool-phone-number {
        font-size: 36px;
    }
    
    .cool-contact-button {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .cool-cta-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
    }
    
    .cool-service-hours {
        grid-column: 1;
    }
    
    .cool-number-24, .cool-number-365 {
        font-size: 60px;
    }
    
    .cool-text-hours, .cool-text-days {
        font-size: 24px;
    }
    
    .cool-text-nonstop {
        font-size: 28px;
    }
    
    .cool-speech-bubble {
        font-size: 24px;
        padding: 15px;
    }
    
    .cool-phone-header {
        font-size: 18px;
    }
    
    .cool-phone-number {
        font-size: 32px;
    }
    
    .cool-contact-button {
        font-size: 18px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .cool-number-24, .cool-number-365 {
        font-size: 50px;
    }
    
    .cool-text-hours, .cool-text-days {
        font-size: 20px;
    }
    
    .cool-text-nonstop {
        font-size: 24px;
    }
    
    .cool-speech-bubble {
        font-size: 20px;
        padding: 12px;
    }
    
    .cool-phone-header {
        font-size: 16px;
    }
    
    .cool-phone-number {
        font-size: 28px;
    }
    
    .cool-contact-button {
        font-size: 16px;
        padding: 12px;
    }
}

/* お問い合わせフォームのスタイル */
.contact-form-section {
    width: 100%;
    max-width: 1280px;
    margin: 30px auto;
    padding: 0;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* ヘッダー */
.contact-form-header {
    background: linear-gradient(to right, #4caf50, #8bc34a);
    padding: 25px 0;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.contact-form-title {
    color: white;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* フォームコンテナ */
.contact-form-container {
    background-color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 各フォーム項目の共通レイアウト */
.form__content__wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: flex-start;
}

/* ラベル部分 */
.label__wrap {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 20px;
}

.label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.required-tag {
    display: inline-block;
    background-color: #e53935;
    color: white;
    font-size: 14px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
}

/* 入力フィールド共通 */
.form__input__wrap, 
.form__select__wrap, 
.form__textarea__wrap {
    flex: 1;
    min-width: 300px;
}

/* テキスト入力フィールド */
.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f5f5f5;
}

/* テキストエリア */
.form__textarea {
    resize: vertical;
    min-height: 150px;
}

/* 現在お使いの商品のフレックスレイアウト */
.form__input__flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.form__input__flex .form__input__wrap {
    flex: 1;
    min-width: 200px;
}

/* サブラベル */
.sub__label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #666;
}

/* 送信ボタン */
.--center {
    justify-content: center;
    margin-top: 30px;
}

.form__submit {
    background: linear-gradient(to right, #f17432, #ea5b0c);
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

.form__submit:hover {
    background: linear-gradient(to right, #ea5b0c, #d84315);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* フォーカス時のスタイル */
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

/* プレースホルダーのスタイル */
::placeholder {
    color: #aaa;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .contact-form-title {
        font-size: 28px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .form__content__wrap {
        flex-direction: column;
    }
    
    .label__wrap {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .form__input__wrap, 
    .form__select__wrap, 
    .form__textarea__wrap {
        width: 100%;
    }
    
    .form__submit {
        font-size: 18px;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .contact-form-title {
        font-size: 24px;
    }
    
    .contact-form-container {
        padding: 15px;
    }
    
    .label {
        font-size: 16px;
    }
    
    .form__input,
    .form__select,
    .form__textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .form__submit {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* 設置までの流れセクションのスタイル */
.installation-flow-section {
    width: 100%;
    max-width: 1280px;
    margin: 30px auto;
    padding: 0;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    background-color: #f9f5e7; /* ベージュ系背景色 */
    border-radius: 10px;
    overflow: hidden;
}

/* ヘッダー */
.flow-header {
    background-color: #145a44; /* 深緑色 */
    padding: 20px 0;
    position: relative;
}

.flow-title {
    color: white;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* コンテンツエリア */
.flow-content {
    padding: 30px 20px;
}

/* 各ステップ */
.flow-step {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
}

/* 左側：数字と縦線 */
.step-left {
    flex: 0 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    color: #f0a500; /* 金色に近いオレンジ */
    border: 2px solid #f0a500;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.step-line {
    width: 4px;
    background-color: #f0a500; /* 金色に近いオレンジ */
    flex: 1;
    position: absolute;
    top: 60px;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.last-line {
    display: none; /* 最後のステップには線を表示しない */
}

/* 中央：タイトルと説明 */
.step-middle {
    flex: 1;
    padding: 0 20px;
    min-height: 220px; /* 最低高さを設定 */
    display: flex;
    flex-direction: column;
}

.step-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    flex-grow: 1; /* 残りのスペースを埋める */
}

.step-description p {
    margin-top: 0;
    margin-bottom: 10px;
}

/* リスト形式 */
.step-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
}

.step-list li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.list-number {
    display: inline-block;
    margin-right: 8px;
    font-weight: bold;
}

/* 注釈テキスト */
.step-note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* 右側：画像エリア */
.step-right {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center; /* 中央揃えに変更 */
}

.step-image-container {
    width: 280px;
    height: 220px; /* 高さを統一 */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

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

/* 有料表示 */
.paid-notice-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.paid-notice {
    background-color: #ffe8e6; /* 薄いピンク */
    color: #e53935; /* 赤色 */
    font-size: 20px;
    font-weight: bold;
    padding: 12px 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* お支払い関連 */
.payment-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 10px;
}

.credit-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.card-logo {
    height: 30px;
    width: auto;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .flow-title {
        font-size: 32px;
    }
    
    .step-title {
        font-size: 22px;
    }
    
    .step-right {
        flex: 0 0 250px;
    }
    
    .step-image-container {
        width: 230px;
    }
}

@media (max-width: 768px) {
    .flow-title {
        font-size: 28px;
    }
    
    .flow-step {
        flex-direction: column;
    }
    
    .step-left {
        flex-direction: row;
        width: 100%;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .step-line {
        display: none;
    }
    
    .step-middle {
        padding: 0;
        margin-bottom: 20px;
        min-height: auto;
    }
    
    .step-right {
        flex: none;
        width: 100%;
        justify-content: center;
    }
    
    .step-image-container {
        width: 100%;
        max-width: 400px;
        height: 250px;
    }
    
    .paid-notice {
        font-size: 18px;
        padding: 10px 30px;
    }
}

@media (max-width: 480px) {
    .flow-title {
        font-size: 24px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .paid-notice {
        font-size: 16px;
        padding: 8px 25px;
        width: 80%;
    }
    
    .credit-cards {
        justify-content: center;
    }
}