/*index*/
body.base {
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  background-color: #fff9e9;
}

/* 改良された六芒星デザイン */
.background-hexagram {
display: block; /* ← まずPCでは表示されるように明示 */
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 50vw;
font-weight: bold;
color: transparent;
background: linear-gradient(270deg, #a0d8ef, #ccefff, #a0d8ef);
background-size: 600% 600%;
-webkit-background-clip: text;
background-clip: text;
text-shadow: 0 0 15px rgba(173, 216, 230, 0.3), 0 0 30px rgba(173, 216, 230, 0.2);
z-index: 0;
pointer-events: none;
user-select: none;
font-family: 'Orbitron', sans-serif;
animation: float 6s ease-in-out infinite, gradientShift 10s ease infinite;
}

.base .container {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.base .image-box {
  width: 100%;
  max-width: 300px;
  margin: 20px auto;
  border: 3px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
}


.base h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8em;
  font-weight: 700;
  margin: 50px 0 20px;
  color: #222;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.base h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #ff2a2a, #ffb64b);
  border-radius: 2px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.base h2:hover::after {
  opacity: 1;
}

.base h2 a.release-link {
  color: #222;
  text-decoration: none;
  transition: 0.3s;
}

.base h2 a.release-link:hover {
  color: #ff2a2a;
  text-decoration: underline;
}

.base p {
  font-size: 1.05em;
  line-height: 1.8;
  color: #333;
  margin: 10px 0 30px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.6);
  border-left: 4px solid #ffb64b;
  box-sizing: border-box;
  word-break: break-word;
}

.base a {
  color: blue;
  text-decoration: none;
  transition: 0.3s;
  word-break: break-word;
}

.base a:hover {
  text-decoration: underline;
  color: #ff2a2a;
}

.base footer {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: #ffb64b;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
}

.base .sr {
  max-width: 400px;
}

.base span {
  color: #00bcd4;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
}

.base footer p {
  margin: 0 auto;
  background-color: unset;
  max-width: fit-content;
}

.base p.noside {
  border-left:none;
}

/*共通*/
.back-button {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  background-color: #ffb64b;
  color: #222;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.back-button:hover {
  background-color: #ff2a2a;
  color: #fff;
}

.x-link {
  color: #ffb64b;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.x-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.x-link i {
  margin-right: 5px;
}

.noall {
border:none !important;
}

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

/*jaldaba8th*/
body.jaldaba8th {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #0d0000;
  background-image: url('../image/fireeye.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  color: #eee;
}

.jaldaba8th .artist-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 12px;
}

.jaldaba8th .artist-header img {
  width: 200px;
  height: auto;
  border: 2px solid #000;
}

.jaldaba8th .artist-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.jaldaba8th .section {
  margin: 40px 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 12px;
}

.jaldaba8th iframe {
width: 100%;
max-width: 700px;
height: 400px;
border: none;
}

.jaldaba8th .gallery-wrapper {
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.jaldaba8th .gallery {
  display: flex;
  gap: 10px;
  width: fit-content;
  animation: scrollGallery 40s linear infinite;
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.jaldaba8th .gallery img {
  height: 200px;
  border: 2px solid #000;
  cursor: pointer;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.jaldaba8th .gallery img:hover {
  transform: scale(1.05);
}

.jaldaba8th .lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.jaldaba8th .lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border: 4px solid #fff;
}

.jaldaba8th .lightbox.active {
  display: flex;
}

@media (max-width: 600px) {
  .jaldaba8th .artist-name {
    font-size: 1.5rem;
  }

  .jaldaba8th .gallery img {
    height: 150px;
  }
}

/*shizuku*/
body.shizuku {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #0d0000;
  background-image: url('../image/abstract.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  color: #eee;
}

.shizuku .artist-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 12px;
}

.shizuku .artist-header img {
  width: 200px;
  height: auto;
  border: 2px solid #000;
}

.shizuku .artist-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.shizuku .section {
  margin: 40px 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 12px;
}

.shizuku iframe {
  width: 100%;
  max-width: 700px;
  height: 400px;
  border: none;
}

.shizuku .gallery-wrapper {
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.shizuku .gallery {
  display: flex;
  gap: 10px;
  width: fit-content;
  animation: scrollGallery 40s linear infinite;
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.shizuku .gallery img {
  height: 200px;
  border: 2px solid #000;
  cursor: pointer;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.shizuku .gallery img:hover {
  transform: scale(1.05);
}

.shizuku .lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.shizuku .lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border: 4px solid #fff;
}

.shizuku .lightbox.active {
  display: flex;
}

@media (max-width: 600px) {
  .shizuku .artist-name {
    font-size: 1.5rem;
  }

  .shizuku .gallery img {
    height: 150px;
  }
}

/*STR-01*/
body.str-01 {
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}
.str-01 {
  background-image: url("../image/pattern-14656.gif");
  background-color: #e9f8ff;
}

.str-1contents {
  background-color: #92f5bedb;
}
.str-01 .container {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px;
}
.str-01 h1 {
  font-family: 'Orbitron', sans-serif;
  color: #000000;
  margin-bottom: 10px;
}

.str-01 h2 {
  font-family: 'Orbitron', sans-serif;
  color: #121212;
  margin-bottom: 10px;
}

.str-01 p {
  font-size: 1em;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 1em;
}
.str-01 li {
  font-size: 1em;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 1em;
}
.str-01 ul {
  list-style: none;
  padding: 0;
}
.str-01 footer {
  margin-top: 50px;
  padding: 20px;
  background-color: #ffb64b;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
}
  .str-01 .str-1 {
max-width: 600px;
}

/*STR-02*/
body.str-02 {
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

.str-02 {
  background-image: url("../image/3D Skull GIF by badblueprints.gif");
  background-color: #ffeb3b73;;
}

.str-2contents {
  background-color: #88b53f73;
}

.str-02 .container {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px;
}
.str-02 h1 {
  font-family: 'Orbitron', sans-serif;
  color: #000000;
  margin-bottom: 10px;
}
.str-02 h2 {
  font-family: 'Orbitron', sans-serif;
  color: #000000;
  margin-bottom: 10px;
}
.str-02 p {
  font-size: 1em;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 1em;
  font-weight: bold;
}
.str-02 li {
  font-size: 1em;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 1em;
  font-weight: bold;
}
.str-02 ul {
  list-style: none;
  padding: 0;
}
.str-02 footer {
  margin-top: 50px;
  padding: 20px;
  background-color: #ffb64b;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
}
  .str-02 .str-2 {
  max-width: 600px;
}

  .str-02 .colorbox {
    background-color: #ffffff9e;
  }