@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/* メディアクエリ
------------------------------------------------------------*/
/* フォントサイズ
------------------------------------------------------------*/
/* textstyle
------------------------------------------------------------*/
/* border-radius
------------------------------------------------------------*/
/* animation
------------------------------------------------------------*/
/* color
------------------------------------------------------------*/
html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", Meiryo, sans-serif;
  overflow-x: hidden;
  font-size: 1rem;
  background: #000;
  word-break: break-all;
}
body.open {
  overflow: hidden;
  height: 100vh;
}

html > body {
  color: #909a9b;
  font-feature-settings: "palt";
}

*,
*:before,
*:after {
  box-sizing: border-box;
  letter-spacing: 1px;
}

img {
  display: block;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #777;
  font-weight: 900;
  line-height: 1.4;
}

p,
ul,
ol,
dl,
label {
  color: #000;
  line-height: 1.6;
  text-align: left;
  font-size: 1rem;
}

.l-header {
  position: relative;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 30px;
  height: 80px;
  background: linear-gradient(116.3deg, #FEBA29 16.54%, #FD0B73 82.98%);
}
@media screen and (max-width: 961px) {
  .l-header {
    padding: 0 12px;
    height: 70px;
  }
}

/* ハンバーガーメニューボタン */
.l-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 11;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.l-menu-btn:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.4);
  outline-offset: 2px;
}

.l-menu-trigger {
  display: block;
  width: 24px;
  height: 18px;
  position: relative;
}
.l-menu-trigger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.l-menu-trigger span:nth-child(1) {
  top: 0;
}
.l-menu-trigger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-menu-trigger span:nth-child(3) {
  bottom: 0;
}

/* 開いたとき X に変形 */
.l-menu-btn[aria-expanded=true] .l-menu-trigger span {
  background: #fff;
}
.l-menu-btn[aria-expanded=true] .l-menu-trigger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.l-menu-btn[aria-expanded=true] .l-menu-trigger span:nth-child(2) {
  opacity: 0;
}
.l-menu-btn[aria-expanded=true] .l-menu-trigger span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(45deg);
}

footer {
  padding: 30px 0;
  background: linear-gradient(90deg, #FEBA29 0%, #FD1F6B 100%);
}
footer .l-footer-text {
  text-align: center;
  font-size: 0.875rem;
  color: #fff;
}

/* ナビゲーションモーダル（ハンバーガーメニュー） */
.p-nav-modal {
  position: fixed;
  inset: 0;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  background: url("../img/bg_menu.webp") no-repeat center center/cover #fff;
}
.p-nav-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.p-nav-modal__overlay {
  position: absolute;
  inset: 0;
  background: url("../img/bg_info-bottom.webp") no-repeat center bottom clamp(30px, 6vw, 60px)/90% auto;
}

.p-nav-modal__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 80px 24px 40px;
}

.p-nav-modal__nav {
  width: 100%;
  max-width: 698px;
}

.p-nav-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-nav-modal__list li {
  position: relative;
  margin: 0;
  padding: 0;
}
.p-nav-modal__list li a {
  display: block;
  padding: clamp(20px, 2vw, 40px) 0 clamp(26px, 2vw, 40px);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(2rem, 8vw, 4rem);
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 961px) {
  .p-nav-modal__list li a {
    line-height: 1.4;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.p-nav-modal__list li a span {
  font-size: clamp(0.875rem, 3vw, 1.2rem);
}
@media screen and (max-width: 961px) {
  .p-nav-modal__list li a:hover {
    opacity: 0.5;
  }
}
.p-nav-modal__list li {
  /* 各項目の下にグラデーションのボーダー */
}
.p-nav-modal__list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FEBA29 0%, #FD0B73 100%);
}
.p-nav-modal__list li:first-child a {
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(90deg, #FEBA29 0%, #FD0B73 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.p-nav-modal__list li:first-child a span {
  color: transparent;
}

.c-button {
  background: #009FB3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 100px;
  text-decoration: none;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
}
.c-button:hover {
  opacity: 1;
  background: #0f0937;
}
@media screen and (max-width: 961px) {
  .c-button {
    font-size: 0.875rem;
  }
}

/* 初期状態 */
.js-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

input[type=text], input[type=email] {
  margin: 0 auto;
  padding: 18px 18px;
  display: block;
  height: 74px;
  max-width: 800px;
  width: 100%;
  background: #FFFDF4;
  border: 1px solid #E0DBC1;
  border-radius: 6px;
}
@media screen and (max-width: 961px) {
  input[type=text], input[type=email] {
    height: 54px;
  }
}

.p-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
}
.p-radio input[type=radio] {
  display: none;
}
.p-radio .p-radio-mark {
  margin: 2px 0 0;
  width: 22px;
  height: 22px;
  border: 1px solid #E0DBC1;
  background: #FFFDF4;
  border-radius: 50%;
  position: relative;
  transition: border-color 0.2s;
}
.p-radio .p-radio-mark::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.2s;
}
.p-radio input[type=radio]:checked + .p-radio-mark {
  border-color: #0f0937;
}
.p-radio input[type=radio]:checked + .p-radio-mark::after {
  background-color: #0f0937;
}

