/* Reset style */
* {
  font-family:  "游ゴシック体", "YuGothic","游ゴシック Medium", "Yu Gothic Medium","メイリオ", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;

  }


body{
    background: #fffff9;
    background-image: url(img/back5.jpg); /* 画像 */
    background-size: cover;               /* 全画面 */
    background-position: center center;
    font-size: 16px;
    line-height: 1.6;
  }
/*==================================================
 メニューボタン
===================================*/


/*==================================================
 ヘッダー
===================================*/

.header_bg {
  color: #fafafa;
  background: #ffffff;
  width: 100%;
  height: 60px;
  position: fixed; /* ウィンドウを基準に画面に固定 */
  top: 0; /* 上下の固定位置を上から0pxにする */
  left: 0; /* 左右の固定位置を左から0pxにする */
  z-index: 1000;
  font-size : 70%;
}

img.titlesene {
  height: 56px;
  margin-right: auto;
  }

 a.titlesene {
    margin-right: auto;
  }

.header_contents {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header_nav_lists {
  display: flex;
  text-align: right;
  color: #104C91;
  z-index: 1000;
}
.header_nav_lists li {
  justify-content: flex-end;
  margin: 0 10px 0 0;
    /* 閉じている状態 */
    border-top: 0 white solid;
    padding-top: 0;
    padding-bottom: 0;
    /* 閉じるアニメーション */
    transition:
      border-top     .3s ease-out,
      padding-top    .3s ease-out,
      padding-bottom .3s ease-out;
}
ul.is-open > li {
  /* 開いている状態 */
  border-top: 1px white solid;
  padding-top: 13px;
  padding-bottom: 13px;
  /* 開くアニメーション */
  transition:
    border-top     .3s ease-out,
    padding-top    .3s ease-out,
    padding-bottom .3s ease-out;
}
ul > li > a {

  /* 閉じるアニメーション */
  transition:}

.nav_link {
  font-size: 30px;
}

/*============================================
 ナビゲーションドロップダウンのためのCSS
  ===================================*/

/*==ナビゲーション全体の設定*/
nav{
	background:#104C91;
	color:#fff;
	text-align: center;
  padding: 0;
  position:relative;
  z-index:999;
}

/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color: #fff;
	padding:20px 35px;
	transition:all .3s;
  border-bottom:1px solid #ccc;
}

nav ul li li a{
	padding:10px 35px;
}


nav ul li a:hover{
	color:#999;	
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
	content:'';
	position: absolute;
	left:15px;
	top:25px;
	width:6px;
	height:6px;
	border-top: 2px solid #999;
  border-right:2px solid #999;
  transform: rotate(135deg);
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:62px;
	z-index: 4;
    /*形状を指定*/
	background:#1F8AC0;
	width:180px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}
/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}
/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #fff;
	border-bottom:solid 1px rgba(255,255,255,0.6);
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:#0d77ac;
}

@media screen and (max-width:750px){
	nav{
		padding: 0;
	}
	
	nav ul{
		display: block;
	}
	
	nav li.has-child ul,
	nav li.has-child ul ul{
  	position: relative;
	left:0;
	top:0;
	width:100%;
	visibility:visible;/*JSで制御するため一旦表示*/
	opacity:1;/*JSで制御するため一旦表示*/
	display: none;/*JSのslidetoggleで表示させるため非表示に*/
	transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}
	
nav ul li a{
	border-bottom:1px solid #ccc;
}

/*矢印の位置と向き*/

nav ul li.has-child::before{
	left:20px;	
}

nav ul ul li.has-child::before{
    transform: rotate(135deg);
	left:20px;
}
    
nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}
nav{
  position:relative;
  z-index:999;
  }

/*==================================================
スライダーのためのcss
===================================*/
.slidercover{
  border-top: 70px solid #1F8AC0;
}
.slider {/*横幅95%で左右に余白を持たせて中央寄せ*/
  width:93%;
  margin:0 auto;
}

.slider img {
  width:70vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
  height:auto;
}

.slider .slick-slide {
transform: scale(0.9);/*左右の画像のサイズを80%に*/
transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
opacity: 0.4;/*透過50%*/
}

.slider .slick-slide.slick-center{
transform: scale(1);/*中央の画像のサイズだけ等倍に*/
opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
  
  position: absolute;/*絶対配置にする*/
  top: 42%;
  outline: none;/*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #104C91;/*矢印の色*/
  border-right: 2px solid #104C91;/*矢印の色*/
  height: 10px;
  width: 10px;
}

