@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Bold.woff') format('woff');
  font-weight: 700;
}
@font-face {
  font-family: 'Noto Sans JP';
  src: url('../fonts/NotoSansJP/NotoSansJP-Regular.woff') format('woff');
  font-weight: 400;
}
@font-face {
  font-family: 'Noto Sans JP';
  src: url('../fonts/NotoSansJP/NotoSansJP-Medium.woff') format('woff');
  font-weight: 500;
}
@font-face {
  font-family: 'Noto Sans JP';
  src: url('../fonts/NotoSansJP/NotoSansJP-Bold.woff') format('woff');
  font-weight: 700;
}


body{
  font-family:  'Noto Sans JP', sans-serif;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}


ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

main{
   
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #464646;
  background-image: url(../images/bgimg_entrance.jpg);
  width: 100vw;
  height: 100%;
}

main h1{
  color: #fff;
  font-size: 58px;
  position: absolute;
  bottom: 12%;
  left: 9%;
}
main p{
  color: #fff;
  position: absolute;
  font-size: 20px;
  bottom: 12%;
  left: 9%;
}

.v_screen{
  display: none;
}

/* ナビ */

.nav_container{
  width: 92%;
  min-width: 968px;
  margin: auto;
  position: absolute;
  background-color: inherit;
  display: flex;
  justify-content: space-around;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  align-items: center;
}

.nav_container::before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 20px;
  left: 0;
}

.nav_list ul,
.nav_icon ul{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav_list{
  width: 82%;
}

.nav_list ul{
  gap: 42px;
}

.nav_list ul a{
  text-decoration: none;
}

.nav_icon ul{
  gap: 12px;
}

.logo_pc_header img{
  width: 212px;
}

.nav_list li{
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

.nav_list li:before {
  content: "";
  position: absolute;
  background: #fff;
  top: -6px;
  left: 45%;
  margin-top: -11px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
}


.nav_list .nav_en,
.nav_list .nav_ja{
display: block;
color: #000;
text-align: center;
}

.nav_list .nav_en{
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.nav_list .nav_ja{
    font-size: 12px;
}

.nav_icon ul{
  cursor: pointer;
}

.nav_icon ul img{
  width: 30px;
  height: 30px;
}

.smp_nav_close{
  display: none;
}

@media only screen and (min-width: 899px){


  /* ホーバー時アニメーション */
  .nav_list li:hover:before{
    animation: hoverExpand .3s ease-in normal;
    animation-fill-mode: both;
  }

  @keyframes hoverExpand {
    0% {transform: scale(1,1);}
    100% {transform: scale(2.2,2.2);} 
  }
}

/*------------------
entrance レスポンシブ
------------------*/

.smp_nav{
  display: none;
}


@media only screen and (min-width: 0px) and (max-width:899px) and (orientation: portrait){


  .v_screen{
    display: block;
    position: fixed;
    z-index: 2000;
    top:0;
    height: 100%;
    background-color: #fff;
  }

  .v_screen div{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }

  .v_screen img{
    width: 100vw;
  }

}

.smp_contact_navicon{
  display: none;
}


@media only screen and (min-width: 0px) and (max-width:899px) {

  .smp_nav{
    display: block;
    background-color: #fff;
    padding: 14px 16px;
    position: absolute;
    cursor: pointer;
    z-index: 98;
  }

  .smp_nav img{
    width: 12px;
  }

  .nav_container{
    background-color: rgba(255,255,255,.8);
    width: 100vw;
    min-width: auto;
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    left: -100vw;
    align-items: center;
    z-index: 99;
    transition: 1s;
    justify-content: space-evenly;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
  }

  .nav_container::before{
    content: none;
  }

  .nav_list {
    width: 80%;
  }

  .smp_nav_menu{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-left: 12px;
    color: #000;
  }

  .logo_pc_header{
    display: none;
  }

  .nav_list ul{
    flex-wrap: wrap;
    justify-content: start;
    flex-direction: column;
    gap: 28px;
    height: 230px;
    align-items: baseline;
  }
  .smp_contact_navicon{
    display: flex;
    color: #4d4d4d;
    gap: 6px;
    background: #fff;
    padding: 6px 18px;
    border-radius: 18px;
    margin-top: 20px;
  }
  .smp_contact_navicon img{
    height: 24px;
  }
  .nav_icon{
    display: none;
  }
  .nav_list li:before {
    content: "";
    background: #000;
    border-radius: 0;
    top: 66px;
    left: 0;
    height: 1px;
    width: 176px;
  }

  li.smp_contact_navicon:before {
    content: none;
  }

  .nav_list .nav_en, 
  .nav_list .nav_ja {
    text-align: left;
  }

  /*--- メニューオープン時のCSS　-----*/
  .nav_container_open{
    left: 50%;
    transition: 1s;
  }

  .smp_nav_open{
    display: none;
  }

  .smp_nav_close{
    display: block;
    font-family:  'Noto Sans JP', sans-serif;;
    font-size: 52px;
    width: 100%;
    text-align: right;
    margin-right:30px;
    height: 40px;
  }
  .smp_nav_close span{
    cursor: pointer;
    color: #000;
  }



}



/*-------------------
map.php
--------------------*/

body#map_page{
  height: 100%;
}

#map_page .container{
  width: 100%;
  height: 100%;
  text-align: center;
  margin-bottom: 20px;
}

#map_page .map_img{
  margin: 46px auto;
  text-align: center;
}

