@charset "UTF-8";

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  /* Colors */
  --c-base:         #fbf9f6;
  --c-yellow-bg:    #fff9e0;
  --c-cyan-bg:      #edfffd;
  --c-heading:      #243c75;
  --c-teal:         #32a6a6;
  --c-teal-light:   #97d3cd;
  --c-red:          #e46374;
  --c-orange:       #ff963a;
  --c-orange-end:   #ff974c;
  --c-yellow:       #ffd04d;
  --c-pink:         #ffa4a4;
  --c-text:         #353535;
  --c-white:        #ffffff;

  /* Fonts */
  --f-main:    "M PLUS 1p", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --f-nav:     "Kosugi", "Hiragino Kaku Gothic ProN", sans-serif;
  --f-en:      "Josefin Sans", sans-serif;

  /* Layout */
  --inner-w:   1280px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd {
  margin: 0; padding: 0;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; border: 0; background: none; cursor: pointer; }

body {
  font-family: var(--f-main);
  color: var(--c-text);
  background: var(--c-base);
  line-height: 1.7;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}
@media (min-width: 1024px) {
  body { min-width: var(--inner-w); }
}

/* ==========================================================================
   Hamburger (SP only — hidden on PC)
   ========================================================================== */
.hamburger {
  display: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: transparent;
  z-index: 20;
}
.hamburger__line {
  position: absolute;
  left: 8px;
  width: 28px;
  height: 3px;
  background: var(--c-red);
  border-radius: 2px;
  transition: transform .25s, opacity .25s, top .25s;
}
.hamburger__line:nth-child(1) { top: 13px; }
.hamburger__line:nth-child(2) { top: 21px; }
.hamburger__line:nth-child(3) { top: 29px; }
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ==========================================================================
   Common section-title
   ========================================================================== */
