@charset "UTF-8";
/*******************************
 
沿革ページCss
 
*******************************/

/*----------------------------- 
 共通Css
-----------------------------*/
html, body {
    height: 100%;
    overflow-y: hidden;
    overflow-x: auto;
}
#wrap{
    height: 100%;
}
#wrap:before,
#wrap:after{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
}
#wrap:before{
    background: -moz-linear-gradient(left,  rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0) 75%, rgba(0,0,0,0.2) 100%);
    background: -webkit-linear-gradient(left,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 75%,rgba(0,0,0,0.2) 100%);
    background: linear-gradient(to right,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 75%,rgba(0,0,0,0.2) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33000000', endColorstr='#33000000',GradientType=1 );
}
#wrap:after{
    background: url("../img/bg.png");
}
header, footer, #f-btn-tgl{
    position: fixed;
    z-index: 99;
    width: 100%;
}
header{
    background: #fff;
}
footer,
#f-btn-tgl{
	display: none;
    bottom: 0;
}
footer{
    display: none;
}
#f-btn-tgl{
    z-index: 100;
    width: 100%;
    padding: 7px 0;
    color: #fff;
    background: #000;
    border-top: solid 1px #fff;
}


/*----------------------------- 
 横スクロール 枠 Css
-----------------------------*/
#scrollContent{
	white-space: nowrap;
}
.panel{
	display: inline-block;
	vertical-align: top;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.panel_content{
    height: 100%;
    /*margin-top: 81px;*/
}
.panel .focus{
	height: 75%;
	position: relative;
	white-space: nowrap;
}

#mainNavigation{
    clear: both;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal{
	width: 70%;
	height: 22px;
	margin: auto;
	bottom: 45px;
}
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger{
	width: 20px;
	height: 20px;
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width: 20px;
	height: 20px;
	background: -moz-linear-gradient(left, #48c6bc 0%, #008dba 100%);
    background: -webkit-linear-gradient(left, #48c6bc 0%,#008dba 100%);
    background: linear-gradient(to right, #48c6bc 0%,#008dba 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#48c6bc', endColorstr='#008dba',GradientType=1 );
	box-shadow: 0px 0px 10px 5px rgba(0,141,186,1);
    border: solid 1px #fff;
	animation: flash 2s linear infinite;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    height: 3px;
    margin: 9px 0;
	background-color: #000;
    background-color: rgba(0,0,0,.3);
}

@keyframes flash {
  0%,100% {
    box-shadow: 0px 0px 10px 5px rgba(0,141,186,1);
  }

  50% {
    box-shadow: 0px 0px 10px 5px rgba(0,141,186,0);
  }
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .panel_content{
		/*height: 55%;*/
        /*margin-top: 64px;*/
    }
	.panel .focus{
		height: 70%;
	}
	.mCSB_scrollTools.mCSB_scrollTools_horizontal{
		bottom: 35px;
	}
}

/*----------------------------- 
 左右固定パーツCss
-----------------------------*/
.label-name{
    height: 300px;
    position: absolute;
    top: 0;
        bottom: 99px;
    left: 0;
    z-index: 90;
    margin: auto;
}
.label-name:before{
    content: "";
    position: absolute;
    left: -250px;
    top: 0;
    width: 300px;
    height: 300px;
    background: #000;
    transform: rotate(-45deg);
}
.label-name img{
    position: relative;
    z-index: 1;
    margin: 136px 0 0 10px;
}

.btn-slide{
    width: 100%;
}
.btn-prev,
.btn-next{
    width: 42px;
    height: 84px;
    position: absolute;
    top: 0;
	bottom: 99px;
    z-index: 90;
    margin: auto;
}
.btn-slide.active{
    position: fixed;
}
.btn-prev{
    left: 0;
}
.btn-next{
    right: 0;
}
#sec01 .btn-next{
    z-index: 99;
}
#sec02 .btn-prev.active,
#sec02 .btn-next.active{
	top: 0;
}
.btn-prev:before,
.btn-next:before{
    content: "";
    position: absolute;
    top: 12px;
    width: 60px;
    height: 60px;
    background: -moz-linear-gradient(left, #48c6bc 0%, #008dba 100%);
    background: -webkit-linear-gradient(left, #48c6bc 0%,#008dba 100%);
    background: linear-gradient(to right, #48c6bc 0%,#008dba 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#48c6bc', endColorstr='#008dba',GradientType=1 );
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
	box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.8);
}
.btn-prev:before{
    right: 12px;
}
.btn-next:before{
    left: 12px;
}
.btn-prev i,
.btn-next i{
    position: absolute;
    top: 35px;
}
.btn-prev i{
    left: 12px;
}
.btn-next i{
    right: 12px;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .label-name{
        display: none;
    }
    .btn-prev,
    .btn-next{
		/*position: fixed;
        top: auto;*/
		bottom: 138px;
    }
	#sec02 .btn-prev, #sec02 .btn-next,
	#sec02 .btn-prev.active, #sec02 .btn-next.active {
		top: auto;
	}
}

/*----------------------------- 
 年表帯Css
-----------------------------*/

.block-events{
    color: #fff;
    background: #000;
    padding: 20px 20px 10px;
}
.block-events ul{
    /*justify-content: space-between;*/
	justify-content: flex-start;
}
.block-events li{
    display: inline-block;
}

.block-events li:nth-child(1){padding-left: 130px;}
.block-events li:nth-child(2){padding-left: 20px;}
.block-events li:nth-child(3){padding-left: 20px;}
.block-events li:nth-child(4){padding-left: 20px;}
.block-events li:nth-child(5){padding-left: 20px;}
.block-events li:nth-child(6){padding-left: 230px;}
.block-events li:nth-child(7){padding-left: 950px;}
.block-events li:nth-child(8){padding-left: 1320px;}
.block-events li:nth-child(9){padding-left: 380px;}
.block-events li:nth-child(10){padding-left: 452px;}
.block-events li:nth-child(11){padding-left: 830px;}
.block-events li:nth-child(12){padding-left: 250px;}
.block-events li:nth-child(13){padding-left: 1110px;}
.block-events li:nth-child(14){padding-left: 926px;}
.block-events li:nth-child(15){padding-left: 219px;}
.block-events li:nth-child(16){padding-left: 225px;}
.block-events li:nth-child(17){padding-left: 1662px;}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.block-events li:nth-child(1){padding-left: 260px;}
	.block-events li:nth-child(7){padding-left: 970px;}
	.block-events li:nth-child(8){padding-left: 1358px;}
	.block-events li:nth-child(10){padding-left: 497px;}
	.block-events li:nth-child(13){padding-left: 1220px;}
	.block-events li:nth-child(15){padding-left: 230px;}
	.block-events li:nth-child(16){padding-left: 245px;}
}



/*----------------------------- 
 沿革Css
-----------------------------*/
.block-events{
	width: 100%;
	
}
.panel .focus:before{
    content: "";
    width: 100%;
    height: 3px;
    background: #3cbdbc;
    
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    margin: auto;
}
.panel .focus .inner{
	position: relative;
    display: inline-block;
	white-space: normal;
    width: 375px;
    height: 100%;
    padding: 0 40px;
}

.panel .focus .inner .item{
	max-height: 50%;
	font-size: 12px;
	padding: 0 24px 33px 0;
}

.ico-year{
    width: 66px;
    height: 66px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    font-family: arial;
    padding: 23px 0;
    color: #fff;
    background: -moz-linear-gradient(left, #48c6bc 0%, #008dba 100%);
    background: -webkit-linear-gradient(left, #48c6bc 0%,#008dba 100%);
    background: linear-gradient(to right, #48c6bc 0%,#008dba 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#48c6bc', endColorstr='#008dba',GradientType=1 );
	
	position: absolute;
	top: 30%;
	left: -10px;
	z-index: 1;
	margin: auto;
}
.panel .focus .inner .item p{
	line-height: 1.5;
}
.panel .focus .inner .item.company,
.panel .focus .inner .item.episode,
.panel .focus .inner .item.photo,
.panel .focus .inner .item.lead{
	position: absolute;
}
.panel .focus .inner .item.company{
    bottom: 65%;
}
.panel .focus .inner .item.episode{
    top: 35%;
	padding-top: 40px;
}
.panel .focus .inner .item.episode .photo{
	margin-top: 20px;
	text-align: left;
}
.panel .focus .inner .item.photo{
    padding: 0;
    opacity: .8;
    bottom: 68%;
}
.panel .focus .inner .item.photo.bottom{
    bottom: auto;
    top: 45%;
}
.panel .focus .inner .item.lead{
    bottom: 65%;
    font-size: 20px;
	letter-spacing: .1em;
}
.panel .focus .inner .item.lead span{
    font-size: 28px;
}
.panel .focus .inner .item.lead img{
    max-width: 150px;
}
.panel .focus .inner .item.company h3,
.panel .focus .inner .item.episode .ttl,
.modal-contents .ttl{
	font-size: 18px;
	font-weight: bold;
	text-align: left;
	margin-bottom: 0;
}
.modal-contents .ttl{
	font-size: 24px;
	margin-bottom: 15px;
}
.panel .focus .inner .item.company h3 .blue,
.panel .focus .inner .item.episode .ttl .blue,
.panel .focus .inner .item.episode .comment .blue,
.modal-contents .ttl .blue{
	color: #3cbdbc;
}
.panel .focus .inner .item.episode .ttl.op-0{
	opacity: 0;
}
.modal-contents .ttl .blue{
	font-size: 28px;
}

.panel .focus .inner .item.company:before,
.panel .focus .inner .item.episode:before{
	content: "";
    position: absolute;
    left: -16px;
    width: 8px;
	border-width: 2px;
	border-color: #3cbdbc;
	border-left-style: solid;
}
.panel .focus .inner .item.company:before{
	bottom: 0;
	height: 90%;
	border-top-style: solid;
}
.panel .focus .inner .item.episode:before{
	top: 0;
	height: 54px;
	border-bottom-style: solid;
}
.panel .focus .inner .item.episode.before-none:before{
	display: none;
}
.panel .focus .inner .item.episode .comment.middle{
	font-size: 110%;
	font-weight: bold;
	line-height: 1.8;
}
.marker {
	background: -webkit-linear-gradient(transparent 0%, #ffff66 0%);
	background: -o-linear-gradient(transparent 0%, #ffff66 0%);
	background: linear-gradient(transparent 0%, #ffff66 0%);
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.panel .focus:before {
		top: 30%;
	}
	.panel .focus .inner .item.company h3,
	.panel .focus .inner .item.episode .ttl{
		font-size: 14px;
	}
	.modal-contents .ttl{
		font-size: 18px;
	}
	.modal-contents .ttl .blue{
		font-size: 22px;
	}
	.panel .focus .inner .item.company h3,
	.panel .focus .inner .item.episode .ttl{
		margin-bottom: 5px;
	}
	.ico-year {
		width: 56px;
		height: 56px;
		padding: 19px 0;
		left: -3px;
		top: 25%;
	}
	.panel .focus .inner .item.company {
		bottom: 70%;
	}
	.panel .focus .inner .item.episode {
		padding-top: 32px;
		top: 30%;
	}
	.panel .focus .inner .item.episode:before {
		height: 45px;
	}
	.panel .focus .inner .item.photo {
		width: 50%;
		top: 0;
	}
	.panel .focus .inner .item.photo.bottom {
		top: 40%;
	}
	.panel .focus .inner .item.episode .comment.middle{
		font-size: 87%;
	}
}

/*----------------------------- 
 モーダルCss
-----------------------------*/
.btn-modal{
	max-width: 150px;
    margin: 10px 0;
    padding: 5px;
    display: block;
    background: #2d2d2d;
    color: #fff;
}
.mfp-bg{
    background: #0ea4a2;
    opacity: 0.9;
}
.mfp-auto-cursor .mfp-content{
    max-width: 806px;
    background: #fff;
    border-radius: 5px;
    padding: 50px;
}
.mfp-close-btn-in .mfp-close{
    width: 64px;
    height: 64px;
    right: -20px;
    top: -20px;
    opacity: 1;
    
    color: #fff;
    font-size: 54px;
    background: #313131;
    border-radius: 50%;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	.mfp-auto-cursor .mfp-content {
		width: 90%;
		max-height: 88%;
		padding: 30px;
		overflow-y: scroll;
		overflow-x: hidden;
	}
	.mfp-close-btn-in .mfp-close {
		display: none;
	}
	.mfp-container:after{
		content: "\f00d";
    	font-family: FontAwesome;
		width: 64px;
		height: 64px;
		position: absolute;
		right: 10px;
		top: 10px;
		z-index: 1046;
		opacity: 1;
		color: #fff;
		font-size: 28px;
		background: #313131;
		border-radius: 50%;
		cursor: pointer;
		line-height: 64px;
	}
}


/*----------------------------- 
 sectionPager Css
-----------------------------*/
#subContainer{
    position: absolute;
    bottom: 35px;
    left: 0;
    right: 0;
    margin: auto;
    padding: 15px;
    background: #fff;
}
#mainNavigation{
    position: fixed;
	left: 0;
	right: 0;
    bottom: 50px;
}
#mainNavigation ul li{
    display: inline-block;
}
#mainNavigation ul li a{
    display: inline-block;
    padding: 8px 10px;
    line-height: 1;
    font-size: 18px;
    font-weight: bold;
    font-family: Arial, Helvetica, "sans-serif";
}
#mainNavigation ul li.current a{
    color: #fff;
    background: #3cbdbc;
}

#arrowNavigation .btn-arrow{
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 100;
}


/*----------------------------- 
 #sec01 Css
-----------------------------*/
#sec01{
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: url("../img/logo.png") no-repeat;
    background-position: center 20%;
    background-size: 20%;
}
#sec01:before{
    display: none;
}
#sec01 h2{
    position: absolute;
    left: 0;
}

