*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background: #f7f3e8;
  color: #23231f;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  padding-top: 84px;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 767px) {
  body {
    padding-top: 68px;
  }
}
body.is-menu-open {
  overflow: hidden;
}

.l-container {
  width: min(100% - 64px, 1280px);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .l-container {
    width: calc(100% - 40px);
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #f7f3e8;
  border-bottom: 1px solid rgba(25, 25, 20, 0.12);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 64px, 1280px);
  height: 84px;
  margin-inline: auto;
}

.l-header__logo {
  position: relative;
  z-index: 10;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.l-header__nav {
  margin-left: auto;
}

.l-header__menu {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.l-header__menu a {
  position: relative;
}
.l-header__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #e56b12;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.l-header__menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.l-header__menu-button {
  display: none;
}

@media (max-width: 767px) {
  .l-header__inner {
    width: calc(100% - 40px);
    height: 68px;
  }
  .l-header__logo {
    font-size: 2rem;
  }
  .l-header__nav {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: #f3c532;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .l-header__menu {
    flex-direction: column;
    gap: 22px;
    font-size: 2.8rem;
    line-height: 1;
  }
  .l-header__menu-button {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .l-header__menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    background: #191914;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .l-header.is-menu-open .l-header__nav {
    opacity: 1;
    visibility: visible;
  }
  .l-header.is-menu-open .l-header__menu-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .l-header.is-menu-open .l-header__menu-button span:nth-child(2) {
    opacity: 0;
  }
  .l-header.is-menu-open .l-header__menu-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
.l-footer {
  position: relative;
  background: #47752e;
  color: #ffffff;
  overflow: hidden;
}

.l-footer__top {
  padding: 90px 0 70px;
}

.l-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 100px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.l-footer__logo {
  display: inline-block;
  color: #ffffff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(4rem, 6vw, 8rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.l-footer__tagline {
  margin: 24px 0 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.l-footer__copy {
  margin: 26px 0 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}

.l-footer__nav-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
}

.l-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.l-footer__menu a {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.l-footer__menu a:hover {
  padding-left: 6px;
  color: #f3c532;
}

.l-footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.l-footer__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.l-footer__links a:hover {
  padding-left: 6px;
  color: #f3c532;
}

.l-footer__social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
}

.l-footer__social-label {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.l-footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  background: #f3c532;
  color: #191914;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: transform 0.3s ease, background 0.3s ease;
}
.l-footer__instagram:hover {
  transform: rotate(-2deg) translateY(-3px);
  background: #e56b12;
}

.l-footer__bottom {
  padding: 24px 0;
  background: #191914;
}

.l-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.l-footer__legal {
  display: flex;
  gap: 22px;
}

.l-footer__legal a {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.l-footer__legal a:hover {
  opacity: 1;
}

.l-footer__copyright {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

.l-footer__pagetop {
  position: absolute;
  right: 28px;
  bottom: 80px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  background: #f3c532;
  color: #191914;
  border: 2px solid #191914;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}
.l-footer__pagetop:hover {
  transform: translateY(-5px) rotate(-6deg);
  background: #e56b12;
}

@media (max-width: 767px) {
  .l-footer__top {
    padding: 70px 0 50px;
  }
  .l-footer__main {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-bottom: 45px;
  }
  .l-footer__logo {
    font-size: 5rem;
  }
  .l-footer__copy {
    font-size: 1.4rem;
  }
  .l-footer__nav-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .l-footer__social {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .l-footer__instagram {
    width: 100%;
    justify-content: space-between;
  }
  .l-footer__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .l-footer__legal {
    flex-wrap: wrap;
  }
  .l-footer__pagetop {
    right: 20px;
    bottom: 88px;
    width: 46px;
    height: 46px;
  }
}
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 28px;
  background: #191914;
  color: #ffffff;
  border: 1px solid #191914;
  border-radius: 100px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.c-button:hover {
  background: transparent;
  color: #191914;
  transform: translateY(-2px);
}

.c-button--green {
  background: #47752e;
  border-color: #47752e;
}
.c-button--green:hover {
  background: transparent;
  color: #47752e;
}

.c-button--orange {
  background: #e56b12;
  border-color: #e56b12;
}
.c-button--orange:hover {
  background: transparent;
  color: #e56b12;
}

@media (max-width: 767px) {
  .c-button {
    width: 100%;
  }
}
.c-section-heading {
  margin: 0 0 40px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(4rem, 5vw, 7.2rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.c-section-heading__sub {
  display: block;
  margin-top: 12px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

@media (max-width: 767px) {
  .c-section-heading {
    margin-bottom: 28px;
    font-size: 4rem;
  }
}
.c-brand-card {
  min-width: 0;
}

.c-brand-card__link {
  display: block;
  height: 100%;
  background: #ffffff;
  color: #191914;
  border: 1px solid rgba(25, 25, 20, 0.12);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.c-brand-card__link:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.c-brand-card__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #ddd;
}

.c-brand-card__image > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.c-brand-card__link:hover .c-brand-card__image > img {
  transform: scale(1.05);
}

.c-brand-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: background 0.35s ease;
}

.c-brand-card__image--white::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.22) 100%);
}

.c-brand-card__image--black::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.28) 100%);
}

.c-brand-card__link:hover .c-brand-card__image--white::after {
  background: rgba(0, 0, 0, 0.2);
}

.c-brand-card__link:hover .c-brand-card__image--black::after {
  background: rgba(255, 255, 255, 0.2);
}

.c-brand-card__logo {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  pointer-events: none;
}

.c-brand-card__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 32%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.c-brand-card__link:hover .c-brand-card__logo img {
  transform: scale(1.04);
}

.c-brand-card__logo--white img {
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.28));
}

.c-brand-card__logo--black img {
  filter: drop-shadow(0 3px 10px rgba(255, 255, 255, 0.28));
}

.c-brand-card__body {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 18px 18px 20px;
}

.c-brand-card__title {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 2vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.c-brand-card__text {
  margin: 14px 0 0;
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(25, 25, 20, 0.72);
}

.c-brand-card__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  color: #47752e;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: gap 0.3s ease, color 0.3s ease;
}

.c-brand-card__link:hover .c-brand-card__more {
  gap: 16px;
  color: #e56b12;
}

.p-brand-list .c-brand-card__image {
  aspect-ratio: 4/5;
}
.p-brand-list .c-brand-card__body {
  min-height: 170px;
}

.p-brands .c-brand-card__image {
  aspect-ratio: 4/5;
}

@media (max-width: 1024px) {
  .c-brand-card__logo {
    padding: 22px;
  }
  .c-brand-card__logo img {
    max-width: 76%;
    max-height: 34%;
  }
  .c-brand-card__body {
    min-height: 160px;
    padding: 16px 16px 18px;
  }
}
@media (max-width: 767px) {
  .c-brand-card__link:hover {
    transform: none;
    box-shadow: none;
  }
  .c-brand-card__image {
    aspect-ratio: 1/1.15;
  }
  .c-brand-card__link:hover .c-brand-card__image > img {
    transform: none;
  }
  .c-brand-card__logo {
    padding: 14px;
  }
  .c-brand-card__logo img {
    max-width: 78%;
    max-height: 34%;
  }
  .c-brand-card__link:hover .c-brand-card__logo img {
    transform: none;
  }
  .c-brand-card__body {
    min-height: auto;
    padding: 14px 12px 15px;
  }
  .c-brand-card__title {
    font-size: 1.7rem;
    line-height: 1.15;
  }
  .c-brand-card__text {
    display: -webkit-box;
    margin-top: 10px;
    overflow: hidden;
    font-size: 1.1rem;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .c-brand-card__more {
    margin-top: 14px;
    padding-top: 0;
    font-size: 0.95rem;
  }
  .p-brand-list .c-brand-card__body {
    min-height: auto;
  }
}
.c-limited-card {
  min-width: 0;
}

.c-limited-card__link {
  display: block;
  height: 100%;
  background: #191914;
  color: #ffffff;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.c-limited-card__link:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.c-limited-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.c-limited-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
}

.c-limited-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s ease;
}

.c-limited-card__link:hover .c-limited-card__image img {
  transform: scale(1.05);
}

.c-limited-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 9px;
  background: #47752e;
  color: #ffffff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.c-limited-card__body {
  padding: 20px;
}

.c-limited-card__brand {
  margin: 0 0 8px;
  color: #f3c532;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.c-limited-card__title {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.2rem, 2vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.c-limited-card__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.p-hero {
  position: relative;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  background: #191914;
  color: #ffffff;
}

.p-hero__media {
  position: absolute;
  inset: 0;
}

.p-hero__slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  pointer-events: none;
}

.p-hero__slide.is-active {
  opacity: 1;
}

.p-hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.p-hero__slide.is-active .p-hero__image {
  transform: scale(1);
}

.p-hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 20, 14, 0.72) 0%, rgba(20, 20, 14, 0.45) 42%, rgba(20, 20, 14, 0.08) 72%, rgba(20, 20, 14, 0.12) 100%);
}