.section-title {
  font-family: var(--f-main);
  font-weight: 500;
  font-size: 30px;
  color: var(--c-heading);
  text-align: center;
  line-height: 1.4;
}
.section-deco {
  display: block;
  width: 40px;
  height: 8px;
  margin: 18px auto 0;
  background: var(--c-orange);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 8'><circle cx='6' cy='4' r='3.2' fill='black'/><circle cx='20' cy='4' r='3.2' fill='black'/><circle cx='34' cy='4' r='3.2' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 8'><circle cx='6' cy='4' r='3.2' fill='black'/><circle cx='20' cy='4' r='3.2' fill='black'/><circle cx='34' cy='4' r='3.2' fill='black'/></svg>") center/contain no-repeat;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: var(--c-white);
  height: 130px;
  position: relative;
  z-index: 10;
}
.site-header__inner {
  width: var(--inner-w);
  margin: 0 auto;
  position: relative;
  height: 130px;
  padding: 20px 0 0;
}
.site-header__logo {
  position: absolute;
  left: 29px;
  top: 20px;
}
.site-header__logo-img {
  width: 400px;
  height: 100px;
  object-fit: contain;
  object-position: left;
}
.site-nav__list {
  display: flex;
  gap: 24px;
  align-items: center;
  position: absolute;
  left: 440px;
  top: 24px;
  font-family: var(--f-nav);
  font-size: 16px;
  color: var(--c-text);
}
.site-nav__list a {
  white-space: nowrap;
  transition: opacity .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.site-nav__list a:hover { opacity: .65; }
.site-nav__icon {
  width: 22px;
  height: auto;
}
.site-nav__contact { margin-left: 14px; }

.header-tel {
  display: flex;
  gap: 20px;
  position: absolute;
  left: 440px;
  top: 57px;
}
.header-tel__btn {
  width: 390px;
  height: 50px;
  background: var(--c-red);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: var(--c-white);
  font-family: var(--f-main);
  transition: opacity .2s;
  gap: 8px;
}
.header-tel__btn:hover { opacity: .9; }
.header-tel__area {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}
.header-tel__area-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.header-tel__hours {
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.header-tel__number {
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.01em;
}
.header-tel__icon {
  width: 16px;
  height: auto;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  width: 100%;
  min-width: var(--inner-w);
  height: 700px;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.is-active {
  opacity: 1;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__content {
  position: relative;
  z-index: 1;
  width: var(--inner-w);
  margin: 0 auto;
  padding: 163px 0 0 100px;
}
.hero__title {
  font-family: var(--f-main);
  font-weight: 900;
  font-size: 70px;
  line-height: 1.2;
  color: var(--c-white);
  text-shadow: 0 6px 6px rgba(0,0,0,.25);
  letter-spacing: -0.02em;
}
.hero__sub {
  margin-top: 35px;
  width: 521px;
  height: 47px;
  background: var(--c-teal);
  border-radius: 5px;
  color: var(--c-white);
  font-weight: 700;
  font-size: 25px;
  display: flex;
  align-items: center;
  padding-left: 11px;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
  width: 521px;
  height: 83px;
  border-radius: 50px;
  background: linear-gradient(to bottom, var(--c-yellow), var(--c-orange-end));
  border: 1px solid var(--c-orange);
  box-shadow: 0 7px 10px rgba(0,0,0,.25);
  color: var(--c-white);
  font-family: var(--f-main);
  font-weight: 700;
  font-size: 30px;
  padding-left: 13px;
  transition: filter .2s;
}
.hero__cta:hover { filter: brightness(1.05); }
.hero__cta-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

/* ==========================================================================
   Section common
   ========================================================================== */
.worry,
.reason,
.results,
.voice,
.flow,
.stores,
.end-cta {
  width: 100%;
  min-width: var(--inner-w);
  position: relative;
}

/* ==========================================================================
   Worry
   ========================================================================== */
.worry {
  background: var(--c-yellow-bg) url("../../images/bg_stripe.webp") repeat top center / auto;
  padding: 80px 0 100px;
  position: relative;
  z-index: 2;
}
.worry__head { text-align: center; }

.worry__stage {
  margin-top: 70px;
  position: relative;
  width: var(--inner-w);
  margin-left: auto;
  margin-right: auto;
  padding: 0 80px;
  height: 770px;
  box-sizing: border-box;
}
.worry-card {
  position: absolute;
  width: 320px;
  background: var(--c-white);
  border-radius: 10px;
  box-shadow: 0 6px 10px rgba(0,0,0,.18);
  padding: 70px 24px 24px;
  text-align: center;
  z-index: 2;
}
.worry-card--left {
  left: 80px;
  top: 70px;
  height: 470px;
}
.worry-card--right {
  right: 80px;
  top: 70px;
  height: 470px;
}
.worry-card--center {
  left: 50%;
  transform: translateX(-50%);
  top: 380px;
  height: 380px;
}
.worry-card__icon {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
}
.worry-card--right .worry-card__icon {
  width: 140px;
}
.worry-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.worry-card__title {
  font-weight: 700;
  font-size: 18px;
  color: var(--c-text);
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 54px;
}
.worry-card__text {
  font-weight: 400;
  font-size: 15px;
  color: var(--c-text);
  text-align: justify;
  line-height: 1.7;
}
.worry-card__answer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: var(--c-orange);
  border-radius: 5px;
  padding: 14px 16px;
  color: var(--c-white);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
}
.worry-card__answer p { margin: 0; }

/* 中央上の大きなカップルイラスト */
.worry__big-illust {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 357px;
  height: 237px;
  z-index: 1;
}
.worry__big-illust img {
  width: 357px;
  height: 237px;
  max-width: none;
  display: block;
}

/* スタッフ（左下と右下） */
.worry__staff {
  position: absolute;
  z-index: 3;
  width: 270px;
  height: 270px;
}
.worry__staff--bottom-left {
  left: 60px;
  bottom: -130px;
}
.worry__staff--bottom-right {
  right: 60px;
  bottom: -200px;
  width: 320px;
  height: 320px;
}
.worry__staff-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--c-white);
  box-shadow: 0 6px 10px rgba(0,0,0,.12);
}
.worry__staff-bubble {
  position: absolute;
  z-index: 4;
  color: var(--c-white);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.worry__staff-bubble p { margin: 0; }
.worry__staff-bubble--pink {
  background-image: url("../../images/circle_bg-pink.svg");
  width: 124px;
  height: 124px;
  left: -30px;
  top: -40px;
  font-size: 15px;
}
.worry__staff-bubble--teal {
  background-image: url("../../images/circle_bg-green.svg");
  width: 144px;
  height: 144px;
  right: -30px;
  top: -50px;
  font-size: 17px;
}

/* ==========================================================================
   Reason
   ========================================================================== */
.reason {
  padding: 80px 0 80px;
}
.reason__head { text-align: center; }
.reason__list {
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  gap: 70px;
  max-width: var(--inner-w);
  padding: 0 80px;
}
.reason-item {
  position: relative;
  height: 400px;
  display: grid;
  grid-template-columns: 620px 1fr;
  align-items: center;
}
.reason-item--reverse {
  grid-template-columns: 1fr 620px;
}
.reason-item__img {
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0,0,0,.25);
}
.reason-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reason-item__img--right {
  grid-column: 2;
}
.reason-item__body {
  padding: 60px 60px 0;
  position: relative;
}
.reason-item__body--right {
  grid-column: 2;
}
.reason-item__body--left {
  grid-column: 1;
  grid-row: 1;
}
.reason-item__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.reason-item__icon {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}
/* Subpage reason detail layout: white card with icon floating above */
.reason-item--detail {
  background: var(--c-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  grid-template-columns: 480px 1fr;
  gap: 50px;
  height: auto;
  align-items: center;
  overflow: visible;
}
.reason-item--detail.reason-item--reverse {
  grid-template-columns: 1fr 480px;
}
.reason-item--detail .reason-item__img {
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 6px 10px rgba(0,0,0,.15);
}
.reason-item__head--detail {
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.reason-item__icon--detail {
  width: 110px;
  height: 110px;
}
.reason-item__title--detail {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  margin-top: 0;
}
.reason-item--detail .reason-item__body {
  padding: 30px 0 0;
  margin-top: 0;
}
.reason-item--detail .reason-item__text {
  margin-top: 24px;
  font-size: 15px;
}
.reason-item__num {
  font-family: var(--f-en);
  font-weight: 500;
  font-size: 70px;
  color: var(--c-teal);
  line-height: 1;
  display: block;
  text-align: center;
}
.reason-item__title {
  font-weight: 500;
  font-size: 20px;
  color: var(--c-teal);
  text-align: center;
  margin-top: 20px;
}
.reason-item__text {
  font-weight: 400;
  font-size: 16px;
  color: var(--c-text);
  text-align: justify;
  margin-top: 30px;
  line-height: 1.9;
}
.reason__cta {
  margin-top: 70px;
  text-align: center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 350px;
  height: 50px;
  border-radius: 50px;
  background: linear-gradient(to bottom, var(--c-teal-light), var(--c-teal));
  border: 1px solid var(--c-teal);
  box-shadow: 0 7px 10px rgba(0,0,0,.25);
  color: var(--c-white);
  font-family: var(--f-main);
  font-weight: 500;
  font-size: 20px;
  position: relative;
  transition: filter .2s;
}
.btn-pill:hover { filter: brightness(1.05); }
.btn-pill--wide { width: 457px; }
.btn-pill__arrow {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

/* ==========================================================================
   Results
   ========================================================================== */
.results {
  background: var(--c-cyan-bg);
  padding: 80px 0 80px;
}
.results__head { text-align: center; }
.results__lead {
  text-align: center;
  margin-top: 50px;
  font-size: 16px;
  font-weight: 400;
  color: var(--c-text);
  line-height: 1.6;
}
.results__cards {
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 260px);
  gap: 20px;
  justify-content: center;
  padding: 0 80px;
  max-width: var(--inner-w);
}
.result-card {
  width: 260px;
  height: 313px;
  background: var(--c-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,.08);
}
.result-card__img {
  width: 260px;
  height: 220px;
  overflow: hidden;
}
.result-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.result-card__body {
  padding: 16px 18px;
}
.result-card__title {
  font-weight: 500;
  font-size: 18px;
  color: var(--c-heading);
  line-height: 1.4;
}
.result-card__year {
  margin-top: 6px;
  font-weight: 500;
  font-size: 14px;
  color: var(--c-heading);
}
.results__cta {
  margin-top: 60px;
  text-align: center;
}

/* ==========================================================================
   Voice
   ========================================================================== */
.voice {
  background: var(--c-yellow-bg) url("../../images/bg_stripe.webp") repeat top center / auto;
  padding: 80px 0 80px;
}
.voice__head { text-align: center; }
.voice__body {
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 334px 690px;
  gap: 56px;
  justify-content: center;
  align-items: center;
  padding: 0 80px;
  max-width: var(--inner-w);
}
.voice__illust img {
  width: 334px;
  height: auto;
}
.voice__google {
  height: 436px;
  background: var(--c-white);
  border-radius: 10px;
  box-shadow: 0 6px 10px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice__google-label {
  font-size: 16px;
  color: var(--c-text);
}

/* ==========================================================================
   Flow
   ========================================================================== */
.flow {
  background: var(--c-cyan-bg);
  padding: 80px 0 80px;
}
.flow__head { text-align: center; }
.flow__badge {
  display: inline-block;
  margin-top: 25px;
  background: var(--c-red);
  color: var(--c-white);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  width: 249px;
  height: 30px;
  line-height: 30px;
  border-radius: 50px;
}

.flow__list {
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 240px);
  gap: 47px;
  justify-content: center;
  padding: 0 80px;
  max-width: var(--inner-w);
}
.flow-step {
  position: relative;
  width: 240px;
  height: 340px;
}
.flow-step__inner {
  position: relative;
  z-index: 1;
  width: 240px;
  height: 320px;
  background: var(--c-white);
  border: 1px solid var(--c-teal);
  padding: 18px 18px 24px;
  text-align: center;
}
.flow-step::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 240px;
  height: 320px;
  background: var(--c-teal);
  z-index: 0;
}
.flow-step__num {
  font-family: var(--f-en);
  font-weight: 500;
  font-size: 40px;
  color: var(--c-teal);
  line-height: 1;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.flow-step__num span { line-height: 1; }
.flow-step__icon {
  margin-top: 8px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-step__icon img {
  max-height: 90px;
  max-width: 120px;
  width: auto;
}
.flow-step__title {
  margin-top: 10px;
  font-weight: 500;
  font-size: 17px;
  color: var(--c-text);
  line-height: 1.4;
}
.flow-step__text {
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text);
  text-align: justify;
  line-height: 1.6;
}
.flow__cta {
  margin-top: 60px;
  text-align: center;
}

/* ==========================================================================
   Stores
   ========================================================================== */
.stores {
  padding: 80px 0 80px;
}
.stores__head { text-align: center; }
.stores__list {
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 520px 520px;
  gap: 40px;
  justify-content: center;
  padding: 0 80px;
  max-width: var(--inner-w);
}
.store-card {
  width: 520px;
  text-align: center;
}
.store-card__badge {
  display: inline-block;
  background: var(--c-red);
  color: var(--c-white);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  width: 280px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0,0,0,.15);
  margin-bottom: 18px;
}
.store-card__img {
  width: 520px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
}
.store-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-card__title {
  font-weight: 700;
  font-size: 18px;
  color: var(--c-text);
  margin-top: 22px;
  text-align: left;
}
.store-card__text {
  margin-top: 14px;
  font-weight: 400;
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.7;
  text-align: left;
}
.stores__cta {
  margin-top: 70px;
  text-align: center;
}

/* ==========================================================================
   End CTA
   ========================================================================== */
.end-cta {
  background: var(--c-yellow-bg) url("../../images/bg_stripe.webp") repeat top center / auto;
  padding: 80px 0 80px;
}
.end-cta__head { text-align: center; }
.end-cta__lead {
  text-align: center;
  margin-top: 60px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
}
.end-cta__tels {
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 412px 412px;
  gap: 43px;
  justify-content: center;
  padding: 0 80px;
  max-width: var(--inner-w);
}
.tel-card {
  position: relative;
  display: block;
  width: 412px;
  height: 123px;
  background: var(--c-white);
  border-radius: 8px;
  padding: 35px 22px 0;
  transition: opacity .2s;
}
.tel-card:hover { opacity: .9; }
.tel-card__badge {
  position: absolute;
  top: 10px; left: 13px;
  width: 387px;
  height: 26px;
  background: var(--c-red);
  color: var(--c-white);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  line-height: 26px;
  border-radius: 50px;
}
.tel-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 44.63px;
  color: var(--c-heading);
  line-height: 1;
  letter-spacing: -0.01em;
}
.tel-card__icon {
  width: 30px;
  height: auto;
}
.tel-card__sub {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 14px;
  color: var(--c-heading);
}
.end-cta__note {
  margin-top: 30px;
  text-align: center;
  font-family: var(--f-nav);
  font-size: 16px;
  color: var(--c-text);
}
.end-cta__btn {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   Section photo (decorative full-width)
   ========================================================================== */
.section-photo {
  width: 100%;
  min-width: var(--inner-w);
  height: 350px;
  overflow: hidden;
}
.section-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ==========================================================================
   Site footer
   ========================================================================== */
.site-footer {
  background: var(--c-white);
  padding-top: 1px;
}
.site-footer__inner {
  width: var(--inner-w);
  margin: 0 auto;
  position: relative;
  height: 100px;
  padding: 0;
  display: flex;
  align-items: center;
}
.site-footer__logo {
  position: absolute;
  left: 29px;
  top: 50%;
  transform: translateY(-50%);
}
.site-footer__logo img {
  width: 400px;
  height: 100px;
  object-fit: contain;
  object-position: left;
}
.site-footer__nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
  position: absolute;
  left: 440px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-nav);
  font-size: 16px;
  color: var(--c-text);
}
.site-footer__nav a {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.site-footer__copy {
  text-align: center;
  font-family: var(--f-nav);
  font-size: 12px;
  color: var(--c-text);
  padding: 16px 0 24px;
  border-top: 1px solid #eee;
  margin-top: 0;
}

/* ==========================================================================
   Floating right side CTA
   ========================================================================== */
.floating-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 61px;
  min-height: 350px;
  background: linear-gradient(to bottom, var(--c-yellow), var(--c-orange-end));
  border: 1px solid var(--c-orange);
  border-radius: 30px 0 0 30px;
  box-shadow: 0 7px 10px rgba(0,0,0,.25);
  z-index: 100;
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 4px 0 20px;
  transition: filter .2s;
}
.floating-cta:hover { filter: brightness(1.05); }
.floating-cta__icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
}
.floating-cta__text {
  margin-top: 12px;
  writing-mode: vertical-rl;
  font-family: var(--f-main);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.3;
  white-space: nowrap;
}