#sec01 .txt{
    width: 100%;
    position: absolute;
    top: 30%;
}

#sec01 .lead,
#sec01 p{
    position: relative;
    z-index: 1;
}
#sec01 .lead{
    font-size: 36px;
    font-weight: bold;
    letter-spacing: .02em;
	line-height: 1.8;
    margin-bottom: 20px;
}
#sec01 .lead span{
	font-size: 48px;
}
#sec01 p{
    text-align: center;
}
#sec01 .img{
	position: absolute;
    top: 0;
    bottom: 80px;
    width: 100%;
    height: 100%;
	max-width: 1980px;
	max-height: 790px;
	margin: auto;
}
#sec01 .img img{
    position: absolute;
	max-width: 315px;
    width: 20%;
}
#sec01 .img img:nth-of-type(1){
    top: 5%;
    left: 18%;
}
#sec01 .img img:nth-of-type(2){
    top: 0;
    bottom: 0;
    left: 12%;
    margin: auto;
}
#sec01 .img img:nth-of-type(3){
    bottom: 5%;
    left: 18%;
}
#sec01 .img img:nth-of-type(4){
    top: 5%;
    right: 18%;
}
#sec01 .img img:nth-of-type(5){
    top: 0;
    bottom: 0;
    right: 12%;
    margin: auto;
}
#sec01 .img img:nth-of-type(6){
    bottom: 5%;
    right: 18%;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	#sec01 .img{
		max-height: 450px;
		margin: 25% auto;
	}
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    #sec01{
        background-size: 50%;
		background-position: center 10px;
    }
	#sec01 .txt {
		position: static;
		margin-top: 50px;
	}
	#sec01 .txt .bold{
		line-height: 2.2;
		white-space: normal;
		padding: 10px 43px;
		text-align: left;
	}
    #sec01 .lead {
        font-size: 28px;
		margin-bottom: 0;
    }
	#sec01 .lead span{
		font-size: 40px;
	}
    #sec01 .lead img{
        max-width: 150px;
    }
    #sec01 .img {
		position: static;
		margin: auto;
    }
    #sec01 .img img {
        position: static;
        max-width: 25%;
    }
}