@charset "UTF-8";
:root {
    --gry: #3c3c3c;
    --l_gry: #efefef;
    --blue: #437e96;
    --yellow: #e3e1cc;
    --green: #97a462;
    --white: #fff;
    --hover: #0086D8;
    
    --lineheight: 1.8;
    --letterspace: .03em;
    --center: center;
    --left: left;
    --right: right;
}

body{
	color: #3c3c3c;
	text-align:center;
	font-size: 16px;
	/*font-family: Arial, Helvetica, 'Noto Sans JP', "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;*/
    font-family: Arial, Helvetica, "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
    min-width: auto;
    -webkit-text-size-adjust: 100%;
}
html,body{
    overflow-x: hidden;
}

a{
	text-decoration:none;
	color:#3c3c3c;
	word-wrap: break-word;
}
a, a img{
    transition: all 300ms 0s ease;
}
a:hover{
    color: #0086D8;
}
a:hover img{
    opacity: .6;
}
a:focus, *:focus { outline:none; }
.underline{
	text-decoration: underline;
}

p{
    line-height: 1.8;
	text-align: left;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	body{
        font-size: 14px;
    }
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    body{
        font-size: 12px;
    }
}


/*******************************
CommandCss
*******************************/
#wrap{
	position: relative;
}


/*---fontStyle---*/
.bold{ font-weight: bold; }
.font-en{
	font-family: 'Spartan', sans-serif;
}

/*---textLayout---*/
.txtright	{ text-align:right; }
.txtleft	{ text-align:left; }
.txtcenter	{ text-align:center; }
.pc-txtcenter	{ text-align:center; }

ul.list-style-indent li{
    padding-left: 1em;
    text-indent: -1em;
}

/*---layout---*/
.wrap-common,
.inner-common{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.inner-common{
    width: 100%;
}

.pc{ display: block; }/*width 1024pxまで表示*/
.tablet{ display: block; }/*width 896pxまで表示*/
.sp_h{ display: block; }/*width 480pxまで表示*/
.sp{ display: none; }/*width 896pxから表示*/
.sp_v{ display: none; }/*スマホ縦 width 480pxから表示*/

.hide-over{
    overflow: hidden;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
    .wrap-common{
        max-width: none;
        margin: 0 auto;
    }
    .pc{ display: none; }
	
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    #wrap {
		padding-top: 0;
	}
    .tablet{ display: none; }
    .sp{ display: block; }
	
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .sp_h{ display: none; }
    .sp_v{ display: block; }
}


/*---Flex---*/
.flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex.col-2 .item{
    width: 50%;
}
.flex.col-3 .item{
    width: 33.333%;
}


/*******************************
LoadingCss
*******************************/
#loading {
    width: 100%;
    height: 100%;
    margin: 0;
    background: #fff;
    opacity: 1.0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

#loading .ball{
	border-radius: 100%;
	margin: 2px;
	border: 2px solid #666;
	border-bottom-color: transparent;
	height: 26px;
	width: 26px;
	display: inline-block;
	-webkit-animation: rotate .75s 0s linear infinite;
	animation: rotate .75s 0s linear infinite;
	position: absolute;
	top: 45%;
}
@keyframes rotate{
	0%{-webkit-transform:rotate(0);transform:rotate(0)}
	50%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}
	100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}
}


