/* =========================================================
   店舗内装プロ LP  -  V2
   ========================================================= */

:root {
  --red: #d8142c;
  --red-dark: #a5091c;
  --gold: #bfa15b;
  --gold-dark: #a98c46;
  --teal: #17b3c0;
  --dark: #2b2b2b;
  --text: #333333;
  --gray-bg: #ececec;
  --gray-line: #dcdcdc;
  --fc-bg: #1b1a17;
  --fc-card: #26241f;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    'Noto Sans JP',
    -apple-system,
    BlinkMacSystemFont,
    'Hiragino Kaku Gothic ProN',
    'Meiryo',
    sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 64px; /* space for sp fixed bar */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.container {
  width: 100%;
  height: auto;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow {
  max-width: 800px;
}

.section {
  padding: 50px 0;
}
.section--gray {
  background: var(--gray-bg);
}
.text--red {
  color: var(--red);
}

.sp-only {
  display: inline;
}
.pc-only {
  display: none;
}

/* ---------- Section Titles ---------- */
.sec-ttl {
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  font-size: 24px;
  line-height: 1.0;
  margin-bottom: 32px;
}

.sec-ttl__en {
  display: block;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.marker {
  color: var(--red);
  position: relative;
  padding-top: 8px;
}
.marker::before {
  content: '・・・';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--red);
  font-size: 1em;
  letter-spacing: 2px;
}
.accent {
  color: var(--red);
}

/* =========================================================
     HERO
     ========================================================= */
.hero {
  background: #f2efe9;
  position: relative;
  margin-bottom: 50px;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.hero__visual img {
  width: 100%;
}
.hero__visual-frame {
  position: relative;
}
.hero__sim-badge {
  position: absolute;
  bottom: calc(16.2% + 14px);
  left: 10%;
  width: 80%;
  height: 17%;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.hero__sim-badge:hover,
.hero__sim-badge:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}
.hero__sim-badge-left,
.hero__sim-badge-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
  padding: 10px 12px;
  font-size: 3.6vw;
}
.hero__sim-badge-left {
  background: linear-gradient(180deg, #bc3437, #8f070a);
  color: #fff;
}
.hero__sim-badge-right {
  background: #fff;
  color: #a82023;
}
.hero__sim-badge-shine {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.hero__sim-badge-shine::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -60%;
  width: 50%;
  height: 140%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0) 70%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: heroSimBadgeShine 3.6s ease-in-out infinite;
}
@keyframes heroSimBadgeShine {
  0% {
    left: -60%;
  }
  35% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__sim-badge-shine::after {
    animation: none !important;
  }
}
.hero__cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 3vw;
  padding: 24px 0 0;
  aspect-ratio: 13 / 5;
}
.cta-btn {
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.15s,
    opacity 0.15s;
  width: 80%;
  height: 14vw;
  margin: 0 auto;
}
.cta-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}
.cta-btn--gold {
  background: linear-gradient(180deg, #c9ac6b, #b2924e);
}
.cta-btn--red {
  background: linear-gradient(180deg, #bc3437, #8f070a);
}
.cta-btn__icon {
  width: 8%;
  filter: brightness(0) invert(1);
}
.cta-btn__mail {
  font-size: 28px;
}
.cta-btn__text {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  letter-spacing: 0;
}
.cta-btn__text strong {
  font-size: 4.2vw;
  font-weight: 700;
}
.cta-btn__text small {
  font-size: 3vw;
  font-weight: 400;
  opacity: 0.9;
}
.cta-btn__arrow {
  font-size: 16px;
}

/* =========================================================
     WORKS
     ========================================================= */
.works__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.works__head .sec-ttl {
  margin-bottom: 0;
}

.works__head .sec-ttl__en {
  text-align: left;
}
.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.carousel::-webkit-scrollbar {
  height: 6px;
}
.carousel::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.work-card {
  flex: 0 0 78%;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--gray-line);
}
.work-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.work-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-card__body {
  padding: 12px 14px 16px;
}
.work-card__meta {
  font-size: 11px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
}
.work-card__cat {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 1px 10px;
  font-size: 10px;
}
.work-card__ttl {
  font-size: 15px;
  font-weight: 700;
  margin: 6px 0 4px;
}
.work-card__txt {
  font-size: 12px;
  color: #888;
}

.more-link {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--dark);
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.more-link__icon {
  width: 20px;
  height: 20px;
}

/* =========================================================
     CTA BAND
     ========================================================= */
.cta-band {
  background: url('../img/v2/contact_bg_sp.jpg') center/cover no-repeat;
  position: relative;
}
.cta-band__overlay {
  background: rgba(20, 20, 20, 0.1);
  padding: 30px 20px;
  text-align: center;
  color: #fff;
}
.cta-band__lead {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}
.cta-band__tel {
  display: block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.cta-band__tel span {
  font-size: 14px;
  margin-right: 6px;
  font-weight: 500;
}
.cta-band__time {
  font-size: 12px;
  margin-bottom: 14px;
  opacity: 0.9;
}
.cta-band__btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 12px 34px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}
.cta-band__btn:hover {
  background: var(--red-dark);
}

/* =========================================================
     WORRIES
     ========================================================= */
.worries__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.worries__item {
  padding-block: 14px;
  padding-left: 40px;
  border-bottom: 2px solid var(--dark);
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
.worries__item::before {
  content: '';
  display: block;
  width: 16px;
  height: 8px;
  border-bottom: 3px solid var(--dark);
  border-left: 3px solid var(--dark);
  transform: rotate(-45deg);
  position: absolute;
  left: 8px;
  top: calc(50% - 4px);
}
.worries {
  margin-bottom: 40px;
  position: relative;
}
.worries::after {
  content: '';
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: var(--gray-bg);
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 40px;
}

/* =========================================================
     OMAKASE
     ========================================================= */
.omakase__ttl {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.5;
  text-align: center;
  border-bottom: 2px solid var(--dark);
  padding-bottom: 14px;
  position: relative;
}
.omakase__ttl::after {
  content: '';
  display: block;
  width: 20px;
  height: 12px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: var(--dark);
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.omakase__ttl-accent {
  color: var(--red);
}
.omakase__body p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 14px;
}
.omakase__lead {
  color: var(--red);
  font-weight: 700;
  margin-top: 14px;
}
.omakase__txt {
  font-size: 14px;
  color: #555;
  margin-top: 4px;
}
.omakase__img {
  margin-top: 22px;
}
.omakase__img img {
  width: 100%;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.18);
}

/* =========================================================
     SERVICE
     ========================================================= */
.service__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--gray-line);
  border: 1px solid var(--gray-line);
}
.service-card {
  display: block;
  width: 100%;
  background: #fff;
  padding: 28px 22px;
  text-align: center;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
}
.service-card:hover,
.service-card:focus-visible {
  background: var(--gray-bg);
}
.service-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
.service-card__icon {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-card__icon img {
  max-height: 56px;
  width: auto;
}
.service-card__ttl {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card__txt {
  font-size: 13px;
  color: #666;
  text-align: left;
}
.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
}
.service-card__more::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid var(--gold-dark);
  border-right: 2px solid var(--gold-dark);
  transform: rotate(45deg);
}

