@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+2&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

  /*全てのページに適用*/
  html  * {
    box-sizing: border-box;
  }
  body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #161514;
    color: #fff;
    text-align: center;
    font-size: large;
  }
  .loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(24, 26, 27, 0.9); /* 背景色の設定　変更可能 */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
  .loading-screen img {
  width: 500px;
}
  .hover-ul {
  display: inline-block;
  position: relative;
  color: #0087ca;
}

  .hover-ul:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90.0deg, rgba(52,57,255,1) 0%, rgba(166,31,255,1) 20.0%, rgba(244,53,255,1) 40%, rgba(255,77,242,1) 60%, rgba(255,30,193,1) 80%); /*red green blue alphaの順。 alpha=透明度*/
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

  .hover-ul:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
  .wrapper {
    margin: 0 auto 0 auto;
    max-width: 960px;
  }
  h2 {
    color: #fff;
    font-size: 22px;
    border-bottom: 3px dotted #26b597;
    margin-top: 60px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    text-align: center;
    line-height:0.95em;
    font-weight:bold;
    text-shadow:
      0 0 0.05em #26b597,
      0 0 0.10em #26b597,
      0 0 0.15em #26b597,
      0 0 0.30em #26b597;
    filter: saturate(80%);
  }

  p {
    line-height: 1.6;
  }
  a {
    transition: color 0.4s ease;
    white-space: nowrap;
  }
  a:link {
    color: #fff;
  }
  a:visited {
    color: #fe7575;
  }
  a:hover {
    color: deeppink;
  }
  a:active {
    color: #e94615
  }
  .large {
    font-size : large;
    }
  .honbun{
    font-family: 'M PLUS 2', sans-serif !important;
  }


  /*全てのwebページに適用　ヘッダー*/
  .logo {
    margin: 30px 0 3px 0;
    line-height: 0;
    text-align: center;
    width: 70%;
  }
  .title {
    font-size:5em;
    text-align:center;
    line-height:0.95em;
    font-weight:bold;
    color: #FFF;
    text-shadow:
      0 0 0.05em #26b597,
      0 0 0.10em #26b597,
      0 0 0.15em #26b597,
      0 0 0.30em #26b597;
    filter: saturate(80%);
  }


.nav li {
    display: inline;
    list-style-type: none;
    padding-right: 30px;
  }
  .nav ul {
    margin: 0 0 0 0;
    padding: 20px 10px 15px 20px;
    border-bottom: 3px solid #26b597;
    padding: 10px;
    text-align: center;
  }
  .nav a:link{
    color: #fff;
    text-decoration: none;
  }
  .nav a:visited{
    color: #e2dc30;
    text-decoration: none;
  }
  .nav a:hover{
    color: e4007f;
    text-decoration: none;
  }
  .nav a:active{
    color: e4007f;
    text-decoration: none;
  }

/*お知らせ*/
table{
  margin: auto;
}
th, td{
  padding: 3px 15px;
}

/*SNS*/
.twitter-tweet {
  margin: 0% auto;
  width: 400px !important;
}
.instagram-center {
  margin: 0 auto;
  width: 400px ;
  height: 500px;

}

/*フッター情報*/
.foot-wrap {
    color: #fff;
    text-align: center;
    font-size: medium;
}

.foot-wrap .menu-left, .menu-center, .menu-right {
    display: inline-block;
    width: 20%;
    margin: 50px auto;
}

.foot-wrap ul {
    list-style: none;
    padding: 0;
    line-height:40px;
}

.foot-wrap h3 {
    border-bottom: 3px solid #26b597;
    padding: 10px;
}

.foot-wrap a {
    text-decoration: none;
    color: #fff;
}

.foot-wrap a:hover {
    color: e4007f;
}

.foot-wrap .cmark {
    display: block;
    padding: 10px;
    border-top: 1px solid gray;
    width: 80%;
    margin: 0 auto;
    color: gray;
}
/*端末ごとにレイアウトを変更*/
@media screen and (max-width: 900px) {
    .foot-wrap .menu-left, .menu-center, .menu-right {
        display: flex;
        flex-direction: column;
        width: 50%;
    }
    .foot-wrap .cpr {
        display: inline;
    }
    .loading-screen img {
      width: 300px; /* スマートフォン向けのロード画面のロゴのでかさ */
  }
}
/*アイコン*/
.footer-logo {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.footer-logo li {
  list-style: none;
  margin-left: 10px;
  margin-right: 10px;
}
