@charset "UTF-8";


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

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

/********************/
/* textbox・textarea */
/********************/
form input:is([type=text], [type=number], [type=tel], [type=email]),
form textarea {
	width: 100%;
	height: 2.7em;
	padding: .2em 1em;
	background: #FFF;
	font-size: 100%;	
	outline: none;
	border: 1px solid rgba(51,67,80,0.8);
	border-radius: 0;
}
form textarea {
	width: 100%;
	display: inline-block;
	height: 12em;
	padding: 1em;
	resize: none;
}
::placeholder {
    color: #b2b2b2;
	font-size: 15px;
}
form input.age_txt {
	max-width: 80px;
	margin-right: .5em;
}

/*********************************/
/* radio・checkbox */
/*********************************/
form input[type=radio],
form input[type=checkbox] {
    display: inline-block;
}
form label:has(input[type=radio]),
form label:has(input[type=checkbox]) {
    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;	/* クリック無効 */
		opacity: 0;
        margin: 0;
    }
    form label:has(input[type=radio]),
    form label:has(input[type=checkbox]) {
		display: flex;
		align-items: center;
		padding-left: 2em;
		vertical-align: top;
    }
    form label:has(input[type=radio])::before,
    form label:has(input[type=checkbox])::before {
        content: "";
        position: absolute;
        top: .1em;
        left: 0;
        display: block;
		background-color: #FFF;
		border: 1px solid rgba(51,67,80,0.8);
        width: 1.3em;
        height: 1.3em;
    }
    form label:has(input[type=radio])::before {
        border-radius: 50%;
    }
    form label:has(input[type=radio]:checked):after,
    form label:has(input[type=checkbox]:checked):after {
        content: "";
        position: absolute;
        top: .7rem;
        display: block;
    }
    form label:has(input[type=radio]:checked):after {
        width: calc(1.3em - 8px);
        height: calc(1.3em - 8px);
        background: var(--accent-color);
        border-radius: 50%;
        left: 4px;
		top: calc(.1em + 4px);
    }
    form label:has(input[type=checkbox]:checked):after {
        left: .2em;
		top: .2em;
        width: 1.3em;
        height: .7em;
        border-left: 4px solid var(--accent-color);
        border-bottom: 4px solid var(--accent-color);         
        rotate: -45deg;
    }
}
/******************/
/* select */
/******************/
form select {
	width: 100%;
    padding: .4em 1em;
	padding-right: 3.2em !important;
	height: 3.8em;
	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;
	min-width: 17em;
	max-width: 100%;
	text-align: center;
	color: #FFF;
	font-family: inherit;
	font: var(--font-min);
	font-size: min(1.8vw,113%);
	letter-spacing: .1em;
	line-height: 1.4;
	background-color: var(--color-bei-600);
	border: none;
	padding: 1.2em 2em;
	transition: background-color .5s, filter .5s;
}
form button[type="submit"]::after {
	display: inline-block;
	content: "";
	font-family: 'fontello';
	content: '\e800';
	font-size: 112%;
	font-weight: normal;
	line-height: 1;
	margin-left: .5em;
}
form button:hover {
	filter: brightness(1.05);
}
form button[type="submit"] {
	background-color: var(--accent-color);
}
form button[type="submit"]:disabled {
	background-color: #c8c8c8;
	pointer-events: none;
}

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

}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

form input:is([type=text], [type=number], [type=tel], [type=email]),
form textarea {
	height: 2.8em;
	font-size: 16px;
}
form textarea {
	display: block;
	height: 11em;
}
/**********/
/* button */
/**********/
form button {
	width: 100%;
	max-width: 100%;
	font-size: 90%;
	padding: 1.2em 1.5em;
}
}


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

======================================================== */
.tbl_form {
	width: 100%;
	font-size: min(1.7vw,113%);
	line-height: 1.5;
}
.tbl_form caption {
	text-align: right;
	color: var(--accent-color);
	font-size: 88%;
	margin-bottom: .5em;
}
.tbl_form tr:nth-of-type(odd) {
	background-color: #fcf4f2;
}
.tbl_form th,
.tbl_form td {
	padding: 1.6em 5%;
}
.tbl_form th {
	position: relative;
	width: 28%;
	text-align: left;
	font: var(--font-min);
	vertical-align: middle;
}
.tbl_form th div,
.tbl_form th label {
	font-size: 117%;
}
.tbl_form th .required {
	color: var(--accent-color);
	font-size: 88%;
	margin-left: .1em;
}