/* =========================================================
     REASON
     ========================================================= */
.reason__list {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.reason-item__img img {
  width: 100%;
}
.reason-item__img.img--left {
  transform: translateX(-20px);
}
.reason-item__img.img--right {
  transform: translateX(20px);
}
.reason-item__body {
  margin-top: 0;
}
.reason-item__num {
  margin-top: -20px;
  font-size: 96px;
  font-weight: 500;
  color: #d8d8d8;
  line-height: 1;
  position: relative;
  display: block;
  width: fit-content;
  font-family: 'Helvetica Neue', sans-serif;
}
.reason-item__num.num--right {
  padding-right: 20px;
  margin-left: auto;
}
.reason-item__num.num--left {
  margin-left: 20px;
}

.reason-item__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 2px;
  position: absolute;
  top: 50%;
  left: -2em;
  transform: translateY(-50%);
}
.reason-item__ttl {
  font-size: 19px;
  font-weight: 700;
  margin: 8px 0 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--dark);
  line-height: 1.5;
}
.reason-item__txt {
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
}

/* =========================================================
     DIFFERENCE
     ========================================================= */
.difference__table {
  text-align: center;
}
.difference__table img {
  margin: 0 auto;
  max-width: 100%;
}

/* =========================================================
     FLOW
     ========================================================= */
