@charset "UTF-8";

    
/* 入力フォーム
--------------------------------------------------------------------*/
.required {
	color: #df6749;
	font-size: 80%;
	box-sizing: border-box;
	vertical-align: .1em;
}
.mail_txt {
	margin-top: 1em;
}

/* テーブル */
.com_form table {
	width: 100%;
	font-size: 106%;
	line-height: 1.6;
}
.com_form caption {
	text-align: right;
	font-size: 93%;
	margin-bottom: .8em;
}
.com_form tr:nth-child(odd) {
	background: #fdf4f1;
}
.com_form tr:nth-child(even) {
	background: #fefbfa;
}
.com_form th,
.com_form td {
	box-sizing: border-box;
}
.com_form th {
	width: 260px;
	text-align: left;
	font: var(--font-min);
	font-size: 106%;
	letter-spacing: .15em;
	font-feature-settings: "palt";
	vertical-align: top;
	white-space: nowrap;
	padding: 3rem 1.5% 3rem 3%;
}
.com_form td {
	/* vertical-align: top; */
	padding: 2.5rem 6% 2.5rem 0;
}

/* レイアウト */
.com_form .age input {
	margin-right: 1em;
}
.com_form .kakunin_txt {
	font-size: 93%;
	margin-top: 1.5em;
}


/*開閉ボックス*/
.open_container .open_box {
	display: none;
}
.open_btn p {
	position: relative;
	cursor: pointer;
	display: inline-block;
	color: #df6749;
	font-size: 125%;
	letter-spacing: .15em;
	line-height: 1.5;
	padding-right: 1.3em;
}
.open_btn span {
	border-bottom: 1px solid #df6749;
}
.open_btn p::before {
    position: absolute;
    content: "";
    width: 1.1em;
    height: 1.1em;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/contact/open.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 98% auto;
}
.open_btn.active p::before {
    background-image: url(../images/contact/close.svg);
}
.open_btn:hover span {
	border-bottom: none;
}




/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

/* テーブル */
.com_form table {
	font-size: 100%;
}
.com_form th {
	width: 28%;
	font-size: 105%;
	letter-spacing: .05em;
	padding: 1.5em 2.5%;
}
.com_form td {
	padding: 1.5em 3% 1.5em 0;;
}
   
.open_btn p {
    font-size: 115%;
    letter-spacing: .1em;
}

}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
	
.mail_txt {
	font-size: 90%;
}
	
/* テーブル */
.com_form table {
	font-size: 100%;
}
.com_form tr,
.com_form th,
.com_form td {
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.com_form th,
.com_form td {
	font-size: 100%;
}
.com_form th {
    letter-spacing: .1em;
	padding: 1em 5% .7em;
	border-bottom: none;
}
.com_form td {
	padding: 0 4% 1.2em;
}

/* レイアウト */    
 .com_form .kakunin_txt {
	margin-top: 1em;
}
	
.open_btn p {
    font-size: 110%;
    letter-spacing: .1em;
}

}


/* 入力項目デザイン
------------------------------------------------------------------*/
.com_form .max_txt {
	width: 100%;
}
.com_form .mid_txt {
	width: 57%;
}
.com_form .min_txt {
	width: 150px;
}
/********************/
/* テキストボックス */
/********************/
.com_form input:is([type=text], [type=number], [type=tel], [type=email]) {
	padding: .7em;
	height: 2.8em;
	box-sizing: border-box;
	background: #fff;
	font-size: 100%;	
	outline: none;   
	border: solid 1px #c4c2c2;
	border-radius: 0;
	-webkit-appearance: none;
}
.com_form textarea {
	padding: 1em;
	box-sizing: border-box;
	background: #fff;
	font-size: 100%;
	font-weight: normal;
	outline: none;
	border: solid 1px #c4c2c2;
	border-radius: 0;
	-webkit-appearance: none;
	height: 200px;
	resize: none;
}
::placeholder {
    color: #ADAAA7;
	font-weight: normal;
}

/*********************************/
/* radio・checkbox */
/*********************************/
.com_form input[type=radio],
.com_form input[type=checkbox] {
    display: inline-block;
}
.com_form label:has(input[type=radio]),
.com_form label:has(input[type=checkbox]) {
    position: relative;     
    display: inline-block;
	white-space: nowrap;
    cursor: pointer;
	margin-right: 0;
}
 
