@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
	--delay: 0s;
	--Inter: "Inter", "Yu Gothic", "游ゴシック", YuGothic, 'ZenKakuGothicNew', 'Noto Sans', 'メイリオ';
	--main-color: #1D86FF;
}

body {
	font-family: "Yu Gothic", "游ゴシック", YuGothic, 'ZenKakuGothicNew', 'Noto Sans', 'メイリオ';
	font-size: 15px;
	color: #061522;
	max-width: 1920px;
	margin: auto;
}

main {
	background-color: #FAFAFC;
}

/*animation*/
.animation {
	opacity: 0;
	translate: var(--offsetX, 0) var(--offsetY, 0);
}

@media (max-width:767px) {
	.animation {
		translate: var(--spOffsetX, var(--offsetX, 0)) var(--spOffsetY, var(--offsetY, 0));
	}
}

.animation.active {
	animation: common-animation var(--duration, 0.5s) var(--delay, 0s) ease-in-out forwards;
}

@media (max-width:767px) {
	.animation {
		animation: common-animation var(--duration, 0.5s) var(--spDelay, var(--delay)) ease-in-out forwards;
	}
}


@keyframes common-animation {
	to {
		translate: 0 0;
		opacity: 1.0;
	}
}

/*======================
*
parts
*
=======================*/
/*======================
hd
=======================*/
/*hd01*/
.hd-area:has(.hd01) {
	display: flex;
	justify-content: space-between;
}

.hd01 {
	font-size: clamp(15px, 1.46vw, 20px);
}

.hd01 :is(h2, h3, h4, h5) {
	font-size: 1.0em;
	font-weight: 700;
}

.hd01 span {
	font-family: var(--Inter);
	font-size: calc((60 / 20) * 1.0em);
	font-weight: 700;
	color: var(--main-color);
}

.hd-area:has(.hd01) p {
	font-size: clamp(25px, 2.93vw, 40px);
	font-weight: 500;
	text-align: end;
}

/*sp*/
@media (max-width:767px) {
	.hd-area:has(.hd01) {
		flex-direction: column;
		width: fit-content;
		min-width: 200px;
		margin: auto;
	}

	.hd01 {
		text-align: center;
	}

	.hd01 span {
		font-size: calc((30 / 15) * 1.0em);
	}


	.hd-area:has(.hd01) p {
		font-size: 20px;
		text-align: center;
		padding-top: 22px;
		margin-top: 22px;
		border-top: solid 1px #D2DAE2;
	}
}

/*hd02*/
.hd-area:has(.hd02) {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hd02 :is(h2, h3, h4, h5) {
	font-size: clamp(24px, 2.93vw, 40px);
	font-weight: 500;
}

.hd02 :is(h2, h3, h4, h5) span {
	color: var(--main-color);
}

.hd-area:has(.hd02) p {
	width: calc((350 / 1110) * 100%);
	font-size: 16px;
	font-weight: 500;
	line-height: 2.0;
}

/*tb*/
@media (max-width:1024px) {
	.hd-area:has(.hd02) p {
		min-width: 350px;
	}
}

/*sp*/
@media (max-width:767px) {
	.hd-area:has(.hd02) {
		flex-direction: column;
		width: fit-content;
		min-width: 200px;
		margin: auto;
	}

	.hd02 :is(h2, h3, h4, h5) {
		line-height: calc(40 / 24);
		text-align: center;
		margin-bottom: 15px;
	}

	.hd-area:has(.hd02) p {
		font-size: 15px;
		text-align: center;
		width: 100%;
	}
}

/*======================
btn
=======================*/
.btn01 {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #FFF;
	text-align: center;
	padding: 20px 60px 18px;
	background-color: var(--main-color);
	border-radius: 50px;
	line-height: 1.5;
	box-sizing: border-box;
	transition: 0.3s ease-in-out;
}

.btn01::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	aspect-ratio: 1 / 1;
}

@media (any-hover:hover) {
	.btn01:hover {
		opacity: 0.75;
	}
}

/* PC表示（1025px以上） */
@media screen and (min-width: 1025px) {
	.pc {
		display: block;
	}

	.nopc,
	.tb,
	.s_tb,
	.s_tb_sp,
	.sp {
		display: none;
	}
}

/* タブレット（768px〜1024px） */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.tb {
		display: block;
	}

	.pc,
	.s_tb,
	.s_tb_sp,
	.sp {
		display: none;
	}
}

/* 小型タブレット（600px〜767px） */
@media screen and (min-width: 600px) and (max-width: 767px) {
	.s_tb {
		display: block;
	}

	.pc,
	.tb,
	.s_tb_sp,
	.sp,
	.no_s_tb_sp {
		display: none;
	}
}

/* スマホ_小型タブレット（〜767px） */
@media screen and (max-width: 767px) {
	.s_tb_sp {
		display: block;
	}

	.pc,
	.tb,
	.s_tb,
	.sp,
	.no_s_tb_sp {
		display: none;
	}
}

/* スマホ（〜599px） */
@media screen and (max-width: 599px) {
	.sp {
		display: block;
	}

	.pc,
	.tb,
	.s_tb,
	.nosp,
	.no_s_tb_sp {
		display: none;
	}
}