@charset "UTF-8";

/*---------------------------------------------------------
tbl_form
---------------------------------------------------------*/
.tbl_form {
	width: 100%;
	line-height: 1.5;
	border-bottom: 1px solid rgba(73,41,34,0.15);
}
.tbl_form caption {
	text-align: right;
	font-weight: bold;
	margin-bottom: 1em;
}
.tbl_form tr:nth-of-type(even) {
	background-color: #F7F4F4;
}
.tbl_form th,
.tbl_form td {
	padding: 3rem 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: .12em;
	white-space: nowrap;
}
.tbl_form th.va_t {
	vertical-align: top;
	padding-top: 3.2rem;
}
.tbl_form th small {
	display: block;
	font-size: 83%;
	font-weight: normal;
}
.tbl_form td {
	width: 76%;
	padding-left: 0;
}
.tbl_form td label {
	white-space: nowrap;
	margin-right: 1em;
}
.tbl_form.tbl_way tr:nth-of-type(odd) {background-color: #F7F4F4;}
.tbl_form.tbl_way tr:nth-of-type(even) {background-color: transparent;}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.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: 100%;
}
.tbl_form caption {
	font-size: 90%;
}
.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%;
	max-width: 940px;
	height: 3.8em;
	padding: .4em 1em;
	box-sizing: border-box;
	background: #FFF;
	font-size: 100%;	
	outline: none;   
	border: 1px solid #DFDEE2;
	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: 2.3em;
    }
    .com_form input[type=radio] + label::before,
    .com_form input[type=checkbox] + label::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;         
        box-sizing: border-box;
        display: block;
		background-color: #FFF;
		border: 1px solid #DFDEE2;
        width: 1.4rem;
        height: 1.4rem;
    }
    .com_form input[type=radio] + label::before,
    .com_form .chk_list input[type=checkbox] + 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: .8rem;
        height: .8rem;
        background: #DF7C00;
        border-radius: 50%;
        left: .3rem;
		top: .3rem;
    }
    .com_form input[type=checkbox]:checked + label::after {
        left: .3rem;
		top: -0.05rem;
        width: 1.4rem;
        height: .7rem;
        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: 11.5em;
	max-width: 100%;
	text-align: center;
	color: #FFF;
	font-family: inherit;
	font-size: min(2.2vw,150%);
	font-weight: inherit;
	letter-spacing: .18em;
	line-height: 1.4;
	background-color: #BEBEBE;
	box-sizing: border-box;
	border: none;
	padding: 1em;
	transition: background-color .5s;
}
.com_form button:hover {
	background-color: #ccc;
}
.com_form button[type="submit"] {
	width: 19.5em;
	color: #FFF;
	background-color: #DF7C00;
}
.com_form button[type="submit"]:hover {
	background-color: #F29600;
}
.com_form button[type="submit"]:disabled {
	background-color: #BEBEBE;
	pointer-events: none;
}
.com_form button[type="submit"]::after {
	position: absolute;
	font-family: 'fontello';
	content: '\e804';
	font-size: 80%;
	font-weight: normal;
	right: 1em;
	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;
}
}
/* 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,
.com_form input[type=checkbox] + label {
	padding-left: 2.3rem;
}
/**********/
/* ボタン */
/**********/
.com_form button {
	font-size: 120%;
}
}
/*---------------------------------------------------------
input-layout
---------------------------------------------------------*/
.tbl_form .mid_txt {
	max-width: 403px;
}
.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 {
	margin: .5em 0;
    margin-right: 5em;
}
.tbl_form .chk_list > li:last-of-type {
	margin-right: 0;
}
.tbl_form .chk_list.fs19 {
	margin-bottom: 1.6em;
}
.tbl_form .chk_list.fs19 > li {
	font-size: 118%;
	line-height: 1.3;
	margin-top: .6em;
	margin-bottom: .6em;
	margin-right: 0;
}
/* type_name */
.tbl_form .type_name ul > li {
	display: flex;
	align-items: center;
}
.com_form input[type=email] + .org {
	font-weight: bold;
	margin-top: 1.8em;
	margin-bottom: .4em;
}
/* 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%);
}
/* type_name */
.tbl_form .type_name ul {
	display: grid;
	justify-content: space-between;
	grid-template-columns: 47% 47% ;
}
/* type_add */
.tbl_form .type_add div {
	display: grid;
	justify-content: space-between;
	align-items: center;
	grid-template-columns: 1em 22% 68%;
}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.tbl_form .chk_list.fs19 > li {
	font-size: 105%;
	margin-top: .6em;
	margin-bottom: .6em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.tbl_form input#post-code {
	width: 40%;
	margin-bottom: .5em;
}
.tbl_form .chk_list > li {
	margin: .3em 0;
    margin-right: 2em;
}
.tbl_form .chk_list.fs19 {
	display: block;
}
.tbl_form .chk_list.fs19 > li {
	font-size: 105%;
}
/* type_name */
.tbl_form .type_name ul > li {
	margin-bottom: .5em;
}
.com_form input[type=email] + .org {
	margin-top: 1em;
}
}
/*---------------------------------------------------------
icon_open
---------------------------------------------------------*/
.com_form .icon_open {
	width: 1em;
	height: 1em;
	border-radius: 50%;
	background-color: #DF7C00;
	margin-left: .8em;
}
.com_form .icon_open::before,
.com_form .icon_open::after {
	width: .5em;
	height: 2px;
	background: #FFF;
}
/*---------------------------------------------------------
open_container
---------------------------------------------------------*/
.open_container {
	background-color: #FCF9F5;
}
.open_container .open_btn {
	text-align: center;
	font-size: min(2vw,125%);
	letter-spacing: .1em;
	box-sizing: border-box;
	padding: .6em;
	transition: background-color .5s;
}
.open_container .open_btn:hover {
	background-color: #F9E5CB;
}
.open_container .open_box {
	font-size: 87%;
	box-sizing: border-box;
	padding: 1.2em 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 {
	margin-top: 2em;
}
.mobile_attention ul {
	margin-top: 1.5em;
}
.mobile_attention li {
	float: left;
	color: #DF7C00;
	margin-right: 1.2em;
}
.mobile_attention li:last-of-type {
	margin-right: 0;
}
.mobile_attention li a {
	position: relative;
	font-size: 135%;
	letter-spacing: .08em;
}
.mobile_attention li a::after{
    font-family: 'fontello';
	content: '\e804';
	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: 1100px;
	text-align: left;
	margin: 50px auto;
}
.privacy dl {
	margin-top: 1em;
}
.privacy dt {
	color: #DF7C00;
	font-size: 105%;
	font-weight: bold;
	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 {
	margin-bottom: 2em;
}
.submit_box .chk_btn {
	font-size: 112%;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: .1em;
	margin-bottom: 3em;
}
/* 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) {
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.submit_box .fs15 {
	text-align: left;
}
.submit_box .chk_btn {
	letter-spacing: .04em;
	font-feature-settings: "halt";
	margin-bottom: 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) {
}