/* ==========================================================================
   Page Hero (sub pages) — photo only
   ========================================================================== */
.page-hero {
  width: 100%;
  min-width: var(--inner-w);
  height: 320px;
  overflow: hidden;
}
.page-hero__bg {
  width: 100%;
  height: 100%;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ==========================================================================
   Page Intro (title + lead with staff photos)
   ========================================================================== */
.page-intro {
  width: 100%;
  min-width: var(--inner-w);
  background: var(--c-yellow-bg) url("../../images/bg_stripe.webp") repeat top center / auto;
  padding: 80px 0 90px;
  position: relative;
}
.page-intro__inner {
  position: relative;
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 380px;
  text-align: center;
  min-height: 280px;
  box-sizing: border-box;
}
.page-intro__title {
  font-family: var(--f-main);
  font-weight: 700;
  font-size: 36px;
  color: var(--c-heading);
  line-height: 1.4;
  margin: 0 0 30px;
  letter-spacing: 0.05em;
}
.page-intro__text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.9;
  text-align: left;
}

/* Staff photos flanking the intro — left smaller & top, right larger & bottom */
.page-intro__staff {
  position: absolute;
  z-index: 2;
}
.page-intro__staff--left {
  width: 200px;
  height: 200px;
  left: 80px;
  top: -40px;
}
.page-intro__staff--right {
  width: 260px;
  height: 260px;
  right: 80px;
  bottom: -40px;
  top: auto;
}
.page-intro__staff img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--c-white);
  box-shadow: 0 6px 10px rgba(0,0,0,.12);
}
.page-intro__bubble {
  position: absolute;
  color: var(--c-white);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.page-intro__bubble p { margin: 0; }
.page-intro__bubble--pink {
  background-image: url("../../images/circle_bg-pink.svg");
  width: 110px;
  height: 110px;
  right: -20px;
  bottom: 0;
}
.page-intro__bubble--teal {
  background-image: url("../../images/circle_bg-green.svg");
  width: 100px;
  height: 100px;
  left: -20px;
  top: 30px;
}

/* ==========================================================================
   Page Lead (deprecated — kept as alias for compatibility)
   ========================================================================== */
.page-lead {
  display: none;
}

/* ==========================================================================
   Common bottom CTA (reused on subpages)
   ========================================================================== */
/* (Uses .end-cta from top page) */

/* ==========================================================================
   Promise / 5つの安心 (reason page)
   ========================================================================== */
.promises {
  background: var(--c-cyan-bg);
  padding: 80px 0 100px;
}
.promises__head { text-align: center; }
.promises__badge {
  display: inline-block;
  background: var(--c-red);
  color: var(--c-white);
  font-weight: 700;
  font-size: 18px;
  padding: 8px 36px;
  border-radius: 30px;
  margin: 26px 0 26px;
}
.promises__lead {
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: var(--c-text);
  margin: 0;
}
.promises__list {
  margin: 50px auto 0;
  max-width: 920px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.promise {
  position: relative;
}
.promise__inner {
  position: relative;
  z-index: 1;
  background: var(--c-white);
  border: 1px solid var(--c-teal);
  padding: 28px 36px;
}
.promise::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 100%;
  height: 100%;
  background: var(--c-teal);
  z-index: 0;
}
.promise__title {
  font-weight: 700;
  font-size: 20px;
  color: var(--c-heading);
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 0 0 10px;
}
.promise__num {
  font-family: var(--f-en);
  font-weight: 500;
  font-size: 38px;
  color: var(--c-teal);
  line-height: 1;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline;
}
.promise__text {
  font-weight: 400;
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.8;
  margin: 0;
}

/* ==========================================================================
   Flow page (5 steps detailed)
   ========================================================================== */
.flow-detail {
  width: 100%;
  min-width: var(--inner-w);
  padding: 70px 0;
}
.flow-detail__head { text-align: center; }
.flow-detail__list {
  margin: 60px auto 0;
  max-width: 1200px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.flow-detail-item {
  background: var(--c-white);
  border: 1px solid var(--c-teal-light);
  border-radius: 12px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 280px 1fr 300px;
  gap: 40px;
  align-items: center;
}
.flow-detail-item__photo {
  width: 300px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,.1);
}
.flow-detail-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flow-detail-item__cta {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flow-detail-item__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  padding: 10px 18px;
  border-radius: 50px;
  font-family: var(--f-main);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  background: linear-gradient(to bottom, var(--c-yellow), var(--c-orange-end));
  border: 1px solid var(--c-orange);
  box-shadow: 0 5px 8px rgba(0,0,0,.2);
  color: var(--c-white);
  transition: filter .2s;
}
.flow-detail-item__cta-btn:hover { filter: brightness(1.05); }
.flow-detail-item__cta-btn--tel {
  background: var(--c-white);
  border: 2px solid var(--c-heading);
  color: var(--c-heading);
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
}
.flow-detail-item__cta-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.flow-detail-item__left {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.flow-detail-item__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.flow-detail-item__num {
  font-family: var(--f-en);
  font-weight: 500;
  color: var(--c-teal);
  text-align: center;
  line-height: 1;
  margin: 0;
}
.flow-detail-item__num-step {
  display: block;
  font-size: 24px;
  letter-spacing: 0.04em;
}
.flow-detail-item__num-no {
  display: block;
  font-size: 56px;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.flow-detail-item__icon {
  width: 110px;
  height: 110px;
  object-fit: contain;
  flex-shrink: 0;
}
.flow-detail-item__body { padding: 0 8px; }
.flow-detail-item__title {
  font-weight: 700;
  font-size: 22px;
  color: var(--c-text);
  margin: 0 0 14px;
}
.flow-detail-item__time {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-yellow-bg);
  border: 2px solid var(--c-teal);
  color: var(--c-teal);
  font-size: 15px;
  font-weight: 700;
  padding: 4px 20px 4px 4px;
  border-radius: 30px;
  margin-top: 6px;
  white-space: nowrap;
  line-height: 1;
}
.flow-detail-item__time-label {
  display: inline-block;
  background: var(--c-teal);
  color: var(--c-white);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.flow-detail-item__text {
  font-weight: 400;
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.8;
  margin: 0;
}

/* Required Documents */
.doc-required {
  background: var(--c-yellow-bg);
  padding: 70px 0;
}
.doc-required__head { text-align: center; }
.doc-required__lead {
  margin: 24px auto 30px;
  max-width: 720px;
  padding: 0 24px;
  font-size: 15px;
  text-align: center;
  line-height: 1.8;
}
.doc-required__box {
  margin: 0 auto;
  max-width: 720px;
  background: var(--c-white);
  border-radius: 12px;
  padding: 28px 36px;
  box-shadow: 0 4px 8px rgba(0,0,0,.06);
}
.doc-required__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.doc-required__list li {
  padding-left: 26px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
}
.doc-required__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--c-teal);
  border-radius: 50%;
}
.doc-required__list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--c-white);
  border-bottom: 2px solid var(--c-white);
  transform: rotate(-45deg);
}
.doc-required__note {
  margin-top: 20px;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

/* FAQ */
.faq {
  width: 100%;
  min-width: var(--inner-w);
  padding: 70px 0;
}
.faq__head { text-align: center; }
.faq__list {
  margin: 50px auto 0;
  max-width: 880px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-teal-light);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item__q,
.faq-item__a {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  padding: 18px 24px;
}
.faq-item__q {
  background: var(--c-cyan-bg);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-heading);
  align-items: center;
}
.faq-item__q::before {
  content: "Q";
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-teal);
  color: var(--c-white);
  font-family: var(--f-en);
  font-weight: 500;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item__a {
  border-top: 1px dashed var(--c-teal-light);
  font-size: 15px;
  line-height: 1.8;
  align-items: start;
}
.faq-item__a::before {
  content: "A";
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-orange);
  color: var(--c-white);
  font-family: var(--f-en);
  font-weight: 500;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Results page
   ========================================================================== */
