@charset "utf-8";

/* フッター上書き
---------------------------------------------------------------------------*/
/* STG */
/* .page-id-2346 footer {
  background: var(--bg-card-beige, #F1EFE3);
} */

/* PROD */
.page-id-2321 footer {
  background: var(--bg-card-beige, #F1EFE3);
}




/* LIC KYOUIKU STATION お問い合わせページ専用CSS
---------------------------------------------------------------------------*/

/* 背景・ヒーロー領域 */
.p-kyouiku-contact-hero {
    min-height: 100vh;
    padding: 120px 0 60px;
    background: var(--bg-main, #FBF7F4);;
    box-sizing: border-box;
}

/* カード型コンテナ */
.p-kyouiku-contact-card {
    background: #FFF;
    border-radius: 30px;
    padding: 60px 80px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

/* メイン見出し H1 */
.c-heading-kyouiku-contact {
    color: #e6003a;
    text-align: left;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* リード文 */
.p-kyouiku-contact-lead {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 15px;
    color: #555;
}

/* フォーム項目 */
.p-kyouiku-contact-form__item {
    margin-bottom: 30px;
}

.p-kyouiku-contact-form__label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

/* 必須バッジ */
.u-required {
    background: #E6003A;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle;
}

/* 入力フィールド共通 */
.p-kyouiku-contact-form input[type="text"],
.p-kyouiku-contact-form input[type="email"],
.p-kyouiku-contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    transition: border-color 0.3s, background-color 0.3s;
}

.p-kyouiku-contact-form input[type="text"]:focus,
.p-kyouiku-contact-form input[type="email"]:focus,
.p-kyouiku-contact-form textarea:focus {
    outline: none;
    border-color: #E6003A;
    background: #fff;
}

/* ラジオボタンエリア */
.p-kyouiku-contact__radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.p-kyouiku-contact__radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.p-kyouiku-contact__radio-item:hover {
    background: #fff;
    border-color: #E6003A;
}

.p-kyouiku-contact__radio-item input[type="radio"] {
    accent-color: #E6003A;
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.p-kyouiku-contact__radio-text {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

/* 送信ボタンエリア */
.p-kyouiku-contact-form__submit {
    text-align: center;
    margin-top: 50px;
}

.p-kyouiku-contact-form__submit button {
    cursor: pointer;
    border: none;
}

.c-button-kyouiku-contact-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(90deg, #ED7A90, #f08ea1);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
}

.c-button-kyouiku-contact-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(237, 122, 144, 0.4);
}

/* 送信完了メッセージ */
.p-kyouiku-contact-success {
    padding: 40px 0;
    text-align: center;
}

.p-kyouiku-contact-success__text {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 40px;
    font-weight: 500;
    color: #333;
}

.p-kyouiku-contact-success__button {
    display: flex;
    justify-content: center;
}



/* レスポンシブ対応 (SP版: 768px以下)
---------------------------------------------------------------------------*/
@media (max-width: 767px) {
    .p-kyouiku-contact-hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .p-kyouiku-contact-card {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .c-heading-kyouiku-contact {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .c-button-kyouiku-contact-large {
        width: 100%;
        padding: 15px 8px;
        font-size: 16px;
        box-sizing: border-box;
    }
}