@charset "utf-8";
/*----------------------------------------------
	.l_all
---------------------------------------------*/
.l_all {
	overflow: hidden;
	position: relative;
}
/*----------------------------------------------
	.l_wrap
---------------------------------------------*/
.l_wrap {
	width: 1280px;
	margin-inline: auto;
	padding: 0 20px;
}
.l_wrap_page{
	position: relative;
	margin-inline: auto;
}
.l_wrap_front{
	position: relative;
	z-index: 2;
}
.l_wrap_large {
	width: calc(100% - 60px);
	margin-inline: auto;
}
.l_wrap_small {
	width: 920px;
	margin-inline: auto;
}
.l_wrap_min {
	width: 680px;
	max-width: 100%;
	margin-inline: auto;
}
@media screen and (max-width: 1280px) {
	.l_wrap {
		width: 95%;
	}
}
@media screen and (max-width: 960px) {
	.l_wrap {
		width: 100%;
	}
	.l_wrap_small {
		width: 100%;
		padding: 0 20px;
	}
	.l_wrap_min {
		padding: 0 20px;
	}
	.l_wrap .l_wrap_min {
		padding: 0;
	}
}

/*----------------------------------------------
	.l_header
---------------------------------------------*/
.l_header {
    position: absolute;
    height: 90px;
    right: 0;
    left: 0;
    z-index: 999;
    width: fit-content;
}
.l_header_wrap {
    width: fit-content;
    height: 90px;
    align-items: center;
    padding: 0 0 0 4rem;
}
.l_header_right {
    width: 100%;
    height: 100%;
    position: relative;
}
.l_header_btnbox {
    position: absolute;
    right: 0;
	top: 0;
    bottom: 0;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
@media (max-width: 1300px) {
	.l_header_btnbox{
		display: none;
	}
}

/*  .l_logo
---------------------------------------------*/
.l_logo {
    position: relative;
    display: flex;
    justify-content: left;
    width: fit-content;
	max-width: 600px;
    height: fit-content;
    padding: 2rem 0;
}

/*  .l_nav
---------------------------------------------*/
.l_nav {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: fit-content;
    height: fit-content;
}
.l_nav_wrap{
	gap:3rem;
}
/* .l_nav_list */
.l_nav_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 4rem;
    width: 1200px;
}
.l_nav_list > li {
    position: relative;
    margin: 0 20px;
    width: auto;
    display: block;
}
.l_nav_list a {
	position: relative;
	display: block;
	text-decoration: none;
	color: var(--bl-color);
	text-align: center;
	transition: .3s;
}
.l_nav_list > li > a {
    position: relative;
    width: 100%;
    display: block;
    height: 90px;
    position: relative;
    display: block;
}
.l_nav_list .current a {
	color: var(--main-color);
}
.l_nav_list span.l_nav_en {
	display: inline-block;
	transition: all 0.3s;
}
.l_nav_list a:hover span.l_nav_en {
	opacity: 0;
	transform: translateY(-20px);
}
.l_nav_list span.l_nav_jp {
	position: absolute;
	right: -100%;
	bottom: -20px;
	left: -100%;
	opacity: 0;
	width: 150%;
	margin-inline: auto;
	font-size: 1.4rem;
	transition: all 0.3s;
}
.l_nav_list a:hover span.l_nav_jp {
	opacity: 1;
	bottom: 5px;
	font-weight: bold;
}
/* .l_nav_contact */
.l_nav_contact {
    display: flex;
    align-items: center;
    height: 100%;
}
.l_nav_contact .drawer-menu-item {
    width: 100%;
    height: 100%;
    max-height: 90px;
}
.l_nav_contact a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    background: var(--key-color);
    padding: 10px 20px 7px;
    color: var(--bk-color);
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s;
}
.l_nav_contact a:hover {
    filter: brightness(0.8);
	transition: all 0.3s;
}
.l_nav_contact > li:first-child a {
	border-radius: 5px 0 0 5px;
}
.l_nav_contact > li:last-child a {
	position: relative;
	border-radius: 0 5px 5px 0;
}
.l_nav_contact > li:last-child a::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	content: "";
	width: 1px;
	height: 50%;
	background: #fff;
	margin: auto;
}
.l_nav_contact_flex {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.l_nav_contact_tel {
    font-family: "Bebas Neue", serif;
    font-size: 3rem;
    line-height: 1;
    font-weight: normal;
}
span.l_nav_contact_time {
    display: block;
    font-size: 1.3rem;
    font-family: "Noto Sans JP", sans-serif;
}

/* .l_nac_sns */
.l_nac_sns {
    display: flex;
    align-items: center;
    line-height: 0;
    gap: 2rem;
}
.l_nac_sns a {
    color: var(--key-color);
    transition: all 0.3s;
}
.l_nac_sns a:hover {
	opacity: 0.5;
}
.l_nac_sns i {
    font-size: 2.4rem;
}
.l_nac_sns img {
	width: 24px;
}
/* .menu-checkbox */
.menu-checkbox {
	display: none;
}
/* .menu-item */
.drawer-menu-child {
    height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: -100%;
    transition: opacity .5s;
}
.l_nav_list > .menu-item:hover .drawer-menu-child {
    opacity: 1;
    overflow: visible;
}

  .drawer-menu-item .menu-item-title,
  .drawer-menu-item .menu-item-description {
	position: relative;
	left: 50%;
	top: 30px;
	transition: all 0.5s;
	transform: translate(-50%, 0);
	display: block;
	opacity: 1;
	white-space: nowrap;
  }
  .drawer-menu-item .menu-item-title{
	position: relative;
  }
  .drawer-menu-item .menu-item-description {
	position: absolute;
	opacity: 0;
	transform: translate(-50%, 100%);
  }
  .drawer-menu-item:hover .menu-item-title {
	opacity: 0;
	transform: translate(-50%, -100%);
  }
  .drawer-menu-item:hover .menu-item-description {
	opacity: 1;
	transform: translate(-50%, 0);
  }
  
  .sub-menu li a {
    text-align: left;
    display: block;
    width: 250px !important;
    background: var(--bk-color);
    border-bottom: 1px solid var(--gray-color);
    padding: 10px 10px;
}
.sub-menu li:last-child a {
    border: none;
}
.sub-menu li a:hover {
    background: var(--gray-color);
    transition: .3s;
}

.drawer_pc{
	display: block;
}
.drawer_sp{
	display: none;
}



	.l_nav {
		flex-direction: column;
		justify-content: center;
	}
	.l_nav_list li,
	.l_nav_list span.l_nav_jp,
	.l_nav_contact a {
		font-size: 1.2rem;
	}
	.l_nav_list {
		flex-direction: column;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: none;
	}
	.l_nav_list a {
		color: var(--bl-color);
	}
	.l_nav_list > li{
		height: auto;
		margin-top: 0;
	}
	.l_nav_list > li > a{
		height: auto;
		margin: 0;
	}
	.l_nav_list a:hover span.l_nav_en {
		opacity: 1;
		transform: translateY(0);
	}
	.l_nav_list span.l_nav_jp {
		display: none;
	}



/* ハンバーガーメニューのアイコン */
.drawer-icon {
  display: block;
  width: 150px;
  height: 150px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  cursor: pointer;
}
.drawer-icon span {
    display: block;
    position: absolute;
    left: 60%;
    transform: translateX(-50%);
    width: 36px;
    height: 3px;
    background-color: white;
	border-radius: 50px;
    transition: transform 0.3s ease-in-out;
}
.drawer-icon span:nth-of-type(1) {
    top: 32%;
}
.drawer-icon span:nth-of-type(2) {
    top: 25%;
    transform: translate(-50%, -50%);
}
.drawer-icon span:nth-of-type(3) {
    top: 39%;
}

/* チェックボックスがチェックされた時のアイコンの動き */
#drawer-checkbox:checked + .drawer-icon span:nth-of-type(1) {
    transform: translate(-50%, 5px) rotate(145deg);
}
#drawer-checkbox:checked + .drawer-icon span:nth-of-type(2) {
    opacity: 0;
}
#drawer-checkbox:checked + .drawer-icon span:nth-of-type(3) {
    transform: translate(-50%, -5px) rotate(35deg);
}

