@charset "UTF-8";

/*-----------------------------------------------

   お問い合わせ

------------------------------------------------*/
.page_title {
    background-image: url('../../images/contact/title_bg.jpg');
    background-position: center;
}
#contact-form {
	width: 100%;
    margin: auto;
	max-width: var(--basic-width);
    position: relative;
    z-index: 1;
}

/*-----------------------------------------------
   扉ページ
------------------------------------------------*/
.contact_top {
    position: relative;
    z-index: 1;
}
.contact_top_guide {
    margin: auto;
    max-width: 960px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 40px;
}
.contact_top_guide a {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}
.contact_top_heading {
    color: #fff;
    background-color: var(--primary-color);
    text-align: center;
    font-weight: 500;
    font-size: 1.8rem;
    padding: 0.5em;
    border-radius: 100px;
    margin-bottom: 30px;
}
.contact_top_annotation {
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
}
.contact_link_list {
    margin-top: 30px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact_link_item {
    aspect-ratio: 1 / 0.712;
}
.contact_link_item a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.contact_link_item:nth-of-type(1) a {
    background-image: url('../../images/contact/photo01.jpg');
}
.contact_link_item:nth-of-type(2) a {
    background-image: url('../../images/contact/photo02.jpg');
}
.contact_link_item:nth-of-type(3) a {
    background-image: url('../../images/contact/photo03.jpg');
}
.contact_link_item:nth-of-type(4) a {
    background-image: url('../../images/contact/photo04.jpg');
}
.contact_link_heading {
    color: #fff;
    font-weight: 900;
    font-size: 1.6rem;
}

@media screen and (min-width: 390px) {
    .contact_link_list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 12px;
    }
    .contact_link_item {
        width: calc(50% - 6px);
    }
}

@media screen and (min-width: 411px) {
    .contact_top_guide {
        font-size: 1.8rem;
    }
}