.p-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.p-check input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 21px;
  height: 21px;
  background: #FFFDF4;
  border: 1px solid #E0DBC1;
  border-radius: 4px;
}
.p-check input[type=checkbox]:checked:before {
  position: absolute;
  top: 4px;
  left: 7px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #0f0937;
  border-bottom: 2px solid #0f0937;
  content: "";
}

.p-file__wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-file {
  display: inline-block;
  padding: 0.5em 1em;
  background-color: #FFFDF4;
  color: #909a9b;
  border: 1px solid #E0DBC1;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
}
.p-file .p-file-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.p-file .p-file-input:hover {
  cursor: pointer;
}

.p-file-name {
  font-size: 0.875rem;
  color: #909a9b;
}

textarea {
  padding: 18px 18px;
  display: block;
  width: 100%;
  height: 200px;
  max-width: 800px;
  background: #FFFDF4;
  border: 1px solid #E0DBC1;
  border-radius: 6px;
}

button[type=submit] {
  text-align: center;
  font-weight: 500;
  color: #fff;
  width: 100%;
  font-size: 1.125rem;
  letter-spacing: 4px;
  border-radius: 10px;
}

.c-floating-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: clamp(140px, 14vw, 160px);
  padding: 0 clamp(16px, 2vw, 40px);
  z-index: 20;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-floating-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 40px);
  width: 100%;
}
.c-floating-banner__link {
  display: block;
  max-width: 522px;
  width: 50%;
  padding: clamp(14px, 2vw, 26px) 10px;
  border: 3px solid #fff;
  border-radius: 9px;
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background-image: url(../img/bg_schedule.webp), linear-gradient(90deg, #436ad1 0%, #00d5be 100%);
  background-repeat: repeat;
  background-size: 10px, auto;
  white-space: nowrap;
  line-height: 1.4;
  filter: brightness(1) saturate(1);
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.c-floating-banner__link:hover, .c-floating-banner__link:focus-visible {
  opacity: 1;
  filter: brightness(0.72) saturate(1.22);
}

.p-top {
  padding-bottom: clamp(120px, 12vw, 160px) !important;
}

.p-top .p-top-sectiontitlebadge {
  margin: 0 auto;
  max-width: 458px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-sectiontitlebadge {
    width: 80%;
  }
}
.p-top .p-top-sectiontitlebadge img {
  width: 100%;
}
.p-top .p-top-ribbon {
  margin: clamp(40px, 4vw, 60px) auto 0;
  padding: 0 clamp(20px, 2vw, 40px);
  width: min(1196px, 100%);
  height: clamp(34px, 4.5vw, 70px);
  display: grid;
  place-items: center;
  position: relative;
  background: linear-gradient(90deg, #f1a318 0%, #ff3a7a 100%);
  clip-path: polygon(18px 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}
.p-top .p-top-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1.2px);
  background-size: 8px 8px;
  opacity: 0.35;
  clip-path: inherit;
}
.p-top {
  /* 文字画像（中央） */
}
.p-top .p-top-ribbon-img {
  max-width: 614px;
  width: 100%;
  display: block;
}
.p-top {
  /* バンド横スクロール：PC 80px / SP 35px、リキッドで中間もスムーズに変化 + 無限ループアニメーション */
}
.p-top .p-top-band-scroll {
  width: 100%;
  height: clamp(35px, 7.8vw, 80px);
  overflow: hidden;
}
.p-top .p-top-band-scroll-inner {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  height: 100%;
  animation: p-top-band-scroll-anim 64s linear infinite;
}
.p-top .p-top-band-scroll-item {
  flex-shrink: 0;
  height: 100%;
}
.p-top .p-top-band-scroll-item img {
  height: 100%;
  width: auto;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top .p-top-intro {
  background: url("../img/bg_intro.webp") no-repeat center center/cover;
  padding: clamp(50px, 6vw, 100px) clamp(16px, 3vw, 80px) clamp(80px, 8vw, 160px);
}
.p-top .p-top-intro .p-top-intro-inner {
  max-width: 1196px;
  margin: 0 auto;
  text-align: center;
}
.p-top .p-top-intro .p-top-intro-inner .p-top-introtitle {
  margin: 0 auto;
  max-width: 850px;
}
.p-top .p-top-intro .p-top-intro-inner .p-top-introtitle img {
  width: 100%;
}
.p-top .p-top-intro .p-top-intro-inner .p-top-contentsgrid {
  margin: clamp(40px, 4vw, 60px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-intro .p-top-intro-inner .p-top-contentsgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-top .p-top-intro .p-top-intro-inner .p-top-contentsgrid .p-top-contentsgriditem img {
  width: 100%;
}
.p-top .p-top-campaign-outline {
  background: url("../img/bg_campaign-outline.webp") no-repeat bottom center/cover;
  padding: clamp(80px, 8vw, 120px) clamp(16px, 5vw, 80px) clamp(120px, 12vw, 160px);
}
.p-top .p-top-campaign-outline-card {
  position: relative;
  margin: clamp(30px, 3vw, 40px) auto 0;
  padding: clamp(60px, 6vw, 100px) clamp(16px, 5vw, 80px) clamp(40px, 4vw, 60px);
  max-width: 990px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-outline-card {
    border-radius: 20px;
  }
}
.p-top .p-top-campaign-outline-card {
  /* 頭部分のグラデーション帯（イエロー→オレンジ→赤みがかったオレンジ） */
}
.p-top .p-top-campaign-outline-card::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(30px, 3vw, 52px);
  border-radius: 40px 40px 0 0;
  background: linear-gradient(90deg, #ffe082 0%, #ffb74d 50%, #e64a19 100%);
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-outline-card::before {
    border-radius: 20px 20px 0 0;
  }
}
.p-top .p-top-campaign-outline-card .p-top-campaign-outline-lead img {
  margin: 0 auto;
  width: 100%;
}
.p-top .p-top-campaign-outline-card .p-top-campaign-outline-lead img:nth-child(1) {
  max-width: 522px;
}
.p-top .p-top-campaign-outline-card .p-top-campaign-outline-lead img:nth-child(2) {
  max-width: 682px;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-outline-card .p-top-campaign-outline-lead img:nth-child(2) {
    margin: 6px auto 0;
  }
}
.p-top .p-top-campaign-outline-card .p-top-campaign-outline-lead img:nth-child(3) {
  max-width: 810px;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-outline-card .p-top-campaign-outline-lead img:last-child {
    margin: 6px auto 0;
    width: 80%;
  }
}
.p-top .p-top-campaign-outline-card .p-top-campaign-outline-label {
  margin: 40px auto 0;
  max-width: 724px;
  width: 100%;
  display: block;
}
.p-top .p-top-campaign-outline-card .p-top-campaign-outline-label img {
  width: 100%;
}
.p-top .p-top-campaign-outline-card .p-top-campaign-outline-value {
  margin: 20px auto 0;
  max-width: 700px;
  width: 100%;
  display: block;
}
.p-top .p-top-campaign-outline-card .p-top-campaign-outline-value img {
  width: 100%;
}
.p-top .p-top-campaign-outline-card .p-top-campaign-outline-note {
  margin: clamp(20px, 3vw, 40px) auto 0;
  text-align: center;
  color: #777;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-outline-card .p-top-campaign-outline-note {
    text-align: left;
    font-size: 0.875rem;
  }
}
.p-top {
  /* キャンペーン条件・受け取り方法を同一背景で囲む（斜めカット） */
}
.p-top .p-top-campaign-wrapper {
  margin: -80px 0 0;
  padding: clamp(80px, 8vw, 160px) clamp(16px, 5vw, 80px) clamp(120px, 12vw, 200px);
  background: linear-gradient(135deg, #ffdb9f 0%, #eb598c 100%);
  overflow: hidden;
  /* 上側だけ斜め、下側は水平 */
  clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-wrapper {
    clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  }
}
.p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcards {
  padding: 20px 0 0;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcards {
    padding: 0;
  }
}
.p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcard {
  margin: 24px auto 0;
  max-width: 990px;
  padding: 28px clamp(10px, 2vw, 34px) clamp(10px, 2vw, 34px);
  border: clamp(5px, 1vw, 10px) solid #fff;
  border-radius: 30px;
  background: url("../img/bg_detailcard.webp") no-repeat center top/100% auto #fff;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcard {
    background: url("../img/bg_detailcard-sp.webp") no-repeat center top/100% auto #fff;
  }
}
.p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcard .p-top-detailcardtitle {
  margin: 0 auto;
  padding: 10px 0 14px;
  max-width: 500px;
  font-size: 2.25rem;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  background: linear-gradient(90deg, #f1a318 0%, #ff3a7a 100%);
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcard .p-top-detailcardtitle {
    padding: 6px 0 6px;
    font-size: 1.25rem;
  }
}
.p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcard .p-top-detailcard-box {
  margin: 30px auto 0;
  padding: clamp(20px, 2vw, 40px) clamp(16px, 3vw, 60px) clamp(20px, 2vw, 30px);
  border-radius: 20px;
  background: #fff8da;
  border: 2px solid #febf3a;
}
.p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcard .p-top-detailcardsubtitle {
  margin: 0 !important;
  color: #6f5c07;
  text-align: center;
  font-size: 1.25rem;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcard .p-top-detailcardsubtitle {
    margin: 10px auto 0 !important;
    font-size: 1rem;
  }
}
.p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcard .p-top-detailcardheading {
  margin: 20px 0 0;
  font-size: 1.375rem;
  font-weight: 900;
  color: #FC1A6D;
}
.p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcard .p-top-detailcardlead {
  margin: 20px 0 0;
  color: #FC1A6D;
  font-weight: 700;
  font-size: 1.125rem;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcard .p-top-detailcardlead {
    font-size: 1rem;
  }
}
.p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcard .p-top-detailcard-fanclubimg {
  margin: 20px 0 0;
}
.p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcard .p-top-detaillist {
  margin: 20px 0 0;
  font-weight: 700;
}
.p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcard .p-top-detaillist .p-top-detaillistitem {
  margin: 16px 0;
}
.p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcard .p-top-detaillist + .p-top-detailcardheading {
  margin: 40px 0 0;
}
.p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcard .p-top-detaillist--links {
  margin: 20px 0 0;
}
.p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcard .p-top-detaillist--links li {
  margin: 0 10px 0 0 !important;
  display: inline-block;
}
.p-top .p-top-campaign-wrapper .p-top-campaign-condition .p-top-detailcard .p-top-detailcardsubtitle {
  margin: 20px 0 0;
  font-weight: 700;
}
.p-top .p-top-campaign-wrapper .p-top-receive {
  margin: clamp(80px, 8vw, 120px) auto 0;
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-sectiontitlebadge {
  max-width: 520px;
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivecard {
  margin: 40px auto 0;
  padding: clamp(40px, 4vw, 60px) clamp(16px, 4vw, 60px) clamp(40px, 4vw, 60px);
  max-width: 990px;
  background: #fff;
  border-radius: clamp(20px, 2vw, 40px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  overflow: hidden;
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivecardinner {
  margin: 0 auto;
  max-width: 728px;
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivelead {
  font-size: 1.125rem;
  text-align: center;
  color: #000;
  font-weight: 700;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivelead {
    font-size: 1rem;
    text-align: left;
  }
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivebtn {
  margin: 20px auto 0;
  max-width: 522px;
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivebtnlinktext {
  text-align: center;
  color: #FC1A6D;
  font-weight: 700;
  font-size: 1rem;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivebtnlinktext {
    font-size: 0.875rem;
  }
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivesteps {
  margin: 36px auto 0;
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivesteps .p-top-receivestep {
  padding: 30px 30px 30px 60px;
  background: #fff7d2;
  font-weight: 700;
  font-size: 1.125rem;
  color: #302b16;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivesteps .p-top-receivestep {
    padding: 20px 16px 20px 44px;
    font-size: 1rem;
  }
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivesteps .p-top-receivestep span {
  margin-left: -1.5rem;
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivesteps .p-top-receivestep:nth-child(2) {
  margin: 20px 0 0;
  position: relative;
  /* 手順1と手順2の間に下向き矢印（オレンジ→赤のグラデーション） */
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivesteps .p-top-receivestep:nth-child(2)::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(34px, 4vw, 48px);
  height: clamp(32px, 4vw, 45px);
  background: url("../img/obj_arrow-bottom.webp") no-repeat center/contain;
  display: block;
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivenote {
  margin: 50px auto 0;
  font-size: 1.125rem;
  color: #000;
  font-weight: 700;
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivenote + .u-txt--right {
  margin: 10px auto 0;
  font-size: 1rem;
  text-align: right !important;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivenote {
    margin: 30px auto 0;
    font-size: 1rem;
    text-align: left;
  }
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivenote-wrapper {
  padding: 0 40px;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivenote-wrapper {
    padding: 0;
  }
}
.p-top .p-top-campaign-wrapper .p-top-receive .u-txt--linethrough + .p-top-receivenote {
  margin: 10px auto 0;
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivenote-list {
  margin: 30px auto 0;
  color: #FC1A6D;
  font-weight: 700;
  font-size: 1.125rem;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivenote-list {
    margin: 30px auto 0;
    font-size: 1rem;
  }
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-receivenote-list + .p-top-receivenote {
  margin: 20px auto 0;
  font-size: 1rem;
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-deliverytitle {
  margin: 60px auto 0;
  text-align: center;
  display: block;
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-deliverylist .p-top-deliveryitem {
  margin: 30px 0 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-deliverylist .p-top-deliveryitem .p-top-deliveryrange {
  font-size: 1.5rem;
  text-align: center;
  color: #777;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-wrapper .p-top-receive .p-top-deliverylist .p-top-deliveryitem .p-top-deliveryrange {
    font-size: 1.125rem !important;
  }
}
.p-top .p-top-campaign-wrapper .p-top-receive .p-top-deliverylist .p-top-deliveryitem .p-top-deliverydate {
  font-size: 1.5rem;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-campaign-wrapper .p-top-receive .p-top-deliverylist .p-top-deliveryitem .p-top-deliverydate {
    font-size: 1.125rem !important;
  }
}
.p-top .p-top-schedule {
  padding: clamp(80px, 8vw, 100px) clamp(16px, 5vw, 80px) clamp(120px, 12vw, 160px);
  background: url("../img/bg_schedule.webp") center/18px auto, url("../img/bg_schedule-top.webp") no-repeat left top/40% auto, url("../img/bg_schedule-bottom.webp") no-repeat right bottom/40% auto, url("../img/bg_schedule-decoration.webp") no-repeat right 10vw top 4vw/225px auto;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-schedule {
    background: url("../img/bg_schedule.webp") center/18px auto, url("../img/bg_schedule-top.webp") no-repeat left top/60% auto, url("../img/bg_schedule-bottom.webp") no-repeat right bottom/60% auto, url("../img/bg_schedule-decoration.webp") no-repeat right clamp(10px, 1vw, 10vw) top 6vw/clamp(60px, 6vw, 225px) auto;
  }
}
.p-top .p-top-schedule .p-top-scheduletitle {
  margin: 0 auto;
  max-width: 474px;
  width: 100%;
  display: block;
  text-align: center;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-schedule .p-top-scheduletitle {
    width: 80%;
  }
}
.p-top .p-top-schedule .p-top-schedulegroups {
  margin: 0 auto;
  max-width: 990px;
}
.p-top .p-top-schedule .p-top-schedulegroup {
  margin: 80px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-schedule .p-top-schedulegroup {
    flex-direction: column;
  }
}
.p-top .p-top-schedule .p-top-schedulegroup:first-child {
  margin: 40px auto 0;
}
.p-top .p-top-schedule .p-top-schedulegroup .p-top-schedulegrouptitle {
  max-width: 180px;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-schedule .p-top-schedulegroup .p-top-schedulegrouptitle {
    max-width: 120px;
  }
}
.p-top .p-top-schedule .p-top-schedulegroup .p-top-schedulelist {
  color: #fff;
  text-align: left;
  flex: 1;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-schedule .p-top-schedulegroup .p-top-schedulelist {
    font-size: 1.125rem;
  }
}
.p-top .p-top-schedule .p-top-schedulegroup .p-top-schedulelist li {
  margin: 20px 0 0;
}
.p-top .p-top-schedule .p-top-schedulegroup .p-top-schedulelist li:first-child {
  margin: 0;
}
.p-top .p-top-schedule .p-top-ribbon {
  margin: clamp(60px, 6vw, 80px) auto 0;
}
.p-top .p-top-schedule .p-top-schedulenote {
  margin: 20px auto 0;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-schedule .p-top-schedulenote {
    font-size: 1rem;
    text-align: left;
  }
}
.p-top .p-top-info-wrapper {
  padding: clamp(80px, 8vw, 100px) clamp(16px, 5vw, 80px) clamp(200px, 30vw, 340px);
  background: url("../img/bg_info-bottom.webp") no-repeat center bottom clamp(30px, 6vw, 60px)/90% auto, url("../img/bg_info.webp") no-repeat center center/cover;
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notestitle {
  margin: 0 auto;
  max-width: 338px;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-info-wrapper .p-top-notes .p-top-notestitle {
    width: 60%;
  }
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox {
  margin: 24px auto 0;
  max-width: 990px;
  padding: 42px clamp(16px, 4vw, 60px) 80px;
  border: 4px solid transparent;
  border-radius: 24px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #ffeb36 0%, #ff63b6 18%, #a126bd 38%, #5639d6 55%, #0cf0c2 100%) border-box;
  background-clip: padding-box, border-box;
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-notesboxinner {
  margin: 0 auto;
  max-width: 728px;
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-notesboxtitle {
  margin: 60px 0 0;
  font-size: 1.75rem;
  text-align: center;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-notesboxtitle {
    font-size: 1.25rem;
  }
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-notesboxtitle:first-child {
  margin: 20px 0 0;
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-notesblocktitle {
  margin: 50px auto 0;
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-noteslink {
  margin: 20px 0 0;
  font-weight: 700;
  text-align: center;
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-notestext {
  margin: 20px 0 0;
  font-weight: 700;
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-noteslist {
  margin: 20px 0 0;
  font-weight: 700;
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-noteslist .p-top-notesitem {
  line-height: 1.8;
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-noteslist--links li {
  margin-right: 10px;
  display: inline-block;
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-detailcardsubtitle {
  margin: 20px 0 0;
  font-weight: 700;
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-notessteps {
  margin: 26px auto 0;
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-notessteps .p-top-notesstep {
  padding: 30px 30px 30px 60px;
  background: #fff7d2;
  font-weight: 700;
  font-size: 1.125rem;
  color: #302b16;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-notessteps .p-top-notesstep {
    padding: 20px 16px 20px 44px;
    font-size: 1rem;
  }
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-notessteps .p-top-notesstep span {
  margin-left: -1.5rem;
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-notessteps .p-top-notesstep:nth-child(2) {
  margin: 20px 0 0;
  position: relative;
  /* 手順1と手順2の間に下向き矢印（オレンジ→赤のグラデーション） */
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-notessteps .p-top-notesstep:nth-child(2)::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(34px, 4vw, 48px);
  height: clamp(32px, 4vw, 45px);
  background: url("../img/obj_arrow-bottom.webp") no-repeat center/contain;
  display: block;
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-notessteps .p-top-notesstep a {
  font-size: 1rem;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-notessteps .p-top-notesstep a {
    font-size: 0.875rem;
  }
}
.p-top .p-top-info-wrapper .p-top-notes .p-top-notesbox .p-top-notesfootnote {
  color: #777;
  font-weight: 700;
  margin: 20px auto 0;
}
.p-top .p-top-info-wrapper .p-top-faq .p-top-faqtitle {
  margin: clamp(80px, 8vw, 100px) auto 0;
  max-width: 338px;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-info-wrapper .p-top-faq .p-top-faqtitle {
    width: 60%;
  }
}
.p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems {
  margin: 20px auto 0;
  max-width: 990px;
}
.p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem {
  padding: 0 0 4px;
  /* グラデーションは下のボーダー（区切り線）のみ */
  background-image: linear-gradient(to right, #ffeb36 0%, #ff63b6 18%, #a126bd 38%, #5639d6 55%, #0cf0c2 100%);
  background-size: 100% 4px;
  background-position: bottom;
  background-repeat: no-repeat;
  /* 先頭のみ上側にもグラデーションのボーダー */
}
.p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem:first-child {
  padding-top: 4px;
  background-image: linear-gradient(to right, #ffeb36 0%, #ff63b6 18%, #a126bd 38%, #5639d6 55%, #0cf0c2 100%), linear-gradient(to right, #ffeb36 0%, #ff63b6 18%, #a126bd 38%, #5639d6 55%, #0cf0c2 100%);
  background-size: 100% 4px, 100% 4px;
  background-position: top, bottom;
  background-repeat: no-repeat;
}
.p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem .p-top-faqquestion {
  position: relative;
  padding: 30px 56px 30px 60px;
  color: #000;
  font-weight: 700;
  list-style: none;
  background: url("../img/obj_question.webp") no-repeat left 30px top 36px/18px auto;
  cursor: pointer;
  transition: opacity 0.2s ease;
  line-height: 1.6;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem .p-top-faqquestion {
    padding: 20px 30px 20px 30px;
    background: url("../img/obj_question.webp") no-repeat left top 24px/18px auto;
  }
}
.p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem .p-top-faqquestion:hover {
  opacity: 0.85;
}
.p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem .p-top-faqquestion::-webkit-details-marker {
  display: none;
}
.p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem .p-top-faqquestion {
  /* 閉じているとき：プラスアイコン（右端・中央） */
}
.p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem .p-top-faqquestion::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("../img/obj_plus.webp") no-repeat center/contain;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem .p-top-faqquestion::after {
    width: 18px;
    height: 18px;
    right: 2px;
  }
  .p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem .p-top-faqquestion::after[open] .p-top-faqquestion::after {
    background-image: url("../img/obj_minus.webp");
  }
}
.p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem {
  /* 開いているとき：マイナスアイコンに切り替え */
}
.p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem[open] .p-top-faqquestion::after {
  background-image: url("../img/obj_minus.webp");
}
.p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem .p-top-faqanswer {
  padding: 26px 0 26px 60px;
  color: #000;
  font-weight: 700;
  list-style: none;
  background: url("../img/obj_answer.webp") no-repeat left 30px top 32px/18px auto;
  border-top: 2px solid #ccc;
  display: none;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem .p-top-faqanswer {
    padding: 20px 0 20px 30px;
    background: url("../img/obj_answer.webp") no-repeat left top 24px/18px auto;
  }
}
.p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem .p-top-faqanswer p {
  margin: 20px 0 0;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem .p-top-faqanswer p {
    font-size: 1rem !important;
  }
}
.p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem .p-top-faqanswer p:first-child {
  margin: 0;
}
.p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem .p-top-faqanswer ul {
  margin: 20px 0 0;
}
@media screen and (max-width: 961px) {
  .p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem .p-top-faqanswer ul {
    font-size: 1rem !important;
  }
}
.p-top .p-top-info-wrapper .p-top-faq .p-top-faqitems .p-top-faqitem[open] .p-top-faqanswer {
  display: block;
}

/* バンド横スクロール用キーフレーム（2枚並びで無限ループ） */
@keyframes p-top-band-scroll-anim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.p-code .l-main {
  background: url("../img/bg_campaign-outline.webp") no-repeat center top/100% auto, url("../img/bg_info-bottom.webp") no-repeat center bottom clamp(30px, 6vw, 60px)/90% auto #fff;
  padding: clamp(50px, 5vw, 120px) clamp(16px, 5vw, 80px) clamp(160px, 22vw, 280px);
}
.p-code .p-code-sectiontitlebadge {
  margin: 0 auto;
  max-width: 520px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 961px) {
  .p-code .p-code-sectiontitlebadge {
    width: 80%;
  }
}
.p-code .p-code-sectiontitlebadge img {
  width: 100%;
}
.p-code .p-code-campaign-outline-card {
  position: relative;
  margin: clamp(30px, 3vw, 40px) auto 0;
  padding: clamp(60px, 6vw, 140px) clamp(16px, 5vw, 80px) clamp(50px, 5vw, 80px);
  max-width: 990px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 961px) {
  .p-code .p-code-campaign-outline-card {
    border-radius: 20px;
  }
}
.p-code .p-code-campaign-outline-card {
  /* 頭部分のグラデーション帯（イエロー→オレンジ→赤みがかったオレンジ） */
}
.p-code .p-code-campaign-outline-card::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(30px, 3vw, 52px);
  border-radius: 40px 40px 0 0;
  background: linear-gradient(90deg, #FFE082 0%, #FFB74D 50%, #E64A19 100%);
}
@media screen and (max-width: 961px) {
  .p-code .p-code-campaign-outline-card::before {
    border-radius: 20px 20px 0 0;
  }
}
.p-code .p-code-campaign-outline-card .p-code-campaign-outline-lead img {
  margin: 0 auto;
  width: 100%;
}
.p-code .p-code-campaign-outline-card .p-code-campaign-outline-lead img:nth-child(1) {
  max-width: 522px;
}
.p-code .p-code-campaign-outline-card .p-code-campaign-outline-lead img:nth-child(2) {
  max-width: 682px;
}
@media screen and (max-width: 961px) {
  .p-code .p-code-campaign-outline-card .p-code-campaign-outline-lead img:nth-child(2) {
    margin: 6px auto 0;
  }
}
.p-code .p-code-campaign-outline-card .p-code-campaign-outline-lead img:nth-child(3) {
  max-width: 810px;
}
@media screen and (max-width: 961px) {
  .p-code .p-code-campaign-outline-card .p-code-campaign-outline-lead img:last-child {
    margin: 6px auto 0;
    width: 80%;
  }
}
.p-code .p-code-campaign-outline-card .p-code-receivesteps .p-code-receivestep {
  padding: 30px;
  background: #FFF7D2;
  font-weight: 700;
  font-size: 1.125rem;
  color: #302B16;
  text-align: center;
}
@media screen and (max-width: 961px) {
  .p-code .p-code-campaign-outline-card .p-code-receivesteps .p-code-receivestep {
    padding: 20px;
    font-size: 1rem;
  }
}
.p-code .p-code-campaign-outline-card .p-code-receivesteps .p-code-receivestep:nth-child(2), .p-code .p-code-campaign-outline-card .p-code-receivesteps .p-code-receivestep:nth-child(3) {
  margin: 20px 0 0;
  position: relative;
  /* 手順1と手順2の間に下向き矢印（オレンジ→赤のグラデーション） */
}
.p-code .p-code-campaign-outline-card .p-code-receivesteps .p-code-receivestep:nth-child(2)::before, .p-code .p-code-campaign-outline-card .p-code-receivesteps .p-code-receivestep:nth-child(3)::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(34px, 4vw, 48px);
  height: clamp(32px, 4vw, 45px);
  background: url("../img/obj_arrow-bottom.webp") no-repeat center/contain;
  display: block;
}
.p-code .p-code-campaign-outline-card .p-code-receivesteps .p-code-receivestep input {
  margin: 20px auto 0;
}
@media screen and (max-width: 961px) {
  .p-code .p-code-campaign-outline-card .p-code-receivesteps .p-code-receivestep input {
    margin: 14px auto 0;
  }
}
.p-code .p-code-campaign-outline-card .p-code-receivesteps .p-code-receivestep button[type=submit] {
  margin: 0 auto;
  max-width: 518px;
}
@media screen and (max-width: 961px) {
  .p-code .p-code-campaign-outline-card .p-code-receivesteps .p-code-receivestep button[type=submit] {
    margin: 10px auto 0;
  }
  .p-code .p-code-campaign-outline-card .p-code-receivesteps .p-code-receivestep button[type=submit] img {
    width: 100%;
  }
}
.p-code .p-code-detailcard {
  margin: clamp(40px, 4vw, 60px) auto 0;
  max-width: 990px;
  padding: clamp(40px, 4vw, 60px) clamp(20px, 6vw, 60px) clamp(60px, 6vw, 80px);
  border: 4px solid transparent;
  border-radius: 24px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #FFEB36 0%, #FF63B6 18%, #A126BD 38%, #5639D6 55%, #0CF0C2 100%) border-box;
  background-clip: padding-box, border-box;
}
.p-code .p-code-detailcard .p-code-detailcard-inner {
  margin: 40px 0 0;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 961px) {
  .p-code .p-code-detailcard .p-code-detailcard-inner {
    margin: 30px 0 0;
    flex-direction: column;
  }
}
.p-code .p-code-detailcard .p-code-detailcard-inner .p-code-detailcard-item-txt {
  font-weight: 700;
  font-size: 1.125rem;
}
@media screen and (max-width: 961px) {
  .p-code .p-code-detailcard .p-code-detailcard-inner .p-code-detailcard-item-txt {
    font-size: 1rem;
  }
}
.p-code .p-code-detailcard .p-code-detailcard-inner .p-code-detailcard-item-img {
  margin: 30px 0 0;
}
@media screen and (max-width: 961px) {
  .p-code .p-code-detailcard .p-code-detailcard-inner .p-code-detailcard-item-img {
    margin: 20px 0 0;
  }
}
.p-code .p-code-detailcardtitle {
  padding: 0 0 10px;
  font-size: 1.75rem;
  text-align: center;
}
@media screen and (max-width: 961px) {
  .p-code .p-code-detailcardtitle {
    font-size: 1.25rem;
  }
}
.p-code .p-code-detailcardnote {
  margin: 20px auto 0;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
}
@media screen and (max-width: 961px) {
  .p-code .p-code-detailcardnote {
    font-size: 1.125rem;
  }
}
.p-code .p-code-detailcardtext {
  margin: 6px 0 0;
  text-align: center;
  color: #FC1A6D;
}
.p-code .p-serialcode {
  margin: 20px auto 0;
  padding: 40px;
  max-width: 410px;
  font-size: 1.25rem;
  font-weight: 700;
  background: #FFF7D2;
  color: #302B16;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.p-code .p-code-campaign-outline-card-error {
  padding: clamp(160px, 16vw, 200px) clamp(16px, 5vw, 80px) clamp(140px, 18vw, 220px);
}
.p-code .p-code-detailcardbtn {
  margin: 20px auto 0;
  max-width: 396px;
  display: block;
}

a, button {
  transition: all 0.4s;
  color: #009FB3;
  text-decoration: underline;
}
a:hover, a:active, button:hover, button:active {
  opacity: 0.5;
}
@media screen and (max-width: 601px) {
  a:hover, a:active, button:hover, button:active {
    opacity: 1 !important;
  }
}

a img, button img {
  transition: all 0.4s;
}

@media screen and (min-width: 962px) {
  .u-br--pc::before {
    content: "\a";
    white-space: pre;
  }
}

@media screen and (max-width: 961px) {
  .u-br--sp::before {
    content: "\a";
    white-space: pre;
  }
}

.u-txt--left {
  text-align: left;
}

.u-txt--center {
  text-align: center;
}

.u-txt--right {
  text-align: right;
}

.u-mt0 {
  margin-top: 0 !important;
}

@media screen and (max-width: 961px) {
  .u-hidden--pc {
    display: none !important;
  }
}

.u-hidden--sp {
  display: none !important;
}
@media screen and (max-width: 961px) {
  .u-hidden--sp {
    display: block !important;
  }
}

.u-txt--sm {
  font-size: 0.8rem;
}

.u-txt--attention {
  color: #FC1A6D;
}

.u-txt--sub {
  color: #777;
}

.u-txt--bold {
  font-weight: 700;
}

.u-list--disc {
  padding: 0 0 0 1.4rem;
}
.u-list--disc li {
  list-style: disc;
}

.u-txt--underline {
  text-decoration: underline;
}

.u-txt--linethrough {
  text-decoration: line-through;
}/*# sourceMappingURL=style.css.map */