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

 2021.07.21

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

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

 * タグの設定

---------------------------------------------- */
a {
	display: block;
	outline:none;
	color: #000;
	cursor: pointer;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
    transition: all .3s ease;
	user-select: none;
}
input {
	font-family: 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset',"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
input[type="submit"],
input[type="button"],
button {
	font-style: normal;
	font-weight: 400;
	font-family: 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset',"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	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: #333;
	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;
	-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.6;}
.YuGothic {font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;}
.hiraginoMin {font-family: yu-mincho-pr6n, sans-serif;font-weight: 400;font-style: normal;font-feature-settings: "palt" 1;}
.century400 {font-family: century-old-style-std,serif;font-weight: 400;font-style: normal;}
.inner {max-width: 1040px;margin: 0 auto;padding: 0 2rem;}
.blank {padding-top: 11rem;padding-bottom: 9rem;}
.flexbox {display: flex;flex-wrap: wrap;justify-content: space-between;}
.title {margin-bottom: 6rem;text-align: center;letter-spacing: .3em;}
.title span {
	display: block;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	font-size: 2.5em;
	line-height: 1.4;
	text-align: center;
	letter-spacing: 0;
}
.subttl {
	display: table;
	position: relative;
	margin: -14rem auto 8rem;
	padding: 2rem 5rem;
	border-radius: 50px;
	background: #6E7AA2;
	color: #fff;
	font-weight: 700;
	font-size: 2rem;
	text-align: center;
}
.subttl::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -25px;
	transform: translate(-50%, 0);
	width: 0;
	height: 0;
	border-top: 26px solid #6E7AA2;
	border-right: 15px solid transparent;
	border-left: 15px solid transparent;
}
.subttl img {width: 20px;margin-right: 2rem;vertical-align: middle;}
.pc,.pc2 {display: block;}
.sp,.sp2 {display: none;}
@media only screen and ( max-width : 1024px ) {
	.pc2 {display: none;}
	.sp2 {display: block;}
}
@media only screen and ( max-width : 767px ) {
	body {font-size: 1.4em;}
	p {font-size: 1.4rem;}
	.blank {padding-top: 7rem;padding-bottom: 5rem;}
	.title {margin-bottom: 4rem;}
	.subttl {margin: -10rem auto 6rem;padding: 2rem;font-size: 1.6rem;}
	.pc {display: none;}
	.sp {display: block;}
}
@media only screen and ( max-width : 480px ) {
}
/*------------------------------------------------

    animation

------------------------------------------------*/
/* 文字を滑らかに表示させる */
.smooth {
	display: inline-block;
	clip-path: inset(0 100% 0 0);
	transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
	transition-property: clip-path;
}
.smooth.isActive {clip-path: inset(0);}
/* 文字の中心からボーダーが伸びる */
.centerBorder {
	position: relative;
	margin-bottom: 5rem;
	font-weight: 700;
	font-size: 3.2rem;
	letter-spacing: .2em;
	text-align: center;
}
.centerBorder::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 50%;
	z-index: -1;
	transform: translate(-50%, 50%);
	width: 0;
	height: 1px;
	background: #211816;
	transition: all 2s;
}
.centerBorder.isActive::before {width: 100%;}
.centerBorder span {
	position: relative;
	z-index: 1;
	padding: 0 4.5rem;
	background: #fff;
}
/* 文字下のボーダーが伸びる */
.bottomBorder {position: relative;}
.bottomBorder::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 0);
	z-index: -1;
	width: 0;
	height: 1px;
	background: #6E7AA2;
	transition: all 8s;
}
.bottomBorder.isActive::before {width: 100%;max-width: 200px;}
/* hover時下線が伸びる */
.underline {display: inline-block;position: relative;text-decoration: none;}
.underline::after {	
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	transform: translate(0,50%);
	transition: all .1s ease 0s;
	width: 0;
	height: 1px;
	background: #fff;
}
.underline:hover {cursor: pointer;}
.underline:hover::after {width: 100%;}
/*------------------------------------------------

    header

------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	z-index: 9;
	width: 100%;
	box-shadow: 0 3px 3px rgba(0,0,0,.2);
	background: #fff;
}
header .header_box {
	display: flex;
	align-items: center;
	position: relative;
	max-width: 1484px;
	height: 100%;
	margin: 0 auto;
	padding: 0 2rem;
}
header .logo {
	position: absolute;
	top: 10px;
	left: 20px;
	z-index: 1;
	color: #033575;
	font-size: 6rem;
}
header nav {flex: 1;position: relative;}
header nav ul {display: flex;justify-content: center;position: relative;}
header nav li {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
}
header nav li:first-child {margin-left: 0;}
header nav li a {padding: 0 2.5rem;font-weight: 300;text-align: center;}
header nav li a:hover {color: #033575;}
header nav li.entry {
	position: absolute;
	right: 0;
	width: 100%;
	max-width: 250px;
}
header nav li.entry a {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 2.5rem 0;
	overflow: hidden;
	border: 1px solid #033575;
	border-radius: 50px;
	background: #033575;
	color: #fff;
	letter-spacing: .3em;
}
header nav li.entry a:hover {color: #033575;}
header nav li.entry 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.entry a:hover::before {transform-origin: left top;transform: scale(1, 1);}
#slide-line {
	position: absolute;
	bottom: 0;
	height: 2px;
	background-color: #033575;
	transition: all .3s ease;
}
@media only screen and ( max-width : 1360px ) {
	header nav li a {padding: 0 1rem;font-size: 1.4rem;}
	header nav li.entry {max-width: 180px;}
}
@media only screen and ( max-width : 1024px ) {
	header nav li.entry {max-width: 135px;}
	#js-black-bg {
		position: fixed;
		left: 0;
		top: 0;
		z-index: 6;
		transition: .3s all;
		opacity: 0;
		visibility: hidden;
		width: 0;
		height: 100vh;
		background: #062854;
		cursor: pointer;
	}
	#js-black-bg.clicked {opacity: .8;visibility: visible;width: 100%;}
	header {height: 70px;}
	header .logo {top: 5px;}
	header nav {
		position: fixed;
		top: 70px;
		right: -100%;
		z-index: 9;
		width: 100%;
		max-width: 500px;
		border-top: 3px solid #062854;
		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;
		height: auto;
		margin: 0;
		border-bottom: 1px solid #033575;
	}
	header nav li a {
		display: block;
		position: relative;
		padding: 1.8rem 0;
		text-align: center;
	}
	header nav li.entry {
		position: initial;
		max-width: 100%;
		margin-top: 1.8rem;
		border-bottom: none;
	}
	header nav li.entry a {text-align: center;}
	header nav li.entry a span {padding: 0;}
	#slide-line {display: none;}
	#sp-menu {
		position: fixed;
		top: 10px;
		right: 1rem;
		width: 5rem;
		z-index: 10;
		padding: 1.7rem 1.1rem;
		border: 2px solid #fff;
		border-radius: 8px;
		background: #033575;
		cursor: pointer;
	}
	#sp-menu a {position: relative;height: 1.5rem;}
	#sp-menu span {
		position: absolute;
		display: inline-block;
		left: 0;
		width: 100%;
		height: 2px;
		background: #fff;
		transition: all .4s;
	}
	#sp-menu span:nth-child(1) {top: -2px;}
	#sp-menu span:nth-child(2) {top: 6px;}
	#sp-menu span:nth-child(3) {bottom: -2px;}
	#sp-menu span:nth-child(2)::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 2px;
		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: 4rem 0;
	border-top: 20px solid #14192D;
	background: #14192D;
}
footer .inner {max-width: 900px;}
footer a {color: #fff;text-align: center;}
footer .logo {
	padding-bottom: 2rem;
	border-bottom: 1px solid #fff;
	font-size: 5rem;
	text-align: center;
}
footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 5rem;
}
footer ul li {display: inline-block;padding: 1rem 2rem;font-weight: 300;}
footer .btn {
	position: relative;
	max-width: 250px;
	margin: 0 auto 5rem;
	padding: 2.5rem 0;
	border: 1px solid #fff;
	border-radius: 50px;
	font-weight: 300;
	letter-spacing: .3em;
	text-align: center;
}
footer .btn:hover {background: #fff;color: #14192D}
footer small {
	display: block;
	color: #fff;
	font-weight: 300;
	font-size: 1.2rem;
	font-family: "Droid Sans";
	text-align: center;
}
@media only screen and (max-width: 767px) {
	footer .logo {margin-bottom: 2rem;}
	footer ul li {width: 100%;}
}
/*-----------------------------------------------

　   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: 1px solid #333;
	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 #333;
}