* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-image: url(../images/body-bg.png);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
/* .sideber-deco {
  will-change: transform;
  width: 100%;
  height: 100vh;
  background: url('../images/sideber-deco.png') repeat-y;
  background-size: cover; 
  will-change: background-position;
} */
main {
  position: relative;
}
img {
  width: 100%;
  height: auto;
}
/*----------------------------main-bg--------------------------------*/
.sideber-content {
  position: fixed;

  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(50vw - 225px);
  height: 100vh;
}
.sideber-content._right {
  top: 4%;
  right: -2%;
  z-index: 100;
  overflow: scroll;
  padding: 20px 0;
}

.sideber-content._left {
  height: 100%;
  top: 0;
  left: 0;
}
/* アニメーション */
.anime-list {
  width: calc(50vw - 225px);
  height: 100%;
  list-style: none;
  position: relative;
}
.anime-item {
  display: block;
  width: 0;
  position: absolute;
}
.anime-item img {
  animation: rotate 60s infinite linear;
}
.anime-item:nth-child(16) {
  left: -20%;
}
.anime-item:nth-child(15) {
  left: 43%;
}
.anime-item:nth-child(14) {
  right: -25%;
}
.anime-item:nth-child(13) {
  left: -8%;
}
.anime-item:nth-child(12) {
  left: 30%;
}
.anime-item:nth-child(11) {
  right: -28%;
}
.anime-item:nth-child(10) {
  left: -23%;
}
.anime-item:nth-child(9) {
  left: 33%;
}
.anime-item:nth-child(8) {
  right: -20%;
}
.anime-item:nth-child(7) {
  left: 10%;
}
.anime-item:nth-child(6) {
  left: 33%;
}
.anime-item:nth-child(5) {
  right: -23%;
}
.anime-item:nth-child(4) {
  left: -25%;
}
.anime-item:nth-child(3) {
  left: -5%;
}
.anime-item:nth-child(2) {
  left: 35%;
}
.anime-item:nth-child(1) {
  right: -20%;
}
.anime-item img {
  width: 100%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(10deg);
  }
  20% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-10deg);
  }
  40% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
  }
  70% {
    transform: rotate(-10deg);
  }
  80% {
    transform: rotate(0deg);
  }
  90% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* .sideber-list {
  position: relative;
  font-size: clamp(21px, 1.2vw, 33px);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  margin-top: min(28vw, 15px);
  text-align: center;
  border-radius: 9999px;
  padding: min(0.7vw, 15px) 0;
  letter-spacing: 0.1rem;
  text-decoration: none;
  color: #fff;
} */

.sideber-img {
  width: 45%;
  margin-right: min(1.8vw, 38px);
}
.sideber-nav {
  width: 60%;
}
.sideber-nav li {
  width: 95%;
  list-style: none;
  margin-top: min(1.4vw, 20px);
}

.sideber-sns_box {
  margin-top: min(3.5vw, 35px);
}
.sideber-sns_box p {
  font-size: clamp(25px, 1.2vw, 33px);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1rem;
  color: #004211;
}
.sideber-sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 50%;
  margin-top: min(3.33vw, 18px);
  margin-inline: auto;
}

@media screen and (max-width: 1440px) {
  .sideber-content._right {
    display: none;
  }
  .sideber-content._left {
    display: none;
  }
}
.mv-title {
  /*MVのメインビジュアル調整*/
  /*h1タイトル*/
  width: 100%;
  margin-left: -10%;
  position: relative;
}
.main-deco {
  position: absolute;
  top: 0;
  left: 53%;
  transform: translateX(-50%);
  animation: floatY 3s ease-in-out infinite;
}
@keyframes floatY {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px); /* 上に20px動く */
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