/******************************* 
HeaderCss
*******************************/
header .head{
    position: fixed;
	right: 0;
	top: 0;
	z-index: 9;
    width: 90%;
    text-align: right;
}
header .head.fixed{
	padding-top: 20px;
	padding-bottom: 20px;
	
    background: rgba(0,0,0,.9);
    animation: slideInDown .5s forwards linear;
}
@keyframes slideInDown {
	0% {
		visibility: visible;
		transform: translate3d(0, -100%, 0);
	}
	to {
		transform: translateZ(0);
	}
}
header .head-nav{
	justify-content: flex-end;
}
header .head-nav li{
	width: 123px;
	height: 92px;
	border-right: solid 1px #c7c7c7;
	transition: all 300ms 0s ease;
}
header .head-nav li:last-child{
	border-right: none;
}
header .head-nav li a{
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 10px 0;
	background: #fff;
}
header .head-nav li a:hover{
	background: #e3e1cc;
	color: #3c3c3c;
}
header .head-nav li a:hover img{
	opacity: 1;
}
header .head-nav li .ico{
	display: block;
	margin: 0 auto;
	flex-grow: 1;
	transition: all 300ms 0s ease;
}
header .head-nav li .ico img{
	vertical-align: bottom;
}
header .head-nav li .label{
	display: block;
	text-align: center;
	font-size: 10px;
	font-weight: bold;
}
header .head-nav li .label br{
	display: none;
}
header .head-nav li:nth-child(1) .ico{ width: 48px; padding-top: 5%; }
header .head-nav li:nth-child(2) .ico{ width: 36px; padding-top: 5%; }
header .head-nav li:nth-child(3) .ico{ width: 39px; padding-top: 7%; }
header .head-nav li:nth-child(4) .ico{ width: 31px; padding-top: 5%; }
header .head-nav li:nth-child(5) .ico{ width: 43px; padding-top: 3%; }
header .head-nav li:nth-child(6) .ico{ width: 47px; padding-top: 8%; }


header .head-nav.fixed li{ height: 70px; }
header .head-nav.fixed li a{ padding: 0 0 10px; }
header .head-nav.fixed li .ico{ transform: scale(.8); }
header .head-nav.fixed li:nth-child(1) .ico{ padding-top: 5%; }
header .head-nav.fixed li:nth-child(2) .ico{ padding-top: 5%; }
header .head-nav.fixed li:nth-child(3) .ico{ padding-top: 7%; }
header .head-nav.fixed li:nth-child(4) .ico{ padding-top: 5%; }
header .head-nav.fixed li:nth-child(5) .ico{ padding-top: 3%; }
header .head-nav.fixed li:nth-child(6) .ico{ padding-top: 8%; }

header .side{
    position: fixed;
    left: 0;
    top: 80px;
    z-index: 100;
    width: 90px;
    height: 78vh;
}
header.open .side{
    background: rgba(255,255,255,0);
}
header .side .flex{
    height: 100%;
	max-height: 560px;
    justify-content: center;
    align-items: flex-end;
}
header .side .flex img{
    max-width: 21px;
}
header .side .sns{
    width: 100%;
}
header .side .sns li{
    margin-bottom: 22px;
}
header .side .sns li .txt{
	font-size: 10px;
}
header .side .sns .ico-sns:before{
    content: "";
    display: block;
    vertical-align: top;
    width: 37px;
    height: 37px;
	margin: 0 auto;
    background-image: url(../img/common/sprite_02@2x.png);
    background-size: 254px auto;
    background-repeat: no-repeat;
}
header .side .sns .emcampus:before{background-position: -152px -160px;}
header .side .sns .emcampus:hover:before{background-position: -114px -160px;}
header .side .sns .insta:before{background-position: -38px -120px;}
header .side .sns .insta:hover:before{background-position: -38px -160px;}
header .side .sns .youtube:before{background-position: -76px -120px;}
header .side .sns .youtube:hover:before{background-position: -76px -160px;}

