@charset "UTF-8";


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

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

/********************/
/* textbox・textarea */
/********************/
form input:not([type=submit]):not([type=reset]):not([type=button]):not([type=checkbox]):not([type=radio]):not([type=file]),
form textarea {
	width: 100%;
	height: 3.1em;
	padding: .2em 1em;
	background: #f5f5f5;
	font-size: 100%;	
	outline: none;
	border: none;
}
form textarea {
	width: 100%;
	display: inline-block;
	height: 12em;
	padding: 1em;
	resize: none;
}
::placeholder {
    color: #b2b2b2;
	font-size: 15px;
	font-family: var(--ff_got);
}
form input.age_txt {
	max-width: 164px;
	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: .3em;
        left: 0;
        display: block;
		background-color: #FFF;
		border: 1px solid #a3a192;
        width: 1.2em;
        height: 1.2em;
    }
    form label:has(input[type=radio])::before {
        border-radius: 50%;
		top: .2em;
    }
    form label:has(input[type=radio]:checked):after,
    form label:has(input[type=checkbox]:checked):after {
        content: "";
        position: absolute;
        top: .8rem;
        display: block;
    }
    form label:has(input[type=radio]:checked):after {
        width: calc(1.2em - 8px);
        height: calc(1.2em - 8px);
        background: var(--color_dgrn);
        border-radius: 50%;
        left: 4px;
		top: calc(.2em + 4px);
    }
    form label:has(input[type=checkbox]:checked):after {
        left: .2em;
		top: .2em;
        width: 1.3em;
        height: .7em;
        border-left: 4px solid var(--color_dgrn);
        border-bottom: 4px solid var(--color_dgrn);         
        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-size: min(1.6vw,112%);
	letter-spacing: .1em;
	line-height: 1.4;
	background-color: #c8c8c8;
	border: none;
	padding: 1.2em 2em;
	transition: background-color .5s, filter .5s;
}
form button[type="submit"]::after {
	display: inline-block;
	content: "";
	vertical-align: 0.1em;
	width: .5em;
	height: .5em;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	rotate: 45deg;
	margin-left: .5em;
}
form button:hover {
	filter: brightness(1.05);
}
form button[type="submit"] {
	font-weight: var(--fw_bold);
	background-color: var(--color_dgrn);
}
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:not([type=submit]):not([type=reset]):not([type=button]):not([type=checkbox]):not([type=radio]):not([type=file]),
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%;
	max-width: 905px;
	font-size: min(1.8vw,100%);
	line-height: 1.5;
	border-spacing: 0 min(5vw,5em);
	margin-inline: auto;
}
.tbl_form th {
	position: relative;
	width: 28%;
	text-align: left;
	font: var(--font_min);
	vertical-align: top;
	padding: .5em 4em .5em 0;
}
.tbl_form th small {
	font-size: 87%;
}
.tbl_form .opt_txt {
	display: inline-block;
	color: #FFF;
	font-family: var(--ff_got);
	font-size: 81%;
	font-weight: var(--fw_bold);
	letter-spacing: .08em;
	line-height: 1.2;
	background-color: #a3a192;
	border-radius: 4px;
	padding: .2em .4em;
	vertical-align: .1em;
	margin-left: 1em;
}
.tbl_form .opt_txt.required {background-color: var(--color_red);}

.tbl_form td {
	width: 72%;
	padding-left: 0;
}
.tbl_form td .sub_txt {
	color: var(--color_red);
	font-size: 94%;
	margin-top: .5em;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.tbl_form .opt_txt {
	position: absolute;
	right: 1.5em;
	top: .9em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.tbl_form {
	font-size: 100%;
	border-spacing: 0 1.4em;
}
.tbl_form th,
.tbl_form td {
	display: block;
	width: 100%;
}
.tbl_form th {
	padding: 0 0 .6em;
}
.tbl_form td {
	font-size: 90%;
}
.tbl_form td .sub_txt {
	font-size: 88%;
}
}

/*---------------------------------------------------------
input-layout
---------------------------------------------------------*/
.kakunin_txt {
	color: var(--color_dgrn);
	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: 1px solid #e5efec;
}
.form_accord .open_btn {
	text-align: center;
	font: var(--font_min);
	padding: 1.5em 1em;
}
.form_accord .open_box {
	font-size: 94%;
	padding: 0 5% 5%;
}
/* icon_open */
.form_accord .icon_open {
	color: var(--color_dgrn);
	border-radius: 50%;
	margin-left: .5em;
	border: 1px solid var(--color_dgrn);
}
.form_accord .icon_open::before,
.form_accord .icon_open::after {
	width: .6em;
	height: 2px;
}
.form_accord .open_btn:hover .icon_open {
	color: #FFF;
	background-color: var(--color_dgrn);
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.form_accord .open_btn {
	font-size: 95%;
	padding: 1em .5em;
}
}

/* form_accord:privacy
-----------------------------------------------------------------------------*/
.privacy {
	max-width: 950px;
	margin: 0 auto 6%;
}
.privacy dt {
	font-weight: var(--fw_bold);
	margin-top: 1em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.privacy {
	margin: 0 auto 8%;
}
}

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



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