.result-tabs {
  width: 100%;
  min-width: var(--inner-w);
  padding: 30px 0 10px;
}
.result-tabs__list {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.result-tabs__btn {
  background: var(--c-white);
  border: 2px solid var(--c-teal);
  color: var(--c-teal);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: opacity .2s;
}
.result-tabs__btn:hover { opacity: .8; }
.result-tabs__btn.is-active {
  background: var(--c-teal);
  color: var(--c-white);
}

.results-grid {
  width: 100%;
  min-width: var(--inner-w);
  padding: 30px 0 70px;
}
.results-grid__list {
  margin: 0 auto;
  max-width: var(--inner-w);
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(4, 260px);
  gap: 24px;
  justify-content: center;
}

/* ==========================================================================
   Stores page detail
   ========================================================================== */
.store-detail {
  position: relative;
  padding: 80px 0 60px;
  width: 100%;
  min-width: var(--inner-w);
  background: var(--c-base);
  overflow: hidden;
}
.store-detail--cyan { background: var(--c-cyan-bg); }
.store-detail__head { text-align: center; margin-bottom: 100px; }

/* Main: 写真+白カード+バッジ+本文 (Figma準拠 canvas 1280px) */
.store-detail__main {
  position: relative;
  width: 1280px;
  height: 674px;
  margin: 0 auto;
}
.store-detail__card-bg {
  position: absolute;
  top: 30px;
  left: 80px;
  width: 1120px;
  height: 644px;
  background: var(--c-white);
  border-radius: 8px;
  z-index: 1;
}
.store-detail__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 620px;
  height: 600px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 10px 15px rgba(0,0,0,.25);
  z-index: 3;
}
.store-detail__role-badge {
  position: absolute;
  top: 110px;
  left: 558px;
  width: 362px;
  height: 40px;
  background: var(--c-red);
  color: var(--c-white);
  font-family: var(--f-main);
  font-weight: 700;
  font-size: 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding-left: 137px;
  z-index: 2;
  box-sizing: border-box;
  line-height: 1;
}
.store-detail__quote {
  position: absolute;
  top: 180px;
  left: 695px;
  width: 406px;
  font-family: var(--f-main);
  font-weight: 500;
  font-size: 20px;
  color: var(--c-text);
  line-height: 1.5;
  margin: 0;
  z-index: 2;
}
.store-detail__message {
  position: absolute;
  top: 240px;
  left: 695px;
  width: 450px;
  font-family: var(--f-main);
  font-weight: 400;
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.7;
  margin: 0;
  z-index: 2;
}
.store-detail__message--lead { top: 180px; }
.store-detail__profile-label {
  position: absolute;
  top: 366px;
  left: 695px;
  font-family: var(--f-main);
  font-weight: 500;
  font-size: 18px;
  color: var(--c-text);
  margin: 0;
  z-index: 2;
  line-height: 1;
}
.store-detail__text {
  position: absolute;
  top: 406px;
  left: 695px;
  width: 450px;
  font-family: var(--f-main);
  font-weight: 400;
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.7;
  margin: 0;
  z-index: 2;
}

/* Contact card: 対応エリア + 電話 + CTA (Figma準拠) */
.store-detail__contact {
  position: relative;
  width: 900px;
  height: 474px;
  margin: 60px auto 0;
  background: var(--c-white);
  border: 1px solid var(--c-teal);
  border-radius: 8px;
}
.store-detail__contact-area-label {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 249px;
  height: 40px;
  background: var(--c-teal);
  color: var(--c-white);
  font-family: var(--f-main);
  font-weight: 700;
  font-size: 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  line-height: 1;
}
.store-detail__contact-area-text {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  font-family: var(--f-main);
  font-weight: 500;
  font-size: 20px;
  color: var(--c-text);
  text-align: center;
  margin: 0;
  line-height: 1.4;
}
.store-detail__contact-lead {
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-main);
  font-weight: 500;
  font-size: 20px;
  color: var(--c-heading);
  text-align: center;
  white-space: nowrap;
  margin: 0;
  line-height: 1.4;
}
.store-detail__contact-tel {
  position: absolute;
  top: 219px;
  left: 254px;
  width: 392px;
  height: 100px;
}
.store-detail__contact-tel-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 387px;
  height: 26px;
  background: var(--c-red);
  border-radius: 50px;
  color: var(--c-white);
  font-family: var(--f-main);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  line-height: 1;
}
.store-detail__contact-tel-num {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--f-main);
  font-weight: 800;
  font-size: 44.63px;
  color: var(--c-heading);
  white-space: nowrap;
  line-height: 1;
}
.store-detail__contact-tel-icon {
  width: 30px;
  height: 32px;
  flex-shrink: 0;
}
.store-detail__contact-tel-sub {
  position: absolute;
  top: 81px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-main);
  font-weight: 500;
  font-size: 14px;
  color: var(--c-heading);
  margin: 0;
  line-height: 1;
}
.store-detail__contact-tel-sub-mobile,
.store-detail__contact-tel-sub-hours {
  white-space: nowrap;
}
.store-detail__contact-cta {
  position: absolute;
  top: 351px;
  left: 50%;
  transform: translateX(-50%);
  width: 521px;
  height: 83px;
  background: linear-gradient(to bottom, var(--c-yellow), var(--c-orange-end));
  border: 1px solid var(--c-orange);
  border-radius: 50px;
  box-shadow: 0 7px 10px rgba(0,0,0,.25);
  color: var(--c-white);
  font-family: var(--f-main);
  font-weight: 700;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  box-sizing: border-box;
  transition: filter .2s;
}
.store-detail__contact-cta:hover { filter: brightness(1.05); }
.store-detail__contact-cta-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

