@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #fdfaf3;
  color: #3C2E21;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 500;
}
.en {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
#wrapper {
  width: 100%;
  margin: 0 auto;
}
:root {
  --main-width: 100%;
}
@media screen and (min-width: 1000px) {
  :root {
    --main-width: 560px;
  }
}
.wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.main-contents {
  width: 100%;
  max-width: var(--main-width);
  background-color: #FAF7EB;
  background-image: url(../images/common/bg.png);
  background-repeat: repeat;
  background-position: top left;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
/* =========================================================
   LOADING セクション
========================================================= */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fdfaf3;
  background-image: url(../images/common/bg.png);
  background-repeat: repeat;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1), visibility 0.8s;
}
#loading.fade-out {
  transform: translateY(-100%); /* ▼ 画面の100%分、上に移動する */
  visibility: hidden;
}
.loading-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* ロゴのスタイル */
.loading-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}
.logo-top {
  opacity: 0;
}
.logo-bottom {
  margin-top: 5px;
  opacity: 0;
}
/* 赤ちゃんのスタイル */
.loading-baby-wrap {
  width: 280px;
  height: auto;
  margin: 0 auto 20px;
  opacity: 0;
}
.loading-baby {
  width: 100%;
  height: auto;
}
/* --------------------------------------
   ▼ 落下アニメーション
-------------------------------------- */
/* 1. OONOTARO */
.anima-drop-1 {
  animation: loading-drop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}
/* 2. 3COINS */
.anima-drop-2 {
  animation: loading-drop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
}
/* 3. 赤ちゃん */
.anima-drop-3 {
  animation: loading-drop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}
