@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
}
html{height: 100%;}
body{height: auto;}
section{
    width: 80%;
    margin:0 auto;
    text-align: center;
}
.nav_li {
    list-style: none;
    padding:2rem;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
    color: black;
}
h1{
    text-align: center;
    padding-bottom: 1rem;
    font-size: 3rem;
    color: rgb(53, 28, 10);
}
h2{
    padding: 1rem 0 1rem 0;
    text-align: center;
    background-color: rgb(53, 28, 10);
    color: bisque;
}
.header_nav,.main-nav,.wrapper{
    display: flex;
}
.header_nav{
    justify-content: space-between;
}
.wrapper{
    padding-top: 0 2rem 0 2rem;
    justify-content: space-around;
}
.goshic{
    font-weight: bold;
    font-family: sans-serif;
}
.plsf{
    font-family: 'Philosopher', sans-serif;
}
.txt_middle{
    font-size: 1.5rem;
    padding:0.7rem;
}
.txt_big{
    font-size: 2rem;
    padding-top:1rem;
}
.txt_biggest{
    font-size: 3.5rem;
    padding:0.5rem;
    text-align: center;
}
.txt_cntr{
    text-align: center;
}
.txt_lft{
    text-align: left;
}
/* ------------------------------------------------
    index.html
---------------------------------------------------*/
/* 流れる文字用 */
/* .scrolling-text {
    color: #6e6e6e;
    white-space: nowrap;
    overflow: hidden;
    animation: scrolling 30s linear infinite;
  }
  
  @keyframes scrolling {
    0% {
      transform: translateX(100%);
    }
  
    100% {
      transform: translateX(-100%);
    }
  } */

/* ------------------------------------------------
    biography.html
---------------------------------------------------*/
.band{
    padding-top: 2rem;
    display: flex;
    gap :50px;
    grid-template-columns: repeat(auto-fit,minmax(450px,1fr));
    max-width: 80%;
    margin: auto;
}
.member{
    display: flex;
}
.to_rgt{
    text-align: right;
    padding-right: 10%;
}
.to_lft{
    text-align: left;
    padding-left: 10%;
}
.part1{
    background-image:url(../images/object/drum.png);
    object-fit: contain;
}
.part2{
    background-image:url(../images/object/mic.png);
    object-fit: contain;
}
.part3{
    background-image:url(../images/object/base.png);
    object-fit: contain;
}
.part4{
    background-image:url(../images/object/guiter.png);
    object-fit: contain;
}
.member img{
    width: 70%;
    height: auto;

}
.clr_brwn{
    color: rgb(126, 34, 34);
}

/* ------------------------------------------------
    live.html
---------------------------------------------------*/
.live_tbl{
    padding-left:3rem;
}
th {
    border-bottom: 5px solid black;
    text-align: left;
}
tr,td {
    border-bottom: 4px solid white;
}
td{
    padding:0.7rem 1rem 0.7rem 0;
}
.live_th{
    /*     border: 1px solid; */
    border-bottom: 10px solid black;  
}
.live_td{
    padding-left:2rem;
}
.live_ungrln{
    border-bottom: 10px solid gray; 
}

/* ------------------------------------------------
    discography.html
---------------------------------------------------*/
/*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  /*
  IE11対策
  ----------------------------*/
  _:-ms-lang(x)::-ms-backdrop,
  .d-demo {
    display: -ms-grid;
    overflow: hidden;
  }
  /*----------------------------*/
  
  .d-demo__wrap {
    display: flex;
    overflow: hidden;
  }
  
  .d-demo__list {
    display: flex;
    list-style: none;
  }
  
  .d-demo__list--left{
  animation :infinity-scroll-left 30s infinite linear 0.5s both;
  }
  
  .d-demo__item {
    width: calc(100vw / 6);
  }
  .d-demo__item > img{
     width: 100%;
  }
  
  .d-demo__wrap:hover .d-demo__list--left{
    animation-play-state: paused;
  }
/* --アニメーション対策-- */

#discography {
    display:grid;
    gap:30px;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    max-width:1020px;
    margin:auto;
    padding:30px;
}
.img_gds {
    width:100%;
    aspect-ratio: 4/3;
    object-fit:cover;
}
.swiper-slide{
    position: relative;
    height:20%;
    width: 100%;
}
.text_area{
    background-color: white;
    color:rgb(126, 34, 34);
    position: absolute;
    top:50%;
    left:60%;
    transform:translateY(-50%);
}
.text_area h2{
    font-size: 4rem;  
}
.text_area p{
    font-size: 1.5rem;  
}

/* ------------------------------------------------
    goods.html
---------------------------------------------------*/
#goods {
    display:grid;
    gap:30px;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    max-width:1020px;
    margin:auto;
    padding:30px;
}

.img_gds {
    width:100%;
    aspect-ratio: 4/3;
    object-fit:cover;
}

/* ------------------------------------------------
    contact.html
---------------------------------------------------*/
label{
    font-size: 1.125rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}
input[type="text"],
input[type="email"],
textarea {
    background-color:rgb(218, 252, 241);
    border:1px #fff solid;
    border-radius: 5px;
    padding:10px;
    font-size: 1rem;
}
input[type="text"],
input[type="email"]{
    width: 100%;
    max-width: 240px;
}
select{
    background-color:rgb(218, 252, 241);
    margin-bottom: 0.5rem;
}
textarea{
    width: 100%;
    max-width: 480px;
    height: 6rem;
}
input[type="submit"]{
    margin-top:2rem;
    border-radius: 10px;
    border:green solid;
    background-color: rgb(88, 202, 117);
    cursor:pointer;
    line-height: 2;
}