@charset "UTF-8";
/* CSS Document */
.header {
  height: 80px;
  width: 100%;
  background-color: #f84c89;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.header__logo {
  position: absolute;
  left: 10px;
  top: 13px;
}
.header__logo img {
  width: auto;
  height: 54px;
  padding: 0;
}
.header__navigation {
  display: none;
}
@media (max-width: 1130px) {
  /*ハンバーガーメニュー*/
  #nav-drawer {
    padding: 25px 24px 0 0;
    text-align: right;
    position: relative;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 22px;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;
    width: 30px;
    background-color: #FFF;
    display: block;
    content: "";
  }
  #nav-open span:before {
    bottom: -10px;
  }
  #nav-open span:after {
    bottom: -20px;
  }
  #nav-close {
    z-index: 1000;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 70%;
    height: 100%;
    background-color: #FFF8F0;
    text-align: left;
    padding: 15px 24px 0 24px;
    transform: translateX(-105%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5)
  }
  .nav-drawer__title {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f84c89;
    margin-bottom: 46px;
  }
  .nav-drawer__link-top {
    display: block;
  }
  #nav-content ul li {
    padding: 0 30px;
    margin-bottom: 36px;
    border-bottom: solid 1px #f84c89;
  }
  #nav-content ul li a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: #5c5c5c;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translateX(0%);
  }
}
@media (min-width: 1130px) {
  .header {
    max-width: 1920px;
    margin: 0 auto;
    min-height: 50px;
    padding: 14px;
    box-sizing: border-box;
  }
  .header__navigation {
    display: block;
    text-align: center;
  }
  .header__navigation ul li {
    display: inline-block;
    margin-left: 40px;
    padding-top: 17px;
  }
  .header__navigation ul li a {
    text-decoration: none;
    font-size: 2.0rem;
    font-weight: 600;
    color: #d0eef3;
  }
}
.main {
  background-color: #FFFDF8;
  padding-top: 80px;
}
@media (min-width:1040px) {
  main {
    padding-bottom: 120px;
  }
}
/* ===== SKY ANIMATION ===== */

/* 太陽 */
.sky__sun {
  position: absolute;
  top: 20px;
  right: 80px;
  width: 100px;
  height: 100px;
  background: #FFE135;
  border-radius: 50%;
  box-shadow: 0 0 30px 10px rgba(255,225,53,0.5);
  animation: sunPulse 3s ease-in-out infinite;
}
@keyframes sunPulse {
  0%, 100% { box-shadow: 0 0 20px 6px rgba(255,225,53,0.5); }
  50%       { box-shadow: 0 0 34px 12px rgba(255,225,53,0.35); }
}

/* 雲の共通パーツ */
.sky__cloud {
  position: absolute;
  transform-origin: center bottom;
}
.sky__cloud-body {
  position: relative;
  background: #fff;
  border-radius: 80px;
}
.sky__cloud-bump {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  top: 0;
}

/* 雲1（大・左上） */
.sky__cloud--1 { top: 40px; left: 25%; animation: cloudPulse1 6s ease-in-out infinite; }
.sky__cloud--1 .sky__cloud-body        { width: 220px; height: 60px; }
.sky__cloud--1 .sky__cloud-bump--1     { width: 100px; height: 100px; left: 30px; top: -50px; }
.sky__cloud--1 .sky__cloud-bump--2     { width: 80px;  height: 80px;  left: 110px; top: -36px; }

/* 雲2（中・右上） */
.sky__cloud--2 { top: 60px; right: 10%; animation: cloudPulse2 8s ease-in-out infinite; }
.sky__cloud--2 .sky__cloud-body        { width: 180px; height: 50px; }
.sky__cloud--2 .sky__cloud-bump--1     { width: 80px;  height: 80px;  left: 24px; top: -40px; }
.sky__cloud--2 .sky__cloud-bump--2     { width: 64px;  height: 64px;  left: 96px; top: -28px; }

/* 雲3（大・中央下寄り） */
.sky__cloud--3 { top: 30px; left: 50%; animation: cloudPulse3 10s ease-in-out infinite; }
.sky__cloud--3 .sky__cloud-body        { width: 200px; height: 56px; }
.sky__cloud--3 .sky__cloud-bump--1     { width: 90px;  height: 90px;  left: 28px; top: -46px; }
.sky__cloud--3 .sky__cloud-bump--2     { width: 70px;  height: 70px;  left: 110px; top: -32px; }

