/* ================================================
   CSS Variables
   ================================================ */
:root {
  --primary:         #FF0A48;
  --secondary:     #27BBD9;
  --bg:             #FFFFFF;
  --ink:            #444444;
  --bg-pk:          #FFF0F6;
  --content-width:  390px;
  --pc-left-width:  356px;

  --font-sans:      'Noto Sans JP', sans-serif;
  --font-serif:     'Noto Serif JP', serif;
  --font-en:        'Playfair Display', serif;

  --icon-blank: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.625 0.5V12.625H0.5V0.5H12.625Z' stroke='black'/%3E%3Cpath d='M15.0001 1.875V15H1.87512' stroke='black'/%3E%3C/svg%3E");
  --noise: url('../images/noise.png');
}


/* ================================================
   Base Reset
   ================================================ */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}


img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover { opacity: 0.75; }

em { font-style: normal; }

::selection {
  background: var(--primary);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }


/* ================================================
   Skip Link
   ================================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  z-index: 10000;
  transition: top 0.2s;

  &:focus { top: 0; }
}


/* ================================================
   Animations
   ================================================ */
.anim-fade {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.anim-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade.fuwafuwa {
  transform: translateY(0);
  transition: opacity 0.8s ease;
}

.anim-pop {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-pop.in-view {
  opacity: 1;
  transform: scale(1);
}

.kv-anim {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.kv-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .kv-anim { transition: none; }
}


/* ================================================
   Fuwafuwa
   ================================================ */
@keyframes fuwafuwa {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

.fuwafuwa {
  animation: fuwafuwa 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .fuwafuwa { animation: none; }
}


/* ================================================
   Splash
   ================================================ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;

  &.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.splash__logo {
  width: 200px;
  opacity: 1;
  transition: opacity 0.5s ease;

  &.is-hidden { opacity: 0; }

  & img {
    width: 100%;
    height: auto;
  }
}


/* ================================================
   PC Fixed Background — 3-column layout
   Left (fixed) | Content (fixed) | Right (flexible)
   ================================================ */
.l-pc-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
}

@media (max-width: 599px) {
  .l-pc-bg { display: none; }
}

.l-pc-bg__left,
.l-kv__title-area,
.p-recommend__inner {
  background-size: 100px 100px, cover;
  background-blend-mode: lighten, normal;
}

.l-pc-bg__left {
  flex: 0 0 var(--pc-left-width);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  background-image: var(--noise), linear-gradient(110deg, #FFE699 30%, #FFB6D0 100%);
}

.l-pc-bg__title {
  width: 290px;

  & img {
    width: 100%;
    height: auto;
  }
}

.l-pc-bg__sub-copy {
  width: 200px;

  & img {
    width: 100%;
    height: auto;
  }
}

.l-pc-bg__date {
  width: 234px;
  margin-top: 3rem;

  & img {
    width: 100%;
    height: auto;
  }
}

.l-pc-bg__center {
  flex: 0 0 var(--content-width);
}

.l-pc-bg__right {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}


/* ================================================
   Content Layout
   ================================================ */
.l-content-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  min-height: 100dvh;
}

@media (min-width: 600px) {
  .l-content-wrap {
    justify-content: flex-start;
    padding-left: var(--pc-left-width);
    align-items: flex-start;
  }
}

.l-content {
  width: 100%;
  min-width: var(--content-width);
  max-width: var(--content-width);
  background: var(--bg);
  position: relative;
}

@media (min-width: 600px) {
  .l-content {
    filter: drop-shadow(0 0 8px rgba(255, 10, 72, 0.12));
  }
}
@media (max-width: 599px) {
  .l-content{
    max-width: 100%;
  }
}


/* ================================================
   Monthly Campaign Label (red header bar)
   ================================================ */
.l-monthly-campaign {
  position: relative;
  z-index: 2;
  background: var(--primary);
  padding: 0.625rem 1.5rem;
  text-align: center;

  & p {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
}

@media (max-width: 599px) {
  .l-monthly-campaign {
    & p { font-size: 0.9375rem; }
  }
}


/* ================================================
   KV — Hero Image Section
   ================================================ */
.l-header {
  position: relative;
  z-index: 1;
}

.l-kv__title-area {
  background-image: var(--noise), linear-gradient(130deg, #FFE699 50%, #FFB6D0 100%);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.l-kv__sub-copy {
  margin-bottom: 0.25rem;

  & img {
    height: 32px;
    width: auto;
  }
}

.l-kv__title {
  & img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 600px) {
  .l-kv__title-area {
    display: none;
  }
}

.l-kv__date {
  align-self: flex-end;

  & img {
    margin-top: 1.5rem;
    height: 30px;
    width: auto;
  }
}

.l-kv__hero {
  & img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.l-kv__products {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: -2rem;
  padding: 0 0.5rem;
  & img {
    width: calc(25% - 6px);
    height: auto;
    filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.15));
  }
}

@media (max-width: 599px) {
  .l-kv__hero {
    & img {
      height: 370px;
      object-fit: cover;
    }
  }
}



/* ================================================
   KV — Content / Lead Text Section
   ================================================ */
.l-kv__content {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.5rem 3.5rem;
}

.l-kv__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.c-lead {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.c-lead__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--primary);
}

.c-lead__heading {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.c-lead__body {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;

  & p + p { margin-top: 1rem; }
}

.c-lead__btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}


/* ================================================
   Button (c-btn)
   ================================================ */
.c-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 326px;
  min-height: 64px;
  padding: 1.125rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
  color: #fff;
  transition: opacity 0.3s;
  border-radius: 4px;

  &:hover { opacity: 0.85; }
}

.c-btn--accent {
  background: var(--primary);
  border: 1px solid var(--primary);
  transition: background-color 0.3s, color 0.3s;

  &:hover {
    background: #fff;
    color: var(--primary);
    opacity: 1;
  }
}

.c-btn--sub {
  background: var(--secondary);
  color: #fff;
  line-height: 1.5;
  border: 1px solid var(--secondary);
  transition: background-color 0.3s, color 0.3s;

  &:hover {
    background: #fff;
    color: var(--secondary);
    opacity: 1;
  }

  &::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: currentColor;
    -webkit-mask-image: var(--icon-blank);
    mask-image: var(--icon-blank);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    top: calc(50% - 8px);
    right: 1rem;
  }
}

