@charset "UTF-8";
/*==============================================================================

	title

==============================================================================*/
#title{
    background-image: url(../1_img/contact/title.jpg);
}

/*==============================================================================

	underlayer-content

==============================================================================*/
.deco-wrap{
    position: relative;
    z-index: 2;
}
.deco-wrap::before,
.deco-wrap::after{
    content: "";
    position: absolute;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.deco-wrap::before{
    width: 278px;
    height: 2318px;
    left: 0;
    top: -400px;
    background-image: url(../1_img/contact/tree-left.svg);
}
.deco-wrap::after{
    width: 278px;
    height: 1710px;
    right: 0;
    top: -400px;
    background-image: url(../1_img/contact/tree-right.svg);
}
@media all and (max-width: 768px){
    .deco-wrap::before,
    .deco-wrap::after{
        content: none;
    }
}
/*==============================================================================

	btn-wrap

==============================================================================*/
.btn-wrap{
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 20px;
}
/* 共通の設定 */
.btn-wrap > div.rental{
    width: 100%;
}
.btn-wrap > div:not(.rental){
    width: calc(50%);
}
.btn-wrap > div a.button{
    padding: 30px;
    width: 100%;
    font-size: 2.2rem;
    font-weight: var(--weight-bold);
    background-repeat: no-repeat;
}
/* 吹き出し */
.btn-wrap > div p{
    margin-bottom: 10px;
    text-align: center;
}
.btn-wrap > div p span{
    padding: 0 20px;
    display: inline-block;
    position: relative;
    font-size: 1.6rem;
}
.btn-wrap > div p span::before,
.btn-wrap > div p span::after{
    content:"";
    width: 1px;
    height: 20px;
    position: absolute;
    top: 50%;
    background-color: var(--color-base);
}
.btn-wrap > div p span::before{
    left: 0;
    transform: translateY(-50%) rotate(-30deg);
}
.btn-wrap > div p span::after{
    right: 0;
    transform: translateY(-50%) rotate(30deg);
}
/* レンタル */
.btn-wrap > div.rental a.button{
    background-image: url(../1_img/base/icon-rental.svg);
    background-position: left 45px center;
    background-size: 36px auto;
}
/* メール */
.btn-wrap > div.mail a.button{
    background-image: url(../1_img/base/icon-mail.svg);
    background-position: left 45px center;
    background-size: 30px auto;
}
/* 電話 */
.btn-wrap > div.tel a.button{
    font-size: 2.8rem;
    font-family:  var(--font-en);
    background-image: url(../1_img/base/icon-tel.svg);
    background-position: left 60px center;
    background-size: 25px auto;
}
@media all and (max-width: 768px){
    .btn-wrap{
        display: flex;
        flex-wrap: wrap;
        gap: 10px 0;
    }
    /* 共通の設定 */
    .btn-wrap > div:not(.rental){
        width: 100%;
    }
    .btn-wrap > div a.button{
        padding: 15px 35px;
        font-size: 1.4rem;
    }
    /* 吹き出し */
    .btn-wrap > div p span{
        padding: 0 15px;
        font-size: 1.2rem;
        letter-spacing: 0.1em;
    }
    .btn-wrap > div p span::before,
    .btn-wrap > div p span::after{
        height: 10px;
    }
    /* レンタル */
    .btn-wrap > div.rental a.button{
        padding-top: 5px;
        padding-bottom: 5px;
        background-position: left 20px center;
        background-size: 17px auto;
    }
    /* メール */
    .btn-wrap > div.mail a.button{
        background-position: left 20px center;
        background-size: 17px auto;
    }
    /* 電話 */
    .btn-wrap > div.tel a.button{
        font-size: 1.4rem;
        background-position: left 20px center;
        background-size: 15px auto;
    }
}

/*==============================================================================

	message

==============================================================================*/
.message{
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}
.message-text{
    transform: translateY(18px);
}
@media all and (max-width: 768px){
    .message{
        margin-top: -20px;
    }
}

/*==============================================================================

	form

==============================================================================*/
#form{
    padding: 90px;
    position: relative;
    z-index: 4;
    background-color: #e4e1e0;
    border-radius: 10px;
}
#form .title h2{
    font-family: var(--font-ver1);
    text-align: center;
    font-size: 2.8rem;
}
#form .title p{
    margin-top: 30px;
    text-align: center;
    font-size: 1.3rem;
}
#form .title p span{
    color: var(--color-green);
}