.p-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(100% - 64px, 1280px);
  min-height: calc(100vh - 84px);
  margin-inline: auto;
  padding: 100px 0 120px;
}

.p-hero__content {
  width: min(680px, 58%);
}

.p-hero__eyebrow {
  margin: 0 0 20px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
}

.p-hero__title {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(6rem, 8vw, 12rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.055em;
}

.p-hero__title span {
  display: block;
}

.p-hero__title span:last-child {
  margin-top: 0.08em;
}

.p-hero__copy {
  margin: 36px 0 0;
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.p-hero__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.p-hero__button-light {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}
.p-hero__button-light:hover {
  background: #ffffff;
  color: #191914;
}

.p-hero__scroll {
  position: absolute;
  left: 32px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.p-hero__scroll-line {
  display: block;
  width: 56px;
  height: 1px;
  background: currentColor;
}

.p-hero__gacha {
  position: absolute;
  right: 3vw;
  bottom: 40px;
  z-index: 4;
  display: block;
  width: clamp(220px, 20vw, 340px);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.p-hero__gacha:hover {
  transform: translateY(-8px) rotate(2deg) scale(1.04);
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.25));
}

.p-hero__gacha-image {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .p-hero__gacha {
    top: 20px;
    right: -20px;
    bottom: auto;
    width: 180px;
    transform: rotate(3deg);
  }
  .p-hero__gacha:hover {
    transform: rotate(3deg) scale(1.03);
  }
}
@media (max-width: 767px) {
  .p-hero {
    min-height: calc(100svh - 68px);
  }
  .p-hero__overlay {
    background: linear-gradient(180deg, rgba(20, 20, 14, 0.18) 0%, rgba(20, 20, 14, 0.42) 44%, rgba(20, 20, 14, 0.8) 100%);
  }
  .p-hero__inner {
    align-items: flex-end;
    width: calc(100% - 40px);
    min-height: calc(100svh - 68px);
    padding: 80px 0 48px;
  }
  .p-hero__content {
    width: 100%;
  }
  .p-hero__eyebrow {
    margin-bottom: 14px;
    font-size: 1rem;
  }
  .p-hero__title {
    font-size: clamp(5rem, 16vw, 7.4rem);
    line-height: 0.84;
  }
  .p-hero__copy {
    margin-top: 24px;
    font-size: 1.7rem;
  }
  .p-hero__buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }
  .p-hero__scroll {
    display: none;
  }
}
.p-hero__event-date {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
  padding: 14px 18px;
  background: rgba(20, 20, 15, 0.78);
  color: #fffdf8;
  backdrop-filter: blur(6px);
}

.p-hero__event-label {
  color: #f3c532;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.p-hero__event-main {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.p-hero__event-main span {
  color: #f3c532;
}

@media (max-width: 767px) {
  .p-hero__event-date {
    margin-top: 20px;
    padding: 12px 14px;
  }
  .p-hero__event-main {
    font-size: 1.35rem;
  }
}
.p-concept {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #f7f3e8;
}

.p-concept__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 80px;
}

.p-concept__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.p-concept__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid #47752e;
  border-radius: 50%;
  color: #47752e;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.p-concept__label {
  margin: 0;
  color: #47752e;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.p-concept__title {
  margin: 0;
  font-size: clamp(3rem, 3.5vw, 3.9rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.p-concept__text {
  margin-top: 36px;
  font-size: 1.5rem;
  line-height: 2;
}

.p-concept__text p {
  margin: 0;
}
.p-concept__text p + p {
  margin-top: 18px;
}

.p-concept__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 250px;
  margin-top: 40px;
  padding: 15px 20px;
  border: 1px solid #47752e;
  color: #47752e;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.p-concept__button:hover {
  background: #47752e;
  color: #ffffff;
  transform: translateY(-3px);
}

.p-concept__visual {
  position: relative;
  padding: 20px 20px 28px 20px;
}

.p-concept__photo {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #ddd;
  transform: rotate(1.2deg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.p-concept__photo picture,
.p-concept__photo img {
  width: 100%;
  height: 100%;
}

.p-concept__photo img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}

.p-concept__photo:hover img {
  transform: scale(1.03);
}

.p-concept__doodle {
  position: absolute;
  z-index: 4;
  display: block;
  width: auto;
  height: auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.p-concept__doodle--sun {
  top: -65px;
  right: -45px;
  width: clamp(100px, 10vw, 160px);
  transform: rotate(10deg);
}

.p-concept__doodle--tent {
  right: -50px;
  bottom: -55px;
  width: clamp(150px, 16vw, 240px);
  transform: rotate(3deg);
}

.p-concept__doodle--tree {
  left: -70px;
  bottom: -60px;
  width: clamp(120px, 12vw, 190px);
  transform: rotate(-4deg);
}

.p-concept__doodle--flag {
  top: 20%;
  left: -75px;
  width: clamp(90px, 9vw, 140px);
  transform: rotate(-10deg);
}

@media (max-width: 767px) {
  .p-concept {
    padding: 72px 0;
  }
  .p-concept__inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  .p-concept__content {
    width: 100%;
  }
  .p-concept__heading {
    margin-bottom: 24px;
  }
  .p-concept__number {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .p-concept__label {
    font-size: 1.5rem;
  }
  .p-concept__title {
    font-size: 2.8rem;
    line-height: 1.55;
  }
  .p-concept__text {
    margin-top: 28px;
    font-size: 1.4rem;
  }
  .p-concept__button {
    width: 100%;
    margin-top: 32px;
  }
  .p-concept__visual {
    width: 100%;
    padding: 12px;
  }
  .p-concept__photo {
    aspect-ratio: 4/3;
    transform: rotate(0.8deg);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-concept__doodle--sun {
    top: -35px;
    right: -15px;
    width: 85px;
  }
  .p-concept__doodle--tent {
    right: -20px;
    bottom: -35px;
    width: 130px;
  }
  .p-concept__doodle--tree {
    left: -25px;
    bottom: -35px;
    width: 100px;
  }
  .p-concept__doodle--flag {
    top: 15px;
    left: -20px;
    width: 75px;
  }
}
.p-join {
  position: relative;
  padding: 120px 0 140px;
  overflow: hidden;
  background: #f3eee3;
  color: #1e1e1a;
}

.p-join__intro {
  max-width: 1080px;
  margin-bottom: 70px;
}

.p-join__number {
  margin: 0 0 8px;
  color: #d96b32;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.p-join__label {
  margin: 0;
  color: #6f8f95;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.p-join__title {
  margin: 28px 0 0;
  color: #1e1e1a;
  font-size: clamp(4rem, 6vw, 8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.p-join__lead {
  max-width: 680px;
  margin: 32px 0 0;
  color: rgba(30, 30, 26, 0.72);
  font-size: 1.5rem;
  line-height: 2;
}

.p-join__howto {
  margin-top: 70px;
}

.p-join__divider {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 100px 0 60px;
  color: #d96b32;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.p-join__divider::before,
.p-join__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(30, 30, 26, 0.18);
}

.p-join .p-howto {
  padding: 0;
  background: transparent;
  color: #1e1e1a;
}
.p-join .p-howto__head {
  display: none;
}
.p-join .p-howto-step {
  background: #fffdf8;
  color: #1e1e1a;
  border: 1px solid rgba(30, 30, 26, 0.12);
}
.p-join .p-howto-step:nth-child(2) {
  background: #e7eceb;
}
.p-join .p-howto-step:nth-child(3) {
  background: #f4dfd2;
}
.p-join .p-howto-step:nth-child(4) {
  background: #d96b32;
  color: #fffdf8;
}

.p-join__brands {
  position: relative;
}

.p-join .p-brands {
  padding: 0;
  background: transparent;
  color: #1e1e1a;
}
.p-join .p-brands__label {
  color: #6f8f95;
}
.p-join .p-brands__title {
  color: #1e1e1a;
}
.p-join .p-brands__all {
  color: #d96b32;
}
.p-join .p-brands-marquee__link {
  color: #1e1e1a;
}

.p-join .p-brands-marquee__image {
  background: #ded8cc;
}
.p-join .p-brands-marquee__name {
  color: #1e1e1a;
}

@media (max-width: 767px) {
  .p-join {
    padding: 75px 0 90px;
  }
  .p-join__intro {
    margin-bottom: 45px;
  }
  .p-join__title {
    font-size: clamp(2.4rem, 7vw, 4rem);
  }
  .p-join__lead {
    margin-top: 24px;
    font-size: 1.35rem;
    line-height: 1.9;
  }
  .p-join__howto {
    margin-top: 45px;
  }
  .p-join__divider {
    margin: 70px 0 40px;
    gap: 14px;
    font-size: 0.9rem;
  }
}
.p-brands {
  position: relative;
}

.p-brands__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.p-brands__label {
  margin: 0;
  color: #f3c532;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.p-brands__title {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(2.8rem, 4vw, 5rem);
  font-weight: 900;
  line-height: 1.25;
}

.p-brands__all {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #f3c532;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.p-brands__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 14px;
}

.p-brands__empty {
  padding: 60px 0;
  text-align: center;
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .p-brands__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 12px;
  }
}
@media (max-width: 767px) {
  .p-brands__head {
    display: block;
    margin-bottom: 28px;
  }
  .p-brands__all {
    margin-top: 20px;
  }
  .p-brands__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 8px;
  }
}
.p-limited {
  position: relative;
  padding: 100px 0 110px;
  overflow: hidden;
  background: #f3c532;
}

.p-limited__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.p-limited__title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.p-limited__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid #e56b12;
  border-radius: 50%;
  color: #e56b12;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.p-limited__label {
  margin: 0;
  color: #e56b12;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.8rem, 3vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.p-limited__sub {
  margin: 8px 0 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.p-limited__all {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 1.3rem;
  font-weight: 700;
  transition: gap 0.3s ease, color 0.3s ease;
}
.p-limited__all:hover {
  gap: 28px;
  color: #e56b12;
}

.p-limited__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.p-limited__coming {
  position: relative;
  min-height: 100%;
  background: #e56b12;
  color: #ffffff;
  overflow: hidden;
}

.p-limited__coming::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0, transparent 18px, rgba(255, 255, 255, 0.08) 18px, rgba(255, 255, 255, 0.08) 20px);
}

.p-limited__coming-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
}

.p-limited__coming-small {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.p-limited__coming-title {
  margin-top: auto;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(4rem, 4vw, 6.4rem);
  font-weight: 900;
  line-height: 0.9;
}

.p-limited__coming-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2.4rem;
}

@media (max-width: 1024px) {
  .p-limited__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .p-limited {
    padding: 72px 0 80px;
  }
  .p-limited__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
  }
  .p-limited__number {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .p-limited__label {
    font-size: 2.8rem;
  }
  .p-limited__all {
    align-self: flex-end;
    font-size: 1.2rem;
  }
  .p-limited__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .p-limited__coming {
    min-height: 260px;
  }
  .p-limited__coming-title {
    font-size: 4.8rem;
  }
}
.p-gacha {
  position: relative;
  padding: 120px 0 140px;
  overflow: hidden;
  background: #f3c532;
  color: #191914;
}

.p-gacha__head {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 70px;
}

.p-gacha__number {
  margin: 0 0 8px;
  color: #e56b12;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.p-gacha__label {
  margin: 0;
  color: #47752e;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.p-gacha__title {
  margin: 0;
  font-size: clamp(4rem, 6vw, 7.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.p-gacha__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 90px;
}

.p-gacha__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.p-gacha__machine {
  display: block;
  width: min(100%, 560px);
  height: auto;
  animation: gacha-machine-float 4.5s ease-in-out infinite;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.14));
}

