@charset "utf-8";

/* ------------------------------
 フォーム
------------------------------ */

/* ------------------------------
 ボタン
------------------------------ */
.check-boxes + .tac label {
	position: relative;
}
.btn-a, .btn.back {
	-webkit-appearance: none;
	display: inline-block;
	position: relative;
	min-width: 350px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background-color: #233c6e;
    padding: 15px;
    border-radius: 36px;
	transition: .3s ease-in-out;
	cursor: pointer;
}
.btn-a:disabled {
	color: #fff;
    background-color: #afafb2;
    border-color: #afafb2;
}
.check-boxes + .tac :is(label, .btn.back)::after {
	content: "";
	position: absolute;
	display: inline-block;
	width: 15px;
	height: 11px;
	right: 25px;
	top: 0;
	bottom: 0;
	margin: auto;
	background: url('../img/icon_arrow_w.svg') no-repeat center / 100%;
	-webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.check-boxes a[target="_blank"]::after {
	content: "";
  	display: inline-block;
	width: 11px;
	height: 11px;
	background: url('../img/icon_blank.svg') no-repeat;
	border: none;
	transform: rotate(0deg);
	margin-left: 6px;
	margin-right: 8px;
}

.tac .btn {
	margin-left: auto;
	margin-right: auto;
}
.btn.back {
	font-size: 1.4rem;
	line-height: 1.4;
	color: #fff;
	min-width: 120px;
	width: 120px;
	line-height: 1.5;
	padding: 15px 10px;
	background-color: #969696;
}
.btn.back::after {
	left: 25px;
	transform: rotate(135deg) !important;
}
/* ------------------------------
 ボタン（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
	:is(.btn-a, .btn.back):hover {
		opacity: .7;
	}
	.btn-a:disabled:hover {
		opacity: 1;
	}
    .check-boxes + .tac label + .btn.back {
        margin-right: -120px !important;
        float: left;
		line-height: 2;
        padding: 20px;
    }
}
/* ------------------------------
 ボタン（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.btn-a, .btn.back {
		min-width: 280px;
	}
	.btn-a {
		padding: 15px;
		line-height: 1.5;
	}
    .check-boxes + .tac label + .btn.back {
		width: 300px;
        margin-top: 10px;
    }
}
.wpcf7-spinner {
	display: none !important;
}
.wpcf7-list-item {
	margin: 0 1.5em 0 0;
}
.wpcf7 form.invalid .wpcf7-response-output {
	border-color: #ffedee;
	background: #ffedee;
	color: #dc3232;
	font-weight: 500;
	padding: 15px;
}
.wpcf7 form.sent .wpcf7-response-output {
	border-color: #fff !important;
}
/* ------------------------------
 パーツ装飾
------------------------------ */
textarea::placeholder,
input::placeholder {
	color: #cccccc;
}
input[type='text'] ,
input[type='tel'] ,
input[type='email'] ,
textarea  {
	width: 100%;
	font-weight: normal;
	color: #000;
	padding: 6px 12px;
	text-align: left;
	border: none;
	border-radius: 6px;
	background-color: #f2f3f4;
	-webkit-appearance: none;
	vertical-align: middle;
}
textarea {
	width: 100%;
    height: 154px;
    min-height: 154px;
	min-width: 100%;
	max-width: 850px;
}
input[type='text']:focus,
input[type='tel']:focus,
input[type='email']:focus,
textarea:focus,
select:focus {
    outline: 0;
}

label {
	vertical-align: baseline;
	display: inline-block;
	cursor: pointer;
}
/* ------------------------------
 パーツ装飾（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	textarea {
		width: 100%;
		height: auto;
		min-height: 154px;
		min-width: 100%;
		max-width: 307px;
	}
}

/* ------------------------------
 ラジオボタン
------------------------------ */
.mw_wp_form .horizontal-item + .horizontal-item {
	margin-left: 15px;
}
input[type=radio] {
	display: none;
}
input[type=radio] + span {
	position: relative;
	margin: 5px 0;
	display: block;
}
input[type=radio] + span::before {
	content: '';
	display: inline-block;
	position: relative;
	width: 16px;
	height: 16px;
	background-color: #fff;
	border: solid 1px #999;
	border-radius: 100%;
	vertical-align: middle;
	margin-bottom: 4px;
    margin-right: 4px;
}
input[type=radio] + span::after {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	background-color: transparent;
	border-radius: 100%;
	position: absolute;
	top: 4px;
  	left: 6px;
	bottom: 0;
	margin: auto;
}
input[type=radio]:checked + span::after {
	background-color: #233c6e;
}
/* ------------------------------
 ラジオボタン（PC）
------------------------------ */
@media screen and (max-width: 767px) {
	span.horizontal-item {
		display: block;
	}
	.mw_wp_form .horizontal-item + .horizontal-item {
		margin-left: 0;
	}
	input[type=radio] + span::after {
		top: 2px;
		left: 6px;
	}
}

/* ------------------------------
 チェックボックス
------------------------------ */
input[type=checkbox] {
	display: none;
}
input[type=checkbox] + span {
	position: relative;
}
input[type="checkbox"] + span::before {
	content: '';
	display: inline-block;
	position: relative;
	width: 16px;
	height: 16px;
	border: 1px solid #8d8f92;
	background: #fff;
	vertical-align: top;
	margin-top: 8px;
	margin-right: 8px;
}
input[type="checkbox"] + span::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 9px;
    height: 9px;
}
input[type="checkbox"]:checked + span::after {
    top: -1px;
  	left: 4px;
    width: 9px;
    height: 6px;
    border-left: 2px solid #233c6e;
    border-bottom: 2px solid #233c6e;
    transform: rotate(-45deg);
    background: none;
}
@media screen and (max-width: 767px) {
	input[type="checkbox"] + span::before {
		margin-top: 4px;
		margin-right: 5px;
	}
}

