@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700');

main{
	color: #102046;
  min-width: 1200px;

}

main .breadcrumbs{
	color: #3c1e00;
}

.en{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
}

.fubox {
  opacity: 0;
}

.fade.fubox {
  transition: opacity .5s ease-out;
}

.fade.fubox.active {
    opacity: 1;
}

.up.fubox.active {
  opacity: 1;
  animation: fadeInup .5s ease-out;
  animation-fill-mode: backwards;
}
@keyframes fadeInup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.fade.delay01 {
  -webkit-transition-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}
.fade.delay02 {
  -webkit-transition-delay: 0.6s !important;
  transition-delay: 0.6s !important;
}
.fade.delay03 {
  -webkit-transition-delay: 0.9s !important;
  transition-delay: 0.9s !important;
}
.fade.delay04 {
  -webkit-transition-delay: 1.2s !important;
  transition-delay: 1.2s !important;
}


.up.delay01 {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.1s !important;
}

.up.delay02 {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.2s !important;
}

.up.delay03 {
  -webkit-animation-delay: 0.9s !important;
  animation-delay: 0.3s !important;
}

.up.delay04 {
  -webkit-animation-delay: 1.2s !important;
  animation-delay: 1.2s !important;
}


.slick-slide{
	height: auto;
}

.slick-dots li button{
	border-radius: 0;
	background-color: transparent;
	border: 1px solid #fff;
}

.slick-dots li.slick-active button{
	background-color: #fff;
}

h2.bar{
	background-color: #121a2e;
	line-height: 100%;
	padding: 10px;
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	letter-spacing: 2px;
}

.flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}


#title{
	background: url('image/bg01.jpg') no-repeat center center;
	background-size: cover;
	padding: 80px 0 60px;
	text-align: center;
}

#title h1{
	margin: 0;
}

#title .visual-bottom{
  position: relative;
}

#title .present{
  position: absolute;
  right: 50%;
  margin-right: -500px;
  top: -50px;
}

#first{
	background: url('image/bg-logo.png') no-repeat center top 180px;
	padding: 80px 0 0;
	text-align: center;
}

#first p{
	font-size: 1.6rem;
	padding: 25px 0 50px;
	color: #0029B2;
  font-weight: bold;
}

#history{
  margin-bottom: 50px;
  overflow: hidden;
}

#history .slide{
  display: flex;
  min-width: 100%;
  width: min-content;
  animation: 30s linear infinite sliderAnimation;

}

#history .slide .box{
  height: 310px;
  width: 550px;
  background: #3486eb;
  margin: 0 20px;
  position: relative;
  border-radius: 8px;
}

@keyframes sliderAnimation {
  100% {
    transform: translateX(-50%);
  }
}

#first .arrow{
  margin-bottom: 20px;
}

#first .bottom{
  margin-bottom: 80px;
}

#first .bottom .layout{
  display: flex;
  align-items: center;
  max-width: 980px;
  margin: 0  auto;
}

#first .bottom .layout .text {
  flex: 1;
  text-align: center;
}

#first .bottom .layout .text p{
  padding: 0 30px;
  color: #0029B2;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-top: 40px;
  font-weight: bold;
}

#first .bottom .layout .text p b{
  background:linear-gradient(transparent 60%, #FFD800 60%);
  color: #E60000;
}

#first .bottom .layout .model{
  width: 299px;
}


#howto{
  position: relative;
  padding: 60px 0;
  background-color: #F0F4FF;
}

#howto h3{
  margin: 0 auto 20px;
  text-align: center;
}

#howto h3 span{
  display: block;
  font-size: 3.3rem;
  color: #0029B2;
  font-weight: bold;
}

#howto .howto-image{
  margin-bottom: 60px;
}

#howto .layout{
  display: flex;
  justify-content: center;
  align-items: center;
}

#howto .layout .box{
  position: relative;
  width: 440px;
  margin: 0 10px;
}

#howto .layout .box a{
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  width: 76%;
}

#present{
  padding: 80px 0;
  background: url('image/present-bg.jpg') no-repeat center center;
  background-size: cover;
}

#present h3{
  margin: 0 auto 20px;
  text-align: center;
}

#present h3 span{
  display: block;
  font-size: 3.3rem;
  color: #fff;
  font-weight: bold;
}

#present .present-text{
  margin-bottom: 50px;
}

#present .present-box{
  position: relative;
  background-color: #fff;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 0;
}

#present .present-box::before{
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  left: 0px;
  top: 0px;
  z-index: -1;
}