#map_page .map_img img{
  width: 474px;
}

#map_page .map_models{
  display: flex;
  flex-wrap: wrap;
  width: 672px;
  margin: auto;
  justify-content: space-between;
  white-space: nowrap
}

#map_page .map_model{
  width: 48%;
  text-align: left;
  border-top: solid 1px #72CDB3;
}
#map_page .map_model.area_2{
  border-top: solid 1px #76A7E3;
}
#map_page .map_model.area_3{
  border-top: solid 1px #AC97E0;
}

#map_page .map_model h2{
  font-size: 16px;
  margin: 2px 0;
}
#map_page .map_model a{
  display: block;
  font-size: 14px;
  color: inherit;
  text-decoration: none;
}
#map_page .map_model a:hover{
  text-decoration: underline;
}

@media not all and (min-width: 799px){
  #map_page .map_models{
    display: block;
    width: 80%;
  }
  #map_page .map_model{
    width: 100%;
    margin-bottom: 32px;
    padding-left: 6px;
  }
}


/*-------------------
reception.php
--------------------*/

#reception_page .container{
  padding-bottom: 6px;
  font-family: 'Noto Sans JP', sans-serif;
}

#reception_page h1{
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  margin: 56px 0 34px;
}

#reception_page h2{
  text-align: center;
  font-size: 16px;
  margin-bottom: 22px;
}

#reception_page p{
  text-align: center;
  font-size: 12px;
}

#reception_page p span{
  display: block;
}

#reception_page .icon_container{
  display: flex;
  justify-content: space-between;
  width: 200px;
  margin: 34px auto;
  align-items: center;
}


#reception_page .commentary_container{
  width: 80%;
  margin: auto;
  color: #fff;
  background-color: #14307E;
  border-radius: 6px;
  padding: 16px 0 30px;
}
#reception_page .comentary_area{
  width: 86%;
  margin-left: auto;
  display: flex;
  justify-content: space-around;
}

#reception_page .commentary_item{
  text-align: center;
  font-size: 12px;
}

#reception_page .commentary_item p{
  margin-bottom: 20px;
  font-family: 'Noto Sans JP', sans-serif;
}

#reception_page .reception_access{
  width: 54%;
  color: #676868;
  font-size: 12px;
  margin: 100px auto;
}

#reception_page .logo_reception{
  margin-bottom: 8px;
}

#reception_page .reception_access span{
  display: block;
  margin-top: 2px;
  font-family: 'Noto Sans JP', sans-serif;
}

#reception_page .access_btn_area a{
  color: #707070;
}

#reception_page .access_btn_area span{
  display: inline-block;
  padding: 8px 30px;
  margin: 14px 16px 0 0;
  border: 1px solid #707070;
  border-radius: 30px;
}

#reception_page .access_btn_area span img{
  margin-left: 12px;
}


#reception_page .reception_img img{
  display : block;
  width : 70%;
  margin : 30px auto 0 auto;
}


/*-------------------
bus.php
--------------------*/

body#bus_page{
  min-height: auto;
  width: 100%;
}

#bus_page .container{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  width: 80%;
  margin: auto;
}

#bus_page .container h1{
  font-size: 20px;
  text-align: center;
  padding: 34px 0 28px;
  margin: 0.67em 0;
}

#bus_page .bus_content_area {
  display: flex;
  justify-content: space-around;
  align-items: top;
  gap: 10px;
  }
  
#bus_page .bus_text {
   width: 60%; 
  }

#bus_page .container h2{
  color: #fff;
  background-color: #2D4E96;
  font-size: 14px;
  padding: 6px 12px;
  margin:32px 0 10px;
}

#bus_page .container p{
  margin-top: 4px;
}

#bus_page .bus_area {
  font-size: 14px;
  margin-bottom: 36px;
}