.slick-prev {/*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align:center;
margin:20px 0 0 0;
}

.slick-dots li {
  display:inline-block;
margin:0 3px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width:7px;/*ドットボタンのサイズ*/
  height:7px;/*ドットボタンのサイズ*/
  display:block;

  background:rgb(130, 213, 255);/*ドットボタンの色*/
}

.slick-dots .slick-active button{
  background:rgb(0, 8, 255);/*ドットボタンの現在地表示の色*/
}
/*===================
公演
========================*/
h1 {
  font-size: 30px;
  font-weight: bold; }
h2 {
  font-size: 23px;
  font-weight: bold; }
h3 {
  font-size: 25px;
  font-weight: bold; }
h4{
	font-size: 14px;
	font-weight: bold;
	margin: 30px auto 0px;
  }
h5 {
  font-size: clamp(18px,5vw,25px);
  font-weight: bold; 
  white-space: nowrap;
}


.kouen { 
   color: #06182d;
  width: 100%;
  border-style: none;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  transition-duration: 0.5s;
  font-size : 100%;

 }


 .kouen img {
  width: 90%;
  text-align: center;
  cursor: pointer;
  max-width: 180px;
   }

   .pc { display: block !important; }
   .sp { display: block !important; }

   .kouen ul {
    display: flex;
    flex-wrap: wrap;
  }

  .kouen li{
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    display: inline;
  }

  .tokyo{
    font-size: 16px;
    padding:  10px;
    background-color:  #bce2e8;
    background-image: repeating-linear-gradient(135deg, #232f3e, #232f3e 40px, #37475a 40px, #37475a 80px);
    background-size: cover;
    border-radius:30px;
    border-bottom: 10px solid #eec9af;
    background-repeat: no-repeat;
    color: #febd69;;
    text-align: center;
  }
  .tokyo p{
 font-size: 14px;
  }

  .tokyo img:hover {
    opacity: 0.6;
    transition-duration: 0.3s;
  }
  .s { font-size: 16px; }
  .left img {
    width: 60vw;
    max-width: 200px;
     }
  .left img.r {
    width: 70vw;
    max-width: 250px;
     }
  
 .jikai img{
    width: 40vw;
    max-width: 100px;
  }
 .jikai {
	width: 80%;
	margin: 0 auto 0;
	}
 .tokyo a {
	color: #febd69;
	}
  
.tiho{ 
  color: #06182d;
 width: 100%;
 border-style: none;
 text-align: center;
 margin-right: auto;
 margin-left: auto;
 transition-duration: 0.5s;
}


.tiho img {
 width: 35vw;
 max-width: 250px;
 text-align: center;
 
  }
  .tiho ul {
    display: flex;
    flex-wrap: wrap;
  }

  

 .tiho li{
   margin-right: auto;
   margin-left: auto;
   display: inline;
 }

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.clearfix:before {
  content: "";
	display: block;
	clear: both;
}

.clearfix {
	display: block;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
 
.clearfix:before {
 content: "";
	display: block;
	clear: both;
}
 
.clearfix {
	display: block;
}

/*===================
宣伝
========================*/
.senden{ 
  color: #06182d;
  width: 100%;
  border-style: none;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
 }
 
 .senden img {
  width: 70%;
  max-width: 850px;
  text-align: center;
  cursor: pointer;
  margin: 20px;
   }
 
/*===================
ボタン
========================*/
.button1 {
  font-size: 17px;
  text-align: center;
  text-decoration: none;
  margin: 20px auto 20px;
  padding: 1rem 4rem;
  font-weight: bold;
  border: 2px solid #104C91;
  color: #104C91;
  border-radius: 100vh;
  transition: 0.5s;
  padding: 10px;
}

.button1:hover {
  color: #fff;
  background: #104C91;
}
.button2 {
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  margin: 20px;
  padding: 1rem 4rem;
  font-weight: bold;
  border: 2px solid #1F8AC0;
  color: #1F8AC0;
  border-radius: 100vh;
  transition: 0.5s;
  padding: 10px;
}
.button2:hover {
  color: #fff;
  background: #1F8AC0;
}
.button3{
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
overflow: hidden;
  /*ボタンの形状*/
text-decoration: none;
display: inline-block;
  border: 2px solid #104C91;/* ボーダーの色と太さ */
  border-radius: 100vh;
  padding: 10px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/   
  transition: ease .2s;
  background: #104C91;
  font-size: 18px;
  font-weight: bold;
  margin: 20px;
}

/*ボタン内spanの形状*/
.button3 span {
position: relative;
z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
color:rgb(255, 255, 255);
}

.button3:hover span{
color:#104C91;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
content: '';
  /*絶対配置で位置を指定*/
position: absolute;
top: 0;
left: 0;
z-index: 2;
  /*色や形状*/
background:#EFC9AF;/*背景色*/
width: 100%;
height: 100%;
  /*アニメーション*/
transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
transform: scale(0, 1);
transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before{
transform-origin:left top;
transform:scale(1, 1);
}
img.youseijo {
  width: 40%;
  margin: 0 2px 0 2px;
	flex-wrap: wrap;
  }
  hr {
    height: 2px;
    background:  rgb(224, 242, 255);
    background-image: -webkit-linear-gradient(left, rgb(224, 242, 255), rgb(0, 42, 255),rgb(224, 242, 255));
    background-image: -moz-linear-gradient(left, rgb(224, 242, 255), rgb(0, 42, 255),rgb(224, 242, 255));
    background-image: -ms-linear-gradient(left, rgb(224, 242, 255), rgb(0, 42, 255),rgb(224, 242, 255));
    background-image: -o-linear-gradient(left, rgb(224, 242, 255), rgb(0, 42, 255),rgb(224, 242, 255));
  }

/*==================================================
news
===================================*/
p.left { text-align: left;
	padding: 0 15%;
	font-weight: bold;
	}
p.left a{ text-decoration: none;
	color: #333333;
	border-bottom: 1px solid #333333;
	}

div.news{
  background-color: rgba(247, 247, 247, 0.6);
  padding: 7px;
  margin-top: 50px;
}

  news-list{
    list-style: none outside;
    margin: 0;
    padding: 0;
  }
  .news-list .item a{
    display: flex;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    text-decoration: none;
    color: #0f0f15;
    border-bottom: 1px solid #CCC;
    padding: 20px 20px;
    font-weight: 300;
  }
  .news-list .item:first-child a{
    border-top: 1px solid #CCC;
    
    
  }
  .news-list .item .date{
    margin: 0;
    min-width: 120px;
    font-size: 16px;
    color: #272e46;
    padding: 0 20px 0 0;
  }
  .news-list .item .title2{
    margin: 0;
    width: 100%;
  }
  .news-list .item a:hover .title2{
    color: #00F;
  }
  
  @media screen and (max-width: 767px){
  .news-list .item a{
    flex-wrap: wrap;
  }
  .news-list .item .date{
    min-width: 100px;
    
  }
  .news-list .item .title2{
    margin-top: 10px;
  }
  }
  
/*** プライバシーポリシー ***/

.pp2601 {
	background: #ffffff;
	color: #333333;
	font-size: 14px;
	line-height: 1.3em;
	margin: 70px auto;
	padding: 10px;
	width: 90%;
	text-align: center;
	}
.pp2601 div {
	text-align: left;
	}
.pp2601 h1 {
	color: #009999;
	font-size: 24px;
	text-align: center;
	padding: 10px;
	}
.pp2601 h2 {
	color: #990099;
	font-size: 16px;
	border-bottom: solid #990099 1px;
	}
.pp2601 p {
	padding: 5px;
	margin-bottom: 10px;
	}

  /* 装飾 */
   
  *{
    box-sizing: border-box;
  }
  a{
    text-decoration: none;
  }

.syoukai {
  color: rgb(255, 255, 255);
  background-image:url(img/nomonhan2.png);
  background-repeat: no-repeat;
  background-position:100% 100%;
  background-size:cover;
  font-size: 15px;
  padding: 20px;
}
.info {
  border-top: 70px solid #1F8AC0;
  color: rgb(0, 0, 0);
  background-repeat: no-repeat;
  background-position:100% 100%;
  background-size:cover;
  padding: 5px;
  width: 98%;
}
.waku{
  background: #fffff9;
  border-radius:30px;
  border:solid 5px #104C91;
  margin: 10px;
  padding: 10px;
}


.toha {
  background:linear-gradient(transparent 70%, #1F8AC0 0%);
  font-size: 30px;
  }
  

/*==================================================
　5-2-4 MENUがCLOSEに
===================================*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
z-index: 9999;/*ボタンを最前面に*/
	position: relative;
	background:#0048ff;
	cursor: pointer;
    width: 50px;
    height:50px;
    margin: 10px;
	border-radius: 5px;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
	background: #fff;
  	width: 45%;
    
  }


.openbtn span:nth-of-type(1) {
	top:13px;	
}

.openbtn span:nth-of-type(2) {
	top:19px;
}

.openbtn span:nth-of-type(3) {
	top:25px;
}

.openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:5px;
	left:-2px;
	color: #fff;
	font-size: 0.6rem;
	text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
}
/*=====================
 フッター 
 =======================*/

footer{
  font-size: 13px;
  background:#104C91;
  color:#c7e7f3;
  padding: 10px;
  border-top: 20px solid #1F8AC0;
}

footer a {
  color:#c7e7f3;
   }

footer a:hover {
    text-decoration: underline;
	}
img.footer {
  width: 40px;
  margin: 15px;
  }

  .footer05 {
    color: #c7e7f3;
    padding: 5px;
   }
   .footer05 a {
    color: #dfdbff;
    text-decoration: none;
   }
   .footer05 li a:hover {
    text-decoration: underline;
   }
  .footer05 .wrap {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
   }
   .footer05 .wrap h3 {
    font-size: 20px;
    border: none;
   }
   .footer05 .wrap .box {
    width: 100%;
   }
   .footer05 .wrap .box ul {
    border-top: 1px #c4c4c4 solid;
   }
   .footer05 .wrap .box ul li a {
    display: block;
    padding: 5px 15px;
    border-bottom: 1px #c4c4c4 solid;
   }

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
top:0;
  right: -120%;
width:100%;
  height: 100vh;/*ナビの高さ*/
background:#66ADF5;
  /*動き*/
 transition: all 0.6s;
 list-style: none;
 font-size: 15px;
}


/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  
}




