@charset "utf-8";

body {
	width: 100%;
	min-width: 100%;
	margin: 0;
	padding: 0;
	color: #222;
	font-size: 18px;
	line-height: 1;
	text-align: center;
	background: #fff;
	-webkit-text-size-adjust: 100%;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	font-family:'Noto Sans JP',YuGothic,'Hiragino Kaku Gothic Pro','Hiragino Sans','メイリオ',Meiryo,sans-serif;
}

div {
	width: 100%;
	max-width: 780px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

svg {
	width: 240px;
	height: 60px;
	margin: 115px 0 50px;
}

h1 {
	margin: 0 0 40px 0;
	padding: 0;
	font-size: 2em;
	line-height: 1.6;
	color: #1374c1;
	text-align: center;
	font-weight: 500;
}

h1 span {
	display: inline-block;
}

p {
	margin: 0;
	padding: 0;
	line-height: 1.8;
	text-align: left;
}

ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
	width: 100%;
	margin: 50px 0 40px;
	padding: 0;
	list-style: none;
}

li,dl,dt,dd {
	margin: 0;
	padding: 0;
}

li {
	flex: 1;

}

a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	max-width: 100%;
	height: 3.3em;
	margin: 1em auto 0;
	padding: 0 20px;
	color: #1374c1;
	font-weight: 500;
	border: solid 4px #1374c1;
	border-radius: 1.8em;
	white-space: nowrap;
	text-decoration: none;
	transition: color 0.4s ease-in-out 0s, background-color 0.4s ease-in-out 0s;
}

a span {
	transform: translate(0, -1px);
}

 a::after {
	background: #1374c1;
	transition: background 0.4s ease-in-out 0s;
	display: block;
	content: '';
	flex-shrink: 0;
	width:10px;
	height:20px;
	-webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="20" viewBox="0 0 10 20"><path d="M2,17a2,2,0,0,1-1.54-.71,2,2,0,0,1,.26-2.86L4.86,10,.73,6.55A2,2,0,1,1,3.31,3.47l6,5a2,2,0,0,1,.23,2.85l-.26.26-6,5A2,2,0,0,1,2,17Z"/></svg>');
	-webkit-mask-size: contain;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="20" viewBox="0 0 10 20"><path d="M2,17a2,2,0,0,1-1.54-.71,2,2,0,0,1,.26-2.86L4.86,10,.73,6.55A2,2,0,1,1,3.31,3.47l6,5a2,2,0,0,1,.23,2.85l-.26.26-6,5A2,2,0,0,1,2,17Z"/></svg>');
	mask-size: contain;
	mask-position: center;
	mask-repeat: no-repeat;
}

a::before {
	display: block;
	content: '';
	width: 10px;
	height: 20px;
}

a:hover {
	color: #fff;
	background: #1374c1;
}

a:hover::after {
	background: #fff;
}

@media screen and (max-width:860px) {
	body {
		font-size: 16px;
	}

	div {
		max-width: 680px;
	}

	svg {
		margin: 60px 0 50px;
	}
	a {
		padding: 0 10px;
		border: solid 3px #1374c1;
	}
	a::before {
		width: 1px;
	}
}

@media screen and (max-width:660px) {
	svg {
		margin: 30px 0 30px;
	}

	h1 {
		font-size: 1.8em;
	}
	ul {
		flex-direction:column;
		gap: 32px;
	}

	li {
		width: 340px;
		max-width: 100%;
	}
}


