@charset "utf-8";
/* レイアウトのためのCSS */
html{
  height: auto;
}

body{
  background-color: #f1f1f1;
  font-family: 'Noto Sans JP', sans-serif;
	color: #121c3a;
	font-size:1rem;
	line-height:1.85;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
    letter-spacing: 0.2em;
    height: auto;
    width: 100%;
    overflow: hidden;
    position: relative;
	margin: 0 !important;
	padding: 0 !important;
}

ul{
	margin:0;
	padding: 0;
	list-style: none;
}

a{
	text-decoration: none;
    outline: none;
}

*{
    box-sizing: border-box;
}

.oswald{
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}

.flex{
	display: flex;
	justify-content: center;
}

.red{
	color: #d51519;
}

.green{
	color: #326432;
}

.center{
	text-align: center;
}

.orange{
	color: #d51519;
}

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

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

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo svg{
    width: 200px;
}

/*=============== SVGアニメーション内の指定 =================*/

/*アニメーション前の指定*/
#mask path {
		fill-opacity: 0;/*最初は透過0で見えない状態*/
		transition: fill-opacity .5s;/*カラーがつく際のアニメーション0.5秒で変化*/
		fill: none;/*塗りがない状態*/
		stroke: #fff;/*線の色*/
	}

/*アニメーション後に.doneというクラス名がで付与された時の指定*/
#mask.done path{
	  fill: #d51519;/*塗りの色*/
	  fill-opacity: 1;/*透過1で見える状態*/
	  stroke: none;/*線の色なし*/
	}

  /*========= 画面遷移のためのCSS ===============*/

  /*画面遷移アニメーション*/
  .splashbg{
      display: none;
  }


  /*bodyにappearクラスがついたら出現*/
  body.appear .splashbg{
      display: block;
      content: "";
      position:fixed;
  	z-index: 999;
      width: 100%;
      height: 100vh;
      top: 0;
  	left: 0;
      transform: scaleX(0);
      background-color: #121c3a;/*伸びる背景色の設定*/
  	animation-name:PageAnime;
  	animation-duration:1.2s;
  	animation-timing-function:ease-in-out;
  	animation-fill-mode:forwards;
  }

  @keyframes PageAnime{
  	0% {
  		transform-origin:left;
  		transform:scaleX(0);
  	}
  	50% {
  		transform-origin:left;
  		transform:scaleX(1);
  	}
  	50.001% {
  		transform-origin:right;
  	}
  	100% {
  		transform-origin:right;
  		transform:scaleX(0);
  	}
  }

  /*画面遷移の後現れるコンテンツ設定*/
  #container{
  	opacity: 0;/*はじめは透過0に*/
  }

  /*bodyにappearクラスがついたら出現*/
  body.appear #container{
  	animation-name:PageAnimeAppear;
  	animation-duration:1s;
  	animation-delay: 0.8s;
  	animation-fill-mode:forwards;
  	opacity: 0;	  
  }

#header{
	position: absolute;
	  top: 0;
}

  @keyframes PageAnimeAppear{
  	0% {
  	opacity: 0;
  	}
  	100% {
  	opacity: 1;
  }
  }

/*=============== header =================*/
#header{
  background-image: url(../img/header_bg.jpg);
  background-size: cover;
  width: 100vw;
  height: 100vh;
  position: relative;
}

nav{
  position: fixed;
	top: 50px;
  z-index: 999999;
  width: 100%;
  margin: 20px;
}

#g-nav{
  position: fixed;
   left: 0;
   top: 0;
  background-color: #f1f1f1;
  margin: 0;
  padding: 0.2%;
  z-index: 99999;
}

#g-nav ul{
  display: flex;
  justify-content: space-around;
}

#g-nav ul li{
    padding: 10px;
}

#g-nav ul li:last-child{
	border: none;
}

#g-nav ul li a{
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: #121c3a;
  letter-spacing: 0.1em;
  text-align: center;
  display: table-cell;
}

