@charset "UTF-8";

*{
  /* border: 1px solid blue; */
}
body{
  margin: 0 auto;
  padding: 0 0;
  font-family: "Hina Mincho", serif;
  background-color: #F0F0F0;
  color: #1E1B19;
  font-size: 1.2rem;
  overflow-x: hidden;
  line-height: 1.5;
  letter-spacing: 0.02em;

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

a{
  text-decoration: none; 
  color: #1e1b19;

  &:hover{
  color: #B45C03;
}
}

li{
  list-style: none;
}
img{
  width: 100%;
  /* 画像の下の余白を削除する */
  vertical-align:top;
}

h1, h2{
  font-weight: normal;
}
h1{
  font-size: 5rem;

  @media screen and (max-width: 600px){
    font-size: 3.2rem;
  }
}

h2{
  font-size: 4rem;

  @media screen and (max-width: 600px){
    font-size: 2.5rem;
  }
}
main{
  margin-top: 50px;
}


/*********************************
    container
*********************************/
#container{
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}
.section-container{
  margin-bottom: 150px;

  @media screen and (max-width: 1050px){
    margin-bottom: 100px;
  }

  @media screen and (max-width: 600px){
    margin-bottom: 80px;
  }
}

.player-container{
  /* アンカーリンク時に上に余白+20px */
  padding-top: 70px;
  /* アンカーリンク時に上に余白+20px分を引く */
  margin-top: -20px;
}


/*********************************
    title 共通
*********************************/
.page-title{
  width: 100%;
  max-width: 80%;
  margin: 50px auto;
  padding: 10px 0;
  border-bottom: #1e1b19 1px solid;
  text-align: center;

  @media screen and (max-width: 600px){
    max-width: 100%;
    margin-bottom: 20px;
}
}
.section-index-01{
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 5%;

  @media screen and (max-width: 1050px){
    flex-direction: column;
    align-items: normal;
    gap: 0;
}
}
.section-title{
  width: 30%;

  @media screen and (max-width: 1050px){
    width: 100%;
}
}
.section-index-02{
  margin-bottom: 30px;
}
.section-text-01{
  width: 65%;

  @media screen and (max-width: 1050px){
    width: 100%;
}
}


/*********************************
    ヘッダー
*********************************/
header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: auto;
  background-color: #F0F0F0;
  border-bottom: #1e1b19 1px solid;
}
.sitetitle{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 0 10px;
  margin: 0 auto;
  width: 95%;
  max-width: 1400px;
}
.logo{
  font-size: 1.5rem;
}
.menu ul{
  display: flex;
  gap: 20px;

  @media screen and (max-width: 600px){
    gap: 10px;
}
}
.current{
  color: #B45C03;
}
.line{
  width: 100%;
  height: 0;
  margin: 5px 0;
  border-top: #1e1b19 3px solid;
}


/*********************************
    メインビジュアル
*********************************/
.mainvisual{
  display: flex;
  justify-content:space-between;
  align-items:flex-end;

  @media screen and (max-width: 1050px){
    flex-direction: column-reverse;
    align-items: start;
}
}
.mv-text{
  width: 35%;

  @media screen and (max-width: 1050px){
    width: 100%;
    text-align: center;
}
}
.mv-text p{
  margin: 0.2rem 0 1.2rem 0;
}
.mv-text p br{
  @media screen and  (min-width:600px) and (max-width: 1050px){
    display: none;
}
}

.mv-text-title{
  font-size: 2rem;
  margin-bottom: 10px;
}

.mv-img{
  width: 65%;
  border: 2px solid #1e1b19;

  @media screen and (max-width: 1050px){
    width: 100%;
    margin-bottom: 10px;
}
}


/*********************************
    ニュース
*********************************/
.news{
  /* width: 100%; */
  width: 100vw;
  margin-left:calc(50% - 50vw);
  height: auto;
  padding: 50px 20px;
  text-align: center;
  background-color: #1e1b19;
  color: #F0F0F0;

  @media screen and (max-width: 600px){
    padding: 30px 10px;

  }

  & span{
    /* 折り返しの位置で改行する */
    display: inline-block;
  }

  & h2{
    @media screen and (max-width: 600px){
      font-size: 2.2rem;
    }
  }
}


/*********************************
    カウントダウン
*********************************/
.countdown{
  text-align: center;
}
.countdown-text{
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  font-size: 2rem;
  border-bottom: #1E1B19 1px solid;

  @media screen and (max-width: 600px){
    max-width: 200px;
    font-size: 1.5rem;
  }
}
.timer{
  font-size: 4rem;

  @media screen and (max-width: 600px){
    font-size: 2.5rem;
  }
}
.timer-unit{
  font-size: 2rem;

  @media screen and (max-width: 600px){
    font-size: 1rem;
  }
}