/* ============= フォーム間の隙間 ============= */
#form > div + div{
    margin-top: 30px;
}
.wpcf7cf_group > div + div{
    margin-top: 30px;
}

/* ============= フォーム間の線 ============= */
#form > div.bdr-top{
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #fff;
}

/*================ input ================*/
input[type="date"] {
    appearance: none; /* ブラウザのデフォルトスタイルを無効化 */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
}

#form input,
#form select,
#form textarea{
    padding: 15px 20px;
    width: 100%;
    height: auto;
    border: none;
    font-size: 1.6rem;
    border-radius: 0;
    letter-spacing: 0.15em;
    background-color: #fff;
}
#form input:focus,
#form select:focus,
#form textarea:focus{
    outline: 1px solid var(--color-base)!important;
    box-shadow: none;
}
#form input::placeholder{
    color: var(--color-gary);
}
#form textarea{
    height: 240px;
}
.wpcf7-form-control-wrap {
    position: relative;
    display: block;
}
#form input::placeholder,
#form textarea::placeholder {
    color: var(--color-gray);
}
/*================ input end ================*/


/*================ select ================*/
.wpcf7-form-control-wrap[data-name="riyou-purpose"]{
    position: relative;
}
.wpcf7-form-control-wrap[data-name="riyou-purpose"]::after{
    content: "";
    width: 50px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--color-base);
    background-image: url(../1_img/contact/select.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 23px auto;
    pointer-events: none;
}
.wpcf7-form-control.wpcf7-select {
    padding-right: 60px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
}
/*================ select end ================*/

/*================ radio ================*/
.wpcf7-radio{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 35px;
}
.wpcf7-radio .wpcf7-list-item{
    margin: 0;
}
.wpcf7-radio .wpcf7-list-item label{
    display: flex;
    position: relative;
    padding-left: 30px;
}
.wpcf7-radio .wpcf7-list-item label span{
    white-space: nowrap;
    font-size: 1.6rem;
}
/* radioボタンの装飾 */
.wpcf7-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.wpcf7-radio .wpcf7-list-item label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid #766864;
    border-radius: 50%;
    background: #fff;
}
.wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #766864;
    border-radius: 50%;
}
/*================ radio end ================*/



/* ============= 項目名 ============= */
#form .item_name{
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1.6rem;
    font-weight: var(--weight-bold);
}
#form .item_name span.required{
    padding-right: 20px;
    position: relative;
}
#form .item_name span.required::after{
    content: "";
    position: absolute;
    display: block;
    width: 13px;
    height: 13px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-green);
    border-radius: 100%;
}

/* ============= 利用について ============= */
#form .riyou-wrap{
    display: flex;
    align-items: center;
    gap: 0 20px;
}
#form .riyou-wrap input[type="date"]{
    width: 370px;
}
#form .riyou-wrap label{
    display: flex;
    align-items: center;
    gap: 0 15px;
}
#form .riyou-wrap label::before{
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    border: 2px solid #766864;
    background-color: #fff;
}
#form .riyou-wrap input[type="checkbox"]{
    opacity: 0;
    position: absolute;
    z-index: -1;
}
#form .riyou-wrap .wpcf7-list-item.first{
    margin: 0;
}
#form .riyou-wrap label.check::before{
    background: url(../1_img/contact/check.svg) no-repeat center, #fff;
}
#form .riyou-wrap .riyou-check-wrap{
    display: flex;
    gap: 0 15px;
}


