@charset "utf-8";
/* ------------------------------
 メイン（PC）
------------------------------ */
.mainBlock {
	position: relative;
}
/* -- メインイメージ -- */
.mainBlock .mainimgSwiper {
	position: relative;
	width: 100%;
}
.mainBlock .swiper,
.mainBlock .swiper-slide {
	height: 100%;
}
.mainBlock .swiper-img {
	overflow: hidden;
}
.mainBlock .swiper-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@keyframes zoomUp {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.12);
	}
}
.mainBlock .swiper-slide-active img,
.mainBlock .swiper-slide-duplicate-active img,
.mainBlock .swiper-slide-prev img {
	animation: zoomUp 7s linear 0s normal both;
}
/* ページネーション */
.mainimgSwiper .swiper-pagination {
	bottom: 0;
}
.mainimgSwiper .swiper-pagination .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	background-color: #e6e6e6;
	opacity: 1;
	margin: 0 6px;
}
.mainimgSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--blue-color);
}
/* メインテキスト */
.mainText {
	height: fit-content;
	position: absolute;
	top: 50px;
	left: 50px;
	margin: auto;
	z-index: 2;
}
.mainText p {
	font-size: 4.8rem;
	color: #fff;
	font-weight: 600;
	line-height: 1.1;
	font-family: "Inter", sans-serif;
}
.mainHeadline {
	display: grid;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: absolute;
	top: -80px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 2;
}
.mainHeadline h1 {
	font-size: 3rem;
	color: #fff;
	font-weight: 600;
	line-height: 1.25;
	writing-mode: vertical-rl;
  	text-orientation: mixed;
	letter-spacing: 0.5rem;
}
@media print, screen and (min-width: 768px) {
	.mainBlock {
		width: 100%;
	}
	.mainBlock .swiper-img {
		height: 800px;
	}
	/* -- メインイメージ -- */
	.mainBlock .mainimgSwiper {
		max-width: 1920px;
		height: 840px;
		padding-bottom: 40px;
	}
}
@media print, screen and (min-width: 1700px) {
	/* メインテキスト */
	.mainText {
		top: 80px;
    	left: 90px;
		right: auto;
		bottom: auto;
	}
}
/* ------------------------------
 メイン（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	/* メインイメージ */
	.mainBlock .mainimgSwiper {
		min-height: 500px;
		padding-bottom: 50px;
	}
	/* メインテキスト */
	.mainText {
		top: 25px;
		left: 6%;
	}
	.mainText p {
		font-size: 1.5rem;
	}
	.mainHeadline h1 {
		font-size: 1.7rem;
		text-align: center;
	}
}

/* ------------------------------
 見出し・共通（PC）
------------------------------ */
/* h2 */
.contentsHome h2 {
	position: relative;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 45px;
}
.contentsHome h2 span {
	display: block;
	font-family: "Inter", sans-serif;
	font-size: 7rem;
	font-weight: 600;
	color: var(--blue-color);
	margin-bottom: 5px;
}
/* -- リードテキスト -- */
.leadtext {
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
	line-height: 2;
	margin: 90px auto 120px;
}
/* ------------------------------
 見出し・共通（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	/* h2 */
	.contentsHome h2 {
		font-size: 1.9rem;
		margin-bottom: 30px;
	}
	.contentsHome h2 span {
		font-size: 4rem;
	}
	/* -- リードテキスト -- */
	.leadtext {
		font-size: 1.7rem;
		text-align: left;
		margin: 40px auto 60px;
	}
}
/* ------------------------------
 下層ブロック（PC）
------------------------------ */
.lowerBlock {
	margin-bottom: 100px;
}
.lowerBlock a {
	color: var(--blue-color);
	display: inline-block;
	font-weight: 500;
}
.lowerBlock a::after {
	content: "";
	display: inline-block;
	width: 70px;
	height: 70px;
	background: url(../img/icon_arrow.svg) no-repeat;
	vertical-align: middle;
	margin-left: 20px;
}
@media print, screen and (min-width: 768px) {
	.box_image .bg-image {
		width: 100%;
	}
	.box_image .bg-image img {
		width: 100%;
		height: auto;
		display: block;
	}
}
@media print, screen and (min-width: 1140px) {
	.box_image:not(.order2) {
		margin-left: calc(570px - 50vw);
    	width: calc(47.895% + (50vw - 570px));
	}
	.box_image.order2 {
		margin-right: calc(570px - 50vw);
    	width: calc(47.895% + (50vw - 570px));
	}
}
/* ------------------------------
 下層ブロック（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.lowerBlock {
		margin-bottom: 80px;
	}
	.lowerBlock .box_image {
		margin: 0 -5.5% 30px;
	}
	.lowerBlock a::after {
		width: 50px;
		height: 50px;
		margin-left: 15px;
		background-size: cover;
	}
}