/*アコーディオン全体　これはつかってない*/
.accordion-area{
  margin-top: 100px;
  position: relative;
  justify-content: flex-start;
}

.accordion-area li{
  margin: 30px 0;
}

.accordion-area section {
border: 3px solid #ccc;
}



/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
position: fixed;
width: 100%;
height: 100%;
z-index: 999;
text-align:center;
color:#fff;
}

/* Loading画像中央配置　*/
#splash_text {
position: absolute;
top: 50%;
left: 50%;
  z-index: 999;
transform: translate(-50%, -50%);
color: #fff;
width: 100%;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg{
  height: 2px;
}

/*割れる画面のアニメーション*/
.loader_cover {
  width: 100%;
  height: 50%;
  background-color: #333;
  transition: all .2s cubic-bezier(.04, .435, .315, .9);
  transform: scaleY(1);
}
/*上の画面*/
.loader_cover-up {
  transform-origin: center top;
}

/*下の画面*/
.loader_cover-down {
  position: absolute;
  bottom: 0;
  transform-origin: center bottom;
}
/*クラス名がついたらY軸方向に0*/
.coveranime {
  transform: scaleY(0);
}

/*========= ローディング ===============*/
@keyframes fadeOut {
  from {
      opacity: 1;
  }
  
  to {
      display: none;
      opacity: 0;
      z-index: -1;
  }
}