@media (min-width: 1px) {
    .com_form input[type=radio],
    .com_form input[type=checkbox] {
		position: absolute;		/* 上に別の要素が乗るようにする */
		z-index: -1;			/* 最背面にする */
		pointer-events: none;	/* クリック無効 */
		opacity: 0;
        margin: 0;
    }
    .com_form label:has(input[type=radio]),
    .com_form label:has(input[type=checkbox]) {
		display: flex;
		align-items: center;
		padding-left: 2em;
		vertical-align: top;
    }
    .com_form label:has(input[type=radio])::before,
    .com_form label:has(input[type=checkbox])::before {
        content: "";
        position: absolute;
        top: .1em;
        left: 0;
        display: block;
		background-color: #FFF;
		border: 1px solid #c4c2c2;
        width: 1.3em;
        height: 1.3em;
		box-sizing: border-box;
    }
    .com_form label:has(input[type=radio])::before {
        border-radius: 50%;
    }
    .com_form label:has(input[type=radio]:checked):after,
    .com_form label:has(input[type=checkbox]:checked):after {
        content: "";
        position: absolute;
        top: .7rem;
        display: block;
    }
    .com_form label:has(input[type=radio]:checked):after {
        width: calc(1.3em - 8px);
        height: calc(1.3em - 8px);
        background: #ec9176;
        border-radius: 50%;
        left: 4px;
		top: calc(.1em + 4px);
    }
    .com_form label:has(input[type=checkbox]:checked):after {
        left: .2em;
		top: .2em;
        width: 1.3em;
        height: .7em;
        border-left: 4px solid #ec9176;
        border-bottom: 4px solid #ec9176;         
        rotate: -45deg;
    }
}

/******************/
/* コンボボックス */
/******************/
.com_form select {
	font-size: 100%;
	padding: 0.7em;
	padding-right: 2em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: linear-gradient(to bottom, #E6E6E6 0, #FFF 100%);
    outline: none;
    border: solid 1px #b3b3b3;
	-webkit-appearance: none;
}

/**********/
/* ボタン */
/**********/
.com_form input[type="submit"],
.com_form input[type="button"],
.com_form input[type="reset"] {
	-webkit-appearance: none;
	width: 100%;
	min-width: 18em;
	max-width: 100%;
	height: 4.2em;
	border: none;
	cursor: pointer;
	border-radius: 0;
	color: #fff;
	font: var(--font-min);
	font-size: min(2vw,126%);
	letter-spacing: .1em;
	line-height: 1.2em;
	box-sizing: border-box;
	padding: 1em 2em;
	transition: background-color .5s;
}
.com_form input[type="submit"] {
	background-color:#ec9176;
}
.com_form input[type="submit"]:disabled {
	pointer-events: none;
	background-color: #9B9690;
}
.com_form input[type="reset"],
.com_form input[type="button"] {
	background-color: #c0c0c0;
}
.com_form input[type="submit"]:hover {
	background-color:#df6749;
}
.com_form input[type="reset"]:hover,
.com_form input[type="button"]:hover {
	background-color: #8c8484;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

.com_form input:is([type=text], [type=number], [type=tel], [type=email]) {
	height: 2.5em;
	padding: .5em .7em;
}
.com_form select {
	padding: .5em;
}

}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.com_form .mid_txt {
	width: 100%;
}
.com_form .min_txt {
	width: 30%;
}

.com_form input:is([type=text], [type=number], [type=tel], [type=email]) {
	height: 2.2em;
}
.com_form textarea {
	height: 150px;
}
	
.com_form input[type="text"],
.com_form select {
	height: 2.2em;
	padding: .5em;
}
.com_form input[type="submit"],
.com_form input[type="button"],
.com_form input[type="reset"] {
	font-size: 105%;
	letter-spacing: .1em;
	padding: 1.2em 0;
}

}





/* ドメイン設定
-----------------------------------------------------------------------------*/
.mobile_attention {
	width: 100%;
	color: #656161;
	letter-spacing: .05em;
	line-height: 1.8;
	margin-top: 1.5em;
}
.mobile_attention .open_box {
	font-size: 88%;
	margin-top: 1.0em;
}
.mobile_attention ul {
	display: flex;
	gap: .5em 1em;
	line-height: 1.2em;
	margin-top: 1.0em;
}
.mobile_attention li {
	position: relative;
	padding-left: 1.2em;
}
.mobile_attention li::before {
	position: absolute;
	content: "";
	left: 0;
	top: .4em;
	vertical-align: middle;
	width: 5px;
	height: 5px;
	border-top: 1px solid #666;
	border-right: 1px solid #666;
	transform: rotate(45deg);
}
.mobile_attention a:hover {
	text-decoration: underline;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

}