@keyframes gacha-machine-float {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}
.p-gacha__content {
  min-width: 0;
}

.p-gacha__lead {
  margin: 0;
  font-size: clamp(2.4rem, 3.2vw, 4rem);
  font-weight: 900;
  line-height: 1.45;
}

.p-gacha__text {
  max-width: 520px;
  margin: 26px 0 0;
  font-size: 1.5rem;
  line-height: 2;
}

.p-gacha__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 320px;
  margin-top: 36px;
  padding: 18px 18px 18px 24px;
  overflow: hidden;
  background: #1e1e1a;
  color: #fffdf8;
  border: 3px solid #1e1e1a;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  box-shadow: 8px 8px 0 #e56b12;
  transform: rotate(-1deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  isolation: isolate;
}

.p-gacha__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(120deg, #e56b12 0%, #f3c532 55%, #e56b12 100%);
  transform: translateX(-102%);
  transition: transform 0.45s ease;
}

.p-gacha__button::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 24%;
  height: 180%;
  z-index: -1;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(20deg) translateX(-260%);
  transition: transform 0.7s ease;
}

.p-gacha__button:hover {
  color: #1e1e1a;
  box-shadow: 4px 4px 0 #1e1e1a;
  transform: translateY(-4px) rotate(1deg) scale(1.02);
}

.p-gacha__button:hover::before {
  transform: translateX(0);
}

.p-gacha__button:hover::after {
  transform: rotate(20deg) translateX(650%);
}

.p-gacha__button > span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  background: #f3c532;
  color: #1e1e1a;
  border-radius: 50%;
  font-size: 1.3rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.p-gacha__button:hover > span:last-child {
  background: #fffdf8;
  transform: rotate(-15deg) scale(1.08);
}

@media (max-width: 767px) {
  .p-gacha__button {
    width: 100%;
    min-width: 0;
    margin-top: 28px;
    padding: 15px 14px 15px 18px;
    font-size: 1rem;
    box-shadow: 6px 6px 0 #e56b12;
  }
  .p-gacha__button > span:last-child {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }
}
.p-gacha-prizes {
  margin-top: 120px;
}

.p-gacha-prizes__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(25, 25, 20, 0.2);
}

.p-gacha-prizes__label {
  margin: 0;
  color: #47752e;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.p-gacha-prizes__title {
  margin: 8px 0 0;
  font-size: clamp(3.4rem, 5vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
}

.p-gacha-prizes__note {
  margin: 0;
  color: rgba(25, 25, 20, 0.56);
  font-size: 1rem;
}

.p-gacha-prize-group {
  margin-top: 64px;
}

.p-gacha-prize-group:first-of-type {
  margin-top: 0;
}

.p-gacha-prize-group__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.p-gacha-prize-group__en {
  margin: 0 0 6px;
  color: #e56b12;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.p-gacha-prize-group__title {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  font-weight: 900;
  line-height: 1.2;
}

.p-gacha-prize-group__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 36px;
  padding: 7px 14px;
  background: #e56b12;
  color: #ffffff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  transform: rotate(-2deg);
}

.p-gacha-prizes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.p-gacha-prize {
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(25, 25, 20, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.p-gacha-prize:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

.p-gacha-prize__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #ded8cc;
}

.p-gacha-prize__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}

.p-gacha-prize:hover .p-gacha-prize__image img {
  transform: scale(1.04);
}

.p-gacha-prize__type {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 10px;
  background: #47752e;
  color: #ffffff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
}

.p-gacha-prize:nth-child(1) .p-gacha-prize__type {
  background: #e56b12;
}

.p-gacha-prize:nth-child(2) .p-gacha-prize__type {
  background: #47752e;
}

.p-gacha-prize:nth-child(3) .p-gacha-prize__type {
  background: #191914;
}

.p-gacha-prize__body {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 22px 20px 24px;
}

.p-gacha-prize__category {
  margin: 0 0 8px;
  color: #47752e;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.p-gacha-prize__name {
  margin: 0;
  font-size: clamp(1.9rem, 2.3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.4;
}

.p-gacha-prize__text {
  margin: 16px 0 0;
  color: rgba(25, 25, 20, 0.68);
  font-size: 1.2rem;
  line-height: 1.8;
}

.p-gacha-prize__body .c-detail-link {
  margin-top: auto;
}

.p-gacha-prize-group--second {
  margin-top: 90px;
  padding: 55px;
  background: #f3eee3;
  border: 1px solid rgba(25, 25, 20, 0.12);
}

.p-gacha-prize-group--second .p-gacha-prize-group__en {
  color: #6f8f95;
}

.p-gacha-second {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.p-gacha-second-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.2fr);
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(25, 25, 20, 0.1);
}

.p-gacha-second-card__image {
  min-width: 0;
  overflow: hidden;
  background: #ded8cc;
}

.p-gacha-second-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-gacha-second-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
}

.p-gacha-second-card__label {
  margin: 0 0 10px;
  color: #6f8f95;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.p-gacha-second-card__title {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 3.4rem);
  font-weight: 900;
  line-height: 1.3;
}

.p-gacha-second-card__text {
  margin: 16px 0 0;
  color: rgba(25, 25, 20, 0.68);
  font-size: 1.2rem;
  line-height: 1.8;
}

.p-gacha-second-card:nth-child(2) {
  background: #1e1e1a;
  color: #fffdf8;
}

.p-gacha-second-card:nth-child(2) .p-gacha-second-card__label {
  color: #e56b12;
}

.p-gacha-second-card:nth-child(2) .p-gacha-second-card__text {
  color: rgba(255, 253, 248, 0.72);
}

