@charset "UTF-8";

/* 共通スタイル */
* {
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0 auto;
  padding: 0;
  line-height: 1.6;
  background-image: url(../images/background.jpg);
  background-repeat: no-repeat;
  background-size: 80% auto;
  background-position: center center;
  background-attachment: scroll;
  background-color: #fff;
  color: #333;
}

header {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
  margin: 0;
}

header img {
  filter: invert(100%);
  margin: 0 auto;
  display: block;
  transition: ease-in-out 0.3s;
}

header img:hover {
  filter: invert(70%);
}

nav {
  width: 60%;
  margin: 0 auto;
}

nav a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: ease-in-out 0.3s;
}

nav a:hover {
  color: #6d49ff;
}

nav ul {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
}

.article-title {
  text-align: center;
  font-size: 2em;
  margin-top: 120px;
}

main {
  width: 50%;
  min-width: 500px;
  margin: 20px auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  border: 1px solid #ccc;
}

.year-span {
  font-weight: bold;
}

.iframely-embed {
  width: 70%;
  height: auto;
  display: block;
  border: gray 2px solid;
  border-radius: 20px;
  overflow: hidden;
}

.sakamv {
  display: block;
  width: 80%;
  height: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.sakamv iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 15px;
}

#album-image-collection {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#album-section-01 {
  background-image: url("../images/album01.png");
  color: #000;
}

#album-section-02 {
  background-image: url("../images/album02.png");
  color: #fff;
}

#album-section-03 {
  background-image: url("../images/album03.png");
  color: #000;
}

#album-section-04 {
  background-image: url("../images/album04.png");
  color: #fff;
}

#album-section-05 {
  background-image: url("../images/album05.png");
  color: #fff;
}

#album-section-06 {
  background-image: url("../images/album06.png");
  color: #fff;
}

#album-section-07 {
  background-image: url("../images/album07.jpeg");
  color: #fff;
}

#album-section-08 {
  background-image: url("../images/album08.jpeg");
  color: #000;
}

#album-section-center {
  background-image: url("../images/membercover.jpg");
  color: gray;
}

.album-section {
  display: block;
  width: 30%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center center;
  font-weight: bold;
  border-radius: 20px;
  margin-bottom: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  text-align: center;
  opacity: 0.8;
  transition: ease-in-out 500ms;
}

.album-section:hover {
  opacity: 1;
  width: 33%;
}

#headup,
#credits {
  width: 70%;
  margin: 0 auto;
  padding: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: left;
}

#credits {
  font-size: small;
}

#credits a {
  color: #fff;
  font-size: small;
  text-decoration: underline;
}

footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: 40px;
}
