@charset "UTF-8";
/* 共通設定 -------------------------------- */
.sp{
    display: none;
}


/* コンタクトフォーム ------------------------ */
.contact-form{
    background-color: #C4C3B7;
    margin: 0 auto;
}

.contact-form h1{
    text-align: center;
    padding-top: 60px;
    margin-bottom: 70px;
}
.contact-form h1 .title{
    font-size: 24px;
    font-weight: 700;
    border-bottom: 1px solid #000;
    padding-bottom: 7px;
}
.contact-form h1 .description{
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
}

.contact-form form{
    padding-bottom: 100px;
}

.contact-form .form-item{
    width: 100%;
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #000;
}
.contact-form .form-item:first-child{
    border-top: 1px solid #000;
}
.contact-form .form-item dt{
    width: 180px;
    flex-shrink: 0;
    text-align: right;
    margin-right: 20px;
}
.contact-form .form-item dt .require{
    display: inline-block;
    font-size: 12px;
    color: #F4F1E6;
    background-color: #C4832D;
    border-radius: 20px;
    padding: 3px 10px;
    text-align: center;
}
.contact-form .form-item dd{
    width: calc(100% - 200px);
}
.contact-form .form-item dd input[type="text"],
.contact-form .form-item dd input[type="email"],
.contact-form .form-item dd input[type="tel"]{
    width: 100%;
    background-color: #F4F1E6;
    padding: 10px 20px;
}
.contact-form .form-item dd textarea{
    width: 100%;
    height: 300px;
    background-color: #F4F1E6;
    padding: 10px 20px;
}

.contact-form .privacy-policy{
    font-size: 15px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.contact-form .privacy-policy .privacy-text{
    max-width: 640px;
    height: 200px;
    background-color: #F4F1E6;
    border: 1px solid #000;
    padding: 20px 20px 40px;
    margin: 0 auto 30px;
    overflow-x: hidden;
}
.contact-form .privacy-policy .privacy-text .title{
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-form .privacy-policy .privacy-text > p{
    line-height: 1.8;
    margin-bottom: 20px;
}
.contact-form .privacy-policy .privacy-text > ul{
    margin-left: 40px;
    margin-bottom: 20px;
}
.contact-form .privacy-policy .privacy-text > ul li{
    list-style: disc;
}

.contact-form .privacy-item{
    text-align: center;
}

.contact-form .btn-submit{
    width: 200px;
    height: 45px;
    background-color: #C4832D;
    border-radius: 30px;
    color: #F4F1E6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin: 0 auto;
}
.contact-form .btn-submit:disabled {
    background-color: #9EA19B;
    opacity: 0.5;
    cursor: not-allowed;
}

/* 入力エラーエリア */
.error-messages {
    display: none;
    color: red;
    background: #fff3f3;
    border: 1px solid red;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 5px;
    font-size: 0.95em;
}
.error-messages ul {
    margin: 0;
    padding-left: 1.2em;
}
.error-messages li {
    list-style-type: disc;
}

.error-messages.active {
    display: block;
}


/* 内容確認画面 ----------------------------- */
.confirm .btn-wrap{
    display: flex;
    align-items: center;
    margin-top: 40px;
}
.confirm .btn-wrap .btn1{
    width: 200px;
    height: 45px;
    background-color: #F4F1E6;
    border: 1px solid #C4832D;
    border-radius: 30px;
    color: #C4832D;
    font-size: 14px;
    margin: 0 auto;
    position: relative;
}
.confirm .btn-wrap .btn1::before{
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #C4832D;
    border-left: 1px solid #C4832D;
    position: absolute;
    top: 18px;
    left: 30px;
    transform: rotate(315deg);
}
.confirm .btn-wrap .btn2{
    width: 200px;
    height: 45px;
    background-color: #C4832D;
    border: 1px solid #C4832D;
    border-radius: 30px;
    color: #F4F1E6;
    font-size: 14px;
    margin: 0 auto;
    position: relative;
}
.confirm .btn-wrap .btn2::after{
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #F4F1E6;
    border-right: 1px solid #F4F1E6;
    position: absolute;
    top: 18px;
    right: 20px;
    transform: rotate(45deg);
}
.confirm .btn-wrap .btn2:hover{
    color: #C4832D;
    background-color: #F4F1E6;
}
.confirm .btn-wrap .btn2:hover::after{
    border-top: 1px solid #C4832D;
    border-right: 1px solid #C4832D;
}


/* 送信完了画面 ----------------------------- */
.sended{
    width: 100%;
    background-color: #C4C3B7;
    padding: 60px 0 100px;
    margin: 0 auto;
}
.sended h1{
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}
.sended p{
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
}
.sended .btn{
    width: 200px;
    height: 45px;
    background-color: #C4832D;
    border-radius: 30px;
    color: #F4F1E6;
    border: 1px solid #C4832D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin: 0 auto;
}
.sended .btn:hover{
    color: #C4832D;
    background-color: #F4F1E6;
}


/* LINKS ---------------------------------- */
.links{
    width: 100%;
    background-color: #9EA19B;
    display: flex;
    justify-content: space-between;
}
.links li{
    width: 50%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #000;
}
.links li:first-child{
    border-right: 1px solid #000;
}
.links li a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.links li a .title{
    font-family: 'Zen Old Mincho', sans-serif;
    position: relative;
}
.links li a .title::before{
    content: "";
    width: 40px;
    height: 40px;
    background-image: url(../img/common/arrow.svg);
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: -50px;
}
.links li a:hover {
    opacity: 0.5;
}
.links li a:hover .title .en{
    color: #F4F1E6;
}
.links li a:hover .hover-line::after {
    transform: scale(1, 1);
}

.links li a .title .ja{
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}
.links li a .title .en{
    display: block;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.1em;
    line-height: 1;
}


/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
    .single-title{
        font-size: clamp(72px, 8vw, 80px);
    }

    /* コンタクトフォーム ------------------------ */
    .contact-form h1{
        margin-bottom: 40px;
    }

    .contact-form form{
        padding-bottom: 60px;
    }

    .contact-form .form-item{
        flex-direction: column;
    }
    .contact-form .form-item dt{
        width: 100%;
        text-align: left;
        margin-bottom: 10px;
    }
    .contact-form .form-item:nth-of-type(even) dt{
        margin-left: 54px;
    }
    .contact-form .form-item dd{
        width: 100%;
    }

    /* 内容確認画面 ----------------------------- */
    .confirm .form-item dt{
        font-weight: 600;
    }
    .confirm .form-item:nth-of-type(even) dt{
        margin-left: 0;
    }

    .confirm .btn-wrap{
        flex-direction: column-reverse;
    }
    .confirm .btn-wrap .btn2{
        margin-bottom: 20px;
    }

    /* LINKS ---------------------------------- */
    .links{
        flex-direction: column;
    }
    .links li{
        width: 100%;
        height: 200px;
    }
    .links li:first-child{
        border-right: 0;
    }
    .links li a .title::before{
        width: 20px;
        height: 20px;
        right: -25px;
    }
    .links li a .title .en{
        font-size: 36px;
    }

}


@media screen and (max-width: 450px) {
    .sp{
        display: inline;
    }
}