/* Color and font variables */
:root {
  --dgray: #DCDCDC;
  --white: #FFFBF6;
  --black: #2F2725;
  --font-main: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
}


html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  font-family: var(--font-main);
  color: var(--black);
  width: 100%;
  scroll-behavior: smooth;
  overflow: hidden;
}

html {
  overflow-y: scroll;
}

body {
  max-width: 390px;
  margin: 0 auto;
}


@media (max-width: 767px) {
    body {
      max-width: 100vw;
      margin: 0 auto;
    }

}

@media (max-width: 390px) {
    body {
      max-width: 100%;
      margin: 0 auto;
    }

}
/* --- Header & Hero --- */

@media screen and (min-width: 768px) {
    .header {
    position: fixed;
    top: 0;
    left: calc(50%);
    transform: translateX(-50%);
    width: 100%; /* box-sizing: border-box; の適用により、この幅がパディングやボーダーを含んだ合計幅になります */
    max-width: 390px;
    z-index: 100;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
    box-shadow: none;
    overflow: hidden;
  }

}

@media (max-width: 767px) {
    .header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%; /* box-sizing: border-box; の適用により、この幅がパディングやボーダーを含んだ合計幅になります */
    max-width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
    box-shadow: none;
    overflow: hidden;
}

}

.header-logo {
    display: flex;
     /* 親要素の幅（390px）を100%占めるようにします */
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px; /* このパディングはwidth: 100%の中に含まれるようになります */
    background-color: #fff;
    display: flex;
}

.header-logo h1 {
    display: inline-block;
    margin: 0;
}

.header-logo img {
    height: 20px;
    width: auto;
    transition: filter 0.3s ease;
}

.header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pc-item01 {
  position: fixed;
  top: 8%;
  left: 5%;
  width: 120px;
  height: auto;
  display: flex;
    flex-direction: column;
}

.pc-item02 {
  position: fixed;
  top: 12%;
  left: 26%;
  width: 50px;
  height: auto;
  display: flex;
    flex-direction: column;
}

.pc-item03 {
  position: fixed;
  top: 74%;
  left: 14%;
  width: 120px;
  height: auto;
  display: flex;
    flex-direction: column;
}

.pc-item04 {
  position: fixed;
  top: 10%;
  left: 78%;
  width: 160px;
  height: auto;
  display: flex;
    flex-direction: column;
}

.pc-item05 {
  position: fixed;
  top: 68%;
  left: 68%;
  width: 130px;
  height: auto;
  display: flex;
    flex-direction: column;
}

.pc-item06 {
  position: fixed;
  top: 78%;
  left: 88%;
  width: 98px;
  height: auto;
  display: flex;
    flex-direction: column;
}



.hero {
  background-color: #E66134;
  padding: 80px 12px 80px;
  background-size: cover;
  background-position: center;
  width: 100;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  background-size: cover;
  background-position: top;
  text-align: center;
  box-shadow: none;
  top: 0;
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 390px) {
  .hero-bg {
  background-color: #E66134;
  background-size: cover;
  background-position: center;
  width: 100%;
  position: relative;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  background-size: cover;
  background-position: top;
  text-align: center;
  box-shadow: none;
  top: 0;
  left: 0;
  z-index: 1;
  }
}

/* --- Section Spacing --- */
#cp-overview {
  background-image: url(../img/sec1_bg.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: relative;
  padding: 80px 0 40px 0;
  overflow: hidden;
  z-index: 100;
}

#cp-overview .item01 {
  position: absolute;
  top: 0.5%;
  left: 2%;
  width: 87px;
  height: auto;
}

#cp-overview .item02 {
  position: absolute;
  top: 38%;
  left: 75%;
  width: 86px;
  height: auto;
}

#cp-overview .item03 {
  position: absolute;
  top: 94%;
  left: 2%;
  width: 105px;
  height: auto;
  z-index: 10;
}

#cp-overview .wrapper {
  padding: 0 12px 24px;
  padding-bottom: 32px;
}
#cp-overview .overview01 {
  padding-bottom: 32px;
}
#cp-overview .overview02 {
  padding-bottom: 24px;
}

#cp-overview .overview02-anchor img {
  padding-bottom: 40px;
  width: 80%;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 768px) and (min-width: 500px) {
#cp-overview .overview02 {
  padding-bottom: 32px;
}

