@charset "UTF-8";

@import url("normalize.css"); /* ------- Reset all CSS Styles */

/********************
共通
******************************/
* {
  box-sizing: border-box;
}


body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
}

body.index {
  background-image: url(../images/homeback.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #171a0f;
}

body.kashiwa {
  background-image: url(../images/kashiwa.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #171a0f;
}

body.hunabashi {
  background-image: url(../images/hunabashi.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #171a0f;
}

.wrapper {
  width: 960px;
  margin: 0 auto;
  background-color: rgba(23,26,15,0.8);
}

.header {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.navigation-header {
  width: 50%;
  margin-bottom: 10px;
  margin-right: 20px;
}
.navigation-header ul {
  display: flex;
  justify-content: space-between;
}
.navigation-header ul li {
  font-size: 14px;
  font-weight: bold;
}
.navigation-header ul li a {
  color: #d1d6c0;
  text-decoration: none;
  transition: 0.3s;
}
.navigation-header ul li a:hover {
  color: #e2416e;
}

.footer {
  width: 100%;
  height: 200px;
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.navigation-footer {
  width:100%;
}
.navigation-footer ul {
  display: flex;
  justify-content: center;
  padding-left: 0;
}
.navigation-footer ul li {
  font-size: 14px;
  font-weight: bold;
  margin: 0 40px;
}
.navigation-footer ul li a {
  color: #d1d6c0;
  text-decoration: none;
  transition: 0.3s;
}
.navigation-footer ul li a:hover {
  color: #e2416e;
}

.copyright {
  color: #d1d6c0;
}

.main-image img{
  width: 100%; 
}


.text-intro {
  width: 800px;
  margin: auto;
  padding: 60px 20px;
}
.text-intro p {
  font-size: 22px;
  line-height: 1.75;
  color: #d1d6c0;
}
.banner-wrapper {
  width: 100%;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-around;
}
.banner {
  width: 30%;
}
.banner h2 {
  font-size: 22px;
  text-align: center;
  margin: 5px;
}

.banner a {
  text-decoration: none;
  color: #d1d6c0;
  transition: 0.3s;
}
.banner a img {
  transition: 0.3s;
  width: 100%;
}
.banner a:hover {
  color: #e2416e;
}
.banner a:hover img {
  opacity: 0.6;
}


.content-wrapper {
  width: 100%;
  padding: 80px 40px;
  display: flex;
  justify-content: space-between;
}

.content-text h2 {
  font-size: 32px;
  color: #d1d6c0;
}
.content-text h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #d1d6c0;
}


.content-text p {
  font-size: 18px;
  color: #d1d6c0;
  line-height: 1.75;
  margin-bottom: 40px;
  text-align: justify;
}

.content-image {
  width: 50%;
  height: 200px;

  margin-top : 100px;
}
.content-image img {
  padding: 40px 20px 20px 40px;
  margin-top : 10px;
}



.article_discography{
  margin-top: 30px;
  display: flex;
}
.section_discography{
  
  width: 100%;
  background-color: rgba(82,30,131,0.8);
  padding: 2.5%;
  margin-bottom: 30px;
}
.section_discography h2{
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.1rem;
}
.section_discography h3{
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.1rem;
  margin-bottom: 1px solid #bababa;
  margin-bottom: 20px;
}

.box_discography{
  display: flex;
}
.box_left{
  width: 33%;
}
.box_left img{
  width: 90%;
  margin-bottom: 10px;
}
.box_left p{
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}
.box_right{
  width: 77%;
}
.box_right ul{
  list-style: none;
}
.box_right ul li{
  color: #fff;
  font-weight: bold;
}