/* ドロワーメニューの背景アニメーション */
.menu-background {
  display: block;
  width: 150px;
  height: 150px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  background-color: var(--bl-color);
  border-radius: 0;
  border-bottom-left-radius: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
}

/* チェックボックスがチェックされた時の背景の広がり */
#drawer-checkbox:checked ~ .menu-background {
  transform: scale(80); /* 画面全体を覆うように拡大 */
}

/* ドロワーメニュー自体のスタイル */
.l_nav.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* メニュー非表示時はクリックイベントを無効化 */
  visibility: hidden; /* 最初は非表示 */
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* チェックボックスがチェックされた時のメニューの表示 */
#drawer-checkbox:checked ~ .l_nav.drawer-menu {
  pointer-events: auto; /* 表示時はクリックイベントを有効化 */
  visibility: visible;
  opacity: 1;
}

/* メニュー内のリストとリンクのスタイル */
.l_nav.drawer-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.l_nav.drawer-menu a {
    position: relative;
    display: block;
    font-size: 3rem;
    color: white;
    text-decoration: none;
    padding: 10px 0;
    text-align: left;
    transition: color 0.2s ease-in-out;
    border-bottom: 3px solid var(--wh-color);
	transition: .3s;
}

.l_nav.drawer-menu a:after {
  font-family: "FontAwesome";
  content: "\f0da";
  position: absolute;
  right: 20px;
  transition: all 0.2s;
}