@media (max-width: 1024px) {
  .p-gacha {
    padding: 90px 0 110px;
  }
  .p-gacha__head {
    gap: 40px;
    margin-bottom: 55px;
  }
  .p-gacha__main {
    gap: 50px;
  }
  .p-gacha-prizes {
    margin-top: 90px;
  }
  .p-gacha-prizes__grid {
    gap: 12px;
  }
  .p-gacha-prize__body {
    min-height: 280px;
  }
  .p-gacha-prize-group--second {
    padding: 40px;
  }
  .p-gacha-second-card {
    grid-template-columns: 1fr;
  }
  .p-gacha-second-card__image img {
    min-height: 220px;
    aspect-ratio: 4/3;
  }
}
@media (max-width: 767px) {
  .p-gacha {
    padding: 74px 0 88px;
  }
  .p-gacha__head {
    display: block;
    margin-bottom: 42px;
  }
  .p-gacha__title {
    margin-top: 22px;
    font-size: clamp(3.4rem, 11vw, 5rem);
  }
  .p-gacha__main {
    display: flex;
    flex-direction: column;
    gap: 42px;
  }
  .p-gacha__machine {
    width: min(92%, 420px);
  }
  .p-gacha__lead {
    font-size: 2.4rem;
  }
  .p-gacha__text {
    font-size: 1.35rem;
    line-height: 1.9;
  }
  .p-gacha__button {
    width: 100%;
    min-width: 0;
    margin-top: 28px;
  }
  .p-gacha-prizes {
    margin-top: 72px;
  }
  .p-gacha-prizes__head {
    display: block;
    margin-bottom: 34px;
  }
  .p-gacha-prizes__note {
    margin-top: 12px;
  }
  .p-gacha-prize-group {
    margin-top: 54px;
  }
  .p-gacha-prize-group__head {
    align-items: center;
    margin-bottom: 20px;
  }
  .p-gacha-prize-group__badge {
    min-width: 60px;
  }
  .p-gacha-prizes__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .p-gacha-prize {
    display: grid;
    grid-template-columns: minmax(120px, 0.82fr) minmax(0, 1.18fr);
  }
  .p-gacha-prize:hover {
    transform: none;
    box-shadow: none;
  }
  .p-gacha-prize__image {
    height: 100%;
    aspect-ratio: auto;
  }
  .p-gacha-prize__image img {
    min-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-gacha-prize:hover .p-gacha-prize__image img {
    transform: none;
  }
  .p-gacha-prize__type {
    top: 8px;
    left: 8px;
    min-height: 24px;
    padding: 4px 7px;
    font-size: 0.7rem;
  }
  .p-gacha-prize__body {
    min-height: 240px;
    padding: 18px 15px;
  }
  .p-gacha-prize__category {
    font-size: 0.72rem;
  }
  .p-gacha-prize__name {
    font-size: 1.7rem;
  }
  .p-gacha-prize__text {
    font-size: 1.1rem;
  }
  .p-gacha-prize-group--second {
    margin-top: 64px;
    padding: 34px 16px;
  }
  .p-gacha-second {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .p-gacha-second-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }
  .p-gacha-second-card__image img {
    min-height: 100%;
    aspect-ratio: auto;
  }
  .p-gacha-second-card__body {
    padding: 20px 16px;
  }
  .p-gacha-second-card__title {
    font-size: 1.8rem;
  }
  .p-gacha-second-card__text {
    font-size: 1.05rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-gacha__machine {
    animation: none;
  }
  .p-gacha-prize,
  .p-gacha-prize__image img,
  .p-gacha__button {
    transition: none;
  }
}
.p-gacha-prize--collaboration .p-gacha-prize__image {
  padding: 12px;
  background: #f3eee3;
}

.p-gacha-collab-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
  height: 100%;
}

.p-gacha-collab-grid__item {
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #ded8cc;
}

.p-gacha-collab-grid__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.p-gacha-prize--collaboration:hover .p-gacha-collab-grid__item img {
  transform: scale(1.05);
}

.p-howto {
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
  background: #47752e;
  color: #ffffff;
}

.p-howto__head {
  margin-bottom: 44px;
}

.p-howto__title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.p-howto__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid #f3c532;
  border-radius: 50%;
  color: #f3c532;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.p-howto__label {
  margin: 0;
  color: #f3c532;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.8rem, 3vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.p-howto__sub {
  margin: 8px 0 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.p-howto__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 10px;
}

.p-howto-step {
  position: relative;
  min-height: 360px;
  padding: 30px;
  background: #f7f3e8;
  color: #191914;
  border: 2px solid #191914;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-howto-step:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.18);
}

.p-howto-step:nth-of-type(2) {
  background: #f3c532;
}

.p-howto-step:nth-of-type(3) {
  background: #e56b12;
  color: #ffffff;
}

.p-howto-step__number {
  display: inline-block;
  margin-bottom: 28px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.p-howto-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-bottom: 28px;
}

.p-howto-step__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-howto-step__title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.45;
}

.p-howto-step__text {
  margin: 18px 0 0;
  font-size: 1.4rem;
  line-height: 1.9;
}

.p-howto-step__link {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid currentColor;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: padding-left 0.3s ease;
}
.p-howto-step__link:hover {
  padding-left: 8px;
}

.p-howto__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f3c532;
  font-size: 4rem;
  font-weight: 900;
}

@media (max-width: 767px) {
  .p-howto {
    padding: 72px 0 80px;
  }
  .p-howto__head {
    margin-bottom: 30px;
  }
  .p-howto__number {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .p-howto__label {
    font-size: 2.8rem;
  }
  .p-howto__steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .p-howto-step {
    width: 100%;
    min-height: 350px;
    padding: 24px;
  }
  .p-howto-step__icon {
    width: 60px;
    height: 60px;
    font-size: 2.6rem;
  }
  .p-howto-step__title {
    font-size: 2.1rem;
  }
  .p-howto-step__link {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }
  .p-howto__arrow {
    height: 30px;
    font-size: 3rem;
    transform: rotate(90deg);
  }
}
.p-howto-lottery {
  margin-top: 90px;
}

.p-howto-lottery__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.p-howto-lottery__label {
  margin: 0;
  color: #6f8f95;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.p-howto-lottery__title {
  margin: 8px 0 0;
  color: #1e1e1a;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
}

.p-howto-lottery__note {
  margin: 0;
  color: rgba(30, 30, 26, 0.58);
  font-size: 1rem;
}

.p-howto-lottery__marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.p-howto-lottery__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: lottery-marquee 100s linear infinite;
}

.p-howto-lottery__group {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  padding-right: 12px;
}

.p-howto-lottery-card {
  flex: 0 0 clamp(190px, 18vw, 280px);
}

.p-howto-lottery-card__image {
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #ded8cc;
}

.p-howto-lottery-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.p-howto-lottery-card:hover .p-howto-lottery-card__image img {
  transform: scale(1.05);
}

.p-howto-lottery-card__body {
  padding-top: 10px;
}

.p-howto-lottery-card__brand {
  margin: 0 0 5px;
  color: #6f8f95;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.p-howto-lottery-card__name {
  margin: 0;
  color: #1e1e1a;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.45;
}

.p-howto-lottery__marquee:hover .p-howto-lottery__track {
  animation-play-state: paused;
}

@keyframes lottery-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .p-howto-lottery {
    margin-top: 60px;
  }
  .p-howto-lottery__head {
    display: block;
    margin-bottom: 22px;
  }
  .p-howto-lottery__note {
    margin-top: 12px;
  }
  .p-howto-lottery__marquee {
    width: calc(100% + 40px);
    margin-left: -20px;
    overflow: hidden;
  }
  .p-howto-lottery__track {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    will-change: transform;
    animation: lottery-marquee 100s linear infinite;
  }
  .p-howto-lottery__group {
    display: flex;
    flex-shrink: 0;
    gap: 8px;
    padding-right: 8px;
  }
  .p-howto-lottery-card {
    flex: 0 0 150px;
    width: 150px;
    min-width: 150px;
  }
  .p-howto-lottery-card__image {
    width: 150px;
    aspect-ratio: 1/1;
    overflow: hidden;
  }
  .p-howto-lottery-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-howto-lottery-card__body {
    width: 150px;
    padding-top: 8px;
  }
  .p-howto-lottery-card__brand {
    margin-bottom: 4px;
    font-size: 0.75rem;
  }
  .p-howto-lottery-card__name {
    font-size: 1.05rem;
    line-height: 1.45;
  }
}
.is-disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.45;
  filter: grayscale(0.2);
}

.p-information {
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
  background: #f7f3e8;
}

.p-information__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.p-information__title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.p-information__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid #47752e;
  border-radius: 50%;
  color: #47752e;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.p-information__label {
  margin: 0;
  color: #47752e;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.8rem, 3vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.p-information__sub {
  margin: 8px 0 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.p-information__all {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 1.3rem;
  font-weight: 700;
  transition: gap 0.3s ease, color 0.3s ease;
}
.p-information__all:hover {
  gap: 28px;
  color: #47752e;
}

.p-information__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 80px;
}

.p-information__list {
  border-top: 1px solid rgba(25, 25, 20, 0.2);
}

.p-information-item {
  border-bottom: 1px solid rgba(25, 25, 20, 0.2);
}