/* 雲4（中・左下） */
.sky__cloud--4 { top: 50px; left: 72%; animation: cloudPulse4 7s ease-in-out infinite; }
.sky__cloud--4 .sky__cloud-body        { width: 160px; height: 46px; }
.sky__cloud--4 .sky__cloud-bump--1     { width: 72px;  height: 72px;  left: 20px; top: -36px; }
.sky__cloud--4 .sky__cloud-bump--2     { width: 56px;  height: 56px;  left: 88px; top: -24px; }

@keyframes cloudPulse1 {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}
@keyframes cloudPulse2 {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}
@keyframes cloudPulse3 {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}
@keyframes cloudPulse4 {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.07); }
}

.section-top {
  margin-bottom: 80px;
}
.section-top__image {
  position: relative;
  overflow: hidden;
  height: 400px;
  width: auto;
  background-color: #fffef5;
  background-image:
    url("../images/top/zaurusu_top.png"),
    repeating-linear-gradient(
      180deg,
      transparent 0px,
      transparent 29px,
      #b8d4ee 29px,
      #b8d4ee 31px
    );
  background-size: auto 70%, auto;
  background-repeat: no-repeat, repeat;
  background-position: center center, 0 0;
}
@media (min-width:600px) {
  .section-top__image {
    height: 600px;
  }
}
@media (min-width:1130px) {
  .section-top__image {
    height: 680px;
    margin-bottom: 80px;
    background-color: #fffef5;
    background-image:
      url("../images/top/zaurusu_top.png"),
      repeating-linear-gradient(
        180deg,
        transparent 0px,
        transparent 29px,
        #b8d4ee 29px,
        #b8d4ee 31px
      );
    background-size: contain, auto;
    background-repeat: no-repeat, repeat;
    background-position: center center, 0 0;
  }
}

.section-about {
  padding: 60px 0 60px 0;
  margin-top: 80px;
  background-color: #FFD700;
  margin-bottom: 80px;
  position: relative;
}
.section-about__clip {
  position: absolute;
  top: -40px;
  right: 5%;
}
.section-about__clip img {
  width: 80px;
}
.section-about h2::first-letter {
  font-size: 90px;
}
.section-about h2 {
  font-family: 'Cherry Bomb One', sans-serif;
  font-weight: 400;
  font-size: 70px;
}
.section-about__font-A {
  color: #06ce30;
}
.section-about__font-b {
  color: #45a4da;
}
.section-about__font-o {
  color: #45a4da;
}
.section-about__font-u {
  color: #06ce30;
}
.section-about__font-t {
  color: #45a4da;
}
.section-about__imag {
  padding-top: 60px;
}
.section-about__about-message {
  padding-top: 45px;
  line-height: 2.0;
}

@media (min-width:1040px) {
  .section-about {
    width: 92%;
    border-radius: 0 30px 30px 0;
  }
  .section-about__contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 600px;
    margin: 0 auto;
  }
}
@media (max-width:500px) {
  .section-about__clip {
    position: absolute;
    top: -20px;
    right: 5%;
  }
  .section-about__clip img {
    width: 40px;
  }
}

