html {
	font-size: 0.694vw;
	font-size: calc(100vw / 144);
	/* scroll-behavior: smooth; */
	scroll-padding-top: 8.6rem;
}
body {
	font-family: "Shippori Mincho B1", serif;
}
/* @media screen and (max-width: 1024px) {
	html {
		font-size: 0.833333333vw;
	}
} */

@media screen and (max-width: 767px) {
	html {
		font-size: 2.564vw;
		font-size: calc(100vw / 39);
		scroll-padding-top: 7.1rem;
	}
}

/* pc-only */
.pc {
	display: block !important;
}

/* sp-only */
.sp {
	display: none !important;
}

@media (max-width: 768px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
}

/* フォント */
.roboto {
	font-family: "Roboto", sans-serif;
}
.shippori-mincho-b1-regular {
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
}

.shippori-mincho-b1-medium {
	font-family: "Shippori Mincho B1", serif;
	font-weight: 500;
	font-style: normal;
}

.shippori-mincho-b1-semibold {
	font-family: "Shippori Mincho B1", serif;
	font-weight: 600;
	font-style: normal;
}

.shippori-mincho-b1-bold {
	font-family: "Shippori Mincho B1", serif;
	font-weight: 700;
	font-style: normal;
}

.shippori-mincho-b1-extrabold {
	font-family: "Shippori Mincho B1", serif;
	font-weight: 800;
	font-style: normal;
}

/*レイアウト共通*/
main {
	padding-top: 8.6rem;
}
.l_section {
	margin: auto 17rem;
}

/*タイトル共通*/
.section_head {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}
.section_head_title-en {
	font-size: 4.8rem;
	font-weight: 400;
	line-height: 1.2;
	color: var(--accent-color);
}
.section_head_title-ja {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.04rem;
	color: var(--text-color-dark);
}
/*ボタン共通*/
.view_more_btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1.3rem;
}
.view_more_btn path {
	transition: transform 0.3s ease;
}
.view_more_btn:hover path {
	transform: translateX(0.3rem);
}
.view_more_text {
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0.07rem;
	color: var(--text-color-dark);
}

/*アニメーション共通*/
.swiper-wrapper {
	transition-timing-function: linear;
}

@media screen and (max-width: 767px) {
	main {
		padding-top: 7.1rem;
	}
	.l_section {
		margin: auto 2rem;
	}
}

/* hover effect */
.h-opacity5,
.h-opacity6,
.h-opacity7 {
	transition: opacity 0.3s ease;
}
.h-opacity5:hover {
	opacity: 0.5;
}
.h-opacity6:hover {
	opacity: 0.6;
}
.h-opacity7:hover {
	opacity: 0.7;
}