#bus_page .bus_area span{
  text-decoration: none;
  color: #14307E;
}

#bus_page .bus_area a:hover{
  text-decoration: underline;
}

#bus_page .btn_box button{
  border: none;
  display: inline-block;
  width: 180px;
  height: 56px;
  color: #fff;
  background-color: #2D4E96;
  border-radius: 8px;
  font-size: 14px;
}

#bus_page .bus_text span{
  display: block;
}

#bus_page .bus_img img{
  width: 250px;
}

@media only screen and (min-width: 0px) and (max-width:799px) {
  #bus_page .bus_content_area{
    display: block;
  }

  #bus_page .bus_text{
    width: 100%;
  }
  #bus_page .bus_text p{
    text-align: center;
  }

  #bus_page .bus_area_smp{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
  }

  #bus_page .bus_area {
    margin-bottom: 0;
  }
  #bus_page .bus_img{
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
  }
  #bus_page .bus_img img{
    width: 100%;
  }
}



/*-------------------
parts.html
--------------------*/

#child_page .container{
  width: 400px;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}

#child_page .container  .btn_box,
#child_page .container  .alert{
  padding-top: 50px; 
}

#child_page .container  .btn_box button{
  width: 100%;
  appearance: none;
  color: #fff;
  border: none;
  background-color: #666666;
  padding: 12px 0;
}

#child_page .container .alert a{
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  border: 1px solid #666666;
  text-decoration: none;
  cursor: pointer;
  color: #666666;
}



/* ローディング画面 */

#loading {
  width: 100vw;
  height: 100%;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

#loading > .spinner{
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  position: absolute;
  top : 0;
  left : 0;
}

.spinner:nth-child(1) {
  align-items: start;
  width: 300px;
  height: 300px;
  margin: 200px auto;
  border-radius: 100%;
}

.spinner:nth-child(1) img{
  width: 300px;
  height: 300px;
  border: none;
}
@media only screen and (min-width: 0px) and (max-width:899px) {

  .spinner:nth-child(1) {
    width: 300px;
    height: 300px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 100%;
  }
}

.spinner:nth-child(2){
  align-items: end;
}

.spinner:nth-child(2) img{
  width : 450px;
  margin-bottom : 10px;
}



@media only screen and (max-width:450px) {

  .spinner:nth-child(2) img{
    width : 300px;
  }
}

@media only screen and (max-width:300px) {

  .spinner:nth-child(2) img{
    width : 200px;
  }
}



.loaded {
  opacity: 0;
  visibility: hidden;
}


/* 初期表示動画 */

#video_area{
  position: relative;
  z-index: 1001;
  width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  background-color: #000;
}

#video_area video{
  width: 100%;
  object-fit: cover;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}

.button_videoenter_box{
  position: fixed;
  z-index: 1002;
  bottom: 10%;
  right: 50%;
  transform: translateX(50%);
}

#button_videoenter{
  background-color: rgba(125,125,125,.5);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  padding: 14px 54px;
  border-radius: 12px;
}

#button_videoenter.ended{
  background-color: #14307E;
  transition: 1s;
}



/* フェードインアニメーション */

.ttl_fadein{
  display: none;
  width : 100%;
  position: fixed;
  z-index: 2;
}




/*シーン切り替え時のエフェクト*/
.scean_text_animation{
  position: fixed;
  bottom: 6%;
  left: -300px;
  visibility: hidden;
  z-index: 99;
}

.scean_text_animation h1{
  font-size: 92px;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  text-shadow: 0px 0px 10px #777777;
}

.scean_text_animation p{
  font-size: 36px;
  font-family: 'Noto Sans JP', sans-serif;;
  font-weight: 600;
  margin: 0;
  text-shadow: 0px 0px 10px #777777;
}

@media only screen and (min-width: 0px) and (max-width:899px) {
  .scean_text_animation h1{
    font-size: 66px;
  }  
  .scean_text_animation p{
    font-size: 24px;
  }
}



/* スライドインアニメーション */
.ttl_slidein{
  visibility: visible;
}


/* アラート */
#modalWrap {
	display: none;
	background: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	overflow: hidden;
}

.modalBox {
	position: fixed;
	width: 85%;
	max-width: 420px;
	height: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	overflow: hidden;
	opacity: 1;
	display: none;
	border-radius: 3px;
	z-index: 1000;
}

.modalInner {
	padding: 10px;
	text-align: center;
	box-sizing: border-box;
	background: #666666;
	color: #fff;
}




/*---------------------------
レスポンシブ
---------------------------*/

@media only screen and (min-width: 0px) and (max-width:899px) {

}