/* 全体リセット（本格的にはnormalize.cssなどでもOK） */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "inter", "Noto Sans JP", "Helvetica Neue", "Yu Gothic", "游ゴシック体", sans-serif;
  background-color: #ffffff;
  color: #404040;
  font-size: 16px;
   transition: opacity 1.5s ease;
  overflow-x: hidden; 
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

/* 共通セクション */
.section {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

@media (max-width: 767px) {
  .section {
    gap: 0px;
    }
}

.title-Style {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 0 0;
    align-self: center;       /* セクション内で左右センターに */
    gap: 47px;
    width: 95%;
    padding: 100px 10px 0;
    margin: 0 auto;           /* 念のためブロック自体も中央寄せ */
}


@media (max-width: 767px) {
  .title-Style {
    padding: 50px 10px 0;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  #movie .title-Style {
    padding: 30px 0 20px ;  /* 上50px / 左右40px / 下0 に上書き */
  }
}

.title-Style img,
.title-Style svg {
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
  .title-Style img {
    height: 45px;
    margin: 0 auto;
  }
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.wave-separator {
  width: 100%;
  margin-top: -2px;  /* 上に2px移動 */
}

.wave-separator svg {
  display: block;
  width: 100%;
  height: auto;
}

p {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

div {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nowrap {
  white-space: nowrap;
}

/* ヘッダー（固定） */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

/* ここから各セクションごとのスタイルを追加していく */
/* TOP専用スタイル */ 

.section--top {
  max-width: none;
  padding: 0;          /* 他セクションと余白を分けたい場合 */
}

.hero {
  position: relative;
  width: 100%;
}

.hero-deco-right {
  width: auto;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end; 
  pointer-events: none;
  padding: 0 2% 2%;
}

.hero-deco-left {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
  padding: 0 2% 2%;
}

.bubble {
  pointer-events: auto;
  cursor: pointer;
}

/* 2秒間隔でぴょんと跳ねるアニメーション */
@keyframes bubble-jump {
  0%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-15px);
  }
  40% {
    transform: translateY(0);
  }
}

.bubble {
  animation: bubble-jump 2s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-deco img {
  display: block;
}

.hero-deco-right img {
  width: 40vw;
  height: auto;
}

@media (max-width: 767px) {
  .hero-deco-right img {
    width: 60vw;  /* スマホ時は少し大きめに表示 */
  }
}

.hero-deco-left img {
  width: 20vw;
  height: auto;
}

@media (max-width: 767px) {
  .hero-deco-left img {
    width: 25vw;  /* スマホ時は少し大きめに表示 */
  }
}

.hero-image {
  width: 100%;
  height: auto; /* アスペクト比を維持して自動調整 */
  display: block; /* 余計な隙間を防ぐ */
}

/* NEWS */ 

/* ++++NEWSセクションスタイル++++ */
.section--news {
  background: #ffffff;
  padding: 40px 40px;
}

@media (max-width: 767px)  {
  .section--news{
     padding: 10px 15px;
  }
}

.news-articles{
 max-width: 850px;
  width: 80%;
}

@media (max-width: 767px)  {
  .news-articles{
    width: 90%;
  }
}


/* 記事のスタイル */
#news-list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem; /* 日付とタイトルの間の余白を3倍に拡大 */
  border-bottom: 2px dotted #00B8E1; /* 記事の下に線を追加 */
  padding: 20px 0px;

}
/* スマホ表示用（767px以下の場合） */
@media (max-width: 767px) {
  #news-list li  {
    flex-direction: column; /* 縦並びに変更 */
    align-items: flex-start; /* 左揃え */
    gap: 0rem; /* 縦並び時の間隔を調整 */
    padding: 20px 0px;
  }
}


#news-list .date {
  font-size: 1rem; /* タイトルと同じサイズ */
}

/* スマホ表示用（767px以下の場合） */
@media (max-width: 767px) {
  #news-list .date {
    font-size: 1rem; /* タイトルと同じサイズ */
    margin-bottom: 5px;
  }
}

#news-list .text a {
  font-size: 1.125rem; /* タイトルサイズ */
  font-weight: normal;
  line-height: 1.5; /* 行間を広げる */
  color: #404040;
}

/* スマホ表示用（767px以下の場合） */
@media (max-width: 767px) {
  #news-list .text a {
    font-size: 1rem; /* タイトルサイズ */
    font-weight: normal;
    line-height: 1.2; /* 行間を広げる */
  }
}


