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

:root {
  --orange: #FF7A2F;
  --orange-dark: #E55E10;
  --amber: #FFB800;
  --amber-light: #FFE085;
  --cream: #FFF8EE;
  --warm-white: #FFFDF9;
  --brown-text: #2D1A00;
  --brown-muted: #7A5C3E;
  --brown-light: #C4A882;
  --card-bg: #FFFFFF;
  --border-radius: 16px;
  --shadow: 0 4px 24px rgba(255, 122, 47, 0.12);
  --line-btn-bg: #06C755;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--cream);
  color: var(--brown-text);
  line-height: 1.7;
  font-size: 16px;
}

/* ======== HEADER ======== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid var(--amber-light);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__badge {
  width: 90px;
  border-radius: 8px;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .header__badge {
    width: 70px;
  }
}

.header__badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__shop-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--brown-muted);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn--call {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn--call:hover {
  background: var(--orange-dark);
}

.btn--call .btn__icon {
  width: 20px;
}

.btn--call .btn__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ======== HERO ======== */
.hero {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 40%, #FFCC80 100%);
  padding: 60px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 184, 0, 0.2);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 122, 47, 0.15);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.hero h1 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: clamp(26px, 6vw, 44px);
  font-weight: 900;
  color: var(--brown-text);
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--orange);
  background: linear-gradient(to right, var(--orange), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(14px, 3vw, 18px);
  color: var(--brown-muted);
  margin-bottom: 32px;
  font-weight: 500;
}

.btn--primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--amber) 100%);
  color: #fff;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 4vw, 20px);
  padding: 18px 48px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(255, 122, 47, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.05em;
  max-width: 380px;
  margin-inline: auto;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 122, 47, 0.5);
}

.btn__icon {
  display: block;
  width: 25px;
  height: 25px;
  aspect-ratio: 1/1;
}

.btn__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--brown-muted);
}

/* ======== TRUST BAR ======== */
.trust-bar {
  background: var(--orange);
  padding: 16px 20px;
  overflow: hidden;
}

.trust-bar__items {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.trust-bar__item {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-bar__dot {
  width: 8px;
  height: 8px;
  background: var(--amber-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ======== SECTIONS COMMON ======== */
.section {
  padding: 72px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.section__label {
  display: inline-block;
  background: var(--amber-light);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section__title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 900;
  color: var(--brown-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.section__desc {
  font-size: 15px;
  color: var(--brown-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

.section--faq {
  background: var(--cream);
}

/* ======== PAIN POINTS ======== */
.pain {
  background: var(--warm-white);
  padding: 72px 20px;
}

.pain__inner {
  max-width: 900px;
  margin: 0 auto;
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px 5px;
  margin-top: 40px;
}

.pain__card {
  background: #fff;
  border: 2px solid #FFE0B2;
  border-radius: var(--border-radius);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s;
}

.pain__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.pain__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pain__text {
  font-size: 15px;
  font-weight: 700;
  color: var(--brown-text);
  line-height: 1.5;
}

.pain__arrow {
  text-align: center;
  margin-top: 40px;
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 900;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  color: var(--orange);
}

/* ======== REASONS ======== */
.reason {
  background: var(--warm-white);
  padding: 72px 20px;
}

.reason__inner {
  max-width: 900px;
  margin: 0 auto;
}

.reason__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.reason__card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.reason__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--orange), var(--amber));
}

.reason__num {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 8px;
}

.reason__heading {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--orange-dark);
  margin-bottom: 10px;
}

.reason__desc {
  font-size: 14px;
  color: var(--brown-muted);
  line-height: 1.8;
}

/* ======== ABOUT ======== */
.about__box {
  background: #fdfaf6;
  border: 2px solid var(--amber-light);
  border-radius: 24px;
  padding: 40px 36px;
  margin-top: 40px;
}

.about__title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 900;
  color: var(--orange-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about__box p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--brown-text);
}

.about__icon {
  width: 38px;
  height: 38px;
  display: inline-block;
  vertical-align: middle;
}

.about__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ======== CTA BANNER ======== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--amber) 100%);
  padding: 60px 20px;
  text-align: center;
}

.cta-banner__title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.cta-banner__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 32px;
}

.btn--white {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: var(--brown-text);
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: clamp(15px, 3vw, 18px);
  padding: 16px 44px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
  max-width: 380px;
  margin-inline: auto;
}

