@charset "utf-8";
html {
  font-size: 62.5%;
  height: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {box-sizing: inherit;}
*:focus {outline: none;}
body {
  width: 100%;
  min-width: 1024px;
  min-height: 768px;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-size: 1.0rem;
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
  color: #fff;
  background: #0D1738;
  position: relative;
  line-height: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.h_font{font-family: 'Passion One', cursive;}
.big{font-size: 120%; font-weight: bold;}
@media screen and (max-width: 1024px) {
  body{min-width: inherit;min-height: inherit;}
}

img {
  margin: 0;
  padding: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  vertical-align: middle;
  position: relative;
}

a{
  color: #0019a2;
  transition: all 0.2s ease;
  outline: none;
  text-decoration: none;
}

a:visited {color: #0019a2;}
a:hover {color: #01b8ee;}
a:active {color: #0019a2;}

a:hover img {
  transition: all 0.2s ease;
  opacity: 0.55;
  filter: alpha(opacity=55);
  -ms-filter: "alpha(opacity=55)";
}

ul {list-style: none;}

div {box-sizing: border-box;}

p, li, td, a, label{
  font-size: 1.6rem;
  box-sizing: border-box;
  line-height: 1.4;
}
p{
  line-height: 2;
}
h1{margin: 0;}

h2, h3 {
  font-size: 5rem;
  line-height: 1.4;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  h2, h3 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 320px) {
  p, li, td,a,label{
    font-size: 1.4rem;
  }
  h2, h3 {
    font-size: 1.6rem;
  }
}

.bg-gry{background-color: #f0f0f0;}
.mini{font-size: 80%;}
/*--------------------
ローディング
---------------------*/
#loading {
  width: 100%;
  height: 100%;
  position:fixed;
  overflow: hidden;
  z-index: 9999;
  background: #0D1738;
}
.loading_box{
  width:200px;
  height:60px;
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
}
.circle{
  width:20px;
  height:20px;
  position: absolute;
  border-radius: 50%;
  left:15%;
  transform-origin: 50%;
  animation: circle .5s alternate infinite ease;
}

@keyframes circle{
  0%{
    top:60px;
    height:5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
    background-color: #01b8ee;
  }
  40%{
    height:20px;
    border-radius: 50%;
    transform: scaleX(1);
  }
  100%{
    top:0%;
    background-color: #fde119;
  }
}
.circle:nth-child(2){
  left:45%;
  animation-delay: .2s;
}
.circle:nth-child(3){
  left:auto;
  right:15%;
  animation-delay: .3s;
}
.shadow{
  width:20px;
  height:4px;
  border-radius: 50%;
  background-color: rgba(0,0,0,.5);
  position: absolute;
  top:62px;
  transform-origin: 50%;
  z-index: -1;
  left:15%;
  filter: blur(1px);
  animation: shadow .5s alternate infinite ease;
}

@keyframes shadow{
  0%{
    transform: scaleX(1.5);
  }
  40%{
    transform: scaleX(1);
    opacity: .7;
  }
  100%{
    transform: scaleX(.2);
    opacity: .4;
  }
}
.shadow:nth-child(4){
  left: 45%;
  animation-delay: .2s
}
.shadow:nth-child(5){
  left:auto;
  right:15%;
  animation-delay: .3s;
}
.loading_box span{
  position: absolute;
  top:75px;
  font-family: 'Lato';
  font-size: 20px;
  letter-spacing: 12px;
  left:15%;
}

/*--------------------
tab
---------------------*/
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
}

.tab-label {
  padding: 16px;
  background-color: rgba(253,225,25,.25);
  /*border: 1px solid #fde119;*/
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
}
.tab-label:hover{
  background-color: rgba(253,225,25,.75);
  /*border: 1px solid #fde119;*/
  color: #fff;
}
.tab-label.left{
  border-radius: 30px 0 0 30px;
  margin-left: 5%;
  border-right: 3px solid #060b1c;
}
.tab-label.right{
  border-radius: 0 30px 30px 0;
  margin-right: 5%;
  border-left: 3px solid #060b1c;
}

.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.tab-switch:checked+.tab-label {
  background-color: #fde119;
  /*border: 1px solid #fde119;*/
  color: #0D1738;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  opacity: 1;
  transition: .5s opacity;
  padding: 3% 0 0;
}
.tab-switch {
  display: none;
}


@media screen and (max-width: 480px) {
  .tab-wrap{
    padding: 5% 0 0;
  }
  .tab-switch:checked+.tab-label+.tab-content{
    padding: 8% 0 0;
  }
}


/*-------------------------------
メニュー
--------------------------------*/
.nav-menu{
  position: fixed;
  width: 100%;
  top:0;
  z-index: 999;
}
.nav-menu.head768{
  background: #fde119;
}
.menu {
  width: 100%;
  height: 40px;
}

.menu-list {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.menu-list li {
  margin: 0 15px;
  padding:10px 0;
}

.menu-list a {
  font-weight: bold;
  font-size: 1.4rem;
  display: block;
  color: #0D1738;
}
.menu-list a:hover {
  color: #1FADDD;
}

@media screen and (max-width: 1024px) {
  .menu {height: 50px;}
  
  .menu-list {
    position: absolute;
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
    z-index: -1;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    padding: 70px 0 0;
    overflow-y: auto;
    background: rgba(0, 0, 0, .9);
    text-align: center;
    display: block;
  }

  .menu-list li {
    display: block;
    width: 100%;
    margin: 0;
  }
  .menu-list a {
    display: block;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    color: #fff !important;
    letter-spacing: 4px
  }
  .menu-list a:hover {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  
  .menu-list .sns-icn{
    display: none;
  }
  
  .home-btn, .tw-btn {
    top: 10px;
  }
}

@media screen and (max-width:640px) {
  .menu-list {
    padding: 70px 0 0
  }
}
@media screen and (max-width: 480px) {
  .menu {
    height: 40px;
  }
  
  .menu-list {
    padding: 50px 0 0
  }
  
  .menu-sns{
  position: fixed;
  top:5px;
  right:55px;
  background: #fff;
  width: 40px;
  height: 40px;
  z-index: 999;
  }
}

/*--------------------
t多言語リンク
---------------------*/
.navbar-item{
  position: relative;
  width: 120px;
  text-align: center;
}

.navbar-item::after{
  content: "";
	display: inline-block;
  position: absolute;
  top: 47%;
  right:0;
	transform: translate(0,-50%) rotate(135deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #0D1738;
  border-right: 2px solid #0D1738;
}

.navbar-item ul{
  display: none;
}

.navbar-item:hover ul{
  display: block;
}

.navbar-item ul{
  width: 100%;
  position: absolute;
  top: 30px;
  left: 0;
}
.navbar-item ul li{
  margin: auto;
  padding: inherit;
  display: block;
}
.navbar-item ul li a{
  background-color: rgba(0,0,0,0.8);
  color: #fff;
  display: block;
  padding: 10px;
}
.navbar-item ul li a:hover{
  color: #01b8ee;
}

@media screen and (max-width:1024px) {
  .navbar-item ul{
    display: block;
    align-items: center;
    top:0;
    position: static;
  }
  .navbar-item ul li{
    width: 46%;
    border: 1px solid #fff;
    display: inline-block;
    margin: 0 1.5%;
  }
  .navbar-item ul li a{
    padding: 5% 0;
  }
  
  .navbar-item ul li a,
  .gnav-link{
    border-bottom: none!important;
  }

}

/*-------------------------------
ドロワー
--------------------------------*/
.drawer {
  display: none;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  padding: 10px;
  border-radius: 3%;
  cursor: pointer;
  cursor: hand;
  right: 5px;
  top: 0;
  -webkit-transition: ease .2s;
  transition: ease .2s;
  z-index: 1000;
}
.navbar_toggle {
  z-index: 999;
  width: 100%;
}
.open .nav-i{
  background: #fff;
}
.nav-i {
  position: relative;
  display: block;
  height: 2px;
  width: 100%;
  background: #0D1738;
}
.nav-i:nth-child(1) {
  top: 0;
}
.nav-i:nth-child(2) {
  margin: 8px 0;
}
.nav-i:nth-child(3) {
  top: 0;
}

@media screen and (max-width: 1024px) {
  .drawer {
    display: flex;
  }
}
@media screen and (max-width:640px) {
  .drawer {
    padding: 5px;
    border-radius: 3px;
  }
}
@media screen and (max-width: 480px) {
  .drawer {
    width: 40px;
    height: 40px;
  }
}

/*-OPEN時の動き-*/
.drawer.open .nav-i:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.drawer.open .nav-i:nth-child(2) {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.drawer.open .nav-i:nth-child(3) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}

.menu-list.open {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-overflow-scrolling: touch;
  -webkit-transition: ease .5s;
  transition: ease .5s;
  height: 100vh;
  width: 100%;
  max-width: inherit;
}


/*--------------------
Footer
---------------------*/
footer{
  width: 100%;
  position: relative;
  z-index: 998;
  background: #000;
}

footer .container{
  padding:0;
}


.foot-link{
  max-width: 640px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
}


.foot-link li{
  width: calc(100% / 3);
  border-right: 1px solid #fff;
  text-align: center;
  padding:0 2%;
}

.foot-link li:last-of-type{
  border-right:none
}

@media screen and (max-width: 640px){
  .foot-link{
    flex-wrap:wrap;
  }
	.foot-link li{
    width: calc(100% / 2);
    border-right: 1px solid #fff;
    margin:0 0 24px;
  }
  .foot-link li:nth-of-type(2){
    border-right:none;
  }  
}

.copy-logo{
  max-width: 768px;
  margin: 24px auto;
  display: flex;
  align-items: center;
  justify-content:center;
}
.copy-logo div{
  width: calc(100% / 3);
  padding:0 5%;
}
.copy-logo div:last-of-type{
  width: calc(100% / 4.5);
}

.kenri p{
  text-align: center;
  font-size: 1.2rem;
  line-height: 2;
}

.copy{
  position: relative;
  text-align: center;
  background: #fde119;
  color:#333;
  padding: 5px 0;
  font-size: 1.4rem;
}

@media screen and (max-width: 640px){
  .kenri p{
    text-align:left;
  }
  .copy{
    font-size: 1.0rem;
  }
  .copy:before {
    content:none;
  }
}


/*-------------------------------
Botton
--------------------------------*/
.btn-group{
  display: flex;
  justify-content:center;
}
.btn-group .btn-box{
  width: 29.33%;
  margin: 2%;
}

.btn-box {
  display: flex;
  align-items: center;
  position: relative;
  color: #fff!important;
  border-radius: 60px;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.btn-box span{
  position: relative;
  z-index: 1;
}
.btn-box .icn{
  width: 100%;
  max-width: 60px;
  padding: 15px;
  background: #01b8ee;
  border-radius: 60px;
}

.btn-box.red .icn{
  background: #FF0000;
}

.btn-box .text{
  width: 100%;
}
.btn-box:before,
.btn-box:after{
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 60px;
  position: absolute;
  left:0;
}

.btn-box:before{
  background: #01b8ee;
  display: block;
  transform: translateX(-100%);
  transition: 0.3s ease-in-out;
  z-index: 0;
}

.btn-box.red:before{
  background: #FF0000;
}

.btn-box:after{
  top:0;
  border:2px solid #01b8ee;
}

.btn-box.red:after{
  border:2px solid #FF0000;
}


.btn-box:hover img{opacity: 1;}
.btn-box:hover:before{
  transform: translateX(0%);
}

@media screen and (max-width:640px) {
  .btn-group{
    display: block;
  }
  .btn-group .btn-box{
    width: 80%;
    margin: 0 auto 5%;
  }
  .btn-box:hover:before{
    transform: translateX(-100%);
  }
}

/*--------------------
youtube
---------------------*/
.youtube {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}
.youtube iframe,
.youtube img{
	position: absolute;
	top:0;
  left:0;
	width: 100%;
  height: 100%;
  z-index: 1;
}

.movie_floor{
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,.75));
}

@media screen and (max-width: 640px){
	.youtube {
    width: 92%;
    height: 0;
    overflow: hidden;
		position: absolute!important;
    left:4%;
    top:4%;
    aspect-ratio:auto;
		padding-top: 55.25%; /* 16:9 Aspect Ratio */
	}
  
  .movie_floor{
    padding-top: 55.25%;
  }
  
}