@charset "UTF-8";
body{
    color: #282322;
    text-align:center;
    font-size: 18px;
	font-family: 'M PLUS Rounded 1c', Hiragino Kaku Gothic Pro,ヒラギノ角ゴ ProN,Hiragino Kaku Gothic ProN,メイリオ, sans-serif;
    min-width: auto;
    -webkit-text-size-adjust: 100%;
	position: relative;
}

html,body{
    overflow-x: hidden;
}

a{
    text-decoration:none;
    color:#324b82;
	line-height: 1.5;
}
a, a img{
    -webkit-transition: all 300ms 0s ease;
    transition: all 300ms 0s ease;
}
a:hover{
    color: #282322;
}
a:hover img{
    opacity: .6;
}
a:focus, *:focus { outline:none; }


.underline{
    text-decoration: underline;
}

p{
    text-align: left;
    line-height: 2;
}
/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
    body{
        font-size: 16px;
    }
	
}
/*==== mobile スマホ用css ===*/
@media screen and (max-width: 760px){
    body{
        font-size: 14px;
    }
}

/*******************************
CommandCss
*******************************/
#wrap, section{
    position: relative;
	z-index: 0;
}
/*---fontStyle---*/
.bold{ font-weight: bold; }

ruby > rt{
	font-size: 40%;
	ruby-align: center;
	transform: translateY(-0.1em);
	margin-bottom: -0.5em;
}
.txtlink{
	color: #036eb8;
	text-decoration: underline;
}
.txtlink:hover{
	color: #ef8200;
}

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

.f-mincho{
	font-family: 'Noto Serif JP', serif;
}

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

/*---layout---*/
.wrap-common{
    width: 90%;
    max-width: 1520px;
    margin: auto;
}

.pc{ display: block; }/*width 1024pxまで表示*/
.tablet{ display: block; }/*width 768pxまで表示*/
.sp{ display: none; }/*width 768pxから表示*/
.sp_n{ display: block; }/*width 480pxから非表示*/
.sp_n-inline{ display: inline-block;}

.img img{
	width: 100%;
}

.anchor{
	margin-top: -100px;
	padding-top: 100px;
}