header .side .sns .emcampus:hover .txt{
	color: #417e97;
}
header .side .sns .insta:hover .txt{
	color: #cf2e92;
}
header .side .sns .youtube:hover .txt{
	color: #da1725;
}
.contents, footer{
    margin-left: 90px;
}
.contents{
    margin-top: 92px;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    /*header .head{
        right: 70px;
    }*/
	header .head{
		top: auto;
		bottom: 0;
		width: 100%;
	}
	header .head-nav li {
		width: 16.666%;
	}
	header .head-nav li a{
		background: #e3e1cc;
	}
	header .head-nav li .ico,
	header .head-nav.fixed li .ico{
		transform: scale(.8);
	}
	header .head-nav li,
	header .head-nav.fixed li{ height: 70px; }
	header .head-nav li a,
	header .head-nav.fixed li a{ padding: 0 0 10px; }
	header .head-nav li:nth-child(1) .ico,
	header .head-nav.fixed li:nth-child(1) .ico{ padding-top: 5%; }
	header .head-nav li:nth-child(2) .ico,
	header .head-nav.fixed li:nth-child(2) .ico{ padding-top: 5%; }
	header .head-nav li:nth-child(3) .ico,
	header .head-nav.fixed li:nth-child(3) .ico{ padding-top: 11%; }
	header .head-nav li:nth-child(4) .ico,
	header .head-nav.fixed li:nth-child(4) .ico{ padding-top: 5%; }
	header .head-nav li:nth-child(5) .ico,
	header .head-nav.fixed li:nth-child(5) .ico{ padding-top: 0; }
	header .head-nav li:nth-child(6) .ico,
	header .head-nav.fixed li:nth-child(6) .ico{ padding-top: 10%; }
	
    header .head .btn-bg-gry{
        max-width: 150px;
    }
    
    header .side{
        width: 60px;
    }
    .contents, footer{
        margin-left: 60px;
    }
	.contents{
		margin-top: 0;
	}
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    /*header .head{
        right: 60px;
    }*/
	header .head-nav li .label{
		font-size: 10px;
	}
	header .head-nav li .ico,
	header .head-nav.fixed li .ico{
		transform: scale(.6);
	}
	
	header .head-nav li .label br{
		display: block;
	}
	
    header .head .btn-bg-gry{
        max-width: 125px;
    }
    
    header .side{
        width: 50px;
		top: 0;
    }
	header .side .sns li{
    margin-bottom: 8px;
	}
    header .side .flex img{
        max-width: 16px;
    }
    .contents, footer{
        margin-left: 50px;
    }
}



/*******************************
subnaviCss
*******************************/
#subnavi{
	position: fixed;
	right: 0;
	top: 0;
	z-index: 98;
}

.fat-navi {
	width: 100%;
	height: 0;
    overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
    overflow-y: auto;
	transform: translateY(-100%);
	transition: all .5s;
    background-color: #437e96;
}
.fat-navi.open {
	transform: translateY(0);
    height: 100%;
}
.fat-navi .inner{
	height: 100%;
	padding: 90px 0 100px;
	overflow-y: scroll;
}
.fat-navi .scroll{
	
}

.fat-navi .main{
    margin-bottom: 40px;
}
.fat-navi .main li {
	color: #fff;
	text-align: center;
}
.fat-navi .main li a{
    display: block;
    padding: 20px 0;
	color: #fff;
	font-size: 125%;
    letter-spacing: .05em;
}
.fat-navi .main li a span{
    font-size: 60%;
    display: block;
    color: #e3e1cc;
    margin-top: 4px;
}
.fat-navi .main li a:hover{
    background: rgba(255,255,255,.2);
}

.fat-navi .primary{
margin-bottom: 30px;
}
.fat-navi .primary li{
    display: inline-block;
    border-left: solid 1px #fff;
    padding: 0 15px;
    font-size: 80%;
    letter-spacing: .05em;
}
.fat-navi .primary li:nth-of-type(1){
    border-left: none;
}
.fat-navi .primary li a{
    color: #fff;
}
.fat-navi .primary li a:hover{
    color: #000;
}

.menu-trigger {
	display: inline-block;
    width: 20%;
    /*max-width: 140px;*/
    max-width: 80px;
    height: 44px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: 25px;
    left: 0;
    z-index: 999;
    transition: transform .4s;
 }