/* ============= オプション ============= */
#form .option-wrap + .option-wrap{
    margin-top: 10px;
}
#form .option-wrap > p{
    display: flex;
    align-items: center;
    gap: 0 10px;
}
#form .option-wrap label{
    display: flex;
    align-items: center;
    gap: 0 15px;
    font-size: 1.6rem;
}
#form .option-wrap label::before{
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    border: 2px solid #766864;
    background-color: #fff;
}
#form .option-wrap input[type="checkbox"]{
    opacity: 0;
    position: absolute;
    z-index: -1;
}
#form .option-wrap .wpcf7-list-item.first{
    margin: 0;
}
#form .option-wrap label.check::before{
    background: url(../1_img/contact/check.svg) no-repeat center, #fff;
}
#form .option-wrap > p .sub{
    font-size: 1.4rem;
}

/* ============= 横並び ============= */
.flex_wrap{
    display: flex;
    gap: 0 90px;
}
.flex_wrap > div{
    width: calc(50% - 45px);
}


/*================ 送信・修正ボタン ================*/
.contact-attention{
    margin-top: 50px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: var(--weight-bold);
}
.contact-btn{
    margin-top: 40px;
    text-align: center;
}
.contact-btn input{
    width: 320px;
    max-width: 100%;
    padding: 20px 0;
    display: inline-block;
    text-align: center;
    font-size: 1.6rem;
    font-family: var(--font-ver1);
    color: #fff;
    background: url(../1_img/base/arrow-white-right.svg) no-repeat right 20px center,var(--color-green);
    line-height: 1;
    border-radius: 8px;
    position: relative;
    transition: 500ms;
    border: none;
}
.contact-btn input:hover{
    opacity: 0.6;
    background-color: var(--color-green);
}
/*================ 送信・修正ボタン end ================*/



/*================ ラジオボタン ================*/
#contact form .wpcf7-radio{
    margin-left: -30px;
    display: flex;
}
#contact form .wpcf7-radio .wpcf7-list-item{
    margin: 0;
    margin-left: 30px;
    width: calc(100%/3 - 30px);
}
#contact form .wpcf7-radio span label{
    text-align: center;
}
#contact form .wpcf7-radio .wpcf7-list-item input + span {
    width: 100%;
    padding: 10px;
    height: 100px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #333333;
    border-radius: 10px;
    font-size: 1.5rem;
}
/* ラジオボタンを消す */
#contact form .wpcf7-radio .wpcf7-list-item label input{
    display: none;
}
/* アイコンの設定 */
#contact form .wpcf7-radio .wpcf7-list-item-label::before{
    width: 100%;
    display: block;
}
#contact form .wpcf7-radio span:nth-of-type(1) .wpcf7-list-item-label::before{
    content: url(../1_img/contact/fc.svg);
}
#contact form .wpcf7-radio span:nth-of-type(2) .wpcf7-list-item-label::before{
    content: url(../1_img/contact/recrutie.svg);
}
#contact form .wpcf7-radio span:nth-of-type(3) .wpcf7-list-item-label::before{
    content: url(../1_img/contact/5through.svg);
}
/* チェックされた項目に変化 */
#contact form .wpcf7-radio .wpcf7-list-item input:checked + .wpcf7-list-item-label {
    background-color: #f6ffdd;
}
/*================ ラジオボタン end ================*/


/*================ エラーテキスト ================*/
.wpcf7-not-valid-tip {
    margin-top: 5px;
    padding: 5px 10px;
    font-size: 1em;
    font-weight: bold;
    display: block;
    width: 100%;
    color: #fff;
    background-color: #c4993d;
    position: absolute;
    z-index: 2;
}
.wpcf7-not-valid-tip::before{
    content: "";
    width: 19px;
    height: 14px;
    position: absolute;
    bottom: calc(100% - 1px);
    left: 20px;
    background-color: #c4993d;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transition: 500ms;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    padding: 20px;
    color: #fff;
    border: none;
    background-color: #c4993d;
}
.contact-btn{
    position: relative;
}
.wpcf7-spinner{
    margin: 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, calc(100% + 10px));
}
/*================ エラーテキスト end ================*/



