@charset "UTF-8"; /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フォーム要素　＞　汎用
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.main_area {
    overflow: visible;
}

.contact_btn {
    display: table;
    position: relative;
}

.require,.any {
    font-size: 1.6rem;
    padding: 2px 6px;
    margin: 0 13px 0 0;
    font-weight: normal;
    color: #fff;
}

.require {
    background: #d9534f;
}

.any {
    background: #78909C;
}

input, textarea, button {
    box-sizing: border-box;
    border: none;
    padding: 8px 12px;
    font-family: var(--main_ff);
}

select {
    padding: 5px;
}

input[type="file"] {
    border: 0;
}

input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="number"], input[type="file"],/* forIE(IEでは入力欄が表示されるため) */
textarea {
    width: 100%;
    background: #f5f5f5;
}

#autozip {
    display: none !important;
}

.cmn_contact_btn p.btn a {
    border: 1px solid #c8c8c8;
    font-size: 5rem;
    letter-spacing: .06em;
    line-height: 1;
    color: var(--theme_m_color);
    position: relative;
    display: table;
    padding: 63px 144px;
    margin: 0 auto;
    margin-bottom: 110px;
    font-weight: 500;
}

.cmn_contact_btn p.btn a::before {
    content: "";
    display: inline-block;
    background: url("../images/common/tel_w.svg") no-repeat 50% / 20px 26px;
    width: 42px;
    height: 42px;
    background-color: var(--theme_m_color);
    border-radius: 2em;
    margin-right: 20px;
}

.cmn_contact_btn p.btn a .num {
    font-family: "Oswald", sans-serif;
}

