@charset "utf-8";
/* ファーストビュー --------------------------------------------------------------- */
.form-first-view {
    margin: 200px 7% 0;
}
.form-first-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.form-first-area h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    text-wrap: balance;
}
.contact-form,
.confirm {
    margin-top: 100px;
}

@media(max-width:600px) {
    .form-first-view {
        margin: 120px 7% 50px;
    }
}
/* コンテンツタイトル--------------------------------------------------------------- */
.section-title h2 span {
    margin: 2rem 0 0 0;
}

/* お問い合わせフォーム 基本設定--------------------------------------------------------------- */
.contact-form .content-area {
    display: flex;
    flex-direction: column;
    gap: 3rem;

    width: 80%;
}
.form-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-area {
    display: flex;
    flex-direction: column;
}

.form-dl {
    display: flex;
    justify-content: space-between;

    border-bottom: .5px solid var(--txt-black);
    padding: 2rem 0;
}

.form-dt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 213px;
    padding: 0 2rem 0 0;

    font-weight: normal;
    text-wrap: balance;
}
.form-dd {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    width: calc(100% - 213px);

    font-size: .9rem;
}

/* タイトル */
.contact-form h3 {
    background: var(--btn-green);
    color: var(--txt-white);
    
    padding: .5rem 1rem;

    font-size: 1.2rem;
}

/* 必須 */
.required {
    font-size: .7rem;
    background: var(--btn-green);
    color: var(--txt-white);

    line-height: 2;
    padding: 0 .5rem;
    min-width: 39px;
} 

@media(max-width:800px) {
    .contact-form .content-area {
        width: 85%;
    }
    .form-dt {
        width: 180px;
    }
    .form-dd {
        width: calc(100% -190px);
    }
}
@media(max-width:600px) {
    .form-dl {
        flex-direction: column;
        gap: 1rem;
    }
    .form-dt {
        justify-content: flex-start;
        gap: 1rem;
        width: 100%;
    }
    .form-dd {
        width: 100%;
    }
}
/* --------------------------------------------------------------- */


/* フォームの基本設定--------------------------------------------------------------- */
/* プレスホルダーの色 */
input[type='text']::placeholder,
input[type='email']::placeholder,
input[type='tel']::placeholder,
textarea::placeholder {
    color: #bbb;
    font-size: .8rem;
}
/* インプットエリアの背景 */
input[type='text'],
input[type='email'],
input[type='tel'],
select,
textarea {
    background-color: #fff;
    border: .5px solid #bbb;

    line-height: 1.6;
    padding: 5px 10px;
}
/* その他のインプット */
input[id='customer_type_other'],
.other-label {
    width: 100%;

    margin: .5rem 0 0 0;
}
/* --------------------------------------------------------------- */

/* チェック・ラジオ */
input[type='radio'], 
input[type='checkbox'] {
    position: absolute;
    opacity: 0;
    appearance: none;
    -webkit-appearance: none;
}
input[type='radio'] + span::before ,
input[type='checkbox'] + span::before {
    display: inline-block;
    content: '';

    width: 18px;
    height: 18px;

    background: #fff;
    border: .5px solid #bbb;
    vertical-align: middle;

    margin: 0 .5rem 4px 0;

    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    line-height: 1.5;

}

/* ラジオボタン--------------------------------------------------------------- */
.radio-area {
    flex-direction: column;
    justify-content: flex-start;
} 
.radio-group {
    display: flex;
    justify-content: flex-start;
    column-gap: 3rem;
    row-gap: .5rem;
    flex-wrap: wrap;
}
.radio-group label {
    position: relative;
}
input[type=radio]+span::before{
    border-radius: 50%;
}

input[type='radio']:checked + span::before {
    content: '\f111';

    color: #fff;
    border: none;
    background: var(--btn-green);

    font-size: .5rem;
    line-height: 2;
    text-align: center;

    padding: 1px 0 0;
}
@media(max-width:600px) {
    input[type='radio']:checked + span::before {
        padding: 2px 0 0;
    }
}
/* --------------------------------------------------------------- */

/* チェックボックス--------------------------------------------------------------- */
.checkbox-group {
    display: flex;
    column-gap: 2rem;
    row-gap: 1rem;
    flex-wrap: wrap;
}
.checkbox-group label {
    position: relative;
}

input[type='checkbox']:checked + span::before {
    content: '\f00c';
    color: #fff;
    border: none;
    background: var(--btn-green);
    
    padding: 0 0 0 3px;
}
/* 折り返しをずらさないように */
.services label {
    min-width: 120px;
}
.day label {
    min-width: 85px;
}
.time label {
    min-width: 118px;
}
/* --------------------------------------------------------------- */

/* 名前--------------------------------------------------------------- */
.name-area {
    display: flex;
    justify-content: space-between;
}
.name-area label {
    width: 48%;
}
.name-area input {
    width: 100%;
}
/* --------------------------------------------------------------- */
/* セレクトボックス--------------------------------------------------------------- */
.select-box {
    position: relative;
}
.select-box::after {
    display: inline-block;
    position: absolute;
    top: .5rem;
    right: 1rem;

    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f107';
}
/* --------------------------------------------------------------- */
/* 電話可能時間--------------------------------------------------------------- */
.available-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;

    padding: 2rem 0;
}