.p-information-item__link {
  display: grid;
  grid-template-columns: 100px 80px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding: 12px 0;
  transition: padding-left 0.3s ease, color 0.3s ease;
}
.p-information-item__link:hover {
  padding-left: 10px;
  color: #47752e;
}

.p-information-item__date {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-information-item__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 8px;
  background: #47752e;
  color: #ffffff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
}

.p-information-item__title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.7;
}

.p-information-item__arrow {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.p-information-item__link:hover .p-information-item__arrow {
  transform: translateX(5px);
}

.p-information__visual {
  position: relative;
  padding: 20px;
}

.p-information__photo {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 4/3;
  transform: rotate(1.5deg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.p-information__photo picture,
.p-information__photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-information__photo img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}

.p-information__photo:hover img {
  transform: scale(1.04);
}

.p-information__doodle {
  position: absolute;
  z-index: 3;
  display: block;
  width: auto;
  height: auto;
  pointer-events: none;
}

.p-information__doodle--flag {
  top: -45px;
  right: -45px;
  width: clamp(100px, 10vw, 150px);
  transform: rotate(8deg);
}

.p-information__doodle--sun {
  left: -55px;
  bottom: -45px;
  width: clamp(90px, 9vw, 140px);
  transform: rotate(-10deg);
}

@media (max-width: 767px) {
  .p-information {
    padding: 72px 0 80px;
  }
  .p-information__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
  }
  .p-information__number {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .p-information__label {
    font-size: 2.8rem;
  }
  .p-information__all {
    align-self: flex-end;
    font-size: 1.2rem;
  }
  .p-information__inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .p-information__news {
    width: 100%;
  }
  .p-information-item__link {
    grid-template-columns: 80px minmax(0, 1fr) 20px;
    gap: 10px;
    min-height: 94px;
  }
  .p-information-item__category {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }
  .p-information-item__title {
    grid-column: 2;
    grid-row: 2;
  }
  .p-information-item__date {
    grid-column: 1;
    grid-row: 1/3;
    align-self: start;
    padding-top: 4px;
  }
  .p-information-item__arrow {
    grid-column: 3;
    grid-row: 1/3;
  }
  .p-information__visual {
    width: 100%;
    padding: 12px;
  }
  .p-information__photo {
    aspect-ratio: 4/3;
    transform: rotate(0.8deg);
  }
  .p-information__doodle--flag {
    top: -25px;
    right: -15px;
    width: 80px;
  }
  .p-information__doodle--sun {
    left: -15px;
    bottom: -30px;
    width: 75px;
  }
}
.p-instagram {
  padding: 110px 0 120px;
  background: #f7f3e8;
}

.p-instagram__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.p-instagram__title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.p-instagram__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid #e56b12;
  border-radius: 50%;
  color: #e56b12;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.p-instagram__label {
  margin: 0;
  color: #e56b12;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.8rem, 3vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
}

.p-instagram__sub {
  margin: 8px 0 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.p-instagram__account {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 1.3rem;
  font-weight: 700;
  transition: gap 0.3s ease, color 0.3s ease;
}
.p-instagram__account:hover {
  gap: 24px;
  color: #e56b12;
}

.p-instagram__feed {
  width: 100%;
}

@media (max-width: 767px) {
  .p-instagram {
    padding: 72px 0 80px;
  }
  .p-instagram__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
  }
  .p-instagram__number {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .p-instagram__label {
    font-size: 2.8rem;
  }
  .p-instagram__account {
    align-self: flex-end;
  }
}
.p-brand-archive {
  background: #f7f3e8;
  color: #191914;
}

.p-brand-archive__hero {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
  background: #f3c532;
}

.p-brand-archive__hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 80px;
}

.p-brand-archive__eyebrow {
  margin: 0 0 18px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.p-brand-archive__title {
  margin: 0;
  color: #242323;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(8rem, 13vw, 18rem);
  font-weight: 900;
  line-height: 0.75;
  letter-spacing: -0.07em;
}

.p-brand-archive__subtitle {
  margin: 24px 0 0;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.p-brand-archive__lead {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
}

.p-brand-archive__doodle {
  position: absolute;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.p-brand-archive__doodle--sun {
  top: -40px;
  right: 3%;
  width: clamp(100px, 11vw, 160px);
  transform: rotate(10deg);
}

.p-brand-list {
  padding: 90px 0 130px;
  background: #f7f3e8;
}

.p-brand-list__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(25, 25, 20, 0.18);
}

.p-brand-list__count {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

.p-brand-list__count strong {
  color: #e56b12;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.p-brand-list__count span {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.p-brand-list__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 14px;
}

.p-brand-list__empty {
  padding: 100px 20px;
  text-align: center;
  border-top: 1px solid #d9d3c5;
  border-bottom: 1px solid #d9d3c5;
}

.p-brand-list__empty-title {
  margin: 0 0 12px;
  color: #e56b12;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 900;
}

.p-brand-list .c-brand-card {
  min-width: 0;
}
.p-brand-list .c-brand-card__image {
  aspect-ratio: 4/5;
}
.p-brand-list .c-brand-card__body {
  min-height: 170px;
}
.p-brand-list .c-brand-card__title {
  word-break: break-word;
}
.p-brand-list .c-brand-card__text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (max-width: 1024px) {
  .p-brand-archive__hero {
    padding: 90px 0 80px;
  }
  .p-brand-archive__hero-inner {
    gap: 40px;
  }
  .p-brand-archive__title {
    font-size: clamp(7rem, 12vw, 12rem);
  }
  .p-brand-list {
    padding: 80px 0 100px;
  }
  .p-brand-list__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 12px;
  }
}
@media (max-width: 767px) {
  .p-brand-archive__hero {
    padding: 70px 0 76px;
  }
  .p-brand-archive__hero-inner {
    display: block;
  }
  .p-brand-archive__eyebrow {
    margin-bottom: 14px;
    font-size: 1rem;
  }
  .p-brand-archive__title {
    font-size: clamp(6.5rem, 25vw, 9rem);
    line-height: 0.8;
  }
  .p-brand-archive__subtitle {
    margin-top: 18px;
    font-size: 1.2rem;
  }
  .p-brand-archive__lead {
    margin-top: 38px;
    font-size: 1.4rem;
    line-height: 1.9;
  }
  .p-brand-archive__doodle--sun {
    top: -15px;
    right: -25px;
    width: 100px;
  }
  .p-brand-list {
    padding: 60px 0 80px;
  }
  .p-brand-list__head {
    margin-bottom: 22px;
    padding-bottom: 14px;
  }
  .p-brand-list__count strong {
    font-size: 3.2rem;
  }
  .p-brand-list__count span {
    font-size: 1rem;
  }
  .p-brand-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 8px;
  }
  .p-brand-list .c-brand-card__image {
    aspect-ratio: 1/1.15;
  }
  .p-brand-list .c-brand-card__body {
    min-height: auto;
  }
  .p-brand-list .c-brand-card__text {
    -webkit-line-clamp: 2;
  }
  .p-brand-list__empty {
    padding: 70px 16px;
  }
  .p-brand-list__empty-title {
    font-size: 2.4rem;
  }
}
.p-brand-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
}

.p-brand-filter__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  background: transparent;
  color: #191914;
  border: 1px solid rgba(25, 25, 20, 0.25);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.p-brand-filter__button:hover {
  background: #f3c532;
  border-color: #f3c532;
  transform: translateY(-2px);
}
.p-brand-filter__button.is-active {
  background: #47752e;
  color: #ffffff;
  border-color: #47752e;
}

.c-brand-card.is-hidden {
  display: none;
}

@media (max-width: 767px) {
  .p-brand-filter {
    flex-wrap: nowrap;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 0 20px 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .p-brand-filter::-webkit-scrollbar {
    display: none;
  }
  .p-brand-filter__button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 9px 15px;
    font-size: 0.9rem;
  }
}
.p-brand-list__count-number {
  display: inline-block;
}

.p-brand-list__count-number.is-updated {
  animation: brand-count-pop 0.35s ease;
}

@keyframes brand-count-pop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.18);
  }
  100% {
    transform: scale(1);
  }
}
.maintenance-page {
  padding-top: 0;
  background: #191914;
}

.p-maintenance {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #ffffff;
}

.p-maintenance__background {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.p-maintenance__background-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-maintenance__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 20, 15, 0.88) 0%, rgba(20, 20, 15, 0.72) 45%, rgba(20, 20, 15, 0.4) 100%);
}

.p-maintenance__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 80px, 1280px);
  min-height: 100svh;
  margin-inline: auto;
  padding: 90px 0 70px;
}

.p-maintenance__content {
  max-width: 820px;
}

.p-maintenance__eyebrow {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 8px 12px;
  background: #f3c532;
  color: #191914;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  transform: rotate(-2deg);
}