.menu-trigger span {
	display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 28px;
    height: 3px;
    background-color: #000;
    transition: all .4s;
}
.menu-trigger span:nth-of-type(1) {
	top: 15px;
}
.menu-trigger.active span:nth-of-type(1) {
	transform: translateY(4px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
	top: 21px;
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
	top: 27px;
}
.menu-trigger.active span:nth-of-type(3) {
	transform: translateY(-8px) rotate(45deg);
}
.menu-trigger p{
    position: absolute;
    /*top: 13px;
    left: 30px;*/
    font-weight: bold;
    /*font-size: 110%;*/
    line-height: 1;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 75%;
}
.menu-trigger p:before{
    content: "menu";
    color: #000;
}
.menu-trigger.active p:before{
    content: "close";
}

.overlay {
	content: "";
	display: block;
	width: 0;
	height: 0;
	background-color: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0;
	transition: opacity .5s;
}
.overlay.open {
	width: 100%;
	height: 100%;
	opacity: 1;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    .menu-trigger{
        max-width: 60px;
    }
    .menu-trigger span{
        margin: 0 auto;
    }
    .menu-trigger p:before{
        display: none;
    }
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .fat-navi {
        padding: 0;
    }
	.fat-navi .inner {
		padding: 50px 0 100px;
	}
    .fat-navi .main{
        margin-bottom: 20px;
    }
    .fat-navi .main li a{
        padding: 10px 0;
        font-size: 130%;
    }
    .menu-trigger{
        top: 20px;
        max-width: 50px;
    }
    .fat-navi .btn-contact{
        width: 70%;
    }
}


/*******************************
btn-totopCss
*******************************/
.btn-totop{
    position: fixed;
    right: 20px;
    bottom: 40px;
	display: inline-block;
	text-align: left;
    cursor: pointer;
}
.btn-totop span{
    height: 96px;
	display: block;
    font-size: 80%;
    -ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
    position: relative;
    border-left: solid 1px;
    padding: 20px 0 10px;
    color: #797979;
    transition: all 300ms 0s ease;
}
.btn-totop:before{
    content: "▲";
    display: block;
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 80%;
    color: #797979;
}
.btn-totop:hover span{
    height: 106px;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	.btn-totop{
		bottom: 100px;
	}
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .btn-totop{
        display: none;
    }
    .btn-totop:before{
        top: -6px;
        left: -4px;
    }
}


/*******************************
FooterCss
*******************************/
footer{
    font-size: 90%;
    background: #282828;
    padding: 30px 0 50px;
}

footer .f-info{
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}
footer .left{
    text-align: left;
}
footer .right{
    text-align: right;
}
footer dl dt{
    color: #999999;
    letter-spacing: .03em;
    margin-bottom: 5px;
}
footer dl dd, footer dl dd a{
    color: #fff;
}
footer dl dd {
    margin-bottom: 15px;
}

footer .primary li{
    display: inline-block;
    margin-left: 10px;
}
footer .primary a{
    color: #fff;
    font-weight: bold;
    font-size: 90%;
}
footer .primary a:after{
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 17px;
    height: 16px;
    background: url(../img/common/sprite@2x.png) no-repeat;
    background-size: 254px auto;
    background-position: -53px 0;
    margin-left: 3px;
}
footer .primary a:hover{
    color: #0086D8;
}


footer .copy{
    clear: both;
	color: #828282;
	font-size: 12px;
    text-align: right;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	footer{
		padding: 30px 0 100px;
	}
    footer .f-logo{
        width: 100px;
        margin: 0 auto 30px;
    }
    footer .left,
    footer .right{
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    footer dl dd {
        margin-bottom: 25px;
    }
    footer .copy{
        text-align: center;
    }
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    footer{
        padding: 30px 0;
    }
}


/*******************************
見出しCss
*******************************/
/*装飾なし大見出し*/
.page-n-ttl{
    color: #000;
    font-size: 2vw;
    font-weight: bold;
    text-align: left;
    margin: 40px 0;
}
.page-n-ttl span{
    font-size: 260%;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .page-n-ttl{
        font-size: 2.5vw;
        margin: 20px 0 30px;
    }
}


/*中見出し*/
.page-mdl-ttl{
    font-size: 180%;
    font-weight: bold;
    letter-spacing: .03em;
    margin: 30px 0;
}
.page-mdl-ttl .font-en{
    display: block;
    font-weight: normal;
    font-size: 55%;
    font-style: italic;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){

}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){

}


/*******************************
ボタンCss
*******************************/
/*ノーマルボタン　黒*/
.btn{
	display: inline-block;
    width: 100%;
	max-width: 340px;
	text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    margin: 30px 0;
    padding: 25px 30px;
    position: relative;
    overflow: hidden;
}
.btn:before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200%;
    height: 100%;
    background: rgb(67,126,150);
    background: -moz-linear-gradient(90deg, rgba(67,126,150,1) 0%, rgba(67,126,150,1) 50%, rgba(60,60,60,1) 50%, rgba(60,60,60,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(67,126,150,1) 0%, rgba(67,126,150,1) 50%, rgba(60,60,60,1) 50%, rgba(60,60,60,1) 100%);
    background: linear-gradient(90deg, rgba(67,126,150,1) 0%, rgba(67,126,150,1) 50%, rgba(60,60,60,1) 50%, rgba(60,60,60,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#437e96",endColorstr="#3c3c3c",GradientType=1);
    transition: .3s;
}
.btn span{
    position: relative;
    z-index: 1;
}
.btn:hover{
    color: #fff;
}
.btn:hover:before{
    right: -100%;
}

/*プラスマークボタン*/
.ico-plus:after{
	content: "";
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 21px;
    background: url(../img/common/sprite@2x.png) no-repeat;
    background-size: 130px auto;
    background-position: -88px 0;
}
.ico-plus:hover:after{
    background-position: -88px -42px;
}

/*二重矢印マークボタン*/
.ico-more:after{
    content: "\f101";
    font-family: FontAwesome;
	margin-left: 5px;
}


/*外部リンクアイコン*/
.btn-ico-link{
}
.btn-ico-link:after{
    content: "\f24d";
    font-family: FontAwesome;
	margin-left: 5px;
}

/*灰色ボタン*/
.btn-bg-gry{
    display: inline-block;
    max-width: 180px;
    text-align: center;
    font-size: 80%;
    line-height: 1;
    background: #3c3c3c;
    color: #e3e1cc;
    padding: 15px 20px;
    border: solid 1px #3c3c3c;
    border-radius: 42px;
}
.btn-bg-gry:hover{
    background: #fff;
    color: #3c3c3c;
}
/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
    /*ノーマルボタン　黒*/
    .btn{
        font-size: 14px;
        margin: 20px 0;
        padding: 15px 30px;
    }
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.btn {
		margin: 20px 0;
		padding: 15px 30px;
	}
    
    /*灰色ボタン*/
    .btn-bg-gry{
        padding: 12px 15px;
    }
}

/*枠線ボタン*/
.btn-bd{
    display: block;
    width: 100%;
    max-width: 996px;
    border: solid 1px #000;
    font-weight: bold;
    font-size: 120%;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.btn-bd:before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 200%;
    height: 100%;
    background: rgb(67,126,150);
    background: -moz-linear-gradient(90deg, rgba(67,126,150,1) 0%, rgba(67,126,150,1) 50%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(67,126,150,1) 0%, rgba(67,126,150,1) 50%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
    background: linear-gradient(90deg, rgba(67,126,150,1) 0%, rgba(67,126,150,1) 50%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#437e96",endColorstr="#3c3c3c",GradientType=1);
    transition: .3s;
}
.btn-bd:hover{
    color: #fff;
}
.btn-bd:hover:before{
    right: -100%;
}
.btn-bd.btn-ico-link:after {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 20px;
    width: 20px;
}

/*contact us ボタン*/
.btn-contact{
    display: inline-block;
    width: 400px;
    color: #fff;
    border: solid 1px #fff;
    padding: 20px;
    font-size: 150%;
    font-weight: bold;
    line-height: 1;
    letter-spacing: .1em;
    text-align: center;
}
.btn-contact:before{
    content: "";
    display: inline-block;
    width: 25px;
    height: 19px;
    background: url(../img/common/sprite@2x.png) no-repeat;
    background-size: 254px auto;
    background-position: -52px -38px;
    margin-right: 8px;
}
.btn-contact:hover{
    background: #fff;
    color: #437e96;
}
.btn-contact:hover:before{
    background-position: 0 -38px;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .btn-contact{
        width: 100%;
    }
}

/******************************
帯
******************************/
.label-blu{
    text-align: center;
    font-size: 160%;
    font-weight: bold;
    line-height: 1;
    padding: 8px;
    background: var(--blue);
    color: var(--yellow);
}
.bg-yellow{
    background: var(--yellow);
    padding: 60px 0;
}
/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
    .bg-yellow{
        padding: 30px 0;
    }
}

/******************************
table
******************************/
/*th グレー*/
.table-gry{
    margin: 0 auto;
}
.table-gry th,
.table-gry td{
    border: solid 1px #cbcbcb;
}
.table-gry th,
.table-gry td{
    padding: 10px;
}
.table-gry th{
    text-align: center;
    font-weight: bold;
    background: var(--l_gry);
    white-space: nowrap;
    vertical-align: middle;
}

/*******************************
下層共通Css
*******************************/

/*画像付きメインタイトル*/
#hero.page-img-ttl {
    text-align: left;
    max-width: 1920px;
    margin: auto;
    position: relative;
    padding-top: 5%;
}
#hero.page-img-ttl .head{
    position: absolute;
    top: 0;
    left: 0;
}
#hero.page-img-ttl .ttl,
#hero.page-img-ttl .sub{
    font-weight: bold;
    display: inline-block;
    color: #000;
    background: #fff;
}
#hero.page-img-ttl .ttl{
    font-size: 5.5vw;
    padding: 0 12px;
    margin-bottom: 5px;
}
#hero.page-img-ttl .sub{
    font-size: 1.7vw;
    padding: 6px 15px;
    display: inline;
    line-height: 1.8;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    #hero.page-img-ttl .sub {
        line-height: 2.5;
    }
}