#cp-overview .overview02-anchor img {
  padding-bottom: 48px;
  width: 80%;
  margin: 0 auto;
  display: block;
}
}

#cp-overview .wrapper .box {
  background-color: #FFF5D3;
  display: flex;
  padding: 48px 24px 40px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 9px 20px 0 rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0.1);
}

#cp-overview .wrapper .flexbox h2 {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 8px;
}
#cp-overview .wrapper .flexbox ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

@media screen and (max-width: 768px) and (min-width: 500px) {
  #cp-overview .wrapper .flexbox h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  text-align: center;
  margin-top: 48px;
  margin-bottom: 20px;
}

#cp-overview .wrapper .flexbox ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  gap: 16px;
}
}

ul{
  padding-left:0;
}

li{
  list-style:none;
}


/* --- Registration Section --- */

#registration .wrapper {
  background-color: #FBF8EC;
  padding: 64px 16px 64px;
  justify-content: center;
  align-items: center;
}

#registration .wrapper h2 {
  width: 60%;
  margin: 0 auto;
}

#registration .step01 {
  margin-top: 32px;
  position: relative;
}
#registration .step01 .entry {
  position: absolute;
  width: 80%;
  top: 65%;
  left: 50%;
  transform: translateX(-50%);
}
#registration .step02 {
  margin-top: 48px;
  position: relative;
  margin-bottom: 32px;
}
#registration .bridge {
  margin: 0 auto;
  width: 45%;
  top: 65%;
}

#registration .item01 {
  position: absolute;
  width: 126px;
  top: 141%;
  left: 85%;
  transform: translateX(-50%);
}


/* --- Subscription Section --- */
.subscription {
  padding: 48px 16px;
  margin-top: -80px;
  background-color: #EE771A;
  box-sizing: border-box;
  z-index: 100;
  position: relative;
}

#subscription .bridge {
  margin-top: -80px;
}

#subscription h2 {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

#subscription .point3-01 {
  position: relative;
  margin-bottom: 24px;
}

#subscription .search {
  position: absolute;
  width: 90%;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
}

#subscription .remarks {
  font-size: 14px;
  line-height: 150%;
  color: #FFF;
  text-align: left;
  margin-top: 24px;
  z-index: 10;
  position: relative;
}

#subscription .sec3-remark {
  background-color: #FCF9EE;
  text-align: left;
  padding: 48px 24px 48px;
  position: relative;
}

/* --- accordion --- */
.acc {
  z-index: 10;
   margin: 16px 0 32px; 
  }

.acc__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: transparent;
  color: #fff;

  border: 1px solid #fff;
  border-radius: 8px;

  padding: 20px 16px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;

  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.acc__trigger:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.acc__icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;

  /* ここがポイント：回転させて＋→× */
  transition: transform 220ms ease;
}

.acc__icon::before,
.acc__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

/* 縦棒 */
.acc__icon::after {
  width: 2px;
  height: 16px;
}

/* 開いたら45deg回転＝×になる */
.acc__trigger[aria-expanded="true"] .acc__icon {
  transform: rotate(45deg);
}

/* パネル（開閉アニメ用） */
.acc__panel { overflow: hidden; }
.acc__panel.is-animating { transition: max-height 260ms ease; }

@media (prefers-reduced-motion: reduce) {
  .acc__panel.is-animating { transition: none; }
}

/* 中身のレイアウト */
.acc__content {
  padding: 0 0 4px;
}

/* 画像を囲うdiv（3つ共通） */
.acc__imgBlock {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  margin: 12px 0;
  position: relative;
}

/* 画像を幅100%で表示 */
.acc__imgBlock img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}

.step03-entry {
  position: absolute;
  top: 29%;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
}

.step03-search {
  position: absolute;
  top: 93%;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
}



/* --- detail --- */
#cp-detail .wrapper {
  max-width: 92%;
  margin: 0 auto;
}

#cp-detail .info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#cp-detail .info .inner-info {
  display: block;
}
#cp-detail .info .inner-info ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}
#cp-detail .info .inner-info ul .inner-txt {
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
#cp-detail .info .inner-info .flex-box {
  gap: 0px;
}