/*********************************
    gallery 共通
*********************************/
.item {
  border: 2px solid #1e1b19;

  &:hover{
  border: 2px solid #b45c03;
}

}

.item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.number{
  font-size: 3rem;
  margin-right: 10px;
  text-shadow: #F0F0F0 0 0 2px;

  @media screen and (max-width: 600px){
      font-size: 2rem;
  }
}
.name{
  font-size: 1.5rem;
  text-shadow: #F0F0F0 0 0 2px;

  @media screen and (max-width: 600px){
    font-size: 1rem;
}
}
.bottom-right{
  position: absolute;
  bottom: 10px;
  right: 20px;

  @media screen and (max-width: 600px){
    bottom: 0;
    right: 10px;
}
}
.bottom-left{
  position: absolute;
  bottom: 10px;
  left: 20px;

  @media screen and (max-width: 600px){
    bottom: 0;
    left: 10px;
}
}
.top-right{
  position: absolute;
  top: 10px;
  right: 20px;

  @media screen and (max-width: 600px){
    top: 0;
    right: 10px;
}
}
.top-left{
  position: absolute;
  top: 10px;
  left: 20px;

  @media screen and (max-width: 600px){
    top: 0;
    left: 10px;
}
}


/*********************************
    gallery 湘北
*********************************/
.gallery-01{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 150px 150px 150px 150px 150px 200px 200px;
  grid-template-areas:
      "a a b b c c"
      "a a b b c c"
      "a a b b e e"
      "d d d d e e"
      "d d d d e e"
      "f f f g g g"
      "h h h h h h";
  gap: 10px;

  @media screen and (max-width: 1050px){

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 200px 200px 150px 150px 150px 150px;
    grid-template-areas:
      "a a b b b"
      "a a c c c"
      "d d d d d"
      "f f f e e"
      "g g g e e"
      "h h h h h";
    gap: 10px;
}
}
.gallery-01 .photo-a{
  grid-area: a;
  position: relative;
}
.gallery-01 .photo-b{
  grid-area: b;
  position: relative;
}
.gallery-01 .photo-c{
  grid-area: c;
  position: relative;
}
.gallery-01 .photo-d{
  grid-area: d;
  position: relative;
}
.gallery-01 .photo-e{
  grid-area: e;
  position: relative;
}
.gallery-01 .photo-f{
  grid-area: f;
  position: relative;
}
.gallery-01 .photo-g{
  grid-area: g;
  position: relative;
}
.gallery-01 .photo-h{
  grid-area: h;
  position: relative;
}


/*********************************
    gallery 山王
*********************************/
.gallery-02{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 150px 150px 150px 150px 150px 200px 200px;
  grid-template-areas:
      "A A B B C C"
      "A A B B C C"
      "E E B B C C"
      "E E D D D D"
      "E E D D D D"
      "F F F G G G"
      "H H H H H H";
  gap: 10px;

  @media screen and (max-width: 1050px){
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 200px 200px 150px 150px 150px 150px;
    grid-template-areas:
      "A A A B B"
      "C C C B B"
      "D D D D D"
      "E E F F F"
      "E E G G G"
      "H H H H H";
    gap: 10px;
}
}
.gallery-02 .photo-A{
  grid-area: A;
  position: relative;
}
.gallery-02 .photo-B{
  grid-area: B;
  position: relative;
}
.gallery-02 .photo-C{
  grid-area: C;
  position: relative;
}
.gallery-02 .photo-D{
  grid-area: D;
  position: relative;
}
.gallery-02 .photo-E{
  grid-area: E;
  position: relative;
}
.gallery-02 .photo-F{
  grid-area: F;
  position: relative;
}
.gallery-02 .photo-G{
  grid-area: G;
  position: relative;
}
.gallery-02 .photo-H{
  grid-area: H;
  position: relative;
}


/*********************************
    グッズ・チケット
*********************************/
.goods-ticket{
  display: flex;

  @media screen and (max-width: 1050px){
    flex-direction: column;
}
}
.goods{
  width: 65%;
  padding-right: 40px;
  border-right: #1e1b19 1px solid;

  @media screen and (max-width: 1050px){
    width: 100%;
    padding-right: 0;
    border-right: none;
}
}