#present .present-box::after{
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #E60000;
  left: 6px;
  top: 6px;
  z-index: -2;
}

#present .present-box.box-b::after{
  background-color: #0029B2;
}

#present .present-box .syo{
  width: 120px;
  text-align: center;
}

#present .present-box.box-b .syo{
}

#present .present-box .text{
  text-align: left;
  font-size: 2.0rem; 
  font-weight: bold;
  color: #E60000;;
  padding-left: 30px;
  border-left: 2px solid #E60000;
}

#present .present-box.box-b .text{
  color: #0029B2;
  border-left: 2px solid #0029B2;
}

#present .present-box .text .big{
  font-size: 2.8rem; 
}

#present .present-box .text .anno{
  font-size: 1.3rem; 
}

#present .present-box .image{
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}

#present .present-box .image img{
  width: 150px;
}

#present .annotation{
	font-size: 1.2rem;
	text-align: left;
	padding-top: 0;
	color: #fff;
}

#list{
	background: url('image/player-bg.jpg') no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	text-align: center;
	padding: 80px 0;
}

#list h3{
  margin: 0 auto 20px;
  text-align: center;
}

#list h3 span{
  display: block;
  font-size: 3.3rem;
  color: #0029B2;
  font-weight: bold;
}

#list .info{
  padding: 30px 15px;
}

#list #member-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	width: 1120px;
	margin: 0 auto;
}

#list #member-list .box{
	width: 250px;
	margin: 30px 15px;
}

#list #member-list .box .image{
  position: relative;
  width: 240px;
  z-index: 2;
}

#list #member-list .box .name{
  color: #0029B2;
  font-size: 2.4rem;
  font-weight: bold;
}

#list #member-list .box .name.short span{
  letter-spacing: -2px;
  transform: scaleX(0.9);
  bottom: 27px;
  white-space: nowrap;
  display: block;
}

#list #member-list .box a{
	position: relative;
	display: block;
	width: 240px;
	height: 48px;
	border: 2px solid #0029B2;
	background-color: #fff;
	color: #0029B2;
	text-decoration: none;
	line-height: 48px;
	font-weight: bold;
	font-size: 18px;
	padding-left: 20px;
}
#list #member-list .box a .tw{
	display: inline;
	width: 22px;
	height: 18px;
	fill: #0029B2;
	position: absolute;
	top: 14px;
	left: 20px;
}
#list #member-list .box a:hover{
	background-color: #0029B2;
	color: #fff;
	top: 2px;
	left: 2px;
}
#list #member-list .box a:hover::after{
	display: none;
}
#list #member-list .box a:hover .tw{
	fill: #fff;
}

#list #member-list .box a:hover{
}

#list .annotation{
	font-size: 1.2rem;
	text-align: right;
}


#about{
	padding: 80px 0;
	text-align: center;
	background-color: #FFFDF7;
	color: #0029B2;
}

#about h2{
  color: #0029B2;
  font-size: 2.8rem;
  text-align: center;
}

#about h2 span{
  border-bottom: 2px solid #0029B2;;
  display: inline-block;
  margin-bottom: 1rem;
}

#about p{
	font-size: 22px;
	margin-bottom: 50px;
}

#about p a{
  color: #0029B2;
}

#about #kikan{
	font-size: 34px;
	font-weight: bold;
}

#about #kikan span{
	font-size: 42px;
}

#about .line{
  color: #E60000;
  font-weight: bold;
}

#about .layout{
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

#about .layout .box{
  position: relative;
  width: 484px;
  height: 455px;
  text-align: left;
  margin: 0 15px;
}

#about .layout .box .box-inner{
  padding: 132px 32px 0;
  height: 414px;
}

#about .layout .box1 .box-inner{
  background: url('image/about01.png') no-repeat center top;
  background-size: 100%;
}

#about .layout .box2 .box-inner{
  background: url('image/about02.png') no-repeat center top;
  background-size: 100%;
}

#about .annotation{
	font-size: 16px;
	padding-top: 1rem;
	margin-bottom: 0;
}

#banner{
  position: relative;
	width: 970px;
	margin: 0 auto;
	padding: 50px 0 0;
}

#banner h3{
  margin-bottom: 15px;
  font-size: 2.7rem;
  color: #0029B2;
}


/*--------------------------------------
	Smartphone 
----------------------------------------*/

@media screen and (max-width: 767px) {

main{
  min-width: 0;
}

#title{
	padding: 50px 15px 30px
}

#title .visual-coming{
  padding: 20px 20px 0;
}