#cp-detail .info .inner-info .flex-box li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
#cp-detail .info .inner-info .flex-box li img {
  width: 20%;
}
#cp-detail .info .inner-info dl {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: #333 solid 1px;
  margin-bottom: 16px;
}
#cp-detail .info .inner-info dl dt {
  width: 8%;
}
#cp-detail .info .inner-info dl dd {
  font-size: 20px;
  font-weight: bold;
  margin-left: 0;

}
#cp-detail .info .inner-info p {
  font-size: 15px;
  font-weight: 600;
  line-height: 160%;
}
#cp-detail .info .inner-info p span {
  font-size: 12px
  vertical-align: baseline;
}
#cp-detail .info .inner-info .check {
  font-size: 12px;
  line-height: 160%;
  font-weight: 400;
  margin-top: 16px;
}
#cp-detail .info .inner-info ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}
#cp-detail .info .inner-info .btn {
  width: 180px;
  margin-top: 16px;
  display: block;
}
#cp-detail .btn-aela {
  margin-top: 64px;
}
#cp-detail .btn-aela .cp-entry {
  display: block;
  margin: 0 auto;
  width: 100%;
}
#cp-detail .btn-aela .flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#cp-detail .btn-aela .flex h3 {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
#cp-detail .btn-aela .flex .inner-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}
#cp-detail .btn-aela .flex .inner-flex .btn {
  width: 100%;
}
#cp-detail .flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}

footer {
  margin-top: 64px;
  padding: 16px 0;
  background-color: #004831;
}
footer p {
  font-size: 9px;
  text-align: center;
  color: #FFF;
}


@media screen and (min-width: 1200px) {

  .pc-bg {
  position: fixed;
  background-color: #FCB900;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  padding: 180px 180px;
  align-items: flex-start;
  align-self: stretch;
  justify-content: space-between;
}

.pc-bg {
  position: fixed;
  background-color: #FCB900;
  z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    pointer-events: none;
}

.desktop-countdown {
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 201;
    top: 48%;
    right: -11%;
    height: 100vh;
    width: 380px;
    transform: translate(-60%, -50%);
    background: none;
    box-shadow: none;
}

.countdown-nav {
  position: fixed;
    display: flex;
    flex-direction: column;
    list-style: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.countdown-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.countdown-wrapper h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 130%;
  margin: 0 0 8px 0;
  letter-spacing: 0.02em;
  color: #ED6C00;
}

.countdown {
  font-weight: 600;
  line-height: 130%;
  margin: 0;
  padding-bottom: 16px;
  letter-spacing: 0.02em;
  color: #ED6C00;
}

.countdown > .time {
  font-size: 30px;
  line-height: 24px;
  font-weight: 700;
}

.countdown > .unit {
  font-size: 20px;
  line-height: 12px;
  font-weight: 500;
}

#campaign-before {
  font-size: 24px;
  font-weight: 700;
  padding: 14px 0;
  color: #ED6C00;
  text-align: center;
}

#campaign-end {
  font-size: 24px;
  font-weight: 700;
  padding: 14px 0;
  color: #ED6C00;
  text-align: center;
}

.navbtn img {
  width: 260px;
  min-width: 180px;
  padding: 0 0 24px 0;
    height: auto;
    cursor: pointer;
}


.desktop-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 201;
    top: 50%;
    left: 20%;
    height: 100vh;
    width: 240px;
    transform: translate(-60%, -50%);
    background: none;
    box-shadow: none;
  }
  .desktop-links {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
  }
}