@media (max-width: 600px) {
  .btn--white {
    padding: 16px 24px;
  }
}

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

.btn--white .btn__icon {
  width: 20px;
  height: 20px;
}

/* ======== FAQ ======== */
.faq__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #FFE0B2;
  overflow: hidden;
}

.faq__q {
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--brown-text);
  user-select: none;
  list-style: none;
  transition: background 0.2s;
}

.faq__q:hover {
  background: #FFF8EE;
}

.faq__q::marker,
.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q-icon {
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

.faq__arrow {
  margin-left: auto;
  color: var(--orange);
  font-size: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

details[open] .faq__arrow {
  transform: rotate(180deg);
}

.faq__a {
  padding: 0 24px 20px 66px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--brown-muted);
}

/* ======== FOOTER ======== */
.footer {
  background: var(--brown-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 90px;
  text-align: center;
}

.footer__logo {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--amber);
  width: 100px;
  margin-inline: auto;
  margin-bottom: 10px;
}

.footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__shop {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
  font-weight: 700;
}

.footer__tel {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.footer__addr {
  font-size: 13px;
  margin-bottom: 24px;
}

.footer__copy {
  font-size: 12px;
  padding-top: 20px;
}

/* ======== FLOATING CTA (SP) ======== */
.float-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  gap: 12px;
}

.float-cta__btn {
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(42, 22, 10, 0.5);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  transition: transform 0.2s;
}

.float-cta__btn:hover {
  transform: translateY(-2px);
}

.float-cta__btn--line {
  background: #fff;
  color: #000;
}

.float-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-cta__icon img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ======== SNS ======== */
.sns {
  background: var(--warm-white);
  padding: 72px 20px;
}

.sns__inner {
  max-width: 900px;
  margin: 0 auto;
}

.sns__follow-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.sns__follow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.sns__follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.sns__follow-btn--instagram {
  background: linear-gradient(
    45deg,
    #405de6,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
  color: #fff;
}

.sns__follow-btn--line {
  background: #fff;
  color: #000;
}

.sns__follow-btn--tiktok {
  background: #000;
  color: #fff;
}

.sns__follow-btn--x {
  background: #000;
  color: #fff;
}

.sns__follow-btn .sns__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

/* Instagram embed area */
.sns__embed {
  margin-top: 8px;
  overflow: hidden;
}

.sns__embed-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--brown-text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sns__embed-badge {
  background: linear-gradient(
    45deg,
    #405de6,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 50px;
}

/* Embed grid: 3-up post previews OR single embed */
.embed__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.embed__placeholder {
  background: #fff;
  border: 2px dashed #FFD0A8;
  border-radius: var(--border-radius);
  padding: 36px 20px;
  text-align: center;
  color: var(--brown-muted);
}

.embed__placeholder-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.embed__placeholder p {
  font-size: 14px;
  line-height: 1.7;
}

.embed__placeholder code {
  display: inline-block;
  background: #FFF3E0;
  color: var(--orange-dark);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 8px;
  word-break: break-all;
}

.embed__ig-wrap {
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid #FFE0B2;
}

/* フッター SNS アイコン */
.footer__sns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer__sns-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.85;
}

.footer__sns-icon:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.footer__sns-icon--instagram {
  background: linear-gradient(
    45deg,
    #405de6,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
}

.footer__sns-icon--instagram img {
  display: block;
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.footer__sns-icon--line img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__sns-icon--tiktok {
  background: #000;
  color: #fff;
  width: fit-content;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1;
}

.footer__sns-icon--x {
  background: #1d1d1d;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 600px) {
  .header__shop-name {
    display: none;
  }

  .about__box {
    padding: 28px 20px;
  }

  .trust-bar__items {
    gap: 16px;
  }

  .float-cta {
    left: 0;
    right: 0;
    width: auto;
    transform: none;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .float-cta__btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
  }

  .sns__follow-btn {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
  }
}

.u-sp-only {
  display: none;
}

@media (max-width: 600px) {
  .u-sp-only {
    display: block;
  }
}

.u-pc-only {
  display: block;
}

@media (max-width: 600px) {
  .u-pc-only {
    display: none;
  }
}

/* ======== MAP ======== */

.map{
  margin-top: 50px;
}

.map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

@media (max-width: 600px) {
  .map iframe {
    height: 250px;
  }
}