@charset "utf-8";

/* リセットとベーススタイル */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

/* ヒーローセクション */
.hero {
	text-align: center;
	/* min-height: 300px; */
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero h1 {
	max-width: 100%;
	height: 100%;
}

.hero img {
	width: 100%;
	height: auto;
	display: block;
}

/* ポイントセクション */
.pc {
	display: block;
}

.point {
	background: url(/img/bg_point.png) no-repeat top center / 100%;
}

.container {
	padding: 100px 20px;
	max-width: 1140px;
	margin: 0 auto;
}

.point h2 {
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 100px;
	line-height: 1.6;
	letter-spacing: 0.1em;
	word-break: auto-phrase;
}

h3 {
	font-size: 45px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 65px;
	color: #0071bc;
	padding: 40px 0;
	position: relative;
}

h3::before {
	content: '';
	display: block;
	width: 236px;
	height: 28px;
	background: url(/img/rp.png) no-repeat center center / contain;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

h3::after {
	content: '';
	display: block;
	width: 242px;
	height: 13px;
	background: url(/img/deco.svg) no-repeat center center / contain;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

/* ポイントアイテムのレイアウト */
.div_3col {
	display: flex;
	margin-bottom: 40px;
	flex-wrap: wrap;
	justify-content: center;
}

.point_item {
	border: 2px solid #0071bc;
	text-align: center;
	display: flex;
	justify-content: center;
	padding-top: 10%;
	padding-bottom: 4%;
	min-height: 293px;
	position: relative;
	margin-top: 50px;
	width: calc(33.333% - 30px);
	margin-right: 15px;
}

.point_item:nth-child(3n) {
	margin-right: 0;
}

.point_item:nth-child(n+4) {
	margin-top: 80px;
}

.point_item:before {
	content: '';
	position: absolute;
	top: -60px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	width: 120px;
	height: 120px;
	background: url(/img/point01.png) no-repeat center center / contain;
}

.point_item:nth-child(2):before {
	background: url(/img/point02.png) no-repeat center center / contain;
}

.point_item:nth-child(3):before {
	background: url(/img/point03.png) no-repeat center center / contain;
}

.point_item:nth-child(4):before {
	background: url(/img/point04.png) no-repeat center center / contain;
}

.point_item:nth-child(5):before {
	background: url(/img/point05.png) no-repeat center center / contain;
}


.point_text p {
	margin: 0;
	font-size: 26px;
	line-height: 1.4;
	font-weight: 700;
}

.point_text p.point_ex {
	font-size: 14px;
	color: #ff1d25;
	margin-top: 15px;
}

/* リンクセクション */
.link {
	background: url(/img/bg_link.png) no-repeat top center / 100%;
	background-color: #d9f8fc;
}

.div_2col {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
	gap: 35px 60px;
	max-width: 1000px;
	margin: 0 auto;
}

.div_2col a {
	display: block;
	padding: 20px;
	text-decoration: none;
	color: white;
	text-align: center;
	font-weight: 900;
	background: #0071bc;
	width: 100%;
	height: 100%;
	font-size: 26px;
	min-height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 4px 4px 7px rgb(0 0 0 / 45%);
	position: relative;
}

.div_2col a:hover {
	opacity: 0.8;
}

.div_2col a span {
	border: 2px solid #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: calc(100% - 10px);
	height: calc(100% - 10px);
}


.div_2col a:after {
	content: '';
	background: url(/img/more.png) no-repeat center center / 100%;
	width: 132px;
	height: 26px;
	position: absolute;
	bottom: 10px;
	right: 10px;
}


/* レスポンシブデザイン */
@media (max-width: 960px) {

	.point_text p {
		font-size: 18px;
	}

	.point_text p.point_ex {
		font-size: 12px
	}

	.point_item {
		min-height: inherit;
		padding-left: 15px;
		padding-right: 15px;
	}


}

@media (max-width: 680px) {
	.container {
		padding: 70px 20px;
	}

	.pc {
		display: none;
	}

	.point h2 {
		font-size: 18px;
		text-align: left;
		margin-bottom: 60px;
	}

	h3 {
		font-size: 30px;
	}

	h3::before {
		width: 200px;
		height: 20px;
	}

	h3::after {
		content: '';
		display: block;
		width: 200px;
		height: 10px;
	}

	.div_3col {
		margin-top: 100px;
	}

	.point_item {
		width: 100%;
		padding: 60px 10px 30px;
		margin: 0;
	}

	.point_item:nth-child(n+2) {
		margin-top: 80px
	}

	.point_item:before {
		content: '';
		position: absolute;
		top: -40px;
		left: 50%;
		width: 80px;
		height: 80px;
	}

	.div_2col {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 30px 60px;
	}

	.div_2col a {
		text-align: left;
		font-size: 18px;
	}

}
.link-title::before {
	background: url(/img/ap.png) no-repeat center center / contain;
}