.c-btn__text { white-space: nowrap; }

.c-btn__arrow {
  position: absolute;
  right: 1.5rem;
  top: calc(50% - 4px);
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background-color: transparent;
  transform: rotate(45deg);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.c-btn--accent:hover .c-btn__arrow {
  transform: translateX(4px) rotate(45deg);
}

.c-btn__note {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--ink);
  text-align: center;
}


/* ================================================
   c-copy
   ================================================ */
.c-copy {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  width: fit-content;
  margin: 0 auto 1rem;
  color: var(--secondary);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.9375rem;

  &::before,
  &::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--secondary);
  }

  &::before { rotate: 65deg; }
  &::after  { rotate: -65deg; }

  & p {
    white-space: nowrap;
    text-align: center;
  }

  & span {
    font-size: 1.25rem;
    letter-spacing: 0;
  }
}

.c-copy--sub {
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 1rem;

  &::before,
  &::after {
    background: var(--primary);
  }
}


/* ================================================
   Section Title（英語大文字 + 日本語サブ）
   ================================================ */
.c-section-title {
  font-family: var(--font-en);
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  &::after {
    content: attr(data-text);
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: none;
  }
}


/* ================================================
   Present Section
   ================================================ */
.p-present,
.p-mybottle__body,
.p-mybottle__howto-heading-wrap,
.p-mybottle__btn-wrap {
  background: var(--noise) repeat, var(--bg-pk);
  background-size: 100px 100px, cover;
  background-blend-mode: lighten, normal;
}

.p-present {
  padding: 0 0 16rem;
}

.p-present__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-present__title,
.p-campaign__title {
  font-family: var(--font-en);
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);

  &::after {
    content: attr(data-text);
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: none;
    color: var(--primary);
  }
}

.p-present__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 0;
  width: fit-content;
  padding: 0 1.5rem;
}

.p-present__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;

  & img {
    width: 100%;
    max-width: 200px;
    height: 100%;
    min-height: 253px;
    object-fit: cover;
    transition: transform 0.3s;
  }

  &:hover img {
    transform: rotate(3deg);
  }
}

.p-present__item-en {
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-align: center;
  color: #999;
  line-height: 1.4;
  margin-bottom: .25rem;
}

.p-present__item-ja {
  font-size: 0.75rem;
  text-align: center;
  color: var(--ink);
  line-height: 1.4;
}
@media (max-width: 599px) {
  .p-present{
    padding: 0 0 65.64vw;
  }
}


/* ================================================
   Recommend Section
   ================================================ */