.flow__box {
  background: #fff;
  padding: 24px 20px;
}
.flow-step {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: center;
  padding-bottom: 28px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--dark);
  position: relative;
}
.flow-step--last {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.flow-step::after {
  content: '';
  display: block;
  width: 20px;
  height: 12px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: var(--dark);
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.flow-step--last::after {
  display: none;
}
.flow-step__icon {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
}
.flow-step__icon img {
  width: 80px;
  height: 80px;
}
.flow-step__num {
  color: var(--red);
  font-weight: 700;
  font-size: 16px;
  margin-right: 6px;
}
.flow-step__ttl {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.flow-step__txt {
  font-size: 13px;
  color: #555;
}

/* =========================================================
     VOICE
     ========================================================= */
.voice__wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.voice__track {
  flex: 1;
}
.voice-card {
  flex: 0 0 88%;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: none;
}
.voice-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.voice-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voice-card__body {
  padding: 16px;
}
.voice-card__cat {
  font-size: 11px;
  color: #999;
}
.voice-card__ttl {
  font-size: 16px;
  font-weight: 700;
  margin: 4px 0 10px;
}
.voice-card__txt {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}
.voice-card__person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 12px;
}
.voice-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ddd;
}

/* =========================================================
     FAQ
     ========================================================= */
.faq__list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid #d5d5d5;
}
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 34px 18px 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-family: inherit;
  color: var(--text);
}
.faq-item__mark {
  color: var(--dark);
  font-weight: 700;
}
.faq-item__mark--a {
  color: var(--red);
}
.faq-item__toggle {
  position: absolute;
  right: 4px;
  top: 20px;
  width: 16px;
  height: 16px;
}
.faq-item__toggle::before,
.faq-item__toggle::after {
  content: '';
  position: absolute;
  background: #666;
  transition: transform 0.2s;
}
.faq-item__toggle::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}
.faq-item__toggle::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}
.faq-item.is-open .faq-item__toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-item__a {
  display: none;
  padding: 0 0 20px;
  font-size: 14px;
}
.faq-item.is-open .faq-item__a {
  display: block;
}
.faq-item__a p {
  display: flex;
  gap: 8px;
}
.faq-item__a-txt {
  color: #555;
  margin-top: 8px;
  padding-left: 24px;
  display: block !important;
}

/* =========================================================
     FAQ CTA (相見積もり大歓迎)
     ========================================================= */
