@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figcaption, figure, section, footer, header, main, hgroup, menu, nav, summary {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
@media all and (max-width: 374px) {
	html {
		font-size: calc(1000vw / 375);
	}
}
body, table, input, textarea, select, option {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}
article, aside, canvas, details, figcaption, figure, footer, header, main, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
chrome_annotation {
	border: none !important;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}
address {
	font-style: normal;
}
a,
a:link {
	color: inherit;
	text-decoration: none;
	transition: 0.3s;
}
a:visited {
	color: inherit;
}
a:hover {
	color: inherit;
}
a:active {
	color: inherit;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1200px;
	color: #222;
	font-size: 1.6rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
body.fixed {
	position: fixed;
	width: 100%;
	top: 0;
}
#container {
	position: relative;
	text-align: left;
	overflow: hidden;
}
#main {
	padding-bottom: 8rem;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 1200px) {
	.pc-sm,
	.sp-lg,
	.menu {
		display: none !important;
	}
}
@media all and (max-width: 1199px) {
	body {
		min-width: inherit;
	}
	.pc-lg {
		display: none !important;
	}
}
@media all and (min-width: 768px) {
	body.fixed {
		overflow-y: scroll;
	}
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 767px) {
	body {
		font-size: 1.4rem;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc,
	.pc-sm {
		display: none !important;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#l-header {
	padding: 2rem;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 200;
}
#l-header .logo {
	position: relative;
	line-height: 1;
	z-index: 100;
}
#l-header .logo a {
	width: 24rem;
	display: block;
}
#l-navi {
	display: flex;
	align-items: center;
	gap: 1rem;
}
#l-navi .navi-list {
	margin-bottom: 0.4rem;
	display: flex;
}
#l-navi .navi-list li a {
	padding: 1.6rem 1rem;
	display: block;
	position: relative;
	font-weight: 700;
	font-size: 1.5rem;
}
#l-navi .navi-list li a::after {
	width: 100%;
	height: 0.4rem;
	position: absolute;
	left: 50%;
	bottom: 0;
	background: #2CABDE;
	transform: translateX(-50%);
	content: '';
	opacity: 0;
	transition: 0.3s;
}
#l-navi .btn-list {
	display: flex;
	gap: 0.5rem;
}
#l-navi .btn-list li {
	width: 19.2rem;
	height: 6rem;
}
#l-navi .btn-list .cta-btn {
	width: 16.1rem;
}
#l-navi .btn-list a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	border-radius: 10rem;
	background: #2CABDE;
}
#l-navi .btn-list a::before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: inherit;
	background: linear-gradient(90deg, #2CABDE 0%, #8D52FF 100%);
	content: '';
	opacity: 0;
	transition: 0.3s;
}
#l-navi .btn-list a span {
	padding-left: 3rem;
	padding-bottom: 0.3rem;
	display: inline-block;
	background: url(../../img/common/icon03.png) no-repeat left center / 2.4rem;
	position: relative;
	z-index: 1;
}
#l-navi .btn-list .cta-btn a {
	background: #8D52FF;
}
#l-navi .btn-list .cta-btn a span {
	background-image: url(../../img/common/icon04.png);
}
@media all and (min-width: 1200px) {
	.menu-box {
		display: block !important;
	}
}
@media all and (max-width: 1199px) {
	#l-header {
		padding: 3rem 2rem;
	}
	.menu {
		width: 4rem;
		height: 4rem;
		position: relative;
		border-radius: 100%;
		background: #2CABDE;
		transition: 0.3s;
		cursor: pointer;
		z-index: 101;
	}
	.menu span {
		width: 1.5rem;
		height: 0.2rem;
		position: absolute;
		left: 1.25rem;
		top: 1.4rem;
		background: #fff;
		transition: 0.3s;
		z-index: 1;
	}
	.menu span:nth-child(2) {
		top: 1.9rem;
	}
	.menu span:nth-child(3) {
		top: 2.4rem;
	}
	.menu.on {
		background: #fff;
	}
	.menu.on span {
		background: #2CABDE;
	}
	.menu.on span:nth-child(1) {
		transform: translateX(0) translateY(0.5rem) rotate(45deg);
	}
	.menu.on span:nth-child(2) {
		opacity: 0;
	}
	.menu.on span:nth-child(3) {
		transform: translateX(0) translateY(-0.5rem) rotate(-45deg);
	}
	.menu-box {
		width: 100%;
		height: 100svh;
		position: absolute;
		left: 0;
		top: 0;
		background: #fff;
		overflow-y: auto;
		z-index: 90;
		display: none;
	}
	#l-navi {
		padding: 12.2rem 2rem 6.8rem;
		display: block;
	}
	#l-navi .navi-list {
		margin-bottom: 2.5rem;
		flex-direction: column;
		align-items: center;
	}
	#l-navi .navi-list li a {
		padding: 1rem;
		line-height: 1.4;
	}
	#l-navi .btn-list {
		flex-direction: column;
		gap: 1rem;
	}
	#l-navi .btn-list li {
		width: 100%;
	}
	#l-navi .btn-list .cta-btn {
		width: 100%;
	}
}
@media all and (min-width: 768px) {
	.menu::before {
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		background: linear-gradient(90deg, #2CABDE 0%, #8D52FF 100%);
		border-radius: inherit;
		opacity: 0;
		transition: 0.3s;
		content: '';
	}
	.menu:hover:before {
		opacity: 1;
	}
	.menu:hover span {
		background: #fff;
	}
	#l-navi .navi-list li a:hover {
		color: #2CABDE;
	}
	#l-navi .navi-list li a:hover::after {
		opacity: 1;
	}
	#l-navi .btn-list a:hover::before {
		opacity: 1;
	}
}
@media all and (max-width: 767px) {
	#l-header {
		padding: 1rem 1rem 1rem 2rem;
	}
	#l-header .logo a {
		width: 17.3rem;
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#l-footer {
	padding: 2rem 3rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 3rem;
	background: #F4F4F4;
}
#l-footer .f-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}
#l-footer .f-logo {
	width: 24rem;
}
#l-footer .f-logo a {
	display: inline-block;
}
#l-footer .f-nav-list {
	margin-bottom: 0.4rem;
	display: flex;
	gap: 2rem;
	font-size: 1.2rem;
}
#l-footer .f-nav-list li a {
	display: inline-block;
	color: rgba(34, 34, 34, 0.7);
}
#l-footer .f-nav-list li a::after {
	width: 1.2rem;
	display: inline-block;
	vertical-align: -0.2rem;
	background: url(../../img/common/icon01.png) no-repeat center center / 100%;
	content: '';
	aspect-ratio: 1;
}
#l-footer .copyright {
	margin-bottom: 0.3rem;
	font-size: 1rem;
	opacity: 0.5;
}
@media all and (min-width: 768px) {
	#l-footer .f-nav-list li a:hover {
		color: rgba(34, 34, 34, 0.9);
		text-decoration: underline;
	}
}
@media all and (max-width: 1199px) {
	#l-footer {
		padding: 4rem 2rem 9.7rem;
		display: block;
	}
	#l-footer .f-nav {
		display: block;
	}
	#l-footer .f-logo {
		margin: 0 auto 1.6rem;
		width: 17.2rem;
		line-height: 1;
	}
	#l-footer .f-nav-list {
		margin-bottom: 2.3rem;
		display: block;
		text-align: center;
	}
	#l-footer .f-nav-list li {
		margin-bottom: 1.4rem;
	}
	#l-footer .f-nav-list li:last-child {
		margin-bottom: 0;
	}
	#l-footer .copyright {
		margin-bottom: 0;
		text-align: center;
	}
}