:root {
  --color-main: #ff7a00;
  --color-main-dark: #e76500;
  --color-accent: #ffcc4d;
  --color-bg: #fff8f1;
  --color-card: #ffffff;
  --color-text: #333333;
  --color-sub: #666666;
  --color-line: #f1dfd1;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  /* box-sizing: border-box; */
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, #ffe0b8 0, transparent 22%),
    radial-gradient(circle at top right, #ffd4d4 0, transparent 18%),
    linear-gradient(180deg, #fff7ef 0%, #fffdf9 30%, #fff8f1 100%);
  line-height: 1.7;
}

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

a {
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.section-heading__sub {
  display: inline-block;
  margin: 0 0 8px;
  font-weight: 800;
  color: var(--color-main);
  letter-spacing: 0.08em;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
}

.section-heading__lead {
  margin: 12px auto 0;
  max-width: 640px;
  color: var(--color-sub);
}

.hero {
  padding: 32px 0 56px;
}

.hero__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero__tag {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--color-accent);
  font-weight: 700;
  font-size: 14px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 800;
}

.hero__lead {
  margin: 0 0 20px;
  color: var(--color-sub);
  font-size: 16px;
}

.hero__info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 24px;
}

.hero__info span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--color-line);
  font-size: 14px;
  font-weight: 500;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn--primary {
  background: var(--color-main);
  color: #fff;
  /* background: #ffffff; */
  /* color: #ff7a00!important; */
}

.btn--ghost {
  background: #fff;
  color: var(--color-main);
  border: 2px solid var(--color-main);
}

.hero__image img {
  aspect-ratio: 7 / 5;
  object-fit: cover;
  border-radius: 24px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid #fff2e2;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  color: var(--color-sub);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.shop-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.shop-card__image-wrap {
  position: relative;
}

.shop-card__image-wrap img {
  aspect-ratio: 5 / 3.6;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-block;
  padding: 7px 12px;
  background: var(--color-main);
  color: #fff;
  /* background: #ffffff; */
  /* color: #ff7a00!important; */
  /* border: 1px solid #ff7a00; */
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  z-index: 1;
}

.shop-card__body {
  padding: 18px 18px 20px;
}

.shop-card__store {
  margin: 0 0 6px;
  color: var(--color-main);
  font-weight: 700;
  font-size: 14px;
}

.shop-card__name {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.shop-card__price {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
}

.shop-card__pr {
  margin: 0;
  color: var(--color-sub);
  font-size: 14px;
}

.access-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.access-box__item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
}

.access-box__item h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--color-main);
}

.access-box__item p {
  margin: 0;
}

.footer {
  padding: 28px 16px 40px;
  text-align: center;
  color: var(--color-sub);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .features__grid,
  .shop-grid,
  .access-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 16px 0 40px;
  }

  .hero__inner {
    padding: 20px;
    border-radius: 24px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero__lead br {
    display: none;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .features__grid,
  .shop-grid,
  .access-box {
    grid-template-columns: 1fr;
  }

  .shop-card__name,
  .shop-card__price {
    font-size: 20px;
  }
}

/* 2026/3/26 */

/* かわいいフォント
   Google Fontsを使うなら head に以下を追加
   <link href="https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@400;500&family=Mochiy+Pop+One&display=swap" rel="stylesheet">
*/

.features {
  position: relative;
}

.section-heading__sub {
  font-family: "Kiwi Maru", serif;
  letter-spacing: 0.12em;
}

/* 見出し */
.pop-heading {
  margin: 0;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.04em;
}

.pop-heading span {
  display: inline-block;
  margin: 0 0.02em;
  text-shadow:
    3px 3px 0 #ffffff,
    6px 6px 0 rgba(0, 0, 0, 0.12);
  transform-origin: center bottom;
  animation: popFloat 2.4s ease-in-out infinite;
}

/* 1文字ずつ色を変える */
.pop-heading span:nth-child(1)  { color: #ff5fa2; transform: rotate(-10deg); animation-delay: 0s; }
.pop-heading span:nth-child(2)  { color: #ff944d; transform: rotate(-4deg);  animation-delay: 0.08s; }
.pop-heading span:nth-child(3)  { color: #ffd84d; transform: rotate(6deg);   animation-delay: 0.16s; }
.pop-heading span:nth-child(4)  { color: transparent; text-shadow: none; }
.pop-heading span:nth-child(5)  { color: #62d96b; transform: rotate(-8deg);  animation-delay: 0.24s; }
.pop-heading span:nth-child(6)  { color: #42c8ff; transform: rotate(5deg);   animation-delay: 0.32s; }
.pop-heading span:nth-child(7)  { color: #7a7cff; transform: rotate(-6deg);  animation-delay: 0.40s; }
.pop-heading span:nth-child(8)  { color: #b86cff; transform: rotate(7deg);   animation-delay: 0.48s; }
.pop-heading span:nth-child(9)  { color: #ff70c8; transform: rotate(-4deg);  animation-delay: 0.56s; }
.pop-heading span:nth-child(10) { color: #ff9f1c; transform: rotate(8deg);   animation-delay: 0.64s; }
.pop-heading span:nth-child(11) { color: #ff4d6d; transform: rotate(-8deg);  animation-delay: 0.72s; }
.pop-heading span:nth-child(12) { color: #ff4d6d; transform: rotate(8deg);   animation-delay: 0.80s; }

@keyframes popFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

/* カード全体 */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  border-radius: 28px;
  padding: 28px 22px;
  color: #fff;
  box-shadow:
    0 10px 0 rgba(0, 0, 0, 0.08),
    0 18px 30px rgba(0, 0, 0, 0.14);
  border: 4px solid #fff;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 110px;
  height: 110px;
  background: rgba(255,255,255,0.14);
  border-radius: 50%;
}

.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  margin: 0 0 14px;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.12);
}

.feature-card p {
  margin: 0;
  font-family: "Kiwi Maru", serif;
  font-size: 1rem;
  line-height: 1.9;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.08);
}

/* カードごとに色を変える */
.feature-card--pink {
  background: linear-gradient(135deg, #ff7eb6 0%, #ff5c8a 100%);
}

.feature-card--orange {
  background: linear-gradient(135deg, #ffb347 0%, #ff7a18 100%);
}

.feature-card--mint {
  background: linear-gradient(135deg, #4de2c5 0%, #27c4a8 100%);
}

/* ちょいポップ感アップ */
.feature-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  transition: 0.25s ease;
}

/* スマホ */
@media (max-width: 767px) {
  .features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .pop-heading {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .pop-heading span {
    text-shadow:
      2px 2px 0 #ffffff,
      4px 4px 0 rgba(0, 0, 0, 0.10);
  }
}

/* 商品カード 岩手初出店*/
/* 横並びにする */
.shop-card__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* 左のテキスト */
.shop-card__text {
  flex: 1;
}

/* 右の画像 */
.shop-card__rank {
  width: 80px;
  flex-shrink: 0;
}

.shop-card__rank img {
  width: 100%;
  height: auto;
  display: block;
}
.shop-card__rank img {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
