body {
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ ゴシック", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	color: #000;
}

@media screen and (max-width: 767px) {
	body {
		font-size: 1.4rem;
	}
}

body>main {
	overflow: hidden;
	position: relative;
	z-index: 1;
}

body.fixed {
	overflow: hidden;
}

@supports (-ms-ime-align: auto) {
	body>main {
		overflow: hidden;
	}
}

figure {
	margin: 0;
	overflow: hidden;
}

figure img {
	width: 100%;
}

ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

* {
	outline: none;
}

dd,
h1,
h2,
h3,
h4,
h5,
h6,
label,
p {
	margin-bottom: 0;
}

a,
a:hover,
a:focus,
a:active,
a:visited {
	text-decoration: none;
}

.sp-only {
	display: none;
}

.header {
	position: fixed;
	z-index: 5;
	background-color: #fff;
	width: 100%;
	box-shadow: 0px 0px 1px #000;
}

.header__top {
	transition: all 0.5s ease;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 15px 35px 0 45px;
}

.header__top h1 {
	font-weight: bold;
	font-size: 1.6rem;
}

.header__top h1 img {
	/* max-width: 215px; */
	max-width: 200px;
	width: 100%;
	margin-right: 65px;
	padding-bottom: 10px;
}

.header__top__hamburger {
	display: none;
	visibility: hidden;
	width: 50px;
	height: 50px;
	border: 1px solid #333;
}

.header__top__hamburger span {
	width: calc(100% - 20px);
	height: 2px;
	background-color: #333;
	display: block;
	margin: 0 auto;
	padding: 0;
	transition: all 0.5s ease;
}

.header__top__hamburger span:first-child {
	transform: translateY(-10px);
}

.header__top__hamburger span:last-child {
	transform: translateY(10px);
}

.header__top__hamburger.active span:first-child {
	transform: translateY(2px) rotate(45deg);
}

.header__top__hamburger.active span:nth-of-type(2) {
	transform: rotate(45deg);
}

.header__top__hamburger.active span:last-child {
	transform: translateY(-2px) rotate(135deg);
}

.header__nav {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 25px 0;
}

.header__nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
}

.header__nav ul li.unlink {
	margin: 0 50px;
	color: #e6e6e6;
}

.header__nav ul li a {
	font-weight: 500;
	color: #444;
}

.header__nav ul li a:hover {
	opacity: 0.8;
}

.header__nav__mobo {
	display: none;
	visibility: hidden;
}

#backtop {
	position: fixed;
	z-index: 4;
	bottom: 100px;
	right: 10px;
	background: linear-gradient(90deg, #013aa4 50%, #19214f 100%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease;
}

#backtop span {
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 15px solid #fff;
}

#backtop.active {
	opacity: 1;
	visibility: visible;
}

#backtop:hover {
	opacity: 0.8;
}

#backtop.backtop--green {
	background: #005522;
}

.footer {
	background-color: #d3daec;
}

.footer--green {
	background-color: #d3e4ad;
}

.footer--green .footer__info {
	background-color: #f0f8e0;
}

.footer .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer .container::after {
	display: none;
}

.footer__info {
	background-color: #f5f8ff;
	padding: 25px 0;
}

.footer__info p {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.5;
}

.footer .footer__info a.btn-gradient {
	font-size: 1.8rem;
}

.footer ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer ul li:not(:last-of-type) {
	margin-right: 25px;
}

.footer ul li a {
	line-height: 3;
	color: #000;
	font-size: 1.3rem;
	font-weight: 500;
}

.footer ul li a:hover {
	color: #000;
	opacity: 0.8;
}

.footer p.copyright {
	font-weight: 500;
	font-size: 1.3rem;

	line-height: 3;
}

@media screen and (max-width: 1023px) {
	body .container {
		padding: 0 20px;
	}

	.header__top {
		align-items: center;
		padding: 10px 35px 10px 45px;
	}

	.header__top h1 span,
	.header__top a.btn-gradient {
		display: none !important;
		visibility: hidden !important;
	}

	.header__top__hamburger {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		visibility: visible;
		z-index: 2;
	}
	.header__top h1 img{
		/* padding-bottom: 5px; */
		padding-top: 5px;
	}

	.header__nav {
		height: 0;
		position: absolute;
		z-index: -1;
		top: -100vh;
		left: 0;
		width: 100%;
		transition: all 0.5s ease;
		opacity: 0;
		visibility: hidden;
		background-color: #fff;
		flex-direction: column;
		padding: 0 20px;
	}

	.header__nav ul {
		flex-flow: column nowrap;
		margin: 50px auto;
		width: 100%;
	}

	.header__nav ul li {
		width: 100%;
		background: linear-gradient(90deg, #e1e7f7 0%, #799ee4 100%);
		padding: 20px 0;
		margin-bottom: 2px;
	}

	.header__nav ul li.unlink {
		display: none;
		visibility: hidden;
	}

	.header__nav ul li a {
		display: block;
		text-align: center;
		width: 100%;
	}

	.header__nav--tenite ul li {
		background: linear-gradient(90deg, #f0f8e0 0%, #c0d78d 100%);
	}

	.header__nav__mobo {
		display: block;
		visibility: visible;
	}

	.header__nav__mobo a.btn-gradient {
		margin: 50px auto;
	}

	.header__nav__mobo>div {
		text-align: center;
	}

	.header__nav__mobo>div a {
		display: block;
		margin-bottom: 20px;
	}

	.header__nav__mobo>div a img {
		/* max-width: 250px; */
		max-width: 230px;
	}

	.header__nav.active {
		height: 100vh;
		top: 0;
		opacity: 1;
		visibility: visible;
	}

	.header.active .header__top {
		padding: 5px 20px;
	}

	.footer .container {
		flex-flow: column nowrap;
	}

	.footer .footer__info a.btn-gradient {
		margin: 25px auto;
	}
}

@media screen and (max-width: 767px) {
	
	.sp-only {
		display: block;
	}

	.pc-only {
		display: none;
	}

	.header__top {
		padding: 10px 20px;
	}

	.header__top h1 img {
		max-width: 120px;
		margin-right: 0;
		padding-bottom: 0;
		padding-top: 0;
	}

	.header__top__hamburger {
		width: 40px;
		height: 40px;
	}

	.header__top__hamburger span:first-child {
		transform: translateY(-5px);
	}

	.header__top__hamburger span:last-child {
		transform: translateY(5px);
	}

	.header__nav ul {
		margin: 0px auto 25px;
	}

	.header__nav__mobo a.btn-gradient {
		margin: 0 auto 20px;
	}

	.footer__info p {
		font-size: 1.2rem;
	}

	.footer ul {
		flex-flow: row wrap;
		justify-content: flex-start;
	}

	.footer .footer__info a.btn-gradient {
		margin: 20px auto 0;
		font-size: 1.4rem;
	}
}