/*------------------------------------------------------------*/
.all-content {
  position: relative;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/*----------------------------mv--------------------------------*/
.mv-container {
  /*MVの背景画像調整など*/
  position: relative; /*親要素に*/
  background-image: url(../images/mv-main.png); /*背景画像*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 22% 0 6% 0;
  z-index: 0;
}
.mv-day {
  /*日付タイトルの配置*/
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
}
.mv-content {
  /*MVのメインビジュアルとテキスト画像のレイアウト調整*/
  position: relative;
  display: flex;
  flex-direction: column; /*縦並びにする*/
  justify-content: center;
  align-items: center;
}
.mv-title {
  /*MVのメインビジュアル調整*/
  /*h1タイトル*/
  width: 95%;
  margin: 0 auto;
  margin-right: min(5.6vw, 30px);
}
.mv-stamp_box {
  position: relative;
}
.mv-stamp {
  width: 100%;
}
.mv-text_box {
  /*mvテキスト画像の配置調整など*/
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  display: flex;
}

.mv-number_box {
  width: min(11.3vw, 55px);
  height: min(18vw, 90px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #000;
  border-right: none;
}
.mv-number {
  /*mvテキスト画像の配置調整など*/
  font-size: clamp(50px, 14.63vw, 80px);
  font-family: 'barlow', sans-serif;
  font-weight: 700;
}
.mv-number._red {
  color: #ec2e00;
}
.mv-number._pink {
  color: #f0909e;
}
.mv-number._orange {
  color: #fc8300;
}
.mv-number._green {
  color: #6eba3f;
}
.mv-number._blue {
  color: #0068b7;
}
.mv-number._parple {
  color: #915da3;
}
.border-paple {
  border-right: 1px solid #000;
}
/*-------------MVアイテムのスタイル------*/
.mv-text {
  /*mvテキスト画像の配置調整など*/
  position: relative;
  /*pタイトル*/
  width: 100%;
  margin-right: auto;
}
.mv-deco {
  /*アイテム全体のスタイル*/
  width: 20%;
  position: absolute;
  z-index: -1;
}
.mv-deco._yello {
  /*黄色い草の配置調整*/
  width: 14%;
  top: -9%;
  right: -4%;
}
.mv-deco._kakao {
  /*カカオ豆の配置調整*/
  top: -10%;
  right: 19%;
  z-index: -1;
  width: 15%;
}
.mv-deco._blend {
  /*ブレンドの配置調整*/
  width: 33%;
  bottom: 14%;
  right: -4%;
}
.mv-deco._grass {
  /*草の配置調整*/
  width: 16%;
  position: absolute;
  top: -6%;
  right: 21%;
}
.mv-deco._kakao02 {
  /*カカオ豆の配置調整*/
  width: 16%;
  position: absolute;
  top: -9%;
  left: 22%;
}
.mv-deco._brown {
  position: absolute;
  top: 14%;
  left: -9%;
}
/*---------------------------section全体--------------------------------*/
.section-content {
  /*各セクション背景色の調整*/
  position: relative;
  background-color: #fff062;
}
.content {
  /*各セクションの余白調整*/
  padding: 0 min(6.5%, 34px) 66px min(6.5%, 34px);
}
/*----------------------------prizeセクション--------------------------------*/

.content._prize {
  position: relative;
  padding: 6% 6.5% 0 6.5%;
  z-index: 2;
}

.content._prize::after {
  /*prizeの背景色*/
  content: '';
  position: absolute;
  bottom: -21%;
  left: 0;
  width: 100%;
  height: 36%;
  background-color: #ffc5dc;
  transform: skewY(-12deg);
  transform-origin: bottom left;
  z-index: -1;
}
.gift-btn {
  width: 25%;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 200;
}
@media screen and (min-width: 540px) {
  .gift-btn {
    width: 150px;
    position: fixed;
    bottom: 0;
    right: calc((50% - 227px));
    z-index: 400;
  }
}

.prize-title {
  position: absolute;
  width: 84%;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 123;
}
.prize-box {
  /*景品アイテムボックスのスタイル調整*/

  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.prize-item {
  /*景品アイテムのスタイル調整*/
  width: 100%;
}
.prize-text {
  font-size: clamp(7px, 1.83vw, 9px);
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
}
.prize-complete {
  width: 100%;
  margin-top: 20px;
}

/*--------------sectionタイトル--------------------*/
.section-title {
  position: relative;
  margin: 0 auto;
  width: 60%;
  z-index: 1;
}
.l-container {
  width: 85%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.introduction-prizeWrap {
  margin-top: 1.1rem;
}
._prizeA .prizeApplyBtn {
  background-color: #ed6c00;
}
.introduction-prizeBox._prizeA {
  border: 5px solid #ed6c00;
  border-radius: 20px;
}
/*----------------------------productsセクション--------------------------------*/
.content._products {
  position: relative;
  background-color: #ffc5dc;

  margin-top: -21px;
}
.content._products::after {
  /*productsの背景色*/
  content: '';
  position: absolute;
  bottom: -16%;
  left: 0;
  width: 100%;
  height: 36%;
  background-color: #fff062;
  transform: skewY(-12deg);
  transform-origin: bottom left;
  z-index: 1;
}
.products-box {
  /*クリップパスの上に配置*/
  position: relative;
  z-index: 12;
  margin-top: min(6vw, 30px);
}
.prize-products-img {
  width: 100%;
  margin-top: min(3.7vw, 20px);
}
.prize-products-textBox {
  width: 100%;

  color: #004211;
}
.prize-products-itemBox {
  /*対象商品のテキスト調整*/
  width: 100%;
  height: min(185px, 40vw);
  font-size: clamp(9px, 2.6vw, 11.5px);
  font-weight: 900;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  letter-spacing: -0.01rem;
  margin-top: min(2vw, 10px);
  overflow-y: scroll;
  overflow-x: hidden; /* ← 横バーを強制的に消す */
}
@media screen and (max-width: 500px) {
  .prize-products-itemBox  {
    font-size: min(2.4vw, 12.5px) !important;
  }
}

.prize-bonus {
  width: 95%;
  margin: min(6.11vw, 33px) auto 0 auto;
}

/*----------------------------Applyセクション--------------------------------*/
.content._prize-Apply {
  position: relative;
  background-color: #fff062;
  margin-top: min(5.56vw, -30px);
}
.products-bg02 {
  /*クリップパス調整と設定*/
  width: 100%;
  height: 107%;
  background-color: #ade7ff;
  position: absolute;
  top: -8%;
  left: 0;
  transform: skewY(-15deg);
  transform-origin: center;
  z-index: 1;
}
/*----------------------------courseセクション--------------------------------*/
.course {
  margin-top: min(3.33vw, 18px);
}
.course-complete {
  width: 103%;
  margin-top: min(4.62vw, 25px);
}
.course-box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
}
.wchance-bg {
  position: relative;
  padding-bottom: min(17vw, 92px);
  padding-inline: min(6.5%, 34px);
}
.wchance-bg::after {
  position: absolute;
  z-index: 0;
  content: '';
  display: block;
  height: 15%;
  width: 100%;
  background-color: #ade7ff;
  bottom: -14%;
  left: 0;
  transform: skewY(-13deg);
  transform-origin: bottom left;
}
/*----------------------------wchanceセクション--------------------------------*/
.content._wchance {
  position: relative;
  background-color: #ade7ff;
  margin-top: -3%;
}
.content._wchance::after {
  /*wchanceの背景色*/
  content: '';
  position: absolute;
  bottom: -35%;
  left: 0;
  width: 100%;
  height: 36%;
  background-color: #ed6c00;
  transform: skewY(-10deg);
  transform-origin: bottom left;
  z-index: 0;
}
.secion-title._wchance {
  position: relative;
  width: 49.5%;
  margin: 0 auto;
}
.wchance-deco {
  position: absolute;
  width: 50%;
  top: -156%;
  left: -33%;
}
@media screen and (min-width: 390px) {
  .wchance-deco {
    width: 35%;
    top: -118%;
    left: -20%;
  }
  .secion-title._wchance {
    width: 65.5%;
  }
}
.wchance-text {
  width: 100%;
  margin: min(4.3vw, 23px) auto 0 auto;
}
.wchance-img {
  width: 100%;
  margin-top: min(3.33vw, 18px);
}
.wchance-winning {
  width: 100%;
  margin-top: min(5.92vw, 32px);
}
.mypage {
  padding: min(12vw, 55px) 0;
}
.mypage-img {
  width: 42.2%;
  margin: 0 auto;
  margin-bottom: min(3.1vw, 23px);
}
.s .mypage-img {
  width: 50.2%;
}
.mypage-btn {
  width: 83.6%;
  margin: 0 auto;
  display: block;
}
.c-special._top {
  padding-top: min(13vw, 65px);
}
.c-wchance-slider-item._step3 .wchance-post {
  row-gap: 2px;
  top: 46%;
}
.c-wchance-slider-item._step3 .wchance-post li {
  width: 93%;
  margin: 0 auto;
}
.c-wchance-slider-item .wchance-post li:first-child {
  margin-bottom: min(2.8vw, 15px);
}
.c-wchance-slider-item .wchance-post li:last-child {
  width: 95%;
  margin: min(0.93vw, 5px) auto 0 auto;
}

.wchance-post-img {
  position: relative;
}
.wchance-post-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*----------------------------スライダー--------------------------------*/
.slick-dotted.slick-slider {
  position: relative;
  z-index: 123;
}
.slide-arrow {
  background-color: #1d2088;
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}
.next-arrow {
  border-bottom: 15px solid #ade7ff;
  border-left: 15px solid #1d2088;
  border-right: 0;
  border-top: 15px solid #ade7ff;
  right: -4%;
}
.prev-arrow {
  border-bottom: 15px solid #ade7ff;
  border-left: 0;
  border-right: 15px solid #1d2088;
  border-top: 15px solid #ade7ff;
  left: -3%;
}
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
}
.slick-dots li button:before {
  font-size: 16px;
  color: #fff;
  opacity: 0.75;
}
.slick-dots li.slick-active button:before {
  color: #1d2088;
}

/*----------------------------courseセクション--------------------------------*/
.section-title._course {
  width: 47%;
  margin: 0 auto;
}
.s .section-title._course {
  width: 55%;
}
/*----------------------------footerセクション--------------------------------*/
.content._footer {
  position: relative;
  background-color: #fff062;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  padding-top: min(8.5vw, 46px);
  padding-bottom: min(26vw, 160px);
}
.footer-img {
  width: 95%;
  margin: 0 auto;
  margin-bottom: min(2.3vw, 15px);
}

.footer-text li {
  font-size: min(2.6vw, 12px);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  text-align: left;
  color: #004211;
  line-height: 1.6;
  list-style: none;
}
/*----------------------------モバイル--------------------------------*/
@media screen and (max-width: 375px) {
  .ec-itemBox p {
    margin-left: 12px;
  }
}
@media screen and (min-width: 1441px) {
  .c-nav {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  .hamburger {
    position: fixed;
    bottom: 0;
    right: calc((50% - 212px));
    z-index: 4000;
  }

  .c-nav.open {
    position: fixed;
    bottom: 0;
    right: calc((50% - 250px));
  }
}
@media screen and (max-width: 500px) {
  .hamburger {
    position: fixed;
    bottom: 0;
    right: 20px;
    z-index: 4000;
  }
  .c-nav.open {
    position: fixed;
    bottom: 0;
    right: 0;
  }
}

.introduction-prizeBox {
  position: relative;
  width: 94%;
  background-color: #fff;
  margin: min(10vw, 50px) auto min(5vw, 25px) auto;
  box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.3);
  padding: 1rem 0;
}
.introduction-prizeBoxIcon {
  position: absolute;
  top: -8%;
  left: -6%;
  width: 21%;
}
.prizeFlexInner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  justify-items: center;
  width: 87%;
  margin: 0 auto;
  margin-left: min(11.1vw, 52px);
}
.prizeFlexInner02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  width: 87%;
  margin: 0 auto;
  border-radius: 20px;
}