/* "and more" リンクのスタイル */
.news-more {
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .news-more {
    margin: 40px 0;
  }
}

.news-more a {
  text-decoration: none;
  color: var(--main-color);
  font-weight: bold;
  font-size: 1.2rem;
  color: #bbbbbb;
}

.news-more a:hover {
  color: #00B8E1;
}



/* MOVIE */
.section--movie {
  background: #ffffff;
}

/* スライダーの外枠 */
.movie-slider-wrapper {
  width: 100%;
  max-width: 825px;        /* サムネ最大幅に合わせて中央寄せ */
  margin: 0 auto;
  position: relative;
  overflow: hidden;        /* 常にはみ出た部分を隠す */
}

@media (max-width: 768px) {
  .movie-slider-wrapper {
    width: 95%;
  }
}

/* 動画サムネイルを横並びに（スライドコンテナ） */
.movie-grid {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* 1枚ずつ表示（横にスライド） */
.movie-item {
  flex: 0 0 100%;          /* 1スライド = コンテナ幅100% */
  text-align: center;
}

.movie-thumbnail {
  max-width: 825px;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}



.movie-text {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 120%;
}

@media (max-width: 767px) {
  .movie-text {
      font-size: 0.8rem;
  }
}

/* MOVIE ドットナビゲーション */
.movie-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.movie-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  transition: background 0.3s ease, transform 0.3s ease;
}

.movie-dots .dot.active {
  background: #00B8E1;
  transform: scale(1.2);
}

/* ポップアップ用のモーダル */
/* モーダルのフェード用 */
.modal {
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px; /* 最大幅を大きく設定 */
  padding: 20px;
}

.close {
  position: absolute;
  top: -50px;
  right: 20px;
  font-size: 3.5rem; 
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* ★ 16:9を強制 */
  display: block;
}

.modal-image-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.modal-image-content img {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .modal-image-content {
  }
}


/* RELEASE */


.section--release  {
  width: 100%;
  position: relative;
  overflow: hidden; /* ★ セクション外にはみ出た部分は描画しない */
  background-color: #00B8E1;
  background-image: url("../img/release/point_release.svg");
  background-repeat: no-repeat;
  background-position: right -40px bottom 40px;
  background-size: clamp(300px, 30vw, 380px);
  padding: -2px 0 200px;
}

@media (max-width: 767px) {
  .section--release {
    background-image: none;
  }
}

.cd-item {
    width: 100%;
    gap: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1111px) {
  .cd-item {
    width: calc(50% - 40px);
  }
}

.cd-number {
    display: flex;
    max-width: 590px;
    width: 100%;
    flex-direction: column;
    transform: translateY(40px); 
}


.cd-contents {
    display: flex;
    max-width: 590px;
    width: 95%;
    height: auto;
    padding: 44px 66px;
    align-items: center;
    gap: 43px;
    flex-shrink: 0;
    border-radius: 71px;
    background: #FFF;
    flex-direction: column;
}

@media (max-width: 767px) {
  .cd-contents {
    padding: 35px 30px; /* スマホ時はパディングを小さめに */
    gap: 30px;
  }
}

.btn-buy {
  max-width: 250px;
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .btn-buy {
    max-width: 180px;
  }
}

.btn-buy--center {
  margin: 0 auto;
  width: auto;
}

.cd-top-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

@media (max-width: 767px) {
  .cd-top-text {
    padding-top: 10px;
  }
}

.cd-title {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: clamp(1rem, 2vw, 1.8rem);
    font-style: normal;
    font-weight: 800;
    line-height: normal;

    display: flex;
    width: 100%;
    padding: 10px 56px;
    justify-content: center;
    align-items: center;

    border-radius: 21px;
    background: #00B8E1;
}