#title .present{
  position: relative;
  right: 0;
  margin-right: 0;
  text-align: right;
  top: -30px;
}

#title .present img{
  width: 170px;
}

#first{
	padding: 50px 0 0;
}

#first p{
	font-size: 1.3rem;
}

#first .bottom .layout{
  display: block;
}

#first .bottom .layout .model.sp{
  display: block !important;
  width: 192px;
  margin: 15px auto 0;
}

#first .bottom .layout .text p{
  padding: 0;
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: -0.5px;
}

#history{
	margin-bottom: 40px;
}

#history .slide .box{
 width: 300px;
 height: auto;
 line-height: 0;
}

#first .arrow{
  width: 42px;
  margin: 0 auto;
}

#first .wide{
  font-size: 4vw;
}

#first .wide::before,
#first .wide::after{
  height: 20px;
}

#first .model{
  width: 100%;
  padding: 0 10px;
  margin-bottom:40px;
}

#first .model .annotation{
  font-size: 1.0rem;
}

#howto{
  padding: 40px 20px;
}

#howto h3{
  width: 100%;
}

#howto h3 img{
  height: 10px;
}

#howto h3 span{
  font-size: 2.5rem;
}

#howto .howto-image{
  margin-bottom: 30px;
}

#howto .layout{
  display: block;
  text-align: center;
}

#howto .layout .box{
  width: 312px;
  margin: 0 auto 10px;
}

#present{
  padding: 50px 20px;
}

#present h3 img{
  height: 10px;
}

#present h3 span{
  font-size: 2.5rem;
}

#present .present-text{
  margin-bottom: 30px;
}

#present .present-box{
  display: block;
}

#present .present-box .syou{
  width: 100%;
}

#present .present-box.box-b .text,
#present .present-box .text{
  border: none;
  font-size: 1.5rem;
}

#present .present-box .text .big{
  font-size: 2.6rem;
}

#present .present-box .text .image{
  position: static;
  transform: none;
  text-align: center;
  padding-top: 15px;
}

#present .present-box .text .anno{
	line-height: 1.2;
	display: block;
	margin-top: 1rem;
	font-size: 1.1rem;
}

#present .annotation{
	text-align: left;
	font-size: 1.1rem;
	padding: 10px 0 0;
}

#list{
	padding: 50px 0 0;
}

#list .info{
	padding: 10px 0;
}

#list .inner{
  padding: 0 0 40px 0;
}

#list h2{
	margin-bottom: 0;
}

#list h2 img{
	width: 120px;
}

#list #member-list{
  width: 100%;
}

#list #member-list .box{
	width: 50%;
	padding: 30px 4%;
	margin: 0;
}

#list #member-list .box .image{
  width: 100%;
}

#list #member-list .box .image::after{
  top: 2px;
  left: 2px;
}

#list #member-list .box .name{
  font-size: 1.7rem;
}

#list #member-list .box .name.short span {
  font-size: 1.7rem;
  letter-spacing: -1px;
  transform: scaleX(0.8);
  white-space: nowrap;
  display: block;
}

#list #member-list .box a{
	width: 100%;
	font-size: 3.0vw;
}

#list #member-list .box a::after{
	width: 100%;
	top: 0px;
	left: 2px;
}

#list #member-list .box a .tw{
	left: 10px;
	width: 20px;
	height: 16px;
	top: 15px;
}

#about{
	padding: 50px 0;
}

#about h2{
	width: 85%;
	margin: 0 auto 15px;
	font-size: 1.8rem;
}

#about p{
	font-size: 1.4rem;
}

#about .row{
	margin-bottom: 30px;
}

#about #kikan{
	font-size: 5vw;
}

#about #kikan span{
	font-size: 6.5vw;
}

#about h3{
	font-size: 1.6rem;
	padding: 0 25px;
}

#about h3::before, #about h3::after{
	width: 12px;
	height:12px;
	background-size: 12px;
}

#about .layout{
  display: block;
  padding: 0 20px;
  margin-bottom: 10px;
}

#about .layout .box{
  width: 330px;
  height: auto;
  margin: 0;
}

#about .layout .box .box-inner{
  padding: 80px 32px 10px;
  height: auto;
}

#about .layout .box p.text{
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

#about .layout .box p.annotation{
  text-align: left;
  font-size: 1.0rem;
}


#about .annotation{
	font-size: 1.0rem;
}

#present{
	width: 100%;
}

#banner{
	width: 100%;
	padding: 30px 0 0;
}

#banner::before{
  width: 80%;
}

}