@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

html{
    box-sizing: border-box;
    background: #1f1f1f;
}

*,
*:before
*:after{
    box-sizing: inherit;
}
a{
    color:#000;
    text-decoration: none;
}
.container{
    width: 100%;
    padding: 0 0px;
    margin: 0 auto;
}

body {
  font-family: Arial, sans-serif;
  text-align: left;
  margin: 0;
  padding: 0;
}




/*ナビゲーション*/
.area_nav_header{
    margin-left: auto;
}

/*スマホ用メガメニュー*/
@media screen and (max-width: 1100px) {

  /*ヘッダー*/
.header{
  color: #ccc;
  background: #03062b;
}
.header > .container{
  height: 60px;
  display: flex;
  align-items: center;
}

 /*リストナビ*/
.list_nav_header{
  display: flex;
  align-items: center;
  list-style: none;
}
.list_nav_header > li + li{
  margin-left: 10px;
}
.list_nav_header > li + li + li + li + li{
  padding-right: 10px;
}
.list_nav_header a,
.list_nav_header a:link,
.list_nav_header a:visited,
.list_nav_header a:active{
 
  position: relative;
  color: #ccc;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  background: transparent;
}
.list_nav_header a::before{
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fac000;
  z-index: 11;
  opacity: 0;
  -webkit-transform: translate(-50px, 0px);
  transform: translate(-50px, 0px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.list_nav_header a:hover:before,
.list_nav_header a:hover:before{
  opacity: 1;
  -webkit-transform: translate(0px,0px);
  transform: translate(0px,0px);
}

      .list_nav_header { /* メニュー全体のスタイル */
        color: #ccc; /* 文字色 */
        background: #03062b00; /* 背景色 */
        visibility: visible;
        overflow-y: visible;
        text-align: center;
        border-radius: 4px;
      }
      .menu, .menu_mega > li {
        display: inline-block;
      }
      .menu > a { /* 親項目のスタイル */
        font-weight: normal;
        font: 800 5px/6em 'Overpass', sans-serif;
      }
      .menu:hover > a {
        background: #03062b;
        color: #fac000;
        display: block;
      }
      .menu_mega { /* 下層メニューのスタイル */
        width: 80%;
        position: absolute;
        left: 20%;
        padding: 0px;
        background: #131313e7; /* 背景色 */
        visibility: hidden; /* 下層メニューを非表示 */
        content: none;
        z-index: 10;
        font: 800 5px/5em 'Overpass', sans-serif;
  
      }
      .menu_mega a::before {
          content: none;
      }
      .menu:hover .menu_mega { /* 下層メニューのスタイル（親項目ホバー時） */
        visibility: visible; /* 下層メニューを表示 */
      }
      .menu_mega > li > a {
        padding: 0px 0px;
      }
      .menu_mega > li > a:hover {
          background: unset;
          color: rgb(133, 133, 133);
      }
    
 /*ロゴ*/
       .area_logo_header .logo{
           display: block;
       }
       .area_logo_header .logo img{
           height: 60px;
           vertical-align: bottom;
       }
}

  /*　PC用のメガメニュー*/
  @media screen and (min-width: 1100px) {

    /*ヘッダー*/
.header{
  color: #ccc;
  background: #03062b;
}
.header > .container{
  height: 120px;
  display: flex;
  align-items: center;
}

    /*ロゴ*/
.area_logo_header .logo{
  display: block;
}
.area_logo_header .logo img{
  height: 120px;
  vertical-align: bottom;
}

/*リストナビ*/
.list_nav_header{
  display: flex;
  align-items: center;
  list-style: none;
}
.list_nav_header > li + li{
  margin-left: 40px;
}
.list_nav_header a,
.list_nav_header a:link,
.list_nav_header a:visited,
.list_nav_header a:active{
 
  position: relative;
  color: #ccc;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  background: transparent;
}
.list_nav_header a::before{
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fac000;
  z-index: 11;
  opacity: 0;
  -webkit-transform: translate(-50px, 0px);
  transform: translate(-50px, 0px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.list_nav_header a:hover:before,
.list_nav_header a:hover:before{
  opacity: 1;
  -webkit-transform: translate(0px,0px);
  transform: translate(0px,0px);
}

      .list_nav_header { /* メニュー全体のスタイル */
        color: #ccc; /* 文字色 */
        background: #03062b00; /* 背景色 */
        visibility: visible;
        overflow-y: visible;
        text-align: center;
        border-radius: 4px;
      }
      .menu, .menu_mega > li {
        display: inline-block;
      }
      .menu > a { /* 親項目のスタイル */
        font-weight: normal;
        padding: 0 40px;
        font: 800 15px/6em 'Overpass', sans-serif;
      }
      .menu:hover > a {
        background: #03062b;
        color: #fac000;
        display: block;
      }
      .menu_mega { /* 下層メニューのスタイル */
        width: 80%;
        position: absolute;
        left: 20%;
        padding: 0px;
        background: #131313e7; /* 背景色 */
        visibility: hidden; /* 下層メニューを非表示 */
        content: none;
        z-index: 10;
        font: 800 15px/5em 'Overpass', sans-serif;
  
      }
      .menu_mega a::before {
          content: none;
      }
      .menu:hover .menu_mega { /* 下層メニューのスタイル（親項目ホバー時） */
        visibility: visible; /* 下層メニューを表示 */
      }
      .menu_mega > li > a {
        padding: 0px 0px;
      }
      .menu_mega > li > a:hover {
          background: unset;
          color: rgb(133, 133, 133);
      }
    }

.bx-wrapper{
  background-color: transparent!important;
  margin: 0px auto;
  border: none!important;
  box-shadow: none!important;
  width: 100%!important;
}
/*ランキングと日程*/
.split{
  background-size: cover;
  background-position: 0 90%;
  background-image: url(https://images.unsplash.com/photo-1602019197730-4cad21861239?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1480&q=80)!important;
  background-color: #0d103dcb;
  background-blend-mode: darken;
    display: table;
    width: 100%; 
    height: 30%;  
    margin: auto;
}
.split img{
  display: block;
  width: 60%;
  padding: 0 5% 5% 20%;
  border-radius: 4px;
}
.split h2{
    color: #ccc;
    padding: 5% 15% 0 20%;
    font-style: italic;
    font: 600 100%/0em 'Overpass', sans-serif;
}



  /*動画*/
  .video{
    background-size: cover!important;
    background-image: url('https://images.unsplash.com/photo-1510051640316-cee39563ddab?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80')!important;
    background-color: #0d103dcb;
    background-blend-mode: darken;
    margin-top: 5%;
    color: #ccc;
    width: 100%;
    height: 30%;
    aspect-ratio: 16/9;
  }
  .video h2{
    color: #ccc;
    padding: 5% 15% 0 15%;
    font: 600 120%/0 'Overpass', sans-serif;
  }
  .video iframe{
    width: 70%;
    height: 60%;
    display: block;
    margin: 0 auto 0% auto;
  }

  
   /*メンバー*/
   .member{
    background-color: #ccc;
   }

   .member table {
    width: 100%;
   }

  .member tr {
    display: flex;
    justify-content: space-between;
   }

   .member td {
    width: 20%;
    color: #1d2ad8d3;
  }

   .member img {
    width: 80%; /* tdの幅に応じて画像の幅を設定 */
    height: auto; /* アスペクト比を保持 */
}

.container2 {
  position: absolute;
  top: 1700px;
  right: 20px;
  width: 400px;
}




  /*ニュース*/
  .news{
    background-color: #ccc;
    /*margin-top: %;*/
    /*width: 100%;*/
  }
  .news h2{
    color: #03062b;
    padding: 5% 15% 0 10%;
    font: 800 100%/4em 'Overpass', sans-serif;
  }
  .news h4{
    color: #03062b;
    padding: 0 0 0 10%;
    font: 800 80%/4em 'Overpass', sans-serif;
  }
  .news p{
    font: 600 40%/0 'Overpass', sans-serif;
    border-top: inset 1px rgba(51, 51, 51, 0.527) ;
    border-radius: 2px;
    padding: 1% 0 0 5%;
    margin: 0 5% 0 5%;
    color: #252b80d3;
  }
  .news ps{
    font: 600 40%/0 'Overpass', sans-serif;
    padding: 1% 0 0 5%;
    margin: 0 5% 0 5%;
    color: #252b80d3;
  }
  .news p2{
    font: 600 40%/0 'Overpass', sans-serif;
    border-top: inset 5px rgba(51, 51, 51, 0.527) ;
    font: 600 100%/0 'Overpass', sans-serif;
    padding: 1% 0 0 5%;
    margin: 0 5% 0 5%;
    color: #1d2ad8d3;
  }
  .news p3{
    font: 600 40%/0 'Overpass', sans-serif;
    padding: 0;
    margin: 0 ;
    color: #252b80d3;
    text-align: center;
  }
  .news_list{
    list-style-type: none;
    color: rgb(51,51,51);
    padding: 2% 15% 5% 10%;
    font: 500 40%/4em 'Overpass', sans-serif;
  }
  /*ニュースヘッダー*/
   .news_header{
    background-size: cover!important;
    background-image: url('https://images.unsplash.com/photo-1510051640316-cee39563ddab?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80')!important;
    background-color: #0d103dcb;
    background-blend-mode: darken;
    color: #ccc;
    width: 100%;
    margin-bottom: 5%;
    animation: img-wrap 2s cubic-bezier(.4, 0, .2, 1);
  }
  #header.scroll {
    position: fixed;
    background: #EEE;
    animation-name: anime;
    animation-duration: 0.3s;
  }
@keyframes img-wrap{
  0%{
    clip-path: circle(0 at 50% 50%);
  }
  100%{
    clip-path: circle(100% at 50% 50%);
    -webkit-clip-path:circle(100% at 50% 50%)
  }
}
  .news_header h1{
    text-align: center;
    color: #ccc;
    padding: 3% 0 2% 0;
    font: 800 200%/0 'Overpass', sans-serif;
  }
  .news_header h2{
    text-align: center;
    color: #ccc;
    padding: 0 0 3% 0;
    font: 600 100%/0 'Overpass', sans-serif;
  }
  .news_all{
      background: #ccc;
      width:100%;
      list-style-type: none;
      color: rgb(51,51,51);
      font: 500 100%/4em 'Overpass', sans-serif;
  }
  .news_all a{
    display: block;
    padding: 0 auto;
    text-align: center;
  }
  .news_all > a:hover{
    color: rgb(223, 222, 222);
  }
  .news_img {
    padding: 0% 10% 0% 0%;
     display: block;
  }


  /*table*/
  table{
    width: 100%;
    border-collapse:separate;
    border-spacing: 0;
  }
  
  table th:first-child{
    border-radius: 5px 0 0 0;
  }
  
  table th:last-child{
    border-radius: 0 5px 0 0;
    border-right: 1px solid #3c6690;
  }
  
  table th{
    text-align: center;
    color:white;
    background: linear-gradient(#829ebc,#225588);
    border-left: 1px solid #3c6690;
    border-top: 1px solid #3c6690;
    border-bottom: 1px solid #3c6690;
    box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
    width: 25%;
    padding: 10px 0;
  }
  
  table td{
    text-align: center;
    border-left: 1px solid #a8b7c5;
    border-bottom: 1px solid #a8b7c5;
    border-top:none;
    box-shadow: 0px -3px 5px 1px #eee inset;
    width: 25%;
    padding: 10px 0;
  }
  
  table td:last-child{
    border-right: 1px solid #a8b7c5;
  }
  
  table tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
  }
  
  table tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
  }
  

  /*メンバー紹介
  .member li{
      list-style-type: none;
      color: rgb(51,51,51);
      padding: 2% 10% 0% 10%;
      font: 500 80%/4em 'Overpass', sans-serif;
  }
  .member img{
    padding: 2% 2% 0% 10%;
    width: 20%;
  }

   /*施設紹介*/
   .facility li{
    list-style-type: none;
    color: rgb(51,51,51);
    padding: 5% 10% 5% 10%;
    font: 500 80%/4em 'Overpass', sans-serif;
  }
   .facility img{
     padding: 5% 5% 5% 10%;
     width: 20%;
     display: block;
  }

  /*練習試合*/
   .training img{
     padding: 0% 10% 0% 0%;
     width: 20%;
   }
  /*アクセス*/
   .access li{
    list-style-type: none;
    color: rgb(51,51,51);
    padding: 2% 10% 5% 10%;
    font: 500 100%/2em 'Overpass', sans-serif;
  }
   .access img{
     padding: 0% 0% 0% 10%;
     width: 20%;
  }
  .map{
    margin: 5% 0 0% 0;
  }
  


  /*問い合わせフォーム*/
  .contact {
    width: 100%;
    margin: 0 auto;
    padding: 5% 0;
    background: #ccc;
    border-radius: 10px;
    font: 300 100%/2em 'Overpass', sans-serif;
}

.contact-ttl {
    font-weight: bold;
    margin-bottom: 5%;
    text-align: center;
}

.contact-table {
    width: 100%;
    margin-bottom: 5%;
    border: 5% solid #ccc;
}

.contact-item,
.contact-body {
    padding: 1%;
    border: 1px solid #ccc;
}

.contact-item {
    text-align: left;
    width: 30%;
    background-color: #eee;
}

.contact-body {
    width: 80%;
}

.form-text {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    max-width: 15%;
}


.form-textarea {
    width: 100%;
    padding: 0;
    height: 20%;
    border-radius: 5px;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.contact-submit {
    width: 250px;
    background-color: #333;
    color: #fff;
    font-weight: bold;
    display: block;
    margin: 0 auto;
    font-size: 16px;
    padding: 15px;
    border-radius: 100vh;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

  /*フッターデザインPC*/
  #footer04 {
    margin-top: 5%;
    background: #222;
    font: 15px/0 'noto sans japanese',sans-serif;
  }

  #footer04 .cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 0 0 30px;
  }
   
  #footer04 .cont-item {
    display: block;
    width: calc(100% / 5);
  }
   
  #footer04 .nav a {
    display: block;
    color: #ccc;
  }
   
  #footer04 .nav .ttl {
    display: block;
    margin: 30px 0 6px;
    font-size: 20px;
    font-weight: bold;
    color: #ccc;
  }
   
  #footer04 .nav .ttl:first-child {
    margin-top: 0;
  }
   
  #footer04 .nav .ttl + .ttl {
    margin-top: 10px;
  }
   
  #footer04 .nav ul {
    display: block;
    font-size: 15px;
    line-height: 2;
  }
   
  #footer04 .nav li {
    display: block;
    font-size: 12px;
    line-height: 2;
  }

  #footer04 .nav li> a:hover{
    color: rgb(133,133,133);
  }
   
  #footer04 .nav li:first-child {
    margin-top: 0;
  }
   
  #footer04 .nav li ul {
    margin: 0 0 0 2em;
  }
   
  #footer04 .nav li li {
    position: relative;
  }
   
  #footer04 .nav li li:before {
    position: absolute;
    top: 50%;
    left: -10px;
    content: "";
    display: block;
    width: 4px;
    height: 1px;
    background-color: #131313;
  }
   
  #footer04 .company {
    display: block;
    margin-top: 62px;
  }
   
  #footer04 .logo img {
    width: 200px;
    margin-left: -30px;
  }
   
  #footer04 .address {
    display: block;
    font-size: 12px;
    line-height: 2;
    color: #ccc;
  }
  #footer04 .copyright{
      background: #131313;
      color: #ccc;
      padding: 20px;
      font-size: 10px;
      text-align: center;
  }

  /*フッターデザイン*/
  @media screen and (max-width: 850px) {
    #footer04 .cont {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      width: 100%;
      justify-content: space-between;
    }
    #footer04 .cont-item {
      display: block;
      width: 48%;
    }
    #footer04 .cont-item:nth-child(n+3) {
      margin-top: 30px;
    }
    #footer04 .nav ul {
      margin: 0;
      font-size: 10px;
    }
    #footer04 .nav ul + .ttl {
      margin-top: 10px;
    }
    #footer04 .nav li {
      font-size: 10px;
    }
    #footer04 .company {
      margin-top: 30px;
    }
    #footer04 .address {
      font-size: 10px;
    }
  }
  
  