/*block 背景白*/
.block-bg-white{
    width: 90%;
    margin: 60px auto 0;
    padding: 70px 10px;
    background: #fff;
    text-align: left;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    .block-bg-white {
        margin: 30px auto 0;
        padding: 30px 0;
    }
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .block-bg-white {
        margin: 15px auto 0;
        padding: 20px 0;
    }
}

/******************************
nav-floor
******************************/
.nav-floor{
    margin: 150px 0 50px;
    padding-bottom: 40px;
    position: relative;
}
.nav-floor .flex{
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
}
.nav-floor:before{
    content: "";
    position: absolute;
    top: 10%;
    left: 0;
    z-index: -1;
    height: 90%;
    width: 100%;
    background: var(--l_gry);
}
.nav-floor ul{
    text-align: left;
    padding-left: 50px;
}
.nav-floor ul li{
    padding: 0 0 24px 0;
}
.nav-floor ul li .item{
    color: #b2b2b2;
    font-size: 120%;
    font-weight: bold;
}
.nav-floor ul li .item .itl{
    font-size: 80%;
    font-style: italic;
    font-weight: normal;
    margin-right: 1em;
}
.nav-floor ul li .item:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 17px;
    height: 16px;
    background: url(../img/common/sprite@2x.png) no-repeat;
    background-size: 254px auto;
    background-position: -18px 0;
    margin-right: 10px;
}
.nav-floor ul li a.item:hover,
.nav-floor ul li .item.active{
    color: var(--blue);
}
.nav-floor ul li a.item:hover:before,
.nav-floor ul li .item.active:before{
    background-position: 0 0;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    .nav-floor .flex{
        flex-wrap: wrap;
    }
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .nav-floor{
        margin: 50px 0;
    }
    .nav-floor .illust{
        width: 50%;
    }
    .nav-floor ul {
        padding-left: 0;
    }
}


