@charset "UTF-8";

.hero_box {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	background: linear-gradient(to bottom, #4e739e, #8eafc9, #a7c3d2, #8eafc9, #4e739e);
	padding: 0 30px;
}

.hero_box > div:nth-of-type(1) {
	max-width: 360px;
	white-space: nowrap;
}

.hero_box > div:nth-of-type(1) > p:nth-of-type(1) {
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	background: #007c36;
	padding: 3px 5px;
	margin: 0 0 10px 0;
}

.hero_box > div:nth-of-type(1) > p:nth-of-type(2) {
	color: #111;
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.2;
	text-shadow: 2px 0 4px #fff;
}

.hero_box > div:nth-of-type(1) > h1 img {
	width: 100%;
	margin: 0 0 20px 0;
	height: 75px;
}

.hero_box > div:nth-of-type(2) img {
	width: auto;
	height: 100%;
	max-height: 350px;
	vertical-align: bottom;
}

.oshirase_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	color: #434343;
	border: solid #ccc;
	border-width: 1px 0;
	padding: 0 20px 0 0;
}

.oshirase_box a,
.ver_box a {
	color: #434343;
	transition: .3s;
}

.oshirase_box a:hover,
.ver_box a:hover {
	color: #434343;
	opacity: 0.3;
}

.oshirase_box > div:first-of-type {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background-color: #004099;
}

.oshirase_box > div:nth-of-type(2) {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.oshirase_box > div:nth-of-type(2) div:first-of-type {
	margin: 0 30px 0 0;
}

.oshirase_box > div:first-of-type,
.ver_box > div:first-of-type {
	width: 20%;
	text-align: center;
	padding: 20px;
}

.oshirase_box > div:nth-of-type(2),
.ver_box > div:nth-of-type(2) {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 57%;
	line-height: 1.5;
}

.oshirase_box > div:last-of-type,
.ver_box > div:last-of-type {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 20%;
}

.ver_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	color: #434343;
	background: #dbe5f3;
	border-bottom: 1px solid #ccc;
	padding: 0 20px 0 0;
}

.ver_box > div:first-of-type {
	display: flex;
	justify-content: center;
	align-items: center;
	border-right: 1px solid #ccc;
}

.intro_box > div:nth-of-type(1) {
	display: grid;
	grid-template-columns: 60% 1fr;
	gap: 30px;
	margin: 0 0 30px;
}

.intro_box > div:nth-of-type(1) > div:nth-of-type(1) h2 {
	color: #014099;
	font-size: 2.6rem;
	padding: 0;
	margin: 0 0 20px;
}

.intro_box > div:nth-of-type(1) > div:nth-of-type(1) h2::after {
	display: none;
}

.intro_box > div:nth-of-type(1) > div:nth-of-type(1) p:nth-of-type(1) {
	margin: 0 0 10px;
}

.intro_box > div:nth-of-type(1) > div:nth-of-type(1) p:nth-of-type(2) {
	margin: 0 0 30px;
}

.intro_box > div:nth-of-type(2) {
	width: fit-content;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin: 0 auto;
}

.intro_box > div:nth-of-type(2) > a {
	min-width: 310px;
}

.tab_box > h2 {
	color: #014099;
	font-size: 2.6rem;
	padding: 0;
	margin: 0 0 20px;
}

.tab_box > h2::after {
	display: none;
}

.tab_box > p {
	text-align: center;
	margin: 0 0 30px;
}

.tab_box > div > ul {
	min-width: 708px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px 2px;
	margin: 0 0 30px;
}

.tab_box > div > ul li {
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	text-align: center;
	border-bottom: 2px solid #999;
	cursor: pointer;
	transition: 0.3s;
}

.tab_box > div > ul li:hover {
	color: #000;
	font-weight: bold;
	background: #e1e1e1;
	border-bottom: 2px solid #014099;
}

.tab_box > div > ul li.active {
	color: #000;
	font-weight: bold;
	border-bottom: 2px solid #014099;
	opacity: 1;
}

.tab_box > div > ul li.active:hover {
	background: none;
}

.tab_box .tab_content {
	height: 0;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 10px;
	opacity: 0;
	overflow: hidden;
	transition: 0.3s;
}

.tab_box .tab_content.active {
	height: auto;
	opacity: 1;
}

.tab_box .tab_content > div {
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	background: #fff;
	padding: 30px 30px 0;
	margin: 0 0 10px;
}

.tab_box div:nth-of-type(2).tab_content > div {
	height: 430px;
}

.tab_box .tab_content > div > img {
	display: block;
	height: 400px;
	object-fit: contain;
}

.tab_box div:nth-of-type(2).tab_content > div > img {
	height: auto;
}

.swiper_tab_box .tab-menu .swiper-wrapper {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px 0;
	margin: 0 0 30px;
}

.swiper_tab_box .tab-menu .swiper-wrapper .swiper-slide {
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	line-height: 1.2;
	text-align: center;
	border-bottom: 2px solid #999;
	cursor: pointer;
	transition: 0.3s;
}