@media screen and (min-width: 768px) {
    .contact_top_guide {
        font-size: 2.2rem;
        margin-bottom: 80px;
    }
    .contact_top_heading {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
    .contact_top_annotation {
        font-size: 1.8rem;
    }
    .contact_link_list {
        margin-top: 60px;
        margin-bottom: 90px;
        gap: 20px;
    }
    .contact_link_item {
        width: calc(50% - 10px);
    }
    .contact_link_heading {
        font-size: 2.2rem;
    }
}

@media screen and (min-width: 1161px) {
    .contact_top_guide {
        font-size: 2.7rem;
    }
    .contact_top_heading {
        font-size: 3.6rem;
    }
    .contact_top_annotation {
        font-size: 2.1rem;
    }
    .contact_link_list {
        margin-bottom: 120px;
        gap: 46px;
    }
    .contact_link_item {
        width: calc(50% - 23px);
    }
    .contact_link_heading {
        font-size: 4.5rem;
    }
}

/*-----------------------------------------------
   入力画面
------------------------------------------------*/
.form_guide {
    margin-bottom: 50px;
    font-weight: 500;
    line-height: 1.8;
}
.vt-form-input.input-small {
    width: 50%;
}
.vt-form-input.input-exsmall {
    width: 15%;
}
.vt-form-selectbox {
    width: 50%;
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
}
.vt-form-selectbox::-ms-expand {
    display: block;
}
.vt-form-selectbox:hover {
    cursor: pointer;
}
.vt-form-item.item-multiple {
    display: flex;
    align-items: center;
}
.vt-form-selectbox.selectbox-small {
    width: 26%;
    margin-right: 0.5em;
}
.vt-form-selectbox.selectbox-small:nth-of-type(2), 
.vt-form-selectbox.selectbox-small:nth-of-type(3) {
    width: 22%;
    margin-left: 0.75em;
}
.vt-form-textarea {
    height: 200px;
}
.vt-form-radio {
    padding-right: 25px;
}
.vt-form-button-container {
    margin-top: 30px;
}
.vt-form-button.is-submit {
    color: #fff;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}
.vt-form-button.is-submit:hover {
    border-color: var(--primary-hover-color);
    background-color: var(--primary-hover-color);
    opacity: 1;
}
.vt-form-button.is-return {
    color: var(--primary-color);
    background-color: #fff;
}
.vt-form-button.is-return:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #f8f8f8;
}
.vt-form-privacy-text {
    font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
    .vt-form-button:first-of-type {
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 768px) {
    .vt-form-label {
        font-size: 1.8rem;
    }
    label, select {
         font-size: 1.6rem;
    }
    .vt-form-layout-column .vt-form-item:nth-last-child(2) {
        align-items: start;
        padding-top: 30px;
    }
    .vt-form-textarea {
        height: 300px;
    }
    .vt-form-radio {
        min-width: calc(100% / 3);
    }
    .vt-form-button-container {
        margin-top: 50px;
        gap: 30px;
    }
    .vt-form-button {
        padding: 20px 0;
    }
    .vt-form-privacy-text {
        font-size: 1.6rem;
    }
}

@media screen and (min-width: 1101px) {
    .vt-form-button {
        padding: 30px 0;
    }
    .vt-form-list dt, 
    .vt-form-privacy-container, 
    .vt-form-button {
        font-size: 1.8rem;
    }
}

@media screen and (min-width: 1301px) {
    .vt-form-button-container {
        width: 100%;
        gap: 50px;
    }
    .vt-form-button {
        padding: 40px 0;
    }
}

@media screen and (min-width: 1401px) {
    .vt-form-list dt, 
    .vt-form-privacy-container, 
    .vt-form-button {
        font-size: 2rem;
    }
}

/*-----------------------------------------------
   確認画面
------------------------------------------------*/
#formWrap {
    width: 100%;
    position: relative;
    z-index: 1;
}
.error-guide {
    text-align: center;
    display: block;
}
.error-guide_item {
    padding: 1em;
    display: inline-block;
    text-align: left;
}
.error-guide_h4 {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1em;
}
.error_messe {
    color: #c00;
    position: relative;
    padding-left: 1.25em;
    margin-bottom: 1em;
}
#formWrap p.error_messe::before {
    position: absolute;
    content: '※';
    left: 0;
}
.return-btn-block {
    text-align: center;
    margin-top: 30px;
}
.return-btn-block input {
    padding: 1em 2.5em;
    background-color: var(--primary-color);
    font-weight: 700;
    color: #fff;
    border-radius: 5px;
}
.return-btn-block input:hover {
    background-color: var(--primary-hover-color);
}
.lead {
    text-align: center;
}
.lead_h4 {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}
.vt-form-confirmation-list {
    margin: 0;
    margin-bottom: 50px;
}
#formWrap form {
    margin-top: 30px;
}

@media screen and (min-width: 768px) {
    .error-guide_item {
        padding: 20px 30px;
    }
    .error-guide_h4 {
        font-size: 2.2rem;
    }
    .lead_h4 {
        font-size: 2.2rem;
    }
    #formWrap form {
        margin-top: 50px;
    }
    .vt-form-confirmation-list {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1201px) {
    .lead_h4 {
        font-size: 3rem;
    }
}

/*-----------------------------------------------
   完了画面
------------------------------------------------*/
.complete_item {
    display: block;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.complete_item_inner {
    display: inline-block;
    text-align: left;
}
.complete_headding {
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1em;
}
.complete_detail {
    line-height: 2;
}

@media screen and (min-width: 768px) {
    .complete_item {
        margin-bottom: 80px;
    }
    .complete_headding {
        font-size: 2.6rem;
    }
}

@media screen and (min-width: 1101px) {
    .complete_item {
        margin-top: 80px;
        margin-bottom: 100px;
    }
    .complete_headding {
        font-size: 3em;
    }
    .complete_detail {
        font-size: 1.8rem;
    }
}

@media screen and (min-width: 1301px) {
    .complete_item {
        margin-bottom: 150px;
    }
    .complete_detail {
        font-size: 2rem;
    }
}