/*---Flex---*/
.flex {
 	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

.justify-content-start {
 	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.justify-content-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.justify-content-center {
  	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.justify-content-between {
 	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.justify-content-around {
  	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.flex-nowrap {
	-ms-flex-wrap: nowrap;
  	flex-wrap: nowrap;
}

.flex-wrap-reverse {
 	-ms-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
}

.flex-row {
  	-webkit-box-orient: horizontal;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: row;
  	flex-direction: row;
}

.flex-column {
 	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
}

/* color */
.bgOrange{ background-color: #ffac00;}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
    .wrap-common{
		max-width: 960px;
        margin: 0 auto;
    }
    .pc{ display: none; }

}
/*==== mobile スマホ用css ===*/
@media screen and (max-width: 760px) {
    .tablet{ display: none; }

    /*---Flex---*/
	.flex.col2,
	.flex.col3,
	.flex.col4{
		margin-right: -30px;
	}

	.flex.col2 .item,
	.flex.col3 .item,
	.flex.col4 .item{
		padding-right: 30px;
	}
    .flex.col2 .item,
    .flex.col3 .item,
    .flex.col4 .item{
        width: 100%;
    }
	
	.anchor{
		margin-top: -70px;
		padding-top: 70px;
	}
}
/*==== mobile スマホ縦用css ===*/
@media screen and (max-width: 480px) {
    .sp{ display: block; }
	.sp_n, .sp_n-inline{ display: none; }/*width 480pxから非表示*/
	
	ruby > rt{
	transform: translateY(0.3rem);
	}
}

/*******************************
BtnCss
*******************************/
main{
    position: relative;
    z-index: 1;
}
.btn {
    position: relative;
    display: inline-block;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px) {
}
/*==== mobile スマホ用css ===*/
@media screen and (max-width: 760px) {
}
/*==== mobile スマホ縦用css ===*/
@media screen and (max-width: 480px) {
}



/*******************************
HeaderCss
*******************************/
header {
	position: relative;
    width: 100%;
}
header .navBtn{
	position: fixed;
	top: 30px;
	right: 30px;
	width: 100px;
	cursor: pointer;
	z-index: 99;
}

.gnavi{
	position: fixed;
	top: 0;
	left: 0;
	background-color: #ffac01;
	width: 100%;
	height: 100vh;
	z-index: 90;
	display: none;
}
.gnaviBox{
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 15%;
    height: 100vh;
}
.gnaviBox .inner{
	padding: 10% 0;
}
.navList{
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: -30px;
}
.navList li{
	width: calc( 100% / 3);
	padding-right: 30px;
	margin-bottom: 50px;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px) {
	header .navBtn{
		width: 80px;
	}
	
	.gnaviBox{
		padding: 10%;
	}
	.gnaviBox .inner{
		display: block;
		height: 80%;
		overflow-y: scroll;
    	overflow-x: hidden;
	}
	.navList li {
		width: calc( 100% / 2);
	}
}
/*==== mobile スマホ用css ===*/
@media screen and (max-width: 760px) {
	
	
}
/*==== mobile スマホ縦用css ===*/
@media screen and (max-width: 480px) {
	header .navBtn {
		top: 15px;
    	right: 15px;
		width: 65px;
	}
	.navList li {
		width: 100%;
		margin-bottom: 25px;
	}
}

/*******************************
FooterCss
*******************************/
footer {
    position: relative;
    z-index: 1;
    background-color: #fff;
	padding-bottom: 40px;
}
footer:before{
	content: "";
	background-image: url("../img/common/footerObj.png");
	background-repeat: repeat;
    width: 100%;
    height: 70px;
    position: absolute;
    top: -70px;
    left: 0;
}
footer p{
	line-height: 1.5;
}
footer .logo.city{
    width: 50%;
	max-width: 150px;
    margin: 30px auto;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px) {
}
/*==== mobile スマホ用css ===*/
@media screen and (max-width: 760px) {
}
/*==== mobile スマホ縦用css ===*/
@media screen and (max-width: 480px) {
}


/***ページトップボタン style***/
.btn-totop {
    position: fixed;
    right: 0;
    bottom: -82px;
    z-index: 97;
    width: 82px;
    height: 82px;
    background: #393939;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: all 300ms 0s ease;
    transition: all 300ms 0s ease;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.btn-totop.fixed {
    bottom: 0;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px) {
}
/*==== mobile スマホ用css ===*/
@media screen and (max-width: 760px) {
}
/*==== mobile スマホ縦用css ===*/
@media screen and (max-width: 480px) {
}



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

共通Css

-------------------------------------*/
.pageTop{
	margin-top: 100px;
}
/*区分*/


/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px) {
}
/*==== mobile スマホ用css ===*/
@media screen and (max-width: 760px) {
}
/*==== mobile スマホ縦用css ===*/
@media screen and (max-width: 480px) {
}



/*******************************
Teaser Css
*******************************/
.teaser .pcItem, .teaser .spItem{
	position: relative;
}

.teaser .pcItem .Bg{
	width: 100%;
}
.teaser .movieFlame{
	position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 800px;
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
}
.youtube{
	/*position: relative;
    width: 100%;
    padding-top: 56.25%;*/
	width: 100%;
	aspect-ratio: 16 / 9;
}
.youtube iframe{
	/*position: absolute;
    top: 0;
    left: 0;*/
    width: 100%;
    height: 100%;
}

.teaser .spItem{
	background-image: url("../../14teaser/img/bgImg-sp.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px) {
	.teaser .movieFlame {
		max-width: 450px;
		padding: 20px;
	}
}
/*==== mobile スマホ用css ===*/
@media screen and (max-width: 760px) {
	.teaser .movieFlame {
		max-width: 350px;
	}
}
/*==== mobile スマホ縦用css ===*/
@media screen and (max-width: 480px) {
	.teaser .movieFlame {
		position: relative;
		width: 95%;
	}
	.teaser .title{
		margin-bottom: -10px;
	}
	.teaser .foot{
		position: relative;
		margin-top: -5px;
	}
}


/*******************************
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);
    -webkit-transition: 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;
    -webkit-transform: translate(0, 0);
    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);
    -webkit-transition: 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;
    -webkit-transform: translate(0, 0);
    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);
    -webkit-transition: 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;
    -webkit-transform: translate3d(-200px, 0, -2px);
    transform: translate3d(-200px, 0, -2px);
}

.js-scroll-fade-left.is-animation {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, -1px);
    transform: translate3d(0, 0, -1px);
}

.js-scroll-fade-left.over.is-animation {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, -2px);
    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: translate(0, 80%);
    transition: all 3s;
}

.js-scroll-fade-right.over {
    z-index: 1;
    -webkit-transform: translate3d(200px, 0, -2px);
    transform: translate3d(200px, 0, -2px);
}

.js-scroll-fade-right.is-animation {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, -1px);
    transform: translate3d(0, 0, -1px);
}

.js-scroll-fade-right.over.is-animation {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, -2px);
    transform: translate3d(0, 0, -2px);
}

@-webkit-keyframes fade {
    100% {
        opacity: 1;
    }
}

@keyframes fade {
    100% {
        opacity: 1;
    }
}