/* 会社概要 */
.company-info {
  padding: 70px 0;
  width: 100%;
  min-width: var(--inner-w);
}
.company-info__head { text-align: center; }
.company-info__table {
  margin: 50px auto 0;
  max-width: 800px;
  padding: 0 24px;
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
}
.company-info__table th,
.company-info__table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
  line-height: 1.7;
}
.company-info__table th {
  background: var(--c-cyan-bg);
  color: var(--c-heading);
  font-weight: 700;
  width: 200px;
  white-space: nowrap;
}

/* ==========================================================================
   Recruit page
   ========================================================================== */
.recruit-message {
  padding: 70px 0;
}
.recruit-message__head { text-align: center; }
.recruit-message__inner {
  max-width: 1000px;
  margin: 50px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 50px;
  align-items: center;
}
.recruit-message__photo {
  border-radius: 12px;
  overflow: hidden;
}
.recruit-message__photo img { width: 100%; height: auto; display: block; }
.recruit-message__quote {
  font-family: var(--f-main);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-heading);
  line-height: 1.6;
  margin: 0 0 18px;
}
.recruit-message__text {
  font-weight: 400;
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.9;
  margin: 0;
}

.recruit-skills {
  background: var(--c-cyan-bg);
  padding: 70px 0;
}
.recruit-skills__head { text-align: center; }
.recruit-skills__list {
  margin: 60px auto 0;
  max-width: 1120px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.recruit-skill {
  background: var(--c-white);
  border-radius: 12px;
  padding: 0 28px 28px;
  box-shadow: 0 4px 8px rgba(0,0,0,.08);
  position: relative;
  overflow: visible;
}
.recruit-skill__head {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-top: 40px;
}
.recruit-skill__num {
  font-family: var(--f-en);
  font-weight: 500;
  font-size: 64px;
  color: var(--c-teal);
  line-height: 1;
}
.recruit-skill__icon {
  width: 170px;
  height: 170px;
  margin-top: -80px;
  flex-shrink: 0;
}
.recruit-skill__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.recruit-skill__title {
  font-weight: 700;
  font-size: 18px;
  color: var(--c-teal);
  margin: 0 0 14px;
  text-align: center;
}
.recruit-skill__text {
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text);
  text-align: left;
  line-height: 1.8;
  margin: 0;
}

.recruit-apply {
  padding: 70px 0;
  text-align: center;
}
.recruit-apply__head { text-align: center; }
.recruit-apply__text {
  margin: 30px auto;
  max-width: 720px;
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.9;
}
.recruit-apply__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--c-red);
  color: var(--c-white);
  font-weight: 700;
  font-size: 20px;
  padding: 18px 60px;
  border-radius: 50px;
  box-shadow: 0 6px 10px rgba(0,0,0,.15);
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-section {
  padding: 70px 0;
  width: 100%;
  min-width: var(--inner-w);
}
.contact-section--cyan { background: var(--c-cyan-bg); }
.contact-section__head { text-align: center; }
.contact-section__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 50px 24px 0;
}
.contact-section__lead {
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  margin: 24px auto 32px;
  max-width: 720px;
  padding: 0 24px;
}

/* Tel cards */
.contact-tels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}
.tel-card--with-photo {
  height: auto;
  padding: 38px 22px 22px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
}
.tel-card--with-photo .tel-card__badge {
  grid-column: 1 / 3;
  position: static;
  display: block;
  width: 100%;
  margin-bottom: 0;
  font-size: 14px;
  background: var(--c-red);
  text-align: center;
  height: 32px;
  line-height: 32px;
}
.tel-card__photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-white);
  box-shadow: 0 4px 8px rgba(0,0,0,.1);
}
.tel-card__info {
  display: block;
}
.tel-card--with-photo .tel-card__number {
  font-size: 30px;
  justify-content: flex-start;
  margin-bottom: 6px;
}
.tel-card__sub-list {
  display: block;
  font-size: 12px;
  color: var(--c-heading);
  line-height: 1.7;
}
.tel-card__sub-list > span {
  display: block;
}

/* LINE howto section */
.line-howto {
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 24px;
  position: relative;
}
.line-howto__badge {
  display: inline-block;
  background: var(--c-red);
  color: var(--c-white);
  font-weight: 700;
  font-size: 16px;
  padding: 8px 30px;
  border-radius: 30px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 30px;
}

.line-step-row {
  background: var(--c-white);
  padding: 36px 40px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.line-step-row__head {
  text-align: center;
}
.line-step-row__num {
  font-family: var(--f-en);
  font-weight: 500;
  color: var(--c-teal);
  line-height: 1;
  margin: 0;
}
.line-step-row__num-step {
  display: block;
  font-size: 28px;
}
.line-step-row__num-no {
  display: block;
  font-size: 60px;
  margin-top: 6px;
}
.line-step-row__title {
  font-weight: 700;
  font-size: 18px;
  color: var(--c-teal);
  margin: 18px 0 14px;
}
.line-step-row__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-text);
  text-align: left;
  margin: 0;
}

.line-qrs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 500px;
}
.line-qr {
  text-align: center;
}
.line-qr__badge {
  display: inline-block;
  background: var(--c-teal);
  color: var(--c-white);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 18px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.line-qr__code {
  background: #ddd;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
  border-radius: 4px;
}

.line-step-row__lead {
  font-weight: 400;
  font-size: 14px;
  margin: 0 0 16px;
  line-height: 1.8;
}
.line-step-row__box {
  border: 1px solid var(--c-teal);
  border-radius: 8px;
  padding: 16px 24px;
}
.line-step-row__box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.line-step-row__box li {
  font-size: 14px;
  line-height: 1.9;
}
.line-step-row__note {
  margin: 10px 0 0;
  font-size: 12px;
  color: #666;
  line-height: 1.7;
}

/* Form */
.contact-form {
  background: var(--c-white);
  border-radius: 12px;
  padding: 40px;
  max-width: 720px;
  margin: 40px auto 0;
  box-shadow: 0 4px 8px rgba(0,0,0,.06);
}
.form-row {
  margin-bottom: 24px;
}
.form-row__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}
.form-row__required {
  background: var(--c-red);
  color: var(--c-white);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
}
.form-row__optional {
  background: #999;
  color: var(--c-white);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
}
.form-row__note {
  font-size: 12px;
  color: #666;
  font-weight: 400;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  box-sizing: border-box;
}
.form-row textarea {
  min-height: 140px;
  resize: vertical;
}
.form-submit {
  text-align: center;
  margin-top: 32px;
}
.form-submit button {
  background: var(--c-teal);
  color: var(--c-white);
  font-weight: 700;
  font-size: 18px;
  padding: 16px 60px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 10px rgba(0,0,0,.15);
  transition: filter .2s;
}
.form-submit button:hover { filter: brightness(1.05); }

/* ==========================================================================
   Tablet (768px - 1023px)
   ========================================================================== */