.l_nav.drawer-menu a:hover:after {
  right: 15px;
}

.l_nav.drawer-menu a:hover {
  color: var(--key-color);
  border-bottom: 3px solid var(--key-color);
  transition: .3s;
}

/* チェックボックス非表示 */
.menu-checkbox {
  display: none;
}

.drawer-icon_txt {
    display: block;
    position: absolute;
    left: 60%;
    transform: translateX(-50%);
    top: 44%;
    color: white;
    font-size: 1.3rem;
	font-weight: 600;
}
@media (max-width: 1400px) {
.l_nav_list{
	gap: 2rem;
    width: 950px;
}
}
@media (max-width: 960px) {
	.drawer_pc{
		display: none;
	}
	.drawer_sp{
		display: block;
	}
	.l_header {
		top: 0;
		height: 60px;
	}
	.l_header::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		/*background: var(--wh-color);*/
		/*backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);*/
	}
	.l_header_wrap {
		grid-template-columns: 1fr 60px;
		padding: 0;
		height: 60px;
	}
	.l_logo {
		max-width: initial;
        height: 60px;
		padding-left: 1.5rem;
		justify-content: flex-start;
    }
	.drawer-menu{
		width: 60%;
	}
	.drawer-menu-item-link {
		font-size: 2.2rem;
	}
	.drawer-icon{
		width: 120px;
		height: 120px;
	}
	.menu-background{
		width: 120px;
		height: 120px;		
	}
	.l_nav {
		width: 100%;
		padding: 2rem;
	}
	.l_nav_list {
		width: 100%;
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}
@media (max-width: 768px) {
	.l_logo {
		width: 260px;
	}
	.drawer-icon{
		width: 90px;
		height: 90px;
	}
	.menu-background{
		width: 90px;
		height: 90px;		
	}
	.drawer-icon span:nth-of-type(1) {
		top: 32%;
	}
	.drawer-icon span:nth-of-type(3) {
		top: 41%;
	}
	#drawer-checkbox:checked + .drawer-icon span:nth-of-type(1) {
		transform: translate(-50%, 4px) rotate(145deg);
	}
	#drawer-checkbox:checked + .drawer-icon span:nth-of-type(3) {
		transform: translate(-50%, -4px) rotate(35deg);
	}
	.l_nav_list {
		gap: 2rem;
	}
	.l_nav_list > li {
		margin: 0;
	}
	.l_nav.drawer-menu a {
		font-size: 2rem;
	}

}