/*トピックに移動*/
.pushcircle{
position: relative;
  /*円の形状*/
width:5%;
height:500%;
  box-sizing: border-box;
  left: 45%;
text-align: center;
background:#ddd;
border-radius:50%;
color: #333;
  text-decoration: none;
  outline: none;
  /*天地中央にテキストを配置*/
  display: flex;
  align-items: center;
  justify-content: center;
}

/*内側の線*/
.pushcircle:after {
content: "";
  /*絶対配置で線の位置を決める*/
position: absolute;
top: 50%;
left: 50%;
  /*線の形状*/
  width: 85%;
height: 85%;
border: 2px solid #ddd;
border-radius: 50%;
transform: translate(-50%, -50%) scale(1.1);
  /*アニメーションの指定*/
  transition: .3s ease; 
}

/*hoverをしたら枠線が小さくなる*/
.pushcircle:hover:after {
transform: translate(-50%, -50%) scale(1);
  border-color:#ddd;
}

.member2{
  
  margin: 10px;
  color: #2b8fd6;
  font-size:20px
}

.member_row {
  display: flex;
  justify-content: space-between;
  margin: 30px;
  background-color: #ccc;
}

.member2 p{
  display: inline-block;
  font-size:20px;
  color: #252b80d3;
}

.box {
  box-shadow: 5px 5px 5px 5px rgba(17, 153, 216, 0.8); /*影の指定*/
  padding:10px;
  }
  .box p {
  margin:0;
  padding:0;
  }

  a:hover {
    color: #00c3ffd3; /* 赤色に変更 */
    text-decoration: underline; /* 下線を表示 */
  }

  .member_row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between items */
  }
  
  