/*********************************************************************
ファイル名    ：contact.css
管理番号　　：No.028
内容　　　　：お問い合わせページ専用スタイル
バージョン　：Ver1.0
作成日　　　：2026-07-17
更新日　　　：2026-07-17

【変更履歴】
Ver0 初期作成
Ver1.0 Ver7.0管理ヘッダーへ統一
*********************************************************************/

/*********************************************************************
 Contact
*********************************************************************/


/*============================
  Section
============================*/

.contact-page{

    padding:100px 0;

    background:#f8fbff;

}

/*============================
  Title
============================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:2.6rem;

    font-weight:700;

    color:#0d6efd;

    margin-bottom:20px;

}

.section-title p{

    font-size:1.1rem;

    color:#666;

    line-height:1.9;

}

/*============================
  Point
============================*/

.contact-point{

    background:#ffffff;

    border-radius:20px;

    padding:45px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    margin-bottom:50px;

}

.contact-point h3{

    text-align:center;

    color:#0d6efd;

    font-size:1.7rem;

    font-weight:700;

    margin-bottom:35px;

}

.contact-point ul{

    list-style:none;

    padding:0;

    margin:0;

}

.contact-point li{

    font-size:1.05rem;

    line-height:2.2;

    color:#555;

    margin-bottom:12px;

}

/*============================
  Form
============================*/

.contact-form{

    background:#ffffff;

    border-radius:20px;

    padding:50px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    margin-bottom:50px;

}


/*============================
  Form Control
============================*/

.contact-form .form-label{

    font-weight:600;

    color:#333;

    margin-bottom:10px;

}

.contact-form .form-control,
.contact-form .form-select{

    border-radius:10px;

    padding:14px 18px;

    border:1px solid #ced4da;

    transition:.3s;

}

.contact-form .form-control:focus,
.contact-form .form-select:focus{

    border-color:#0d6efd;

    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);

}

/*============================
  Textarea
============================*/

.contact-form textarea{

    resize:vertical;

    min-height:220px;

}

/*============================
  Check Box
============================*/

.form-check{

    margin-top:10px;

}

.form-check-label{

    color:#555;

    line-height:1.8;

}


/*============================
  Submit Button
============================*/

.contact-submit{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    background:linear-gradient(
        180deg,
        #ffc83d 0%,
        #ffb300 100%
    );

    color:#000;

    border:none;

    min-width:460px;
    min-height:68px;

    padding:18px 55px;

    font-size:1.35rem;

    font-weight:700;

    border-radius:999px;

    letter-spacing:.05em;

    box-shadow:0 10px 30px rgba(255,179,0,.35);

    transition:all .25s ease;

    cursor:pointer;

}


.contact-free-text{

    text-align:center;

    color:#0d6efd;

    font-size:1rem;

    font-weight:700;

    margin-bottom:20px;

}

.contact-submit:hover{

    background:linear-gradient(
        180deg,
        #ffd45c 0%,
        #ffb300 100%
    );

    color:#000;

    transform:translateY(-4px);

    box-shadow:0 16px 36px rgba(255,179,0,.45);

}

.contact-submit:active{

    transform:translateY(-1px);

}

/*============================
  Message
============================*/

.contact-message{

    background:#eef6ff;

    border-radius:20px;

    padding:45px;

    margin-top:50px;

    text-align:center;

}

.contact-message h3{

    color:#0d6efd;

    font-size:1.8rem;

    font-weight:700;

    margin-bottom:25px;

}

.contact-message p{

    color:#555;

    line-height:2;

    margin-bottom:20px;

}

/*============================
  Responsive
============================*/

@media (max-width:991px){

    .contact-page{

        padding:70px 0;

    }

    .contact-form{

        padding:35px;

    }

    .contact-point{

        padding:35px;

    }

}

@media (max-width:576px){

    .section-title h2{

        font-size:2rem;

    }

    .contact-point h3{

        font-size:1.4rem;

    }

    .contact-submit{

        width:100%;

        min-width:auto;

        min-height:60px;

        font-size:1.15rem;

    }

    .contact-form{

        padding:25px;

    }

}