@media screen and (min-width: 768px) and (max-width: 1199px) {


.pc-item02 {
  position: fixed;
  top: 14%;
  left: 22%;
  width: 54px;
  height: auto;
  display: flex;
    flex-direction: column;
}

.pc-item03 {
  position: fixed;
  top: 70%;
  left: 12%;
  width: 120px;
  height: auto;
  display: flex;
    flex-direction: column;
}

.pc-item04 {
  position: fixed;
  top: 13%;
  left: 78%;
  width: 150px;
  height: auto;
  display: flex;
    flex-direction: column;
}

  .pc-item05 {
  position: fixed;
  top: 62%;
  left: 70%;
  width: 104px;
  height: auto;
  display: flex;
    flex-direction: column;
}

  .pc-item06 {
  position: fixed;
  top: 74%;
  left: 86%;
  width: 90px;
  height: auto;
  display: flex;
    flex-direction: column;
}

  .desktop-pc {
  position: fixed;
  background-color: #FCB900;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  padding: 180px 180px;
  align-items: flex-start;
  align-self: stretch;
  justify-content: space-between;
}

.pc-bg {
  position: fixed;
  background-color: #FCB900;
  z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    pointer-events: none;
}

  .desktop-links {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1320px) {
.desktop-countdown {
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 201;
    top: 48%;
    right: -12%;
    height: 100vh;
    width: 320px;
    transform: translate(-60%, -50%);
    background: none;
    box-shadow: none;
}
.countdown-nav {
  position: fixed;
    display: flex;
    flex-direction: column;
    list-style: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.countdown-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.countdown-wrapper h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  margin: 0 0 8px 0;
  letter-spacing: 0.02em;
  color: #ED6C00;
}

.countdown {
  font-weight: 600;
  line-height: 130%;
  margin: 0;
  padding-bottom: 16px;
  letter-spacing: 0.02em;
  color: #ED6C00;
}

.countdown > .time {
  font-size: 28px;
  line-height: 24px;
  font-weight: 700;
}

.countdown > .unit {
  font-size: 16px;
  line-height: 12px;
  font-weight: 500;
}

#campaign-before {
  font-size: 24px;
  font-weight: 700;
  padding: 14px 0;
  color: #ED6C00;
  text-align: center;
}

#campaign-end {
  font-size: 24px;
  font-weight: 700;
  padding: 14px 0;
  color: #ED6C00;
  text-align: center;
}

.navbtn img {
  width: 220px;
  min-width: 180px;
  padding: 0 0 16px 0;
    height: auto;
    cursor: pointer;
}
}

@media screen and (min-width: 1040px) and (max-width: 1199px) {
    .desktop-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    position: fixed;
    z-index: 201;
    top: 50%;
    left: 20%;
    height: 100vh;
    width: 200px;
    transform: translate(-50%, -50%);
    background: none;
    box-shadow: none;
  }

  .desktop-countdown {
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 201;
    top: 48%;
    right: -17%;
    height: 100vh;
    width: 320px;
    transform: translate(-60%, -50%);
    background: none;
    box-shadow: none;
}
.countdown-nav {
  position: fixed;
    display: flex;
    flex-direction: column;
    list-style: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.countdown-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.countdown-wrapper h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  margin: 0 0 8px 0;
  letter-spacing: 0.02em;
  color: #ED6C00;
}

.countdown {
  font-weight: 600;
  line-height: 130%;
  margin: 0;
  padding-bottom: 16px;
  letter-spacing: 0.02em;
  color: #ED6C00;
}

.countdown > .time {
  font-size: 28px;
  line-height: 24px;
  font-weight: 700;
}

.countdown > .unit {
  font-size: 16px;
  line-height: 12px;
  font-weight: 500;
}

#campaign-before {
  font-size: 20px;
  font-weight: 700;
  padding: 14px 0;
  color: #ED6C00;
  text-align: center;
}

#campaign-end {
  font-size: 20px;
  font-weight: 700;
  padding: 14px 0;
  color: #ED6C00;
  text-align: center;
}

.navbtn img {
  width: 220px;
  min-width: 180px;
  padding: 0 0 16px 0;
    height: auto;
    cursor: pointer;
}
}

@media screen and (min-width: 950px) and (max-width: 1039px) {
    .desktop-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    position: fixed;
    z-index: 201;
    top: 50%;
    left: 15%;
    height: 100vh;
    width: 160px;
    transform: translate(-50%, -50%);
    background: none;
    box-shadow: none;
  }

  .pc-item05 {
  position: fixed;
  top: 64%;
  left: 70%;
  width: 100px;
  height: auto;
  display: flex;
    flex-direction: column;
}

  .desktop-countdown {
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 201;
    top: 48%;
    right: -15%;
    height: 100vh;
    width: 260px;
    transform: translate(-60%, -50%);
    background: none;
    box-shadow: none;
}

  .countdown-nav {
  position: fixed;
    display: flex;
    flex-direction: column;
    list-style: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.countdown-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.countdown-wrapper h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  margin: 0 0 8px 0;
  letter-spacing: 0.02em;
  color: #ED6C00;
}

.countdown {
  font-weight: 600;
  line-height: 130%;
  margin: 0;
  padding-bottom: 16px;
  letter-spacing: 0.02em;
  color: #ED6C00;
}

.countdown > .time {
  font-size: 28px;
  line-height: 24px;
  font-weight: 700;
}

.countdown > .unit {
  font-size: 16px;
  line-height: 12px;
  font-weight: 500;
}

