@charset "UTF-8";
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* 問い合わせページ */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
.contactWrap {
    display: flex;
}
/* - - - - - - - - - */
/* 電話番号 */
/* - - - - - - - - - */
.contactTxt {
    width: 350px;
}
.contactTxt h2 {
    font-size: 25px;
    text-align: center;
}
.contactTxt p {
    font-size: 16px;
}
.contactTel {
    margin-top: 30px;
    padding: 20px;
    border: solid 1px var(--text-color);
    text-align: center;
}
.contactTel a {
    display: block;
    font-weight: bold;
    font-size: 30px;
}
.contactTel  span {
    font-size: 14px;
}

/* - - - - - - - - - */
/* メールフォーム */
/* - - - - - - - - - */
.contactForm {
    margin-left: 100px;
    flex: 1;
}
.contactForm p {
    margin: 0;
}
/* .contactForm iframe {
    height: 850px;
} */
/*テキスト/電話番号*/
/* - - - - - - - - - */
.contactTxt h3 {
    font-size: 25px;
}
.cTelBox {
    margin-top: 30px;
    padding: 20px;
    border: solid 1px var(--color3);
    text-align: center;
}
.cTelBox span {
    display: block;
    font-size: 14px;
}
.cTelBox a {
    display: block;
    font-weight: bold;
    font-size: 30px;
    letter-spacing: 3px;
}
/*入力フォーム*/
/* - - - - - - - - - */
.cFcon {
    margin-bottom: 50px;
}
.cFlex {
    display: flex;
    justify-content: space-between;
}
.cFitem {
    width: 47%;
}
.cFname {
    font-size: 14px;
    font-weight: bold;
}
.cFname span {
    color: var(--error-color);
}
/*ポリシー*/
.cFpolicy {
    text-align: center;
    margin-top: 25px;
}
.cFpolicy p {
    font-size: 14px;
}
.cFpolicy p a {
    text-decoration: underline;
}
.cFpolicy label {
    font-weight: bold;
}
/*フォームのスタイル*/
.formAtype {
    width: 100%;
    padding: 10px 5px 5px;
    border: none;
    border-bottom: solid 2px #aaa;
    font-size: 16px;
}
.cF1column textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    border: none;
    font-size: 16px;
    background-color: var(--color-bk);
}
::placeholder {
    letter-spacing: 1.2px;
    color: var(--border-color);
}
/*ボタン*/
#goBtn {
    width: 300px;
    display: block;
    margin: 30px auto 0;
    padding: 20px 10px;
	background-color: var(--main-color);
	border: solid 3px var(--main-color);
	color: #fff;
	text-align: center;
	font-weight: bold;
	letter-spacing: 2px;
}
/*ドメイン許可*/
.cFdomain {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    position: relative;
    padding-left: 12px;
}
.cFdomain::before {
    content: '※';
    position: absolute;
    top: -1px;
    left: 0;
}
.cFdomain span {
    display: inline-block;
    color: var(--main-color);
    font-weight: bold;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* 送信完了 */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
.thanksBox h1{
    font-size: 25px;
    margin-bottom: 10px;
}
.thanksError {
    background-color: var(--color-bk);
    margin-top: 50px;
    padding: 30px;
    border-radius: 10px;
}
.thanksError h2 {
    font-size: 18px;
    margin-bottom: 20px;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width:960px) {/*95%*/
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* 問い合わせフォーム */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
    .contactWrap {
        flex-direction: column;
    }
    .contactTxt {
        width: 500px;
        margin: 0 auto;
    }
    .contactTxt h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .contactTxt h3 br {
        display: none;
    }
    .contactForm {
        flex: inherit;
        width: 500px;
        margin: 50px auto 0;
    }
    .contactForm iframe {
        height: 1000px;
    }
}/* 960〜601  */
    
@media screen and (max-width:600px) {/*contents:95%*/
/* - - - - - - - - - - - - - - - - - - - - - - - - */
    .contactTxt,
    .contactForm {
        width: 90%;
    }
}
    
@media screen and (max-width:480px) {/*contents:95%*/
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* 問い合わせフォーム */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
    /*入力フォーム*/
    /* - - - - - - - - - */
    .cFcon {
        margin-bottom: 0;
    }
    .cFlex {
        flex-direction: column;
    }
    .cFlast{/*最後、調整用*/
        margin-top: 30px;
    }
    .cFitem {
        width: 100%;
        margin-bottom: 30px;
    }
    .cFname {
        font-size: 14px;
        font-weight: bold;
    }
    /*フォームのスタイル*/
    .formAtype {
        width: 100%;
    }
}/* SF @ 480px〜 ※必要に応じて記述 */