#loaded {
opacity: 0;
visibility: hidden;
}
#loader {
  width: 100%;
  height: 100vh;
  background-color: #003f8e;
  z-index: 10000;
  text-align:center;
  color: #ffffff;
  position: fixed;
  font-size: 2.5em;
  font-weight: 800;
}

#loader.loaded {
  animation: fadeOut 3s forwards;

}

.spinner {
margin: 0 auto;
width: 40px;
height: 40px;
position: relative;
top: 50%;
}

.cube1, .cube2 {
background-color: #ffffff;
width: 15px;
height: 15px;
position: absolute;
top: 0;
left: 0;

-webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
animation: sk-cubemove 1.8s infinite ease-in-out;
}

.cube2 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}

@-webkit-keyframes sk-cubemove {
25% { -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5) }
50% { -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg) }
75% { -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5) }
100% { -webkit-transform: rotate(-360deg) }
}

@keyframes sk-cubemove {
25% { 
  transform: translateX(42px) rotate(-90deg) scale(0.5);
  -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
} 50% { 
  transform: translateX(42px) translateY(42px) rotate(-179deg);
  -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
} 50.1% { 
  transform: translateX(42px) translateY(42px) rotate(-180deg);
  -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
} 75% { 
  transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
} 100% { 
  transform: rotate(-360deg);
  -webkit-transform: rotate(-360deg);
}
}