.input-title {
    background: var(--btn-green);
    color: var(--txt-white);

    padding: .2rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
}
/* --------------------------------------------------------------- */
/* テキストエリア--------------------------------------------------------------- */
textarea {
    height: 200px;
}
/* --------------------------------------------------------------- */
/* 確認ボタン--------------------------------------------------------------- */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem; 

    background: var(--btn-green);
    color: var(--txt-white);
    border-radius: 50px;

    margin: 0 auto;
    padding: 0 .5rem 0 8rem;
    
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 2px;
    line-height: 3;

    transition: all .2s;

}

.submit-btn i {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: var(--btn-green);
    border-radius: 50%;

    width: 30px;
    height: 30px;

    padding: 0 0 0 3px;

    transition: all .2s;
}
.submit-btn:hover {
    background-color: var(--btn-hover);
}
.submit-btn:hover i {
    transform: translateX(3px);
}
/* --------------------------------------------------------------- */


/* 電話お問い合わせ--------------------------------------------------------------- */
.tel-contact .contents-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;

    width: 80%;
}
.tel-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;

    background: var(--btn-green);
    color: var(--txt-white);
    border-radius: 50px;

    width: 60%;
    min-width: 500px;
    
    font-size: 1.3rem;
    font-family: var(--en-text);
    font-weight: bold;

    padding: .8rem 2rem;
    
    transition: all .2s;
}
.contact-info {
    text-align: center;
    line-height: 2;
}

.tel-contact a:hover {
    background: var(--btn-hover);
}
@media(max-width:800px) {
    .tel-contact a {
        min-width: auto;
        width: 100%;
    }
}
/* --------------------------------------------------------------- */


/* 入力確認ページ--------------------------------------------------------------- */
.confirm {
    margin-bottom: 100px;
}
.confirm .contents-area,
.send .content-area {
    width: 80%;
}

.confirm-section {
    margin: 1rem 0 3rem;
}

.confirm h2 {
    background: var(--btn-green);
    color: var(--txt-white);

    padding: 0 1rem ;
    line-height: 2;
}
.confirm .form-dl {
    padding: 2rem 0 .5rem;
}
.confirm .form-dt {
    width: 280px;
    text-wrap: balance;
}

@media(max-width:800px){
    .confirm .contents-area,
    .send .content-area {
        width: 85%;
    }
}
/* --------------------------------------------------------------- */
/* 確認アイコン--------------------------------------------------------------- */
.icon-view {
    display: flex;
    align-items: center;
    justify-content: center;
    text-wrap: nowrap;

    margin:  0 0 80px 0;
}

.icon-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    
    background: #bbb;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.icon-view span {
    width: 100px;
    height: 1px;

    background: #bbb;
}



.now-icon {
    background: var(--btn-green);
}

.icon-item .number {
    color: #fff;
    font-family: var(--en-text);
    font-size: 1.5rem;
}

.icon-item .txt {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);

    letter-spacing: 2px;
    font-family: var(--en-text);
    color: #999;
}
.now-icon .txt {
    color: var(--btn-green);
}

.title-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    margin: 0 0 50px;
}
.title-area h1{
    font-size: 1.5rem;
    font-weight: bold;
}


/* 送信ボタン--------------------------------------------------------------- */
.btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;

    margin: 80px 0 0 0;

}



.btns button {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 250px;
    margin: 0 auto;
    border-radius: 50px;

    background: var(--btn-green);
    color: var(--txt-white);

    transition: all .2s;
}

.btns i {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #999;

    width: 30px;
    height: 30px;
    border-radius: 50%;

    transition: all .2s;
}
.btns .back button{
    padding: .5rem 3.5rem .5rem .5rem ;
    background: #999;
}
.btns .back i {
    transform: rotate(-180deg);
}

.btns .submit button {
    padding: .5rem .5rem .5rem 5.5rem;
}
.btns .back button:hover {
    background: #777;
}
.btns .back button:hover i {
    color: #777;
    transform: translateX(-2px) rotate(-180deg);
}
.btns .submit button:hover {
    background: var(--btn-hover);
}
.btns .submit button:hover i {
    color: var(--btn-hover);
    transform: translateX(2px);
}

@media(max-width:600px) {
    .btns {
        flex-direction: column;
        gap: 1rem;

        margin: 0;
    }
    .btns .back button{
    padding: .5rem 5rem .5rem .5rem ;
    }
    .btns .submit button {
    padding: .5rem .5rem .5rem 7rem;
    }
}
/* --------------------------------------------------------------- */
/* 送信完了画面--------------------------------------------------------------- */
.send {
    margin-top: 100px;
    margin-bottom: 100px;
}
@media(max-width:600px) {
    .send .icon-view span {
        width: 50px;
    }
}
.send .top-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 300px;
    margin: 130px auto 0;

    background: var(--btn-green);
    color: var(--txt-white);
    border-radius: 50px;

    padding: .5rem .5rem .5rem 4.5rem;

    transition: all .2s;
}
.send .top-btn i {
    display: flex;
    justify-content: center;
    align-items: center;

    background: #fff;
    color: var(--btn-green);

    width: 30px;
    height: 30px;
    border-radius: 50%;

    transition: all .2s;
}
.send .top-btn:hover {
    background: var(--btn-hover)
}
.send .top-btn:hover i{
    transform: translateX(2px);
}
@media(max-width:600px) {
    .send .top-btn {
        padding: .5rem .5rem .5rem 6rem;
    }
}
/* --------------------------------------------------------------- */