.splide__list li{
  border: #1E1B19 2px solid;
}



.ticket{
  width: 35%;
  padding-left: 40px;
}
.price{
  margin: 50px 0;
}
.price-item{
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;

  & p{
    margin-left: auto;

    & span{
    font-size: 2rem;
    margin-right: 5px;
  }
}
}
.label{
  width: 100%;
  max-width: 150px;
  height: 50px;
  line-height: 50px;
  margin-right: 20px;
  border-top: #1E1B19 1px solid;
  border-bottom: #1E1B19 1px solid;
  text-align: center;
  font-size: 1.2rem;
}


@media screen and (max-width: 1050px){
  .ticket {
    width: 100%;
    padding-left: 0;
  }

  .price p{
    margin-left: 0;
  }

}

@media screen and (max-width: 600px){
  .label{
    margin-right: 0;
    font-size: 1rem;
    height: 30px;
    line-height: 30px;
    max-width: 100px;
  }
}

/*********************************
    リンクボタン 共通
*********************************/
.btn{
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;

  @media screen and (max-width: 600px){
    justify-content: center;
  }
}

.btn-group{
  text-align: center;
  font-size: 0.875rem;

  & button{
  display: block;
  text-decoration: line-through;
  color: #1E1B19;
  width: 100%;
  max-width: 300px;
  margin-top: 20px;
  margin-bottom: 5px;
	padding: 10px 40px;
	border: 1px solid #1e1b19;
	transition: 0.5s;

  &:hover{
    color: #B45C03;
    border: 1px solid #B45C03;
  }
}
}

.btn-text{
  color: #B45C03;
}

.btntextchange{
  font-size: 0.875rem;
  color: #1E1B19;
  width: 100%;
  max-width: 200px;
	padding: 20px;
	border: 1px solid #1e1b19;

 /*テキストの基点とするためrelativeを指定*/
 position: relative;
 text-align: center;
 display: inline-block;
 text-decoration: none;
 outline: none;
 /*アニメーションの指定*/
 transition: all .1s;
}

/******** hoverした際の変化 **********/
.btntextchange:hover{
background: #1e1b19;
color:#F0F0F0;
}

.btntextchange span{
  /*絶対配置でテキストの位置を決める*/
position: absolute;
left: 50%;
top:50%;
  transform:translate(-50%,-50%);
  /*アニメーションの指定*/
  transition: all .2s;
/*ブロック要素にしてテキスト折り返しなし*/ 
display: block;
white-space: nowrap;
}

/******** 差し替わるテキストの設定 **********/
.btntextchange span:nth-child(2){
opacity:0;/*透過0に*/
}

/*hoverするとテキストが入れ替わる設定*/
.btntextchange:hover span:nth-child(1){
opacity:0;/*透過0に*/
}

.btntextchange:hover span:nth-child(2){
opacity:1;/*不透明に*/
}



/*********************************
    フッター
*********************************/
footer{
  width: 100vw;
  margin-left:calc(50% - 50vw);
  text-align: center;
  border-top: #1e1b19 3px solid;
  /* overflow: hidden; */
  font-size: 0.875rem;

  & p{
  padding: 10px;
}
}
.footer-line{
  margin-top: 5px;
  border-bottom: #1e1b19 1px solid;
}


/*********************************
    湘北 山王
*********************************/

.team{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 100%;

  @media screen and (max-width: 600px){
    max-width: 100%;
}
}

.team canvas{
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}

.team br{
  @media screen and (max-width:600px) {
    display: none;
  }
}
.team-rank span{
  font-size: 5rem;
  font-style: italic;
}

.team-rank{
  display: inline-block;
  border-bottom: #1E1B19 1px solid;
  margin-bottom: 20px;
  margin-top: -30px;
}

/******** 各選手の評価 **********/

.parameter table{
  margin: 0 auto;
  border-spacing: 0 10px;
}

.parameter table thead{
  color: #F0F0F0;
  line-height: 2;
  background-color: #1e1b19;
}

.parameter table tbody th{
  text-align: left;
  border-bottom: #1E1B19 1px solid;
  padding: 10px 0;
  /* 改行させない */
  white-space: nowrap;

  @media screen and (max-width:600px) {
    display: block;;
  }
}

.parameter table td{
  padding: 0 0 0 20px;

  @media screen and (max-width:600px) {
    display: block;;
    padding: 0 0 10px 0;
  }
}

/******** 選手紹介 **********/