/* ========== キャラクター紹介 ========== */
.section-chara {
  padding: 60px 0 60px 0px;
  background-color: #87CEEB;
  margin-bottom: 90px;
  position: relative;
  transition: background-color 0.4s ease;
}
.section-chara__clip {
  position: absolute;
  top: -40px;
  left: 5%;
}
.section-chara__clip img {
  width: 80px;
}
.section-chara h2 {
  font-family: 'Cherry Bomb One', sans-serif;
  font-weight: 400;
  font-size: 48px;
  padding-bottom: 40px;
  letter-spacing: 0.05em;
}
/* キャラクタータイトル文字色 */
.section-chara__font-1 { color: #f84c89; }
.section-chara__font-2 { color: #45a4da; }
.section-chara__font-3 { color: #06ce30; }
.section-chara__font-4 { color: #f84c89; }

/* タイトル吹き出し */
.section-chara h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.section-chara__balloon {
  display: inline-block;
  background: #fff;
  color: #444;
  font-family: 'Cherry Bomb One', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  padding: 6px 20px;
  border-radius: 999px;
  position: relative;
}
.section-chara__balloon::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 8px 0;
  border-style: solid;
  border-color: #fff transparent transparent;
}
.section-chara__title-main {
  display: block;
  font-family: 'Cherry Bomb One', sans-serif;
  font-size: 70px;
  font-weight: 400;
  margin-top: 4px;
}
.section-chara__title-main span:first-child {
  font-size: 90px;
}
.section-chara__list {
  list-style: none;
  padding: 0 20px;
}
.section-chara__item {
  margin-bottom: 60px;
}
.section-chara__item-picture {
  max-width: 280px;
  border-radius: 10px;
  display: block;
  margin: 0 auto 16px;
}
.section-chara__item-name {
  font-size: 2rem;
  font-weight: 700;
  color: #f84c89;
  margin-bottom: 8px;
}
.section-chara__item-comment {
  line-height: 1.8;
  max-width: 280px;
  margin: 0 auto;
}
/* スライダー */
.section-chara__slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 16px 20px;
}
.section-chara__cards {
  position: relative;
  width: 260px;
  min-height: 380px;
}
.section-chara__card {
  display: none;
  flex-direction: column;
  align-items: center;
}
.section-chara__card.is-active {
  display: flex;
}
.section-chara__main-picture {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 16px;
}
.section-chara__main-name {
  font-family: 'Cherry Bomb One', sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: #444;
  margin-bottom: 10px;
}
.section-chara__main-comment {
  line-height: 2.0;
  font-size: 1.5rem;
  color: #555;
}
/* 矢印ボタン */
.section-chara__arrow {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.section-chara__arrow:hover { opacity: 0.7; }
/* ドットナビ */
.section-chara__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 30px;
}
.section-chara__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.section-chara__dot.is-active {
  background: #fff;
}
@media (min-width:1040px) {
  .section-chara {
    padding: 60px 0 60px 30px;
    width: 92%;
    margin: 0 0 80px auto;
    border-radius: 30px 0 0 30px;
  }
}
@media (max-width:500px) {
  .section-chara__clip {
    position: absolute;
    top: -20px;
    left: 5%;
  }
  .section-chara__clip img {
    width: 40px;
  }
}

/* ========== SHOP ========== */
.section-shop {
  padding: 60px 0 60px 0px;
  background-color: #FF7F7F;
  margin-bottom: 80px;
  position: relative;
}
.section-shop__clip {
  position: absolute;
  top: -40px;
  right: 5%;
}
.section-shop__clip img {
  width: 80px;
}
.section-shop h2::first-letter {
  font-size: 90px;
}
.section-shop h2 {
  font-family: 'Cherry Bomb One', sans-serif;
  font-weight: 400;
  font-size: 70px;
  padding-bottom: 40px;
}
.section-shop__font-s {
  color: #B8F5D8;
}
.section-shop__font-h {
  color: #FFF5A0;
}
.section-shop__font-o {
  color: #FFF5A0;
}
.section-shop__font-p {
  color: #B8F5D8;
}
.shop-lead {
  padding: 0 20px 40px;
  line-height: 2.0;
  color: #fff;
}
.section-shop__button {
  display: inline-block;
  background-color: #fff;
  color: #FF7F7F;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  padding: 20px 50px;
  border-radius: 30px;
  margin-bottom: 20px;
  transition: opacity 0.2s;
}
.section-shop__button:hover {
  opacity: 0.75;
}
@media (min-width:1040px) {
  .section-shop {
    padding: 60px 0 60px 30px;
    width: 92%;
    border-radius: 0 30px 30px 0;
  }
}
@media (max-width:500px) {
  .section-shop__clip {
    position: absolute;
    top: -20px;
    right: 5%;
  }
  .section-shop__clip img {
    width: 40px;
  }
}

/* ========== YOUTUBE ========== */
.section-youtube {
  padding: 60px 24px 80px;
  background-color: #FFD700;
  margin-bottom: 80px;
  position: relative;
}
.section-youtube__clip {
  position: absolute;
  top: -40px;
  right: 5%;
}
.section-youtube__clip img {
  width: 80px;
}
.section-youtube h2 {
  font-family: 'Cherry Bomb One', sans-serif;
  font-weight: 400;
  font-size: 70px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.section-youtube__balloon {
  display: inline-block;
  background: #fff;
  color: #444;
  font-family: 'Cherry Bomb One', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  padding: 6px 20px;
  border-radius: 999px;
  position: relative;
}
.section-youtube__balloon::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 8px 0;
  border-style: solid;
  border-color: #fff transparent transparent;
}
.section-youtube h2 span:last-child span:first-child { font-size: 90px; }
.section-youtube__font-1 { color: #f84c89; }
.section-youtube__font-2 { color: #45a4da; }
.section-youtube__font-3 { color: #06ce30; }
.section-youtube__links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.section-youtube__link-btn {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 999px;
  transition: opacity 0.2s;
}
.section-youtube__link-btn:hover { opacity: 0.75; }
.section-youtube__link-btn--apple {
  background-color: #fff;
  color: #fc3c44;
}
.section-youtube__link-btn--spotify {
  background-color: #1DB954;
  color: #fff;
}
@media (max-width:500px) {
  .section-youtube__clip {
    top: -20px;
  }
  .section-youtube__clip img { width: 40px; }
}
@media (min-width:1040px) {
  .section-youtube {
    width: 92%;
    border-radius: 30px 0 0 30px;
    margin: 0 0 80px auto;
    padding: 60px 60px 80px 30px;
  }
}
.section-youtube__inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}
.section-youtube__link {
  display: block;
  position: relative;
}
.section-youtube__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.section-youtube__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  pointer-events: none;
}
.section-youtube__link:hover .section-youtube__thumb {
  opacity: 0.85;
}

/* ========== CONTACT ========== */
.section-contact {
  padding: 60px 0 80px;
  margin-bottom: 120px;
  background-color: #9333EA;
  position: relative;
}
.section-contact__clip {
  position: absolute;
  top: -40px;
  right: 5%;
}
.section-contact__clip img {
  width: 80px;
}
.section-contact h2 {
  font-family: 'Cherry Bomb One', sans-serif;
  font-weight: 400;
  font-size: 70px;
  padding-bottom: 40px;
}
.section-contact__font-1 { color: #FFB3D9; }
.section-contact__font-2 { color: #FFF5A0; }
.section-contact__font-3 { color: #FFB3D9; }
.section-contact h2 span:first-child { font-size: 90px; }

/* フォーム */
.contact-form {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: left;
}
.contact-form__group {
  margin-bottom: 24px;
}
.contact-form__label {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.contact-form__required {
  display: inline-block;
  background-color: #f84c89;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 20px;
  font-size: 1.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  background-color: #fff;
  box-sizing: border-box;
  outline: none;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  box-shadow: 0 0 0 3px rgba(248, 76, 137, 0.3);
}
.contact-form__textarea {
  height: 160px;
  resize: vertical;
}
.contact-form__button {
  display: inline-block;
  background-color: #f84c89;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  border: none;
  padding: 16px 60px;
  border-radius: 999px;
  cursor: pointer;
  margin-top: 10px;
  transition: opacity 0.2s;
}
.contact-form__button:hover { opacity: 0.75; }

@media (min-width:1040px) {
  .section-contact {
    width: 92%;
    border-radius: 0 30px 30px 0;
    margin-bottom: 0;
  }
}
@media (max-width:500px) {
  .section-contact__clip {
    top: -20px;
  }
  .section-contact__clip img {
    width: 40px;
  }
}

/* ========== FOOTER ========== */
.footer {
  background-color: #f84c89;
  padding: 60px 24px 40px;
  font-size: 1.6rem;
  font-weight: 600;
}
.footer__site-map {
  padding-bottom: 40px;
  text-align: left;
}
.footer__site-map ul li {
  padding-bottom: 10px;
  border-bottom: solid 1px #d0eef3;
  margin-bottom: 20px;
}
.footer__site-map li a {
  text-decoration: none;
  color: #d0eef3;
}
.footer__site-map li a:visited {
  color: #d0eef3;
}
.footer__sns-links ul {
  list-style: none;
  text-align: center;
  padding-bottom: 30px;
}
.footer__sns-links li {
  display: inline-block;
  wideh: 20px;
  margin: 0 10px;
}
.footer__sns-links li img {
  width: 50%;
}
.footer small {
  text-align: center;
  color: #FFF;
}
@media (min-width:1130px) {
  .footer__site-map {
    text-align: center;
    display: block;
  }
  .footer__site-map ul li {
    border-bottom: none;
    display: inline-block;
    margin-left: 20px;
    padding: 0;
  }
}