@media (max-width: 1023px) {
  .worry,
  .reason,
  .results,
  .voice,
  .flow,
  .stores,
  .end-cta {
    min-width: 0;
  }
  .hero { min-width: 0; }
  .section-photo { min-width: 0; }
  .page-hero,
  .page-intro,
  .promises,
  .flow-detail,
  .doc-required,
  .faq,
  .result-tabs,
  .results-grid,
  .store-detail,
  .company-info,
  .recruit-message,
  .recruit-skills,
  .recruit-apply,
  .contact-section { min-width: 0; }

  /* Header: smaller logo, show hamburger, hide nav/tel */
  .site-header { height: 70px; }
  .site-header__inner { width: 100%; height: 70px; padding: 0; }
  .site-header__logo { left: 12px; top: 50%; transform: translateY(-50%); }
  .site-header__logo-img { width: 240px; height: 60px; }
  .hamburger { display: block; }

  .site-nav {
    position: fixed;
    inset: 70px 0 0 0;
    background: var(--c-white);
    z-index: 15;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
    overflow-y: auto;
  }
  body.is-nav-open .site-nav { opacity: 1; visibility: visible; }
  .site-nav__list {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
  }
  .site-nav__list li {
    border-bottom: 1px solid #eee;
  }
  .site-nav__list a {
    display: flex;
    padding: 18px 24px;
    font-size: 18px;
  }
  .site-nav__contact { margin-left: 0; }

  .header-tel { display: none; }

  /* Hero */
  .hero { height: auto; min-height: 360px; }
  .hero__content { width: 100%; padding: 60px 24px 40px; }
  .hero__title { font-size: 48px; }
  .hero__sub { width: 100%; max-width: 480px; font-size: 18px; height: 40px; }
  .hero__cta {
    width: 100%; max-width: 460px;
    height: 70px; font-size: 22px;
  }
  .hero__cta-icon { width: 50px; height: 50px; }

  /* Section title */
  .section-title { font-size: 24px; }

  /* Worry */
  .worry { padding: 60px 0; }
  .worry__stage {
    width: 100%;
    padding: 0 16px;
    height: auto;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
  }
  .worry__big-illust { position: relative; left: auto; top: auto; transform: none; }
  .worry-card,
  .worry-card--left,
  .worry-card--right,
  .worry-card--center {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 480px;
    height: auto;
    min-height: 360px;
    padding-bottom: 130px;
  }
  .worry__staff,
  .worry__staff--bottom-left,
  .worry__staff--bottom-right {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0 auto;
    width: 220px;
    height: 220px;
  }
  .worry__staff-bubble--pink { left: -50px; top: -50px; }
  .worry__staff-bubble--teal { right: auto; left: -50px; top: -50px; }

  /* Reason */
  .reason { padding: 60px 0; }
  .reason__list { padding: 0 16px; margin-top: 50px; gap: 50px; }
  .reason-item,
  .reason-item--reverse {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 24px;
  }
  .reason-item__img,
  .reason-item__img--left,
  .reason-item__img--right {
    grid-column: auto;
    width: 100%;
    height: 220px;
    border-radius: 20px;
    order: 2;
  }
  .reason-item__body,
  .reason-item__body--right,
  .reason-item__body--left {
    grid-column: auto;
    grid-row: auto;
    padding: 0 4px;
    order: 1;
  }
  .reason-item__num { font-size: 50px; }
  .reason-item__icon { width: 60px; height: 60px; }
  .reason-item__text { margin-top: 16px; }

  /* Results */
  .results { padding: 60px 0; }
  .results__lead { padding: 0 24px; font-size: 14px; }
  .results__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
    max-width: 600px;
  }
  .result-card { width: 100%; height: auto; }
  .result-card__img { width: 100%; height: 180px; }

  /* Voice */
  .voice { padding: 60px 0; }
  .voice__body {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 24px;
    max-width: 480px;
  }
  .voice__illust { display: flex; justify-content: center; }
  .voice__illust img { width: 240px; }
  .voice__google { height: 320px; width: 100%; }

  /* Flow */
  .flow { padding: 60px 0; }
  .flow__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
    padding: 0 16px;
    max-width: 560px;
    align-items: stretch;
  }
  .flow-step {
    width: 100%;
    height: auto;
    padding-right: 12px;
    padding-bottom: 12px;
    display: flex;
    flex-direction: column;
  }
  .flow-step__inner {
    width: 100%;
    height: auto;
    flex: 1;
    padding-bottom: 24px;
  }
  .flow-step::after {
    top: 12px;
    left: 12px;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
  }

  /* Stores */
  .stores { padding: 60px 0; }
  .stores__list {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px;
    max-width: 520px;
  }
  .store-card { width: 100%; }
  .store-card__img { width: 100%; height: auto; aspect-ratio: 520/280; }

  /* End CTA */
  .end-cta { padding: 60px 0; }
  .end-cta__lead { padding: 0 24px; }
  .end-cta__tels {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
    max-width: 480px;
  }
  .tel-card { width: 100%; }
  .tel-card__badge { width: calc(100% - 24px); }

  /* Section photo */
  .section-photo { height: 200px; }

  /* Footer */
  .site-footer__inner {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    gap: 16px;
  }
  .site-footer__logo {
    position: static;
    transform: none;
  }
  .site-footer__logo img { width: 280px; height: 70px; }
  .site-footer__nav ul {
    position: static;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }
  .site-footer__copy { padding: 12px 0 18px; }

  /* Hide floating CTA on tablet & SP */
  .floating-cta { display: none; }

  /* Btn */
  .btn-pill,
  .btn-pill--wide {
    width: 90%;
    max-width: 420px;
    height: auto;
    min-height: 50px;
    padding: 10px 18px;
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    gap: 10px;
    white-space: normal;
    box-sizing: border-box;
  }
  .btn-pill__arrow {
    width: 22px;
    height: 22px;
  }

  /* Buttons CTA section spacing */
  .reason__cta,
  .results__cta,
  .flow__cta,
  .stores__cta { padding: 0 16px; }

  /* ===== 下層ページ共通: Page hero / Page intro ===== */
  .page-hero { height: 220px; }
  .page-intro { padding: 60px 0 70px; }
  .page-intro__inner {
    padding: 0 24px;
    min-height: 0;
  }
  .page-intro__title { font-size: 26px; margin-bottom: 20px; }
  .page-intro__text { font-size: 15px; }
  .page-intro__staff,
  .page-intro__staff--left,
  .page-intro__staff--right {
    position: relative;
    width: 160px;
    height: 160px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    display: block;
    float: none;
    margin: 0 auto 24px;
  }
  .page-intro__staff--right { margin: 24px auto 0; }
  .page-intro__bubble--pink,
  .page-intro__bubble--teal {
    width: 80px;
    height: 80px;
    font-size: 12px;
  }
  .page-intro__bubble--pink { right: -55px; bottom: 0; left: auto; top: auto; }
  .page-intro__bubble--teal { left: -55px; top: 0; right: auto; bottom: auto; }

  /* ===== Promise / 5つの安心 (reason) ===== */
  .promises { padding: 60px 0; }
  .promises__lead { padding: 0 24px; font-size: 14px; }
  .promises__list { padding: 0 16px; gap: 24px; }
  .promise__inner { padding: 22px 24px; }
  .promise::after { left: 8px; top: 8px; }
  .promise__title { font-size: 17px; flex-wrap: wrap; gap: 10px; }
  .promise__num { font-size: 32px; }
  .promise__text { font-size: 14px; }

  /* ===== Subpage reason detail ===== */
  .reason-item--detail,
  .reason-item--detail.reason-item--reverse {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .reason-item--detail .reason-item__img {
    width: 100%;
    height: 220px;
    border-radius: 20px;
  }
  .reason-item__title--detail { font-size: 18px; }

  /* ===== Flow detail (5 steps) ===== */
  .flow-detail { padding: 60px 0; }
  .flow-detail__list { padding: 0 16px; gap: 20px; }
  .flow-detail-item {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 20px;
  }
  .flow-detail-item__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    max-width: 420px;
    margin: 0 auto;
  }
  .flow-detail-item__cta { width: 100%; max-width: 420px; margin: 0 auto; }
  .flow-detail-item__head { gap: 12px; }
  .flow-detail-item__icon { width: 80px; height: 80px; }
  .flow-detail-item__num-step { font-size: 18px; }
  .flow-detail-item__num-no { font-size: 42px; }
  .flow-detail-item__title { font-size: 18px; }
  .flow-detail-item__text { font-size: 14px; }
  .flow-detail-item__body { padding: 0; }

  /* ===== Required Documents ===== */
  .doc-required { padding: 60px 0; }
  .doc-required__lead { padding: 0 16px; font-size: 14px; }
  .doc-required__box { padding: 22px 22px; margin: 0 16px; }
  .doc-required__list { grid-template-columns: 1fr; gap: 10px 0; }
  .doc-required__list li { font-size: 14px; }
  .doc-required__note { font-size: 12px; }

  /* ===== FAQ ===== */
  .faq { padding: 60px 0; }
  .faq__list { padding: 0 16px; gap: 14px; }
  .faq-item__q,
  .faq-item__a {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 14px 18px;
  }
  .faq-item__q::before,
  .faq-item__a::before {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .faq-item__q { font-size: 15px; }
  .faq-item__a { font-size: 14px; }

  /* ===== Results tabs / grid ===== */
  .result-tabs__list { padding: 0 16px; gap: 8px; }
  .result-tabs__btn { font-size: 13px; padding: 6px 14px; }
  .results-grid { padding: 24px 0 60px; }
  .results-grid__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
    max-width: 600px;
  }

  /* ===== Stores: store-detail (タブレット幅以下は絶対配置を解除して縦並びに) ===== */
  .store-detail { padding: 50px 0 70px; overflow: visible; }
  .store-detail__head { margin-bottom: 30px; }
  .store-detail__main {
    position: static;
    width: auto;
    height: auto;
    max-width: 520px;
    padding: 0 16px;
    background: var(--c-white);
    border-radius: 8px;
    margin: 0 auto;
  }
  .store-detail__card-bg { display: none; }
  .store-detail__photo {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 8px;
    margin: 16px 0;
    box-shadow: 0 6px 10px rgba(0,0,0,.15);
  }
  .store-detail__role-badge {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    padding: 8px 22px;
    font-size: 16px;
    margin: 0 0 16px;
    display: inline-flex;
    border-radius: 50px;
  }
  .store-detail__quote,
  .store-detail__message,
  .store-detail__message--lead,
  .store-detail__profile-label,
  .store-detail__text {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }
  .store-detail__quote { font-size: 17px; margin: 0 0 14px; }
  .store-detail__message { font-size: 14px; margin: 0 0 22px; }
  .store-detail__profile-label { font-size: 15px; margin: 0 0 10px; }
  .store-detail__text { font-size: 14px; margin: 0 0 16px; }

  /* Contact card */
  .store-detail__contact {
    position: relative;
    width: auto;
    height: auto;
    max-width: 520px;
    margin: 30px auto 0;
    padding: 32px 18px 28px;
    border-radius: 8px;
  }
  .store-detail__contact-area-label {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    height: auto;
    padding: 7px 28px;
    font-size: 18px;
    display: inline-flex;
    margin: 0 auto 14px;
  }
  .store-detail__contact-area-text,
  .store-detail__contact-lead {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    font-size: 15px;
    white-space: normal;
    margin: 0 0 14px;
  }
  .store-detail__contact-area-text { margin-bottom: 24px; }
  .store-detail__contact-tel {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    margin-bottom: 22px;
  }
  .store-detail__contact-tel-badge {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 8px;
    height: 26px;
    font-size: 14px;
  }
  .store-detail__contact-tel-num {
    position: relative;
    top: auto;
    font-size: 32px;
    gap: 10px;
  }
  .store-detail__contact-tel-icon { width: 22px; height: auto; }
  .store-detail__contact-tel-sub {
    position: relative;
    top: auto;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    font-size: 12px;
    margin-top: 8px;
  }
  .store-detail__contact-cta {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: 60px;
    font-size: 16px;
    margin: 24px auto 0;
  }
  .store-detail__contact-cta-icon { width: 40px; height: 40px; }
  .store-detail__contact-area-label { font-size: 14px; padding: 6px 28px; }
  .store-detail__contact-area-text { font-size: 14px; }
  .store-detail__contact-lead { font-size: 15px; }
  .store-detail__contact-tel-badge { padding: 5px 44px; font-size: 13px; }
  .store-detail__contact-tel-num { font-size: 36px; gap: 8px; }
  .store-detail__contact-tel-icon { width: 28px; }
  .store-detail__contact-tel-sub { font-size: 11px; }
  .store-detail__contact-cta {
    height: 60px;
    font-size: 16px;
    gap: 10px;
    max-width: 100%;
  }
  .store-detail__contact-cta-icon { width: 36px; height: 36px; }

  /* ===== Company info ===== */
  .company-info { padding: 50px 0; }
  .company-info__table {
    padding: 0 16px;
    font-size: 14px;
    margin-top: 30px;
  }
  .company-info__table th { width: 120px; padding: 12px; }
  .company-info__table td { padding: 12px; }

  /* ===== Recruit ===== */
  .recruit-message { padding: 50px 0; }
  .recruit-message__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
    margin-top: 30px;
    max-width: 480px;
  }
  .recruit-message__quote { font-size: 18px; }
  .recruit-message__text { font-size: 14px; }

  .recruit-skills { padding: 50px 0; }
  .recruit-skills__list {
    grid-template-columns: 1fr;
    max-width: 420px;
    padding: 0 16px;
    gap: 70px;
    margin-top: 50px;
  }
  .recruit-skill { padding: 0 20px 24px; }
  .recruit-skill__head { padding-top: 32px; gap: 10px; }
  .recruit-skill__num { font-size: 48px; }
  .recruit-skill__icon { width: 120px; height: 120px; margin-top: -50px; }
  .recruit-skill__title { font-size: 17px; }
  .recruit-skill__text { font-size: 14px; }

  .recruit-apply { padding: 50px 0; }
  .recruit-apply__text { padding: 0 16px; font-size: 14px; }
  .recruit-apply__btn {
    font-size: 17px;
    padding: 14px 40px;
    width: 90%;
    max-width: 360px;
  }

  /* ===== Contact ===== */
  .contact-section { padding: 50px 0; }
  .contact-section__inner { padding: 30px 16px 0; }
  .contact-section__lead { padding: 0 16px; font-size: 14px; }

  .contact-tels {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
    max-width: 480px;
  }
  .tel-card--with-photo {
    grid-template-columns: 90px 1fr;
    gap: 14px;
    padding: 32px 16px 16px;
  }
  .tel-card__photo { width: 90px; height: 90px; }
  .tel-card--with-photo .tel-card__number { font-size: 24px; }
  .tel-card__sub-list { font-size: 11px; }

  .line-howto { padding: 0 16px; }
  .line-howto__badge { font-size: 14px; padding: 6px 22px; margin-bottom: 24px; }
  .line-step-row {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 18px;
  }
  .line-step-row__head { text-align: center; }
  .line-step-row__num-step { font-size: 22px; }
  .line-step-row__num-no { font-size: 46px; }
  .line-step-row__title { font-size: 17px; }
  .line-step-row__text { font-size: 13px; }
  .line-qrs { max-width: 320px; margin: 0 auto; }

  .contact-form { padding: 28px 22px; margin: 30px 16px 0; }
  .form-row input[type="text"],
  .form-row input[type="email"],
  .form-row input[type="tel"],
  .form-row select,
  .form-row textarea { font-size: 14px; padding: 10px 14px; }
  .form-submit button { font-size: 16px; padding: 14px 40px; }
}

