@charset "utf-8";

/*----------------------------------------------
        Header Layout / ヘッダーレイアウト
---------------------------------------------*/
.l_header {
	width: calc(100% - 20px);
	height: 80px;
	padding: 15px 20px 15px 40px;
	background-color: rgba(255, 255, 255, 0.91);
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 99;
	border-radius: 50px;
	overflow: hidden;
}

.l_header_link {
	max-width: 230px;
}

.l_header_logo {
	height: auto;
	width: 100%;
}

.l_header_link {
	display: flex;
	align-items: center;
	justify-content: start;
	padding: 10px 0;
}

.l_header_link h2 {
	font-family: var(--primary-font);
	font-size: .8em;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 1%;
	color: var(--primary-color);
	margin-left: -10px;
}

.l_nav {
	display: flex;
	align-items: center;
	gap: 40px;
	height: 100%;
}

.l_nav_ul {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 40px;
}

.l_nav_list {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.l_nav_link {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	transition: .3s;
	font-family: var(--primary-font);
	font-size: 1em;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-wrap: nowrap;
}

.l_nav_link.link_active {
	color: var(--accent-one-color) !important;
}

.l_nav_contact {
	padding: 10px 10px 10px 10px;
	background: var(--accent-three-color);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--secondary-color);
	border-radius: 360px;
	transition: .3s;
	min-width: 50px;
	max-width: 50px;
	height: 50px;
	transition: .5s ease all;
}

.l_nav_list_contact {
	display: none;
}

.l_nav_contact:hover {
	background: var(--accent-two-color);
}

.l_nav_contact .is-active {
	background: var(--accent-one-color);
}

.l_nav_arrow {
	width: 10px;
	height: 19px;
	margin-left: 5px;
}

.l_nav_mail {
	width: 20px;
	height: 16px;
}

.l_sptab_burger {
	display: none;
}

.l_nav_link:hover {
	color: var(--accent-one-color);
}

@media (max-width: 1170px) {
	.l_header_link h2 {
		font-size: .4em;
		margin-left: -25px;
	}
}

@media (max-width: 1150px) {

	.l_header {
		height: 60px;
		padding: 10px 10px 10px 20px;
		overflow: unset;
	}

	.l_nav {
		padding: 40px 0 30px;
		position: absolute;
		background-color: rgba(255, 255, 255, 0.9);
		box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
		border-radius: 20px;
		width: calc(100%);
		height: auto;
		top: 70px;
		left: 0px;
		transform: translateX(calc(100% + 20px));
		transition: .3s;
		flex-direction: column;
		justify-content: center;
		gap: 20px;
		z-index: -1;
		overflow: hidden;
	}

	.active .l_nav {
		transform: translateX(0);
	}

	.l_header .l_nav_ul {
		flex-direction: column;
		gap: 20px;
	}

	.l_header .l_nav_link {
		padding: 10px 40px;
		font-size: 1.6rem;
	}

	.l_nav_list_contact {
		display: flex;
	}

	.l_nav_contact {
		display: none;
	}

	.l_sptab_burger {
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		width: 40px;
		min-width: 40px;
		height: 40px;
		border-radius: 50%;
		background: var(--accent-one-color);
		cursor: pointer;
	}

	.l_sptab_burger-top,
	.l_sptab_burger-middle,
	.l_sptab_burger-bottom {
		width: 20px;
		height: 2px;
		border-radius: 2px;
		position: absolute;
		transition: .3s;
		background: var(--secondary-color);
	}

	.l_sptab_burger-top {
		transform: translateY(-7px);
	}

	.l_sptab_burger-bottom {
		transform: translateY(7px);
	}

	.active .l_sptab_burger-top {
		transform: rotate(45deg);
	}

	.active .l_sptab_burger-middle {
		opacity: 0;
	}

	.active .l_sptab_burger-bottom {
		transform: rotate(-45deg);
	}
}

@media (max-width:500px) {

	.l_header_link.c_link h2,
	.l_footer_address .c_link h2 {
		font-size: 16px;
	}

	.l_header_link {
		max-width: 150px;
	}
}

/*----------------------------------------------
        Breadcrumbs / パンくず
---------------------------------------------*/
.l_bread {
	margin-bottom: 5px;
	padding: var(--padding-container);
}

.l_bread a {
	color: var(--color-muted);
	transition: .3s;
}

.l_bread span {
	color: var(--color-muted);
	text-wrap: nowrap;
	white-space: wrap;
}

.l_bread span:last-child {
	text-wrap: wrap;
	color: var(--blk-color);
}

.l_bread a:hover {
	color: var(--primary-color);
}

.l_bread span+span:before {
	content: "＞";
	color: var(--color-muted);
	margin: .5em;
}

