@charset "UTF-8";

/*---------------------------------------------------------
tbl_form
---------------------------------------------------------*/
.tbl_form {
	width: 100%;
	font-size: 106%;
	line-height: 1.5;
}
.tbl_form tr:nth-of-type(odd) {
	background-color: #FAF9ED;
}
.tbl_form th,
.tbl_form td {
	padding: 2rem 3.8%;
}
.tbl_form th {
	width: 24%;
	min-width: max-content;
	text-align: left;
	font-size: min(1.6vw,112%);
	font-weight: bold;
	letter-spacing: .16em;
	white-space: nowrap;
}
.tbl_form th.va_t {
	vertical-align: top;
	padding-top: 2.5rem;
}
.tbl_form td {
	width: 76%;
	padding-left: 0;
}
.tbl_form td label {
	white-space: nowrap;
	margin-right: 1em;
}
.tbl_form td .kakunin_txt {
	color: #A98872;
	font-size: 88%;
	margin: .6em 0 .4em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.tbl_form {
	font-size: 100%;
}
.tbl_form th,
.tbl_form td {
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.tbl_form th {
	width: 28%;
	font-size: 105%;
	letter-spacing: .08em;
}
.tbl_form td {
	width: 72%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.tbl_form {
	font-size: 95%;
}
.tbl_form tr,
.tbl_form th,
.tbl_form td {
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.tbl_form th,
.tbl_form td {
	padding: 1rem 5%;
}
.tbl_form th {
	font-size: 105%;
	letter-spacing: .08em;
}
.tbl_form th.va_t {
	padding-top: 1em;
}
.tbl_form td {
	padding-top: 0;
	padding-bottom: 1.2rem;
}
}
/*---------------------------------------------------------
input
---------------------------------------------------------*/
/********************/
/* テキストボックス */
/********************/
.com_form input[type=text],
.com_form input[type=tel],
.com_form input[type=email],
.com_form textarea {
	width: 100%;
	height: 2.6em;
	padding: .4em 1em;
	box-sizing: border-box;
	background: #FFF;
	font-size: 100%;	
	outline: none;   
	border: 1px solid #CDD0CE;
	border-radius: 0;
}
.com_form textarea {
	height: 15em;
	padding: 1em;
}
::placeholder {
    color: rgba(73,41,34,0.6);
	font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans","游ゴシック","Yu Gothic",Meiryo,sans-serif;
	font-weight: normal !important;
	letter-spacing: .12em;
}
/*********************************/
/* ラジオボタン・チェックボックス */
/*********************************/
.com_form input[type=radio],
.com_form input[type=checkbox] {
    display: inline-block;
}
.com_form input[type=radio] + label,
.com_form input[type=checkbox] + label {
    position: relative;     
    display: inline-block;
	white-space: normal;
    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;	/* クリック無効 */
		visibility: hidden;		/* 非表示 */
        margin: 0;
    }
    .com_form input[type=radio] + label,
    .com_form input[type=checkbox] + label {
		padding-left: 1.6em;
    }
    .com_form input[type=radio] + label::before,
    .com_form input[type=checkbox] + label::before {
        content: "";
        position: absolute;
        top: .2rem;
        left: 0;         
        box-sizing: border-box;
        display: block;
		background-color: #FFF;
		border: 1px solid #DFDEE2;
        width: 17px;
        height: 17px;
    }
    .com_form input[type=radio] + label::before {
        border-radius: 50%;
    }
    .com_form input[type=radio]:checked + label::after,
    .com_form input[type=checkbox]:checked + label::after {
        content: "";
        position: absolute;
        top: .8rem;       
        box-sizing: border-box;
        display: block;
    }
    .com_form input[type=radio]:checked + label::after {
        width: 11px;
        height: 11px;
        background: #DF7C00;
        border-radius: 50%;
        left: 3px;
		top: 6px;
    }
    .com_form input[type=checkbox]:checked + label::after {
        left: 2px;
		top: 0;
        width: 20px;
        height: 11px;
        border-left: 4px solid #DF7C00;
        border-bottom: 4px solid #DF7C00;         
        rotate: -45deg;
    }
}
/******************/
/* コンボボックス */
/******************/
.com_form select {
	width: 100%;
    padding: .4em 1em;
	padding-right: 3.2em !important;
	height: 3.8em;
	box-sizing: border-box;
	background: #FFF;
	font-size: 100%;	
    cursor: pointer;
    outline: 0;
	border: 1px solid #DFDEE2;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
}
.select_box {
	position: relative;
	max-width: 500px;
}
.select_box::before {
	position: absolute;
	content: "";
    width: 0;
    height: 0;
    border-color: #7b7b7b transparent transparent transparent;
    top: 0;
	bottom: 0;
    right: 1.5em;
	margin: auto;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0 5px;
}
/**********/
/* ボタン */
/**********/
.com_form button {
	position: relative;
	cursor: pointer;
	width: 18em;
	max-width: 100%;
	text-align: center;
	color: #FFF;
	font-family: inherit;
	font-size: min(2vw,118%);
	font-weight: bold;
	letter-spacing: .15em;
	line-height: 1.4;
	background-color: #CCD0CF;
	box-sizing: border-box;
	border: none;
	padding: 1.5em;
	border-radius: 3em;
	transition: background-color .5s, filter .5s;
}
.com_form button:hover {
	background-color: #ccc;
}
.com_form button[type="submit"] {
	width: 25em;
	color: inherit;
	background: linear-gradient(90deg, rgba(236,116,122,0.6) 13%, rgba(255,232,154,0.6) 88%);
}
.com_form button[type="submit"]:hover {
	background-color: rgba(236,116,122,0.6);
}
.com_form button[type="submit"]:disabled {
	filter: grayscale(1);
	pointer-events: none;
}
.com_form button[type="submit"]::after {
	position: absolute;
	font-family: 'fontello';
	content: '\e800';
	font-weight: normal;
	right: 2em;
	top: 50%;
	translate: 0 -50%;
	pointer-events: none;
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form input[type=text],
.com_form input[type=tel],
.com_form input[type=email] {
	height: 3em;
	padding: .5em .8em;
}
/**********/
/* ボタン */
/**********/
.com_form button {
	width: 15em;
}
.com_form button[type="submit"] {
	width: 20em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form input[type=text],
.com_form input[type=tel],
.com_form input[type=email],
.com_form textarea {
	height: 3em;
	font-size: 16px;
}
.com_form textarea {
	height: 12em;
}
.com_form input[type=radio] + label::before,
.com_form input[type=checkbox] + label::before {
	top: .05rem;
}
.com_form input[type=radio]:checked + label::after {
	top: 4px;
}
/**********/
/* ボタン */
/**********/
.com_form button {
	font-size: 100%;
	padding: 1.2em;
}
.com_form button {
	width: 15em;
	letter-spacing: .1em;
}
.com_form button[type="submit"] {
	width: 20em;
}
}
/*---------------------------------------------------------
input-layout
---------------------------------------------------------*/
.tbl_form .mid_txt {
	max-width: 484px !important;
}
.com_form .min_txt {
	width: 30% !important;
	max-width: 197px !important;
}
/* chk_list */
.tbl_form .chk_list {
	display: flex;
	flex-wrap: wrap;
	line-height: 1.4;
}
.tbl_form .chk_list > li {
	white-space: nowrap;
	margin: .5em 0;
    margin-right: 5em;
}
.tbl_form .chk_list > li:last-of-type {
	margin-right: 0;
}

/* type_add */
.tbl_form .type_add input.p-postal-code {
	width: 52%;
	margin-bottom: 1em;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.tbl_form .chk_list.col2 {
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(2,49%);
}
.tbl_form .chk_list.col2 > li {
	margin-right: 0;
}
.tbl_form .chk_list.col2 > li.txt_max {
	grid-column: 1 / 3;
}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.tbl_form input.p-postal-code {
	width: 40%;
	margin-bottom: .5em;
}
.tbl_form .chk_list > li {
	margin: .3em 0;
    margin-right: 2em;
}
}
/*---------------------------------------------------------
icon_open
---------------------------------------------------------*/
.com_form .icon_open {
	width: 1em;
	height: 1em;
	border-radius: 50%;
	background-color: #F5F2E8;
	margin-left: .8em;
}
.com_form .icon_open::before,
.com_form .icon_open::after {
	width: .5em;
	height: 1px;
	background: #4B2F2C;
}
/*---------------------------------------------------------
open_container
---------------------------------------------------------*/
.open_container {
	border: 1px solid #4B2F2C;
}
.open_container .open_btn {
	text-align: center;
	font-size: min(2vw,118%);
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: .1em;
	box-sizing: border-box;
	padding: 1.5em 0;
	transition: background-color .5s;
}
.open_container .open_btn:hover {
	background-color: #FAF9ED;
}
.open_container .open_box {
	font-size: 87%;
	letter-spacing: .05em;
	box-sizing: border-box;
	padding: .5em 6% 2.4em;
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.open_container .open_btn {
	letter-spacing: .08em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.open_container .open_btn {
	font-size: 105%;
	padding: 1em;
}
}
/* open_container:mobile
-----------------------------------------------------------------------------*/
.mobile_attention {
	font-size: 88%;
	margin-top: 1em;
}
.mobile_attention .open_btn {
	color: #E94F38;
	text-decoration: underline;
}
.mobile_attention .open_box {
	margin-top: .5em;
}
.mobile_attention ul {
	margin-top: 1em;
}
.mobile_attention li {
	float: left;
	margin-right: 1.2em;
}
.mobile_attention li:last-of-type {
	margin-right: 0;
}
.mobile_attention li a {
	position: relative;
	letter-spacing: .08em;
}
.mobile_attention li a::after{
    font-family: 'fontello';
	content: '\e801';
	color: #492922;
	font-size: 73%;
	margin-left: .3em;
}
.mobile_attention a:hover {
	text-decoration: underline;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.mobile_attention li a {
	font-size: 110%;
}
}
/* open_container:privacy
-----------------------------------------------------------------------------*/
.privacy {
	width: 92%;
	max-width: 1000px;
	text-align: left;
	margin: 50px auto;
}
.privacy dl {
	padding-top: 2em;
	margin-top: 2em;
	border-top: 1px dashed #E4D8C3;
}
.privacy dt {
	font-size: 120%;
	font-weight: bold;
	letter-spacing: .15em;
	margin-bottom: .4em;
}
.privacy dd {
	margin-bottom: .8em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.privacy {
	width: 100%;
	margin: 7% auto 8%;
}
}
/*---------------------------------------------------------
submit_box
---------------------------------------------------------*/
.submit_box {
	text-align: center;
}
.submit_box .txt {
	font-size: 93%;
	margin-bottom: 2em;
}
.submit_box .txt .red {
	font-size: 93%;
}
.submit_box .chk_btn {
	font-size: 118%;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: .1em;
	margin-bottom: 3em;
}
.submit_box input[type=checkbox] + label::before {
	border-color: currentColor;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.submit_box .btnlist {
	display: flex;
	justify-content: center;
}
.submit_box .btnlist > li:first-of-type {
	margin-right: 1.2em;
}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.submit_box .chk_btn {
	font-size: 110%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.submit_box {
	text-align: left;
}
.submit_box .chk_btn {
	max-width: max-content;
	font-size: 105%;
	font-feature-settings: "halt";
	margin: 0 auto 2em;
}
.submit_box .btnlist button {
	display: block;
	margin: 0 auto 10px;
	width: 90% !important;
	max-width: none !important;
}
}
/*---------------------------------------------------------

---------------------------------------------------------*/

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