﻿:root {
  --pink: #d7114c;
  --pink-deep: #b90e42;
  --yellow: #fff;
  --ink: #111;
  --muted: #6d6d6d;
  --line: #ececf1;
  --paper: #fff;
  --soft: #f7f7f8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  background: var(--paper);
  font-weight: 700;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.mobile-break {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 300px minmax(520px, 1fr);
  align-items: center;
  min-height: 76px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.brand {
  position: relative;
  height: 76px;
  padding: 9px 34px 9px 24px;
  background: var(--pink);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
}

.brand img {
  width: 184px;
  height: 58px;
  object-fit: cover;
  object-position: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 44px);
  padding: 0 24px;
  font-size: 14px;
  font-weight: 900;
}

.nav {
  justify-content: flex-end;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: var(--pink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 54% 0 0;
  background-color: var(--pink);
  background-image: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, .18), transparent 28%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 40%;
  background: linear-gradient(105deg, var(--pink) 0 18%, transparent 18.2%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: clamp(430px, 38vw, 560px);
  padding: 86px 32px 72px clamp(34px, 5.4vw, 74px);
}

.area {
  display: inline-block;
  margin: 0 0 24px;
  padding: 9px 16px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 5.15vw, 76px);
  line-height: 1.2;
  font-weight: 900;
}

.brand-name {
  display: inline-block;
  white-space: nowrap;
}

.lead {
  width: min(460px, 100%);
  margin-bottom: 34px;
  font-size: 18px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 16px 25px rgba(0, 0, 0, .12);
}

.btn-light {
  color: var(--pink);
  background: #fff;
}

.btn-dark {
  color: #fff;
  background: #050505;
}

.btn-pink {
  min-height: 42px;
  color: #fff;
  background: var(--pink);
}

.hero-image {
  position: absolute;
  inset: 0 0 0 43%;
}

.hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-stack {
  position: absolute;
  right: 42px;
  bottom: 50px;
  width: 245px;
  display: grid;
  gap: 12px;
  transform: rotate(10deg);
}

.photo-stack img {
  height: 132px;
  width: 100%;
  object-fit: cover;
  border: 9px solid #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

.burst {
  position: absolute;
  z-index: 6;
  top: 74px;
  left: clamp(430px, 41vw, 610px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 148px;
  padding: 27px 20px 25px;
  color: #111;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 60% 12%, 76% 8%, 81% 24%, 97% 29%, 89% 45%, 100% 58%, 85% 67%, 87% 84%, 70% 85%, 58% 100%, 45% 88%, 29% 94%, 23% 77%, 6% 72%, 13% 55%, 0% 42%, 16% 34%, 14% 17%, 32% 17%);
  font-size: 13px;
  line-height: 1.1;
  text-align: center;
  font-weight: 900;
  white-space: nowrap;
}

.burst strong {
  display: block;
  margin: 3px 0 5px;
  font-size: 32px;
  line-height: .95;
  letter-spacing: 0;
}

.burst span {
  display: block;
}

.script-note,
.enjoy {
  position: absolute;
  z-index: 6;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 27px;
  line-height: 1.15;
  transform: rotate(-7deg);
}

.script-note {
  top: 120px;
  right: 80px;
}

.section {
  position: relative;
  padding: 72px clamp(24px, 6vw, 84px);
}

.howto {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.label {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 14px;
  color: #fff;
  background: #050505;
  border-radius: 2px;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.section-side h2,
.items h2,
.mission h2,
.sns h2,
.stores h2,
.faq h2,
.media h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.35;
  font-weight: 900;
}

.section-side p {
  font-size: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.step {
  position: relative;
  min-height: 245px;
  padding: 58px 32px 32px;
  text-align: center;
  background: linear-gradient(145deg, #fff, #f0f0f2);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .08);
}

.step > span {
  position: absolute;
  top: -20px;
  left: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--pink);
  border-radius: 50%;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
}

.step h3 {
  margin-bottom: 16px;
  font-size: 18px;
}

.step p {
  margin: 0;
  color: #333;
  font-size: 13px;
  line-height: 1.9;
}

.step-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  background: #111;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.shirt {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 8h16l6 8 12 5-7 14-7-3v24H20V32l-7 3-7-14 12-5 6-8Zm4 4 4 4 4-4h-8Z'/%3E%3C/svg%3E");
}

.search {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27 8a19 19 0 1 1 0 38 19 19 0 0 1 0-38Zm0 6a13 13 0 1 0 0 26 13 13 0 0 0 0-26Zm14 29 5-5 13 13-5 5-13-13Z'/%3E%3C/svg%3E");
}

.money {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 16h48v30H8V16Zm6 6v18h36V22H14Zm18 3a6 6 0 1 1 0 12 6 6 0 0 1 0-12ZM4 26h8v6H4v-6Zm48 0h8v6h-8v-6ZM18 50h36v6H18v-6Z'/%3E%3C/svg%3E");
}

.enjoy {
  right: 36px;
  top: 155px;
  color: var(--pink);
}

.items {
  padding-top: 18px;
  text-align: center;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: 1280px;
  margin: 28px auto 24px;
}

.item-grid article {
  position: relative;
  min-height: clamp(130px, 10vw, 168px);
  overflow: hidden;
  border-radius: 8px;
  background-image: url("assets/items-grid.png");
  background-size: 320%;
  background-position: var(--x) var(--y);
  box-shadow: inset 0 -70px 65px rgba(0, 0, 0, .18);
}

.item-grid span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  display: block;
  padding: 8px;
  background: rgba(255, 255, 255, .94);
  border-radius: 2px;
  font-size: 15px;
  font-weight: 900;
}

.item-grid .more {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d7114c, var(--pink));
}

.item-grid .more span {
  position: static;
  color: #fff;
  background: transparent;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
}

.mission {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) 1.15fr;
  min-height: 370px;
  color: #fff;
  background: var(--pink);
  overflow: hidden;
}

.mission-copy {
  position: relative;
  z-index: 3;
  padding: clamp(48px, 6vw, 78px) clamp(24px, 6vw, 82px);
  background:
    radial-gradient(circle at 15% 0, rgba(255, 255, 255, .16), transparent 35%),
    linear-gradient(135deg, #d7114c, var(--pink-deep));
}

.mission-copy p {
  max-width: 560px;
  line-height: 2;
}

.mission-media {
  position: relative;
  display: grid;
  grid-template-columns: .65fr 1fr;
  gap: 0;
  padding: 0;
}

.mission-media img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  object-fit: cover;
}

.earth-badge {
  position: absolute;
  left: 23%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  color: #fff;
  background: radial-gradient(circle at 35% 30%, #7fe4ff, #146cc2 45%, #07427e);
  border: 10px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  font-family: "Outfit", sans-serif;
  font-size: 19px;
  text-align: center;
  transform: translate(-50%, -50%) rotate(-18deg);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .25);
}

.sns {
  padding-top: 72px;
  padding-bottom: 72px;
  color: #fff;
  background: var(--pink);
}

.sns-head,
.headline-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

.sns-head p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .88);
  line-height: 1.8;
}