/*----------------------------------------------
        Page Top Button / ページトップボタン
---------------------------------------------*/
.l_topbtn {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 999;
	transition: .3s;
	transform: translateY(100px);
}

.l_topbtn.is_active {
	transform: translateY(0);
}

.l_topbtn_link {
	background: var(--accent-one-color);
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
	border-radius: 50%;
}

.l_top_arrow {
	width: 40px;
	height: fit-content;
	fill: white;
	margin-top: 35px;
}

.l_topbtn_link:hover {
	filter: brightness(120%);
}

@media (max-width: 1160px) {
	.l_topbtn_link {
		width: 40px;
		height: 40px;
	}

	.l_topbtn_link:hover {
		filter: none;
	}
}

@media (max-width: 600px) {
	.l_top_arrow {
		width: 30px;
		margin-top: 30px;
	}
}

@media (max-width: 500px) {
	.l_bread {
		padding: 0 20px;
	}

}


/*----------------------------------------------
        Footer Layout / フッターレイアウト
---------------------------------------------*/
.l_footer {
	position: relative;
}

.l_footer .c_lg_container,
.l_footer .lp-container {
	position: relative;
	padding: 40px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 1;
}

.l_footer_logo {
	height: 100%;
	width: 100%;
}

.l_footer_ovalbg {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
	background: var(--grey-color);
	min-height: inherit;
	width: 100%;
	height: 100%;
	border-radius: 50% 50% 0 0;
}

.l_footer_address {
	display: flex;
	align-items: start;
	height: auto;
	gap: 20px;
}

.l_footer_logo {
	width: 100%;
	height: inherit;
}

.l_footer_copy {
	color: var(--primary-color);
	text-align: center;
	font-family: var(--primary-font);
	font-size: var(--paragraph-font);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.9px;
	margin: 20px auto;
}

.c_link h2 {
	font-family: var(--primary-font);
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	letter-spacing: 1%;
	text-align: center;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.l_footer_copyright {
	position: relative;
	padding: var(--padding-regular);
	text-align: center;
	background: var(--accent-three-color);
	z-index: 0;
}

.l_footer_copyright p {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--secondary-color);
}

.l_footer_navigation {
	padding: var(--padding-regular);
	border-top: 1px solid var(--primary-color);
	width: fit-content;
	margin: 10px auto;
}

.l_footer_announcement {
	background-color: #f7f7f7;
	padding: 0px 20px;
	width: 100%;
}

.l_footer_announcement_ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.l_footer_announcement_list {
	border: none;
	padding: 0;
	margin: 0;
}

