/* Contact Section Styles */
.contact-section {
    position: relative;
    background-color: #f8f9fa;
    background: linear-gradient(0deg, rgba(72, 133, 237, 0.85) 0%, rgba(72, 133, 237, 0.85) 100%), url('../images/contact/24987437_m.jpg') lightgray 50% / cover no-repeat;
    overflow: hidden;
    padding: clamp(80px, 8vw + 50px, 153px) clamp(20px, 7vw + 40px, 135px);
    gap: clamp(30px, 2vw + 20px, 70px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-section-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(15px, 1.5vw + 5px, 30px);
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(15px, 1.5vw + 5px, 30px);
    width: 100%;
}

/* お問い合わせボタン */
.contact-contact-btn {
    position: relative;
    display: flex;
    width: clamp(280px, 80vw, 500px);
    height: clamp(65px, 10vw + 40px, 85px);
    padding: clamp(20px, 3vw + 15px, 30px);
    justify-content: center;
    align-items: center;
    border-radius: 45px;
    background: #EDB047;
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: clamp(16px, 1vw + 14px, 20px);
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.256px;
    text-decoration: none;
    box-sizing: border-box;
    transition: background 0.3s ease;
}

/* お問い合わせボタンのテキストと矢印の間隔を確保 */
.contact-contact-btn:after {
    display: inline-flex;
    width: 18px;
    height: 13px;
    justify-content: center;
    align-items: center;
    font: var(--fa-font-solid);
    content: "\f1d8";
    /* position: absolute; */
    right: clamp(15px, 3vw + 10px, 30px);
    margin-left: 10px;
}