/*----------------------------------------------
	.l_main
---------------------------------------------*/
.l_main {
	min-height: 500px;
}
/*----------------------------------------------
	.l_title
---------------------------------------------*/
.anime_wrap {
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}
.l_title{
	background: var(--bk-color);
}
.l_title_image{
	filter: brightness(0.5);
}
.anime_wrap .c_ttl_type01 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    font-size: 40px;
    font-weight: bold;
    width: fit-content;
    height: fit-content;
	line-height: 1em;
}
.pattern1 img{
    opacity: 0;
    transform: translateX(40px);
    transition: .5s;
}
.pattern1.show img{
    opacity: 1;
    transform: translateX(0);
}
.pattern1 .c_ttl_type01 {
    color: #FFF;
    opacity: 0;
    transform: translateX(-40px);
    transition: .5s;
    transition-delay: .5s;
    z-index: 1;
    text-align: center;
}
.pattern1.show .c_ttl_type01 {
    opacity: 1;
    transform: translateX(0);
}

.c_ttl_catch{
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    font-size: 3rem;
    width: fit-content;
    height: fit-content;
    line-height: 1.8;
    letter-spacing: 1.8px;
    text-align: center;
    z-index: 1;
}

.blur_ttl{
	animation-name: blur;
	animation-duration: 1.3s;
	animation-fill-mode:forwards;
	animation-iteration-count: 1;
	color: var(--wh-color);
}
@keyframes blur{
	from {
	  filter: blur(50px);
	}
  
	to {
	  filter: blur(0) drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.2));
	}
}
.c_ttl_brand {
    position: absolute;
    right: 0;
    top: -70px;
    left: 0;
    margin: auto;
    font-weight: bold;
    width: fit-content;
    height: fit-content;
    line-height: 1.4;
    text-align: center;
}
.c_ttl_brand_en {
    font-family: "Big Shoulders Stencil Display", serif;
    font-size: 10rem;
    letter-spacing: 2px;
}
.c_ttl_brand_jp {
    font-size: 2rem;
    letter-spacing: 1.6px;
}