@keyframes loading-drop {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --------------------------------------
   ▼ テキストと「...」のアニメーション
-------------------------------------- */
.loading-text {
  font-size: 18px;
  color: #775B41;
  letter-spacing: 0.1em;
  font-weight: 800;
  opacity: 0;
}
.anima-text-fade {
  animation: text-fade-in 0.5s ease 1s forwards;
}
@keyframes text-fade-in {
  100% {
    opacity: 1;
  }
}
/* ドットが順番に点滅する */
.loading-text span {
  opacity: 0;
  animation: dot-blink 1.4s infinite;
}
.loading-text .dot1 {
  animation-delay: 1.0s;
}
.loading-text .dot2 {
  animation-delay: 1.2s;
}
.loading-text .dot3 {
  animation-delay: 1.4s;
}
@keyframes dot-blink {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.side-left, .side-right {
  display: none;
  position: fixed;
  top: 0;
  width: calc((100% - var(--main-width)) / 2);
  height: 100vh;
  z-index: 2;
}
@media screen and (min-width: 1000px) {
  .side-left, .side-right {
    display: block;
  }
  .side-left {
    left: 0;
  }
  .side-right {
    right: 0;
  }
}
.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  position: relative;
  z-index: 1;
}
.scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
#mv {
  background-color: #FDF974;
  padding: 120px 0 0px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.mv-logo {
  width: 80%;
  margin: 0 auto 35px;
  max-width: 210px;
}
.mv-slider {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.slider-img {
  max-width: 150px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: sliderFade 12s infinite;
}
.slider-img:nth-child(1) {
  animation-delay: 0s;
}
.slider-img:nth-child(2) {
  animation-delay: 4s;
}
.slider-img:nth-child(3) {
  animation-delay: 8s;
}
@keyframes sliderFade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  43% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.mv-text {
  font-size: 18px;
  font-weight: bold;
  color: #61C2C4;
  margin: 20px 0 36px;
}
#mv p.copyright {
  margin-bottom: 30px;
}
.mv-release-info {
  background-color: #fdf974;
  padding: 40px 6px 30px;
  margin-top: 30px;
  opacity: 0;
  animation: hyun-pop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}
@keyframes hyun-pop {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.release-shop {
  color: #E87A4D;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}
.release-date {
  color: #61C2C4;
  font-family: "Nunito", sans-serif;
  font-weight: 800 !important;
  line-height: 1.2;
}
.date-main, .date-start {
  font-size: 40px;
}
.date-day {
  font-size: 29px;
  vertical-align: baseline;
  display: inline-block;
  font-weight: 600;
}
.mv-bottom-deco {
  background-color: #fdf974;
  width: 100%;
  line-height: 0;
}
.kumo-divider {
  width: 100%;
  height: auto;
}
#about {
  padding: 30px 0 0;
  background-color: #FAF7EB;
  background-image: url(../images/common/bg.png);
  background-repeat: repeat;
  background-position: top left;
  text-align: center;
}
.about-title-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.about-title-wrap h2.en {
  font-size: 35px;
  color: #3C2E21;
  margin-bottom: 0;
  letter-spacing: 0.17em;
}
.title-deco {
  width: 40px;
  height: auto;
}
.about-main-img {
  margin: 30px auto 18px;
  width: 90%;
  max-width: 155px;
}
.about-text {
  max-width: 379px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2;
  color: #3C2E21;
  margin-bottom: 30px;
  background-image: url(../images/common/book.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.about-text p {
  line-height: 1.55;
  padding: 28px 0 54px;
  font-weight: 500;
}
.about-loop-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: -19px;
}
.about-loop-inner {
  display: flex;
  width: 165%;
  animation: loop-animation 20s linear infinite;
}
.limit-notice-wrap {
  margin: 60px auto 40px;
  text-align: center;
}
.limit-notice-wrap h2.en {
  font-size: 35px;
  color: #3C2E21;
  letter-spacing: 0.17em;
  margin-bottom: 20px;
}
.limit-box {
  width: 90%;
  max-width: 380px;
  margin: 0 auto;
  border: 1px solid #9c8f82;
  border-radius: 8px;
  background-color: #ffffff;
  overflow: hidden;
}
.limit-header {
  background-color: #F1E5CB;
  border-bottom: 1px solid #9c8f82;
  padding: 12px 10px;
}
.limit-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #3C2E21;
  letter-spacing: 0.1em;
}
.limit-body {
  padding: 30px 15px;
}
.limit-text-top, .limit-text-bottom {
  font-size: 15px;
  font-weight: 700;
  color: #3C2E21;
  line-height: 1.6;
}
.limit-text-main {
  font-size: 22px;
  font-weight: 700;
  color: #E87A4D;
  margin: 10px 0;
  letter-spacing: 0.05em;
}
.limit-text-note {
  font-size: 11px;
  color: #3C2E21;
  margin-top: 20px;
}
@keyframes loop-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.section-kugiri {
  width: 100%;
  line-height: 0;
}
.section-kugiri img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#profile {
  padding: 60px 0 0;
  background-color: #FDF974;
  text-align: center;
}
.profile-title-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
}
.profile-title-wrap h2.en {
  font-size: 35px;
  color: #3C2E21;
  letter-spacing: 0.17em;
}
.title-star {
  position: absolute;
  top: -35px;
  right: -35px;
}
.profile-main-img {
  margin: 30px auto 20px;
  width: 100%;
}
.profile-img-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin: 0 auto;
}
.face-img {
  width: 140px;
  height: auto;
  position: relative;
  z-index: 2;
}
.pika-left, .pika-right {
  z-index: 1;
  animation: pika-animation-new 2.5s infinite ease-in-out;
}
.pika-right {
  animation-delay: 0.5s;
}
@keyframes pika-animation-new {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.9);
  }
}
.profile-name {
  color: #61C2C4;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.17em;
  margin-bottom: 20px;
}
.profile-sns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}
.profile-text {
  color: #61C2C4;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.17em;
  margin-bottom: 30px;
}
.profile-btn-wrap {
  margin-bottom: 60px;
}
.btn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 47px;
  margin: 0 auto;
  background-color: #61C2C4;
  border-radius: 24px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  position: relative;
  transition: background-color 0.3s;
}
.btn-more span {
  margin-right: 15px;
}
.arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 10px;
}
.arrow-icon {
  display: block;
  width: 13px;
  height: 2px;
  background-color: #61C2C4;
  position: relative;
}
.arrow-icon::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #61C2C4;
  border-right: 2px solid #61C2C4;
  position: absolute;
  right: 0;
  top: -3px;
  transform: rotate(45deg);
}
.btn-more:hover .arrow-icon {
  animation: arrow-move 0.6s infinite;
}
.btn-more:hover {
  background-color: #3a9ea0;
}
.btn-more:hover .arrow-icon {
  animation: arrow-move 0.6s infinite;
}
@keyframes arrow-move {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(0);
  }
}
/* =========================================================
   ハンバーガーメニュー・開閉ボタン設定
========================================================= */
.nav-button {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  width: 50px;
  cursor: pointer;
  display: block;
}
.btn-close {
  display: none;
}
.nav-open .btn-open {
  display: none;
}
.nav-open .btn-close {
  display: block;
}
/* --- 2. メニュー本体（通常時は完全に隠す） --- */
.nav-menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--main-width);
  height: 100%;
  background: #FDF974;
  z-index: 9998;
  display: none;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  overflow-y: auto;
}
/* --- 3. ボタンを押した時（.nav-open）だけ表示する --- */
.nav-open .nav-menu {
  display: flex;
}
.nav-menu ul {
  width: 80%;
  max-width: 400px;
}
.nav-line {
  width: 100%;
  height: 6px;
  margin: 8px 0;
  background-image: url(../images/common/nav_line.png);
  background-repeat: repeat-x;
  background-position: left center;
}
.nav-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav-menu .en {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 800;
}
.nav-menu .jp {
  font-size: 14px;
  color: rgba(60, 46, 33, 0.7);
  font-weight: bold;
}
.nav-deco {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
.anima-kuma {
  animation: fuwafuwa 3s infinite ease-in-out;
}
.anima-baby {
  animation: fuwafuwa 3s infinite ease-in-out 0.5s;
}
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.nav-sns {
  margin-top: 50px;
  display: flex;
  gap: 20px;
}
.nav-sns img {
  width: 40px;
}
/* =========================================================
   NOTICEセクション
========================================================= */
#notice {
  padding: 70px 0 70px;
  background-color: #FAF7EB;
  background-image: url(../images/common/bg.png);
  background-repeat: repeat;
  background-position: top left;
  text-align: center;
  position: relative;
}
.notice-title-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.notice-title-wrap h2.en {
  font-size: 35px;
  color: #3C2E21;
  letter-spacing: 0.17em;
}
.flg-l, .flg-r {
  height: auto;
}
.name-main {
  font-size: 26px;
  letter-spacing: 0.2em;
  font-style: italic;
  font-weight: 800;
}
.name-san {
  font-size: 17px;
}
.kira-l, .kira-r {
  height: auto;
  margin-top: 50px;
}
.notice-announce-box {
  position: relative;
  display: inline-block;
  margin: 20px auto 15px;
  width: 250px;
}
.frame-bg {
  width: 100%;
  height: auto;
  display: block;
}
.fukidashi-wrap {
  position: absolute;
  bottom: 80px;
  right: -55px;
  width: 120px;
  height: 100px;
  background-image: url(../images/notice/kumo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.fukidashi-text {
  font-size: 13px;
  font-weight: 700;
  color: #3C2E21;
  line-height: 1.4;
  text-align: center;
  margin-top: 0px;
  margin-left: 10px;
}
.anima-fuwafuwa {
  animation: fuwafuwa-bubble 3s infinite ease-in-out;
}
@keyframes fuwafuwa-bubble {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.announce-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 1;
}
.announce-text {
  font-weight: 700;
  line-height: 1.4;
}
.announce-text .name {
  color: #775B41;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-style: italic;
  font-weight: 800;
}
.announce-text .name small {
  font-size: 13px;
  font-style: normal;
}
.announce-text .event {
  color: #E87A4D;
  font-size: 25px;
  letter-spacing: 0.2em;
  display: inline-block;
}
.announce-text .decision {
  color: #E87A4D;
  font-size: 25px;
  letter-spacing: 0.1em;
  margin-left: 20px;
  line-height: 1;
}
.announce-text .decision span.b-mark {
  font-size: 33px;
  font-style: italic;
  margin-left: -10px;
}
.announce-baby {
  position: absolute;
  bottom: -15px;
  right: -50px;
  width: 90px;
  z-index: 2;
}
/* --- 日付エリア --- */
.notice-date-wrap {
  margin-bottom: 25px;
  position: relative;
}
.notice-date-wrap .event-date {
  margin-bottom: 0;
}
.notice-date-wrap .kira-l {
  position: absolute;
  top: -70px;
  left: 30px;
}
.notice-date-wrap .kira-r {
  position: absolute;
  bottom: -5px;
  right: 30px;
}
/* --- 水色枠（詳細・注意事項） --- */
.notice-detail-box {
  border: 2px solid #61C2C4;
  border-radius: 10px;
  background-color: #ffffff;
  margin: 0 auto;
  padding: 10px 15px 70px;
  position: relative;
  width: 90%;
  max-width: 360px;
}
.detail-ribbon {
  position: absolute;
  top: -24px;
  left: -6px;
  /* width: 60px; */
  z-index: 2;
}
.detail-baby {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 90px;
  z-index: 2;
}
/* --- 詳細ブロック（日程・場所） --- */
.detail-block {
  margin-bottom: 25px;
}
.detail-label {
  display: inline-block;
  background-color: #61C2C4;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 4px;
  margin-bottom: 10px;
  letter-spacing: 0.2em;
}
.detail-block p {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: #3C2E21;
}
.detail-block p.date-makuhari {
  font-size: 16px;
}
.btn-more.more-d {
  font-size: 14px;
  margin-bottom: 26px;
}
a.btn-more.more-d .arrow-circle {
  position: absolute;
  right: 0px;
  top: 11px;
}
.btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #61C2C4;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 45px 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  position: relative;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  transition: transform 0.2s;
  min-width: 280px;
  min-height: 47px;
}
.btn-detail:hover {
  transform: translateY(-2px);
}
.btn-detail .arrow-circle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
.btn-detail .arrow-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -50%); /* 矢印を少し左にずらして中央に */
  width: 10px;
  height: 2px;
  background-color: #61C2C4;
}
.btn-detail .arrow-icon::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #61C2C4;
  border-right: 2px solid #61C2C4;
  position: absolute;
  right: 0;
  top: -3px;
  transform: rotate(45deg);
}
/* --- 注意事項テキスト --- */
.detail-notes {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  font-weight: 500;
  color: #3C2E21;
}
.notes-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
.bubble-bg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.place-text {
  position: absolute;
  top: 35%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 90%;
  color: #61C2C4;
  letter-spacing: 0.16em;
  font-weight: 800;
  z-index: 2;
}
.shop-name {
  display: block;
  font-size: 19px;
  font-weight: 700;
}
.mall-name {
  display: block;
  font-size: 13px;
}
.title-top {
  display: block;
  font-size: 30px;
}
.title-bottom {
  display: block;
  font-size: 30px;
}
.baby-suwari {
  position: absolute;
  bottom: -10px;
  right: -65px;
  width: 80px;
}
.event-date {
  margin-bottom: 50px;
}
.event-date .date-main {
  color: #E87A4D;
  font-size: 40px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
}
.event-date .date-day {
  color: #E87A4D;
  font-size: 29px;
  vertical-align: baseline;
}
.notice-accordion {
  width: 100%;
  background-color: #E87A4D;
}
.accordion-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 0 14px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}
.trigger-text {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.accordion-trigger .arrow-icon02 {
  display: block;
  width: 30px;
  height: 5px;
  position: relative;
  margin: 8px auto 0;
}
.accordion-trigger .arrow-icon02::before, .accordion-trigger .arrow-icon02::after {
  content: "";
  display: block;
  width: 16px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  position: absolute;
  top: 4px;
  transition: transform 0.3s ease;
}
.accordion-trigger .arrow-icon02::before {
  left: 0;
  transform: rotate(30deg);
  transform-origin: right center;
}
.accordion-trigger .arrow-icon02::after {
  right: 0;
  transform: rotate(-30deg);
  transform-origin: left center;
}
.notice-accordion.is-open .arrow-icon02::before {
  transform: rotate(-30deg);
}
.notice-accordion.is-open .arrow-icon02::after {
  transform: rotate(30deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  background-color: #ffffff;
  transition: max-height 0.4s ease-out;
}
.notice-accordion.is-open .accordion-content {
  max-height: 870px;
}
.content-inner {
  padding: 30px 20px;
  text-align: left;
  color: #3C2E21;
  font-size: 14px;
  line-height: 1.8;
}
.condition-title {
  font-weight: 700;
  margin-bottom: 10px;
}
/* --- 空飛ぶあかちゃんまん --- */
.flying-baby-wrap {
  position: absolute;
  top: -33px;
  right: -150px;
  width: 120px;
  z-index: 10;
  transition: right 3s linear;
}
.flying-baby-wrap.start-fly {
  right: calc(100% - 150px);
}
.flying-baby {
  width: 100px;
  animation: baby-fuwafuwa 3s infinite ease-in-out;
}
@keyframes baby-fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
#accContent .content-inner {
  padding: 40px 20px;
  text-align: center;
  color: #3C2E21;
  background-color: #FAF7EB;
  background-image: url(../images/common/bg.png);
  background-repeat: repeat;
  background-position: top left;
}
#accContent .condition-top-title {
  position: relative;
  display: inline-block;
  width: 280px;
  margin-bottom: 25px;
}
#accContent .ribbon-bg {
  width: 100%;
  height: auto;
}
.condition-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.condition-box-yellow {
  width: 100%;
  max-width: 338px;
  box-sizing: border-box;
  margin: 0 auto;
  background-color: #FFED51;
  border: 2px solid #61C2C4;
  border-radius: 12px;
  padding: 15px 8px;
  font-size: 14px;
  font-weight: 700;
  color: #61C2C4;
  line-height: 1.6;
  letter-spacing: 0.15em;
}
.condition-box-yellow.entry-txt {
  width: 100%;
  min-width: 224px;
  max-width: 224px;
}
.condition-box-yellow.entry-txt p {
  font-size: 16px;
}
.text-large-bold {
  font-size: 17px;
  background: linear-gradient(transparent 60%, #FFCC00 60%);
}
.condition-plus {
  font-size: 24px;
  font-weight: 700;
  color: #61C2C4;
  line-height: 1.7;
}
.condition-note {
  font-size: 14px;
  color: #3C2E21;
  margin: 15px 0 35px;
  line-height: 1.4;
  text-align: left;
}
@media screen and (max-width: 560px) {
  .condition-note {
    text-align: center;
  }
}
.period-frame {
  position: relative;
  width: 100%;
  max-width: 338px;
  box-sizing: border-box;
  margin: 0 auto 35px;
  border: 2px solid #E87A4D;
  border-radius: 12px;
  background-color: #ffffff;
  padding: 30px 10px 25px;
}
.milk-img {
  position: absolute;
  top: -39px;
  left: -5px;
  height: auto;
}
.kuma-baby-img {
  position: absolute;
  bottom: -5px;
  right: -23px;
  height: auto;
}
.frame-title {
  font-size: 20px;
  font-weight: 700;
  color: #3C2E21;
  margin-bottom: 10px;
}
.frame-date {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background-color: #E87A4D;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 25px;
  letter-spacing: 0.15em;
  width: 100%;
}
.frame-date.bg-orange-text {
  margin-bottom: 0;
  padding: 4px 30px;
  max-width: 188px;
}
/*.notice-btn-wrap {
  margin-bottom: 40px;
}*/
.btn-orange-style {
  background-color: #E87A4D;
  font-size: 14px;
}
.btn-orange-style .arrow-circle {
  top: 11px;
}
.btn-orange-style .arrow-icon {
  background-color: #E87A4D;
}
.btn-orange-style .arrow-icon::after {
  border-top: 2px solid #E87A4D;
  border-right: 2px solid #E87A4D;
  position: absolute;
  right: 0;
  top: -3px;
  transform: rotate(45deg);
}
.btn-more.btn-orange-style:hover {
  background-color: #d14a13;
}
.notice-footer-text {
  color: #3C2E21;
}
.footer-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-desc {
  font-size: 15px;
  line-height: 1.6;
}
/* =========================================================
   ITEMS セクション
========================================================= */
#item {
  background-color: #FAF7EB;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.item-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 43px;
  background: url(../images/item/path01.png);
  background-repeat: repeat-x;
  z-index: 2;
}
.item-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 43px;
  background: url(../images/item/path02.png);
  background-repeat: repeat-x;
  z-index: 5;
}
.item-header-deco {
  position: relative;
  padding-top: 15px;
  background-color: #FDF974;
}
.crown-badge {
  padding: 18px 73px 9px;
  margin: 65px auto 0;
  border-radius: 50px 50px 0 0;
  border-bottom: none;
  position: relative;
  z-index: 3;
  background: url(../images/item/ttl_bg_b.png) no-repeat center;
  text-align: center;
}
.crown-icon {
  width: 40px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.crown-badge .en {
  font-size: 16px;
  font-weight: 900;
  color: #3C2E21;
  letter-spacing: 0.1em;
  margin: 0;
  line-height: 1;
}
.crown-badge .item-number {
  font-size: 24px;
  color: #a0c9ca;
}
.baby-photo {
  width: 100%;
  margin-top: -15px;
  position: relative;
  z-index: 1;
}
.baby-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.item-main-bg {
  background-color: #C7EAEB;
  padding: 40px 0 0px;
  margin-top: -5px;
}
.item-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
.intro-text p {
  font-size: 14px;
  font-weight: 700;
  color: #3C2E21;
  text-align: left;
  line-height: 1.8;
}
.banzai-anima {
  width: 100px;
  animation: banzai-jump 1.5s infinite ease-in-out;
  transform-origin: bottom center;
}
@keyframes banzai-jump {
  0%, 100% {
    transform: scaleY(1) translateY(0);
  }
  20% {
    transform: scaleY(0.9) translateY(5px);
  } /* 少ししゃがむ */
  50% {
    transform: scaleY(1.05) translateY(-15px);
  } /* 跳ねる */
  80% {
    transform: scaleY(0.95) translateY(2px);
  } /* 着地 */
}
.item-img-box {
  background-color: rgb(255 255 255 / 30%);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-info {
  text-align: center;
  color: #3C2E21;
}
.item-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
.item-info h4.l-ttl {
  font-size: clamp(10px, 3.5vw, 16px);
}
.item-info .price {
  font-size: 16px;
  margin-bottom: 15px;
}
.item-info .price span {
  font-size: 12px;
}
.btn-buy {
  width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #61C2C4;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 7px 35px 7px 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s;
  position: relative;
  letter-spacing: 0.2em;
}
.btn-buy:hover .arrow-icon {
  animation: arrow-move 0.6s infinite;
}
.btn-buy .arrow-circle {
  top: 8px;
  right: 10px;
  width: 20px;
  height: 20px;
}
.btn-buy .arrow-icon {
  width: 10px;
  height: 2px;
}
.btn-buy .arrow-icon::after {
  content: "";
  width: 4px;
  height: 4px;
  border-top: 2px solid #61C2C4;
  border-right: 2px solid #61C2C4;
  position: absolute;
  right: 0;
  top: -2px;
  transform: rotate(45deg);
}
.btn-buy:hover {
  background-color: #3a9ea0;
}
.btn-buy:hover .arrow-icon {
  animation: arrow-move 0.6s infinite;
}
.item-zigzag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  padding: 0 15px;
}
.item-zigzag .item-img-box {
  flex: 1;
}
.item-zigzag .item-info {
  flex: 1;
}
.item-zigzag.reverse {
  flex-direction: row;
}
.item-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 15px;
  padding: 0 15px;
}
.item-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/*.item-card .item-img-box img {
  max-height: 200px;
}*/
.item-card .item-img-box {
  flex-grow: 1;
}
#item .crown-badge {
  background: url(../images/item/ttl_bg_y.png) no-repeat center;
  padding: 17px 73px 10px;
}
#item .crown-badge .item-number {
  color: #FDD874;
}
#item02 {
  background-color: #FAF7EB;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#item02 .item-wave-top {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background-image:
    url(../images/item/path03.png);
  background-position:
    left top;
  background-repeat:
    repeat-x;
  background-size:
    auto 43px;
}
#item02 .item-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 43px;
  background: url(../images/item/path04.png);
  background-repeat: repeat-x;
  z-index: 5;
}
#item02 .item-main-bg {
  background-color: #fff4d1;
  padding: 40px 0 50px;
}
.shuzu-anima {
  width: 85px;
  height: auto;
  animation: shuzu-nod 2.4s infinite ease-in-out;
  transform-origin: bottom center;
}
@keyframes shuzu-nod {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  30% {
    transform: rotate(4deg) scaleX(1.02) translateY(2px);
  }
  65% {
    transform: rotate(-3deg) translateY(-1px);
  }
}
.item-grid-container .item-card {
  margin-bottom: 10px;
}
/* =========================================================
   Swiperスライダー用調整
========================================================= */
.item-img-box .splide {
  overflow: hidden; 
  z-index: 1; 
  position: relative;
}
/* =========================================================
   FOOTER セクション
========================================================= */
#footer {
  width: 100%;
  background-color: #ffffff;
  text-align: center;
  position: relative;
  z-index: 10;
}
.footer-deco-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
  background-color: #fff4d1;
}
.footer-baby-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  margin-bottom: -53px;
}
.footer-kumo-img {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -25px;
  left: 0;
  z-index: 2;
}
.footer-main-contents {
  background-color: #ffffff;
  padding: 80px 20px 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo {
  margin-bottom: 25px;
}
.footer-logo img {
  width: 160px;
  height: auto;
}
.footer-sns-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
}
.footer-sns-links img {
  width: 36px;
  height: auto;
}
.footer-copyright {
  font-family: "Nunito", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #3C2E21;
  letter-spacing: 0.05em;
  display: block;
}
.anima-swing {
  animation: style-swing 3s infinite ease-in-out;
  transform-origin: center top;
}
.anima-swing-delay {
  animation: style-swing 3s infinite ease-in-out 0.4s;
  transform-origin: center top;
}
@keyframes style-swing {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(6deg);
  }
}
.anima-twinkle {
  animation: style-twinkle 1.8s infinite ease-in-out;
}
.anima-twinkle-delay {
  animation: style-twinkle 1.8s infinite ease-in-out 0.5s;
}
@keyframes style-twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}
.anima-shake {
  animation: style-shake 2.2s infinite ease-in-out;
}
.anima-shake-delay {
  animation: style-shake 2.2s infinite ease-in-out 0.3s;
}
@keyframes style-shake {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(8deg);
  }
}
.anima-bound {
  animation: style-bound 2.8s infinite ease-in-out;
}
@keyframes style-bound {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  40% {
    transform: translateY(-6px) rotate(-4deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
}
.anima-sway {
  animation: style-sway 3.2s infinite ease-in-out;
}
@keyframes style-sway {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(-3deg) scale(1.02);
  }
}
.anima-roll {
  animation: style-roll 3.5s infinite ease-in-out;
}
@keyframes style-roll {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-12deg);
  }
}
.anima-infant {
  animation: style-infant 4s infinite ease-in-out;
}
@keyframes style-infant {
  0%, 100% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.03) translate(2px, -2px);
  }
}
.anima-hover-bounce {
  transition: transform 0.2s ease;
}
.anima-hover-bounce:hover {
  animation: hover-bounce-act 0.4s ease infinite alternate;
}
@keyframes hover-bounce-act {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}
.anima-ribbon-pyon {
  animation: ribbon-pyon 2.5s infinite ease-in-out;
  transform-origin: center center;
  display: inline-block;
}
@keyframes ribbon-pyon {
  0%, 60%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  70% {
    transform: translateY(-15px) rotate(-8deg);
  }
  80% {
    transform: translateY(0) rotate(4deg);
  }
  90% {
    transform: translateY(-8px) rotate(-3deg);
  }
}
.anima-kuma-pyon {
  /* 静止（待機）時間を長くした3.5秒ループ */
  animation: kuma-pyon 3.5s infinite ease-in-out;
  transform-origin: center center;
  display: inline-block; /* 画像が確実に動けるように念のため追記 */
}
@keyframes kuma-pyon {
  /* 0%〜80%（約2.8秒間）はじっと待機 */
  0%, 80%, 100% {
    transform: translateY(0);
  }
  /* 90%：思い出したように上へ「ぴょんっ！」 */
  90% {
    transform: translateY(-20px); /* 上に20px移動 */
  }
}
@keyframes lineup-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 7.5px));
  }
}
  .limit-title-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  .limit-title-wrap h2.en {
    font-size: 35px;
    color: #3C2E21;
    letter-spacing: 0.17em;
    margin-bottom: 0;
  }