.player-list{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.player-list li{
  padding: 5px 10px;
  border: #1E1B19 1px solid;
  display: block;

  &:hover{
    border: #b45c03 1px solid;
  }
}

.playerdate{
  display: flex;
  gap: 20px;

  @media screen and (max-width:1050px) {
    flex-direction: column;
    gap: 5px;
  }
}

.playerdate--left{
  width: 30%;

   @media screen and (max-width:1050px) {
    width: 100%;
  }
}
.playerdate--left img{
  width: 100%;
  height: 100%;
  max-height: 800px;
  object-fit: cover;
  border: #1E1B19 solid 2px;

  @media screen and (max-width:1050px) {
    max-width: 100%;
    height: 500px;
  }

  @media screen and (max-width:600px) {
    max-width: 100%;
    height: 250px;
  }
}

.playerdate--right{
  width: 70%;

  @media screen and (max-width:1050px) {
    width: 100%;
  }
}

/******** 名前-プロフィール-背番号 **********/

.playername-profile-number{
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid;
  padding-bottom: 20px;
  gap: 5%;
  /* 数字を下揃えにするための指定 */
  position: relative;
}
.playername-profile-number--left{
  width: 100%;
}

/******** 名前 **********/

.playername{
  margin-bottom: 30px;
}

.position{
  margin-left: 10px;
  padding: 0px 3px;
  border: #1E1B19 1px solid;
  border-radius: 10%;
}

/******** プロフィール **********/

.Profile-container{
  width: 70%;

  @media screen and (max-width:600px) {
    width: 60%;
  }
}

.profile{
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 10%;

  @media screen and (max-width:600px) {
    flex-wrap: wrap;
  }
}

.profile--list{
  width: 100%;

  /* チーム名の改行を防ぐ */
  @media screen and (max-width:1500px) {
    width: 45%;
  }
}
.profile--list:nth-child(3){
  @media screen and (max-width:1500px) {
    width: 100%;
  }

  @media screen and (max-width:600px) {
    margin-top: 20px;
  }
}

.profile--title{
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}

/******** 後ろに線 **********/
.profile--title:after {
  content: "";
  height: 0.5px;
  flex-grow: 1;
  background-color: #1E1B19;
}

.profile--title:after {
  margin-left: 1rem;
}

.profile--date{
  font-size: 1.5rem;
}

/******** 背番号 **********/

.playername-profile-number--right{
  font-size: 10rem;
  opacity: 0.5;
  /* 数字を下揃えにするための指定 */
  position: absolute;
  bottom: -15px;
  right: 0;

  @media screen and (max-width: 600px){
    font-size: 8rem;
}
}

/******** コメント-レーダーチャート **********/

.comment-chart{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;

  @media screen and (max-width:600px) {
    flex-direction: column;
  }
}

.comment-chart .comment{
  width: 60%;

  @media screen and (max-width:600px) {
    width: 100%;
  }
}

.comment--career{
  margin-bottom: 20px;
}

.comment--message--title{
  font-weight: bold;
  display: inline-block;
}

.comment--message--title::before{
  content: "■";
}

.playerdate canvas{
  width: 100%;
  max-width: 350px;
  max-height: 350px;

  @media screen and (max-width:600px) {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }
}

/******** 監督 **********/

.coach{
  display: flex;
  justify-content: space-between;
  background-color: #1E1B19;
  padding: 30px 20px;
  color: #F0F0F0;
  gap: 20px;
  align-items: center;

  @media screen and (max-width:1050px) {
    flex-direction: column-reverse;

  }
}

.coach--text{
  width: 55%;

  @media screen and (max-width:1050px) {
    width: 100%;
  }
}

.coach--text-title br{
  @media screen and (min-width:600px) {
    display: none;
  }
}

.coach--text-comment{
  margin: 1rem 0 2rem 0;
}

.coach--text-name{
  text-align: right;
}

.coach--img{
  width: 45%;

  @media screen and (max-width:1050px) {
    width: 100%;
  }
}

/*********************************
    タイピング
*********************************/

.TextTyping span {
  display: none;
}

/*文字列後ろの線の設定*/
.TextTyping::after {
  content: "|";
  animation: typinganime .8s ease infinite;
}

@keyframes typinganime{
  from{opacity:0}
  to{opacity:1}
}

/*********************************
    404
*********************************/
.text-404{
  text-align: center;
}

.text-404 img{
  /* margin: 0 auto 150px; */
  width: 100%;
  max-width: 600px;
  border: #1E1B19 2px solid;
  margin-top: 50px;

  @media screen and (max-width: 600px){
    margin-top: 30px;
}
}
