@charset "UTF-8";

/* reset */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd {
	margin: 0;
	padding: 0;
	letter-spacing: 0;
}

html {
	width: 100%;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	vertical-align: middle;
}

p,
a,
b,
li,
input {
	font-family: 'Noto Sans JP';
}

a {
	color: #005D9D;
}

.pc {
	display: inline-block;
}

.sp {
	display: none !important;
}

/* header */
header {
	text-align: center;
	margin: 45px auto 115px;
}

h1 {
	font-size: 35px;
	font-weight: 800;
}

h1 span {
	display: block;
	font-size: 16px;
	font-weight: bold;
}

/* body */

.wrap {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	height: 100svh;
}

.col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin: 0 auto;
	width: 85%;
	max-width: 1030px;
}

.col > div {
	width: 100%;
	max-width: 490px;
}

.col > div img {
	width: 100%;
}

.col > div > p {
	font-size: 16px;
	line-height: 1.5;
	margin-top: 17px;
}

.text-col {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 10px;
	margin-top: 11px;
}

.text-col p {
	background: #009D85;
	border-radius: 30px;
	box-sizing: border-box;
	color: #FFF799;
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	line-height: 30px;
	width: 102px;
	height: 30px;
}

.text-col h2 {
	font-size: 20px;
}

.text-col h2 span {
	font-size: 30px;
}

/* footer */
footer {
	background: #E5E5E5;
	text-align: center;
	margin-top: auto;
	line-height: 102px;
	width: 100%;
	height: 102px;
}
small {
	font-size: 12px;
}

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

	.pc {
		display: none !important;
	}

	.sp {
		display: inline-block !important;
	}

	header {
		margin: 14px auto 45px;
	}

	h1 {
		font-size: 24px;
	}

	h1 span {
		font-size: 12px;
	}

	.col {
		display: flex;
		align-items: center;
		flex-flow: column;
		gap: 0;
	}

	.col > div {
		position: relative;
		padding-bottom: 41px;
		margin-bottom: 41px;
	}

	.col > div::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		border-top: 1px dashed #000;
		width: 40px;
		height: 1px;
	}

	.text-col {
		align-items: center;
		flex-flow: column;
		gap: 0;
		margin-top: 22px;
	}

	h2 span {
		font-size: 28px;
	}

	.text-col p {
		font-size: 14px;
	}

	.col > div > p {
		font-size: 14px;
		line-height: 1.42;
		margin-top: 10px;
	}

}