#header-box{
	  position:absolute;
	  top:50%;
	  left:50%;
	  transform:translate(-50%,-50%);
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  gap: 40px;
	  flex-wrap: wrap;
	  width: 100%;
}


/* header box */
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time1{
animation-delay: 6s;
}

.delay-time2{
animation-delay: 7s;
}

.delay-time3{
animation-delay: 8s;
}



/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
	opacity: 0;
}

#img{
	gap: 20px;
	margin-top: 30px;
}

#img p.light{
	font-size: 0.7em;
	letter-spacing: 0.05;
}

#ideal ul li span{
	font-size: 1.3em;
}

/*==================================================
円形文字アニメーション
===================================*/
.container {
  padding: 20px;
  position: fixed;
	bottom: 10px;
	right: 30px;
  z-index: 9999;
}
.block {
  width: 250px;
  height: 250px;
  position: relative;
}

.block p{
	color: red;
	font-weight: bold;
	position: absolute;
	  top: 50%;
      left: 50%;
      transform: translateY(-50%) translateX(-50%);
	font-size: 18px;
}

.circleText {
  overflow: visible!important;
  animation: rotation 18s linear infinite;
  margin: 50px;
}
  #circle {
    fill: none;
  }
  textpath {
    fill: #d51519!important;
    font-size: 13px;
    letter-spacing: 0.04em; 
  }

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*==================================================
スライダーのためのcss
===================================*/
.slider01 img,
.slider02 img{
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider01 .slick-slide,
.slider02 .slick-slide{
    margin:0 5px;/*スライド左右の余白調整*/
}

/*==================================================
about/schedule/recruit
===================================*/
.about{
	background-image: url(../img/logo_bg.png);
	background-size: 100%;
	background-position: center center;
}

#ideal{
	width: 40%;
	margin: 0 auto;
	padding-bottom: 50px;
	border-bottom: 1px solid #121c3a;
	margin-bottom: 50px;
}

#ideal ul li{
	font-weight: bold;
}

#img{
	width: 100%;
	margin-top: 30px;
}

h2 span,
h3 span{
	font-size: 1.5em;
}

#recruit{
	width: 100%;
	margin: 50px auto;
	text-align: center;
}
#recruit p a{
	color: #121c3a;
}

.calendar{
  padding: 40px 0 100px 0;
}

.calendar iframe{
  width: 70%;
  height: 700px;
}


#map-area{
	flex-wrap: wrap;
	gap: 50px;
}

#map,
#address{
	width: 50%;
	margin: 50px 0;
}

/*==================================================
動き自体の指定：「ふわっ」
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}
/*===========================================================*/
/*ふわっと左から現れる */
/*===========================================================*/
.fadeLeft{
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from{
    opacity: 0;
    transform: translateX(-100px);
  }
  to{
    opacity: 1;
    transform: translateX(0);
  }
}




footer{
  width: 100vw;
	background-position: center;
}

#logo-area{
	width: 30%;
}

#logo-area img{
	width: 40%;
}

#logo-area p,
#sponsor-area li{
	color: #fff;
	font-weight: lighter;
}

#sponsor-area{
	gap: 30px;
	flex-wrap: wrap;
	width: 70%;
}

#sponsor-left img{
	width: 70%;
}

/*===========================================================*/
/*pagetop link トップページ*/
/*===========================================================*/

/*スクロールリンクの形状*/
.scroll-top {
	/*表示位置*/
	position: fixed;
	right: 20px;
	bottom: 60px;
	z-index: 2;
	/*はじめは非表示*/
	opacity: 0;
	visibility: hidden; 
	transition: opacity .5s, visibility .5s; /*それぞれに0.5秒の変化のアニメーション*/
	/*縦書き*/
	-webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	/*改行禁止*/
    white-space: nowrap;
	/*矢印の動き*/
	animation: arrowmove 1s ease-in-out infinite;
}

@keyframes arrowmove{
      0%{bottom:20px;}
      50%{bottom:25px;}
     100%{bottom:20px;}
 }