.faq-cta {
  position: relative;
  background: linear-gradient(135deg, var(--fc-card) 0%, var(--fc-bg) 100%);
  padding: 48px 0;
  overflow: hidden;
}
.faq-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.14) 50%,
    rgba(255, 255, 255, 0) 70%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: faqCtaShine 5s ease-in-out infinite;
  pointer-events: none;
}
.faq-cta.will-animate {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.faq-cta.will-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.faq-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.faq-cta__headline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.faq-cta__headline > span {
  white-space: nowrap;
}
.faq-cta__sep {
  opacity: 0.5;
  font-weight: 500;
  margin: 0 2px;
}
.faq-cta__accent {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  text-shadow: 0 0 10px rgba(191, 161, 91, 0.5);
  animation: faqCtaGlow 3s ease-in-out infinite;
}
@keyframes faqCtaGlow {
  0%, 85%, 100% { filter: brightness(1); }
  92% { filter: brightness(1.6) drop-shadow(0 0 6px rgba(191, 161, 91, 0.8)); }
}
@keyframes faqCtaShine {
  0% { left: -60%; }
  40% { left: 130%; }
  100% { left: 130%; }
}
.faq-cta__btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}
.faq-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 60px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s, filter 0.15s;
  animation: faqCtaPulseGlow 2.4s ease-in-out infinite;
}
.faq-cta__btn--form {
  animation-delay: 1.2s;
}
@keyframes faqCtaPulseGlow {
  0%, 100% { box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15), 0 0 0 6px rgba(255, 255, 255, 0.08); }
}
.faq-cta__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.faq-cta__btn--tel {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
}
.faq-cta__btn--form {
  background: linear-gradient(180deg, var(--red), var(--red-dark));
}
.faq-cta__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.faq-cta__btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}
.faq-cta__btn--form .faq-cta__btn-text {
  align-items: center;
}
.faq-cta__btn-num {
  font-size: 20px;
  font-weight: 900;
  font-feature-settings: 'tnum' 1;
}
.faq-cta__btn-label {
  font-size: 16px;
  font-weight: 900;
}
.faq-cta__btn-sub {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
}
@media (prefers-reduced-motion: reduce) {
  .faq-cta.will-animate {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .faq-cta::before,
  .faq-cta__accent,
  .faq-cta__btn {
    animation: none !important;
  }
  .faq-cta__btn {
    transition: none;
  }
}

/* =========================================================
     ACCESS
     ========================================================= */
.access__inner {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.access__map {
  background: #d5d5d5;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 18px;
}
.access__map iframe {
  width: 100%;
  height: 100%;
}
.access__logo {
  margin-bottom: 24px;
}
.access__logo img {
  width: 80%;
  max-width: 400px;
  margin: 0 auto;
}
.access__logo-mark {
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.02em;
  display: inline-block;
}
.access__logo-mark small {
  font-size: 14px;
  color: var(--dark);
  margin-left: 4px;
}
.access__logo-sub {
  display: block;
  font-size: 10px;
  color: #666;
  letter-spacing: 0.2em;
}
.access__list {
  border-top: 1px solid #e0e0e0;
}
.access__row {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  font-weight: 500;
}
.access__row dt {
  flex: 0 0 80px;
}
.access__row dd {
  flex: 1;
}
.access__row a {
  color: var(--dark);
}
.access__more {
  text-align: center;
  margin-top: 24px;
}

/* =========================================================
     CONTACT TEL
     ========================================================= */
.contact-tel {
  text-align: center;
  padding-top: 24px;
  padding-bottom: 32px;
}
.contact-tel__ttl {
  font-size: 18px;
  font-weight: 700;
  padding-block: 16px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 16px;
}
.contact-tel__num {
  font-size: 30px;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact-tel__icon {
  width: 26px;
}
.contact-tel__label {
  font-size: 15px;
  color: var(--dark);
}
.contact-tel__time {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
}

/* =========================================================
     CONTACT MAIL
     ========================================================= */
.contact-mail {
  padding-top: 0;
}
.contact-mail__ttl {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding-block: 16px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 24px;
}
.contact-mail__note {
  font-size: 12px;
  color: #666;
  margin-bottom: 24px;
}
.req {
  color: var(--red);
}
.form__group {
  margin-bottom: 18px;
}
.form__group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.form__group input,
.form__group textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 12px;
  font-size: 17px;
  font-family: inherit;
  background: #fafafa;
  margin-top: 6px;
}
.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
}
.form__group textarea {
  resize: vertical;
}
.form__agree {
  margin: 22px 0;
}
.form__agree input[type='checkbox'] {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  cursor: pointer;
}
.form__agree-txt {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}
.form__agree-txt a {
  color: var(--red);
  text-decoration: underline;
}
.form__submit {
  text-align: center;
  margin-top: 8px;
}
.contact-mail input[type='submit'] {
  background-color: var(--red);
  background-image: url('../img/v2/arrow.svg');
  background-size: 8px;
  background-position: right 32px center;
  background-repeat: no-repeat;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 0 60px;
  font-size: 17px;
  font-weight: 700;
  width: 80%;
  height: 56px;
  line-height: 56px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
  position: relative;
}
.contact-mail input[type='submit']:hover {
  background-color: var(--red-dark);
}

/* =========================================================
     SP FIXED BAR
     ========================================================= */
.sp-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  gap: 10px;
  background-color: #fff;
  padding: 8px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}
.sp-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  font-size: 3.8vw;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 4px;
}
.sp-bar__btn img {
  width: 12%;
  margin-inline: 2%;
}
.sp-bar__btn--tel {
  background: var(--gray-bg);
  color: var(--dark);
}
.sp-bar__btn--mail {
  background: var(--red);
  color: #fff;
}
.sp-bar__btn--mail img {
  filter: brightness(0) invert(1);
}

/* =========================================================
     SERVICE MODAL
     ========================================================= */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.service-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 8, 0.72);
}
.service-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  max-height: 86vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.service-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.service-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}
.service-modal__head {
  padding: 30px 28px 24px;
  background: linear-gradient(135deg, var(--fc-card) 0%, var(--fc-bg) 100%);
  border-radius: 14px 14px 0 0;
  text-align: center;
}
.service-modal__icon {
  width: 96px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-modal__icon img {
  max-width: 80px;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.service-modal__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 6px;
}
.service-modal__title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}
.service-modal__body {
  padding: 24px 28px 28px;
}
.service-modal__lead {
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.service-modal__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-modal__list li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text);
}
.service-modal__list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.service-modal__note {
  font-size: 12.5px;
  color: #888;
  border-top: 1px dashed var(--gray-line);
  padding-top: 14px;
  margin-bottom: 20px;
}
.service-modal__works-link {
  display: block;
  margin: -4px 0 20px;
}
.service-modal__works-thumbs {
  display: flex;
  gap: 6px;
  margin-bottom: 9px;
}
.service-modal__works-thumbs img {
  width: 33.333%;
  height: 62px;
  object-fit: cover;
  border-radius: 8px;
  transition: opacity 0.15s, transform 0.15s;
}
.service-modal__works-link:hover .service-modal__works-thumbs img {
  opacity: 0.82;
}
.service-modal__works-caption {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
}
.service-modal__works-caption span {
  font-size: 16px;
  line-height: 1;
}
.service-modal__actions {
  display: flex;
  flex-direction: column;
}
.service-modal__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  padding: 11px 14px;
  border-radius: 8px;
}
.service-modal__cta:hover {
  background: var(--red-dark);
}
.service-modal__cta-topic {
  font-size: 11.5px;
  font-weight: 500;
  opacity: 0.85;
}
.service-modal__cta-action {
  font-size: 15px;
  font-weight: 700;
}