.swiper_tab_box .tab-menu .swiper-wrapper .swiper-slide:hover {
	color: #000;
	font-weight: bold;
	background: #e1e1e1;
	border-bottom: 2px solid #014099;
	opacity: 1;
}

.swiper_tab_box .tab-menu .swiper-wrapper .swiper-slide-thumb-active {
	color: #000;
	font-weight: bold;
	border-bottom: 2px solid #014099;
	opacity: 1;
}

.swiper_tab_box .tab-content {
	overflow-x: hidden;
}

.swiper_tab_box .tab-content .swiper-wrapper {
	height: auto !important;
}

.swiper_tab_box .tab-content .swiper-wrapper .swiper-slide {
	display: flex;
	flex-flow: column;
	align-items: center;
}

.swiper_tab_box .tab-content .swiper-wrapper .swiper-slide > div {
	width: 100%;
	height: 430px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	background: #fff;
	padding: 30px 30px 0;
	margin: 0 0 10px;
}

.swiper_tab_box .tab-content .swiper-wrapper .swiper-slide > div > img {
	display: block;
	height: 400px;
	object-fit: contain;
}

.swiper_tab_box .tab-content .swiper-wrapper .swiper-slide > div.auto > img {
	height: auto;
}

.chaine_box > div {
	display: grid;
	align-items: center;
	grid-template-columns: 40% 1fr;
	gap: 30px;
}

.chaine_box > div > div:nth-of-type(2) h2 {
	color: #014099;
	font-size: 2.6rem;
	padding: 0;
	margin: 0 0 20px;
}

.chaine_box > div > div:nth-of-type(2) h2::after {
	display: none;
}

.chaine_box > div > div:nth-of-type(2) p {
	margin: 0 0 30px;
}

.chaine_box > div > div:nth-of-type(2) a {
	margin: 0 auto;
}

.movie_box > a:nth-of-type(1) {
	max-width: 700px;
	display: block;
	margin: 0 auto 30px;
}

.movie_box > a:nth-of-type(2) {
	width: fit-content;
	display: block;
	margin: 0 auto;
}

