@charset "UTF-8";

/*---------------------------------------------------------
tbl_form
---------------------------------------------------------*/
.tbl_form {
	width: 100%;
	max-width: 1220px;
	font-size: min(1.7vw,112%);
	line-height: 1.5;
	margin-left: auto;
	margin-right: auto;
}
.tbl_form caption {
	text-align: right;
	font-size: 88%;
	margin-bottom: .6em;
}
.tbl_form tr:nth-of-type(odd) {
	background-color: #627d81;
}
.tbl_form th,
.tbl_form td {
	padding: 3rem 4.5%;
}
.tbl_form th {
	width: 27%;
	min-width: max-content;
	text-align: left;
	font-weight: bold;
	letter-spacing: .16em;
	white-space: nowrap;
}
.tbl_form th.va_t {
	vertical-align: top;
}
.tbl_form th .req {
	display: inline-block;
	color: #46666b;
	font-size: 64%;
	letter-spacing: .2em;
	background-color: #fff;
	padding: .2em .8em;
	border-radius: .5em;
	vertical-align: 0.1em;
	margin-right: 1em;
}
.tbl_form td {
	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: 30%;
	font-size: 105%;
	letter-spacing: .08em;
}
.tbl_form td {
	width: 72%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.tbl_form {
	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.4rem;
}
}
/*---------------------------------------------------------
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: #f2f2f2;
	font-size: 100%;	
	outline: none;   
	border: none;
	border-radius: 5px;
}
.com_form textarea {
	display: inline-block;
	height: 11em;
	padding: 1em;
	resize: none;
}
::placeholder {
    color: #99a3a6;
	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: 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;	/* クリック無効 */
		visibility: hidden;		/* 非表示 */
        margin: 0;
    }
    .com_form input[type=radio] + label,
    .com_form input[type=checkbox] + label {
		padding-left: 1.6em;
		vertical-align: top;
    }
    .com_form input[type=radio] + label::before,
    .com_form input[type=checkbox] + label::before {
        content: "";
        position: absolute;
        top: .1em;
        left: 0;         
        box-sizing: border-box;
        display: block;
		background-color: #f2f2f2;
        width: 1.1em;
        height: 1.1em;
    }
    .com_form input[type=radio] + label::before {
        border-radius: 50%;
    }
    .com_form input[type=checkbox] + label::before {
        border-radius: .2em;
    }
    .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: calc(1.1em - 6px);
        height: calc(1.1em - 6px);
        background: #47a789;
        border-radius: 50%;
        left: 3px;
		top: calc(.1em + 3px);
    }
    .com_form input[type=checkbox]:checked + label::after {
        left: .2em;
		top: 0;
        width: 1.2em;
        height: .7em;
        border-left: 4px solid #47a789;
        border-bottom: 4px solid #47a789;         
        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: 12em;
	max-width: 100%;
	text-align: center;
	color: #FFF;
	font-family: inherit;
	font-size: min(2.2vw,166%);
	letter-spacing: .15em;
	line-height: 1.4;
	background-color: #647e83;
	box-sizing: border-box;
	border: none;
	padding: .8em;
	transition: background-color .5s, filter .5s;
}
.com_form button:hover {
	background-color: #4e797f;
}
.com_form button[type="submit"] {
	background-color: #47a789;
}
.com_form button[type="submit"]:hover {
	background-color: #2a8c6c;
}
.com_form button[type="submit"]:disabled {
	filter: grayscale(1);
	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 {
	display: block;
	height: 11em;
}
/**********/
/* ボタン */
/**********/
.com_form button {
	font-size: 120%;
}
}
/*---------------------------------------------------------
input-layout
---------------------------------------------------------*/
.com_form .age_txt {
	width: 30%;
	max-width: 136px;
	margin-right: 1em;
}
.tbl_form .chk_list > li.etc {
	display: flex;
	width: 100%;
}
/* chk_list */
.tbl_form .chk_list {
	display: flex;
	flex-wrap: wrap;
	line-height: 1.4;
}
.tbl_form .chk_list > li {
	white-space: nowrap;
    margin-right: 3em;
	margin-bottom: .8em;
}
.tbl_form .chk_list > li:last-of-type {
	margin-right: 0;
	margin-bottom: 0;
}
.tbl_form .chk_list > li.etc label {
	margin-right: 1.5em;
}

/* 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;
}
.tbl_form .chk_list > li.etc {
	display: block;
}
.tbl_form .chk_list > li.etc textarea {
	margin-top: .5em;
}
}


/*---------------------------------------------------------
icon_open
---------------------------------------------------------*/
.com_form .icon_open {
	width: 1.2em;
	height: 1.2em;
	border: 1px solid rgba(242,242,242,0.6);
	margin-left: .8em;
}
.com_form .icon_open::before,
.com_form .icon_open::after {
	height: 1px;
}


/*---------------------------------------------------------
open_container
---------------------------------------------------------*/
.open_container .open_btn {
	text-decoration: underline;
}
.open_container .open_btn:hover {
	text-decoration: none;
}
.open_container .open_box {
	font-size: 95%;
	letter-spacing: .05em;
}
/* 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%;
}
}
/* open_container:mobile
-----------------------------------------------------------------------------*/
.mbl_attention {
	font-size: 88%;
	margin-top: 1em;
}
.mbl_attention .open_box {
	margin-top: .5em;
}
.mbl_attention ul {
	margin-top: 1em;
}
.mbl_attention li {
	float: left;
	margin-right: 1.2em;
}
.mbl_attention li:last-of-type {
	margin-right: 0;
}
.mbl_attention li a {
	position: relative;
	letter-spacing: .08em;
}
.mbl_attention li a::after{
    font-family: 'fontello';
	content: '\e800';
	font-size: 73%;
	margin-left: .3em;
}
.mbl_attention a:hover {
	text-decoration: underline;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.mbl_attention li a {
	font-size: 110%;
}
}
/* open_container:privacy
-----------------------------------------------------------------------------*/
.privacy {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	margin: 5.2% auto;
}
.privacy .open_btn {
	text-align: center;
	padding: 2.5em 0;
}
.privacy .open_box {
	padding: .5em 5% 2.4em;
}
.privacy dl {
	padding-top: 2em;
	margin-top: 2em;
	border-top: 1px dashed rgba(255,255,255,0.8);
}
.privacy dt {
	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: 10% auto 7%;
}
.privacy .open_btn {
	padding: 1.2em 0;
}
}
/*---------------------------------------------------------
submit_box
---------------------------------------------------------*/
.submit_box {
	text-align: center;
}
.submit_box .txt {
	margin-bottom: 2em;
}
.submit_box .txt small {
	display: block;
	font-size: 93%;
	margin-top: .5em;
}
.submit_box .chk_btn {
	font-size: 112%;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: .1em;
	margin-top: 6%;
	margin-bottom: 3em;
}
.submit_box .chk_btn input[type=checkbox] + label {
	padding-left: 2.2em;
}
.submit_box .chk_btn input[type=checkbox] + label::before {
	width: 1.5em;
	height: 1.5em;
	top: -0.1em;
}
/* 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;
}
}
/*---------------------------------------------------------
comfirm
---------------------------------------------------------*/
.entry_confirm .tbl_form tr:nth-of-type(odd) {
	background-color: #f2f1ef;
}
/* 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) {
}