.instagram-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.instagram-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 26px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, .12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.instagram-card:hover,
.instagram-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, .16);
}

.instagram-store {
  color: var(--pink);
  font-size: 14px;
  font-weight: 900;
}

.instagram-card strong {
  font-family: "Outfit", "Noto Sans JP", system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.instagram-cta {
  align-self: end;
  color: #333;
  font-size: 13px;
}

.black {
  margin-bottom: 0;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.store-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
  background: #f4f4f5;
  border-radius: 2px;
}

.store-card img {
  width: 100%;
  height: 100%;
  min-height: 188px;
  object-fit: cover;
}

.store-card div {
  padding: 24px 22px;
}

.store-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.store-card p {
  margin-bottom: 9px;
  color: #333;
  font-size: 13px;
  line-height: 1.65;
}

.store-card .store-address {
  margin-bottom: 8px;
}

.store-card .map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0 0 12px;
  padding: 0 14px;
  color: #fff;
  background: var(--pink);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(215, 17, 76, .18);
}

.store-card .map-link:hover,
.store-card .map-link:focus-visible {
  background: var(--pink-deep);
}

.faq {
  padding-top: 36px;
  background: linear-gradient(#fff, #f7f7f8);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.faq-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-grid h3 {
  font-size: 18px;
}

.faq-grid p {
  margin: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.85;
}

.media {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  align-items: center;
  padding: 46px clamp(24px, 6vw, 84px);
  background: #f1f1f3;
}

.media p {
  margin: 0;
  color: #555;
  line-height: 1.8;
}

.media-logos {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.media-logos a {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.media-logos a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .1);
}

.media-logos img {
  width: min(100%, 190px);
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

.footer {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 34px clamp(24px, 6vw, 84px);
  color: #fff;
  background: var(--pink);
}

.footer img {
  width: 160px;
  height: 58px;
  object-fit: cover;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13px;
}

.footer p {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .9);
  text-align: center;
}

.footer-legal p {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 11px;
  line-height: 1.7;
}

.footer-legal a {
  border-bottom: 1px solid rgba(255, 255, 255, .55);
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  border-bottom-color: #fff;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 220px 1fr;
  }

  .nav {
    gap: 20px;
    padding-right: 22px;
  }

  .hero-copy {
    width: min(500px, 56vw);
  }

  h1 {
    font-size: clamp(44px, 6.2vw, 54px);
  }

  .hero-image {
    inset: 0 0 0 46%;
  }

  .hero::before {
    inset: 0 50% 0 0;
  }

  .hero::after {
    inset: 0 0 0 43%;
  }

  .steps,
  .store-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .item-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .store-card {
    grid-template-columns: 36% 1fr;
  }

  .media,
  .footer {
    grid-template-columns: 1fr;
  }

  .media-logos {
    grid-column: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr;
  }

  .brand {
    width: 252px;
  }

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 14px 18px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    background: var(--pink);
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-image {
    position: relative;
    inset: auto;
    height: 340px;
  }

  .hero-copy {
    width: auto;
    padding: 34px 24px 42px;
    background: var(--pink);
  }

  .photo-stack,
  .burst,
  .script-note {
    display: none;
  }

  .lead {
    font-size: 16px;
  }

  .items h2 .mobile-break {
    display: block;
  }

  .howto {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 32px;
  }

  .enjoy {
    display: none;
  }

  .item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-links {
    grid-template-columns: 1fr;
  }

  .item-grid article {
    min-height: 124px;
  }

  .mission {
    grid-template-columns: 1fr;
  }

  .mission-media {
    grid-template-columns: 1fr;
  }

  .mission-media img {
    min-height: 240px;
  }

  .mission-media img:first-child {
    display: none;
  }

  .earth-badge {
    left: 18px;
    right: auto;
    width: 132px;
    height: 132px;
    font-size: 14px;
    transform: translate(0, -50%) rotate(-18deg);
  }

  .store-card {
    display: flex;
    flex-direction: column;
  }

  .store-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .store-card div {
    position: relative;
    z-index: 1;
    background: #f4f4f5;
  }

  .media-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .item-grid article {
    min-height: clamp(138px, 42vw, 160px);
  }

  .item-grid span {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 13px;
  }

  .item-grid .more span {
    font-size: 20px;
  }

  .media-logos {
    grid-template-columns: 1fr;
  }

  .instagram-card {
    min-height: 132px;
    padding: 22px;
  }

  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }
}




