body {
  margin: 0;
  background-color: #1a1a1a;
}



.container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  gap: 2rem;
  box-sizing: border-box;
}

.container2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
   padding: 1rem 2rem;
}







.bg0 {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 600px;
  overflow: hidden;
  z-index: 0;  
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('bg04.png');
  background-repeat: no-repeat;
  background-size: auto 200%;
  background-position: center top;
  opacity: 0.4;
  z-index: -1;
}

.overlay-text {
  position: relative;
  z-index: 1;
}



.bg0sma {
  background-image: url('bg04.png');
  background-repeat: no-repeat;
  background-size: 180% auto;
  background-position: calc(50% - 50px) top;
  background-attachment: scroll;
  
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}




.bg0taby {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.bg-imagetaby {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('bg04.png');
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center top;
  opacity: 0.4;
  z-index: 0;
}

.overlay-texttaby {
  position: relative;
  z-index: 1;
}



.text-area {
  flex: 1;
  margin: 0 auto;
  text-align: left;
  max-width: 450px;
}

.text-area2 {
  flex: 1;
  margin: 0 auto;
  text-align: left;
  max-width: 650px;
}


.center-box {
  margin-top: 0px;
  text-align: center;
}

.right-box {
  margin-top: 0px;
  text-align: right;
}



h1 {
  font-size: 2.5rem;
  color: #b3a369;
  margin-bottom: 0.7rem;
}


h2 {
  color: #b3a369;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.1em;
}

h3 {
  color: #b3a369;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.1em;
}


.kaguya {
  display: inline-block;
  line-height: 1.3;
  font-weight: 500;

  background: linear-gradient(
    90deg,
    #f0f4f8 0%,
    #cf97ab 10%,
    #b3a369 20%,
    #b3a369 80%, 
    #cf97ab 90%,
    #f0f4f8 100%
  );
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}



.tani {
  font-family: 'Dela Gothic One', sans-serif;
  display: inline-block;
  line-height: 1.3;
  font-weight: 500;

  background: linear-gradient(
    90deg,
    #a0e63f,
    #b2ff59,
    #fce38a,
    #f8a5c2,
    #f78fb3
  );
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}


.inui {
  font-family: 'RocknRoll One', serif;
  display: inline-block;
  line-height: 1.3;
  font-weight: 400;

  background: linear-gradient(
    90deg,
    #cccccc,
    #00ffff,
    #5B7E91
  );
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}








p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.links li {
  list-style: none;
  margin: 0.4em 0;
  line-height: 1.5;
  font-weight: bold;
}

.icons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.icons button {
  font-size: 1.5rem;
  padding: 0.6rem;
  background-color: #222;
  border: 2px solid #fcd21d;
  border-radius: 8px;
  color: #fcd21d;
  cursor: pointer;
}

.image-area {
  flex: 1;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-area img {
  max-width: 100%;
  height: auto;
}


.glow-hr {
  border: none;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    #b3a369 50%,
    transparent 100%
  );
  box-shadow:
    0 0 6px rgba(179, 163, 105, 0.8),
    0 0 12px rgba(179, 163, 105, 0.5),
    0 0 20px rgba(179, 163, 105, 0.3);
  width: 100%;
}


.for-sma {
  display: none;
}







/* モバイル対応 */
@media (max-width: 768px) {

  .container {
    max-width: 95%;
    flex-direction: column;
    padding: 1rem;
  }

  .image-area {
    order: -1; /* 画像を上に移動 */
  }

  .text-area h1 {
    font-size: 1.5rem;
  }

  .for-sma {
    display: inline;
  }


h1 {
  font-size: 1.9rem;
  color: #b3a369;
  margin-bottom: 0.7rem;
}





}