.cd-top-detail01  {
    color: #00B8E1;
    text-align: center;
    font-family: Inter;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.cd-top-detail02  {
    color: #00B8E1;
    text-align: center;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.cd-jacket {
  max-width: 420px;
  width: 100%;
  padding: 5px;
  border-radius: 20px;
  display: block;
}

.cd-jacket-disabled {
  max-width: 420px;
  width: 100%;
  padding: 5px;
  border-radius: 20px;
  display: block;
}

.cd-title-tokuten {
    color: #00B8E1;
    text-align: center;
    font-family: Inter;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 6px 51px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 23.5px;
    border: 2px solid #00B8E1;
}

.cd-middle-text {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 22px;
}

.cd-detail {
    color: #787878;
    text-align: left;
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.tracklist {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    align-self: stretch;
}

.tracklist ol {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    color: #787878;
    line-height: 200%;   
}

.tracklist li.track-note {
    font-size: 0.7em;  /* 見出しより少しだけ小さく */
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.track-credit {
  font-size: 0.7em;  /* 見出しより少しだけ小さく */
  padding-left: 10px;
}

.cd-track-title {
  color: #00B8E1;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.tracklist svg {
  width: 100%;
  height: auto;
  display: block;
}

/* 2カラムCDリストラッパー */
.cd-list {
  max-width: 1240px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1110px) {
  .cd-item--dummy {
    display: none;
  }
}

@media (min-width: 1111px) {
  .cd-item--dummy {
    visibility: hidden;
  }
}


/* SPECIAL */
.section--special {
  width: 100%;
  background: url("../img/special/sp-bg.jpg") no-repeat center center;
  background-size: cover;
}

.sp-campaign {
  max-width: 1200px;
  width: 95%;
}

.sp-campaign:last-of-type {
  padding-bottom: 100px;
}

.special-lead {
  color: #FEF4A9;
  text-align: center;
  margin: 0 auto;
  font-size: clamp(0.9rem, 3vw, 2.25rem); /* 最小16px / 最大36px 相当でスケーリング */
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 9999px;
  background: #00E1C7;    
  max-width: 1200px;
  width: 80%;
  padding: 10px 15px;
  transform: translateY(clamp(25px, 4vw, 40px));
}


.sp-container {
  margin: 0 auto;               /* 左右センター合わせ */
  display: flex;
  flex-direction: column;
  align-items: center;           /* 中身も左右センター */
  gap: 30px;                     /* 要素間のギャップを30pxに */
  border-radius: 45px;
  border: 6px solid #00E1C7;
  background: rgba(255, 255, 255, 0.80);
  padding-bottom: 40px;
}


.sp-set-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 33px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

@media (max-width: 767px) {
  .sp-set-wrap {
    gap: 0px;
  }
}

.sp-set {
  display: flex;
  max-width: 100% !important;
  width: 100% !important;
  flex-direction: column;
  align-items: center;
  gap: 33px;
  padding: 40px 10px 100px 10px;
}

@media (max-width: 767px) {
  .sp-set {
  padding: 40px 10px 20px 10px;
  }
}

.event-item {
  width: 90%;
}

.sp-set-title {
  width: 100%;
  color: #FF004F;
  text-align: center;
  font-size: clamp(0.9rem, 2.5vw, 1.5rem);  /* 最小16px / 最大24px 相当でスケーリング */
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.sp-set-title--blue {
  color: #00B8E1;
}

.sp-set-title--yellow {
  color: #fb9b00;
}

.sp-set-desc {
  text-align: center;
  font-size: clamp(0.8rem, 2.5vw, 1.25rem);  /* 最小16px / 最大24px 相当でスケーリング */
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.sp-set-img {
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
}

.sp-period {
  width: 90%;
  text-align: left;
  font-size: clamp(0.9rem, 2.5vw, 1.3rem); /* 最小16px / 最大24px 相当でスケーリング */
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.sp-period--center {
  text-align: center;
}

/* 応募期間 の行だけ余白を消す／詰める */
.sp-period--center-nopad {
  padding-top: 0 !important;
  margin-top: 0;
}

.sp-period:first-of-type {
  font-weight: 700;
  padding-top: 80px;
}

@media (max-width: 767px) {
  .sp-period:first-of-type  {
  padding-top: 40px;
    }
}

.sp-event-title {
  color: #FF004F;
  font-size: clamp(0.9rem, 2.5vw, 1.3rem); /* 最小16px / 最大24px 相当でスケーリング */
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
  text-align: left;
  padding-bottom: 5px;
}

.sp-event-detail {
  font-style: normal;
  line-height: normal;
}

.sp-highlight-box {
  color: #FF004F;
  font-weight: 700;
}



/* STORE */

.section--store {
  width: 100%;
  position: relative;         /* ★ 絶対配置のデコ丸の基準にする */
  overflow: hidden;           /* ★ セクション外にはみ出た部分を隠す */
  background-color: #00B8E1;
  background-image: url("../img/store/point_store.svg");
  background-size: clamp(300px, 30vw, 380px);  /* 画面幅に応じてスケール（最小200px〜最大450px） */
  background-repeat: no-repeat;
  background-position: right -40px bottom 80px;
  padding: 100px 0 200px;  /* 上100px / 左右0 / 下200px */
}

@media (max-width: 767px) {
  .section--store {
    background-image: none;
  padding: 50px 0 100px;  /* 上100px / 左右0 / 下200px */
  }
}

.store-list {
  width: 95%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;              /* アイテム間のギャップを100pxに */
  justify-content: center; /* グリッド全体を左右中央寄せ */
  justify-items: center;   /* 各アイテムをセル内で中央寄せ */
  padding-top: 40px;
}

@media (max-width: 767px) {
  .store-list {
    gap: 10px;
  }
}

.store-item {
  max-width: 505px;
  width: 100%;
  margin: 0 auto;              /* セル内でも左右センター寄せ */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-bottom: 60px;
}

@media (max-width: 767px) {
  .store-item {
    gap: 10px;
  }
}


.store-item--dummy {
  visibility: hidden;
}

@media (max-width: 767px) {
  .store-item--dummy {
    display: none;
  }
}


.store-item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .store-item img {
    width: 90%;
    margin: 0 auto;
  }
}

.store-note {
  width: 95%;
  color: #FFF;
  font-size: 0.8rem;  /* 14px相当（16pxベース） */
  font-style: normal;
  line-height: normal;
}

.store-desc {
  color: #FFF;
  text-align: center;
  font-size: 1.25rem;  /* 20px相当（16pxベース） */
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 767px) {
  .store-desc {
    font-size: 0.8rem; /* 少し小さく（20px相当） */
    line-height: 1.3;  /* 行間さらに狭く */
    font-weight: 500;
  }
}

.store-title {
  color: #FEF4A9;
  text-align: center;
  font-size: 1.5rem;  /* 24px相当（16pxベース） */
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

@media (max-width: 767px) {
  .store-title {
    font-size: 0.8rem; /* 少し小さく（20px相当） */
    line-height: 1.2;  /* 行間さらに狭く */
    font-weight: 600;
  }
}

/* COMMENT */

.section--comment {
  width: 100%;
  background: url("../img/comment/comment-bg.jpg") no-repeat center center;
  background-size: cover;
}

.comment-inner {
  padding: 200px 0;               /* 上下に100pxパディング */
  display: flex;
  flex-direction: column;
  justify-content: center;         /* 内側コンテンツを上下センター */
  align-items: center;             /* 左右センター */
  width: 100%;
}

@media (max-width: 767px) {
  .comment-inner {
    padding: 100px 0;               /* 上下に100pxパディング */
  }
}

.comment-item {
  max-width: 1220px;
  width: 95%;
  flex-shrink: 0;
  border-radius: 61px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
  padding-bottom: 100px;
}

.comment-profile {
  color: #787878;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.comment-label {
  font-weight: 600;
}

.comment-name {
  color: #787878;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.comment-body {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.comment-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 90%;
  max-width: 1053px;
  margin: 0 auto;
}


.comment-image img {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .comment-image img {
    width: 80%;
    margin: 0 auto;
  }
}

@media (min-width: 767px) {
  .comment-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 38px;
  }

  .comment-image {
    flex: 0 0 auto;
  }

  .comment-body {
    flex: 1 1 auto;
  }
}

/* PROFILE */

.profile-container {
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;   /* 上下センター合わせ */
  gap: 50px;
  padding: 100px 0;          /* 上下に100pxの余白を追加 */
}

@media (max-width: 767px) {
  .profile-container {
    padding: 30px 0 100px 0;          /* 上下に100pxの余白を追加 */
  }
}

.profile-text {
    max-width: 1053px;
    width: 100%;
    flex-shrink: 0;
    color: #787878;
    font-style: normal;
    font-weight: 400;
    line-height: 225%; /* 225% */
}

@media (max-width: 767px) {
  .profile-text {
    line-height: normal;
  }
}

.profile-logo {
  max-width: 500px;
  width: 80%;
  height: auto;
  display: block;
}

.profile-pic {
  max-width: 1053px;
  width: 100%;
  height: auto;
  display: block;
}

.icon-list {
  display: flex;
  justify-content: center; /* 横方向センター */
  align-items: center;
  gap: 40px;
}

.icon-list img {
  width: clamp(24px, 5vw, 40px);
  height: auto;
  display: block;
}
/* FOOTER */

.section--footer {
  width: 100%;
  height: 20vh;
  background: url("../img/common/footer_bg.jpg") no-repeat center center;
  background-size: cover;
}

.footer-tex {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    background-color: #00B8E1;
    padding: 20px 0 80px 0;
    transform: translateY(clamp(50px, 12vh, 300px)); 
}

/* LOADER */
.loader {
  position: fixed;
  inset: 0;                 /* top:0; right:0; bottom:0; left:0 と同じ */
  z-index: 9999;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.8s ease;
  pointer-events: all;
}

.loader-text {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #00B8E1; /* サイトのメインカラーに合わせておく */
}

.loader-logo {
  max-width: 500px;
  width: 80%;
  height: auto;
  display: block;
}

/* フェードアウト後の状態 */
.loader--hidden {
  opacity: 0;
  pointer-events: none;
}


/* JSでこのクラスを付けると、全体がふわっと表示される */
body.is-loaded {
  opacity: 1;
}
/* RELEASE Decorative Circle */
.release-deco01 {
  position: absolute;
  top: 40px;
  left: -4%;
  z-index: 0;              /* タイトルの背面に配置したい場合は0のまま */
  pointer-events: none;
}

@media (max-width: 767px) {
  .release-deco01 {
    top: 2px;  /* スマホ表示時はさらに上に配置 */
  left: -20%;
  }
}

/* アニメーション付き RELEASEデコ丸 */
.release-circle01 {
  width: clamp(200px, 40vw, 507px);  /* 最小200px〜最大507pxでスケール */
  height: auto;
  display: block;
  z-index: 0;              /* タイトルの背面に配置したい場合は0のまま */
  opacity: 0;              /* 最初は非表示 */
  transform: translateX(-40px) rotate(-8deg); /* 左から＆少し回転させて待機 */
  transition: opacity 0.8s ease, transform 0.8s ease; /* フェード＋スライド＋回転 */
}

.release-circle01.is-visible {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

.release-deco02 {
  position: absolute;
  top: 300px;
  right: -8%;
  z-index: 0;              /* タイトルの背面に配置したい場合は0のまま */
  pointer-events: none;
}

@media (max-width: 767px) {
  .release-deco02 {
    top: 100px;  /* スマホ表示時はさらに上に配置 */
  right: -50%;
  }
}

.release-circle02 {
  width: clamp(400px, 40vw, 734px);  /* 最小400px〜最大734pxでスケール */
  height: auto;
  display: block;
  z-index: 0;              /* タイトルの背面に配置したい場合は0のまま */
  opacity: 0;              /* 最初は非表示 */
  transform: translateX(40px) rotate(8deg); /* 右から＆少し回転させて待機 */
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s; /* フェード＋スライド＋回転、0.3sディレイ */
}

.release-circle02.is-visible {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

.section--release .title-Style,
.section--release .cd-list {
  position: relative;
  z-index: 1;  /* release-deco(release-circle) より前面に表示 */
}

.section--store .title-Style,
.section--store .store-list {
  position: relative;
  z-index: 1;
}

/* STORE内だけ右側デコ丸を小さく＆少し上に */
.section--store .release-deco02 {
  top: -20px !important;   /* 上に移動（必要に応じて調整） */
  right: -40px !important;
}

.section--store .release-deco02 .release-circle02 {
  width: clamp(130px, 25vw, 350px) !important;  /* 画面幅に応じて自動スケール */
  height: auto !important;
  max-width: none !important;
}

/* STORE 内だけ左側デコ丸を少し下げて左へ移動（px指定） */
.section--store .release-deco01 {
  top: 60px !important;
  left: -100px !important;   /* だいたい -8% と同じくらいの“気持ち左” */
}

.fade-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 早めに表示させるバージョン */
.fade-scroll-early {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-scroll-early.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ハンバーガーメニュー */
.hamburger {
  position: fixed;
  top: 26px;
  right: 16px;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  z-index: 2000;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background-color: #333;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* 開いたときの「×」アニメーション */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
/* 中央線を完全に消す */
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0); /* ←点も残らず完全に消える */
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* スライドナビ（右→左にスライドイン） */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  max-width: 80%;
  height: 100vh;
  background-color: #FFA228; /* 指定のオレンジ */
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-drawer.open {
  transform: translateX(0); /* 右から左へスライドして表示 */
}

.nav-drawer ul {
  list-style: none;
  margin: 0;
  padding: 40px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-drawer li {
  width: 100%;
  text-align: left;
}

.nav-drawer a {
  display: block;
  width: 100%;
  padding: 10px 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.nav-drawer a:hover,
.nav-drawer a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .hamburger {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .nav-drawer ul {
    padding: 60px 20px;
  }
}