/******************************
nav-keytenant
******************************/
.nav-keytenant{
    margin: 50px 0 10px;
    padding: 30px 10%;
    position: relative;
	background: var(--l_gry);
}
.nav-keytenant .page-mdl-ttl{
	text-decoration: underline;
}
.nav-keytenant .flex{
    justify-content: center;
}
.nav-keytenant .flex > div{
	width: 50%;
	text-align: left;
}
.nav-keytenant .ttl{
	display: inline-block;
	font-size: 150%;
    font-weight: bold;
	line-height: 1;
    letter-spacing: .03em;
    margin: 15px 0;
	padding-left: 30px;
	position: relative;
}
.nav-keytenant .ttl:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 21px;
    height: 17px;
    background: url(../img/common/ico-arrow.png) no-repeat;
    background-size: 42px auto;
	background-position: left top;
}
.nav-keytenant .east .ttl{
	padding-left: 0;
	padding-right: 30px;
}
.nav-keytenant .east .ttl:before {
    left: auto;
	right: 0;
	background-position: right top;
}
.nav-keytenant ul{
    text-align: left;
}
.nav-keytenant ul li{
    padding: 0 0 24px 0;
}
.nav-keytenant ul li .item{
    color: #b2b2b2;
    font-size: 120%;
    font-weight: bold;
}
.nav-keytenant ul li .item .itl{
    font-size: 80%;
    font-style: italic;
    font-weight: normal;
    margin-right: 1em;
}
.nav-keytenant ul li .item:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 17px;
    height: 16px;
    background: url(../img/common/sprite@2x.png) no-repeat;
    background-size: 254px auto;
    background-position: -18px 0;
    margin-right: 10px;
}
.nav-keytenant ul li a.item:hover,
.nav-keytenant ul li .item.active{
    color: var(--blue);
}
.nav-keytenant ul li a.item:hover:before,
.nav-keytenant ul li .item.active:before{
    background-position: 0 0;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    .nav-keytenant .flex{
        flex-wrap: wrap;
    }
	.nav-keytenant .flex > div{
		width: 100%;
	}
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.nav-keytenant .wrap-common{
		margin: 0 0 0 auto;
	}
    .nav-keytenant{
        margin: 50px 0;
		padding: 10px;
    }
    .nav-keytenant ul {
        padding-left: 0;
    }
}