/* 個人情報
-----------------------------------------------------------------------------*/
.privacy {
	box-sizing: border-box;
	padding: 0 5%;
	border-top: 1px solid rgba(98,97,97,0.5);
	border-bottom: 1px solid rgba(98,97,97,0.5);
	margin-top: 6.5%;
}
.privacy .open_btn {
    text-align: center;
	padding: 40px 0;
}
.privacy .open_box {
	max-width: 1000px;
    padding-bottom: 40px;
	margin: 0 auto;
}
.privacy .open_box > p {
    margin-bottom: 2.6em;
}
.privacy dl:last-of-type {
	margin-top: 1em;
}
.privacy dt {
	position: relative;
	color: #df6749;
	font-size: 120%;
	letter-spacing: .15em;
	line-height: 1.5;
	padding-left: 1.4em;
	margin-bottom: .5em;
}
.privacy dt::before {
	position: absolute;
	font-family: 'fontello';
	content: '\e808';
	color: rgba(223,103,73,0.5);
	font-size: 120%;
	left: 0;
	top: -0.15em;
}
.privacy .dl_box dd {
	font-size: 93%;
}
.privacy .dl_box dd li {
	text-indent: -1.6em;
	margin-left: 1.6em;
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.privacy {
	margin-top: 5%;
}
.privacy dt {
	font-size: 110%;
	letter-spacing: .1em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
	
.privacy {
	padding: 0 2%;
}
.privacy .open_btn {
	padding: 1.8em 0;
}
.privacy .open_box > p {
    margin-bottom: 2em;
}
.privacy dt {
	font-size: 105%;
	letter-spacing: .1em;
}
}




/* submit
-----------------------------------------------------------------------------*/
.submit_box {
	text-align: center;
	margin-top: 50px;
}
.submit_box .fs17 {
	line-height: 2.6;
}
.form_btnlist {
	display: flex;
	justify-content: center;
	gap: .6em .8em;
	margin-top: 4%;
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

.submit_box {
	margin-top: 5%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.submit_box {
	margin-top: 7%;
}
.submit_box .fs17 {
	text-align: left;
	line-height: 1.8;
}
.form_btnlist {
	flex-wrap: wrap;
	margin-top: 10%;
}
.form_btnlist > li {
	width: 90%;
}
}





/* 確認画面、完了ページ
-----------------------------------------------------------------------------*/
.kakunin .m_img_area::before {
	background-image: url("../images/contact/m_img@2x.jpg")
}
.kakunin .submit_box ul {
	display: flex;
	justify-content: center;
}
.kakunin .submit_box ul > li {
	width: 16em;
	margin: 0 .5em;
}
.kakunin .com_form th,
.kakunin .com_form td {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
	
.kakunin .com_form th {
    width: 300px;
}
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
	

}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
	
.kakunin .com_form th {
	padding-top: 1rem;
	padding-bottom: 0;
}
.kakunin .com_form td {
	padding-top: 1rem;
	padding-bottom: 1.2rem;
}
.kakunin .submit_box ul > li {
	width: 48%;
	margin: 0 .3em;
}

}




/* ========================================================
  
  CF7: カスタム

======================================================== */
.com_form .wpcf7-not-valid-tip {
	position: absolute;
	display: inline-block;
	color: #FFF;
	font-size: 80%;
	background-color: var(--color-red);
	padding: .2em .5em;
	border-radius: 2px;
	left: 0;
	top: 100%;
	z-index: 1;
	white-space: nowrap;
}
/* tbl_form */
.tbl_form .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
	display: block;
	margin-top: 1.6em;
}
.wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 1em 2em;
}
.tbl_form .wpcf7-list-item {
	margin: 0;
}
/* submit_box */
.form__submit .wpcf7-acceptance {
	display: block;
	font: var(--font-min);
}
.wpcf7-response-output {
	text-align: center;
	color: var(--color-red);
	line-height: 1.5;
	border-color: currentColor !important;
	padding: 0.6em 1em !important;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.wpcf7-radio.col-2 {
	display: grid;
	justify-content: space-between;
	grid-template-columns: 50% 50%;
}
.wpcf7-radio.col-2 > li:last-of-type {
	grid-column: 1/3;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

/* tbl_form */
.tbl_form .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
	margin-top: .8em;
}
.wpcf7-radio {
	gap: .6em 1.2em;
}
/* submit_box */
.form__submit .wpcf7-acceptance {
	font-size: 90%;
}
}