.p-recommend,
.p-mybottle {
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  margin-top: -12.5rem;
}

.p-recommend__inner {
  padding: 3.5rem 1.5rem 16rem;
  background-image: var(--noise), linear-gradient(160deg, #FFB7C8 0%, #FEFAA1 35%, #FFC7C1 60%, #F5D1FF 100%);
}

.p-recommend__heading {
  width: fit-content;
  margin: 0 auto 2rem;

  & img {
    width: 190px;
    height: auto;
  }
}

.p-recommend__card {
  position: relative;
  border-radius: 0.5rem;
  overflow: visible;
  margin-top: 15rem;
  &:last-child { margin-bottom: 0; }
}

.p-recommend__card-overflow {
  position: absolute;
  top: -180px;
  right: 1.5rem;
  width: fit-content;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 1rem;
  z-index: 2;
  pointer-events: none;
}

.p-recommend__card-img01 {
  width: 100%;
  height: 207px;
  border-radius: 8px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
}

.p-recommend__card-img02 {
  width: 100%;
  height: 146px;
  border-radius: 8px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
  margin-top: -1rem;
}

.p-recommend__card-body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  border-radius: 0.5rem 0.5rem 0 0;
}

.p-recommend__card-text-wrap {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-recommend__card-text-wrap .p-recommend__card-text {
  align-self: stretch;
}

.p-recommend__card-en {
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin: 0 0 0.25rem 0.125rem;
}

.p-recommend__card-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #fff;
  width: fit-content;
  padding: .1rem .8rem;
  border-radius: 2rem;
}

.p-recommend__card-body { background: var(--bg-body); }
.p-recommend__card-name { background: var(--bg-name); }
.p-recommend__card-en   { color: var(--text-en); width: fit-content; }

[data-color="ruby"] {
  --bg-body: #FF92AC; --bg-name: #D20132; --text-en: #FFDCE4;
}
[data-color="lemon"] {
  --bg-body: #EBE20B; --bg-name: #5B8F00; --text-en: #FFFEDA;
}
[data-color="peach"] {
  --bg-body: #F6A49A; --bg-name: #EA3B26; --text-en: #FFDCD7;
}
[data-color="ichijiku"] {
  --bg-body: #CA8FB2; --bg-name: #A30061; --text-en: #EDC7DE;
}

[data-color="lemon"] .p-recommend__card-body,
[data-color="ichijiku"] .p-recommend__card-body {
  flex-direction: row-reverse;
}

[data-color="lemon"] .p-recommend__card-text-wrap,
[data-color="ichijiku"] .p-recommend__card-text-wrap {
  align-items: flex-end;
}

[data-color="lemon"] .p-recommend__card-overflow,
[data-color="ichijiku"] .p-recommend__card-overflow {
  right: auto;
  left: 1.5rem;
  flex-direction: row;
}

.p-recommend__card-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink);
}

.p-recommend__card-pkg {
  flex: 0 0 auto;

  & img {
    width: auto;
    height: 140px;
    filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.15));
    object-fit: cover;
  }
}

.p-recommend__card-main {
  border-radius: 0 0 0.5rem 0.5rem;
  overflow: hidden;

  & img {
    width: 100%;
    height: auto;
    display: block;
  }
}

@media (max-width: 599px) {
  .p-recommend{
    border-radius: 51.28vw 51.28vw 0 0;
    margin-top: -51.28vw;
  }
  .p-recommend__card{
    margin-top: 61.54vw;
  }
  .p-recommend__inner{
    padding: max(56px,14.36vw) max(24px,6.15vw) max(256px,65.64vw);
  }
  .p-recommend__card-overflow{
    top: -46.15vw;
    right: 6.15vw;
  }
  .p-recommend__heading {
    & img {
        width: 48.72vw;
    }
  }
  .p-recommend__card-body{
    padding: 6.15vw 4.1vw;
    gap: 2.05vw;
  }
  .p-recommend__card-pkg {
    & img {
        height: 35.9vw;
    }
  }
  .p-recommend__card-img01{
    height: 53.08vw;
  }
  .p-recommend__card-img02{
    height: 37.44vw;
    margin-top: -4.1vw;
  }
  [data-color="lemon"] .p-recommend__card-overflow, [data-color="ichijiku"] .p-recommend__card-overflow {
    left: 6.15vw;
  }

}


/* ================================================
   My Bottle Section
   ================================================ */
