@charset "UTF-8";

.form_box {
	max-width: 1100px;
	background-color: #FFF;
	box-sizing: border-box;
	padding: 0 6.8% 8%;
	margin-inline: auto;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.form_box {
	padding: 10% 6%;
}
}

/*---------------------------------------------------------
tbl_form
---------------------------------------------------------*/
.tbl_form {
	width: 100%;
	max-width: 950px;
	font-size: min(1.5vw,100%);
	line-height: 1.5;
	margin-inline: auto;
	border-spacing: 1.2em 4.3em;
}
.tbl_form th,
.tbl_form td {
	position: relative;
	box-sizing: border-box;
}
.tbl_form th {
	width: 28%;
	text-align: left;
	font-family: "dnp-shuei-mincho-pr6", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 116%;
	letter-spacing: .1em;
	line-height: 1.4;
	white-space: nowrap;
}
.tbl_form th div {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.tbl_form th.va_t {
	vertical-align: top;
	/* padding-top: .5em; */
}
.tbl_form th .req {
	display: inline-block;
	color: #FFF;
	font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif,sans-serif;
	font-size: 70%;
	font-weight: bold;
	letter-spacing: .08em;
	background-color: #C46E2D;
	padding: .1em .5em;
	border-radius: .3em;
	margin-top: .3em;
}
.tbl_form th .req.opt {background-color: #A3A192;}
.tbl_form th.va_t .req {
	top: .9em;
	translate: none;
}
.tbl_form td {
	width: 72%;
	vertical-align: top;
	font-size: 94%;
}
.tbl_form td label {
	margin-right: 1em;
}
.tbl_form td .sub_txt {
	font-size: 105%;
	margin: 1em 0;
}
.tbl_form td .kakunin_txt {
	color: #C46E2D;
	font-size: 105%;
	margin: .6em 0 1.2em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.tbl_form {
	border-spacing: 1.2em 3em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.tbl_form {
	font-size: 95%;
	border-spacing: 0;
}
.tbl_form tr,
.tbl_form th,
.tbl_form td {
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.tbl_form th {
	font-size: 110%;
	padding-bottom: .5em;
}
.tbl_form td {
	padding-bottom: 1.6em;
}
.tbl_form td .kakunin_txt {
	font-size: 95%;
}
}
/*---------------------------------------------------------
input
---------------------------------------------------------*/
/********************/
/* テキストボックス */
/********************/
.com_form input[type=text],
.com_form input[type=tel],
.com_form input[type=email],
.com_form input[type=date],
.com_form textarea {
	width: 100%;
	height: 3.2em;
	padding: .4em 1em;
	box-sizing: border-box;
	background: #F5F5F5;
	font-family: inherit;
	font-size: 100%;	
	outline: none;   
	border: none;
	border-radius: .6em;
}
.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: .1em;
}
/*********************************/
/* ラジオボタン・チェックボックス */
/*********************************/
.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;      
        box-sizing: border-box;
        display: block;
		background-color: #FFF;
		border: 1px solid #CCCCCC;
        width: 1.1em;
        height: 1.1em;
        left: 0;
        top: .2em;
    }
    .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: calc(1.1em - 6px);
        height: calc(1.1em - 6px);
        background: #F5962D;
        border-radius: 50%;
        left: 3px;
		top: calc(.2em + 3px);
    }
    .com_form input[type=checkbox]:checked + label::after {
        left: .2em;
		top: 0;
        width: 1.2em;
        height: .7em;
        border-left: 4px solid #F5962D;
        border-bottom: 4px solid #F5962D;         
        rotate: -45deg;
    }
}
/******************/
/* コンボボックス */
/******************/
.com_form select {
	width: 100%;
	max-width: 264px;
	height: 2.5em;
	box-sizing: border-box;
	color: inherit;
	background: #FFF;
	font-size: 100%;	
    cursor: pointer;
    outline: 0;
	border: 1px solid #ccc;
    border-radius: .5em;
    appearance: none;
	box-sizing: border-box;
    padding: .4em 1em;
	padding-right: 1.6em !important;
}
.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;
	display: block;
	cursor: pointer;
	min-width: 17em;
	height: 4.4em;
	max-width: 100%;
	text-align: center;
	color: #FFF;
	font-family: inherit;
	font-size: min(1.8vw,116%);
	letter-spacing: .12em;
	line-height: 1.4;
	background-color: #A3A192;
	box-sizing: border-box;
	border: none;
	border-radius: 100vmax;
	padding: .8em 3em;
	transition: background-color .5s, filter .5s;
}
.com_form button:hover {
	filter: brightness(1.05);
}
.com_form button[type="submit"] {
	width: auto;
	background-color: #F5962D;
}
.com_form button[type="submit"]:disabled {
	filter: grayscale(0.8);
	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 input[type=date],
.com_form textarea {
	height: 2.8em;
	font-size: 16px;
}
.com_form textarea {
	display: block;
	height: 11em;
}
.com_form select {
	font-size: 16px;
}
::placeholder {
	letter-spacing: .06em;
}
/**********/
/* ボタン */
/**********/
.com_form button {
	width: 100% !important;
	font-size: 100%;
	letter-spacing: .06em;
	padding: .8em 1em;
}
}
/*---------------------------------------------------------
input-layout
---------------------------------------------------------*/
.com_form .age_txt {
	width: 30%;
	max-width: 164px;
	margin-right: 1em;
}
#mailaddress {
	margin-bottom: 1.5em;
}
/* chk_list */
.tbl_form .chk_list {
	display: flex;
	flex-wrap: wrap;
	gap: .5em 3em;
	font-size: 120%;
	line-height: 1.4;
}
.tbl_form .chk_list.list__subject > li {
	width: 100%;
}
.tbl_form .chk_list.list__subject + textarea {
	margin-top: 1.5em;
}
/* date_list */
.date_list {
	margin-top: 1em;
}
.date_list > li {
	margin-bottom: 1.2em;
}
.date_list > li:last-of-type {
	margin-bottom: 0;
}
.date_list .cal_box {
	display: grid;
	justify-content: space-between;
	align-items: center;
	grid-template-columns: 82% 13%;
}
.com_form .time_box {
	position: relative;
	max-width: max-content;
}
.com_form .time_box::after {
	position: absolute;
	content: "";
	background: url("../images/time_arrow.svg") no-repeat center center;
	width: 7.2px;
	height: 100%;
	right: .6em;
	top: 0;
	pointer-events: none;
}
/* PC,Tablet
------------------------------------------*/
@media only screen and (min-width: 768px) {
.date_list > li {
	display: grid;
	justify-content: space-between;
	align-items: center;
	grid-template-columns: 52% 46%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#mailaddress {
	margin-bottom: .8em;
}
/* chk_list */
.tbl_form .chk_list {
	font-size: 110%;
}
/* date_list */
.date_list .time_box {
	width: 64vw;
	max-width: none;
	margin-top: .5em;
}
}