/******************************
ページャー
******************************/
.pager{
    font-size: 0;
    text-align: center;
    margin: 80px 0;
}
.pager li{
    font-size: 18px;
    display: inline-block;
    margin: 0 5px;
}
.pager li span,
.pager li a{
    color: #3c3c3c;
    border-radius: 5px;
    border: solid 1px rgba(60,60,60,0.30);
    padding: 6px 10px;
}
.pager li span.active{
    color: #fff;
    background: #437e96;
    border: solid 1px #437e96;
}
.pager li a:hover{
    color: #fff;
	background: #3c3c3c;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .pager{
        margin: 40px 0;
    }
}

/******************************
パンくずリスト
******************************/
.breadcrumb{
    font-size: 80%;
    margin-top: 50px;
    padding: 20px 0;
    text-align: left;
}
.breadcrumb li{
    display: inline-block;
}
.breadcrumb li a{
    font-weight: bold;
    text-decoration: underline;
}
.breadcrumb li:after{
    content: "›";
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px 0 10px;
}
.breadcrumb li:last-child:after{
    display: none;
}
/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
    .breadcrumb{
        margin-top: 0;
    }
    .breadcrumb .wrap-common{
        padding: 0;
    }
}

/******************************
イベント　一覧リスト
******************************/
.block-event{
    padding: 80px 0;
}
.block-event .btn{
    width: 90%;
    margin-bottom: 0;
}

.block-event .sche{
    display: inline-block;
    padding: 6px 10px 4px;
    font-weight: bold;
    font-size: 60%;
    background: var(--gry);
    color: var(--white);
}
.block-event .sche span{
    font-size: 140%;
    line-height: 1.5;
    margin-right: 3px;
}
.block-event .sche .start,
.block-event .sche .end{
    display: block;
}
.block-event .sche .end:before{
    content: "\f0da";
    font-family: FontAwesome;
    font-size: 150%;
    margin: 0 .4em 0 .8em;
}
.block-event .cat{
    font-weight: bold;
}
/*list style*/
.event-list{
    justify-content:center;
    margin-right: -30px;
}
.event-list .item{
    width: 33.333%;
    max-width: 385px;
    margin-bottom: 30px;
    padding-right: 30px;
    position: relative;
}
.event-list .item .sche{
    position: absolute;
    top: -10px;
    left: -15px;
    z-index: 1;
}
.event-list .item a{
	height: 100%;
	font-size: 90%;
	display: flex;
	flex-direction: column;
}
.event-list .item .cat{
    margin: 15px 0 0;
	display: block;
	text-align: left;
    font-family: Arial, "ヒラギノ角ゴ ProN W6","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
}
.event-list .item .cat span{
	margin-right: 1em;
}
.event-list .item .title{
    margin: 15px 0 0;
	flex-grow: 1;
}
.event-list .item .more{
    display: block;
    width: 100%;
    text-align: right;
    font-weight: bold;
    border-bottom: solid 1px #ccc;
    padding: 10px 0;
    position: relative;
    color: var(--blue);
}
.event-list .item .more:before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 33%;
    height: 1px;
    background: var(--blue);
}
.event-list .item .more:after{
    content: "";
    display: inline-block;
    width: 17px;
    height: 16px;
    margin-left: 5px;
    background: url(../img/common/sprite@2x.png) no-repeat;
    background-size: 254px auto;
    background-position: 0 0;
}
/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
    .block-event .sche {
        font-size: 50%;
    }
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	.block-event {
		padding: 20px 0 0;
	}
    .event-list{
        justify-content:normal;
    }
    .event-list .item {
        width: 50%;
        margin-bottom: 50px;
    }
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .block-event {
        padding: 40px 0;
    }
    .block-event .ttl span{
        display: block;
        margin: 0;
    }
    
    .event-list .item {
        width: 100%;
    }
	
	.event-list .item .sche{
		top: -10px;
		left: -10px;
	}
	
	.event-list .item .title{
		margin: 5px 0 0;
	}
}