/* ==========================================================================
   SP (max 767px) - more aggressive
   ========================================================================== */
@media (max-width: 767px) {
  .site-header__logo-img { width: 200px; height: 50px; }
  .site-header { height: 60px; }
  .site-header__inner { height: 60px; }
  .site-nav { inset: 60px 0 0 0; }

  .section-title { font-size: 20px; }

  .hero { min-height: 280px; }
  .hero__content { padding: 40px 16px 32px; }
  .hero__title { font-size: 32px; line-height: 1.3; }
  .hero__sub { font-size: 15px; height: 36px; padding-left: 10px; }
  .hero__cta { height: 60px; font-size: 18px; gap: 12px; }
  .hero__cta-icon { width: 44px; height: 44px; }

  /* Worry */
  .worry-card__title { font-size: 16px; }
  .worry-card__text { font-size: 14px; }
  .worry-card__answer { font-size: 14px; }

  /* Results: 1 column */
  .results__cards { grid-template-columns: 1fr; max-width: 320px; }
  .result-card__img { height: 200px; }

  /* Flow: 1 column */
  .flow__list { grid-template-columns: 1fr; max-width: 320px; }

  /* Reason */
  .reason-item__title { font-size: 18px; }
  .reason-item__text { font-size: 14px; }

  /* Store */
  .store-card__badge { width: 240px; font-size: 16px; }
  .store-card__title { font-size: 16px; }
  .store-card__text { font-size: 14px; }

  /* End CTA */
  .tel-card { height: auto; padding: 38px 10px 14px; }
  .tel-card__number { font-size: 30px; gap: 4px; }
  .tel-card__icon { width: 22px; }
  .tel-card__sub { font-size: 12px; flex-direction: column; gap: 2px; text-align: center; }

  .section-photo { height: 140px; }

  /* Header tel hidden, but show single sticky bottom CTA could go here */

  /* ===== 下層ページ SP 追加調整 ===== */
  .page-hero { height: 160px; }
  .page-intro { padding: 50px 0 60px; }
  .page-intro__title { font-size: 22px; }
  .page-intro__text { font-size: 14px; }
  .page-intro__staff,
  .page-intro__staff--left,
  .page-intro__staff--right {
    width: 200px;
    height: 200px;
  }
  .page-intro__bubble--pink,
  .page-intro__bubble--teal {
    width: 120px;
    height: 120px;
    font-size: 12px;
  }

  /* Promises */
  .promise__title { font-size: 16px; }
  .promise__num { font-size: 28px; }
  .promise__text { font-size: 13px; }

  /* Flow detail */
  .flow-detail-item { padding: 22px 16px; gap: 16px; }
  .flow-detail-item__title { font-size: 17px; }
  .flow-detail-item__text { font-size: 13px; }
  .flow-detail-item__cta-btn { font-size: 14px; min-height: 50px; }
  .flow-detail-item__cta-icon { width: 22px; height: 22px; }

  /* Doc required */
  .doc-required__box { padding: 18px 18px; }

  /* FAQ */
  .faq-item__q,
  .faq-item__a { padding: 12px 14px; }
  .faq-item__q { font-size: 14px; }
  .faq-item__a { font-size: 13px; }
  .faq-item__q::before,
  .faq-item__a::before { width: 28px; height: 28px; font-size: 14px; }

  /* Results page: 1 column */
  .results-grid__list { grid-template-columns: 1fr; max-width: 320px; }
  .result-tabs__btn { font-size: 12px; padding: 5px 12px; }

  /* Stores SP */
  .store-detail__main { padding: 0 14px; }
  .store-detail__role-badge { font-size: 14px; padding: 6px 18px; }
  .store-detail__quote { font-size: 16px; }
  .store-detail__message { font-size: 13px; }
  .store-detail__profile-label { font-size: 14px; }
  .store-detail__text { font-size: 13px; }
  .store-detail__contact { padding: 24px 14px 22px; }
  .store-detail__contact-area-label { font-size: 16px; padding: 6px 22px; }
  .store-detail__contact-area-text { font-size: 14px; }
  .store-detail__contact-lead { font-size: 14px; }
  .store-detail__contact-tel-badge { font-size: 13px; }
  .store-detail__contact-tel-num { font-size: 28px; }
  .store-detail__contact-tel-icon { width: 20px; }
  .store-detail__contact-tel-sub { font-size: 11px; }
  .store-detail__contact-cta { height: 56px; font-size: 14px; }
  .store-detail__contact-cta-icon { width: 30px; height: 30px; }

  /* Company info: stack table cells */
  .company-info__table,
  .company-info__table tbody,
  .company-info__table tr,
  .company-info__table th,
  .company-info__table td { display: block; width: 100%; }
  .company-info__table tr { margin-bottom: 14px; border-bottom: 1px solid #ddd; padding-bottom: 8px; }
  .company-info__table th {
    background: var(--c-cyan-bg);
    padding: 8px 12px;
    border-bottom: none;
    white-space: normal;
  }
  .company-info__table td { padding: 8px 12px; border-bottom: none; }

  /* Recruit */
  .recruit-message__quote { font-size: 16px; }
  .recruit-skill__title { font-size: 16px; }
  .recruit-skill__text { font-size: 13px; }
  .recruit-skill__num { font-size: 42px; }
  .recruit-skill__icon { width: 100px; height: 100px; margin-top: -40px; }

  /* Contact */
  .tel-card--with-photo {
    grid-template-columns: 80px 1fr;
    gap: 12px;
    padding: 30px 14px 14px;
  }
  .tel-card__photo { width: 80px; height: 80px; }
  .tel-card--with-photo .tel-card__number { font-size: 22px; }

  .line-step-row { padding: 22px 16px; }
  .line-step-row__num-step { font-size: 20px; }
  .line-step-row__num-no { font-size: 40px; }

  .contact-form { padding: 22px 16px; }
  .form-row { margin-bottom: 18px; }
  .form-row__label { font-size: 14px; }
}



/* ==========================================================================
   WordPress 追加スタイル（買取実績フィルタ / ページネーション / 詳細）
   ========================================================================== */
.results-filter {
  max-width: 880px;
  margin: 40px auto 24px;
  padding: 0 24px;
}
.results-filter__form {
  background: var(--c-white, #fff);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-end;
  justify-content: center;
}
.results-filter__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 180px;
}
.results-filter__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text, #333);
}
.results-filter__select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #cfd6dc;
  border-radius: 8px;
  padding: 10px 36px 10px 14px;
  font-size: 15px;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23555' d='M6 8L0 0h12z'/></svg>") no-repeat right 12px center;
  background-size: 10px 7px;
  min-width: 200px;
}
.results-filter__submit { white-space: nowrap; }
.results-filter__reset {
  display: inline-block;
  font-size: 13px;
  color: var(--c-text-sub, #666);
  text-decoration: underline;
}
.results-grid__empty {
  text-align: center;
  font-size: 15px;
  color: var(--c-text-sub, #666);
  padding: 60px 24px;
}
.results-grid__pagination {
  display: flex;
  justify-content: center;
  margin: 40px 0 0;
  padding: 0 24px;
}
.results-grid__pagination .page-numbers {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.results-grid__pagination .page-numbers a,
.results-grid__pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #cfd6dc;
  font-weight: 700;
  text-decoration: none;
  color: var(--c-text, #333);
  background: #fff;
}
.results-grid__pagination .page-numbers.current {
  background: var(--c-brand, #f08137);
  color: #fff;
  border-color: var(--c-brand, #f08137);
}
.results-grid__pagination .page-numbers a:hover { background: #f6f6f6; }

/* 実績詳細 */
.result-single { padding: 20px 0 60px; }
.result-single .section-deco { margin-bottom: 40px; }
.result-single__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.result-single__img {
  margin: 0 0 32px;
  border-radius: 20px;
  overflow: hidden;
  background: #f3f3f3;
}
.result-single__img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 480px;
}
.result-single__spec {
  margin: 0 0 28px;
  border-top: 1px solid #e3e6ea;
}
.result-single__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 14px 8px;
  border-bottom: 1px solid #e3e6ea;
}
.result-single__row dt {
  font-weight: 700;
  color: var(--c-text-sub, #666);
}
.result-single__row dd { margin: 0; }
.result-single__row dd a { color: inherit; text-decoration: underline; }
.result-single__note {
  margin: 0 0 32px;
  padding: 20px 24px;
  background: #f7f9fb;
  border-radius: 12px;
  line-height: 1.8;
}
.result-single__back {
  text-align: center;
  margin-top: 24px;
}

@media (max-width: 767px) {
  .results-filter__form { flex-direction: column; align-items: stretch; padding: 16px; }
  .results-filter__row { min-width: 0; }
  .results-filter__select { min-width: 0; width: 100%; }
  .results-filter__submit { width: 100%; }
  .result-single__row { grid-template-columns: 110px 1fr; gap: 10px; font-size: 14px; }
}
