@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
         -o-box-sizing: border-box;
            box-sizing: border-box;
}

html{
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
  overflow-y: scroll;
  overflow-x: scroll;

}

@media all and (-ms-high-contrast: none)  {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}
@media all and (-ms-high-contrast: active) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

#emergency{
  position: fixed;
  top: 5%;
  left: 50%;
  z-index: 100;
  background-color:rgba(196,123,93,1.0);
  font-size:2.4vmin;
  padding:2vmin;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing:0.5vmin;
  text-align: left;
  text-shadow:   0.1vmin  0.1vmin 0.1vmin rgba(7,7,7,0.5);
}

#loading {
  transform: translate(-50%, -50%);
  font-weight: bold;
  color: #007;
  background: url("img/bg01.jpg") no-repeat;
  background-size: cover;
  z-index: -101;
}

#loading.disappear{
     display: none;   
}


#youtube-area{
    position: fixed;
    z-index: -100;
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
  opacity: 0;    
}

#youtube-area.appear {
  animation-name:PageAnimeAppear;
  animation-duration:.5s;
  animation-fill-mode:forwards;
}

@keyframes PageAnimeAppear{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
}
}

#youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
  z-index: -100;
}

#youtube-mask{
    position: absolute;
    z-index: -99;
    top:0;
    width:100%;
    height: 100%;
    background-color:rgba(56,123,196,0.3);
    /* background-color:rgba(255,255,255,0.8); */
}

#youtube-provide {
  width: 100vw;
  height: 5vmin;
  margin:0;
  display:block;
  position:fixed;
  bottom:0;
  background-color:rgba(56,123,196,0.0);
  z-index:-98;
  padding-top:0.3vmin;
  padding-right:5vmin;
  font-size:1.6vmin;
  font-weight:400;
  color:rgba(0,255,255,1.0);
  text-align:right;
}


ul {
  list-style: none;
}

li{
  margin:1vmin;
}


a{
  text-decoration:none;
  color: inherit;
}

#header{
  width: 100vw;
  height: 5vh;
  margin:0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  position:fixed;
  top:0;
  background-color:rgba(56,123,196,0.8);
  z-index:999;
}




#g_nav {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  margin-right:2vmin;
}

#g_nav li{
  display:block;
  margin:0.6vmin;
  padding:0.8vmin;
  font-weight:700;
  border-radius: 0.5vmin;
  cursor: pointer;
  letter-spacing:0.2vmin;
  font-family: "M PLUS 1p";;
  font-size:1.6vmin;
  color:rgb(0,255,255);
  text-shadow:  0.01vmin  0.01vmin 0.01vmin rgba(0,0,0,0.7),
                0.01vmin -0.01vmin 0.01vmin rgba(0,0,0,0.7),
               -0.01vmin  0.01vmin 0.01vmin rgba(0,0,0,0.7),
               -0.01vmin -0.01vmin 0.01vmin rgba(0,0,0,0.7),
                0.1vmin  0.1vmin 0.1vmin rgba(0,0,0,0.3);
}

#g_nav li:hover{
  background-color:rgba(0,48,172,0.8);
  color:rgba(255,255,255,1.0);
}

#header.UpMove{
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 0;
  transform: translateY(-5vh);
  }
}

/*　下に下がる動き　*/

#header.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
    transform: translateY(-5vh);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


footer {
  width: 100vw;
  height: 5vh;
  margin:0;
  position:relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  /*flex-wrap: wrap;*/
  align-items: center;
  bottom:0;
  background-color:rgba(56,123,196,0.8);
  font-family: "M PLUS 1p";
  font-size:1.6vmin;
  z-index:998;
}

#footer {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  margin-right:2vmin;
}


.nr{
  white-space: nowrap;
}

/*下のコンテンツ*/
#container{
  position: absolute;
  top:0;
  width:100%;
  z-index: 1;/*一番上に表示*/
  background:rgba(0,0,0,0.0);
  color: #fff;
  padding:0 0;
  text-align: center;
  
}


.page{
  width:100vw;
  min-height:100vh;
  max-width:1280px;
  margin: 0 auto;
  padding: 5vmin 0vw;
  z-index:1;
  text-align: left;
  box-shadow: 0vmin 2vmin 0vmin -1vmin rgba(0, 255,255, 0.6);
  display:flex;
  justify-content: space-around;
}

.page_left{
  width:50vw;
  max-width:680px;
  display:flex;
  flex-direction:column;
  justify-content: flex-start;
  
}

.page_right{
  width:50vw;
  max-width:600px;
  display:flex;
  flex-direction:column;
  justify-content: flex-end;
  
}


#symbol_mark{
  width:25vw;
  min-width:240px;
  margin-top: 7vh;
  font-size: 3.6vmin;
  font-family: 'Noto Serif Japanese','Noto Serif JP';
  letter-spacing:0.5vmin;
  text-align: center;
  text-shadow:   0.1vmin  0.1vmin 0.1vmin rgba(7,7,7,0.5);
}

#ud{
  margin-top:0vmin;
  font-size: 3.2vmin;
  font-weight:600;
  letter-spacing:0.2vmin;
  text-shadow:   0.1vmin  0.1vmin 0.1vmin rgba(7,7,7,0.5);
  align-self:flex-end;
}

.font_ss{
  font-size: 1.2vmin;
}

.ex_link_icon{
  height:2.0vmin;
  /*box-shadow:   0.1vmin  0.1vmin 0.1vmin rgba(7,7,7,0.5);*/
}

.page_title{
  margin-top: 7vh;
  margin-left: 5vmin;
  font-size: 3.8vmin;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing:0.5vmin;
  text-align: left;
  text-shadow:   0.2vmin  0.2vmin 0.2vmin rgba(7,7,7,0.5);
}

.official_link{
  margin-top: 7vmin;
  margin-left: -1vmin;
  font-size: 2.4vmin;
}
.news_topics{
  margin-left: 5vmin;
}

.news_topics_title{
  font-size: 2.8vmin;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing:0.2vmin;
  text-align: left;
  text-shadow:   0.2vmin  0.2vmin 0.2vmin rgba(7,7,7,0.5);
  text-decoration: underline;
}

.news_topics li{
  margin-left: 5vmin;
  font-size: 2.0vmin;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing:0.2vmin;
  text-align: left;
  text-shadow:   0.2vmin  0.2vmin 0.2vmin rgba(7,7,7,0.5);
}

.sns{
  margin-left: 5vmin;
}

.sns_title{
  font-size: 2.8vmin;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing:0.7vmin;
  text-align: left;
  text-shadow:   0.2vmin  0.2vmin 0.2vmin rgba(7,7,7,0.5);
  text-decoration: underline;
}


.sns_box{
  display:flex;
  flex-direction:row;
  justify-content: flex-start;
  margin-left: 5vmin;
  

}
.sns_box li{
  text-align: left;
  text-shadow:   0.2vmin  0.2vmin 0.2vmin rgba(7,7,7,0.5);
}

.sns li a img{
  width:2.4vmin;
}

