@charset "UTF-8";

/* ==========================================================================
   全体設計
   ========================================================================== */
.contact-front {
    max-width: 1000px;
    margin: 40px auto 80px;
    padding: 0 20px;
    /* Noto Sans JP を最優先に指定 */
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.8; /* 読みやすさのため少し広めに */
    -webkit-font-smoothing: antialiased; /* フォントを滑らかに */
}

/* ==========================================================================
   ページタイトル（h1）のデザイン再現

   .cmnPageTtl {
    font-family: "Noto Sans JP", sans-serif !important;
    text-align: center !important;
    font-size: 2.4rem !important;
    font-weight: 700 !important;
    color: #333 !important;
    line-height: 1.4 !important;
    margin: 40px 0 !important;
    padding: 0 !important;
}

.cmnPageTtl span {
    display: block !important;
    color: #e60012 !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.15em !important;
    margin-top: 10px !important;
    font-weight: 700 !important;
}

========================================================================== */

/* セクション共通 */
.contact-section {
    margin-bottom: 30px;
}

.section-ttl {
    font-size: 1.75rem;
    font-weight: bold;
    color: #3e4751; /* 少し濃いグレー */
    padding-bottom: 7px; /* 線との間の余白 */
    margin-bottom: 15px;
    position: relative; /* 疑似要素の基準点 */
    border-bottom: 1px solid #e0e0e0; /* 下の細いグレーの線 */
}

/* 左側の赤いアクセント線 */
.section-ttl::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px; /* 親のborder-bottomと重ねる */
    width: 60px;  /* 赤い線の長さ（画像に合わせて調整してください） */
    height: 2px;  /* 赤い線の太さ */
    background-color: #e60012; /* JRC赤 */
}

.section-lead {
    margin-bottom: 15px;
}

.section-lead ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.section-lead ul li::before {
    content: "・";
}

/* ボタンエリア */
.contact-btn-area {
    margin-bottom: 20px;
}

.contact-btn-area.-left {
    text-align: left;
}

/* 赤い丸ボタン */
.btn-red {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e60012;
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    height: 70px;
    max-width: 500px;
    border-radius: 35px; /* 高さの半分で完全な丸に */
    transition: background 0.3s, transform 0.2s;
    margin-bottom: 20px;
}

.btn-red:hover {
    background: #c00000;
    color: #fff; /* ★ここに追加：ホバー時も白を維持する */
    text-decoration: none; /* 下線が出るのを防ぐ場合 */
}

.note {
    font-size: 0.9rem;
    color: #000;
}

/* ==========================================================================
   お急ぎの方はこちら（バナーエリア）
   ========================================================================== */
.hurryArea {
    border: 1px solid #ccc;
    margin-bottom: 60px;
}

.hurryArea-ttl {
    background: #e60012;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
}

.hurryArea-ttl span {
    font-size: 1.1rem;
    font-weight: normal;
    margin-left: 10px;
}

.hurryArea-container {
    display: flex;
    align-items: stretch;
}

.hurryArea-item {
    flex: 1;
    padding: 20px;
}

/* 左：電話 */
.hurryArea-item.-tel {
    border-right: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hurryArea-desc .num {
    font-size: 2.4rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
    letter-spacing: 0.05em;
}

.hurryArea-desc .num small {
    font-size: 1.2rem;
    margin-right: 10px;
}

.hurryArea-desc .note {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* 右：営業所 */
.hurryArea-item.-office {
    text-align: left;
}

.hurryArea-heading {
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hurryArea-text {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.link-blue {
    color: #007bc3;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
}

.link-blue:hover {
    text-decoration: underline;
}

/* ==========================================================================
   レスポンシブ（スマホ対応）
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* ==========================================================================  
    .cmnPageTtl {
        font-size: 1.8rem !important; 
        margin: 30px 0 !important;
    }
    .cmnPageTtl span {
        font-size: 0.9rem !important;
        margin-top: 5px !important;
    }
}
  ========================================================================== */   
    .section-ttl {
        font-size: 1.2rem;
        padding-bottom: 10px;
    }
    .section-ttl::after {
        width: 40px; /* スマホでは少し短く */
    }

    .btn-red {
        font-size: 1.2rem;
        height: 60px;
        max-width: 100%;
    }

    .hurryArea-ttl {
        font-size: 1.1rem;
        padding: 10px;
    }

    .hurryArea-ttl span {
        display: block;
        margin-left: 0;
        margin-top: 5px;
        font-size: 0.9rem;
    }

    .hurryArea-container {
        flex-direction: column;
    }

    .hurryArea-item.-tel {
        border-right: none;
        border-bottom: 1px solid #ccc;
        padding: 20px;
    }

    .hurryArea-desc .num {
        font-size: 1.8rem;
    }

    .hurryArea-item.-office {
        padding: 20px;
    }
}