/*
Theme Name: Snack ChoiTas Calm Pop
Theme URI: https://choi-tas.com/
Author: ChoiTas
Description: スナックちょいたす専用の明るくポップなWordPressテーマです。
Version: 2.3.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: snack-choitas
*/

:root {
  --ink: #33231f;
  --muted: #765f59;
  --paper: #fffaf0;
  --pink: #d9797f;
  --pink-soft: #f8e2e0;
  --coral: #df8c6b;
  --yellow: #e8bf64;
  --yellow-soft: #f8edcb;
  --mint: #84b89a;
  --mint-soft: #e6f3e9;
  --blue: #8bb7ca;
  --white: #ffffff;
  --line: rgba(51, 35, 31, 0.13);
  --shadow: 0 18px 44px rgba(132, 103, 82, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(232, 191, 100, 0.18) 0 90px, transparent 91px),
    linear-gradient(180deg, #fffaf0 0%, #fff6ee 45%, #f5fbf1 100%);
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 250, 242, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  min-width: 76px;
  min-height: 40px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--mint);
  font-weight: 900;
}

.brand-name {
  font-size: 18px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover {
  background: var(--yellow-soft);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.96) 0%, rgba(255, 250, 242, 0.84) 44%, rgba(255, 250, 242, 0.2) 100%),
    var(--hero-image) center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(223, 140, 107, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(223, 140, 107, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0 120px;
}

.eyebrow,
.section-kicker,
.mini-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 6px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(52px, 9vw, 112px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 4px 4px 0 var(--yellow-soft);
}

.lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: #4f3a35;
  font-size: clamp(18px, 2.1vw, 23px);
  font-weight: 700;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
}

.opening-note {
  position: absolute;
  right: clamp(16px, 5vw, 72px);
  bottom: 34px;
  max-width: 360px;
  padding: 18px 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--mint);
}

.opening-note span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

.opening-note p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 84px 0;
}

.intro-section {
  background: var(--paper);
}

.price-section {
  background: linear-gradient(135deg, var(--yellow-soft), #fff7ef);
}

.news-section {
  background: var(--mint-soft);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) 1fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 38px;
}

.section-head.compact {
  margin-bottom: 28px;
}

.section-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.32;
}

.section-copy {
  max-width: 780px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.scene-photo {
  margin: 0 0 24px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--mint);
}

.scene-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.concept-item,
.info-card,
.news-card {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.concept-item {
  padding: 26px;
}

.concept-item.pink {
  box-shadow: 7px 7px 0 var(--coral);
}

.concept-item.yellow {
  box-shadow: 7px 7px 0 var(--yellow);
}

.concept-item.mint {
  box-shadow: 7px 7px 0 var(--mint);
}

.concept-number {
  color: var(--coral);
  font-size: 34px;
  font-weight: 900;
}

.concept-item h3,
.info-card h3,
.news-card h3 {
  margin: 8px 0 10px;
  font-size: 22px;
  line-height: 1.45;
}

.concept-item p,
.info-card p,
.news-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.info-card {
  padding: 30px;
}

.price-card {
  background: var(--white);
  box-shadow: 8px 8px 0 var(--mint);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 2px 0 14px;
  color: var(--coral);
}

.price strong {
  font-size: clamp(58px, 8vw, 92px);
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
}

.price-benefits {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.price-benefits li {
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow-soft);
  color: var(--ink);
  font-weight: 900;
}

.access-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
}

.info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
}

.info-row dt {
  color: var(--pink);
  font-weight: 900;
}

.info-row dd {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.map-placeholder {
  display: grid;
  min-height: 320px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(132, 184, 154, 0.22) 1px, transparent 1px),
    linear-gradient(rgba(132, 184, 154, 0.22) 1px, transparent 1px),
    var(--yellow-soft);
  background-size: 28px 28px;
  box-shadow: 8px 8px 0 var(--blue);
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.news-card {
  position: relative;
  padding: 32px;
  box-shadow: 8px 8px 0 var(--yellow);
}

.news-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--coral);
  font-weight: 900;
}

.site-footer {
  padding: 42px 0;
  border-top: 2px solid var(--ink);
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-title {
  margin: 0;
  font-weight: 900;
}

.footer-copy {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
    gap: 10px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 2px;
    white-space: nowrap;
  }

  .hero {
    min-height: 760px;
    align-items: start;
    background:
      linear-gradient(180deg, rgba(255, 250, 242, 0.97) 0%, rgba(255, 250, 242, 0.82) 52%, rgba(255, 250, 242, 0.24) 100%),
      var(--hero-image) center bottom / cover no-repeat;
  }

  .hero-inner {
    padding: 58px 0 260px;
  }

  .opening-note {
    position: static;
    width: min(100% - 32px, 1120px);
    margin: -218px auto 34px;
  }

  .section {
    padding: 62px 0;
  }

  .section-head,
  .concept-grid,
  .info-grid,
  .access-band {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 12px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