#campaign-before {
  font-size: 20px;
  font-weight: 700;
  padding: 14px 0;
  color: #ED6C00;
  text-align: center;
}


#campaign-end {
  font-size: 20px;
  font-weight: 700;
  padding: 14px 0;
  color: #ED6C00;
  text-align: center;
}

.navbtn img {
  width: 190px;
  min-width: 180px;
  padding: 0 0 16px 0;
    height: auto;
    cursor: pointer;
}
}
@media screen and (min-width: 768px) and (max-width: 949px) {
    .desktop-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    position: fixed;
    z-index: 201;
    top: 50%;
    left: 15%;
    height: 100vh;
    width: 160px;
    transform: translate(-50%, -50%);
    background: none;
    box-shadow: none;
  }

  .pc-item05 {
  position: fixed;
  top: 58%;
  left: 74%;
  width: 80px;
  height: auto;
  display: flex;
    flex-direction: column;
}

    .desktop-countdown {
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 201;
    top: 48%;
    right: -14%;
    height: 100vh;
    width: 200px;
    transform: translate(-60%, -50%);
    background: none;
    box-shadow: none;
}

  .countdown-nav {
  position: fixed;
    display: flex;
    flex-direction: column;
    list-style: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.countdown-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}



.countdown-wrapper h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
  margin: 0 0 4px 0;
  letter-spacing: 0.02em;
  color: #ED6C00;
}

.countdown {
  font-weight: 600;
  line-height: 130%;
  margin: 0;
  padding-bottom: 8px;
  letter-spacing: 0.02em;
  color: #ED6C00;
}

.countdown > .time {
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
}

.countdown > .unit {
  font-size: 14px;
  line-height: 12px;
  font-weight: 500;
}

#campaign-before{
  font-size: 18px;
  font-weight: 700;
  padding: 8px 0;
  color: #ED6C00;
  text-align: center;
}

#campaign-end {
  font-size: 18px;
  font-weight: 700;
  padding: 14px 0;
  color: #ED6C00;
  text-align: center;
}

.navbtn img {
  width: 140px;
  padding: 0 0 14px 0;
    height: auto;
    cursor: pointer;
}
}


@media screen and (max-width: 767px) {
    /* Hide the main PC background container */
    .pc-bg {
        display: none;
    }

    .desktop-nav {
        display: none;
    }

    .pc-item01{
        display: none;
    }

    .pc-item02{
        display: none;
    }

    .pc-item03{
        display: none;
    }

    .pc-item04{
        display: none;
    }

    .pc-item05{
        display: none;
    }

    .pc-item06{
        display: none;
    }

    body {
        padding: 0; /* This will remove the 20px 10px padding */
    }

    @media (max-width: 767px) {
  /* PC用っぽいクラス名だけどSPで使う前提でOK */
  .desktop-countdown {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #003E8D;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 12px 24px;

    /* 前面に出す */
    z-index: 9999;

    /* 影（画像みたいに浮かせる） */
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
  }

  /* 背景画像を背面に敷く */
  .desktop-countdown > img {
    display: none;
  }

  /* 中身（テキスト+ボタン） */
  .countdown-nav {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .countdown-wrapper {
   justify-content: center;
   flex-direction: column;
  }

  /* 左側（残りXX日） */
  .navtime h3 {
    font-size: 12px;
    line-height: 1.2;
    margin: 0 0 4px;
    color: #FFF;
  }

  .countdown {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }

  .countdown .unit {
    font-size: 14px;
    color: #FFF;
  }

  #day.time {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #FFF;
  }

  /* 右側ボタン */
  .navbtn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .navbtn img {
    height: 34px; /* ボタンの見た目に合わせて調整 */
    width: auto;
    display: block;
  }

  #campaign-before {
  font-size: 16px;
  font-weight: 700;
  padding: 14px 0;
  color: #fff;
  text-align: center;
}

  #campaign-end {
  font-size: 16px;
  font-weight: 700;
  padding: 14px 0;
  color: #fff;
  text-align: center;
}

  /* 固定バーで本文が隠れないように下に余白を確保 */
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }
}
}

/* 初期状態（非表示・下から） */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}

/* 上方向に上げる指定（今回は fade-in-up を使う前提） */
.fade-in-up {
  transform: translateY(18px);
}

/* 表示状態 */
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ユーザーが「動き減らす」設定の場合 */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    transition: none;
    transform: none;
  }
}