@charset "utf-8";
@font-face {
  font-family: 'SakuratoSyouzyo-Std';
  src: url('../font/SakuratosyouzyoStd.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'SakuratoSyouzyo-StdN';
  src: url('../font/SakuratosyouzyoStdN.otf') format('opentype');
  font-display: swap;
}

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

html{
	overflow: auto;
}

body{
//	overflow: hidden;
	min-width: 1250px;
	background-image: linear-gradient(90deg, #bae3ff, #ffffff);
}

body,
table,
input,textarea,select,option{
	font-family: "Noto Sans JP", sans-serif;
	color: #595757;
}

.serif{
	font-family: "Noto Serif JP", serif;
}

.caveat{
	font-family: "Caveat", cursive;
}

.barlow{
	font-family: "Barlow Condensed", sans-serif;
}

.sakura{
	font-family: 'SakuratoSyouzyo-StdN', sans-serif;
}

.sakura-std {
	font-family: 'SakuratoSyouzyo-Std', sans-serif;
}

:root {
	--blue: #005ac8;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.clear{
	clear: both;
}

.clearfix:after{
	content: "";
	clear: both;
	display: block;
}

.f-left{
	float: left;
}

.f-right{
	float: right;
}

a{
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

p{
}

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

img{
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

.rel{
	position: relative;
}

.v-center {
	display: table;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flex.flexstart{
	align-items: flex-start;
}

.flex.flexcenter{
	align-items: center;
}

.flex.flexend{
	align-items: flex-end;
}

.flex.jc-start{
	justify-content: flex-start;
}

.flex.jc-center{
	justify-content: center;
}

.flex.jc-end{
	justify-content: flex-end;
}

.flex.reverse{
	flex-direction: row-reverse;
}

.table-box{
    border-collapse: collapse;
	display: table;
	width: 100%;
}

.table-box .row{
	display: table-row;
}

.table-box .row > div{
	display: table-cell;
}

.trance{
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

.shadow{
//	-moz-filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
//	-ms-filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
//	-o-filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
//	-webkit-filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
//	filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
	box-shadow: 3px 3px 6px rgba(0,0,0,0.1);
}

.mt10{margin-top: 10px;}
.mt15{margin-top: 15px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.mt50{margin-top: 50px;}
.mt60{margin-top: 60px;}
.mt70{margin-top: 70px;}
.mt80{margin-top: 80px;}
.mt90{margin-top: 90px;}
.mt100{margin-top: 100px;}

.txt-center{
	text-align: center;
}

.blo-center{
	display: table;
	margin-left: auto;
	margin-right: auto;
}

.pc{display:block;}
.sp{display:none;}

.outer{
	margin: 0 auto;
	max-width: 1366px;
}

.inner{
	margin: 0 auto;
	max-width: 940px;
	width: 90%;
}

.header{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 3;
}

.header .logo{
	width: 230px;
}

.header .logo img{
	width: 100%;
}

header .h-flex{
	padding: 35px 130px 35px 60px;
}

.nav-menu{
	gap: 40px;
}

.nav-menu li{
	font-size: 15px;
	letter-spacing: 0.3em;
	position: relative;
}

.nav-menu li a{
	color: var(--blue);
}

.nav-menu li:not(:last-child) a::after{
	content: "";
	background: var(--blue);
	height: 1px;
	width: 0;
	position: absolute;
	left: 0;
	bottom: -5px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.nav-menu li.entry a{
	background: var(--blue);
	border-radius: 25px;
	color: #ffffff;
	letter-spacing: 0.1em;
	height: 30px;
	width: 85px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#panel-btn{
	display: block;
	width: 30px;
	height: 15px;
	position: fixed;
	right: 35px;
	top: 50px;
	z-index: 10;
}

#panel-btn.close{
    right: 95px;
    top: 80px;
}

#panel-btn-icon{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 2px;
	background: var(--blue);
	transition: .2s;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#panel-btn-icon:before, #panel-btn-icon:after{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--blue);
	transition: .3s;
}

#panel-btn-icon:before{
	margin-top: -7px;
}

#panel-btn-icon:after{
	margin-top: 5px;
}

#panel-btn .close{
	background: transparent;
}

#panel-btn .close:before, #panel-btn .close:after{
	margin-top: 0;
}

#panel-btn .close:before{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

#panel-btn .close:after{
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}

footer{
	margin-top: -7%;
	position: relative;
	z-index: 1;
}

.footer-top{
	background: url(../images/common/footer-bg.png) no-repeat;
	background-size: cover;
	padding: 60px 0;
}

.footer-top .logo{
	margin: 0 auto 30px;
	width: 110px;
}

.footer-top .catch-copy{
	margin: 0 auto;
	max-width: 460px;
    width: 80%;
}

.footer-top h2{
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.3em;
	margin-top: 20px;
	text-align: center;
}

footer .nav-menu{
	margin: 60px auto 0;
	gap: 15px;
}

footer .nav-menu li{
	font-size: 12px;
	font-weight: 500;
}

footer .nav-menu li a{
	border: 1px solid #ffffff;
	color: #ffffff;
	padding: 3px 15px;
}

footer .nav-menu li.entry a {
	background: #ffffff;
	color: var(--blue);
	font-size: 15px;
    height: 25px;
    width: 110px;
}

.footer-btm{
	background: #ffffff;
	padding: 30px 0;
}

.footer-btm .logo{
	margin: 0 auto 20px;
	width: 245px;
}

.footer-btm .addr{
	font-size: 14px;
	text-align: center;
	letter-spacing: 0.075em;
}

.footer-btm .addr .sp{
	margin-right: 1rem;
	display: inline-block;
}

.footer-btm .addr span{
	font-size: 10px;
}

.footer-btm .links-copy{
	margin-top: 20px;
	gap: 10px;
}

.footer-btm .links-copy .links li:first-child{
	border-right: 1px solid #595757;
}

.footer-btm .links-copy .links li{
	padding: 0 15px;
}

.footer-btm .links-copy .links a{
	color: #595757;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.15em;
}

.footer-btm .links-copy .links a.corporate:after {
	content: "\e80e";
	font-family: "fontello";
	margin-left: 5px;
	font-weight: 600;
	font-style: normal;
}

.footer-btm .links-copy .links a.contact:after {
	content: "\f0e0";
	font-family: "Font Awesome 5 Free";
	margin-left: 5px;
	font-weight: 400;
	font-style: normal;
}

.footer-btm .links-copy .copy {
	font-size: 10px;
	letter-spacing: 0.1em;
}

.lower .header{
	position: relative;
	background: #ffffff;
}

.menu-box{
	display: none;
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100vw;
	z-index: 5;
}

.menu-box .menu-box-inner{
	background: url(../images/common/menu-bg.png) no-repeat;
	background-size: cover;
	height: 90%;
	width: 90%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.menu-box .menu-flex{
	height: 100%;
	padding: 0 75px;
}

.menu-box .menu li:not(:first-child){
	margin-top: 45px;
}

.menu-box .menu li a{
	color: var(--blue);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.25em;
	display: flex;
	align-items: center;
	gap: 35px;
	position: relative;
	padding-bottom: 10px;
}

.menu-box .menu li a::after{
	content: "";
	background: var(--blue);
	height: 1px;
	width: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.menu-box .menu li a .en{
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 0.1em;
	flex: 1;
}

.menu-box .menu li a .ja{
	display: block;
	text-align: left;
	min-width: 88px;
}

.menu-box .entry-btn{
	background: url(../images/common/entry-bg.png) no-repeat;
	background-size: cover;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.25em;
	text-align: center;
	height: 220px;
	width: 220px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 130px;
}

.menu-box .entry-btn span{
	font-size: 44px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.menu-box .links{
	position: absolute;
	right: 75px;
	bottom: 50px;
}

.menu-box .links li{
	border-right: 1px solid var(--blue);
}

.menu-box .links li:first-child{
	border-left: 1px solid var(--blue);
}

.menu-box .links li a{
	padding: 5px 20px;
}

.menu-box .links a{
	color: var(--blue);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.15em;
	min-width: 200px;
	display: block;
	text-align: center;
}

.menu-box .links a.corporate:after {
	content: "\e80e";
	font-family: "fontello";
	margin-left: 5px;
	font-weight: 600;
	font-style: normal;
}

.menu-box .links a.contact:after {
	content: "\f0e0";
	font-family: "Font Awesome 5 Free";
	margin-left: 5px;
	font-weight: 400;
	font-style: normal;
}

.page-top{
	background: #000000;
	color: #ffffff;
	writing-mode: vertical-rl;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.1em;
	padding: 10px 5px;
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 5;
}

.is-invisible {
	opacity: 0;
}

.sec-404{
	background: url(../images/common/not-found-bg.png) no-repeat;
	background-size: cover;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*------------------------------------------------------------
	レスポンシブ
------------------------------------------------------------*/
@media all and (min-width: 0) and (max-width: 767px){
	.pc{display:none;}
	.sp{display:block;}

	body{
		min-width: auto;
	}
	
	.sp-mt10{margin-top: 10px;}
	.sp-mt15{margin-top: 15px;}
	.sp-mt20{margin-top: 20px;}
	.sp-mt30{margin-top: 30px;}
	.sp-mt40{margin-top: 40px;}
	.sp-mt50{margin-top: 50px;}
	.sp-mt60{margin-top: 60px;}
	.sp-mt70{margin-top: 70px;}
	.sp-mt80{margin-top: 80px;}
	.sp-mt90{margin-top: 90px;}
	.sp-mt100{margin-top: 100px;}
	
	header .h-flex {
		padding: 20px 25px;
	}
	
	.header .logo{
		width: 150px;
	}
	
	#panel{
		display: none;
	}
	
	#panel-btn {
		right: 25px;
		top: 20px;
	}
	
	.footer-top {
		background: url(../images/common/footer-bg_sp.png) no-repeat;
		background-size: cover;
		padding: 35px 0;
	}

	.footer-top h2 {
		font-size: 13px;
		margin-top: 10px;
	}
	
	footer .nav-menu {
		gap: 15px;
		width: 80%;
		margin: 30px auto 0;
	}
	
	footer .nav-menu li{
		font-size: 12px;
		width: calc(50% - 10px);
	}
	
	footer .nav-menu li.entry{
		width: 100%;
	}
	
	footer .nav-menu li a {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 35px;
	}
	
	footer .nav-menu li.entry a {
		height: 35px;
		width: 100%;
	}
	
	.footer-btm .addr .sp {
		margin-right: 0;
		display: block;
	}
	
	.footer-btm .addr .sp br{
		display: none;
	}
	
	.footer-btm .addr {
		font-size: 11px;
	}
	
	.footer-btm .links-copy .copy{
		text-align: center;
	}
	
	.menu-box .menu-flex {
		height: auto;
		padding: 40px 15px 20px;
		align-items: flex-start;
	}
	
	.menu-box .menu li a {
		font-size: 12px;
		align-items: flex-start;
		gap: 0;
		flex-direction: column;
	}
	
	.menu-box .menu li a .en {
		font-size: 26px;
		flex: unset;
	}
	
	.menu-box .menu li:not(:first-child) {
		margin-top: 15px;
	}
	
	.menu-box .entry-btn {
		font-size: 12px;
		height: 160px;
		width: 160px;
		margin: 0;
		margin-left: auto;
	}
	
	.menu-box .entry-btn span {
		font-size: 35px;
	}
	
	.menu-box .links {
		position: static;
		margin: 30px 0 0;
	}
	
	.menu-box .links a {
		font-size: 12px;
		min-width: unset;
	}
	
	#panel-btn.close {
		right: calc(5% + 15px);
		top: calc(5% + 15px);
	}
	
	.sec-404 .img{
		width: 200px;
	}





}