.p-mybottle__hero {
  & img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.p-mybottle__heading-wrap {
  margin-top: -1.875rem;
}

.p-mybottle__heading,
.p-mybottle__howto-heading {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;

  &::before, &::after {
    content: '';
    width: 100%;
    height: 1px;
    border-top: 1px dotted var(--secondary);
    display: inline-block;
    flex: 1;
  }
}

.p-mybottle__body {
  padding: 1rem 1.5rem;
}

.p-mybottle__merit {
  margin-bottom: 1.5rem;
}

.p-mybottle__merit-title {
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  background: var(--secondary);
  width: fit-content;
  margin: 0 auto 1rem;
  padding: 0.2rem 1.5rem;
  text-align: center;
  clip-path: polygon(0% 0%, 100% 0%, 96% 50%, 100% 100%, 0% 100%, 4% 50%);
}

.p-mybottle__merit-content {
  border: 1px solid var(--secondary);
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--ink);
  padding-bottom: 1rem;

  & h4 {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--secondary);
    color: var(--secondary);
    background: var(--bg);
  }

  & p {
    padding: 0 1rem;
  }

  & p:first-of-type { padding-top: 1rem; }
  & p + p { margin-top: 1rem; }
}

.p-mybottle__highlight {
  color: var(--primary);
  font-weight: 700;
}

.p-mybottle__note {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 1rem;
}

.p-mybottle__link-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

/* How to make */
.p-mybottle__howto {
}

.p-mybottle__howto-img {
  & img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.p-mybottle__howto-heading-wrap {
  padding: 1rem 0;
}

.p-mybottle__howto-body {
  padding: 2rem 1.5rem 1.5rem;
}

.p-mybottle__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-left: 1.25rem;
}

.p-mybottle__step {
  background: #fff;
  border: 1px solid var(--secondary);
  border-radius: 0.5rem;
  padding: 1rem 1rem 1rem 2rem;
  position: relative;
}

.p-mybottle__step + .p-mybottle__step::before,
.p-mybottle__step + .p-mybottle__step::after {
  content: '';
  position: absolute;
  top: -21px;
  width: 30px;
  height: 1px;
  background-color: var(--secondary);
}

.p-mybottle__step + .p-mybottle__step::before {
  left: calc(50% - 30px);
  transform: rotate(30deg);
}

.p-mybottle__step + .p-mybottle__step::after {
  left: calc(50% + -4px);
  transform: rotate(-30deg);
}

.p-mybottle__step-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: calc(50% - 20px);
  left: -20px;
}

.p-mybottle__step-text {
  line-height: 1.5;
  color: var(--secondary);
}

.p-mybottle__btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem 3.5rem;
}

@media (max-width: 599px) {
  .p-mybottle{
    border-radius: 51.28vw 51.28vw 0 0;
    margin-top: -51.28vw;
  }
}

/* ================================================
   Campaign Detail Section
   ================================================ */
.p-campaign__inner {
  padding: 0 1.5rem 3.5rem;

  & .note {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }

  & ol {
    margin: 1rem 0 0 1rem;
    list-style: auto;
  }
}

.p-campaign__label {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  color: var(--primary);

  &:not(:first-of-type) {
    margin-top: 2rem;
  }

  & span {
    flex-shrink: 0;
    padding: 0.3rem 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1;
    border: 1px dotted var(--primary);
    border-radius: 2rem;
    background: #fff;
  }

  &::after {
    content: '';
    flex: 1 1 auto;
    height: 1px;
    border-top: 1px dotted var(--primary);
  }
}

.p-campaign__content {
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0;
  color: var(--ink);
  margin-top: 1rem;
}


/* ================================================
   Attention Section
   ================================================ */
.p-attention {
  padding: 3.5rem 1.5rem;
  background: #fff;
  border-top: 1px solid #f6f7f7;
}

.p-attention__inner {
  padding: 2rem 1rem 1.5rem;
  background: #f6f7f7;
}

.p-attention__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 0;

  & li {
    font-size: 0.75rem;
    line-height: 1.75;
    color: var(--ink);
    text-align: justify;
  }

  & a {
    text-decoration: underline;
  }
}

.p-attention__organizer {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  margin-top: 2rem;
}


/* ================================================
   Footer
   ================================================ */
.l-footer {
  border-top: 1px solid #f6f7f7;
  padding: 2.5rem 1.5rem 1.5rem;
  text-align: center;
  background: #fff;
  display: grid;
  grid-template-columns: auto;
  gap: 2rem;
}

.c-sns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.copyright {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink);
}