/* 一覧 */
.boxList {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 50px;
}
.boxList label {
    margin: 0;
}

/* ------------------------------
 プルダウン装飾

.selectPD {
	width: 250px;
}
.selectPD > label {
	width: 100%;
	position: relative;
}
.selectPD > label::before {
	content: "";
	width: 39px;
	height: 100%;
	background-color: #c0c0c0;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	pointer-events: none;
	z-index: 1;
	border-radius: 0 6px 6px 0;
}
.selectPD > label::after {
	content: "";
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 5px;
	right: 14px;
	margin: auto;
	pointer-events: none;
	z-index: 1;	
}
select {
	font-size: 1.6rem;
	width: 100%;
	border-radius: 0;
	position: relative;
	height: 42px;
	line-height: 42px;
	padding: 0 39px 0 7px;
	color: #000;
	vertical-align: middle;
	background-color: #f2f3f4;
	-webkit-appearance: none;
	border-radius: 6px;
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}
------------------------------ */
/* ------------------------------
 住所
------------------------------ */
input.zip {
	width: 200px !important;
}
.zip_srch {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    background-color: #233c6e;
    border-radius: 30px;
    vertical-align: top;
    padding: 9px 16px;
    transition: .3s ease-in-out;
    cursor: pointer;
	margin: 4px 0 5px 10px;
}
input[type="text"].p-postal-code {
	width: 270px;
	margin-left: 8px;
}
input[type="text"].p-region {
	width: 300px;
	margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
	.zip_srch:hover {
		opacity: .7;
	}
}
/* ------------------------------
 （SP）
------------------------------ */
@media screen and (max-width: 767px) {
	input.zip {
		width: 150px !important;
	}
	.zip_srch {
		font-size: 1.5rem;
	}
	input[type="text"].p-postal-code {
		width: 200px;
		margin-left: 8px;
	}
	input[type="text"].p-region {
		width: 226px;
	}
}

