@charset "utf-8";
/*----------------------------------------------
	.l_header
---------------------------------------------*/
.l_header {
	background: var(--c_white);
	padding: 20px 0;
}

/* クリックされた後の動き */
.l_header.clicked {
	position: fixed;
	align-items: baseline;
	z-index: 999;
	width: 100%;
	height: 100vh;
	background: var(--c_white);
}
.l_header.clicked .l_menu {
	justify-items: center;
	width: 100%;
	padding: 50px 20px;
	background: var(--c_sub);
}


/*----------------------------------------------
	.l_logo
---------------------------------------------*/
.l_logo {
	width: 257px;
}

/*----------------------------------------------
	.l_nav
---------------------------------------------*/
.l_nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}


/*----------------------------------------------
	.l_menu
---------------------------------------------*/
.l_menu {
	display: grid;
	grid-auto-flow: column;
	gap: 0 50px;
}
.l_menu li a {
	font-size: 16px;
	font-weight: bold;
	color: var(--c_black);
	transition: .2s;
}
.l_menu li a:hover {
	opacity: 0.7;
}

/* クリックされた後の動き */
.clicked .l_menu {
	position: absolute;
	top: 100px;
	right: 50%;
	translate: 50% 0;
	display: grid;
	grid-auto-flow: row;
	gap: 30px 0;
}


/*----------------------------------------------
	.l_ham
---------------------------------------------*/
.l_ham {
	display: none;
	position: relative;
	z-index: 999;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: var(--c_main);
	cursor: pointer;
}
.l_ham span {
	position: absolute;
	width: 25px;
	height: 2px;
	right: 50%;
	translate: 50% 0;
	background: var(--c_white);
	transition: .2s;
}
.l_ham span:nth-child(1) {
	top: 30%;
}
.l_ham span:nth-child(2) {
	top: 50%;
}
.l_ham span:nth-child(3) {
	top: 70%;
}

/* クリックされた後の動き */
.l_ham.clicked span:nth-child(1) {
	top: 50%;
	rotate: 45deg;
}
.l_ham.clicked span:nth-child(2) {
	display: none;
}
.l_ham.clicked span:nth-child(3) {
	top: 50%;
	rotate: -45deg;
}


/*----------------------------------------------
	.l_main
---------------------------------------------*/
.inner .l_main {
	background-image: url(../images/bg_circle01.png);
	background-size: 1000px;
	background-position: -88px -312px;
	background-repeat: no-repeat;
}


/*----------------------------------------------
	.l_wrap_inner
---------------------------------------------*/
.l_wrap_inner {
	position: relative;
	margin-bottom: 100px;
	padding: 100px 0;
	border-radius: 10px;
	background: var(--c_sub);
}
.l_wrap_inner::before {
	position: absolute;
	top: -157px;
	right: -166px;
	z-index: -1;
	width: 500px;
	height: 500px;
	content: "";
	background-image: url(../images/bg_triangle01.png);
	background-repeat: no-repeat;
	background-size: 100%;
}
.l_wrap_inner::after {
	position: absolute;
	bottom: -240px;
	left: -145px;
	z-index: -1;
	width: 350px;
	height: 350px;
	content: "";
	background-image: url(../images/bg_triangle02.png);
	background-repeat: no-repeat;
	background-size: 100%;
}


/*----------------------------------------------
	.l_mv
---------------------------------------------*/
.l_mv {
	position: relative;
	height: 750px;
	margin-left: 10%;
	background-image: url(../images/mv.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
}

/*is_catchcopy*/
.is_catchcopy {
	position: absolute;
	left: -7%;
  bottom: 35px;
}
.is_catchcopy span {
	display: inline-block;
	margin-bottom: 24px;
	padding: 14px 24px 14px 34px;
	border-radius: 5px;
	font-size: 40px;
	font-weight: bold;
	font-family: var(--f_hiragino_marugo);
	background: var(--c_main);
	color: var(--c_white);
}

/*is_narurun*/
.is_narurun {
	position: absolute;
	width: 350px;
	top: 20px;
	right: 10%;
}

/*is_bg_circle01*/
.is_bg_circle01 {
	position: absolute;
	left: -280px;
	bottom: -720px;
	z-index: -1;
	width: 1253px;
}

/*is_bg_circle02*/
.is_bg_circle02 {
	position: absolute;
	right: -150px;
	bottom: -260px;
	z-index: 1;
	width: 480px;
}


/*----------------------------------------------
  .l_footer
---------------------------------------------*/
.l_footer {
	padding-top: 50px;
	background: var(--c_sub);
}
.l_footer .l_menu a {
	color: var(--c_main);
	font-weight: normal;
}


/*----------------------------------------------
  .l_copyright
---------------------------------------------*/
.l_copyright {
	padding: 10px;
	text-align: center;
	background: var(--c_main);
	color: var(--c_white);
	font-size: 14px;
}