/* =========================================================
   愛の手 AINOTE — Landing Page
   ========================================================= */

:root{
  --cream: #fdf6ec;
  --cream-2: #fbeedd;
  --coral: #ff6e5c;
  --coral-2: #f47265;
  --coral-soft: #fbb5a5;
  --pink-soft: #fde2d8;
  --brown: #4a2a1a;
  --brown-2: #6b4030;
  --line-green: #06c755;
  --line-green-2: #00b34a;
  --text: #4a2a1a;
  --muted: #8a6f5e;
  --footer-bg: #3a1f14;
  --footer-bg-2: #4a2a1a;
  --radius: 24px;
}

*{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; }
body{
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Maru Gothic ProN", sans-serif;
  color: var(--text);
  background: var(--cream);
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-width: 1720px;
}
img{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  background: var(--cream);
  border-bottom: 1px solid #f3e7d6;
  position: sticky; top: 0; z-index: 50;
}
.header-inner{
  max-width: 1720px; margin: 0 auto;
  padding: 22px 56px;
  display: flex; align-items: center; gap: 48px;
}
.brand{
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.brand-logo-img{
  height: 64px;
  width: auto;
  display: block;
}
.brand-logo-img--footer{
  height: 70px;
  /* logo has dark text; on dark footer, lift brightness slightly */
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.25));
}
.brand-logo{ width: 56px; height: 56px; display: inline-grid; place-items: center; }
.brand-logo svg{ width: 100%; height: 100%; }
.brand-text{ display: flex; flex-direction: column; line-height: 1; }
.brand-jp{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--brown);
  letter-spacing: .02em;
}
.brand-en{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--coral);
  margin-top: 6px;
}
.site-nav{
  display: flex; align-items: center; gap: 56px;
  margin-left: auto; margin-right: 32px;
}
.site-nav a{
  font-size: 16px; font-weight: 700;
  color: var(--brown);
  position: relative;
  transition: color .2s;
}
.site-nav a:hover{ color: var(--coral); }
.line-pill{
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--line-green);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 6px 0 var(--line-green-2);
  transition: transform .15s, box-shadow .15s;
}
.line-pill:hover{ transform: translateY(2px); box-shadow: 0 4px 0 var(--line-green-2); }
.line-mark{
  background: #fff; color: var(--line-green);
  font-size: 11px; font-weight: 900;
  padding: 3px 8px; border-radius: 999px;
  letter-spacing: .02em;
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  background: linear-gradient(180deg, #fcecd9 0%, #fbe4cf 100%);
  overflow: hidden;
  padding: 60px 56px 80px;
}
.hero-grid{
  max-width: 1720px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-deco{ position: absolute; pointer-events: none; opacity: .9; }
.hero-deco--blob-left{ left: -80px; top: 80px; width: 280px; }
.hero-deco--dotgrid{ left: 30px; top: 380px; width: 110px; opacity: .6; }
.hero-deco--dotcircle{ display: none; }
.hero-deco--sparkle-1{ left: 700px; top: 240px; width: 60px; }
.hero-deco--sparkle-2{ left: 760px; top: 320px; width: 36px; }
.hero-deco--sparkle-3{ left: 660px; top: 380px; width: 28px; }
.hero-deco--sparkle-4{ left: 700px; top: 480px; width: 22px; }

.hero-copy{ padding-left: 24px; max-width: 860px; }

.hero-badge{
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border: 2px solid var(--coral-soft);
  color: var(--coral);
  font-weight: 700;
  font-size: 18px;
  padding: 12px 28px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-badge-heart{ display: inline-grid; place-items: center; width: 22px; height: 22px; }
.hero-badge-heart svg{ width: 100%; height: 100%; }

.hero-title{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 1.25;
  letter-spacing: .01em;
  color: var(--brown);
  margin: 0 0 32px;
}
.hero-title .accent{ color: var(--coral); }

.hero-lead{
  font-size: 19px;
  line-height: 2;
  color: #6a4a35;
  margin: 0 0 40px;
  font-weight: 500;
}

.hero-ctas{
  display: flex; gap: 20px;
  margin-bottom: 40px;
}

/* shared button base */
.btn{
  display: inline-flex; align-items: center;
  gap: 14px;
  padding: 22px 36px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 20px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.btn-arrow{
  margin-left: auto;
  font-size: 22px;
  font-weight: 700;
}
.btn-arrow--coral{ color: var(--coral); }

.btn-line{
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 6px 0 var(--line-green-2);
  min-width: 340px;
}
.btn-line:hover{ transform: translateY(2px); box-shadow: 0 4px 0 var(--line-green-2); }
.btn-line-mark{
  background: #fff; color: var(--line-green);
  font-size: 13px; font-weight: 900;
  padding: 5px 11px; border-radius: 999px;
}

.btn-phone{
  background: #fff;
  color: var(--coral);
  border: 2px solid var(--coral);
  min-width: 340px;
  padding: 20px 36px;
}
.btn-phone:hover{ background: #fff5f2; }
.btn-phone-icon{ width: 28px; height: 28px; display: grid; place-items: center; }
.btn-phone-icon svg{ width: 100%; height: 100%; }

.hero-pills{
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 14px; flex-wrap: nowrap;
}
.hero-pills li{
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1.5px solid #f1d5c8;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--brown-2);
  box-shadow: 0 2px 0 #f3dcce;
  white-space: nowrap;
}
.pill-icon{ width: 22px; height: 22px; display: inline-grid; place-items: center; }
.pill-icon svg{ width: 100%; height: 100%; }

/* HERO right -- photo + blob + badge */
.hero-visual{ position: relative; min-height: 740px; }
.hero-photo-wrap{
  position: relative;
  width: 100%; height: 100%;
  min-height: 740px;
}
.hero-photo{
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(255,110,92,.18);
}
.hero-photo img{
  width: 100%; height: 100%; object-fit: cover;
}
.hero-photo-blob{
  position: absolute;
  right: -60px; bottom: -20px;
  width: 70%; height: 60%;
  background: linear-gradient(180deg, #ff7e6a, #f15a48);
  border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
  transform: rotate(-12deg);
  z-index: -1;
}
.hero-photo-dotgrid{
  position: absolute; right: -20px; top: 40px; width: 90px; opacity: .8;
}
.hero-sparkle{ position: absolute; pointer-events: none; }
.hero-sparkle--a{ right: 40px; top: 80px; width: 60px; }
.hero-sparkle--b{ right: 100px; top: 160px; width: 32px; }
.hero-sparkle--c{ right: 60px; top: 240px; width: 24px; }
.hero-sparkle--d{ right: -10px; top: 480px; width: 36px; }

.anshin-badge{
  position: absolute;
  left: -10px; bottom: 30px;
  width: 200px; height: 200px;
  background: #fff;
  border-radius: 50%;
  border: 6px solid #ffd9cd;
  display: grid; place-items: center;
  text-align: center;
  box-shadow: 0 16px 40px rgba(255,110,92,.2);
  padding: 18px;
}
.anshin-badge::before{
  content: "";
  position: absolute; inset: -14px;
  border-radius: 50%;
  border: 2px dashed #ffd0c0;
  pointer-events: none;
}
.anshin-top{
  font-size: 13px; font-weight: 700; color: var(--coral);
  letter-spacing: .02em;
}
.anshin-main{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 1.25;
  color: var(--brown);
  margin: 6px 0 4px;
}
.anshin-heart{ width: 22px; height: 22px; margin: 0 auto; }
.anshin-heart svg{ width: 100%; height: 100%; }

/* =========================================================
   SECTION HEAD (shared)
   ========================================================= */
.section-head{
  text-align: center;
  margin: 0 auto 56px;
  position: relative; z-index: 2;
}
.eyebrow{
  display: inline-block;
  font-size: 14px; font-weight: 800;
  color: var(--coral);
  letter-spacing: .35em;
  margin-bottom: 14px;
}
.section-title{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 44px;
  color: var(--brown);
  margin: 0 0 20px;
  letter-spacing: .04em;
}
.section-sub{
  font-size: 17px;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}

/* =========================================================
   SERVICE
   ========================================================= */
.service{
  background: var(--cream);
  padding: 100px 56px 100px;
  position: relative;
}
.service-grid{
  max-width: 1340px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.service-card{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(74,42,26,.06);
  background: #fff;
  display: flex; flex-direction: column;
}
.service-photo{
  height: 320px; overflow: hidden;
  position: relative;
}
.service-photo img{
  width: 100%; height: 100%; object-fit: cover;
}
.service-body{
  position: relative;
  padding: 56px 40px 40px;
  color: #fff;
  text-align: center;
}
.service-card--primary .service-body{
  background: linear-gradient(180deg, #ff7765 0%, #f15a48 100%);
}
.service-card--secondary .service-body{
  background: linear-gradient(180deg, #ffa498 0%, #f88677 100%);
}
.service-icon{
  position: absolute;
  top: -36px; left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 72px;
  background: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}
.service-icon img{ width: 44px; height: 44px; object-fit: contain; }
.service-title{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 30px;
  margin: 0 0 14px;
  letter-spacing: .02em;
}
.service-desc{
  font-size: 16px; line-height: 1.8;
  margin: 0 0 26px;
  opacity: .96;
}
.service-cta{
  display: inline-flex; align-items: center; justify-content: space-between;
  gap: 12px;
  background: #fff;
  color: var(--coral);
  font-weight: 800; font-size: 16px;
  padding: 14px 36px;
  border-radius: 999px;
  min-width: 220px;
  transition: transform .15s;
}
.service-cta:hover{ transform: translateY(-2px); }
.service-cta span{ font-size: 18px; }

/* =========================================================
   REASON
   ========================================================= */
.reason{
  background: linear-gradient(180deg, #fbedda 0%, #fae6d0 100%);
  padding: 100px 56px 100px;
  position: relative;
  overflow: hidden;
}
.reason-bg{
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  width: 1400px; max-width: 95%;
  opacity: .55;
  pointer-events: none;
}
.reason-grid{
  max-width: 1340px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative; z-index: 2;
}
.reason-card{
  background: #fff;
  border-radius: 24px 24px 24px 24px / 60px 60px 24px 24px;
  border-top-left-radius: 140px;
  border-top-right-radius: 140px;
  padding: 36px 24px 32px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(74,42,26,.05);
  border: 1.5px solid #f4dbc7;
}
.reason-icon{
  width: 80px; height: 80px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
}
.reason-icon img{ width: 100%; height: 100%; object-fit: contain; }
.reason-icon--heart svg{ width: 80px; height: 80px; }
.reason-card h3{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--brown);
}
.reason-card p{
  font-size: 14px; line-height: 1.7;
  color: #7a5c4a;
  margin: 0;
  font-weight: 500;
}

/* =========================================================
   WORKS / BLOG (WordPress posts)
   ========================================================= */
.works{
  background: var(--cream);
  padding: 100px 56px 100px;
  position: relative;
  overflow: hidden;
}
.works-deco{ position: absolute; pointer-events: none; }
.works-deco--a{ left: -60px; top: 40px; width: 180px; opacity: .35; }
.works-deco--b{ right: -40px; top: 80px; width: 260px; opacity: .55; }
.works-deco--c{ right: 12%; top: 160px; width: 36px; opacity: .8; }

.works-grid{
  max-width: 1340px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative; z-index: 2;
}
.work-card{
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(74,42,26,.06);
  border: 1.5px solid #f4dbc7;
  transition: transform .25s ease, box-shadow .25s ease;
  color: inherit;
}
.work-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(255,110,92,.18);
  border-color: var(--coral-soft);
}
.work-photo{
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #fae6d0;
}
.work-photo img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.work-card:hover .work-photo img{ transform: scale(1.06); }
.work-photo-empty{
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #ffd9cd, #fbe4cf);
}
.work-category{
  position: absolute;
  top: 14px; left: 14px;
  background: var(--coral);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .04em;
  box-shadow: 0 4px 10px rgba(241,90,72,.25);
  z-index: 2;
}
.work-body{
  padding: 22px 24px 26px;
  display: flex; flex-direction: column;
  flex: 1;
}
.work-date{
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.work-title{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 19px;
  line-height: 1.5;
  color: var(--brown);
  margin: 0 0 10px;
  letter-spacing: .01em;
  /* clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.work-excerpt{
  font-size: 14px;
  line-height: 1.75;
  color: #7a5c4a;
  margin: 0 0 16px;
  font-weight: 500;
  /* clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.work-readmore{
  margin-top: auto;
  font-size: 13px;
  font-weight: 800;
  color: var(--coral);
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: .04em;
}
.work-readmore i{
  font-style: normal;
  font-size: 18px;
  transition: transform .2s;
}
.work-card:hover .work-readmore i{ transform: translateX(4px); }

.works-more{
  text-align: center;
  margin-top: 56px;
  position: relative; z-index: 2;
}
.works-more-btn{
  display: inline-flex; align-items: center; justify-content: center;
  gap: 16px;
  min-width: 320px;
  padding: 18px 36px;
  border: 2px solid var(--coral);
  background: #fff;
  color: var(--coral);
  font-weight: 800;
  font-size: 16px;
  border-radius: 999px;
  transition: background .2s, color .2s, transform .15s;
}
.works-more-btn:hover{
  background: var(--coral);
  color: #fff;
  transform: translateY(-2px);
}
.works-more-btn span{ font-size: 18px; }

/* =========================================================
   PRICE
   ========================================================= */
.price{
  background: linear-gradient(180deg, #fbedda 0%, #fae6d0 100%);
  padding: 100px 56px 100px;
  position: relative;
  overflow: hidden;
}
.price-deco{ position: absolute; pointer-events: none; }
.price-deco--a{ left: -80px; bottom: 60px; width: 220px; opacity: .35; }
.price-deco--b{ right: -60px; top: 80px; width: 260px; opacity: .55; }

.price-grid{
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
  position: relative; z-index: 2;
}
.price-card{
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px 32px;
  border: 1.5px solid #f4dbc7;
  box-shadow: 0 8px 24px rgba(74,42,26,.05);
  display: flex; flex-direction: column;
  transition: transform .2s;
}
.price-card:hover{ transform: translateY(-4px); }
.price-card--featured{
  background: linear-gradient(180deg, #ff7765 0%, #f15a48 100%);
  border: none;
  color: #fff;
  box-shadow: 0 20px 40px rgba(241,90,72,.25);
  transform: translateY(-12px);
}
.price-card--featured:hover{ transform: translateY(-16px); }
.price-ribbon{
  position: absolute;
  top: -14px; right: 28px;
  background: var(--brown);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 18px;
  border-radius: 999px;
  letter-spacing: .04em;
  box-shadow: 0 6px 14px rgba(74,42,26,.25);
}
.price-card-head{
  text-align: center;
  margin-bottom: 24px;
}
.price-badge{
  display: inline-block;
  background: #fff5f2;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.price-badge--white{
  background: #fff;
  color: var(--coral);
}
.price-card-title{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--brown);
  letter-spacing: .02em;
}
.price-card--featured .price-card-title{ color: #fff; }
.price-card-tag{
  font-size: 14px;
  font-weight: 600;
  color: #8a6f5e;
  margin: 0;
}
.price-card--featured .price-card-tag{ color: #ffe9e2; }

.price-amount{
  text-align: center;
  padding: 18px 0 22px;
  border-top: 1.5px dashed #f1d5c8;
  border-bottom: 1.5px dashed #f1d5c8;
  margin-bottom: 24px;
  display: flex; align-items: baseline; justify-content: center;
  gap: 6px;
}
.price-card--featured .price-amount{
  border-color: rgba(255,255,255,.4);
}
.price-prefix{
  font-size: 13px; font-weight: 700;
  color: #8a6f5e;
}
.price-card--featured .price-prefix{ color: #ffe9e2; }
.price-value{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  color: var(--coral);
  letter-spacing: .02em;
}
.price-card--featured .price-value{ color: #fff; }
.price-unit{
  font-size: 16px;
  font-weight: 800;
  color: var(--coral);
}
.price-card--featured .price-unit{ color: #fff; }

.price-list{
  list-style: none;
  padding: 0; margin: 0 0 28px;
  flex: 1;
}
.price-list li{
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  color: #6b4030;
  padding: 9px 0 9px 26px;
  border-bottom: 1px solid #fae0d2;
  font-weight: 600;
}
.price-card--featured .price-list li{
  color: #fff;
  border-bottom-color: rgba(255,255,255,.25);
}
.price-list li::before{
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 16px; height: 16px;
  background: var(--coral);
  border-radius: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 8.5l2.5 2.5L12 5.5' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.price-card--featured .price-list li::before{
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 8.5l2.5 2.5L12 5.5' fill='none' stroke='%23f15a48' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.price-cta{
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid var(--coral);
  color: var(--coral);
  background: #fff;
  font-size: 15px;
  font-weight: 800;
  transition: background .2s, color .2s;
}
.price-cta:hover{ background: var(--coral); color: #fff; }
.price-cta--filled{
  background: #fff;
  color: var(--coral);
  border-color: #fff;
}
.price-cta--filled:hover{
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
}
.price-cta span{ font-size: 17px; }

.price-note{
  max-width: 1280px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 13px;
  color: #8a6f5e;
  font-weight: 500;
  position: relative; z-index: 2;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq{
  background: var(--cream);
  padding: 100px 56px 100px;
}
.faq-list{
  max-width: 1040px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 16px;
}
.faq-item{
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid #f4dbc7;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item[open]{
  border-color: var(--coral-soft);
  box-shadow: 0 10px 24px rgba(255,110,92,.1);
}
.faq-item summary{
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center;
  gap: 20px;
  padding: 22px 28px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--brown);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary:hover{ background: #fff8f3; }

.faq-mark{
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 18px;
}
.faq-mark--a{
  background: var(--brown);
}

.faq-question{
  flex: 1;
  letter-spacing: .02em;
}

.faq-toggle{
  width: 28px; height: 28px;
  position: relative;
  flex-shrink: 0;
}
.faq-toggle::before,
.faq-toggle::after{
  content: "";
  position: absolute;
  background: var(--coral);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}
.faq-toggle::before{ width: 18px; height: 3px; }
.faq-toggle::after{ width: 3px; height: 18px; }
.faq-item[open] .faq-toggle::after{
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer{
  display: flex;
  gap: 20px;
  padding: 4px 28px 26px;
  align-items: flex-start;
}
.faq-answer p{
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: #6b4030;
  font-weight: 500;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section{
  background: var(--cream);
  padding: 0 56px 80px;
}
.cta-card{
  max-width: 1340px; margin: -40px auto 0;
  position: relative;
  background: linear-gradient(135deg, #ff7765 0%, #f15a48 100%);
  border-radius: 28px;
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(241,90,72,.22);
  overflow: hidden;
}
.cta-wave{
  position: absolute; pointer-events: none;
  opacity: .35;
}
.cta-wave--a{ right: -30px; bottom: -10px; width: 180px; }
.cta-heart{
  position: absolute;
  left: 50%; top: 24px;
  width: 36px;
  transform: translateX(140px);
  opacity: .85;
}
.cta-pill{
  display: inline-block;
  border: 1.5px solid #fff;
  color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 7px 22px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.cta-title{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 38px;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: .02em;
}
.cta-sub{
  font-size: 16px;
  color: #fff;
  opacity: .95;
  margin: 0;
  font-weight: 500;
}
.cta-right{
  display: flex; flex-direction: column;
  gap: 14px;
  min-width: 340px;
}
.btn-line--cta{
  min-width: auto;
  width: 100%;
  justify-content: center;
}
.btn-tel{
  background: #fff;
  border-radius: 999px;
  padding: 12px 28px;
  display: flex; align-items: center; gap: 14px;
  color: var(--coral);
}
.btn-tel-icon{ width: 28px; height: 28px; flex-shrink: 0; }
.btn-tel-icon svg{ width: 100%; height: 100%; }
.btn-tel-text{ display: flex; flex-direction: column; line-height: 1.2; }
.btn-tel-number{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900; font-size: 26px;
  color: var(--coral);
  letter-spacing: .04em;
}
.btn-tel-hours{
  font-size: 11px;
  color: #8a6f5e;
  margin-top: 3px;
  font-weight: 600;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--footer-bg);
  color: #f0d8c8;
  padding: 60px 56px 0;
}
.footer-inner{
  max-width: 1340px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.brand--footer .brand-jp{ color: #ffb89c; font-size: 24px; }
.footer-desc{
  font-size: 13px;
  color: #d4b6a3;
  line-height: 1.9;
  margin: 22px 0 22px;
}
.footer-outline-btn{
  display: inline-flex; align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1.5px solid #8a5944;
  color: #f0d8c8;
  font-size: 13px; font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  min-width: 180px;
}
.footer-outline-btn:hover{ border-color: var(--coral); color: #fff; }
.footer-outline-btn span{ font-size: 16px; }
.footer-social{
  display: flex; gap: 14px;
  margin-top: 32px;
}
.footer-social a{
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #ffb89c;
  background: rgba(255,184,156,.1);
  transition: background .2s;
}
.footer-social a:hover{ background: rgba(255,184,156,.2); }
.footer-social svg{ width: 16px; height: 16px; }

.footer-cols{
  display: contents;
}
.footer-col{
  display: flex; flex-direction: column;
}
.footer-col h4{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #ffb89c;
  margin: 0 0 22px;
  letter-spacing: .02em;
}
.footer-col a{
  font-size: 13px;
  color: #d4b6a3;
  padding: 7px 0;
  transition: color .2s;
}
.footer-col a:hover{ color: #fff; }

.footer-contact{
  border: 1.5px solid #6b3d2a;
  border-radius: 16px;
  padding: 22px 26px;
}
.footer-contact-label{
  font-size: 12px; font-weight: 700;
  color: #d4b6a3;
  margin-bottom: 8px;
  text-align: center;
}
.footer-contact-tel{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--coral-soft);
  text-align: center;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.footer-contact-hours{
  font-size: 11px;
  color: #b89882;
  text-align: center;
  margin-bottom: 16px;
}
.footer-contact-btn{
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  width: 100%;
  border: 1.5px solid #8a5944;
  color: #f0d8c8;
  font-size: 13px; font-weight: 700;
  padding: 11px 16px;
  border-radius: 999px;
}
.footer-contact-btn:hover{ border-color: var(--coral); color: #fff; }
.footer-contact-btn svg{ width: 16px; height: 16px; }

.footer-copyright{
  border-top: 1px solid #4a2a1a;
  padding: 22px 0;
  text-align: center;
  font-size: 12px;
  color: #8e6a55;
}

/* =========================================================
   COUPON  (sample offer ticket)
   ========================================================= */
.coupon{
  background: var(--cream);
  padding: 10px 56px 70px;
}
.coupon-ticket{
  max-width: 1040px; margin: 0 auto;
  background: linear-gradient(135deg, #ff7765 0%, #f15a48 100%);
  border-radius: 24px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1.15fr auto 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  color: #fff;
  box-shadow: 0 20px 50px rgba(241,90,72,.22);
}
.coupon-ticket::before{
  content: ""; position: absolute; inset: 14px;
  border: 2px dashed rgba(255,255,255,.55);
  border-radius: 16px; pointer-events: none;
}
.coupon-left{ position: relative; z-index: 2; text-align: center; }
.coupon-label{
  display: inline-block; background: var(--brown); color: #fff;
  font-size: 13px; font-weight: 800; letter-spacing: .08em;
  padding: 7px 20px; border-radius: 999px; margin-bottom: 18px;
}
.coupon-offer{ display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.coupon-prefix{ font-size: 24px; font-weight: 800; }
.coupon-big{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900; font-size: 92px; line-height: 1; letter-spacing: .01em;
}
.coupon-pct{ font-size: 50px; }
.coupon-off{ font-size: 42px; margin-left: 8px; }
.coupon-target{ font-size: 16px; font-weight: 700; margin: 14px 0 0; opacity: .96; }

.coupon-divider{
  position: relative; z-index: 2; width: 0; align-self: stretch;
  border-left: 3px dashed rgba(255,255,255,.6);
}
.coupon-divider::before, .coupon-divider::after{
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; background: var(--cream); border-radius: 50%;
}
.coupon-divider::before{ top: -66px; }
.coupon-divider::after{ bottom: -66px; }

.coupon-right{ position: relative; z-index: 2; text-align: center; }
.coupon-how{ font-size: 17px; font-weight: 600; line-height: 1.7; margin: 0 0 18px; }
.coupon-how b{ font-weight: 900; font-size: 19px; }
.coupon-cta{ width: 100%; justify-content: center; min-width: 0; }
.coupon-note{ font-size: 12px; opacity: .9; margin: 14px 0 0; line-height: 1.6; }

/* =========================================================
   RESPONSIVE  (tablet & mobile — < 1024px)
   Below 1024px the JS scaler is disabled and the layout
   reflows into a true mobile-friendly stack.
   ========================================================= */
@media (max-width: 1023px){
  html, body{ height: auto !important; }
  body{
    min-width: 0;
    transform: none !important;
    width: auto !important;
  }

  /* HEADER */
  .site-header{ position: sticky; }
  .header-inner{ padding: 14px 18px; gap: 14px; }
  .brand-logo-img{ height: 42px; }
  .site-nav{ display: none; }
  .line-pill{
    margin-left: auto; margin-right: 0;
    padding: 10px 18px; font-size: 14px;
    box-shadow: 0 4px 0 var(--line-green-2);
  }

  /* HERO */
  .hero{ padding: 36px 18px 48px; }
  .hero-grid{ grid-template-columns: 1fr; gap: 30px; }
  .hero-deco{ display: none; }
  .hero-copy{ padding-left: 0; max-width: 100%; text-align: center; }
  .hero-badge{ font-size: 13px; padding: 9px 18px; margin-bottom: 18px; }
  .hero-title{ font-size: 32px !important; width: auto !important; margin: 0 0 20px; }
  .hero-lead{ font-size: 15px; line-height: 1.9; margin: 0 0 26px; }
  .hero-lead br{ display: none; }
  .hero-ctas{ flex-direction: column; gap: 12px; margin-bottom: 26px; align-items: center; }
  .hero-ctas .btn{ width: 100%; max-width: 380px; font-size: 16px; padding: 16px 24px; }
  .btn-line, .btn-phone{ min-width: 0; }
  .hero-pills{ flex-wrap: wrap; justify-content: center; gap: 10px; }
  .hero-pills li{ font-size: 13px; padding: 9px 14px; }
  .hero-visual{ min-height: 0; }
  .hero-photo-wrap{
    position: relative; min-height: 0;
    width: 300px; height: 340px; max-width: 84vw;
    margin: 0 auto;
  }
  .hero-photo{ position: relative; inset: auto; width: 100%; height: 100%; }
  .hero-sparkle, .hero-photo-dotgrid{ display: none; }
  .hero-photo-blob{ width: 60%; height: 55%; right: -20px; bottom: -10px; }
  .anshin-badge{
    width: 116px; height: 116px;
    left: auto; right: -4px; bottom: -8px;
    border-width: 4px; padding: 10px;
  }
  .anshin-badge::before{ inset: -8px; }
  .anshin-top{ font-size: 9px; }
  .anshin-main{ font-size: 15px; margin: 3px 0 2px; }
  .anshin-heart{ width: 16px; height: 16px; }

  /* SECTION HEAD */
  .section-head{ margin-bottom: 36px; }
  .eyebrow{ font-size: 12px; }
  .section-title{ font-size: 28px; }
  .section-sub{ font-size: 14px; padding: 0 6px; }

  /* SERVICE */
  .service{ padding: 56px 18px; }
  .service-grid{ grid-template-columns: 1fr; gap: 28px; max-width: 480px; }
  .service-photo{ height: 220px; }
  .service-body{ padding: 48px 24px 34px; }
  .service-title{ font-size: 24px; }
  .service-desc br{ display: none; }

  /* REASON */
  .reason{ padding: 56px 18px; }
  .reason-bg{ display: none; }
  .reason-grid{ grid-template-columns: 1fr 1fr; gap: 16px; }
  .reason-card{ padding: 28px 16px 24px; border-top-left-radius: 90px; border-top-right-radius: 90px; }
  .reason-icon{ width: 60px; height: 60px; }
  .reason-icon--heart svg{ width: 60px; height: 60px; }
  .reason-card h3{ font-size: 17px; }
  .reason-card p{ font-size: 13px; }
  .reason-card p br{ display: none; }

  /* WORKS */
  .works{ padding: 56px 18px; }
  .works-deco{ display: none; }
  .works-grid{ grid-template-columns: 1fr; gap: 22px; max-width: 420px; }
  .works-more{ margin-top: 40px; }
  .works-more-btn{ min-width: 0; width: 100%; max-width: 380px; }

  /* PRICE */
  .price{ padding: 56px 18px; }
  .price-deco{ display: none; }
  .price-grid{ grid-template-columns: 1fr; gap: 34px; max-width: 380px; }
  .price-card--featured{ transform: none; }
  .price-card--featured:hover{ transform: translateY(-4px); }

  /* FAQ */
  .faq{ padding: 56px 18px; }
  .faq-item summary{ font-size: 15px; padding: 18px; gap: 14px; }
  .faq-mark{ width: 30px; height: 30px; font-size: 15px; }
  .faq-answer{ padding: 4px 18px 22px; gap: 14px; }
  .faq-answer p{ font-size: 14px; }

  /* CTA */
  .cta-section{ padding: 0 18px 56px; }
  .cta-card{ grid-template-columns: 1fr; gap: 24px; padding: 36px 24px; text-align: center; }
  .cta-wave, .cta-heart{ display: none; }
  .cta-pill{ font-size: 13px; }
  .cta-title{ font-size: 26px; }
  .cta-right{ min-width: 0; }

  /* FOOTER */
  .site-footer{ padding: 48px 20px 0; }
  .footer-inner{ grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand{ grid-column: 1 / -1; }
  .footer-contact{ grid-column: 1 / -1; }

  /* COUPON */
  .coupon{ padding: 0 18px 56px; }
  .coupon-ticket{ grid-template-columns: 1fr; gap: 0; padding: 34px 24px; }
  .coupon-ticket::before{ inset: 10px; }
  .coupon-prefix{ font-size: 18px; }
  .coupon-big{ font-size: 62px; }
  .coupon-pct{ font-size: 34px; }
  .coupon-off{ font-size: 30px; }
  .coupon-target{ font-size: 14px; }
  .coupon-divider{
    width: auto; align-self: auto; border-left: 0;
    border-top: 3px dashed rgba(255,255,255,.6);
    margin: 26px 4px;
  }
  .coupon-divider::before, .coupon-divider::after{ display: none; }
  .coupon-how{ font-size: 15px; }
  .coupon-cta{ max-width: 340px; margin: 0 auto; }
}

@media (max-width: 600px){
  .hero-title{ font-size: 27px !important; }
  .section-title{ font-size: 24px; }
  .reason-grid{ grid-template-columns: 1fr 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
  .cta-title{ font-size: 23px; }
  .coupon-big{ font-size: 54px; }
}