/* ------------------------------
 お問合せ項目
------------------------------ */
.contents .wp-block-table table th {
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #d0d0d1;
	background: none;
	width: 23%;
	padding: 25px 0 10px !important;
}
.contents .wp-block-table table tr:first-child th,
.contents .wp-block-table table tr:first-child td {
	border-top: 1px solid #d0d0d1;
}
.contents .wp-block-table table td {
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #d0d0d1;
	padding: 15px 10px;
}
.contents .wp-block-table table :is(th, td) {
    padding: 20px 0;
}
th span {
	display: inline-block;
	min-width: 44px;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1;
	color: #fff;
	background-color: #d2363a;
	border-radius: 20px;
	padding: 3px 7px 4px;
	margin-left: 10px;
	text-align: center;
}
th span.any {
	background-color: #808080;
}
.horizontal-item + .horizontal-item {
	margin-left: 30px;
}
/* ------------------------------
 お問合せ項目（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.contents .res table :is(th, td) {
		padding: 15px;
	}
	.contents .wp-block-table table tr:first-child th {
		border-top: 1px solid #d0d0d1;
	}
	.contents .wp-block-table table tr:first-child td {
		border-top: none;
	}
	.contents .wp-block-table table th {
		padding: 15px 0 0 !important;
	}
	.contents .wp-block-table table td {
		border-bottom: 1px solid #d0d0d1 !important;
		padding: 10px 0 20px !important
	}
}

/* ------------------------------
 確認画面
------------------------------ */
.mw_wp_form_confirm :is(.zip_srch, .preview_hide),
.mw_wp_form_confirm .selectPD > label::before,
.mw_wp_form_confirm .selectPD > label::after {
	display: none;
}

.mw_wp_form_confirm :is(.selectPD, .selectPD ~ p) {
	width: auto;
	display: inline-block;
	margin-bottom: 0 !important;
}

.colorBg {
	background: #f4f3ef;
	border-radius: 10px;
	padding: 40px;
}
.colorBg .tel {
	color: #233c6e;
	font-size: 3.6rem;
	font-weight: 700;
}
.colorBg .tel strong {
	font-size: 4.2rem;
	font-weight: 700;
}
@media screen and (max-width: 767px) {
	.colorBg {
		padding: 30px 5%;
		font-size: 1.4rem;
	}
	.colorBg .tel {
		font-size: 2rem;
	}
	.colorBg .tel strong {
		font-size: 2.4rem;
	}
}
/* ------------------------------
 入力 確認 送信完了 フロー
------------------------------ */
.inquiry_flow {
    display: flex;
    justify-content: space-between;
    margin: auto;
    position: relative;
    margin-bottom: 40px;
}
.inquiry_flow::before {
    content: "";
    display: block;
    height: 2px;
    width: 450px;
    background: #dddddd;
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    margin: auto;
}
.inquiry_flow .box {
    width: 70px;
    text-align: center;
    z-index: 2;
}
.inquiry_flow .box span {
    display: block;
    border-radius: 50%;
    background: #fff;
	border: 1px solid #233c6e;
    color: #233c6e;
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    width: 54px;
    height: 54px;
    display: grid;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
}
.inquiry_flow .box.on span {
    background: #233c6e;
	color: #fff;
}
.inquiry_flow .box p {
    color: #1a1a1a;
	font-size: 1.6rem;
}
@media print, screen and (min-width:768px) {
    .inquiry_flow {
        width: 480px;
    }
}
@media screen and (max-width:767px) {
    .inquiry_flow {
        margin-bottom: 20px;
    }
    .inquiry_flow::before {
        width: 95%;
    }
    .inquiry_flow .box {
        width: 54px;
    }
    .inquiry_flow .box span {
        margin: 0 auto 3px;
    }
    .inquiry_flow .box p {
        font-size: 1.3rem;
    }
}
::placeholder {
	color: #a7a7ab !important;
}