@charset "UTF-8";
/*====================
スマホを基本設計にする
 - 〜479px：スマートフォン縦
 - 480px〜599px：スマートフォン横
 - 600px〜959px：タブレット
 - 960px〜1279px：小型PC
 - 1280px〜：大型PC
====================*/

html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  color: #24292e;
  font-family: "Sawarabi Gothic";
}
a {
  text-decoration: none;
  color: inherit;
}
p {
  font-size: 1.3rem;
}
img {
  max-width: 100%; /* スマホサイズでも画像が縮小される。 */
}
li {
  list-style: none;
  font-size: 1.2rem;
}

/* wrapperは共通 */
.wrapper {
  max-width: 960px;
  margin: 0 auto 50px auto;
  font-size: 0.9rem; /* root em 最上位階層のHTML要素であるHTMLの文字サイズを基準とした相対値。HTMLの文字サイズを変更することで全体の文字サイズも変更できる */
  padding: 0 4%;
}
.site-title {
  line-height: 1px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight:600;
  font-size: 2.4rem;
}
.site-title a {
  display: block;
  color:#6b3f31;
}
.sec-title {
  font-size: 1.5rem;
  color: #6f5436;
  text-align: center;
  padding-top: 110px;
  margin-bottom: 65px;
}
.subp-sec-title {
  font-size: 1.5rem;
  color: #6f5436;
  text-align: center;
  padding-top: 30px;
  margin-bottom: 30px;
}
.subp-sub-title{
  font-size: 1rem;
  display:block;
}
/*----------------------------------------------
ヘッダー
------------------------------------------------*/
#header {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #eae1cf; 
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  margin: 0 auto;
  padding: 0 15%;
}
#header ul {
  display: flex;
  padding: 10px 0;
  align-items: center;
}
#header li {
  font-size: 0.9rem;
  margin-left: 30px;
}
header li a {
  color: #24292e;
  transition: all 0.3s;
}
#header li a:hover {
  opacity: 0.5;
}
#header li img.icon {
  width: 30px;
}

/*-------------------------------------------
Mainvisual
-------------------------------------------*/
#mainvisual {
  margin-bottom: 0px;
}
#mainvisual img {
  width: 100%;
  max-width: 1180px;
  height: 500px;
  margin: auto;
  display: block;
  object-fit: cover;
}

/*-------------------------------------------
About
-------------------------------------------*/
#about ul {
  margin-bottom: 0;
}
#about ul li {
  margin-bottom: 3px;
  text-align: justify;
}
#about ul li:first-child {
  margin-bottom: 5px;
}
#about p {
  text-align: justify;
}

/*-------------------------------------------
Member
-------------------------------------------*/
#member ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
#member ul li {
  width: 31%;
  margin-bottom: 23px;
}
#member ul li img {
  cursor: pointer;
  width: 640px;
  max-height: 417px;
  transition: all 0.3s;
}
#member ul li img:hover {
  transform: scale(1.2, 1.2);
  opacity: 0.7;
}
#member p{
  font-size: 0.7em;
}
#member p:first-line{
  font-size: 1.7em;
  color: #6c272d;
}

/*-------------------------------------------
Column
-------------------------------------------*/
#box {
  width: 67%;
  position: relative;
  background: #dcdcdc; /*背景色*/
  padding: 3em 2em 2em; /*内側余白(上・左右・下)*/
}
#box::before {
  position: absolute;
  content: "";
  width: 95%;
  height:10px;
  top: 0.5em;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  border-top: dotted 15px #fff; /*ドットの形・大きさ・色*/
}
#box ul {
  margin-bottom: 0;
  font-size: 10px;
}
#box ul li {
  margin-bottom: 3px;
  color: #626063;
}
#box ul ::first-line {
  color: #6b3f31;
}
#box p {
  text-align: justify;
}

/*-------------------------------------------
Gear
-------------------------------------------*/
#gear{
  background:  #eae1cf;
  border: 2px solid #006eb0;
}
#gear .gear_ttl{
  margin: 0;
	background: #006eb0;
	color: #eae1cf;
	padding: 10px;
	text-align: center;
  font-size: 1.3em;
	font-weight: bold;
}
.item{
  display: flex;
  justify-content: space-between;
  background:  #eae1cf;
}
.item:first-child{
  display: flex;
  justify-content: space-between;
  background:  #eae1cf;
  margin-top: 60px;
}
.item .item_info .item_title{
  height: 60px;
  display: flex;
  align-items: center;
  border-top: solid 1px #c3c3c3;
  border-bottom: solid 1px #c3c3c3;
  font-size: 1rem;
  font-weight: bold;
}
.item .item_info p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 20px;
}
.item .item_img {
  max-width: 50%;
  flex-shrink: 0;
  margin-right: 30px;
}