.cmn_contact_btn p.btn a .open {
    font-size: 1.8rem;
    color: var(--main_color);
    letter-spacing: .04em;
    display: block;
    text-align: center;
    margin-top: 20px;
    padding-left: 20px;
    font-weight: 700;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フォーム要素　＞　チェックボックスのカスタマイズ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* デフォルトのパーツを非表示に */
input[type*="radio"], input[type*="checkbox"] {
    display: none;
}

input[type*="radio"] + span, input[type*="checkbox"] + span {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 10px 10px 10px 40px;
    line-height: 1;
    font-size: 1.8rem;
}

/* インプットの｢枠組み｣部分を作成 */
input[type*="radio"] + span:before, input[type*="checkbox"] + span:before {
    position: absolute;
    content: "";
    border: 1px solid #c8c8c8;
    /* background: #fff; */
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    left: 0;
    top: 50%;
    margin: 0;
    transform: translateY(-50%);
    z-index: 1;
}

/* 上記の｢丸｣バージョン（[class*="exclusive"]はコンタクトフォームで付与されるクラス） */
input[type*="radio"] + span:before, [class*="exclusive"] input[type*="checkbox"] + span:before {
    border-radius: 50%;
}

/* チェックマーク部分 */
input[type*="radio"]:checked + span:after, input[type*="checkbox"]:checked + span:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 10px;
    width: 15px;
    height: 6px;
    margin-top: -7px;
    border-left: 4px solid #E71063;
    border-bottom: 4px solid #E71063;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* 上記の｢丸｣バージョン（[class*="exclusive"]はコンタクトフォームで付与されるクラス） */
input[type*="radio"]:checked + span:after, .form_table input[type*="checkbox"]:checked + span:after {
    border-radius: 50%;
    border-left: 0;
    border-bottom: 0;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    /* transform: translateY(-50%); */
    background: var( --theme_m_color);
    width: 30px;
    height: 30px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    border: 8px solid #FFF;
    /* z-index: 0; */
}

.wpcf7-form-control-wrap label {
    /* padding: 7px 0 0px 0; */
    position: relative;
    /* margin-top: 10px; */
    display: flex;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
WPプラグイン　＞　「コンタクトフォーム」
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
form {
    max-width: 1000px;
    margin: 0 auto;
}

.form_table tr:not(:last-child) {
    border-bottom: 1px solid #dedede;
}

.form_table th, .form_table td {
    padding: 15px 10px;
}

.form_table th {
    vertical-align: top;
    padding-right: 50px!important;
    padding-top: 23px;
    text-align: left;
    width: 30%;
}

.form_table td {
    max-width: 680px;
}

#wpcf_comp_msg {
    background: #ffc;
    padding: 15px;
}

.wpcf7-list-item {
    display: block;
}

.content-form button, .wpcf7 input[type="submit"] {
    margin: 20px auto;
    padding: 10px 50px;
    text-align: center;
    border-radius: 5px;
    font-size: 1.5rem;
    color: white;
    background: #151515;
}

.wpcf7 input[type="submit"].submit_disable {
    background: #ddd;
    /* color: #333; */
    color: #151515;
    border-radius: 0;
}

.wpcf7 select {
    border-radius: 5px;
}

.wpcf7 input,.wpcf7 span ,.wpcf7 textarea {
    border-radius: 5px;
    max-width: 480px;
    font-size: 1.7rem;
}

/*ローディングアイコンがでかくなってボタンの位置がずれる調整2021-04-20hiro*/
.wpcf7 .ajax-loader {
    margin: 0;
}

.wpcf7-checkbox {
    display: block;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フォームセレクトのスタイルを各ブラウザで統一
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
select {
    border-radius: 5px;
    padding: 5px 1.5em 5px .75em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: url(images/form_/images/common/arrow.svg) no-repeat right .4em top 50%/.65em auto #fff;
}

select::-ms-expand {
    display: none;
}

@media (max-width: 750px) {
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
外部(コンタクトフォーム)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */.form_table th, .form_table td {
        /*border: 1px solid #ccc;*/
    }

    .form_table th {
        /*background: #eee;*/
        /*text-align: center;*/
        /*padding: 0 0 15px 0!important;*/
        padding: 20px 0px 8px 0!important;
    }

    .form_table td {
        /* padding: 0 0 30px 0; */
        padding: 0 0 15px 0;
    }

    /* 追加修正2019-10-31tky */
    .wpcf7 input[type="submit"] {
        margin: 0 auto;
        display: block;
    }

    /* 追加修正2019-10-31tky */
    div.wpcf7 .ajax-loader {
        margin: 0 auto;
    }

    span.small {
        font-size: .75em;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
お問い合わせ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-contact p.main_lead {
    font-size: 1.8rem;
    margin-bottom: 70px;
}

.page-contact .main_txt , .page_entry .main_txt {
    font-size: 2rem;
    margin: 0 auto 45px;
    line-height: 1.75;
    max-width: 940px;
    width: 100%;
}

.page-contact form , .page_entry form {
    width: 100%;
    max-width: 940px;
    font-size: 2rem;
}

.page-contact form .req_txt , .page_entry form .req_txt {
    margin-bottom: 25px;
}

.page-contact span.require , .page_entry span.require {
    content: "必須";
    background-color: #A92224;
    color: #fff;
    padding: 1px 4px;
    margin-right: 0.8em;
    border-radius: 0;
    font-size: 1.2rem;
}

.page-contact span.require:not(.big) , .page_entry span.require:not(.big) {
    position: absolute;
    right: 25px;
    padding: 4px 8px;
    top: 50%;
    transform: translateY(-50%);
	line-height: 1.4;
}

.page-contact span.require.big , .page_entry span.require.big {
    font-size: 1.6rem;
    padding: 2px 6px;
}

.page-contact table.form_table th {
    border-color: var(--theme_m_color);
    color: var(--theme_m_color);
    font-weight: 500;
}

.page-entry table.form_table th {
    border-color: #00a8cf !important;
    color: #00a8cf;
}

.page-contact .cmn_btn input[type="submit"] , .page_entry .cmn_btn input[type="submit"] {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    display: table;
    min-width: 344px;
    letter-spacing: .1em;
    padding: 22px 45px;
    border-radius: 60px;
    position: relative;
    border: 2px solid var(--theme_m_color);
    margin: 0 0;
    transition: .2s ease-in;
    cursor: pointer;
    font-family: "Noto Sans JP","游ゴシック体", "Yu Gothic", "yugothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.page-contact .cmn_btn input[type="submit"] {
    background: var(--theme_m_color);
    border-color: var(--theme_m_color);
}

.page_entry .cmn_btn input[type="submit"] {
    background: #00a8cf;
    border-color: #00a8cf;
}

.page-contact .cmn_btn input[type="submit"]:hover , .page_entry .cmn_btn input[type="submit"]:hover {
    background: #fff;
}

.page-contact .cmn_btn input[type="submit"]:hover {
    color: var(--theme_m_color);
}

.page_entry .cmn_btn input[type="submit"]:hover {
    color: #00a8cf;
}

.page-contact .wpcf7-spinner , .page_entry .wpcf7-spinner {
    position: absolute;
    bottom: -30px;
    left: 45%;
    transform: translateX(-50%);
}

table.form_table {
    font-size: 2rem;
    margin-bottom: 3em;
    width: 100%;
    border-collapse: collapse;
}

table.form_table th {
    min-width: 240px;
    border-top: 1px solid;
    padding: 30px 0 30px;
    font-weight: normal;
    text-align: left;
    position: relative;
    width: 25%;
    vertical-align: middle;
}

table.form_table th p {
    font-weight: 600;
}

table.form_table tr:last-of-type th {
    border-bottom: 1px solid var(--theme_m_color);
}

table.form_table th.require::after {
    content: "必須";
    background-color: #A92224;
    color: #fff;
    margin-left: 1em;
    position: absolute;
    right: 3em;
    padding: 5px 0.4em;
    top: 50%;
    font-size: 1.2rem;
    line-height: 1;
    transform: translateY(-50%);
    font-weight: 400;
}

table.form_table td {
    border-top: 1px solid #cccccc;
    padding: 26px 0 26px 28px;
    text-align: left;
    width: 75%;
}

table.form_table td.name_wrap {
}

table.form_table td.name_wrap input {
    max-width: 290px;
}

table.form_table td.w_middle input {
    max-width: 390px;
    margin-right: 10px;
}

table.form_table td.addr_wrap p.zip {
    margin-bottom: 15px;
}

table.form_table td.addr_wrap p.zip input {
    max-width: 181px;
    margin: 0 7px;
}

table.form_table td.tel_wrap input {
    max-width: 290px;
    margin-right: 10px;
}

table.form_table td.radio_wrap .wpcf7-list-item {
    margin: 0;
}

table.form_table td.radio_wrap .wpcf7-list-item:not(:last-child) {
    margin-bottom: 7px;
}

table.form_table td.addr_wrap p.addr_wrap02:not(:last-child) input {
    margin-bottom: 12px;
}

table.form_table td.name_wrap p:first-child {
    margin-bottom: 20px;
}

table.form_table tr:last-of-type td {
    border-bottom: 1px solid #cccccc;
}

.wpcf7-form-control-wrap input, .wpcf7-form-control-wrap textarea {
    padding: 9px 20px;
    font-size: 1.8rem;
    color: #3c3c3c;
    border: solid 1px #c8c8c8;
    border-radius: 3px;
    background-color: #fffff0;
}

table.form_table tr.tr_name td p:first-child {
    margin-bottom: 12px;
}

table.form_table tr.tr_addr p.zip {
}

table.form_table td.txtarea_wrap .wpcf7-form-control-wrap {
    max-width: none;
}

table.form_table td.txtarea_wrap textarea {
    max-width: 95%;
    display: block;
    margin: 0;
}

table.form_table ::placeholder {
    color: #999999;
    font-size: 1.8rem;
}

table.form_table span.wpcf7-not-valid-tip {
    font-size: 1.6rem;
}

table.form_table select {
    border-radius: 3px;
    border: 1px solid #9f9f9f;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: url(../images/common/select_arrow.svg) no-repeat center right 0.85em/11px #fffff0;
    height: 46px;
    line-height: normal;
    width: 240px;
    margin-bottom: 15px;
    color: #3c3c3c;
    font-size: 1.8rem;
    min-height: 46px;
    padding: 12px 20px 12px;
}

.wpcf7 form.invalid .wpcf7-response-output {
    display: none;
}

.col_psa span.wpcf7-not-valid-tip {
    position: absolute;
    bottom: -54px;
    left: 0;
    white-space: pre;
}

.col_psa:has(.wpcf7-not-valid) {
    padding-bottom: 60px;
}

span.wpcf7-spinner {
    width: 100%;
    height: auto;
    background: transparent;
}

.wpcf7-spinner::before {
    content: "送信中です。\Aしばらくお待ちください。";
    white-space: pre;
    width: auto;
    height: auto;
    animation: none;
    top: -10px;
    left: 50%;
    background: transparent;
    transform: translateX(-50%);
    line-height: 1.5;
}

/*============================
//カレンダー関連
============================*/
tr#calendar-row td.calendar_wrap .calendar_type {
    gap: 10px;
    margin-bottom: 15px;
}

tr#calendar-row td.calendar_wrap ul.calendar_items {
    max-width: 560px;
    margin-bottom: 22px;
}

tr#calendar-row td.calendar_wrap ul.calendar_items li {
    font-size: 1.8rem;
    line-height: 1.5;
    color: #a92224;
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
}

tr#calendar-row td.calendar_wrap ul.calendar_items li::before {
    position: absolute;
    content: "※";
    top: 0;
    left: 0;
    color: #a92224;
    font-size: 1.8rem;
}

