@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@300;400;500;700&family=M+PLUS+1p:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600&display=swap');

:root {
	--text: #262626;
	--basic: #0091a6;
	--primary: #ec6d81;
	--white: #ffffff;
}

html {
	font-size: 62.5%;
}

body {
	font-family: 'M PLUS 1p', sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--text);
}

.bg_g {
	background-color: var(--basic);
}

.bg_p {
	background-color: var(--primary);
}

p {
	font-family: 'Noto Sans JP', sans-serif;
}


.container {
	max-width: 1280px;
	margin: 0 auto;
}

/* button */
.button:hover {
	opacity: 0.8;
}

.button a {
	display: block;
	text-align: center;
	padding: 1em 1em;
}

.section-title-ja {
	color: var(--text);
	font-family: "M PLUS 1";
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: 3.8rem;
	letter-spacing: 0.05em;
	text-align: center;
}

h3 {
	font-family: 'M PLUS 1p', sans-serif;
	font-size: 2.2rem;
	line-height: 3.5rem;
	font-weight: 500;
	letter-spacing: 0.1em;
}


.button {
	color: var(--white);
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	line-height: 2.2rem;
	letter-spacing: 0.05em;
	border-radius: 50px;
}

@media screen and (min-width: 768px) {
	.button {
		color: var(--white);
		text-align: center;
		font-size: 2.8rem;
		font-weight: 500;
		line-height: 1.95rem;
		letter-spacing: 0.05em;
		border-radius: 48px;
	}
}

.sp-only {
	display: block;
}

.pc-only {
	display: none;
}


@media screen and (min-width: 1024px) {
	.sp-only {
		display: none;
	}

	.pc-only {
		display: block;
	}


	.section-title-ja {
		font-size: 3.6rem;
		line-height: 5.7rem;
	}

	h3 {
		font-size: 2.8rem;
		line-height: 4.5rem;
		letter-spacing: 0.1em;
	}

}

/* header */
header {
	background-color: rgba(255, 255, 255, 0.5);
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	z-index: 1;
}

.header_inner {
	padding: 15px 30px 17px 30px;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

@media screen and (min-width: 1024px) {
	.header_inner {
		padding: 26px 30px;
		justify-content: space-between;
	}
}


a.logo {
	width: 220px;
	display: flex;
	height: 32.381px;
}

@media screen and (min-width: 1024px) {
	a.logo {
		width: 280px;
		height: 48px;
	}

	ul.global-menu-list {
		gap: 22px;
		display: flex;
	}

	nav.global-menu.pc-only {
		font-weight: 600;
		font-size: 1.8rem;
		line-height: 2rem;
		letter-spacing: 0.05em;
		text-align: center;
		color: var(--white);
	}


	li.global-menu-item a {
		display: block;
		padding: 12px 22px 13px;
		border-radius: 25px;
		color: var(--white);
		min-width: 162px;
		text-align: center;
	}
}


label.open {
	position: fixed;
	top: 0;
	right: 5.3%;
	z-index: 2;
	width: 54px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.open span,
.open::before,
.open::after {
	content: "";
	position: absolute;
	top: 45%;
	left: 17%;
	width: 34px;
	border-bottom: 3px solid var(--basic);
}

.open::before {
	transform: translateY(-10px);
}

.open::after {
	transform: translateY(10px);
}

#navTgl {
	display: none
}

#navTgl:checked+.open span {
	opacity: 0;
}

#navTgl:checked+.open::before {
	transform: rotate(37deg);
}

#navTgl:checked+.open::after {
	transform: rotate(-37deg);
}

.open::before,
.open::after,
#navTgl:checked+.open::before,
#navTgl:checked+.open::after {
	transition: all 0.3s;
}

.spNav-menu {
	position: fixed;
	top: 65px;
	left: 100%;
	width: 100vw;
	height: 100%;
	z-index: 1;
	transition: all 0.3s;
	background: rgb(38, 38, 38, 0.2);
}

#navTgl:checked~.spNav-menu {
	left: 0;
}

.spNav-menu-list {
	width: 100%;
	border-bottom: 1px solid var(--white);
	text-align: center;
	background: var(--primary);
}


.spNav-menu-item:nth-of-type(3n) {
	background: var(--basic);
	border-bottom: none;
}

.spNav-menu-item a {
	color: var(--white);
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	padding: 20px 20px 19px 20px;
	display: block;
	line-height: 2.2rem;
	border-bottom: 1px solid var(--white);
}

.scroll-prevent {
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
}


/* footer */
p.about {
	font-weight: 400;
	line-height: 3.4rem;
	letter-spacing: 0%;
	text-align: center;
	text-decoration: underline;
	text-decoration-style: solid;
	padding-top: 12px;
}

@media screen and (min-width: 1024px) {
	p.about {
		padding-top: 34px;
	}

}

footer {
	text-align: center;
}

@media screen and (min-width: 1024px) {}

p.company {
	margin-top: 28px;
}

@media screen and (min-width: 1024px) {
	p.company {
		margin-top: 29px;
	}

}

footer ul {
	margin-top: 22px;
}

@media screen and (min-width: 1024px) {
	footer .overview img {
		margin-top: 32px;
		width: 297px;
	}

}

footer ul li:last-child {
	margin-top: 15px;
}

@media screen and (min-width: 1024px) {
	footer ul li:last-child {
		margin-top: 24px;
	}

}

p.overview-text {
	margin-top: 21px;
	line-height: 1.5;
}

@media screen and (min-width: 1024px) {
	p.overview-text {
		margin-top: 37px;
		line-height: 3.4rem;
	}

}

.copyright {
	background-color: var(--basic);
	color: var(--white);
	margin-top: 32px;
	padding: 15px 0 16px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 2.6rem;
}

@media screen and (min-width: 1024px) {
	.copyright {
		margin-top: 37px;
		line-height: 3.4rem;
		letter-spacing: 0;
		text-align: center;
		padding: 8px 0;
	}
}

#scrolltop {
	position: fixed;
	bottom: 1%;
	right: 8px;
	z-index: 10;
	cursor: pointer;
}

@media screen and (min-width: 1024px) {
	#scrolltop {
		bottom: 5%;
		right: 23px;
	}
}