/* =========================================================
     CASE MODAL（WORKSカードクリックで開く事例スライド）
     ========================================================= */
.case-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.case-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 8, 0.72);
}
.case-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.case-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}
.case-modal__close:hover {
  background: rgba(0, 0, 0, 0.55);
}
.case-modal__slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #000;
}
.case-modal__slides {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease;
}
.case-modal__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.case-modal__arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}
.case-modal__arrow--prev {
  left: 10px;
}
.case-modal__arrow--next {
  right: 10px;
}
.case-modal__dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.case-modal__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.case-modal__dot.is-active {
  background: #fff;
}
/* 上段：左＝ジャンル・店名／右＝エリア・坪数・費用 */
.case-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  /* 右上に絶対配置の閉じるボタン(32px)と重ならないよう右側に余白を確保 */
  padding: 20px 44px 18px 24px;
  border-bottom: 1px solid var(--gray-line);
}
.case-modal__head-left {
  min-width: 0;
}
.case-modal__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.case-modal__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}
.case-modal__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 0 0 auto;
}
.case-modal__meta-row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  font-size: 12.5px;
  white-space: nowrap;
}
.case-modal__meta-row dt {
  color: #888;
  font-weight: 500;
}
.case-modal__meta-row dd {
  color: var(--text);
  font-weight: 700;
}

/* 下段：CTA */
.case-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 18px 24px 24px;
}
.case-modal__cta {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  color: #fff;
  padding: 11px 14px;
  border-radius: 8px;
}
.case-modal__cta--tel {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
}
.case-modal__cta--form {
  background: linear-gradient(180deg, var(--red), var(--red-dark));
}
.case-modal__cta:hover {
  opacity: 0.9;
}
.case-modal__cta-label {
  font-size: 11.5px;
  font-weight: 500;
  opacity: 0.9;
}
.case-modal__cta-sub {
  font-size: 15px;
  font-weight: 700;
}

/* =========================================================
     TABLET  (>= 768px)
     ========================================================= */