/*******************************
floorguide Css
*******************************/
.floor-all{
	width: 90%;
	margin: 50px auto 80px;
	justify-content: center;
	align-items: flex-end;
	flex-wrap: nowrap;
}
.floor-all .west{
	max-width: 340px;
}
.floor-all .mid{
	max-width: 117px;
	margin: 0 2px;
}
.floor-all .east{
	max-width: 340px;
}
.floor-all .floor-btn li{
	margin-top: 1px;
}
.floor-all .floor-btn a{
	display: block;
	width: 100%;
	padding: 14px;
	border:solid 1px var(--blue);
	color: var(--blue);
	font-size: 18px;
	font-weight: bold;
	text-align: left;
}
.floor-all .floor-btn a:hover{
	background: var(--blue);
	color: #fff;
}
.floor-all .floor-btn a.none{
	border-color: #E2E2E2;
	background-color: #E2E2E2;
	color: #777777;
}
.floor-all .floor-btn a.none:hover{
	background-color: #E2E2E2;
	color: #777777;
}


/*******************************
ScrollMagic アニメーション
*******************************/
/*フェードイン*/
.js-scroll-fade {
    position: relative;
    opacity: 0;
    transform: translate(0, 100px);
	-webkit-transform:all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
    transition: all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
}
.js-scroll-fade.is-animation {
	opacity: 1;
	transform: translate(0, 0);
}
@-webkit-keyframes fade {
  100% {
	opacity: 1;
  }
}
@keyframes fade {
  100% {
	opacity: 1;
  }
}


/*ダウン フェードイン*/
.js-scroll-fade-down {
    position: relative;
    opacity: 0;
    transform: translate(0, -100px);
	-webkit-transform:all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
    transition: all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
}
.js-scroll-fade-down.is-animation {
	opacity: 1;
	transform: translate(0, 0);
}
@-webkit-keyframes fade {
  100% {
	opacity: 1;
  }
}
@keyframes fade {
  100% {
	opacity: 1;
  }
}


/*左 フェードイン*/
.js-scroll-fade-left {
    opacity: 0;
    z-index: 2;
    transform: translate3d(-200px, 0, -1px);
	-webkit-transform:all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
    transition: all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
}
.js-scroll-fade-left.over {
    z-index: 1;
    transform: translate3d(-200px, 0, -2px);
}
.js-scroll-fade-left.is-animation {
	opacity: 1;
	transform: translate3d(0, 0, -1px);
}
.js-scroll-fade-left.over.is-animation {
	opacity: 1;
	transform: translate3d(0, 0, -2px);
}
@-webkit-keyframes fade {
  100% {
	opacity: 1;
  }
}
@keyframes fade {
  100% {
	opacity: 1;
  }
}


/*右 フェードイン*/
.js-scroll-fade-right {
    opacity: 0;
    z-index: 2;
    transform: translate3d(200px, 0, -1px);
	-webkit-transform:all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
    transition: all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
}
.js-scroll-fade-right.over {
    z-index: 1;
    transform: translate3d(200px, 0, -2px);
}
.js-scroll-fade-right.is-animation {
	opacity: 1;
	transform: translate3d(0, 0, -1px);
}
.js-scroll-fade-right.over.is-animation {
	opacity: 1;
	transform: translate3d(0, 0, -2px);
}
@-webkit-keyframes fade {
  100% {
	opacity: 1;
  }
}
@keyframes fade {
  100% {
	opacity: 1;
  }
}