.l_footer_announcement_link {
	display: inline-block;
	color: #333333;
	font-size: 1em;
	font-weight: 500;
	text-decoration: none;
	text-align: center;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.l_footer_announcement_link:hover {
	color: var(--accent-one-color);
}

.l_footer_announcement_title {
	white-space: nowrap;
}

.l_footer_telephone,
.l_footer_mail {
	width: 50px;
	height: 40px;
}

.l_footer_button {
	gap: 20px;
	justify-content: center;
	width: 100%;
}

.l_footer_link {
	padding: 15px 30px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 50px 0px;
	transition: box-shadow 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	cursor: pointer;
	width: 100%;
	max-width: 330px;
}

.l_footer_link:hover {
	transform: scale(1.01);
}

.l_telephone:hover {
	box-shadow: 1px 2px 5px var(--accent-one-color);
}

.l_mail:hover {
	box-shadow: 1px 2px 5px var(--accent-one-color);
}


.l_footer_nav_link {
	margin-left: 10px;
	font-size: 1.875em;
	font-weight: 800;
	color: var(--secondary-color);
}

.l_telephone {
	background: var(--accent-one-color);
}

.l_mail {
	background: var(--accent-two-color);
}

.l_footer_text_telephone {
	font-family: var(--secondary-font);
}

.footer_break {
	display: none;
}

@media (max-width: 1200px) {

	.l_footer .c_lg_container,
	.l_footer .lp-container {
		padding: 40px 20px;
	}
}

@media (max-width: 768px) {
	.l_footer_button {
		flex-direction: column;
		margin-bottom: 20px;
	}

	.l_footer_link {
		margin: 0;
	}

	.l_footer .l_nav_ul {
		flex-direction: column;
		gap: 20px;
	}

	.l_footer .l_nav_link {
		padding: 10px 40px;
		font-size: 1.6rem;
	}

	.l_footer .c_lg_container,
	.l_footer .lp-container {
		padding: 40px 20px;
	}

	.l_footer_navigation {
		display: none;
	}

	.l_footer_logo {
		display: none;
	}

	.c_link {
		display: flex;
		justify-content: start;
		align-items: center;
	}

	.c_link .l_footer_logo {
		display: flex;
		width: 100%;
	}

	.c_link h2 {
		width: fit-content;
	}

	.l_footer_address {
		gap: 0px;
	}

	.l_footer .l_footer_copy {
		font-size: .8em;
	}
}

@media (max-width: 500px) {
	.l_footer_logo .c_link {
		flex-direction: column;
	}

	.l_footer_telephone,
	.l_footer_mail {
		width: 20px;
		height: 30px;
	}

	.l_footer_nav_link {
		font-size: 1.25em;
	}

	.l_footer_logo {
		max-width: 200px;
		margin: auto;
		text-align: center;
	}

	.footer_break {
		display: flex;
	}

	.l_footer_ovalbg {
		border-radius: 0 0;
	}

	.l_footer_announcement {
		padding: 0;
	}

	.l_footer_announcement_title {
		white-space: wrap;
		text-align: center;
	}

	.l_footer_link {
		max-width: 300px;
	}
}


/* Contact Form */
.l_contact {
	width: 100%;
	max-width: 1400px !important;
	padding: var(--padding-container);
	margin: auto;
	display: flex;
	flex-direction: column;
}

.l_phone_display {
	background: var(--grey-color);
	padding: 30px 60px;
	border-radius: 10px;
	width: 100%;
	font-family: var(--secondary-font);
	text-align: center;
	font-size: 3em;
	font-weight: 800;
	color: var(--accent-one-color);
}

.l_phone_link {
	color: var(--accent-one-color);
	font-family: var(--secondary-font);
	font-size: 1.125em;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	letter-spacing: 2.5px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.phone-icon {
	width: 100%;
	max-width: 65px;
	height: 50px;
}

.l_p_contact_container,
.form_wrap,
.terms_text {
	width: 100%;
	max-width: 1000px;
	margin: auto;
}

.l_phone_text {
	color: var(--primary-color);
	font-family: var(--primary-font);
	font-size: .5em;
	font-style: normal;
	font-weight: 500;
	line-height: 44px;
	letter-spacing: 0.8px;
}


.l_contact_text {
	color: var(--blk-color);
	text-align: center;
	font-family: var(--primary-font);
	font-size: 1.125em;
	font-style: normal;
	font-weight: 500;
	line-height: 38px;
	margin: 20px 0;
}

.l_field_label {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.l_contact_information {
	margin-bottom: 30px;
}

.l_label_text {
	margin-bottom: 10px;
	color: var(--blk-color);
	font-family: var(--primary-font);
	font-size: 1.5em;
	font-style: normal;
	font-weight: 700;
	line-height: 44px;
	letter-spacing: 1.2px;
}

.l_required_badge {
	border-radius: 50px;
	background: var(--accent-two-color);
	padding: 2px 20px;

	color: var(--secondary-color);
	font-family: var(--primary-font);
	font-size: .6em;
	font-style: normal;
	font-weight: 700;
	line-height: 44px;
	letter-spacing: 0.8px;
}

.l_postal {
	display: flex;
	align-items: center;
	gap: 20px;
	width: 100%;
}

.wpcf7-form-control-wrap {
	width: 100%;
}

.l_postal input {
	width: 50%;
}

input,
textarea {
	width: 100%;
	border-radius: 10px;
	background: var(--grey-color);
	border: none;
	padding: 10px;

	color: var(--primary-color);
	font-family: var(--primary-font);
	font-size: 1.5em;
	font-style: normal;
	font-weight: 700;
	line-height: 44px;
	letter-spacing: 1.2px;
}

.wpcf7-form-control-wrap {
	display: flex;
	flex-direction: column;
}

.l_terms_text {
	width: 100%;
	height: 280px;
	max-width: 600px;
	overflow-y: auto;
	border: 1px solid var(--primary-color);
	padding: var(--padding-container);
	margin: auto;
	margin-bottom: 20px;
}

.l_ttl-inquire {
	color: var(--blk-color);
	font-family: var(--primary-font);
	font-style: normal;
	line-height: 30px;
	letter-spacing: 1px;
}

.l_ttl-inquire h1 {
	font-size: 1.25em;
	font-weight: 700;
}

.l_ttl-inquire p {
	font-size: 1em;
	font-weight: 600;
}

.l_ttl-inquire-policy {
	color: var(--blk-color);
	font-family: var(--primary-font);
	font-size: 1em;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 0.8px;
}

.l_privacy_ol {
	list-style: none;
	padding: 0;
	margin: 15px 0 0 0;
}

.l_privacy_ol>li {
	margin-bottom: 20px;
}

.l_privacy_item_ttl {
	font-weight: 700;
	display: block;
	margin-bottom: 6px;
	color: var(--blk-color);
}

.l_privacy_ol p {
	margin: 0 0 10px 0;
	line-height: 1.8;
}

.l_privacy_sub_ul {
	list-style-type: disc;
	padding-left: 24px;
	margin: 8px 0 12px 0;
}

.l_privacy_sub_ul li {
	list-style-type: disc;
}

.l_privacy_sub_ul li::marker {
	color: var(--blk-color)
}

.l_privacy_sub_ul li {
	margin-bottom: 4px;
	line-height: 1.7;
}

.l_privacy_contact_info {
	margin-top: 25px;
	padding-top: 15px;
	border-top: 1px solid #E5E7EB;
}

.l_privacy_contact_info p {
	margin: 6px 0;
	line-height: 1.6;
}

.wpcf7-form-control-wrap,
.wpcf7-checkbox,
.wpcf7-list-item {
	display: flex;
	width: 100%;
}

.wpcf7-form-control .wpcf7-acceptance {
	margin: auto;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.wpcf7-list-item {
	margin: 0 auto !important;
	width: 100%;
}

.l_agreement-check label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 20px;
	max-width: 250px;
	margin: auto;
}

.l_agreement-check input {
	position: relative;
	width: 25px;
	height: 25px;
	background: gray;
	border: none;
	margin: 0 !important;
}

.l_agreement-check .wpcf7-list-item-label {
	position: relative;
	color: var(--blk-color);
	font-family: var(--primary-font);
	font-size: 1.25em;
	font-style: normal;
	font-weight: 700;
	line-height: 44px;
	letter-spacing: 1px;
	width: 100%;
	max-width: fit-content;
	display: flex;
	text-wrap: nowrap;
	flex-wrap: nowrap;
	margin: 0 !important;
}

.l_contact_btn {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px auto;

	background: var(--accent-one-color);
	border-radius: 20px;

	width: fit-content;
	cursor: pointer;
	transition: all .5s ease-in-out;
}

.l_contact_btn:hover {
	background: var(--accent-three-color);
}

.l_contact_btn_flex {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.l_contact_btn input {
	background: none;
	padding: 0;
	width: 100%;
	color: var(--secondary-color);
	font-family: var(--primary-font);
	font-size: 1.625em;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1.3px;
	padding: 20px 60px;
}

/* The default disabled state */
.l_contact_submit {
	cursor: pointer;
}

.l_contact_btn:has(input:disabled) {
	background: grey;
	cursor: not-allowed;
}

/* Ensure the spinner is invisible but preserves its spot in the layout */
.wpcf7-spinner {
	position: absolute;
	right: 5%;
	display: none;
	width: 100%;
	min-width: 20px;
	max-width: 20px;
	height: 20px;
	margin: 0;
	margin-left: 5px;
}

/* Only show it when the parent form is in the 'submitting' state */
.wpcf7-form.submitting .wpcf7-spinner {
	display: block;
}

.l_recaptcha-text {
	color: var(--blk-color);
	font-family: var(--primary-font);
	font-size: .875em;
	font-style: normal;
	font-weight: 700;
	line-height: 30px;
	letter-spacing: 0.7px;
	text-align: center;
	padding: var(--padding-container);
}

.l_recaptcha-text a {
	text-decoration: underline;
	color: var(--blk-color);
	font-family: var(--primary-font);
	font-size: .875em;
	font-style: normal;
	font-weight: 700;
	line-height: 30px;
	letter-spacing: 0.7px;
	text-align: center;
}



@media (max-width: 768px) {
	.l_phone_display {
		padding: 30px;
	}

	.phone-icon {
		max-width: 50px;
		height: 35px;
	}

	.l_phone_link {
		font-size: .8em;
	}

	.l_phone_text {
		font-size: .4em;
	}

	.l_label_text {
		font-size: 1.25em;
	}

	.l_required_badge {
		padding: 5px 20px;
		font-size: .6em;
	}

	.l_contact_btn input {
		font-size: 1em;
	}
}

@media (max-width: 500px) {
	.l_phone_display {
		padding: 20px;
	}

	.l_phone_link {
		font-size: .62em;
		gap: 10px;
	}

	.l_phone_text {
		font-size: .35em;
	}

	.phone-icon {
		max-width: 45px;
		height: 30px;
	}

	.l_contact_btn {
		margin: 20px auto;
	}

	.l_postal input {
		width: 100%;
	}

	.l_contact_text {
		font-size: 1em;
	}

	textarea {
		height: 300px;
	}

	.l_contact_btn input {
		font-size: 1.25em;
		padding: 15px 20px;
		width: 100%;
	}

	.l_contact_btn {
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 400px) {
	.l_contact_text {
		font-size: .875em;
	}

	.l_recaptcha-text {
		font-size: .7em;
	}

	.l_recaptcha-text {
		padding: 20px 0 0;
	}

	.l_ttl-inquire p {
		font-weight: 500;
	}
}

@media (max-width: 320px) {
	.l_phone_link {
		flex-direction: column;
	}

	.l_contact_text {
		font-size: 0.813em;
	}
}