.movie_box > a:nth-of-type(2) div {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.movie_box > a:nth-of-type(2) div::before {
	content: "";
	width: 70px;
	height: 50px;
	display: block;
	position: absolute;
	border-radius: 18px;
	background: rgba(0, 0, 0, 60%);
}

.movie_box > a:nth-of-type(2):hover div::before {
	background: rgba(255, 0, 0, 80%);
}

.movie_box > a:nth-of-type(2) div::after {
	content: "";
	width: 20px;
	height: 25px;
	background: #fff;
	position: absolute;
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	margin: 0 0 0 5px;
}

.movie_box > a:nth-of-type(2) div video {
	width: 100%;
	max-width: 500px;
}

.service_box > ul {
	max-width: 800px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px 30px;
	margin: 0 auto 60px;
}

.service_box > ul li {
	text-align: center;
	background: #dbe5f3;
	border-radius: 5px;
	padding: 20px 10px;
}

.service_box > ul li div {
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #014099;
	border-radius: 50px;
	margin: 0 auto 10px;
}

.service_box > ul li div img {
	max-width: 60px;
	height: 60px;
	object-fit: contain;
	filter: brightness(0) invert(100%);
}

.service_box > ul li p:nth-of-type(1) {
	color: #014099;
	font-size: 1.6rem;
	font-weight: bold;
	margin: 0 0 10px;
}

.service_box > ul li p:nth-of-type(2) {
	color: #014099;
}

.service_box > a {
	margin: 0 auto;
}

.price_box > p:nth-of-type(1) {
	text-align: center;
	margin: 0 0 30px;
}

.price_box > p:nth-of-type(n+2) {
	color: #014099;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	margin: 0 0 20px;
}

.price_box > div {
	max-width: 600px;
	display: grid;
	align-items: center;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	text-align: center;
	margin: 0 auto 60px;
}

.price_box > div > div:nth-of-type(1) img {
	max-width: 250px;
	display: block;
	margin: 0 auto 10px;
}

.price_box > div > div:nth-of-type(1) p {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}

.price_box > div > div:nth-of-type(1) p span {
	color: #fff;
	text-align: center;
	padding: 0 10px;
	margin: 0 0 0 10px;
}

.price_box > div:nth-of-type(1) > div:nth-of-type(1) p span {
	background: #014099;
}

.price_box > div:nth-of-type(2) > div:nth-of-type(1) p span {
	background: #e5006e;
}

.price_box > div > div:nth-of-type(2) p:nth-of-type(1) {
	width: fit-content;
	font-size: 2.4rem;
	position: relative;
	margin: 0 auto 10px;
}

.price_box > div > div:nth-of-type(2) p:nth-of-type(1) span {
	font-size: 4rem;
	font-weight: bold;
}

.price_box > a {
	margin: 0 auto;
}

.system_box > p {
	text-align: center;
	margin: 0 0 60px;
}

.system_box > ul {
	display: grid;
	align-items: center;
	justify-content: center;
	justify-items: center;
	grid-template-columns: repeat(4, 200px);
	gap: 60px 30px;
	margin: 0 0 60px;
}

.system_box > ul li img {
	max-width: 200px;
	height: 40px;
	object-fit: contain;
}

.system_box > ul li:nth-of-type(2) img {
	height: 35px;
}

.system_box > ul li:nth-of-type(5) img {
	height: 30px;
}

.system_box > a {
	margin: 0 auto;
}

.business_box > p:nth-of-type(1) {
	text-align: center;
	margin: 0 0 30px;
}

.business_box > p:nth-of-type(1) span {
	font-size: 2.4rem;
}

.business_box > p:nth-of-type(2) {
	text-align: right;
}

.business_box > ul {
	width: fit-content;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px 30px;
	margin: 0 auto 10px;
}

.business_box > ul li {
	list-style: none;
	position: relative;
}

.business_box > ul li::before {
	content: "■";
	color: #014099;
	margin: 0 3px 0 0;
}

.footer_box {
	display: flex;
	flex-flow: column;
	gap: 30px;
}

.footer_box > a:nth-of-type(1) {
	width: 100%;
	max-width: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: #11b090;
	border-radius: 5px;
	padding: 10px;
	margin: 0 auto;
}


@media screen and (max-width: 1024px) {

	.hero_box > div:nth-of-type(2) img {
		max-height: 280px;
	}

	.swiper_tab_box .tab-content .swiper-wrapper .swiper-slide > div {
		height: 350px;
	}

	.swiper_tab_box .tab-content .swiper-wrapper .swiper-slide > div > img {
		height: 330px;
	}

	.swiper_tab_box .tab-content .swiper-wrapper .swiper-slide > div.auto > img {
		max-height: 330px;
	}

	.service_box > ul li p:nth-of-type(2) {
		text-align: left;
	}

	.service_box > ul li p:nth-of-type(2) br {
		display: none;
	}

	.system_box > ul {
		grid-template-columns: repeat(3, 150px);
	}

	.business_box > ul {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 767px) {

	.hero_box {
		flex-flow: column;
		padding: 30px 20px 0;
	}

	.hero_box > div:nth-of-type(1) > p:nth-of-type(2) {
		font-size: 2.6rem;
	}

	.oshirase_box,
	.ver_box {
		padding: 0;
	}

	.oshirase_box > div:first-of-type,
	.ver_box > div:first-of-type {
		width: 100%;
		padding: 10px 0;
	}

	.oshirase_box > div:nth-of-type(2),
	.ver_box > div:nth-of-type(2) {
		width: 100%;
		padding: 20px 10px
	}

	.oshirase_box > div:last-of-type,
	.ver_box > div:last-of-type {
		width: 100%;
		text-align: center;
		padding: 0 0 10px;
	}

	.ver_box > div:first-of-type {
		border: solid #ccc;
		border-width: 0 0 1px;
	}

	.intro_box > div:nth-of-type(1) {
		justify-items: center;
		grid-template-columns: 1fr;
	}

	.intro_box > div:nth-of-type(1) > div > img {
		max-width: 400px;
	}

	.service_box > ul {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.tab_box > div {
		overflow-x: scroll;
	}

	.tab_box .tab_content > div {
		padding: 20px 10px 0;
	}

	.tab_box > div:nth-of-type(2).tab_content > div {
		height: 200px;
	}

	.tab_box div:nth-of-type(2).tab_content > div > img,
	.tab_box .tab_content > div > img {
		height: 180px;
	}

	.swiper_tab_box .tab-menu .swiper-wrapper .swiper-slide {
		font-size: 1.2rem;
	}

	.swiper_tab_box .tab-content .swiper-wrapper .swiper-slide > div {
		height: 200px;
	}

	.swiper_tab_box .tab-content .swiper-wrapper .swiper-slide > div > img {
		height: 180px;
	}

	.swiper_tab_box .tab-content .swiper-wrapper .swiper-slide > div.auto > img {
		max-height: 180px;
	}

	.chaine_box > div {
		justify-items: center;
		grid-template-columns: 1fr;
	}

	.chaine_box > div > div:nth-of-type(1) {
		max-width: 300px;
	}

	.price_box > p:nth-of-type(1) {
		text-align: left;
	}

	.price_box > div {
		grid-template-columns: 1fr;
	}

	.system_box > ul {
		grid-template-columns: repeat(2, 150px);
	}

	.business_box > ul {
		grid-template-columns: repeat(2, 1fr);
	}

	.business_box > ul li {
		font-size: 1.2rem;
	}

	.footer_box > a:nth-of-type(n+2) {
		width: 100%;
		max-width: 600px;
		display: block;
		margin: 0 auto;
	}
}
