@charset "utf-8";


body {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background: linear-gradient(to bottom, #e8ffff, #d7ffff);
  margin: 0;
  padding: 0;
  color: #444;
  overflow-x: hidden;
}


/* ヘッダー */
header {
  background: #ebffe6;
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.68);
}

header h1 {
  margin: 0;
  font-size: 28px;
  color: #ff7fa8;
  font-weight: 800;
}


.simple-nav {
  background-color: #fffafc;
  padding: 12px 0;
  border-bottom: 2px solid #ffe3ec;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

nav li {
  margin: 6px;
}

nav a {
  display: block;
  padding: 8px 18px;
  background-color: #ffe6f0;
  color: #555;
  text-decoration: none;
  border-radius: 999px;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s;
}

nav a:hover {
  background-color: #e6f5ff;
  color: #333;
}


.simple-header img {
  width: 200px;
  height: 75px;
  border-radius: 20px;
}

/* スライダー */
#slider {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.slide:first-child {
  display: block;
}


/* トップに戻るボタン */
#toTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: none;
  background: #ff8fb8;
  color: #fff;
  border-radius: 50%;
  padding: 10px 15px;
  font-weight: bold;
  text-decoration: none;
}

/* キャラクター表示*/
.character-view {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.chara-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  width: 100px;
}

.chara-list.left {
  align-items: flex-end;
}

.chara-list.right {
  align-items: flex-start;
}

.chara-list img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  cursor: pointer;
}


.main-chara {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;

}

.image-frame {
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  border: 2px solid #ffe3ec;
}

.main-image {
  max-width: 280px;
  width: auto;
  height: 300px;
}


/*ボタン */

.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.nav {
  background: #ff8fb8;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  z-index: 1;
  position: relative;
}

.back {
  left: 30%;
}

.next {
  right: 30%;
}


form dl {
  max-width: 500px;
  margin: 40px auto;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form dt {
  font-weight: bold;
  margin-top: 15px;
}


form dd {
  margin: 6px 0 14px;
  display: block;
  width: 100%;
}

form input,
form textarea {
  width: 100%;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  box-sizing: border-box;
}


form button {
  background: #ff8fb8;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  margin: 10px auto;
  font-size: 14px;
  display: block;
}

form button:hover {
  background: #ff7fa8;
}

/* フッター */
footer {
  text-align: center;
  padding: 20px;
  background: #ffe6ea;
  color: #ff7fa8;
  margin-top: 30px;
}

.shop-section {
  background: #eaf6ff;
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ffb6c1;
  margin: 10px auto;
  border-radius: 2px;
}


.charamoji {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
  line-height: 1.6;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
}

/* 商品一覧 */
.list {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.goodslist {
  width: 260px;
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.imageshop {
  background: #e6f4ff;
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 16px;
}

.imageshop img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.shouhinname {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 6px;
}

.shouhinprice {
  font-size: 14px;
  margin-bottom: 16px;
}

/*商品詳細ボタン */
.goodsbtn {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #5db7ff;
  border-radius: 999px;
  color: #5db7ff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.goodsbtn:hover {
  background: #5db7ff;
  color: #fff;
}


/*背景*/
.slider-section {
  background-color: #ffb2bf;
}

.character-section {
  background-color: #c4ffb2;
}

.video-section {
  background-color: #c5fc86;
}

.shop-section {
  background-color: #96e4d8;
}

.contact-section {
  background-color: #f3f3f3;
}

.section {
  padding: 60px 20px;
  padding-block: 80px;
}


/*動画*/
.video-character-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -20px;
  padding-left: 20px;
}

.video-character-wrapper img {
  width: 250px;
  height: 200px;
}

.video-character {
  width: 150px;
  height: auto;
}


@keyframes fuwafuwa {

  0%,
  100% {
    top: 0;
  }

  50% {
    top: -10px;
  }
}

.video-character {
  position: relative;
  animation: fuwafuwa 3s ease-in-out infinite;
  width: 150px;
}

.douga {
  text-align: center;
  margin: 40px 0;
}

/*楽曲*/
#ongaku {
  display: flex;
}

.music-section {
  padding-block: 60px;
}

.musiccard,
.audiocard {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 16px;
  text-align: center;
  width: min(320px, 90%);
  margin: 12px auto;
}


.musiccard img,
.audiocard img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid #a7e8f6;
}

.audio-cover {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid #a7e8f6;
}

.musictitle {
  margin: 10px 0;
  font-weight: 700;
  color: #083c4a;
}

.musicbutton {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.musicbutton button {
  background: #a7e8f6;
  color: #083c4a;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}

.musicbutton button:hover {
  background: #5bd0ed;
  color: #fff;
}


/*敵*/
#teki1,
#teki2 {
  display: flex;
  width: 90%;
  margin: 20px auto;
  align-items: center;
}

#teki2 {
  flex-direction: row-reverse;
}

#kimera1 {
  margin: 0 40px;
}

#kimera2 {
  margin: 0;
}

#teki1 #kimera1 {
  text-align: left;
}

#teki2 #kimera2 {
  text-align: right;
}

#tekigazou img {
  width: auto;
  height: 300px;
  text-align: center;
}

#kimera1 h1,
#kimera2 h1 {
  max-width: none;
  width: 100%;
}

#tekigazou img {
  margin-left: 0;
}

#moji {
  font-size: 30px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}


#test11 {
  text-align: center;
}

.teki {
  text-align: right;
  margin-right: 40px;
  margin-bottom: 30px;
}