img.megahon-icon.anima-shake {
    margin-left: -50px;
}

/* =========================================================
   PC版 サイドバーデザイン（561px以上で適用）
========================================================= */
@media screen and (min-width: 561px) {
  .side-left, .side-right {
    background-color: #FAF7EB;
    background-image: url(../images/common/bg.png);
    background-repeat: repeat;
    background-position: top left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: hidden;
  }
  .side-left {
    background-image:
      url(../images/common/line.png), url(../images/common/bg.png);
    background-position:
      right top, top left;
    background-repeat:
      repeat-y, repeat;
  }
  .side-right {
    background-image:
      url(../images/common/line.png), url(../images/common/bg.png);
    background-position:
      left top, top left;
    background-repeat:
      repeat-y, repeat;
  }
  .side-inner {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    justify-content: space-between;
  }
  .side-lineup {
    text-align: center;
    margin: 40px 0;
    width: 100%;
  }
  .side-lineup h3 {
    font-size: 30px;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    color: #3C2E21;
  }
  .lineup-slider-wrap {
    width: 100%;
    max-width: 445px;
    overflow: hidden;
    padding: 5px 0;
    margin: 0 auto 40px;
  }
  .lineup-slider-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: lineup-marquee 100s linear infinite;
  }
  .lineup-slider-wrap:hover .lineup-slider-track {
    animation-play-state: paused;
  }
  .lineup-item {
    width: 130px;
    flex-shrink: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .lineup-item img {
    width: 100%;
    max-height: 130px;
    min-height: 130px;
    object-fit: contain;
    background-color: #fff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 8px;
  }
  .lineup-item p {
    font-size: 16px;
    font-weight: 700;
    color: #3C2E21;
    line-height: 1.3;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .side-left::-webkit-scrollbar, .side-right::-webkit-scrollbar {
    width: 6px;
  }
  .side-left::-webkit-scrollbar-track, .side-right::-webkit-scrollbar-track {
    background: transparent;
  }
  .side-left::-webkit-scrollbar-thumb, .side-right::-webkit-scrollbar-thumb {
    background: #EBE8DA;
    border-radius: 10px;
  }
  .side-lineup a.btn-more.more-d {
    max-width: 280px;
    width: 100%;
  }
  .btn-side-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #61C2C4;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 40px 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    transition: transform 0.2s;
    letter-spacing: 0.15em;
  }
  .btn-side-buy:hover {
    transform: translateY(-3px);
  }
  .btn-side-buy .arrow-circle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
  }
  .btn-side-buy .arrow-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%);
    width: 10px;
    height: 2px;
    background-color: #61C2C4;
  }
  .btn-side-buy .arrow-icon::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #61C2C4;
    border-right: 2px solid #61C2C4;
    position: absolute;
    right: 0;
    top: -3px;
    transform: rotate(45deg);
  }
  /* --- キャラクター配置の共通設定 --- */
  .side-char-top, .side-char-bottom {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    gap: 10px;
    position: relative;
  }
  .side-char-bottom .anima-kuma-pyon {
    position: absolute;
    left: 27%;
    top: 0 !important;
    margin-top: -67px;
  }
  .side-char-bottom img.anima-sway {
    position: absolute;
    bottom: 30px;
    right: 14%;
  }
  /* --- 右サイドバー：MENU --- */
  .side-menu-wrap {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  .menu-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
  }
  .menu-title h3 {
    font-size: 28px;
    letter-spacing: 0.2em;
    color: #3C2E21;
  }
  .side-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 80%;
    margin: 0 auto;
  }
  /* メニューの白い立体ボタン */
  .side-nav a {
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 14px 0;
    text-decoration: none;
    color: #3C2E21;
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: 0 2px 0 #EBE8DA;
  }
  .side-nav a:hover {
    transform: translateY(2px);
    box-shadow: 0 0px 0 #EBE8DA;
  }
  .side-nav .en {
    font-size: 20px;
    letter-spacing: 0.15em;
    line-height: 1.2;
  }
  .side-nav .jp {
    font-size: 11px;
    font-weight: 700;
    color: #775B41;
  }
  /*メインコンテンツ*/
  .mv-text {
    font-size: 20px;
  }
  .release-shop {
    font-size: 18px;
  }
  .about-text {
    max-width: 418px;
    margin: 0 auto;
    font-size: 16px;
    background-image: url(../images/common/book02.png);
  }
  .limit-notice-wrap {
    margin: 60px auto 60px;
    text-align: center;
  }
  .limit-title-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  .limit-title-wrap h2.en {
    font-size: 35px;
    color: #3C2E21;
    letter-spacing: 0.17em;
    margin-bottom: 0;
  }
  .megahon-icon {
    width: 50px;
    height: auto;
    margin-left: -50px;
  }
  .limit-box {
    max-width: 440px;
  }
  .limit-header {
    padding: 15px 10px;
  }
  .limit-header h3 {
    font-size: 20px;
  }
  .limit-body {
    padding: 40px 20px;
  }
  .limit-text-top, .limit-text-bottom {
    font-size: 17px;
  }
  .limit-text-main {
    font-size: 28px;
    margin: 15px 0;
  }
  .limit-text-note {
    font-size: 13px;
  }
  .profile-text {
    font-size: 16px;
  }
  .notice-announce-box {
    width: 307px;
  }
  .announce-text .name {
    font-size: 25px;
  }
  .announce-text .event, .announce-text .decision {
    font-size: 30px;
  }
  .fukidashi-wrap {
    bottom: 93px;
    right: -96px;
    width: 150px;
    height: 120px;
  }
  .fukidashi-text {
    font-size: 16px;
    margin-top: 0px;
    margin-left: 10px;
  }
  .notice-detail-box {
    max-width: 430px;
  }
  .about-loop-wrap {
    margin-top: 40px;
  }
  #accContent .content-inner {
    padding: 60px 20px 40px;
  }
  .detail-block p.date-makuhari {
    font-size: 18px;
  }
  .detail-block p {
    font-size: 17px;
  }
  .detail-notes {
    font-size: 16px;
  }
  .condition-box-yellow {
    max-width: 390px;
    font-size: 16px;
  }
  .text-large-bold {
    font-size: 19px;
  }
  .condition-note {
    font-size: 16px;
    margin: 15px auto 70px;
    max-width: 390px;
  }
  .period-frame {
    max-width: 390px;
  }
  .frame-date {
    font-size: 18px;
  }
  .intro-text p {
    font-size: 16px;
  }
  .intro-text p {
    font-size: 16px;
    max-width: 350px;
    margin: 0 auto;
    width: 95%;
  }
  .item-main-bg {
    padding: 0px 0 0px;
  }
  .item-intro {
    z-index: 999;
  }
  .intro-text p br {
    display: none;
  }
  .item-main-bg .item-intro.scroll-fade.is-visible img {
    margin-top: -50px;
    z-index: 9999;
  }
  .item-info h4 {
    font-size: 18px;
  }
  .item-info .price {
    font-size: 20px;
  }
  .item-img-box {
    height: 300px;
  }
  .item-img-box img {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
  }
  /* PC表示時はSP用のハンバーガーボタンを非表示にする */
  .nav-button {
    display: none !important;
  }
}
/* =========================================================
   ページトップへ戻るボタン（影なし・矢印＋TOP文字）
========================================================= */
.page-top-btn {
  position: fixed;
  bottom: -80px; /* 最初は画面外（下）に隠しておく */
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #E87A4D;
  border-radius: 50%;
  display: flex;
  flex-direction: column; /* 矢印と文字を縦に並べる */
  justify-content: center;
  align-items: center;
  z-index: 999;
  text-decoration: none;
  color: #ffffff;
  transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform 0.2s;
  /* 影は削除 */
}
/* スクロールして付与されるクラス（画面内に表示） */
.page-top-btn.is-show {
  bottom: 20px;
}
/* ホバー時の動き（フワッと上に浮く） */
.page-top-btn:hover {
  transform: translateY(-4px);
}
/* 上向きの矢印（少し小さめに調整） */
.page-top-btn .arrow {
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(45deg);
  margin-bottom: 2px; /* 文字との隙間 */
}
/* TOPの文字 */
.page-top-btn .en {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
/* =========================================================
   タブレット・PC共通：メインコンテンツの調整（561px以上で適用）
========================================================= */
@media screen and (min-width: 561px) {
  .page-top-btn {
    right: 30px;
    width: 60px;
    height: 60px;
  }
  .page-top-btn.is-show {
    bottom: 30px;
  }
  .page-top-btn .arrow {
    width: 10px;
    height: 10px;
    margin-bottom: 4px;
  }
  .page-top-btn .en {
    font-size: 12px;
  }
}