/*---------------------------------------------------------
icon_open
---------------------------------------------------------*/
.com_form .icon_open {
	width: 1.1em;
	height: 1.1em;
	color: #C46E2D;
	background: transparent;
	border: 1px solid currentColor;
	margin-left: .8em;
}
.com_form .icon_open::before,
.com_form .icon_open::after {
	width: 45%;
	height: 2px;
	background: currentColor;
}


/*---------------------------------------------------------
open_container
---------------------------------------------------------*/
.open_container {
	line-height: 1.6;
	background-color: rgba(245,150,45,0.1);
	border-radius: .6em;
}
.open_container .open_btn {
	text-align: center;
	font-size: 112%;
	line-height: 1.5;
	padding: 1em;
}
.open_container .open_btn:hover {
	text-decoration: none;
}
.open_container .open_box {
	font-size: 95%;
	letter-spacing: .05em;
	box-sizing: border-box;
	padding: 0 4% 2em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.open_container .open_btn {
	font-size: 105%;
}
.open_container .open_box {
	padding: 0 6% 2em;
}
}
/* open_container:mobile
-----------------------------------------------------------------------------*/
.mbl_attention {
	margin-top: 1em;
	border-radius: 2em;
}
.mbl_attention .open_box {
	margin-top: .5em;
}
.mbl_attention ul {
	display: flex;
	gap: 0 1.2em;
	margin-top: 1em;
}
.mbl_attention li a {
	position: relative;
	letter-spacing: .08em;
	padding-left: 1.2em;
}
.mbl_attention li a::after{
    position: absolute;
    content: "";
    left: 0;
	top: .5em;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 7px solid #808080;
}
.mbl_attention a:hover {
	text-decoration: underline;
}

/* open_container:privacy
-----------------------------------------------------------------------------*/
.privacy dt {
	font-weight: bold;
	letter-spacing: .15em;
	margin-top: 1em;
	margin-bottom: .4em;
}
.privacy ol {
	list-style-position: inside;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.privacy {
	width: 100%;
}
.privacy .open_btn {
	padding: 1.2em 0;
}
}

/*---------------------------------------------------------
submit_box
---------------------------------------------------------*/
.submit_box {
	text-align: center;
	line-height: 2;
}
.submit_box .txt {
	margin-bottom: 1.5em;
}
.submit_box .txt small {
	display: block;
	font-size: 93%;
	margin-top: .5em;
}
.submit_box .chk_btn {
	font-size: 116%;
	letter-spacing: .12em;
	margin: 6% auto 3em;
}
.submit_box .chk_btn input[type=checkbox] + label::before {
	width: 1.3em;
	height: 1.3em;
	top: 0.2em;
}
.submit_box .btnlist {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: .5em 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;
	line-height: 1.7;
}
.submit_box .chk_btn {
	font-size: 100%;
	letter-spacing: .05em;
	margin: 5% auto 8%;
}
.submit_box .btnlist > li {
	width: 100%;
}
}

/*---------------------------------------------------------
 thanks
---------------------------------------------------------*/
.contact .m_img_area {
	height: min(40vw,550px);
	background: url(../images/m_img1@2x.jpg) no-repeat center top 30%;
	background-size: cover;
}
.contact #pagebody {
	padding: 120px 0;
}
.contact #pagebody dt {
	font-size: min(3vw,180%);
	margin-bottom: .6em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.contact .m_img_area {
	height: 60vw;
	background-image: url(../images/m_img1_sp.jpg);
}
.contact #s_bnr {
	bottom: 10%;
}
.contact #pagebody {
	padding: 15% 0;
}
.contact #pagebody dt {
	font-size: 120%;
}

}