tr#calendar-row td.calendar_wrap div.calendar_box {
    background: #fcebef;
    padding: 25px 30px 30px;
    width: 95%;
}

tr#calendar-row td.calendar_wrap div.calendar_box h4 {
    font-size: 1.8rem;
    color: #a92224;
    text-align: center;
    margin-bottom: 3px;
}

tr#calendar-row td.calendar_wrap div.calendar_box p {
    font-size: 1.8rem;
    line-height: 2;
    color: #3c3c3c;
}

#calendar-row input {
    padding: 8px 15px;
    min-width: 220px;
}

#calendar-row select {
    margin: 0;
    max-width: 150px;
    padding: 12px 15px;
	width: 100%;
}

/*スマートフォン用CSS*/
@media screen and (max-width: 750px) {
    table.form_table span.wpcf7-not-valid-tip {
        font-size: 1.4rem;
    }

    .col_psa:has(.wpcf7-not-valid) {
        padding-bottom: 45px;
    }

    .col_psa span.wpcf7-not-valid-tip {
        bottom: -24px;
        width: 100vw;
    }

    .kugiri_m02 {
        padding: 32px 0 10vw;
    }

    .cmn_contact_btn p.btn a {
        font-size: 9.0666666vw;
        padding: 6.5vw 8vw;
        min-width: 325px;
        margin-bottom: 10vw;
    }

    .cmn_contact_btn p.btn a::before {
        background-size: 3.599999vw 4.93333333vw;
        width: 8vw;
        height: 8vw;
        margin-right: 2vw;
    }

    .cmn_contact_btn p.btn a .open {
        font-size: 3.733333vw;
        margin-top: 2.5vw;
    }

    .page-contact p.main_lead {
        font-size: 4vw;
        margin-bottom: 7vw;
    }

    .page-contact .main_txt , .page_entry .main_txt {
        font-size: 4vw;
        padding: 0 8px;
        margin-bottom: 34px;
        font-weight: 400;
    }

    .page-contact span.require:not(.big) , .page_entry span.require:not(.big) {
        font-size: 3.5555554666vw;
        top: 17px;
        transform: none;
        margin: 0;
        right: 0;
    }

    .page-contact .req_txt , .page_entry .req_txt {
        font-size: 3.733333333vw;
        font-weight: 400;
    }

    .page-contact span.require.big , .page_entry span.require.big {
        font-size: 3.5555546vw;
        padding: 2px 9px;
    }

    .page-contact .cmn_btn input[type="submit"] , .page_entry .cmn_btn input[type="submit"] {
        font-size: 4.8vw;
        padding: 5.7333333vw 45px 6.266666vw;
        border-radius:9.95vw;
        min-width: auto;
        width: 90%;
        -webkit-appearance: none;
    }

    .page-contact footer, .page-entry footer {
        padding-bottom: 16vw;
    }

    table.form_table {
        font-size: 4vw;
        margin-bottom: 40px;
    }

    table.form_table ::placeholder {
        font-size: 4vw;
    }

    .wpcf7-form-control-wrap input, .wpcf7-form-control-wrap textarea {
        font-size: 4vw;
        padding: 10px 10px;
        margin-bottom: 0;
    }

    table.form_table .mt01 {
        margin-top: 10px;
    }

    table.form_table tr {
        padding: 30px 0;
    }

    table.form_table th {
        width: 100%;
        font-size: 4vw;
        display: block;
        padding: 0;
        padding-top: 20px;
        margin-bottom: 10px;
        position: relative;
    }

    table.form_table tr:last-child th {
        border-bottom: none;
    }

    table.form_table td {
        width: 100%;
        display: block;
        border-top: none;
        padding: 0;
        padding-bottom: 40px;
        line-height: 1.75;
    }

    table.form_table tr:last-child td {
        border: none;
        padding-bottom: 0;
    }

    table.form_table td.name_wrap input {
        max-width: none;
    }

    table.form_table td.addr_wrap input {
        font-size: 4vw;
    }

    table.form_table td.tel_wrap input {
        max-width: none;
    }

    table.form_table td.radio_wrap .wpcf7-list-item:not(:last-child) {
        margin-bottom: 0;
    }

    table.form_table td .form_txt {
        font-size: 4vw;
        display: inline-block;
        font-weight: 400;
    }

    table.form_table select {
        min-height: auto;
        height: auto;
        width: auto;
        padding: 15px 40px 13px 8px;
        font-size: 4vw;
    }

    input[type*="radio"] + span, input[type*="checkbox"] + span {
        font-size: 4.5333333333vw;
        padding: 2.8vw 2.666666vw 2.8vw 10.666666vw;
        font-weight: 400;
    }

    input[type*="radio"] + span:before, input[type*="checkbox"] + span:before {
        width: 7.4666666vw;
        height: 7.4666666vw;
        border-color: #c8c8c8;
        left: 0;
        /* top: calc(50% - 3.5vw); */
        margin: 0;
    }

    input[type*="radio"]:checked + span:after, [class*="exclusive"] input[type*="checkbox"]:checked + span:after {
        width: 7.4666666vw;
        height: 7.4666666vw;
        /* left: 1.866666666666667vw; */
        margin: 0;
        /* top: calc(50% - 1.9vw); */
        border-width: 2.05128vw;
    }

    table.form_table td.txtarea_wrap textarea {
        max-width: 100%;
        height: 40vw;
    }

    .wpcf7-spinner::before {
        font-size: 12px;
        top: -20px;
        left: 46%;
    }

    /*============================
//カレンダー関連
============================*/
    tr#calendar-row td.calendar_wrap .calendar_type {
    }

    tr#calendar-row td.calendar_wrap ul.calendar_items {
    }

    tr#calendar-row td.calendar_wrap ul.calendar_items li {
        font-size: 1.7rem;
    }

    tr#calendar-row td.calendar_wrap ul.calendar_items li::before {
    }

    tr#calendar-row td.calendar_wrap div.calendar_box {
        width: 100%;
        padding: 1.5rem 2rem;
    }

    tr#calendar-row td.calendar_wrap div.calendar_box h4 {
        font-size: 1.7rem;
    }

    tr#calendar-row td.calendar_wrap div.calendar_box p {
        font-size: 1.7rem;
    }
	
	.calendar_type {
		justify-content: space-between;
	}
	
	.calendar_type > p{
		flex: 1 1 0;  /* basis 0で計算させる */
  		min-width: 0; /* ←これ重要 */
		
	}
	
	.calendar_type > p > span{
		display: block;
	}

    #calendar-row input {
        padding: 9px 15px;
		height: 4.2rem;
		-webkit-appearance: none;
		min-width: auto;
  		appearance: none;
		width: 100%;
		
    }

    #calendar-row select {
        max-width: none;
        min-width: 150px;
    }
	
	.contact_btn {
        width: 80%;
    }
}

.page-complete .main_area p.main_txt {
    line-height: 2.5;
    margin: 0 auto 70px;
    text-align: center;
}

.page-complete .main_area p.btn {
}

.page-complete .main_area p.btn a {
    min-width: 370px;
    margin: 0 auto;
    padding: 15px 30px;
}

.page-complete .main_area p.btn a::after {
    content: none;
}

@media screen and (max-width: 750px) {
    .page-complete .main_area p.main_txt {
        font-size: 4vw;
        line-height: 2;
        text-align: left;
        margin-bottom: 35px;
        font-weight: 400;
    }

    .page-complete .main_area p.btn {
    }

    .page-complete .main_area p.cmn_btn02 a {
        padding: 5vw 45px;
        border-radius: 9.33333333vw;
        min-width: auto;
        width: 77%;
        font-size: 4vw;
        font-size: 4.8vw;
        padding: 4.9333333vw 10px 5.466666vw;
    }
}
