@charset "utf-8";

/*==================================================
all
===================================*/
/*--------------ページタイトル----------------*/
/* .page-title {
    background-image: url(../image/index/sekou.jpg);
    background-position: center;
} */

/*-------------お問い合わせリンク----------------*/
.contact-link-container {
    width: 90%;
    margin: 100px auto;
    text-align: center;
}

.contact-link-container p {
    margin-bottom: 50px;
    line-height: 2;
}

/*==================================================
main
===================================*/
/*--------------コメント----------------*/
.form-comment {
    width: 90%;
    font-size: 20px;
    text-align: center;
    margin: 100px auto 0 auto;
}
.form-comment p {
    text-decoration: underline;
    text-decoration-color: #e20000;
}

/*--------------メールフォーム----------------*/
form {
    width: 90%;
    margin: 100px auto;
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ccc;
}

.input-container {
    margin: 20px 0;
}

label {
    font-weight: bold;
}

.form-input,
textarea {
    border: 1px dotted #ccc;
    width: 100% !important;
    height: 50px !important;
    padding: 10px;
    margin-top: 5px;
}

textarea {
    width: 100% !important;
    height: 150px !important;
}


/*--------------アコーディオン----------------*/
/*アコーディオン全体*/
.accordion-area {
    list-style: none;
    width: 95%;
    margin: 100px auto;
    border: 1px solid #ccc;
    background-color: #f3f3f3;
}

/*アコーディオンタイトル*/
.title {
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    padding: 2% 3%;
    transition: all .5s ease;
    text-align: center;
}

.title:hover {
    transform: scale(1.2);
}

/*　closeというクラスがついたら形状変化　*/
.title.close::before {
    transform: rotate(45deg);
}

.title.close::after {
    transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;
    /*はじめは非表示*/
    /* background: #e2e2e2; */
    background-color: #f7f7f7;
    border: 1px dotted #6d6d6d;
    margin: 0 3% 3% 3%;
    padding: 3%;
}

.box span {
    font-weight: bold;
}

.box li {
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px dotted #333;
}

/*--------------同意ボタン----------------*/

.check-button {
    font-size: 18px;
}

.check-button label {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*--------------送信ボタン----------------*/

.submit-button {
    display: block;
    margin-top: 100px;
    text-align: center;
}

button {
    background-color: #0084b2;
    color: #fff;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.5s ease, transform 0.5s ease;
}

button:hover {
    background-color: #005f87;
    transform: scale(1.1);
}


/*==================================================
******ここからレスポンシブ*******
===================================*/
/*==================================================
ipad大
===================================*/
@media (min-height:1200px) {
    /*--------------【all】----------------*/
}

/*==================================================
ipad
===================================*/
@media (max-width:900px) {
    /*--------------【all】----------------*/
}

/*==================================================
iPhone大
===================================*/
@media (max-width:600px) {
.contact-link-container p {
    text-align: left;
}
}

/*==================================================
iPhone小
===================================*/
@media (max-width:450px) {
    /*--------------【all】----------------*/
    .contact-link-container {
        margin: 50px auto;
    }
    .accordion-area {
        margin: 50px auto;
    }
    .check-button {
        font-size: 16px;
    }
    .submit-button {
        margin-top: 50px;
    }
	/*--------------コメント----------------*/
.form-comment {
    text-align: left;
}
}