@charset "UTF-8";


/* ========================================================
  
  parts

======================================================== */

/********************/
/* textbox・textarea */
/********************/
form input[type=text],
form input[type=tel],
form input[type=email],
form textarea {
	width: 100%;
	height: 3em;
	padding: .4em 1em;
	box-sizing: border-box;
	background: #FFF;
	font-size: 100%;	
	outline: none;   
	border: none;
	border-radius: 0;
}
form textarea {
	width: 100%;
	display: inline-block;
	height: 11em;
	padding: 1em;
	resize: none;
}
::placeholder {
    color: rgba(51,51,51,0.5);
	font-size: 15px;
	font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans","游ゴシック","Yu Gothic",Meiryo,sans-serif;
}
/*********************************/
/* radio・checkbox */
/*********************************/
form input[type=radio],
form input[type=checkbox] {
    display: inline-block;
}
form input[type=radio] + label,
form input[type=checkbox] + label {
    position: relative;     
    display: inline-block;
	white-space: nowrap;
    cursor: pointer;
	margin-right: 0;
}
 
@media (min-width: 1px) {
    form input[type=radio],
    form input[type=checkbox] {
		position: absolute;		/* 上に別の要素が乗るようにする */
		z-index: -1;			/* 最背面にする */
		pointer-events: none;	/* クリック無効 */
		visibility: hidden;		/* 非表示 */
        margin: 0;
    }
    form input[type=radio] + label,
    form input[type=checkbox] + label {
		padding-left: 1.6em;
		vertical-align: top;
    }
    form input[type=radio] + label::before,
    form input[type=checkbox] + label::before {
        content: "";
        position: absolute;
        top: .1em;
        left: 0;         
        box-sizing: border-box;
        display: block;
		background-color: #FFF;
        width: 1.1em;
        height: 1.1em;
    }
    form input[type=radio] + label::before {
        border-radius: 50%;
    }
    form input[type=checkbox] + label::before {
        border-radius: .3em;
    }
    form input[type=radio]:checked + label::after,
    form input[type=checkbox]:checked + label::after {
        content: "";
        position: absolute;
        top: .8rem;       
        box-sizing: border-box;
        display: block;
    }
    form input[type=radio]:checked + label::after {
        width: calc(1.1em - 6px);
        height: calc(1.1em - 6px);
        background: var(--color_ppl);
        border-radius: 50%;
        left: 3px;
		top: calc(.1em + 3px);
    }
    form input[type=checkbox]:checked + label::after {
        left: .2em;
		top: 0;
        width: 1.2em;
        height: .7em;
        border-left: 4px solid var(--color_ppl);
        border-bottom: 4px solid var(--color_ppl);         
        rotate: -45deg;
    }
}
/******************/
/* select */
/******************/
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-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;
}
/**********/
/* button */
/**********/
form button {
	position: relative;
	cursor: pointer;
	width: 13em;
	max-width: 100%;
	text-align: center;
	color: #FFF;
	font-family: inherit;
	font-size: min(2vw,1.12rem);
	font-weight: normal;
	letter-spacing: .1em;
	line-height: 1.4;
	background-color: #b3b3b3;
	box-sizing: border-box;
	border: none;
	border-radius: .3em;
	padding: 1.2em;
	transition: background-color .5s, filter .5s;
}
form button::after {
	display: inline-block;
	content: "";
	background-color: currentColor;
	vertical-align: 0.1em;
	width: .5em;
	height: .5em;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	margin-left: .5em;
}
form button:hover {
	filter: brightness(1.2);
}
form button[type="submit"] {
	background-color: var(--color_ppl);
}
form button[type="submit"]:disabled {
	background-color: #b3b3b3;
	pointer-events: none;
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
form input[type=text],
form input[type=tel],
form input[type=email] {
	padding: .4em .8em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
form input[type=text],
form input[type=tel],
form input[type=email],
form textarea {
	font-size: 16px;
}
form textarea {
	display: block;
	height: 11em;
}
form button {
	font-size: 105%;
}
}


/* ========================================================
  
  table

======================================================== */
.tbl_form {
	width: 100%;
	font-size: min(1.6vw,100%);
	line-height: 1.5;
	border-collapse: collapse;
}
.tbl_form caption {
	text-align: right;
	color: #a27925;
	font-size: 88%;
	margin-bottom: .8em;
}
.tbl_form tr {
	border-top: 1px solid rgba(149,128,105,0.5);
}
.tbl_form th,
.tbl_form td {
	padding: 1.7em 0;
}
.tbl_form th {
	width: 25%;
	text-align: left;
	font-weight: bold;
	font-feature-settings: "halt";
	word-break: keep-all;
	overflow-wrap: break-word;
	padding-right: 1em;
}
.tbl_form th.va_t {
	vertical-align: top;
}
.tbl_form th .req {
	color: #a27925;
	margin-left: .1em;
}
/* 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: 1em 3%;
}
.tbl_form td {
	padding-top: 0;
	padding-bottom: 1.2em;
}
}
/*---------------------------------------------------------
input-layout
---------------------------------------------------------*/
.kakunin_txt {
	color: var(--color_ppl);
	font-size: 90%;
	margin-top: 1em;
	margin-bottom: .3em;
}
/* 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;
}
/* 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%);
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.tbl_form .chk_list > li {
	margin: .3em 0;
    margin-right: 2em;
}
}


/* ========================================================
  
  accordion / submit

======================================================== */

/*---------------------------------------------------------
form_accord
---------------------------------------------------------*/
.form_accord {
	border-top: 2px solid rgba(69,29,60,0.2);
	border-bottom: 2px solid rgba(69,29,60,0.2);
}
.form_accord .open_btn {
	text-align: center;
	color: var(--color_ppl);
	font-size: 112%;
	font-weight: bold;
	padding: 1.4em .5em;
}
.form_accord .open_btn:hover {
	background-color: rgba(162,209,217,0.1);
}
.form_accord .icon_open {
	color: #FFF;
	background-color: var(--color_ppl);
}
.form_accord .open_box {
	padding-top: .5em;
	padding-bottom: 1.4em;
}
.form_accord .open_box p,
.form_accord .open_box dd {
	font-size: 88%;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.form_accord .open_btn {
	font-size: 100%;
	padding: 1.2em .5em;
}
}
/* form_accord:privacy
-----------------------------------------------------------------------------*/
.privacy {
	margin: 4% auto 5%;
}
.privacy dt {
	color: var(--color_ppl);
	font-weight: bold;
	letter-spacing: .1em;
	margin-top: 1.2em;
	margin-bottom: .4em;
}
.privacy dd {
	margin-bottom: .8em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.privacy {
	margin: 10% auto 7%;
}
}
/* form_accord:mobile
-----------------------------------------------------------------------------*/
.mbl_attention {
	font-size: 94%;
	border: none;
	margin-top: 1em;
}
.mbl_attention .open_btn {
	font-size: 100%;
	padding: .5em 0;
}
.mbl_attention ul {
	display: flex;
	column-gap: 1em;
	margin-top: 1em;
}
.mbl_attention li a {
	position: relative;
	letter-spacing: .08em;
}
.mbl_attention li a::after {
    display: inline-block;
	content: "";
	width: .4em;
	height: .4em;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	rotate: 45deg;
	margin-left: .2em;
}
.mbl_attention a:hover {
	text-decoration: underline;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.mbl_attention {
	margin-top: 1em;
}
}

/*---------------------------------------------------------
submit_box
---------------------------------------------------------*/
.submit_box {
	font-size: 88%;
}
.submit_box p {
	margin-bottom: 1em;
}
.submit_box .chk_btn {
	text-align: center;
	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.5em;
}
.submit_box .chk_btn input[type=checkbox] + label::before {
	background-color: transparent;
	border: 2px solid rgba(69,29,60,0.2);
	width: 1.4em;
	height: 1.4em;
	top: 0;
}

.submit_box .btnlist {
	display: flex;
	justify-content: center;
	column-gap: 1em;
}
.submit_box .btnlist > li {
	width: 50%;
	max-width: max-content;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.submit_box p {
	text-align: center;
	word-break: keep-all;
	overflow-wrap: break-word;
	margin-bottom: 2em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.submit_box {
	text-align: left;
}
.submit_box .btnlist {
	column-gap: .5em;
}
}

/* ========================================================
  
  thanks

======================================================== */


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

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


/* 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) {
}