/*============================================================================================================================================================
============================================================================================================================================================

	contact スマホ

============================================================================================================================================================
============================================================================================================================================================*/
@media all and (max-width: 768px){
    /*==============================================================================

        form

    ==============================================================================*/
    #form{
        padding: 30px 20px;
    }
    #form .title h2{
        font-size: 2rem;
    }
    #form .title p{
        margin-top: 15px;
    }
    
    /* ============= フォーム間の隙間 ============= */
    #form form > div + div{
        margin-top: 30px;
    }
    #form form .contact_content > div + div{
        margin-top: 30px;
    }
    #form form .confirm > div + div{
        margin-top: 30px;
    }
    
    /* ============= フォーム間の線 ============= */
    #form > div.bdr-top{
        margin-top: 30px;
        padding-top: 30px;
    }
    
    /*================ input ================*/
    #form form input,
    #form form select,
    #form form textarea{
        padding: 15px 20px;
        font-size: 1.4rem;
    }
    /*================ input end ================*/
    
    
    /* ============= 項目名 ============= */
    #form form .item_name{
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        font-size: 1.4rem;
    }


    /* ============= 利用について ============= */
    #form .riyou-wrap{
        flex-direction: column;
        align-items: stretch;
        gap: 0 20px;
    }
    #form .riyou-wrap input[type="date"]{
        width: 100%;
    }
    #form .riyou-wrap label{
        display: flex;
        gap: 10px;
    }
    #form .riyou-wrap .riyou-check-wrap{
        margin-top: 10px;
        display: flex;
        justify-content: left;
    }
    


    /* ============= オプション ============= */
    #form .option-wrap + .option-wrap {
        margin-top: 20px;
    }
    #form .option-wrap > p{
        flex-wrap: wrap;
        gap: 0;
    }
    #form .option-wrap label{
        font-size: 1.4rem;
    }
    #form .option-wrap > p .sub{
        width: 100%;
        font-size: 1.2rem;
    }

    /* ============= 横並び ============= */
    .flex_wrap{
        flex-direction: column;
        gap: 30px 0;
    }
    .flex_wrap > div{
        width: calc(100%);
    }
    
    
    
    /*================ エラーテキスト ================*/
    .wpcf7-not-valid-tip {
        margin-top: 5px;
        padding: 5px 10px;
        font-size: 1em;
        font-weight: bold;
        display: block;
        width: 100%;
        color: #fff;
        background-color: #c4993d;
        position: relative;
        z-index: 2;
    }
    .wpcf7-not-valid-tip::before{
        content: "";
        width: 19px;
        height: 14px;
        position: absolute;
        bottom: calc(100% - 1px);
        left: 20px;
        background-color: #c4993d;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        transition: 500ms;
    }
    .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
        padding: 20px;
        color: #fff;
        border: none;
        background-color: #c4993d;
    }
    /*================ エラーテキスト end ================*/

    /*================ 送信・修正ボタン ================*/
    .contact-attention{
        margin-top: 30px;
        font-size: 1.4rem;
    }
    .contact-btn{
        margin-top: 20px;
        position: relative;
    }
    .contact-btn input{
        width: 320px;
        max-width: 100%;
        padding: 20px 0;
        display: inline-block;
        text-align: center;
        font-size: 1.6rem;
        font-family: var(--font-ver1);
        color: #fff;
        background: url(../1_img/base/arrow-white-right.svg) no-repeat right 20px center,var(--color-green);
        line-height: 1;
        border-radius: 8px;
        position: relative;
        transition: 500ms;
        border: none;
    }
    .contact-btn input:hover{
        opacity: 0.6;
        background-color: var(--color-green);
    }
    /*================ 送信・修正ボタン end ================*/
    
    
    /*================ 送信完了 ================*/
    #thanks{
        margin-top: 45px;
        text-align: center;
    }
    /*================ 送信完了 end ================*/
}