.p-maintenance__title {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(6rem, 9vw, 13rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.p-maintenance__title span {
  display: block;
}

.p-maintenance__title span:last-child {
  color: #f3c532;
}

.p-maintenance__copy {
  margin: 36px 0 0;
  font-size: clamp(2.4rem, 3vw, 4rem);
  font-weight: 800;
  line-height: 1.5;
}

.p-maintenance__description {
  max-width: 650px;
  margin-top: 28px;
  font-size: 1.5rem;
  line-height: 2;
}

.p-maintenance__description p {
  margin: 0;
}
.p-maintenance__description p + p {
  margin-top: 12px;
}

.p-maintenance__contents {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 48px;
}

.p-maintenance-card {
  min-height: 150px;
  padding: 20px;
  background: rgba(247, 243, 232, 0.92);
  color: #191914;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
}

.p-maintenance-card:nth-child(2) {
  background: rgba(243, 197, 50, 0.94);
}

.p-maintenance-card:nth-child(3) {
  background: rgba(229, 107, 18, 0.94);
  color: #ffffff;
}

.p-maintenance-card__number {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.p-maintenance-card__label {
  margin: 26px 0 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
}

.p-maintenance-card__text {
  margin: 8px 0 0;
  font-size: 1.2rem;
  line-height: 1.7;
}

.p-maintenance__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.p-maintenance__date-label {
  margin: 0;
  color: #f3c532;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.p-maintenance__date {
  margin: 5px 0 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
}

.p-maintenance__instagram {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  background: #f3c532;
  color: #191914;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  transition: transform 0.3s ease, background 0.3s ease;
}
.p-maintenance__instagram:hover {
  transform: translateY(-3px) rotate(-2deg);
  background: #e56b12;
}

.p-maintenance__doodle {
  position: fixed;
  z-index: 1;
  pointer-events: none;
}

.p-maintenance__doodle--sun {
  top: -40px;
  right: -20px;
  width: 170px;
  transform: rotate(8deg);
}

.p-maintenance__doodle--flag {
  right: 5%;
  bottom: -50px;
  width: 130px;
  transform: rotate(-6deg);
}

@media (max-width: 767px) {
  .p-maintenance__overlay {
    background: linear-gradient(180deg, rgba(20, 20, 15, 0.42) 0%, rgba(20, 20, 15, 0.85) 55%, rgba(20, 20, 15, 0.96) 100%);
  }
  .p-maintenance__inner {
    width: calc(100% - 40px);
    padding: 70px 0 50px;
  }
  .p-maintenance__title {
    font-size: clamp(5rem, 16vw, 7rem);
  }
  .p-maintenance__copy {
    margin-top: 28px;
    font-size: 2.4rem;
  }
  .p-maintenance__description {
    font-size: 1.35rem;
  }
  .p-maintenance__contents {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }
  .p-maintenance-card {
    min-height: auto;
  }
  .p-maintenance-card__label {
    margin-top: 16px;
  }
  .p-maintenance__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .p-maintenance__instagram {
    width: 100%;
    justify-content: space-between;
  }
  .p-maintenance__doodle--sun {
    width: 100px;
  }
  .p-maintenance__doodle--flag {
    display: none;
  }
}
.p-single {
  background: #f7f3e8;
  color: #191914;
}

.p-single__hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  background: #f3c532;
}

.p-single__hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.p-single__label {
  margin: 0 0 18px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.p-single__date {
  display: block;
  margin-bottom: 22px;
  color: #47752e;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.p-single__title {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.8rem, 6vw, 7.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  word-break: break-word;
}

.p-single__doodle {
  position: absolute;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.p-single__doodle--sun {
  top: -40px;
  right: 4%;
  width: clamp(110px, 12vw, 180px);
  transform: rotate(10deg);
}

.p-single__content-section {
  padding: 90px 0 130px;
}

.p-single__content-wrap {
  width: min(100%, 920px);
  margin-inline: auto;
}

.p-single__article {
  width: 100%;
}

.p-single__thumbnail {
  margin: 0 0 58px;
  overflow: hidden;
  background: #ddd;
}

.p-single__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single__content {
  font-size: 1.6rem;
  line-height: 2;
}

.p-single__content > * {
  margin-top: 0;
  margin-bottom: 1.8em;
}

.p-single__content h2 {
  position: relative;
  margin-top: 3.2em;
  margin-bottom: 1.4em;
  padding: 18px 0 16px 22px;
  font-size: clamp(2.5rem, 3vw, 3.6rem);
  font-weight: 900;
  line-height: 1.4;
  border-left: 7px solid #47752e;
}

.p-single__content h3 {
  margin-top: 2.6em;
  margin-bottom: 1.2em;
  padding-bottom: 12px;
  font-size: clamp(2rem, 2.4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.5;
  border-bottom: 2px solid #f3c532;
}

.p-single__content h4 {
  margin-top: 2.2em;
  margin-bottom: 1em;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.6;
}

.p-single__content p {
  margin-bottom: 1.8em;
}

.p-single__content a {
  color: #47752e;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.25s ease;
}
.p-single__content a:hover {
  color: #e56b12;
}

.p-single__content img {
  max-width: 100%;
  height: auto;
}

.p-single__content figure {
  margin: 2.8em 0;
}

.p-single__content figcaption {
  margin-top: 10px;
  color: rgba(25, 25, 20, 0.6);
  font-size: 1.2rem;
  line-height: 1.7;
  text-align: center;
}

.p-single__content ul,
.p-single__content ol {
  margin: 1.8em 0;
  padding-left: 1.6em;
}

.p-single__content li {
  margin-bottom: 0.7em;
}

.p-single__content ul {
  list-style: disc;
}

.p-single__content ol {
  list-style: decimal;
}

.p-single__content blockquote {
  margin: 2.8em 0;
  padding: 26px 30px;
  background: rgba(243, 197, 50, 0.16);
  border-left: 6px solid #f3c532;
}

.p-single__content blockquote p:last-child {
  margin-bottom: 0;
}

.p-single__content table {
  width: 100%;
  margin: 2.5em 0;
  border-collapse: collapse;
  font-size: 1.4rem;
}

.p-single__content th,
.p-single__content td {
  padding: 14px 16px;
  border: 1px solid rgba(25, 25, 20, 0.18);
  text-align: left;
}

.p-single__content th {
  background: #47752e;
  color: #ffffff;
  font-weight: 800;
}

.p-single__content .wp-block-image {
  margin: 2.8em 0;
}
.p-single__content .wp-block-gallery {
  margin: 2.8em 0;
}
.p-single__content .wp-block-button {
  margin: 2em 0;
}
.p-single__content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: #47752e;
  color: #ffffff;
  border-radius: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.p-single__content .wp-block-button__link:hover {
  background: #e56b12;
  color: #ffffff;
  transform: translateY(-2px);
}
.p-single__content .wp-block-separator {
  margin: 60px 0;
  border: 0;
  border-top: 1px solid rgba(25, 25, 20, 0.18);
}

.p-single__page-links {
  margin-top: 50px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
}

.p-single__meta {
  display: grid;
  gap: 20px;
  margin-top: 70px;
  padding: 28px 0;
  border-top: 1px solid rgba(25, 25, 20, 0.18);
  border-bottom: 1px solid rgba(25, 25, 20, 0.18);
}

.p-single__categories,
.p-single__tags {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: start;
  gap: 20px;
}

.p-single__meta-label {
  color: #47752e;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.p-single__meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.p-single__meta-list a {
  color: #191914;
  font-size: 1.25rem;
  font-weight: 700;
  transition: color 0.25s ease;
}
.p-single__meta-list a:hover {
  color: #e56b12;
}

.p-single__back {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.p-single__back-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 24px;
  background: #f3c532;
  color: #191914;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: background 0.3s ease, transform 0.3s ease;
}
.p-single__back-link:hover {
  background: #e56b12;
  transform: translateY(-3px) rotate(-1deg);
}

.p-single__navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 60px;
}

.p-single__navigation-item {
  min-width: 0;
}

.p-single__navigation-item a {
  display: flex;
  flex-direction: column;
  min-height: 150px;
  padding: 24px;
  background: #47752e;
  color: #ffffff;
  transition: background 0.3s ease, transform 0.3s ease;
}
.p-single__navigation-item a:hover {
  background: #e56b12;
  transform: translateY(-4px);
}

.p-single__navigation-item--next {
  text-align: right;
}

.p-single__navigation-label {
  display: block;
  margin-bottom: 26px;
  color: #f3c532;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.p-single__navigation-title {
  display: -webkit-box;
  margin-top: auto;
  overflow: hidden;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 1024px) {
  .p-single__hero {
    padding: 90px 0 75px;
  }
  .p-single__content-section {
    padding: 75px 0 100px;
  }
  .p-single__content-wrap {
    width: min(100%, 820px);
  }
}
@media (max-width: 767px) {
  .p-single__hero {
    padding: 65px 0 58px;
  }
  .p-single__label {
    margin-bottom: 12px;
    font-size: 0.9rem;
  }
  .p-single__date {
    margin-bottom: 16px;
    font-size: 1.1rem;
  }
  .p-single__title {
    font-size: clamp(3.2rem, 10vw, 4.8rem);
    line-height: 1.15;
  }
  .p-single__doodle--sun {
    top: -20px;
    right: -28px;
    width: 100px;
  }
  .p-single__content-section {
    padding: 50px 0 80px;
  }
  .p-single__thumbnail {
    margin-bottom: 36px;
  }
  .p-single__thumbnail img {
    aspect-ratio: 4/3;
  }
  .p-single__content {
    font-size: 1.4rem;
    line-height: 1.9;
  }
  .p-single__content h2 {
    margin-top: 2.6em;
    padding: 12px 0 12px 16px;
    border-left-width: 5px;
    font-size: 2.3rem;
  }
  .p-single__content h3 {
    margin-top: 2.2em;
    font-size: 1.9rem;
  }
  .p-single__content h4 {
    font-size: 1.65rem;
  }
  .p-single__content blockquote {
    padding: 20px 18px;
  }
  .p-single__content table {
    font-size: 1.2rem;
  }
  .p-single__content th,
  .p-single__content td {
    padding: 10px 8px;
  }
  .p-single__meta {
    margin-top: 50px;
    padding: 22px 0;
  }
  .p-single__categories,
  .p-single__tags {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .p-single__meta-list {
    gap: 6px 12px;
  }
  .p-single__back {
    margin-top: 50px;
  }
  .p-single__back-link {
    width: 100%;
    justify-content: space-between;
  }
  .p-single__navigation {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .p-single__navigation-item a {
    min-height: 120px;
    padding: 20px;
  }
  .p-single__navigation-item--next {
    text-align: left;
  }
  .p-single__navigation-label {
    margin-bottom: 18px;
  }
  .p-single__navigation-title {
    font-size: 1.35rem;
  }
}
.p-news-archive {
  background: #f7f3e8;
  color: #191914;
}

.p-news-archive__hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 95px;
  background: #f3c532;
}

.p-news-archive__hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 80px;
}

.p-news-archive__eyebrow {
  margin: 0 0 18px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.p-news-archive__title {
  margin: 0;
  color: #1d1d1d;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(6.5rem, 10vw, 14rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.065em;
}

.p-news-archive__subtitle {
  margin: 24px 0 0;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.p-news-archive__lead {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
}

.p-news-archive__doodle {
  position: absolute;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.p-news-archive__doodle--sun {
  top: -40px;
  right: 3%;
  width: clamp(110px, 11vw, 170px);
  transform: rotate(10deg);
}

.p-news-archive__doodle--flag {
  right: 20%;
  bottom: -20px;
  width: clamp(80px, 8vw, 120px);
  transform: rotate(-7deg);
}

.p-news-list {
  padding: 90px 0 130px;
  background: #f7f3e8;
}

.p-news-list__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(25, 25, 20, 0.18);
}

.p-news-list__label {
  margin: 0;
  color: #47752e;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.p-news-list__count {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

.p-news-list__count strong {
  color: #e56b12;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.p-news-list__count span {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.p-news-list__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px 18px;
}

.c-news-card {
  min-width: 0;
}

.c-news-card__link {
  display: block;
  height: 100%;
  color: #191914;
}

.c-news-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #ddd;
}

.c-news-card__image > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.c-news-card__link:hover .c-news-card__image > img {
  transform: scale(1.05);
}

.c-news-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #47752e;
  color: #f3c532;
}

.c-news-card__placeholder span {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.5rem, 4vw, 5rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-align: center;
}

.c-news-card__arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f3c532;
  color: #191914;
  border-radius: 50%;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  transition: transform 0.3s ease, background 0.3s ease;
}

.c-news-card__link:hover .c-news-card__arrow {
  background: #e56b12;
  transform: rotate(10deg) scale(1.07);
}

.c-news-card__body {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 18px 2px 0;
}

.c-news-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 14px;
}

.c-news-card__date {
  color: rgba(25, 25, 20, 0.62);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.c-news-card__category {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  background: #f3c532;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
}

.c-news-card__title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: 900;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.c-news-card__link:hover .c-news-card__title {
  color: #47752e;
}

.c-news-card__excerpt {
  display: -webkit-box;
  margin: 14px 0 0;
  overflow: hidden;
  color: rgba(25, 25, 20, 0.68);
  font-size: 1.2rem;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.c-news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
  color: #47752e;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: gap 0.3s ease, color 0.3s ease;
}

.c-news-card__link:hover .c-news-card__more {
  gap: 16px;
  color: #e56b12;
}

.p-news-list__pagination {
  margin-top: 80px;
}

.p-news-list__pagination .page-numbers {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.p-news-list__pagination .page-numbers li {
  margin: 0;
}

.p-news-list__pagination .page-numbers a,
.p-news-list__pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  background: transparent;
  color: #191914;
  border: 1px solid rgba(25, 25, 20, 0.2);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.p-news-list__pagination .page-numbers a:hover {
  background: #47752e;
  color: #ffffff;
  border-color: #47752e;
  transform: translateY(-2px);
}

.p-news-list__pagination .page-numbers .current {
  background: #f3c532;
  color: #191914;
  border-color: #f3c532;
}

.p-news-list__empty {
  padding: 100px 20px;
  text-align: center;
  border-top: 1px solid rgba(25, 25, 20, 0.16);
  border-bottom: 1px solid rgba(25, 25, 20, 0.16);
}

.p-news-list__empty-title {
  margin: 0 0 14px;
  color: #e56b12;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 900;
}

@media (max-width: 1024px) {
  .p-news-archive__hero {
    padding: 90px 0 80px;
  }
  .p-news-archive__hero-inner {
    gap: 40px;
  }
  .p-news-list {
    padding: 80px 0 100px;
  }
  .p-news-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 14px;
  }
}
@media (max-width: 767px) {
  .p-news-archive__hero {
    padding: 70px 0 72px;
  }
  .p-news-archive__hero-inner {
    display: block;
  }
  .p-news-archive__eyebrow {
    margin-bottom: 14px;
    font-size: 0.9rem;
  }
  .p-news-archive__title {
    font-size: clamp(4.6rem, 16vw, 7rem);
    line-height: 0.88;
  }
  .p-news-archive__subtitle {
    margin-top: 18px;
    font-size: 1.2rem;
  }
  .p-news-archive__lead {
    margin-top: 34px;
    font-size: 1.35rem;
    line-height: 1.9;
  }
  .p-news-archive__doodle--sun {
    top: -18px;
    right: -28px;
    width: 95px;
  }
  .p-news-archive__doodle--flag {
    display: none;
  }
  .p-news-list {
    padding: 58px 0 80px;
  }
  .p-news-list__head {
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 14px;
  }
  .p-news-list__label {
    font-size: 1rem;
  }
  .p-news-list__count strong {
    font-size: 3rem;
  }
  .p-news-list__count span {
    font-size: 0.9rem;
  }
  .p-news-list__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .c-news-card__body {
    min-height: auto;
    padding-top: 14px;
  }
  .c-news-card__image {
    aspect-ratio: 16/10;
  }
  .c-news-card__link:hover .c-news-card__image > img {
    transform: none;
  }
  .c-news-card__arrow {
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
  }
  .c-news-card__title {
    font-size: 1.9rem;
  }
  .c-news-card__excerpt {
    font-size: 1.15rem;
    -webkit-line-clamp: 2;
  }
  .c-news-card__more {
    margin-top: 18px;
    padding-top: 0;
  }
  .p-news-list__pagination {
    margin-top: 60px;
  }
  .p-news-list__pagination .page-numbers a,
  .p-news-list__pagination .page-numbers span {
    min-width: 42px;
    height: 42px;
    padding: 0 11px;
  }
  .p-news-list__empty {
    padding: 70px 16px;
  }
  .p-news-list__empty-title {
    font-size: 2.4rem;
  }
}
.p-about {
  background: #f7f3e8;
  color: #191914;
}

.p-about__hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 100px;
  background: #f3c532;
}

.p-about__hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 80px;
}

.p-about__hero-main {
  min-width: 0;
}

.p-about__eyebrow {
  margin: 0 0 18px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.p-about__title {
  margin: 0;
  color: #141414;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(7rem, 12vw, 17rem);
  font-weight: 900;
  line-height: 0.76;
  letter-spacing: -0.07em;
}

.p-about__subtitle {
  margin: 26px 0 0;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.p-about__hero-copy {
  margin: 0;
  font-size: clamp(2.4rem, 3vw, 4rem);
  font-weight: 900;
  line-height: 1.5;
}

.p-about__doodle {
  position: absolute;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.p-about__doodle--sun {
  top: -40px;
  right: 3%;
  width: clamp(110px, 11vw, 170px);
  transform: rotate(10deg);
}

.p-about__doodle--flag {
  right: 20%;
  bottom: -26px;
  width: clamp(80px, 8vw, 120px);
  transform: rotate(-8deg);
}

.p-about__section-number {
  margin: 0 0 8px;
  color: #e56b12;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.p-about__section-label {
  margin: 0;
  color: #47752e;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.p-about__heading {
  margin: 30px 0 0;
  font-size: clamp(3.2rem, 4.8vw, 6rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.p-about__text {
  margin-top: 34px;
  max-width: 640px;
  font-size: 1.55rem;
  line-height: 2;
}

.p-about__text p {
  margin: 0;
}

.p-about__text p + p {
  margin-top: 18px;
}

.p-about__intro {
  padding: 110px 0 130px;
}

.p-about__intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 80px;
}

.p-about__intro-content {
  min-width: 0;
}

.p-about__intro-image {
  position: relative;
  min-width: 0;
}

.p-about__intro-image::before {
  content: "";
  position: absolute;
  top: 18px;
  left: -18px;
  width: 100%;
  height: 100%;
  background: #f3c532;
  z-index: 0;
  transform: rotate(-2deg);
}

.p-about__intro-image picture {
  position: relative;
  z-index: 1;
  display: block;
  transform: rotate(1.5deg);
}

.p-about__intro-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about__concept {
  padding: 110px 0 130px;
  background: #47752e;
  color: #ffffff;
}

.p-about__concept-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 70px;
}

.p-about__concept .p-about__section-number {
  color: #f3c532;
}
.p-about__concept .p-about__section-label {
  color: #ffffff;
}

.p-about__concept-title {
  margin: 0;
  color: white;
  font-size: clamp(4rem, 4vw, 8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.p-about__concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.p-about-concept-card {
  position: relative;
  min-height: 300px;
  padding: 28px 26px;
  background: #f7f3e8;
  color: #191914;
  overflow: hidden;
  transition: transform 0.35s ease, background 0.35s ease;
}

.p-about-concept-card:nth-child(2) {
  background: #f3c532;
}

.p-about-concept-card:nth-child(3) {
  background: #e56b12;
  color: #ffffff;
}

.p-about-concept-card:hover {
  transform: translateY(-6px) rotate(-1deg);
}

.p-about-concept-card:nth-child(2):hover {
  transform: translateY(-6px) rotate(1deg);
}

.p-about-concept-card__number {
  display: block;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.p-about-concept-card__title {
  margin: 90px 0 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.8rem, 3.5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.p-about-concept-card__text {
  margin: 18px 0 0;
  max-width: 280px;
  font-size: 1.3rem;
  line-height: 1.8;
}

.p-about__online {
  padding: 120px 0 130px;
  background: #f3c532;
}

.p-about__online-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 90px;
}

.p-about__online-image {
  position: relative;
  min-width: 0;
}

.p-about__online-image::after {
  content: "";
  position: absolute;
  top: -22px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid #47752e;
  z-index: 0;
  transform: rotate(2deg);
}

.p-about__online-image picture {
  position: relative;
  z-index: 1;
  display: block;
  transform: rotate(-1.5deg);
}

.p-about__online-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about__online-content {
  min-width: 0;
}

.p-about__event {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(25, 25, 20, 0.22);
}

.p-about__event-label {
  margin: 0;
  color: #47752e;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.p-about__event-date {
  margin: 8px 0 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3rem, 4.5vw, 5.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.p-about__flow {
  padding: 120px 0 135px;
}

.p-about__flow-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 70px;
}

.p-about__flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.p-about-flow-card {
  min-height: 260px;
  padding: 26px 22px;
  background: #ffffff;
  border: 1px solid rgba(25, 25, 20, 0.14);
  transition: transform 0.3s ease, background 0.3s ease;
}

.p-about-flow-card:nth-child(2) {
  background: rgba(243, 197, 50, 0.18);
}

.p-about-flow-card:nth-child(3) {
  background: rgba(229, 107, 18, 0.12);
}

.p-about-flow-card:nth-child(4) {
  background: #47752e;
  color: #ffffff;
}

.p-about-flow-card:hover {
  transform: translateY(-5px);
}

.p-about-flow-card__step {
  display: inline-flex;
  padding: 6px 9px;
  background: #f3c532;
  color: #191914;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.p-about-flow-card__title {
  margin: 55px 0 0;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.45;
}

.p-about-flow-card__text {
  margin: 16px 0 0;
  font-size: 1.25rem;
  line-height: 1.8;
}

.p-about__cta {
  padding: 100px 0;
  background: #e56b12;
  color: #ffffff;
}

.p-about__cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.p-about__cta-label {
  margin: 0;
  color: #f3c532;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.p-about__cta-title {
  margin: 20px 0 0;
  font-size: clamp(4rem, 6vw, 7.5rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.p-about__cta-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  min-width: 280px;
  padding: 18px 22px;
  background: #f3c532;
  color: #191914;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: background 0.3s ease, transform 0.3s ease;
}

.p-about__cta-button:hover {
  background: #ffffff;
  transform: translateY(-4px) rotate(-1deg);
}

@media (max-width: 1024px) {
  .p-about__hero {
    padding: 90px 0 80px;
  }
  .p-about__hero-inner {
    gap: 40px;
  }
  .p-about__intro,
  .p-about__concept,
  .p-about__online,
  .p-about__flow {
    padding: 90px 0 105px;
  }
  .p-about__intro-grid,
  .p-about__online-grid {
    gap: 50px;
  }
  .p-about__concept-head,
  .p-about__flow-head {
    gap: 40px;
  }
  .p-about__flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .p-about__cta-inner {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .p-about__hero {
    padding: 68px 0 74px;
  }
  .p-about__hero-inner {
    display: block;
  }
  .p-about__eyebrow {
    margin-bottom: 14px;
    font-size: 0.9rem;
  }
  .p-about__title {
    font-size: clamp(6.5rem, 25vw, 9rem);
  }
  .p-about__subtitle {
    margin-top: 18px;
    font-size: 1.2rem;
  }
  .p-about__hero-copy {
    margin-top: 36px;
    font-size: 2.6rem;
  }
  .p-about__doodle--sun {
    top: -18px;
    right: -26px;
    width: 100px;
  }
  .p-about__doodle--flag {
    display: none;
  }
  .p-about__section-number {
    font-size: 1rem;
  }
  .p-about__section-label {
    font-size: 0.95rem;
  }
  .p-about__heading {
    margin-top: 20px;
    font-size: clamp(2.8rem, 9vw, 4rem);
  }
  .p-about__text {
    margin-top: 24px;
    font-size: 1.35rem;
    line-height: 1.9;
  }
  .p-about__intro {
    padding: 70px 0 85px;
  }
  .p-about__intro-grid {
    display: flex;
    flex-direction: column;
    gap: 46px;
  }
  .p-about__intro-image {
    width: calc(100% - 8px);
    margin-left: auto;
  }
  .p-about__intro-image::before {
    top: 12px;
    left: -10px;
  }
  .p-about__intro-image img {
    aspect-ratio: 4/3;
  }
  .p-about__concept {
    padding: 72px 0 84px;
  }
  .p-about__concept-head {
    display: block;
    margin-bottom: 40px;
  }
  .p-about__concept-title {
    margin-top: 24px;
    font-size: clamp(3.4rem, 11vw, 5rem);
  }
  .p-about__concept-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .p-about-concept-card {
    min-height: 220px;
    padding: 22px 20px;
  }
  .p-about-concept-card:hover {
    transform: none;
  }
  .p-about-concept-card:nth-child(2):hover {
    transform: none;
  }
  .p-about-concept-card__title {
    margin-top: 52px;
    font-size: 3.2rem;
  }
  .p-about-concept-card__text {
    font-size: 1.2rem;
  }
  .p-about__online {
    padding: 74px 0 86px;
  }
  .p-about__online-grid {
    display: flex;
    flex-direction: column;
    gap: 52px;
  }
  .p-about__online-image {
    width: calc(100% - 8px);
    margin-right: auto;
  }
  .p-about__online-image::after {
    top: -12px;
    right: -10px;
  }
  .p-about__event {
    margin-top: 34px;
  }
  .p-about__event-date {
    font-size: 3.3rem;
  }
  .p-about__flow {
    padding: 74px 0 86px;
  }
  .p-about__flow-head {
    display: block;
    margin-bottom: 40px;
  }
  .p-about__flow-head .p-about__heading {
    margin-top: 24px;
  }
  .p-about__flow-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .p-about-flow-card {
    min-height: auto;
    padding: 22px 20px 24px;
  }
  .p-about-flow-card:hover {
    transform: none;
  }
  .p-about-flow-card__title {
    margin-top: 34px;
    font-size: 1.9rem;
  }
  .p-about-flow-card__text {
    font-size: 1.2rem;
  }
  .p-about__cta {
    padding: 70px 0;
  }
  .p-about__cta-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .p-about__cta-title {
    font-size: clamp(3.5rem, 11vw, 5rem);
  }
  .p-about__cta-button {
    width: 100%;
    min-width: 0;
    gap: 20px;
  }
}