/*.scroll-viewクラスがついたら出現*/
.scroll-top.scroll-view {
	opacity: 1;
	visibility: visible;
}

/*リンク全体の aタグの形状*/
.scroll-top a {
	text-decoration: none;
	color: #666;
	text-transform: uppercase;
	font-size:0.9rem;
    display: block;
}

/*スクロールリンクの形状*/

.js-scroll a::after{
	content:"";
	position: absolute;
	top:0;
	right:0;
	width:1px;
	height: 50px;
	background:#888;
}

.js-scroll a::before {
    content: "";
    position: absolute;
    top: 30px;
    right: -6px;
    width: 1px;
    height: 20px;
    background: #666;
    transform: skewX(-31deg);
}

/*ページトップリンクの形状*/

.js-pagetop a::after{
	content:"";
	position: absolute;
	top:0;
	right:0;
	width:1px;
	height: 50px;
	background:#666;
}

.js-pagetop a::before {
    content: "";
    position: absolute;
    top: 0;
    right: -6px;
    width: 1px;
    height: 20px;
    background: #666;
    transform: skewX(31deg);
}

#copyright{
	color: #fff;
	text-align: center;
}

/*ニュースページ*/
img.title-img{
	width: 80%;
	margin-bottom: 30px;
}

.newslist li{
	padding: 35px 30px;
	border-bottom: 0.5px dotted #3a4860;
}

.newslist li p{
	color: #121c3a;
}

/*スタッフ・選手ページ*/
.list li{
	padding: 20px 30px;
	border-bottom: 0.5px dotted #3a4860;
	display: flex;
	justify-content: flex-start;
	gap: 30px;
	flex-wrap: wrap;
}

.list li:last-child,
.newslist li:last-child{
	border: none;
	margin-bottom: 30px;
}




/*====== 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	right:20%;
	top:150px;
    /*全体の高さ*/
	height:300px;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    /*線の形状*/
	width: 1px;
	height: 50px;
	background: #121c3a;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:90px;
		opacity: 1;
	}
	60%{
		height:180px;
		opacity: 1;
	}
	80%{
		height:240px;
		opacity: 1;
	}
	100%{
		height:0;
		top:300px;
		opacity: 0;
	}
}


/*==================================================
アコーディオンパネル
===================================*/
.accordion-002 {
    max-width: 150px;
    margin-bottom: 7px;
    border: 1px solid #121c3a;
	text-align: right;
	margin-right: 150px;
	margin-left: auto;
}

.accordion-002 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028%2028%22%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20style%3D%22fill%3A%233c3c3c%3B%22%2F%3E%0A%3C%2Fsvg%3E');
    background-position: right calc(2em - 7px) center;
    background-size: 22px;
    background-repeat: no-repeat;
    color: #121c3a;
    font-weight: 600;
    cursor: pointer;
}

.accordion-002 summary::-webkit-details-marker {
    display: none;
}

.accordion-002 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 5px;
    height: 5px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    transition: transform .3s;
}

.accordion-002[open] summary::after {
    transform: rotate(225deg);
}

.accordion-002 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0 2em 1.5em;
    color: #3a4860;
    transition: transform .5s, opacity .5s;
}

.accordion-002 p a{
	color: #3a4860;
}

.accordion-002[open] p {
    transform: none;
    opacity: 1;
}

#qa-area{
	text-align: center;
}

ul.accordion-area{
	margin-top: 50px;
	margin-bottom: 30px;
}

/*===========================================================*/
/*Q&Aアコーディオンパネル*/
/*===========================================================*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

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

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

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

@media screen and (max-width:768px) {
.title {
    font-size:0.9rem;
}
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;

}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);

}
.title::after{
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box1 {
    display: none;/*はじめは非表示*/
    background: #f9f9f9;
	margin:0 3% 3% 3%;
    padding: 3%;
}

.box1 a{
	background-color: #999;
	color: #fff;
	border-radius: 5px;
	padding: 5px;
}
