@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;
}

body {
	background: linear-gradient(to right, #F4FAFD, #D5EDF4);
	font-family: "Noto Sans JP", sans-serif;
	overflow-x: hidden;
	position: relative;
	width: 100%;
	height: 100svh;
}

.pc {
	display: inline-block;
}

.sp {
	display: none !important;
}

.circle {
	background: url(./images/circle.webp) no-repeat;
	background-position: top center;
	text-align: center;
	padding-top: 60px;
}

.circle img {
	display: block;
	margin: 0 auto;
	max-width: max-content;
	width: 100%;
}

.btn {
	background: #fff;
	border: 1px solid #036EB8;
	border-radius: 10px;
	box-sizing: border-box;
	box-shadow: 0 8px 4px 0 rgba(180, 223, 236, .5);
	color: #036EB8;
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	padding: 11px 28px;
	position: relative;
	text-decoration: none;
	transition: .3s;
}

.btn::after {
	content: "";
	position: absolute;
	right: 7px;
	top: 50%;
	transform: translateY(-50%);
	background: url(./images/arrow-b.svg) no-repeat;
	width: 10px;
	height: 11px;
}

.btn:hover {
	background: #036EB8;
	box-shadow: none;
	color: #fff;
	transform: translateY(8px);
}

.btn:hover::after {
	background: url(./images/arrow-w.svg) no-repeat;
}

footer {
	background: #036EB8;
	height: 90px;
	text-align: center;
	line-height: 90px;
	position: relative;
}

footer small {
	color: #fff;
	font-size: 12px;
}

footer a {
	position: fixed;
	bottom: 80px;
	right: 105px;
	width: 60px;
	height: 60px;
}

footer a img {
	width: 100%;
}

/* 404 */
.not-found {
	text-align: center;
	padding-bottom: 170px;
}

.not-found h1 {
	font-size: 30px;
	margin-top: 50px !important;
}

.not-found p {
	display: block;
	font-size: 18px;
	margin: 29px auto;
}

body.error404 > div {
	display: flex;
	flex-flow: column;
	height: 100%;
}

body.error404 footer {
	margin-top: auto;
}

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

	.pc {
		display: none !important;
	}

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

	.circle {
		background: none;
		margin-top: -10px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-flow: column;
		overflow-x: hidden;
		padding-top: 0;
	}

	.circle a img {
		width: 100%;
	}

	footer a {
		right: 9px;
		bottom: 100px;
		width: 40px;
		height: 40px;
	}

	/* 404 */

	.not-found {
		padding-bottom: 0;
		text-align: center;
	}
	.not-found h1 {
		font-size: 18px;
		margin-top: 0 !important;
	}

	.not-found p {
		display: inline-block;
		font-size: 14px;
		text-align: left;
		margin: 14px auto;
		width: 85%;
		max-width: max-content;
	}

	.not-found .btn {
		margin: 13px auto 50px;
	}
}