.tbl_form td {
	width: 72%;
	padding-left: 0;
}
.tbl_form td .sub_txt {
	display: block;
	color: var(--accent-color);
	font-size: 88%;
	margin-top: .6em;
}

.tbl_form td * + p:has(input) {
	margin-top: .8em;
}
.tbl_form * + .wpcf7-form-control-wrap {
	display: block;
	margin-top: .4em;
}
.tbl_form input.p-postal-code {
	width: 8em;
	margin-left: .6em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.tbl_form {
	font-size: 100%;
}
.tbl_form th,
.tbl_form td {
	display: block;
	width: 100%;
	padding: 1em 5% .8em;
}
.tbl_form th div,
.tbl_form th label {
	font-size: 100%;
}
.tbl_form td {
	font-size: 90%;
	padding-top: 0;
	padding-bottom: 1.5em;
}
}

/*---------------------------------------------------------
input-layout
---------------------------------------------------------*/
.kakunin_txt {
	color: var(--accent-color);
	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 .open_btn {
	font: var(--font-min);
	font-size: min(2vw,1.3rem);
}
.form_accord .open_box {
	font-size: 94%;
}
/* icon_open */
.form_accord .icon_open {
	color: #FFF;
	background-color: var(--color-och-100);
	border-radius: 50%;
	margin-left: .5em;
}
.form_accord .icon_open::before,
.form_accord .icon_open::after {
	width: .6em;
	height: 2px;
}
.form_accord .open_btn:hover .icon_open {
	background-color: var(--color-och);
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.form_accord .open_btn {
	font-size: 95%;
}
}

/* form_accord:privacy
-----------------------------------------------------------------------------*/
.privacy {
	background-color: var(--color-ivo);
	margin-bottom: 4%;
}
.privacy .open_btn {
	text-align: center;
	padding: 1.5em 0;
}
.privacy dt {
	font-weight: var(--fw-bold);
	margin-top: 1em;
}
.privacy .open_box {
	padding: 0 5% 5%;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.privacy {
	margin: 0 auto 7%;
}
.privacy .open_btn {
	padding: 1em 0;
}
.privacy .open_box {
	padding: 0 6% 6%;
}
}

/* form_accord:mobile
-----------------------------------------------------------------------------*/
.mbl_attention {
	margin-top: 1em;
}
.mbl_attention .open_box {
	margin-top: 1em;
}
.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: 6%;
}
}

/*---------------------------------------------------------
submit_box
---------------------------------------------------------*/
.submit_box {
	text-align: center;
}
.submit_box > p.fs__15 {
	line-height: 2;
	margin-bottom: 5%;
}
.btn_list {
	display: flex;
	justify-content: center;
	gap: .6em 1.5em;
	margin-top: 4%;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.submit_box {
	text-align: left;
}
.submit_box > p.fs__15 {
	line-height: 1.8;
	margin-bottom: 6%;
}
.btn_list {
	flex-wrap: wrap;
	margin-top: 10%;
}
.btn_list > li {
	width: 90%;
}
}



/* ========================================================
  
  CF7: カスタム

======================================================== */
form .wpcf7-not-valid-tip {
	position: absolute;
	display: inline-block;
	color: #FFF;
	font-size: 80%;
	background-color: var(--color-red);
	padding: .2em .5em;
	border-radius: 2px;
	left: 0;
	top: 100%;
	z-index: 1;
	white-space: nowrap;
}
/* tbl_form */
.tbl_form .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
	display: block;
	margin-top: 1.6em;
}
.wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	gap: .5em 2em;
}
.tbl_form .wpcf7-list-item {
	margin: 0;
}
/* submit_box */
.submit_box .wpcf7-acceptance {
	display: block;
	font: var(--font-min);
}
.wpcf7-response-output {
	text-align: center;
	color: var(--color-red);
	line-height: 1.5;
	border-color: currentColor !important;
	padding: 0.6em 1em !important;
}

/* Cloudflare TurnstileのUIを非表示 */
/* .cf-turnstile,
.cf-turnstile iframe {
	display: none !important;
} */
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
/* tbl_form */
.tbl_form .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
	margin-top: .8em;
}
/* submit_box */
.submit_box .wpcf7-acceptance {
	font-size: 90%;
}
}



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

======================================================== */
.thanks .com_lead_box {
	padding-bottom: min(10vw,120px);
}


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

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


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