@media (max-width: 768px) {
	.l_title {
		padding: 80px 0 40px;
	}
}
/*----------------------------------------------
	.l_breadcrumb
---------------------------------------------*/
.l_breadcrumb .l_wrap {
	display: flex;
	padding-top: 1em;
	padding-bottom: 1em;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.2rem;
}
.l_breadcrumb_links a {
	color: var(--bk-color);
	text-decoration: none;
	transition: all 0.2s;
}
.l_breadcrumb_links a:hover {
	opacity: 0.5;
}
/*----------------------------------------------
	.l_section_contents
---------------------------------------------*/
.l_section_contents {
	padding: 100px 0;
}
.is_bg_wh {
	background: #fff;
}
.is_btm_none {
	padding-bottom: 0;
}
.is_top_none {
	padding-top: 0;
}
@media (max-width: 768px) {
	.l_section_contents {
		padding: 40px 0 60px;
	}
	.is_btm_none {
		padding-bottom: 0;
	}
}
/*----------------------------------------------
	.l_section_2column
---------------------------------------------*/
.l_section_2column {
	padding: 80px 0;
}
.l_section_2column .l_wrap {
	display: flex;
	justify-content: space-between;
}
.l_section_2column .l_contents {
	width: calc(100% - 320px);
}
.l_section_2column .l_side {
    width: 255px;
}
@media (max-width: 960px) {
	.l_section_2column .l_contents {
		width: calc(100% - 290px);
	}
}
@media (max-width: 768px) {
	.l_section_2column {
		padding: 40px 0 60px;
	}
	.l_section_2column .l_wrap {
		padding: 0 20px;
	}
	.l_section_2column .l_wrap {
		flex-direction: column;
	}
	.l_section_2column .l_contents,
	.l_section_2column .l_side {
		width: 100%;
	}
	.l_section_2column .l_side {
		margin-top: 60px;
	}
}
/*----------------------------------------------
	.l_side
---------------------------------------------*/
.l_side_wrap{
	background: var(--wh-color);
    padding: 2rem;
    border-radius: 15px;
}
.l_side_ttl {
    margin-bottom: 3rem;
    color: var(--bk-color);
    font-weight: 900;
}
.l_side_list a {
    display: block;
    width: fit-content;
    font-size: 1.4rem;
    padding: 2px 20px;
    margin-bottom: 1rem;
    color: var(--bk-color);
    border: 1px solid var(--bk-color);
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
}
.l_side_list a:hover {
    background: var(--key-color);
    transition: .3s;
}
@media (max-width: 768px) {
	.l_side_ttl {
		margin-bottom: 0;
	}
	.l_side_list a {
		padding: 10px 10px 8px;
		border-bottom: 1px solid var(--bk-color);
		text-decoration: none;
	}
}
/*----------------------------------------------
	.l_section_contact
---------------------------------------------*/
.l_section_contact {
	position: relative;
	background: var(--base-color);
	padding: 100px 0;
}
.l_section_contact_block {
	position: relative;
	display: flex;
	justify-content: space-between;
}
.l_section_contact_block::after {
	position: absolute;
	inset: 0;
	content: "";
	width: 1px;
	height: 100%;
	background: var(--gray-color);
	margin: auto;
}
.l_section_contact_box {
	width: 50%;
	padding: 0px 80px 0;
	text-align: center;
}
.l_section_tel {
    line-height: normal;
}
.l_section_tel a {
    font-family: "Bebas Neue", serif;
    text-decoration: none;
    color: var(--bk-color);
    font-size: 6rem;
    transition: .3s;
}
.l_section_tel a:hover {
    opacity: .7;
    transition: .3s;
}
@media (max-width: 960px) {
	.l_section_contact {
		padding: 60px 0;
	}
	.l_section_contact_box {
		padding: 50px 40px 0;
	}
}
@media (max-width: 640px) {
	.l_section_contact {
		padding: 0;
	}
	.l_section_contact_block {
		flex-direction: column;
	}
	.l_section_contact_block::after {
		content: none;
	}
	.l_section_contact_box {
		width: 100%;
		padding: 50px 0 60px;
	}
	.l_section_contact_box:first-child {
		border-bottom: 1px solid #e4e0cd;
	}
}

