@charset "UTF-8";



/* ========================================================
  
  common

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

/*---------------------------------------------------------
 common - info
---------------------------------------------------------*/
.l-info {
	border-top: 1px solid rgb(204 204 204 / 0.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 var(--color-bdr);
	border-radius: 5px;
}
.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 var(--color-bdr);
        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: 18em;
	max-width: 100%;
	text-align: center;
	color: #FFF;
	font-family: inherit;
	font-weight: normal;
	letter-spacing: .2em;
	line-height: 1.4;
	background-color: #ccc;
	border: none;
	padding: 1.2em 2em;
	transition: background-color .5s, filter .5s;
}
.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;
}
.form button[type="submit"]::after {
	display: inline-block;
	content: "";
	width: .6em;
	height: .6em;
	vertical-align: 0.1em;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	rotate: 45deg;
	margin-left: .2em;
}
/* 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

======================================================== */
.form__table {
	width: 100%;
	font-size: min(1.7vw,100%);
	line-height: 1.5;
}
.form__table tr:nth-of-type(odd) {
	background-color: rgba(76 137 140 / 0.05);
}
.form__table th,
.form__table td {
	padding: 2em 5%;
}
.form__table th {
	position: relative;
	width: 28%;
	text-align: left;
	color: var(--accent-color);
	font-weight: var(--fw-bold);
	vertical-align: top;
}
.form__table th .required {
	display: inline-block;
	color: #FFF;
	font-size: 64%;
	font-weight: normal;
	vertical-align: 0.1em;
	background-color: var(--color-red);
	padding: .1em .6em;
	border-radius: .4em;
	margin-left: .5em;
}

.form__table td {
	width: 72%;
	padding-left: 0;
}

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

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

/*---------------------------------------------------------
input-layout
---------------------------------------------------------*/
.form__table td .sub_txt {
	display: block;
	color: var(--color-red);
	font-size: 88%;
	letter-spacing: .04em;
	margin-top: 1em;
	margin-bottom: .4em;
}


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

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

/*---------------------------------------------------------
 form__acd
---------------------------------------------------------*/
.form__acd {
	font-size: 88%;
}
.form__acd .c-acd__trigger {
	color: var(--color-red);
	text-decoration: underline;
}
.form__acd .c-acd__trigger:hover {
	text-decoration: none;
}
/* icon */
.form__acd .c-acd__icon {
	border: 1px solid rgb(191 39 45 / 0.6);
	border-radius: 50%;
	margin-left: .5em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

}

/* form__acd - mobile
-----------------------------------------------*/
.form__acd--mobile {
	margin-top: 1em;
}
.form__acd--mobile .c-acd__content {
 	margin-top: 1em;
}
.form__acd--mobile ul {
	display: flex;
	column-gap: 1em;
	margin-top: 1em;
}
.form__acd--mobile li a {
	position: relative;
	letter-spacing: .08em;
}
.form__acd--mobile 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;
}
.form__acd--mobile a:hover {
	text-decoration: underline;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.form__acd--mobile {
	margin-top: 6%;
}
}

/* form__acd - privacy
-----------------------------------------------*/
.form__acd--privacy {
	border-top: 1px solid var(--color-bdr);
	border-bottom: 1px solid var(--color-bdr);
	margin-top: 5%;
	margin-bottom: 3%;
}
.form__acd--privacy .c-acd__trigger {
	text-align: center;
	padding: 4% 0;
}
.form__acd--privacy dt {
	font-weight: var(--fw-bold);
	margin-top: 1em;
}
.form__acd--privacy .c-acd__content {
	padding: 0 5% 5%;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.form__acd--privacy {
	margin: 8% auto 6%;
}
.form__acd--privacy .c-acd__trigger {
	padding: 1em 0;
}
.form__acd--privacy .c-acd__content {
	padding: 0 6% 6%;
}
}

/*---------------------------------------------------------
 Submit
---------------------------------------------------------*/
.form__submit {
	text-align: center;
}
.form__submit > p {
	line-height: 2;
	margin-bottom: 5%;
}
.form__submit > p span {
	color: var(--color-red);
}
.form__btnlist {
	display: flex;
	justify-content: center;
	gap: .6em .8em;
	margin-top: 4%;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.form__submit {
	text-align: left;
}
.form__submit > p {
	line-height: 1.7;
	margin-bottom: 6%;
}
.form__btnlist {
	flex-wrap: wrap;
	margin-top: 10%;
}
.form__btnlist > 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;
}
/* form__table */
.form__table .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
	display: block;
	margin-top: 1.6em;
}
.wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 1em 2em;
}
.form__table .wpcf7-list-item {
	margin: 0;
}
/* submit_box */
.form__submit .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;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.wpcf7-radio.col-2 {
	display: grid;
	justify-content: space-between;
	grid-template-columns: 50% 50%;
}
.wpcf7-radio.col-2 > li:last-of-type {
	grid-column: 1/3;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

/* form__table */
.form__table .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
	margin-top: .8em;
}
.wpcf7-radio {
	gap: .6em 1.2em;
}
/* submit_box */
.form__submit .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) {
}