@media (min-width: 768px) {
  body {
    font-size: 16px;
    padding-bottom: 0;
  }

  .section {
    padding: 70px 0;
  }
  .sp-only {
    display: none;
  }
  .pc-only {
    display: inline;
  }

  .sec-ttl {
    font-size: 30px;
    margin-bottom: 44px;
  }
  .sec-ttl--inline {
    text-align: left;
    display: flex;
    align-items: baseline;
    flex-direction: row-reverse;
    gap: 10px;
    width: fit-content;
  }
  .sec-ttl--inline .sec-ttl__en {
    margin-bottom: 0;
  }

  /* hero */
  .hero {
    background: url('images/main_bg.jpg') center/cover no-repeat;
    margin-bottom: 0;
  }
  .hero__inner {
    position: relative;
  }
  .hero__visual img {
    width: 100%;
    height: 409px;
    object-fit: cover;
  }
  .hero__sim-badge {
    flex-direction: row;
    bottom: 90px;
    left: calc(50% - 364px);
    width: 395px;
    height: 68px;
  }
  .hero__sim-badge-left,
  .hero__sim-badge-right {
    padding: 11px 12px;
    font-size: 13px;
  }
  .hero__cta {
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    padding: 16px 20px 20px;
    aspect-ratio: unset;
    width: 768px;
    margin: 0 auto;
  }
  .cta-btn {
    flex: 0 1 26%;
    height: 40px;
    margin-inline: 0;
  }
  .cta-btn__text strong {
    font-size: 17px;
  }
  .cta-btn__text small {
    font-size: 11px;
  }

  /* works */
  .work-card {
    flex: 0 0 calc((100% - 48px) / 4);
  }

  /* worries */
  .worries {
    padding-bottom: 40px;
    margin-bottom: 80px;
  }
  .worries::after {
    height: 80px;
    bottom: -80px;
  }
  .worries__list {
    width: fit-content;
    margin: 0 auto;
  }
  .worries__item {
    font-size: 17px;
    padding-right: 48px;
  }
  .worries__item br {
    display: none;
  }

  /* omakase */
  .omakase__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    display: flex;
  }
  .omakase__body {
    flex: 1;
  }
  .omakase__img {
    flex: 0 0 46%;
    margin-top: 0;
  }
  .omakase__ttl {
    font-size: 24px;
    text-align: left;
  }

  /* service */
  .service__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-card {
    padding: 34px 26px;
  }

  /* reason */
  .reason__list {
    gap: 70px;
  }
  .reason-item {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .reason-item__img {
    flex: 0 0 48%;
    overflow: hidden;
  }
  .reason-item__img img {
    height: 320px;
    object-fit: cover;
  }
  .reason-item__body {
    flex: 1;
    margin-top: 0;
  }
  .reason-item--reverse {
    flex-direction: row-reverse;
  }
  .reason-item--reverse .reason-item__body {
    text-align: left;
  }
  .reason-item__num {
    font-size: 80px;
  }
  .reason-item__ttl {
    font-size: 22px;
  }
  .reason-item__txt {
    font-size: 14px;
  }

  /* flow */
  .flow__box {
    padding: 40px 50px;
  }
  .flow-step {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  .flow-step::after {
    left: calc(50% - 10px);
  }

  /* voice */
  .voice-card {
    flex: 0 0 calc((100% - 48px) / 3);
  }
  .voice__wrap {
    gap: 16px;
  }

  /* faq */
  .faq__list {
    width: 728px;
    margin: 0 auto;
  }
  .faq-item__q {
    font-size: 16px;
  }
  .faq-item__a p {
    font-size: 16px;
  }

  /* faq cta */
  .faq-cta {
    padding: 56px 0;
  }
  .faq-cta__headline {
    font-size: 18px;
    margin-bottom: 28px;
  }
  .faq-cta__btns {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }
  .faq-cta__btn {
    flex: 0 1 320px;
  }

  /* access */
  .access__inner {
    flex-direction: row;
    gap: 40px;
  }
  .access__map {
    flex: 0 0 50%;
    height: 300px;
  }
  .access__info {
    flex: 1;
  }

  /* contact tel */
  .contact-tel__num {
    font-size: 40px;
  }

  /* sp bar hidden on pc */
  .sp-bar {
    display: none;
  }

  /* case modal：PC幅でも上・中・下の縦積みは維持し、横幅だけ広げる */
  .case-modal__panel {
    max-width: 560px;
  }
  .case-modal__slider {
    aspect-ratio: 16 / 10;
  }
}

/* =========================================================
     DESKTOP  (>= 960px)
     ========================================================= */
@media (min-width: 960px) {
  .container {
    padding: 0 30px;
  }
  .work-card__ttl {
    font-size: 16px;
  }

  .hero__visual img {
    height: 505px;
  }
  .hero__sim-badge {
    left: calc(50% - 450px);
    width: 448px;
    height: 76px;
    bottom: 118px;
  }
  .hero__sim-badge-left,
  .hero__sim-badge-right {
    padding: 14px 12px;
    font-size: 17px;
  }
  .hero__cta {
    width: 960px;
    padding: 20px 30px 28px;
    justify-content: flex-start;
    gap: 16px;
  }
  .hero__cta .cta-btn {
    flex: 0 1 24%;
    height: 56px;
  }

  /* cta band */
  .cta-band {
    background-image: url('../img/v2/contact_bg.jpg');
  }
  .cta-band__overlay {
    padding: 34px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
  }
  .cta-band__lead {
    font-size: 26px;
    margin-bottom: 0;
    text-align: left;
  }
  .cta-band__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cta-band__tel {
    font-size: 32px;
  }

  .reason-item__img {
    flex: 0 0 60%;
    overflow: hidden;
  }
  .reason-item__img img {
    height: auto;
    object-fit: contain;
  }

}

@media (min-width: 1200px) {
  .hero__visual img {
    height: 584px;
  }
  .hero__sim-badge {
    left: calc(50% - 520px);
    width: 515px;
    height: 86px;
    bottom: 134px;
  }
  .hero__sim-badge-left,
  .hero__sim-badge-right {
    padding: 16px 14px;
    font-size: 19px;
  }
  .hero__cta {
    width: 1100px;
    padding: 24px 30px 40px;
  }
}
