@charset "utf-8";
/* CSS Document -----------------------------

 2021.04.05

--------------------------------------------*/

/* ----------------------------------------------

 * タグの設定

---------------------------------------------- */
a {
	display: block;
	outline:none;
	color: #000;
	cursor: pointer;
	text-decoration: none;
    transition: all .3s ease;
}
input[type="submit"],
input[type="button"],
button {
	font-family: 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset',"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: 400;
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	box-sizing: border-box;
	cursor: pointer;
	outline: none;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea {
   -webkit-appearance: none;
   border-radius: 0;
}
select {
	font-family: 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset',"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    -webkit-appearance: none;
	 -moz-appearance: none;
    appearance: none;
}
select::-ms-expand{
	font-family: 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset',"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	display: none;
}
/*------------------------------------------------*/
html {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #000;
	font-style: normal;
	font-weight: 400;
	font-size: 62.5%;
	line-height: 1.8;
	font-family: 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset',"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	/*font-feature-settings: "palt" 1, "trad" 1;*/
	-webkit-font-smoodting: antialiased;
	-moz-osx-font-smoodting: grayscale;
	word-break: break-all;
	scroll-padding-top: var(--header-height, 10rem);
}
body {font-size: 1.6em;line-height: 1.8;}
h2,h3,h4,h5 {line-height: 1.4;}
p {font-size: 1.6rem;line-height: 1.8;}
ul,li,th,td,dt,dd {line-height: 1.8;}
.inner {max-width: 114rem;margin: 0 auto;padding: 0 2rem;}
.blank {padding-top: 10rem;padding-bottom: 10rem;}
.flexbox,
.flexbox2 {display: flex;flex-wrap: wrap;justify-content: space-between;}
.title {margin-bottom: 7rem;font-size: 1.6rem;text-align: center;}
.title span {
	display: block;
	margin-bottom: 1.5rem;
	color: #758DA2;
	font-weight: 900;
	font-size: 3.15em;
	text-align: center;
}
.pc {display: block;}
.sp {display: none;}
@media only screen and ( max-width : 767px ) {
	body {font-size: 1.4em;}
	p {font-size: 1.4rem;}
	.blank {padding-top: 8rem;padding-bottom: 8rem;}
	.title {margin-bottom: 5rem;font-size: 1.4rem;}
	.pc {display: none;}
	.sp {display: block;}
}
@media only screen and ( max-width : 480px ) {
	.title {margin-bottom: 3rem;font-size: 1.2rem;}
}
/*------------------------------------------------

    animation

------------------------------------------------*/
.underline {display: inline-block;position: relative;text-decoration: none;}
.underline::after {	
	content: '';
	position: absolute;
	left: 50%;
	bottom: -10px;
	transform: translate(-50%,50%);
	transition: all .3s ease 0s;
	width: 0;
	height: 2px;
	background: #fff;
}
.underline:hover {cursor: pointer;}
.underline:hover::after {width: 100%;}
/*------------------------------------------------

    header

------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	z-index: 9;
	width: 100%;
	height: 10rem;
	padding: 1rem;
	box-shadow: 0 3px 3px rgba(0,0,0,.2);
	background: #fff;
}
header .header_box {
	display: flex;
	align-items: center;
	max-width: 181rem;
	height: 100%;
	margin: 0 auto;
}
header .logo img {width: 276px;}
header nav {width: 100%;}
header nav ul {display: flex;align-items: center;justify-content: flex-end;}
header nav li {margin-right: 5%;}
header nav li a {color: #005AAB;font-size: 1.2rem;text-align: center;}
header nav li a span {
	display: block;
	margin-bottom: 1.5rem;
	color: #758DA2;
	font-weight: 700;
	font-size: 1.34em;
}
header nav li:last-child {width: 100%;max-width: 28rem;margin-right: 0;}
header nav li:last-child a {
	position: relative;
	z-index: 1;
	padding: 1.5rem 0;
	border: 3px solid #005AAB;
	background: #005AAB;
	color: #fff;
	font-weight: 900;
	font-size: 3rem;
	letter-spacing: .3em;
	text-align: center;
}
header nav li:last-child a::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -5;
	transform-origin: right top;
	transform: scale(0, 1);
	background: #fff;
	transition: transform .3s;
}
header nav li:last-child a:hover {color: #005AAB;}
header nav li:last-child a:hover::before {transform-origin: left top;transform: scale(1, 1);}
@media only screen and ( max-width : 1190px ) {
	header .logo img {width: 200px;}
	header nav li {margin-right: 3%;}
	header nav li:last-child {max-width: 15rem;}
	header nav li:last-child a {font-size: 2rem;}
}
@media only screen and ( max-width : 869px ) {
	#js-black-bg {
		position: fixed;
		left: 0;
		top: 0;
		z-index: 6;
		transition: .3s all;
		opacity: 0;
		visibility: hidden;
		width: 0;
		height: 100vh;
		background: #000;
		cursor: pointer;
	}
	#js-black-bg.clicked {opacity: .5;visibility: visible;width: 100%;}
	header {height: 8rem;}
	header nav {
		position: fixed;
		top: 8rem;
		right: -100%;
		width: 80%;
		z-index: 9;
		background: #fff;
		transition: .3s all;
	}
	header nav.clicked {right: 0%;box-shadow: -2px 2px 3px rgba(0,0,0,.2);}
	header nav ul {display: block;height: auto;padding: 0 2rem 2rem;}
	header nav li {display: block;margin: 0;border-bottom: 1px dashed #000;}
	header nav li:last-child {max-width: 100%;margin-top: 2rem;border-bottom: none;}
	header nav li a {display: block;padding: 2rem 0;text-align: left;}
	header nav p {display: none;}
	#sp-menu {
		position: fixed;
		top: 8px;
		right: 1rem;
		width: 6rem;
		z-index: 10;
		padding: 2.4rem 1.5rem;
		background: #005AAB;
		cursor: pointer;
	}
	#sp-menu a {position: relative;height: 1.5rem;}
	#sp-menu span {
		position: absolute;
		display: inline-block;
		left: 0;
		width: 100%;
		height: 3px;
		background: #fff;
		transition: all .4s;
	}
	#sp-menu span:nth-child(1) {top: -3px;}
	#sp-menu span:nth-child(2) {top: 6px;}
	#sp-menu span:nth-child(3) {bottom: -3px;}
	#sp-menu span:nth-child(2)::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 3px;
		background: #fff;
		transition: all .4s;
	}
	#sp-menu.clicked span:nth-child(2) {transform: rotate(-45deg);}
	#sp-menu.clicked span:nth-child(2)::after {transform: rotate(90deg);}
	#sp-menu.clicked span:nth-child(1) {transform: translateY(20px) scale(0);}
	#sp-menu.clicked span:nth-child(3) {transform: translateY(-20px) scale(0);}
}
/*------------------------------------------------

    footer

------------------------------------------------*/
footer {padding: 2rem 0;border-top: 2rem solid #005AAB;background: #005AAB;color: #fff;}
footer .flexbox {margin-bottom: 9rem;}
footer figure img {width: 138px;}
footer ul {display: flex;justify-content: flex-end;}
footer ul li {margin-left: 5rem;}
footer ul li a {color: #fff;font-size: 1.2rem;}
footer .copy {font-size: 1.2rem;text-align: center;}
@media only screen and (max-width: 767px) {
	footer {padding-top: 0;}
	footer figure {margin: 0 auto 2rem;}
	footer .inner {padding: 0;}
	footer .flexbox {margin-bottom: 3rem;}
	footer ul {display: block;width: 100%;}
	footer ul li {margin-left: 0;border-bottom: 1px solid #fff;}
	footer ul li:nth-of-type(1) {border-top: 1px solid #fff;}
	footer ul li a {width: 100%;padding: 1rem 2rem;}
	footer .underline::after {bottom: 0;}
	footer .copy {font-size: 1rem;}
}
@media only screen and (max-width: 480px) {
}
/*-----------------------------------------------

　   back top

------------------------------------------------*/
.wrapper {position: relative;}
p.page_top {position: fixed;right: 1rem;bottom: 1rem;z-index: 5;}
p.page_top a {
	position: relative;
	width: 40px;
	height: 40px;
	border: 3px solid #005AAB;
	border-radius: 5px;
	background: #fff;
	vertical-align: middle;
}
p.page_top a::before {
	content: "";
	position: absolute;
    left: 50%;
	bottom: 50%;
	transform: translate(-50%,50%);
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 15px solid #005AAB;
}