/*-------------------------------------------
Lives
-------------------------------------------*/
#lives ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
#lives ul li {
  width: 31%;
  margin-bottom: 23px;
}
#lives ul li img {
  cursor: pointer;
  width: 640px;
  max-height: 906px;
  transition: all 0.3s;
}
#lives ul li img:hover {
  transform: scale(1.2, 1.2);
  opacity: 0.7;
}
#lives p{
  font-size: 0.6em;
}
#lives p:first-line{
  font-size: 1.5em;
  color: #d70035;
}

/*-------------------------------------------
Setlists/YouTube
-------------------------------------------*/
.setlists{
  /*display: flex; */
  background:  #eae1cf;
  border: 2px solid #cd5e3c;
}
.setlists_ttl{
  margin: 0;
	background: #cd5e3c;
	color: #fff;
	padding: 10px;
	text-align: center;
  font-size: 1.3em;
	font-weight: bold;
}
.setlists_txt{
  color:#524e4d;
  margin: 10px,auto,10px,20px;
	padding: 1em;
}
.setlists_img {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
.youtube {
  width: 900px;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}

/*-------------------------------------------
News
-------------------------------------------*/
#news dl {
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #c8c8c8;
  margin-bottom: 10px;
}
#news dt {
  width: 20%;
  border-bottom: solid 1px #c8c8c8;
  padding: 15px;
}
#news dd {
  width: 80%;
  border-bottom: solid 1px #c8c8c8;
  padding: 15px;
}
#news li{
  font-size:small;
  text-align: right;
}

/*-------------------------------------------
News Archive
-------------------------------------------*/
.newsarch_ttl{
  margin: 0;
	background: #c8c8c8;
	color: #fff;
	padding: 10px;
	text-align: center;
  font-size: 1.3em;
	font-weight: bold;
  margin-bottom: 50px;
}

/*-------------------------------------------
Contact
-------------------------------------------*/
#contact p {
  text-align: center;
  margin-bottom: 20px;
}
#contact dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#contact dt {
  width: 15%;
}
#contact dd {
  width: 85%;
  margin-bottom: 10px;
}
#contact dd input,
#contact dd textarea {
  width: 100%;
  border: solid 1px #c8c8c8;
  padding: 10px;
}
#contact dd textarea {
  height: 10rem;
}
#contact .button {
  text-align: center;
}
#contact .button input {
  border: solid 1px #24292e;
  width: 200px;
  background-color: #24292e;
  color: #fff;
  padding: 15px 0;
  transition: all 0.3s;
}
#contact .button input:hover {
  background: #fff;
  color: #24292e;
}

/*-------------------------------------------
Footer
-------------------------------------------*/
#footer{
  background-color:#6b3f31;
  padding: 10px;
  text-align: center;
}
#footer p{
  font-size: 0.8em;
  color:#eae1cf;
  margin: 0 30px;
}

/*----------------------------------------------
bloglist
------------------------------------------------*/
.bloglist{
  margin: 30px 20px 30px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 3% ;
}
.bloglist li{
  width: 30%;
}
.bloglist li figure{
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}
.bloglist li figure img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*----------------------------------------------
SP
------------------------------------------------*/
/* pcファースト　大きいサイズから小さいサイズへ */
/* 600pxより小さいときのcss適用 */
@media screen and (max-width: 900px) {
  .wrapper {
    margin-bottom: 70px;
  }
  .site-title {
    margin-top: 20px;
  }
  .sec-title {
    padding-top: 120px;
    margin-bottom: 40px;
  }

  /* ヘッダー */
  #header {
    max-width: 100%;
    height: auto;
    flex-direction: column;
    margin-top: 0;
    padding-top: 20px;
    line-height: 40px;
  }
  #header li {
    font-size: 0.8rem;
    margin-left: 20px;
  }
  #header li:first-child {
    margin-left: 0;
  }
  #header li img.icon {
    width: 20px;
    margin-top: 15px;
  }

/* member */
#member ul {
  flex-direction: column;
}
#member ul li {
  width: 100%;
}

/* column */
#box {
  width: 92%;
}
#box ul {
  flex-direction: column;
}

/* lives */
  #lives ul {
    flex-direction: column;
  }
  #lives ul li {
    width: 100%;
  }
  /* news */
  #news dl {
    flex-direction: column;
  }
  #news dt {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
  }
  #news dd {
    width: 100%;
    padding-top: 0;
  }

  /* youtube */
  .youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .youtube iframe {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
  }

/* Gear */
  .item {
    flex-direction: column;
    font-size: 0.7rem;
    max-width: 80%;
  }
  .item:first-child {
    margin-top: 20px;
  }
  .item .item_img {
    max-width: 100%;
    margin: 0 0 20px 0;
  }
}