@charset "utf-8";

/*----------------------------------------------
	ヘッダー
---------------------------------------------*/
.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_logo {
	height: auto;
	width: 70%;
}

.l_header_text {
    font-size: clamp(20px, 2.2vw, 24px);
}

.l_header_link{
	display: flex;
	align-items: center;
	padding: 10px 0;
	color: var(--blk-color);
}
.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-four-color) !important; 
}

.l_nav_contact {
	padding: 10px 10px 10px 10px;
	background: var(--accent-four-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-three-color);
}
.l_nav_contact .is-active {
	background: var(--accent-four-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-four-color);
}
@media (max-width: 1170px) {
	.l_header_logo {
		max-width: 400px;
	}
	.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_header_logo {
		height: 50%;
		width: 60%;
	}
	.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;
		height: 40px;
		border-radius: 50%;
		background: var(--accent-four-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_bread {
	margin-bottom: 5px;
	padding: var(--padding-container);
}

.l_bread a {
	color: #858585;
	transition: .3s;
}

.l_bread span {
    color: #858585;
    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: #858585;
	margin: .5em;
}

/* L_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-two-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;
	}
	
}


/*----------------------------------------------
	フッター
---------------------------------------------*/
.l_footer{
	position: relative;
}
.l_footer .lp-container {
	position: relative;
	padding: 80px 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;
}
.f_contact_num {
	white-space: nowrap;
}

.l_footer_copyright{
	position: relative;
	padding: var(--padding-regular);
	text-align: center;
	background: var(--accent-four-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: 20px auto;
}
.l_footer_telephone, .l_footer_mail {
	width: 50px;
	height: 40px;
}

.l_footer_link {
	padding: 15px 30px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 50px 10px;
	transition: box-shadow 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	cursor: pointer;
}
.l_footer_logo_link {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--primary-font);
	color: var(--primary-color);
	font-size: 1.5em;
	font-weight: 500;
	line-height: 24px;
}
.l_footer_link:hover {
	transform: scale(1.01);
}
.l_telephone:hover {
	box-shadow: 1px 2px 5px var(--accent-four-color);
}
.l_mail:hover {
	box-shadow: 1px 2px 5px var(--accent-two-color);
}


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

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

.l_footer_text_telephone{
	font-family: var(--secondary-font);
}
.l_footer_phone {
	text-decoration: none;
	color: var(--primary-color);
}
.l_footer_phone:hover {
	color: var(--accent-four-color);
}
.footer_break{
	display: none;
}
.f_br_xs {
	display: none;
}
@media (max-width: 1200px){
	.l_footer .lp-container {
		padding: 40px 20px;
	}
}
@media (max-width: 768px) {
	.l_footer_button{
		flex-direction: column;
		margin-bottom: 20px;
	}
	.l_footer_link {
		margin: 10px auto;
	}
	.l_footer .l_nav_ul {
		flex-direction: column;
		gap: 20px;
	}
	.l_footer .l_nav_link {
		padding: 10px 40px;
		font-size: 1.6rem;
	}
	.l_footer .lp-container {
		padding: 40px 20px;
	}
	.l_footer_navigation{
		display: none;
	}
	.l_footer_logo{
		display: none;
	}
	.l_footer_address{
		gap: 0px;
	}
	.l_footer .l_footer_copy{
		font-size: .8em;
	}
}
@media (max-width: 500px) {
	.l_footer_logo {
		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;
	}
}
@media (max-width: 400px){
	.f_contact_num {
		white-space: wrap;
	}
	.f_br_xs {
		display: flex;
	}
}