/*----------------------------------------------
	.l_pagetop　必要なら復活
---------------------------------------------*/
.l_pagetop {
	position: fixed;
	right: 50px;
	bottom: -100px;
	z-index: 101;
	transition: all 0.3s;
}
.l_pagetop.slidein {
	bottom: 10px;
}
.l_pagetop a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: var(--bl-color);
    border-radius: 30px;
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
    text-decoration: none;
    line-height: 1.2;
    transition: all 0.3s;
}
.l_pagetop a:hover {
	opacity: 0.5;
}
.l_pagetop i {
    font-size: 2.5rem;
}
@media (max-width: 1300px) {
	.l_pagetop {
		display: none;
	}
}
/*----------------------------------------------
	.l_footer
---------------------------------------------*/
.l_footer {
    position: relative;
    z-index: 100;
    padding: 60px 0 40px;
    background: var(--nv-color);
    color: var(--wh-color);
    font-size: 1.8rem;
    text-align: center;
}
.l_footer_logo {
    display: block;
    width: 450px;
	transition: .3s;
}
.l_footer_logo:hover {
    opacity: .7;
    transition: .3s;
}
.l_footer_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin: 4rem auto;
}
.l_footer_nav li {
    line-height: 2.2;
}
.l_f_nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.l_footer_nav a {
    color: var(--bl-color);
    transition: all 0.3s;
}
.l_footer_nav a:hover {
    filter: brightness(1.2);
}
.l_footer_nav li img {
	width: 20px;
	transform: translateY(-2px);
}
.l_footer_fix {
	display: none;
}
.l_footer_add {
    margin: 2rem 0 0;
}
.l_footer_add a{
	color: var(--wh-color);
	transition: .3s;
	text-decoration: none;
}
.l_footer_add a:hover{
	color: var(--wh-color);
	opacity: .7;
	text-decoration: none;
	transition: .3s;
}
.l_footer_company {
    font-size: 1.8rem;
}
.l_footer_sns{
	display: flex;
	align-items: center;
	margin-top: 2rem;
}
.l_footer_sns a {
    color: var(--wh-color);
    font-size: 2.4rem;
	padding: 0 1.5rem 0 0;
	transition: .3s;
}
.l_footer_sns a:hover{
    color: var(--key-color);
	transition: .3s;
}
.l_footer_nav_child a::before {
    content: "-";
    padding: 0 0.4rem;
}
@media (max-width: 1150px) {
	.l_footer_nav {
		flex-wrap: wrap;
	}
}


/*  .l_copyright
---------------------------------------------*/
.l_copyright {
    margin-top: 50px;
    text-align: center;
    font-size: 1.3rem;
}
@media (max-width: 1300px) {
	.l_footer_fix {
		position: fixed;
		z-index: 101;
		bottom: 0;
		left: 0;
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-around;
		align-items: center;
		width: 100%;
		background: var(--bl-color);
	}
	.l_footer_fix li {
		width: 100%;
		text-align: center;
		background: var(--bl-color);
	}
	.l_footer_fix li:nth-child(2n) {
		background: var(--bk-color);
	}
	.l_footer_fix li:first-child {
		border-right: 1px solid #fff;
	}
	.l_footer_fix a {
        display: block;
        padding: 1em 0.5em 0.5em;
        color: var(--wh-color);
        font-size: 2rem;
        font-weight: 600;
		letter-spacing: 1.8px;
        text-decoration: none;
    }
	.l_footer_fix_icon {
		display: inline-block;
		margin-right: 5px;
		animation: zoom 3s infinite;
	}
	.l_footer_fix_icon img {
		width: 30px;
		transform: translateY(-5px);
	}
}
@media (max-width: 1280px) {
	.l_footer {
		font-size: calc(12px + 2 * (100vw - 768px) / 512);
	}
}
@media (max-width: 960px) {
	.l_footer {
		padding: 60px 0;
	}
}
@media (max-width: 850px) {
	.l_footer {
        padding: 20px 0 30px;
        font-size: 1.2rem;
    }
	.l_footer .l_wrap {
		width: 100%;
	}
	.l_footer_wrap {
		flex-wrap: wrap;
	}
	.l_footer_logo {
		margin-bottom: 30px;
	}
	.l_footer_logo {
		width: 100%;
		max-width: 500px;
		margin-bottom: 30px;
	}
	.l_footer_nav li {
		margin: 0;
		text-align: right;
	}
	.l_footer_sns {
		margin-top: 10px;
	}
	.l_footer_sns img {
		width: 24px;
	}
	.l_footer_fix a {
		font-size: 1.4rem;
		letter-spacing: normal;
	}

	/*  .l_copyright
	---------------------------------------------*/
	.l_copyright {
		margin-top: 0px;
		text-align: center;
	}
}
@media (max-width: 768px) {
	.l_footer_nav {
		gap: 0;
		margin: 3rem auto 1rem;
	}

}