.introduction-prizeName02 {
  width: 80%;
}

.introduction-prizeName {
  width: 98%;
}
.introduction-prizeImg {
  width: 107%;
}
.introduction-prizeImg._prizeB {
  width: 83% !important;
}
.prizeSup {
  font-size: min(1.6vw, 8px);
  font-weight: bold;
  width: 92%;
  margin: 0 auto;
  text-align: left;
}
.prizeSup span {
  font-feature-settings: 'palt';
}
.introduction-prizeBox._prizeB {
  border: 5px solid #009944;
  border-radius: 20px;
  padding-top: 6px;
}

.slider-deco15 {
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
}
.slider-deco01 {
  position: absolute;
  top: 0;
  left: 30%;
  width: 20%;
}
.slider-deco02 {
  position: absolute;
  top: 20%;
  right: 0;
  width: 20%;
}
.slider-deco03 {
  position: absolute;
  top: 80%;
  left: 0;
  width: 20%;
}
.slider-deco04 {
  position: absolute;
  top: 35%;
  right: 10%;
  width: 20%;
}
.slider-deco05 {
  position: absolute;
  top: 40%;
  left: 20%;
  width: 20%;
}
.slider-deco06 {
  position: absolute;
  top: 20%;
  left: 0;
  width: 20%;
}
.slider-deco07 {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 20%;
}
.slider-deco08 {
  position: absolute;
  top: 40%;
  right: 0;
  width: 20%;
}
.slider-deco09 {
  position: absolute;
  top: 20%;
  left: 30%;
  width: 20%;
}
.slider-deco10 {
  position: absolute;
  top: 60%;
  left: 0;
  width: 20%;
}
.slider-deco11 {
  position: absolute;
  top: 60%;
  left: 30%;
  width: 20%;
}
.slider-deco12 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 20%;
}
.slider-deco13 {
  position: absolute;
  top: 60%;
  right: 0;
  width: 20%;
}
.slider-deco14 {
  position: absolute;
  top: 0;
  left: 55%;
  width: 20%;
}
.slider-deco16 {
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
}
/*----------------------------PC画面サイズエラーメッセージ--------------------------------*/
.pc-error-message-bg {
  display: none;
  width: 100vw;
  min-height: 100dvh;
  background-color: #f8c058;
  position: relative;
  background-image: url(../common/images/pc-error-message-bg.png);
  background-size: 100% 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.pc-error-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66vw;
}

/* 位置決めは今のまま活かす */
.slider-deco01,
.slider-deco02,
.slider-deco03,
.slider-deco04,
.slider-deco05,
.slider-deco06,
.slider-deco07,
.slider-deco08,
.slider-deco09,
.slider-deco10,
.slider-deco11,
.slider-deco12,
.slider-deco13,
.slider-deco14,
.slider-deco15,
.slider-deco16 {
  position: absolute;
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.cp_scroll_05 {
  width: 100%;
  height: 1px;
}
.cp_brand {
  width: 100%;
  height: 100%;
  display: block;
}
.cp_scroll_07 {
  width: 100%;
  height: 1px;
}
.cp_scroll_08 {
  width: 100%;
  height: 1px;
}
.prizeSup sub {
  line-height: 1;

  font-size: 0.8em; /* 小さすぎる場合は調整 */
}
