@font-face {
  font-family: 'はなぞめ';
  src: url('../fonts/hanazome.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   Reset / Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: calc(15 / 1366 * 100vw);
  line-height: 1.7;
  color: #333;
  background: #EBF4FF;
  overflow-x: hidden;
  zoom: 1;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   Layout helpers
   ============================================================ */
.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 calc(24 / 1366 * 100vw);
}

/* ============================================================
   Announce bar
   ============================================================ */
.announce-bar {
  background: linear-gradient(to right, #5db5e6 0%, #446898 100%);
  color: #fff;
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: clamp(14.67px, 1.152vw, 17.33px);
  font-weight: 700;
  letter-spacing: 0.155em;
  line-height: 1.4;
  height: clamp(40px, 3.43vw, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 calc(16 / 1366 * 100vw);
}

/* ============================================================
   Site Header
   ============================================================ */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* アンカーリンク到達時にスティッキーヘッダー分ずらす */
[id] {
  scroll-margin-top: clamp(100px, 11.36vw, 180px);
}

.site-header__inner {
  width: 100%;
  height: clamp(100px, 11.36vw, 180px);
  padding-left: clamp(32px, 4.61vw, 80px);
  padding-right: clamp(24px, 3.07vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  height: clamp(52px, 6.0vw, 100px);
  width: auto;
}

.site-nav ul {
  display: flex;
  gap: clamp(12px, 1.757vw, 28px);
  align-items: center;
}

.site-nav ul li a {
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: clamp(16px, 1.581vw, 24px);
  font-weight: 700;
  color: #3f495f;
  letter-spacing: 0.04em;
  line-height: 1.4;
  white-space: nowrap;
  transition: opacity .2s;
  display: block;
}


.site-nav__sp-only { display: none; }
.nav-sns { display: none; }
.sp-bottom-cta { display: none; }

/* Tel section */
.header-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4px, 0.44vw, 8px);
  flex-shrink: 0;
}

.header-tel__top {
  display: flex;
  align-items: center;
  gap: clamp(3px, 0.366vw, 6px);
}

.header-tel__icon {
  width: clamp(26px, 2.783vw, 44px);
  height: clamp(26px, 2.783vw, 44px);
  flex-shrink: 0;
}

.header-tel__num {
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: clamp(24px, 2.684vw, 42.67px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  background: linear-gradient(to bottom, #446898 0%, #5db5e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  transition: opacity .2s;
}


.header-tel__line {
  width: 100%;
  height: clamp(2px, 0.22vw, 4px);
  background: linear-gradient(to right, #5db5e6 0%, #446898 100%);
}

.header-tel__sub {
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: clamp(18.67px, 2.020vw, 32px);
  font-weight: 700;
  letter-spacing: 0.073em;
  line-height: 1.4;
  text-align: center;
  background: linear-gradient(to bottom, #446898 0%, #5db5e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* SP badge: hidden on PC */
.header-sp-badge { display: none; }

/* ============================================================
   Fixed side CTAs
   ============================================================ */
.side-cta-wrap {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.15vw;
}

.side-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 9.37vw;
  padding: 0.88vw;
  font-size: 1.360vw;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  border-radius: calc(8 / 1366 * 100vw) 0 0 calc(8 / 1366 * 100vw);
  writing-mode: horizontal-tb;
}

.side-cta small {
  font-size: 0.973vw;
  font-weight: 400;
  background: rgba(0,0,0,.25);
  padding: 0.15vw 0.59vw;
  border-radius: calc(3 / 1366 * 100vw);
  margin-bottom: 0.44vw;
  display: block;
}

.side-cta--line {
  background: #06C755;
}

.side-cta--inquiry {
  background: #FF8C00;
}

/* ============================================================
   Hamburger button
   ============================================================ */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: calc(28 / 1366 * 100vw);
  height: calc(20 / 1366 * 100vw);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: calc(2.5 / 375.2 * 100vw);
  background: #555;
  transition: transform .25s, opacity .25s;
}

.hamburger-btn.is-active span:nth-child(1) {
  transform: translateY(calc(9 / 1366 * 100vw)) rotate(45deg);
}
.hamburger-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.is-active span:nth-child(3) {
  transform: translateY(calc(-9 / 1366 * 100vw)) rotate(-45deg);
}

/* ============================================================
   Hero
   ============================================================ */
.sec-hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #fff;
}

.sec-hero picture {
  position: relative;
  z-index: 15;
  display: block;
}

.hero-fv-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.hero-side-cta {
  position: fixed;
  right: 0;
  top: 80%;
  transform: translateY(-50%) translateX(12px);
  display: flex;
  flex-direction: column;
  gap: calc(13 / 1366 * 100vw);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease, transform .5s ease;
}

.hero-side-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.hero-side-cta__link {
  transition: opacity .2s;
}


.hero-side-cta__link img {
  width: calc(239 / 1366 * 100vw);
  height: auto;
  display: block;
}

/* ============================================================
   Banner section
   ============================================================ */
.sec-banner {
  position: relative;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: calc(63 / 1366 * 100vw);
  padding-bottom: calc(137 / 1366 * 100vw);
  overflow: hidden;
}

.banner-10off {
  width: calc(979 / 1366 * 100vw);
  height: auto;
  display: block;
  transition: opacity .2s;
}


/* CTA card — gradient border via background + padding */
.cta-card {
  margin-top: calc(55 / 1366 * 100vw);
  width: calc(978.7 / 1366 * 100vw);
  background: linear-gradient(to right, #5db5e6, #446898);
  border-radius: calc(48 / 1366 * 100vw);
  padding: calc(6 / 1366 * 100vw);
  box-shadow: calc(5 / 1366 * 100vw) calc(19 / 1366 * 100vw) calc(10 / 1366 * 100vw) rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.cta-card__inner {
  border-radius: calc(42 / 1366 * 100vw);
  overflow: hidden;
}

.cta-card__header {
  background: linear-gradient(to right, #5db5e6, #446898);
  padding: calc(25 / 1366 * 100vw) 0 calc(22 / 1366 * 100vw);
  text-align: center;
}

.cta-card__lead {
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: calc(34.4 / 1366 * 100vw);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.128em;
  line-height: 1.32;
  text-shadow: calc(2 / 1366 * 100vw) calc(2 / 1366 * 100vw) 0 rgba(0, 0, 0, 0.4);
}

.cta-card__lead--sp { display: none; }

.cta-card__body {
  background: #fff;
  padding: calc(38 / 1366 * 100vw) 0;
  display: flex;
  align-items: end;
  gap: calc(15 / 1366 * 100vw);
  justify-content: center;
}

/* Badges (left column) */
.cta-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(10 / 1366 * 100vw);
}

.cta-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: calc(4 / 1366 * 100vw) solid #4a77a6;
  border-radius: calc(43 / 1366 * 100vw);
  padding: calc(39 / 1366 * 100vw) calc(25 / 1366 * 100vw) calc(25 / 1366 * 100vw);
}

.cta-badge__icon {
  width: calc(97 / 1366 * 100vw);
  height: auto;
  display: block;
}

.cta-badge__icon--calc {
  width: calc(97 / 1366 * 100vw);
}

.cta-badge__text {
  margin-top: calc(17 / 1366 * 100vw);
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: calc(22.53 / 1366 * 100vw);
  font-weight: 700;
  color: #000;
  letter-spacing: 0.128em;
  line-height: 1.22;
}

/* Contact (right column) */
.cta-contact {
  display: flex;
  flex-direction: column;
  gap: calc(18 / 1366 * 100vw);
}

.cta-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(18 / 1366 * 100vw);
}

.cta-tel__num-group {
  display: inline-flex;
  flex-direction: column;
  gap: calc(6 / 1366 * 100vw);
}

.cta-tel__row {
  display: flex;
  align-items: center;
  gap: calc(9 / 1366 * 100vw);
}

.cta-tel__icon {
  width: calc(46.3 / 1366 * 100vw);
  height: calc(46.3 / 1366 * 100vw);
  flex-shrink: 0;
}

.cta-tel__num {
  font-family: 'Source Han Sans JP', 'Noto Sans JP', sans-serif;
  font-size: calc(48.8 / 1366 * 100vw);
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1.4;
  background: #085aaf;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  transition: opacity .2s;
}


.cta-tel__line {
  display: flex;
  align-items: center;
  width: 100%;
  gap: calc(12 / 1366 * 100vw);
}

.cta-tel__line::before,
.cta-tel__line::after {
  content: '';
  flex: 1;
  height: calc(2 / 1366 * 100vw);
  background: #085aaf;
}

.cta-tel__sub {
  text-align: center;
  font-family: 'Source Han Sans JP', 'Noto Sans JP', sans-serif;
  font-size: calc(19.6 / 1366 * 100vw);
  font-weight: 700;
  letter-spacing: 0.073em;
  line-height: 1.4;
  white-space: nowrap;
  background: #085aaf;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-tel__alt {
  display: flex;
  align-items: center;
  gap: calc(6 / 1366 * 100vw);
  padding: calc(11 / 1366 * 100vw) calc(14 / 1366 * 100vw);
  border: 1px solid #4a77a6;
  border-radius: calc(8 / 1366 * 100vw);
}

.cta-tel__alt-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(11.46 / 1366 * 100vw);
  font-weight: 700;
  letter-spacing: 0.128em;
  line-height: 1.22;
  color: #000000;
  white-space: nowrap;
}

.cta-tel__alt-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(21.06 / 1366 * 100vw);
  font-weight: 700;
  letter-spacing: 0.068em;
  line-height: 1.22;
  color: #085aaf;
  white-space: nowrap;
}

.cta-btns {
  display: flex;
  gap: calc(6 / 1366 * 100vw);
  justify-content: center;
}

.cta-btn {
  transition: opacity .2s;
}


.cta-btn img {
  width: calc(223.8 / 1366 * 100vw);
  height: auto;
  display: block;
}

/* Wave */
.banner-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   Section title / lead
   ============================================================ */
.sec-title {
  text-align: center;
  font-size: clamp(29.33px, 4vw, 40px);
  font-weight: 900;
  color: #0D1F3C;
  line-height: 1.4;
  margin-bottom: calc(12 / 1366 * 100vw);
}

.sec-title--deco {
  font-size: clamp(26.67px, 4vw, 37.33px);
}

.sec-title--deco span {
  font-family: 'Mochiy Pop P One', 'Noto Sans JP', sans-serif;
  color: #1976D2;
  font-size: 1.15em;
}

.sec-title span {
  font-family: 'Mochiy Pop P One', 'Noto Sans JP', sans-serif;
  color: #1976D2;
}

.sec-lead {
  text-align: center;
  font-size: calc(18.67 / 1366 * 100vw);
  color: #555;
  margin-bottom: calc(36 / 1366 * 100vw);
}

/* ============================================================
   Services
   ============================================================ */
.sec-services {
  background: #f1f9ff;
  padding-top: calc(75 / 1366 * 100vw);
  padding-bottom: calc(160 / 1366 * 100vw);
}

/* Section header */
.sv-head {
  position: relative;
  width: 100%;
  text-align: center;
}

.sv-head__deco {
  position: absolute;
  top: 37%;
  transform: translateY(-50%);
  height: auto;
  display: block;
}

.sv-head__deco--left {
  left: calc(46 / 1366 * 100vw);
  width: calc(204 / 1366 * 100vw);
}

.sv-head__deco--right {
  right: calc(35 / 1366 * 100vw);
  width: calc(196 / 1366 * 100vw);
}

.sv-head__title {
  font-family: 'Mochiy Pop P One', 'Noto Sans JP', sans-serif;
  letter-spacing: 0.128em;
  line-height: 1.32;
  color: #000;
  font-weight: normal;
}

.sv-head__line1 {
  display: block;
  font-size: calc(67.73 / 1366 * 100vw);
}

.sv-head__line2 {
  display: block;
  font-size: calc(82.8 / 1366 * 100vw);
}

.sv-head__yellow {
  color: #f6c30d;
}

.sv-head__chi {
  position: relative;
  display: inline-block;
}

.sv-head__emphasis {
  position: absolute;
  top: 15px;
  left: -25px;
  transform: translate(-40%, -55%);
  width: calc(48.7 / 1366 * 100vw);
  height: auto;
  display: block;
}

.sv-head__desc {
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: calc(23.33 / 1366 * 100vw);
  color: #000;
  letter-spacing: 0.065em;
  line-height: 1.48;
  text-align: center;
  margin-top: calc(73 / 1366 * 100vw);
}

.sv-head__desc--sp { display: none; }

.sv-cards {
  display: flex;
  gap: calc(41 / 1366 * 100vw);
  padding: 0 calc(107 / 1366 * 100vw);
  margin-top: calc(122 / 1366 * 100vw);
  width: 100%;
}

.sv-card {
  flex: 1;
  border-radius: calc(43 / 1366 * 100vw);
  padding: calc(6 / 1366 * 100vw);
  box-shadow: calc(5 / 1366 * 100vw) calc(19 / 1366 * 100vw) calc(10 / 1366 * 100vw) rgba(0, 0, 0, 0.15);
}

.sv-card--blue { background: #fff; }
.sv-card--green { background: #fff; }

.sv-card__inner {
  background: #fff;
  border-radius: calc(37 / 1366 * 100vw);
  overflow: hidden;
  padding: calc(24 / 1366 * 100vw) calc(12 / 1366 * 100vw) calc(37 / 1366 * 100vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
}

.sv-card__img {
  width: calc(274.3 / 1366 * 100vw);
  height: calc(194 / 1366 * 100vw);
  object-fit: cover;
  border-radius: calc(20 / 1366 * 100vw);
  display: block;
}

.sv-card__title {
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: calc(29 / 1366 * 100vw);
  font-weight: 700;
  color: #000;
  letter-spacing: 0.102em;
  line-height: 1.32;
  margin-top: calc(46 / 1366 * 100vw);
  text-align: center;
}

.sv-card__list {
  display: flex;
  flex-direction: column;
  gap: calc(11 / 1366 * 100vw);
  margin-top: calc(34 / 1366 * 100vw);
  padding: 0 calc(12 / 1366 * 100vw);
  width: 100%;
  text-align: left;
}

.sv-card__list li {
  display: flex;
  align-items: center;
  gap: calc(7 / 1366 * 100vw);
  font-size: calc(18.53 / 1366 * 100vw);
  font-weight: 700;
  color: #000;
  letter-spacing: 0.065em;
  line-height: 1.22;
}

.sv-card__check {
  width: calc(31.4 / 1366 * 100vw);
  height: auto;
  flex-shrink: 0;
  display: block;
}

.sv-card__btn {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(241.2 / 1366 * 100vw);
  height: calc(52.3 / 1366 * 100vw);
  margin-top: calc(34 / 1366 * 100vw);
  border: calc(3 / 1366 * 100vw) solid #000;
  border-radius: 9999px;
  font-family: Arial, sans-serif;
  font-size: calc(18.67 / 1366 * 100vw);
  font-weight: 700;
  color: #000;
  letter-spacing: 0;
  line-height: 1.4;
  background: #fff;
  transition: color .2s, border-color .2s;
}

.sv-card__btn::after {
  content: '';
  position: absolute;
  inset: calc(-3 / 1366 * 100vw);
  border-radius: 9999px;
  opacity: 0;
  z-index: -1;
  transition: opacity .2s;
}

.sv-card--blue .sv-card__btn::after {
  background: #4a77a6;
}

.sv-card--green .sv-card__btn::after {
  background: #4f9a65;
}


/* Pricing table (inside .sec-services) */
.price-tbl {
  margin-top: calc(130 / 1366 * 100vw);
  margin-left: calc(165 / 1366 * 100vw);
  margin-right: calc(165 / 1366 * 100vw);
  border-radius: calc(48 / 1366 * 100vw);
  box-shadow: calc(5 / 1366 * 100vw) calc(19 / 1366 * 100vw) calc(10 / 1366 * 100vw) rgba(0, 0, 0, 0.15);
  overflow: hidden;
  text-align: center;
}

.price-tbl__hd {
  background: #4a77a6;
  padding: calc(46 / 1366 * 100vw) 0 calc(32 / 1366 * 100vw);
}

.price-tbl__title {
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: calc(37.6 / 1366 * 100vw);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.102em;
  line-height: 1.32;
}

.price-tbl__body {
  background: #a2daff;
  padding: calc(34 / 1366 * 100vw) calc(105 / 1366 * 100vw) calc(52 / 1366 * 100vw);
}

.price-tbl__grid--4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(8 / 1366 * 100vw) calc(12 / 1366 * 100vw);
}

.price-tbl__grid--2col {
  display: none;
}

.price-tbl__cell {
  white-space: nowrap;
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-weight: 700;
  letter-spacing: 0.065em;
  line-height: 1.22;
  display: flex;
  flex-direction: column;
  gap: calc(5 / 1366 * 100vw);
  align-items: center;
  justify-content: center;
  padding: calc(16 / 1366 * 100vw) 0;
}

.price-tbl__cell--hd {
  background: #3a92ca;
  font-size: calc(18.53 / 1366 * 100vw);
  color: #fff;
}

.price-tbl__cell--data {
  background: #fff;
  font-size: calc(22.53 / 1366 * 100vw);
  color: #000;
}

/* price-tbl color modifiers */
.price-tbl--isou .price-tbl__hd  { background: #4a77a6; }
.price-tbl--isou .price-tbl__body { background: #a2daff20; }
.price-tbl--isou .price-tbl__cell--hd { background: #3a92ca; }

.price-tbl--house {
  margin-top: calc(118 / 1366 * 100vw);
}
.price-tbl--house .price-tbl__cell {
  white-space: normal;
  padding: calc(8.7 / 1366 * 100vw) 0;
}
.price-tbl--house .price-tbl__hd  { background: #4f9a65; }
.price-tbl--house .price-tbl__body { background: #73d89013; }
.price-tbl--house .price-tbl__cell--hd {
  background: #57bd74;
  padding: calc(16 / 1366 * 100vw) 0;
}
.price-tbl--house .price-tbl__cell--option {
  font-size: calc(17.2 / 1366 * 100vw);
}
.price-tbl--house .price-tbl__cell small {
  font-size: calc(13.2 / 1366 * 100vw);
  display: block;
}
.price-tbl__cell--empty {
  background: transparent;
}
.price-tbl--house .price-tbl__cell--data {
  height: calc(59.48 / 1366 * 100vw);
}
.price-tbl__note {
  margin-top: calc(14 / 1366 * 100vw);
  padding: calc(22 / 1366 * 100vw) calc(34 / 1366 * 100vw) calc(28 / 1366 * 100vw);
  background: #ffffff;
  text-align: left;
}
.price-tbl__note__title {
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: calc(24 / 1366 * 100vw);
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.065em;
  line-height: 1.22;
}
.price-tbl__note__text {
  margin-top: calc(17 / 1366 * 100vw);
  padding-left: calc(16 / 1366 * 100vw);
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: calc(21.07 / 1366 * 100vw);
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.065em;
  line-height: 1.22;
}
.price-tbl__note__text--sp { display: none; }

/* price-tbl--ac */
.price-tbl--ac {
  margin-top: calc(74 / 1366 * 100vw);
}
.price-tbl--ac .price-tbl__hd  { background: #4f9a65; }
.price-tbl--ac .price-tbl__body { background: #73d89013; }
.price-tbl--ac .price-tbl__cell {
  white-space: normal;
  padding: calc(5.51 / 1366 * 100vw) 0;
}
.price-tbl--ac .price-tbl__cell--hd {
  background: #57bd74;
  padding: calc(16 / 1366 * 100vw) 0;
}
.price-tbl--ac .price-tbl__cell--actype {
  font-size: calc(19.87 / 1366 * 100vw);
}
.price-tbl--ac .price-tbl__cell--data {
  height: calc(59.48 / 1366 * 100vw);
}
.price-tbl--ac .price-tbl__grid--3col {
  width: calc(703.5 / 1366 * 100vw);
  margin-left: auto;
  margin-right: auto;
}
.price-tbl--ac .price-tbl__note {
  max-width: calc(703.5 / 1366 * 100vw);
  margin-left: auto;
  margin-right: auto;
}

.price-tbl__grid--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(8 / 1366 * 100vw) calc(12 / 1366 * 100vw);
}

.price-tbl__note__worktime {
  display: none;
}

.sec-services__cta {
  margin-top: calc(89 / 1366 * 100vw);
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Pricing
   ============================================================ */
.sec-pricing {
  padding: calc(40 / 1366 * 100vw) 0;
  background: #EBF4FF;
}

.price-box {
  border-radius: calc(16 / 1366 * 100vw);
  overflow: hidden;
  box-shadow: 0 calc(4 / 1366 * 100vw) calc(20 / 1366 * 100vw) rgba(0,0,0,.08);
}

.price-box--blue { background: #E3F2FD; }
.price-box--green { background: #E8F5E9; }

.price-box__title {
  text-align: center;
  font-size: calc(26.67 / 1366 * 100vw);
  font-weight: 700;
  color: #fff;
  padding: calc(16 / 1366 * 100vw) calc(20 / 1366 * 100vw);
}

.price-box--blue .price-box__title { background: #1976D2; }
.price-box--green .price-box__title { background: #388E3C; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.price-table th {
  padding: calc(12 / 1366 * 100vw) calc(16 / 1366 * 100vw);
  font-size: calc(18.67 / 1366 * 100vw);
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.price-table--blue th { background: #64B5F6; }
.price-table--green th { background: #66BB6A; }

.price-table td {
  padding: calc(14 / 1366 * 100vw) calc(16 / 1366 * 100vw);
  font-size: calc(18.67 / 1366 * 100vw);
  text-align: center;
  border-bottom: calc(1 / 1366 * 100vw) solid #e0e0e0;
  color: #333;
}

.price-table tbody tr:last-child td { border-bottom: none; }

.price-table tbody tr:nth-child(even) td { background: #F5F5F5; }

.price-table small {
  font-size: calc(14.67 / 1366 * 100vw);
  color: #666;
  display: block;
}

.price-note {
  background: #fff;
  padding: calc(16 / 1366 * 100vw) calc(20 / 1366 * 100vw);
  font-size: calc(17.33 / 1366 * 100vw);
  color: #444;
  line-height: 1.8;
  border-top: calc(1 / 1366 * 100vw) solid #e0e0e0;
}

/* ============================================================
   Basic services (inside .sec-services)
   ============================================================ */
.basic-sv {
  margin-top: calc(185 / 1366 * 100vw);
  text-align: center;
}

.basic-sv__title {
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: calc(46.27 / 1366 * 100vw);
  font-weight: 700;
  color: #000;
  letter-spacing: 0.065em;
  line-height: 1.22;
}

.basic-sv__grid {
  display: grid;
  grid-template-columns: repeat(3, calc(333 / 1366 * 100vw));
  column-gap: calc(58 / 1366 * 100vw);
  row-gap: calc(93 / 1366 * 100vw);
  width: calc(1115 / 1366 * 100vw);
  margin-top: calc(97 / 1366 * 100vw);
  margin-left: auto;
  margin-right: auto;
}

.basic-sv__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.basic-sv__img-wrap {
  width: calc(333 / 1366 * 100vw);
  height: calc(218.4 / 1366 * 100vw);
  border-radius: calc(28 / 1366 * 100vw);
  overflow: hidden;
  flex-shrink: 0;
}

.basic-sv__img {
  width: calc(333 / 1366 * 100vw);
  height: calc(218.4 / 1366 * 100vw);
  object-fit: cover;
  border-radius: calc(28 / 1366 * 100vw);
  display: block;
  flex-shrink: 0;
}

.basic-sv__item-title {
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: calc(30.53 / 1366 * 100vw);
  font-weight: 700;
  color: #000;
  letter-spacing: 0.065em;
  line-height: 1.22;
  margin-top: calc(44 / 1366 * 100vw);
  text-align: center;
}

.basic-sv__item-desc {
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: calc(19.73 / 1366 * 100vw);
  letter-spacing: 0.065em;
  line-height: 1.4;
  margin-top: calc(24 / 1366 * 100vw);
  text-align: left;
  width: 100%;
}

/* ============================================================
   Special cleaning (inside .sec-services)
   ============================================================ */
.special-sv {
  margin-top: calc(118 / 1366 * 100vw);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.special-sv__inner {
  display: grid;
  grid-template-columns: auto calc(431.9 / 1366 * 100vw);
  column-gap: calc(50 / 1366 * 100vw);
  align-items: start;
  justify-content: center;
}

.special-sv__bubble {
  grid-column: 1;
  grid-row: 1;
  width: calc(317.2 / 1366 * 100vw);
  display: block;
}

.special-sv__heading {
  grid-column: 1;
  grid-row: 2;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  letter-spacing: 0.128em;
  line-height: 1.32;
  text-align: left;
}

.special-sv__heading--blue {
  color: #25519e;
  font-size: calc(66.4 / 1366 * 100vw);
}

.special-sv__heading--black {
  color: #000000;
  font-size: calc(50.8 / 1366 * 100vw);
}

.special-sv__img {
  grid-column: 2;
  grid-row: 1 / 4;
  width: calc(431.9 / 1366 * 100vw);
  height: calc(314.7 / 1366 * 100vw);
  object-fit: cover;
  border-radius: calc(20 / 1366 * 100vw);
  display: block;
  align-self: start;
}

.special-sv__desc {
  grid-column: 1;
  grid-row: 3;
  margin-top: calc(26 / 1366 * 100vw);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(21.47 / 1366 * 100vw);
  font-weight: normal;
  color: #000000;
  letter-spacing: 0.065em;
  line-height: 1.4;
  text-align: left;
}

/* ============================================================
   Scene card (below .special-sv__inner)
   ============================================================ */
.scene-card {
  margin-top: calc(59 / 1366 * 100vw);
  width: fit-content;
  background: #ffffff;
  border-radius: calc(24 / 1366 * 100vw);
  box-shadow: calc(5 / 1366 * 100vw) calc(19 / 1366 * 100vw) calc(10 / 1366 * 100vw) rgba(0, 0, 0, 0.15);
}

.scene-card__inner {
  padding: calc(30 / 1366 * 100vw) calc(55 / 1366 * 100vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: calc(40 / 1366 * 100vw);
}

.scene-card__text-wrapper {
  display: flex;
  align-items: center;
}

.scene-card__text-deco {
  display: none;
}

.scene-card__text {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(27.3 / 1366 * 100vw);
  color: #000000;
  font-weight: bold;
  letter-spacing: 0.103em;
  line-height: 1.4;
}

.scene-list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: calc(15 / 1366 * 100vw);
}

.scene-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #b4cbd4;
  border-radius: calc(16 / 1366 * 100vw);
  padding: calc(15 / 1366 * 100vw) calc(30 / 1366 * 100vw);
  gap: calc(18 / 1366 * 100vw);
}

.scene-list__item img {
  display: block;
}

.scene-list__item:nth-child(1) img {
  width: calc(47.9 / 1366 * 100vw);
}

.scene-list__item:nth-child(2) img {
  width: calc(59.9 / 1366 * 100vw);
}

.scene-list__item:nth-child(3) img {
  width: calc(61.7 / 1366 * 100vw);
}

.scene-list__item p {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(19.1 / 1366 * 100vw);
  color: #000000;
  font-weight: bold;
  letter-spacing: 0.103em;
  line-height: 1.4;
}

/* ============================================================
   Trust reasons
   ============================================================ */
.sec-trust {
  background: #f1f9ff;
}

.trust-hd {
  position: relative;
  display: flex;
  justify-content: center;
}

.trust-hd__bg {
  width: 100vw;
  height: auto;
  display: block;
}

.trust-hd__title {
  position: absolute;
  top: calc(46 / 1366 * 100vw);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: 'Mochiy Pop P One', sans-serif;
  font-weight: normal;
  line-height: 1.32;
  white-space: nowrap;
  filter: drop-shadow(0 0 calc(15 / 1366 * 100vw) rgba(0,0,0,0.4))
          drop-shadow(0 0 calc(30 / 1366 * 100vw) rgba(0,0,0,0));
}

.trust-hd__tokushima {
  font-size: calc(84.4 / 1366 * 100vw);
  background: linear-gradient(to bottom, #ffde59, #fff8d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.048em;
}

.trust-hd__rest {
  font-size: calc(62.4 / 1366 * 100vw);
  color: #ffffff;
  letter-spacing: 0.128em;
}

.trust-tag {
  display: inline-block;
  padding: calc(8 / 1366 * 100vw) calc(28 / 1366 * 100vw);
  background: #ffffff;
  border: calc(4 / 1366 * 100vw) solid #4a77a6;
  border-radius: 9999px;
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: calc(22.13 / 1366 * 100vw);
  color: #4a77a6;
  font-weight: normal;
  letter-spacing: 0.128em;
  line-height: 1.32;
}

/* trust-reason--1 */
.trust-reason--1 {
  margin-top: calc(165 / 1366 * 100vw);
  padding: 0 calc(140 / 1366 * 100vw);
}

.trust-reason__row {
  display: flex;
  align-items: center;
  gap: calc(48 / 1366 * 100vw);
}

.trust-reason__photo {
  width: calc(468.7 / 1366 * 100vw);
  height: calc(367.1 / 1366 * 100vw);
  border-radius: calc(20 / 1366 * 100vw);
  object-fit: cover;
  flex-shrink: 0;
}

.trust-reason__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trust-reason__title {
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: calc(38.13 / 1366 * 100vw);
  font-weight: normal;
  color: #000000;
  letter-spacing: 0.128em;
  line-height: 1.32;
  margin-top: calc(29 / 1366 * 100vw);
}

.trust-reason--1 .trust-reason__hl {
  color: #ff914d;
  font-weight: normal;
}

.trust-reason__body {
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: calc(21.47 / 1366 * 100vw);
  color: #000000;
  font-weight: normal;
  letter-spacing: 0.065em;
  line-height: 1.48;
  margin-top: calc(29 / 1366 * 100vw);
}

.trust-reason__body--sp { display: none; }

/* trust-reason--2 */
.trust-reason--2 {
  margin-top: calc(120 / 1366 * 100vw);
  padding: 0 calc(140 / 1366 * 100vw);
}

.trust-reason--2 .trust-reason__hl {
  color: #ff914d;
  font-weight: normal;
}

/* trust-reason--3 */
.trust-reason--3 {
  margin-top: calc(129 / 1366 * 100vw);
  padding: 0 calc(140 / 1366 * 100vw);
}

.trust-reason--3 .trust-reason__hl {
  color: #ff914d;
  font-weight: normal;
}

.trust-reason__heading {
  font-size: clamp(26.67px, 4vw, 37.33px);
  font-weight: 700;
  color: #0D1F3C;
  margin-bottom: calc(24 / 1366 * 100vw);
  line-height: 1.4;
}

.trust-reason__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(48 / 1366 * 100vw);
  align-items: center;
  margin-top: calc(16 / 1366 * 100vw);
}

.trust-reason__img {
  border-radius: calc(12 / 1366 * 100vw);
  overflow: hidden;
  box-shadow: 0 calc(4 / 1366 * 100vw) calc(20 / 1366 * 100vw) rgba(0,0,0,.12);
}

.trust-reason__img img {
  width: 100%;
  height: calc(280 / 1366 * 100vw);
  object-fit: cover;
}

.trust-reason__text h3 {
  font-size: clamp(24px, 3.333vw, 32px);
  font-weight: 700;
  color: #1976D2;
  margin-bottom: calc(16 / 1366 * 100vw);
  line-height: 1.4;
}

.trust-reason__text p {
  font-size: calc(18.67 / 1366 * 100vw);
  color: #444;
  line-height: 1.9;
}

.trust-reason__hl {
  color: #1976D2;
  font-weight: 700;
}

.trust-reason__bold {
  font-weight: 700;
  color: #0D1F3C;
  margin-top: calc(16 / 1366 * 100vw);
}

/* Compare section */
.trust-compare {
  margin-top: calc(120 / 1366 * 100vw);
  padding: 0 calc(172 / 1366 * 100vw);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-compare__lead {
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: calc(33.33 / 1366 * 100vw);
  color: #000000;
  font-weight: normal;
  letter-spacing: 0.128em;
  line-height: 1.32;
  text-align: center;
}

.trust-compare__lead--sp { display: none; }

.trust-compare__tables {
  display: flex;
  gap: calc(31 / 1366 * 100vw);
  margin-top: calc(83 / 1366 * 100vw);
  align-items: stretch;
  width: 100%;
}

.compare-tbl {
  flex: 1;
  border-width: calc(4 / 1366 * 100vw);
  border-style: solid;
  display: flex;
  flex-direction: column;
}

.compare-tbl--other { border-color: #818988; }
.compare-tbl--us    { border-color: #3a92ca; }

.compare-tbl__head {
  padding: calc(24 / 1366 * 100vw) 0 calc(30 / 1366 * 100vw);
  text-align: center;
}

.compare-tbl--other .compare-tbl__head { background: #818988; }
.compare-tbl--us    .compare-tbl__head { background: #3a92ca; }

.compare-tbl__title {
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: calc(34.53 / 1366 * 100vw);
  color: #ffffff;
  font-weight: normal;
  letter-spacing: 0.128em;
  line-height: 1.32;
  filter: drop-shadow(0 0 calc(15 / 1366 * 100vw) rgba(0,0,0,0.4))
          drop-shadow(0 0 calc(30 / 1366 * 100vw) rgba(0,0,0,0));
}

.compare-tbl__body {
  padding: calc(29 / 1366 * 100vw) calc(41 / 1366 * 100vw) calc(27 / 1366 * 100vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  position: relative;
}

.compare-tbl__top {
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: calc(24 / 1366 * 100vw);
  color: #000000;
  font-weight: normal;
  letter-spacing: 0.128em;
  line-height: 1.32;
  text-align: center;
}

.compare-tbl__arrow {
  width: calc(118.9 / 1366 * 100vw);
  margin-top: calc(17 / 1366 * 100vw);
}

.compare-tbl__mid {
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: calc(24 / 1366 * 100vw);
  color: #000000;
  font-weight: normal;
  letter-spacing: 0.128em;
  line-height: 1.32;
  text-align: left;
  margin-top: calc(17 / 1366 * 100vw);
}

.compare-tbl__bottom {
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: calc(29.2 / 1366 * 100vw);
  color: #000000;
  font-weight: normal;
  letter-spacing: 0.128em;
  line-height: 1.32;
  text-align: center;
  margin-top: calc(29 / 1366 * 100vw);
}

.compare-tbl__money {
  position: absolute;
  width: calc(82.6 / 1366 * 100vw);
  bottom: calc(15 / 1366 * 100vw);
  right: calc(30 / 1366 * 100vw);
}

.compare-tbl__all-in {
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: calc(35.2 / 1366 * 100vw);
  color: #ff914d;
  font-weight: normal;
  letter-spacing: 0.128em;
  line-height: 1.32;
  text-align: center;
}

.compare-tbl__eq {
  display: inline-block;
  writing-mode: vertical-rl;
}

.compare-tbl__equal-text {
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: calc(28.67 / 1366 * 100vw);
  color: #000000;
  font-weight: normal;
  letter-spacing: 0.128em;
  line-height: 1.32;
  text-align: center;
  margin-top: calc(38 / 1366 * 100vw);
}

.compare-tbl__person {
  position: absolute;
  width: calc(228.8 / 1366 * 100vw);
  bottom: calc(-48 / 1366 * 100vw);
  right: calc(-111 / 1366 * 100vw);
}

/* Trust urgency */
/* 相談促進 */
.trust-urgency {
  margin-top: calc(179 / 1366 * 100vw);
  padding: calc(113 / 1366 * 100vw) calc(250 / 1366 * 100vw) calc(101 / 1366 * 100vw);
  background-image: url('../../img/procrastinate.png');
  background-size: cover;
  background-position: top;
  text-align: center;
}

.trust-urgency__title {
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: calc(44.27 / 1366 * 100vw);
  color: #ffffff;
  font-weight: normal;
  letter-spacing: 0.128em;
  line-height: 1.32;
}

.trust-urgency__title--sp { display: none; }

.trust-urgency__body {
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: calc(24.93 / 1366 * 100vw);
  color: #ffffff;
  font-weight: normal;
  letter-spacing: 0.065em;
  line-height: 1.48;
  text-align: left;
  margin-top: calc(40 / 1366 * 100vw);
  padding: 0 calc(10 / 1366 * 100vw) 0;
}

.trust-urgency__body--sp { display: none; }

/* ============================================================
   Case studies
   ============================================================ */
/* ============================================================
   Cases
   ============================================================ */
.sec-cases {
  padding: calc(144 / 1366 * 100vw) 0;
  background-color: #ffffff;
  background-image:
    radial-gradient(circle, #dedede 8px, transparent 8px),
    radial-gradient(circle, #dedede 8px, transparent 8px);
  background-size: 168px 168px;
  background-position: 0 -42px, 84px 42px;
  text-align: center;
}

.cases-title {
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: calc(47.47 / 1366 * 100vw);
  color: #000000;
  font-weight: normal;
  letter-spacing: 0.128em;
  line-height: 1.32;
}

.cases-title--sp { display: none; }

.cases-outer {
  position: relative;
  margin-top: calc(76 / 1366 * 100vw);
}

.cases-viewport {
  overflow: hidden;
}

.cases-track {
  display: flex;
  gap: calc(26 / 1366 * 100vw);
  padding-left: calc(61 / 1366 * 100vw);
  transition: transform 0.4s ease;
  will-change: transform;
}

.case-item {
  display: flex;
  flex-direction: column;
  gap: calc(20 / 1366 * 100vw);
  flex-shrink: 0;
  width: calc(291.4 / 1366 * 100vw);
}

.case-item__imgs--double {
  display: flex;
  flex-direction: column;
  gap: calc(8 / 1366 * 100vw);
}

.case-item__img {
  width: calc(291.4 / 1366 * 100vw);
  height: calc(324 / 1366 * 100vw);
  border-radius: calc(20 / 1366 * 100vw);
  object-fit: cover;
  display: block;
}

.case-item__imgs--double .case-item__img {
  height: calc(158 / 1366 * 100vw);
}

.case-item__img-wrap {
  position: relative;
  display: block;
  flex-shrink: 0;
}

.case-item__img-label {
  position: absolute;
  top: 0;
  left: 0;
  padding: calc(5 / 1366 * 100vw) calc(13 / 1366 * 100vw);
  border-radius: calc(20 / 1366 * 100vw) 0 0 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(15 / 1366 * 100vw);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.103em;
  line-height: 1.4;
}

.case-item__img-label--before { background: #3f495f; }
.case-item__img-label--after  { background: #25519e; }

.case-item__cat {
  display: inline-block;
  align-self: flex-start;
  padding: calc(5 / 1366 * 100vw);
  background: #574e43;
  border-radius: calc(5 / 1366 * 100vw);
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: calc(18.67 / 1366 * 100vw);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.049em;
  line-height: 1.32;
}

.case-item__title {
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: calc(26.4 / 1366 * 100vw);
  color: #000000;
  font-weight: normal;
  letter-spacing: 0.128em;
  line-height: 1.32;
  text-align: left;
}

.case-item__details {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e0d9d2;
}

.case-item__details tr + tr th,
.case-item__details tr + tr td {
  border-top: calc(1 / 1366 * 100vw) solid #e0d9d2;
}

.case-item__detail-label {
  background: #f5f0eb;
  color: #574e43;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(15 / 1366 * 100vw);
  font-weight: 700;
  line-height: 1.4;
  padding: calc(6 / 1366 * 100vw) calc(10 / 1366 * 100vw);
  white-space: nowrap;
  width: 1%;
}

.case-item__detail-value {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(16 / 1366 * 100vw);
  color: #333;
  line-height: 1.4;
  padding: calc(6 / 1366 * 100vw) calc(10 / 1366 * 100vw);
  text-align: left;
  background-color: #fff;
}

.cases-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(120 / 1366 * 100vw);
  margin-top: calc(60 / 1366 * 100vw);
}

.cases-arrow {
  width: calc(60.5 / 1366 * 100vw);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.cases-arrow img { width: 100%; height: auto; display: block; }
.cases-arrow:disabled { opacity: 0.3; cursor: default; }

.cases-scrollbar { display: none; }

/* ============================================================
   Reviews
   ============================================================ */
.sec-reviews {
  background: #ffffff;
  padding: calc(107 / 1366 * 100vw) calc(95 / 1366 * 100vw) calc(179 / 1366 * 100vw);
  text-align: center;
}

.reviews-title {
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: calc(47.47 / 1366 * 100vw);
  font-weight: normal;
  color: #000000;
  letter-spacing: 0.128em;
  line-height: 1.32;
}

.reviews-subtitle {
  margin-top: calc(33 / 1366 * 100vw);
  font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
  font-size: calc(24.13 / 1366 * 100vw);
  color: #000000;
  font-weight: 700;
  letter-spacing: 0.065em;
  line-height: 1.48;
}
.reviews-subtitle--sp { display: none; }

.reviews-grid {
  margin-top: calc(72 / 1366 * 100vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: calc(22 / 1366 * 100vw);
  row-gap: calc(30 / 1366 * 100vw);
}

.review-item {
  display: flex;
  flex-direction: column;
  border-radius: calc(37 / 1366 * 100vw);
  box-shadow: calc(3 / 1366 * 100vw) calc(6 / 1366 * 100vw) calc(12 / 1366 * 100vw) rgba(0, 0, 0, 0.1);
}

.review-item__head {
  background: #4981ba;
  border-radius: calc(37 / 1366 * 100vw) calc(37 / 1366 * 100vw) 0 0;
  padding: calc(10 / 1366 * 100vw) calc(24 / 1366 * 100vw);
  display: flex;
  align-items: center;
  gap: calc(15 / 1366 * 100vw);
  position: relative;
  z-index: 1;
}

.review-item__avatar {
  width: calc(75.8 / 1366 * 100vw);
  height: calc(75.8 / 1366 * 100vw);
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-item__avatar--empty {
  background: #bbdefb;
}

.review-item__name {
  font-family: 'はなぞめ', 'Noto Sans JP', sans-serif;
  font-size: calc(19.2 / 1366 * 100vw);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.128em;
  line-height: 1.32;
  text-align: left;
}

.review-item__triangle {
  position: absolute;
  bottom: calc(-22 / 1366 * 100vw);
  left: 50%;
  transform: translateX(-50%);
  width: calc(66.1 / 1366 * 100vw);
  height: auto;
  display: block;
  z-index: -1;
}

.review-item__body {
  flex: 1;
  background: #e4f4ff13;
  border-radius: 0 0 calc(37 / 1366 * 100vw) calc(37 / 1366 * 100vw);
  padding: calc(30 / 1366 * 100vw) calc(39 / 1366 * 100vw) calc(26 / 1366 * 100vw);
  text-align: left;
}

.review-item__body p {
  font-family: 'はなぞめ', 'Noto Sans JP', sans-serif;
  font-size: calc(16.4 / 1366 * 100vw);
  color: #000000;
  font-weight: normal;
  letter-spacing: 0.065em;
  line-height: 1.48;
  margin: 0;
}

.reviews-toggle {
  display: none;
}

.reviews-fade {
  display: none;
}

/* ============================================================
   News
   ============================================================ */
.sec-news {
  background: #ffffff;
  padding: calc(91 / 1366 * 100vw) calc(131 / 1366 * 100vw) calc(131 / 1366 * 100vw);
  text-align: center;
}

.news-title {
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: calc(47.47 / 1366 * 100vw);
  color: #000000;
  letter-spacing: 0.128em;
  line-height: 1.32;
}

.news-list {
  margin-top: calc(85 / 1366 * 100vw);
  border-bottom: 1px solid #737373;
  text-align: left;
}

.news-item {
  display: flex;
  align-items: center;
  border-top: 1px solid #737373;
  padding: calc(20 / 1366 * 100vw) calc(83 / 1366 * 100vw) calc(20 / 1366 * 100vw) calc(37 / 1366 * 100vw);
  text-decoration: none;
  color: inherit;
}

.news-item:hover .news-item__title { color: #0f8bc1; }

.news-item__date {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(18.8 / 1366 * 100vw);
  color: #000000;
  font-weight: normal;
  letter-spacing: 0.065em;
  line-height: 1.48;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: calc(23 / 1366 * 100vw);
}

.news-item__cat {
  display: inline-block;
  padding: calc(4 / 1366 * 100vw) calc(25 / 1366 * 100vw);
  background: #ffffff;
  border-radius: 9999px;
  border: 1px solid #0f8bc1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(16.13 / 1366 * 100vw);
  color: #0f8bc1;
  font-weight: normal;
  letter-spacing: 0.065em;
  line-height: 1.48;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: calc(83 / 1366 * 100vw);
}

.news-item__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(18.8 / 1366 * 100vw);
  color: #000000;
  font-weight: normal;
  letter-spacing: 0.065em;
  line-height: 1.48;
  flex: 1;
  transition: color .2s;
}

.news-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(50 / 1366 * 100vw);
  width: calc(245.7 / 1366 * 100vw);
  height: calc(66.7 / 1366 * 100vw);
  background: #ffffff;
  border-radius: 9999px;
  border: 2px solid #737373;
  font-family: Arial, sans-serif;
  font-size: calc(20 / 1366 * 100vw);
  color: #000000;
  font-weight: bold;
  letter-spacing: 0em;
  line-height: 1.4;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}


/* ============================================================
   Steps
   ============================================================ */
.sec-steps {
  background: #f1f9ff;
  padding: calc(109 / 1366 * 100vw) 0 calc(114 / 1366 * 100vw);
  text-align: center;
}

.steps-title {
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: calc(47.47 / 1366 * 100vw);
  font-weight: normal;
  color: #000;
  letter-spacing: 0.062em;
  line-height: 1.32;
}

.steps-title__blue {
  color: #085aaf;
}

.steps-title__br {
  display: none;
}

.steps-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(24.13 / 1366 * 100vw);
  color: #000;
  font-weight: 700;
  letter-spacing: 0.065em;
  line-height: 1.48;
  margin-top: calc(42 / 1366 * 100vw);
}

.steps-subtitle--sp {
  display: none;
}

.steps-list {
  display: flex;
  justify-content: center;
  gap: calc(48 / 1366 * 100vw);
  margin-top: calc(79 / 1366 * 100vw);
  position: relative;
  list-style: none;
  padding: 0 calc(95 / 1366 * 100vw);
}

.steps-list::before {
  content: '';
  position: absolute;
  top: calc(58.4 / 1366 * 100vw);
  left: calc(193.4 / 1366 * 100vw);
  right: calc(193.4 / 1366 * 100vw);
  height: 3px;
  background: rgba(74, 119, 166, 0.53);
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(22 / 1366 * 100vw);
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-img {
  width: calc(116.8 / 1366 * 100vw);
  height: calc(116.8 / 1366 * 100vw);
  filter: drop-shadow(0 0 calc(34 / 1366 * 100vw) rgba(8, 90, 175, 0.34));
}

.step-text {
  display: flex;
  flex-direction: column;
  gap: calc(22 / 1366 * 100vw);
  width: 100%;
}

.step-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(19.07 / 1366 * 100vw);
  color: #000;
  font-weight: 700;
  letter-spacing: 0.065em;
  line-height: 1.48;
  text-align: center;
}

.step-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(16.13 / 1366 * 100vw);
  color: #000;
  font-weight: 400;
  letter-spacing: 0.065em;
  line-height: 1.48;
  text-align: left;
}

.steps-banner {
  display: block;
  margin: calc(136 / 1366 * 100vw) auto 0;
  width: calc(979 / 1366 * 100vw);
  height: auto;
  transition: opacity .2s;
}


/* ============================================================
   Final CTA section
   ============================================================ */
/* ============================================================
   Links
   ============================================================ */
.sec-links {
  background-image: url('../../img/links-background.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 1024.5 / 394.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.links-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(15 / 1366 * 100vw);
}

.links-title__top {
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: calc(53.73 / 1366 * 100vw);
  font-weight: normal;
  color: #ffffff;
  letter-spacing: 0.062em;
  line-height: 1.32;
  text-shadow: calc(2 / 1366 * 100vw) calc(2 / 1366 * 100vw) 0 rgba(0, 0, 0, 0.4);
}

.links-title__bottom {
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: calc(61.07 / 1366 * 100vw);
  font-weight: normal;
  color: #ffffff;
  letter-spacing: 0.062em;
  line-height: 1.32;
  text-shadow: calc(2 / 1366 * 100vw) calc(2 / 1366 * 100vw) 0 rgba(0, 0, 0, 0.4);
}

.links-imgs {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: calc(45 / 1366 * 100vw);
  margin-top: calc(54 / 1366 * 100vw);
}

.links-imgs a {
  transition: opacity .2s;
}


.links-img {
  width: calc(464.2 / 1366 * 100vw);
  height: auto;
  display: block;
}

.links-tel {
  width: calc(464.2 / 1366 * 100vw);
  background: #f6c30d;
  border-radius: calc(15 / 1366 * 100vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 calc(30 / 1366 * 100vw);
}

.links-tel__main {
  display: flex;
  align-items: center;
  gap: calc(9 / 1366 * 100vw);
}

.links-tel__icon {
  width: calc(46.8 / 1366 * 100vw);
  height: calc(46.8 / 1366 * 100vw);
  flex-shrink: 0;
}

.links-tel__num {
  font-family: 'Source Han Sans JP', 'Noto Sans JP', sans-serif;
  font-size: calc(49.32 / 1366 * 100vw);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0em;
  line-height: 1.4;
  text-shadow: 0 calc(2 / 1366 * 100vw) calc(6 / 1366 * 100vw) rgba(0, 0, 0, 0.1),
               0 calc(2 / 1366 * 100vw) calc(14 / 1366 * 100vw) rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  transition: opacity .2s;
}

.links-tel__line {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: calc(14 / 1366 * 100vw);
  margin-top: calc(2 / 1366 * 100vw);
}

.links-tel__line::before,
.links-tel__line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #ffffff;
}

.links-tel__sub {
  font-family: 'Source Han Sans JP', 'Noto Sans JP', sans-serif;
  font-size: calc(19.73 / 1366 * 100vw);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0em;
  line-height: 1.4;
  text-shadow: 0 calc(1 / 1366 * 100vw) calc(4 / 1366 * 100vw) rgba(0, 0, 0, 0.1),
               0 calc(1 / 1366 * 100vw) calc(9 / 1366 * 100vw) rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.links-tel__alt {
  display: flex;
  align-items: flex-end;
  gap: calc(8 / 1366 * 100vw);
  margin-top: calc(6 / 1366 * 100vw);
}

.links-tel__alt-label {
  font-family: 'Source Han Sans JP', 'Noto Sans JP', sans-serif;
  font-size: calc(11.86 / 1366 * 100vw);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.081em;
  text-shadow: 0 calc(1 / 1366 * 100vw) calc(4 / 1366 * 100vw) rgba(0, 0, 0, 0.1),
               0 calc(1 / 1366 * 100vw) calc(9 / 1366 * 100vw) rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.links-tel__alt-num {
  font-family: 'Source Han Sans JP', 'Noto Sans JP', sans-serif;
  font-size: calc(20.4 / 1366 * 100vw);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.068em;
  line-height: 1.22;
  text-shadow: 0 calc(1 / 1366 * 100vw) calc(4 / 1366 * 100vw) rgba(0, 0, 0, 0.1),
               0 calc(1 / 1366 * 100vw) calc(9 / 1366 * 100vw) rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  transition: opacity .2s;
}

/* ============================================================
   Contact form
   ============================================================ */
.sec-contact {
  background: #f1f9ff;
  padding: calc(144/1366*100vw) calc(110/1366*100vw) calc(65/1366*100vw);
  text-align: center;
}

.contact-title {
  font-family: 'Mochiy Pop P One';
  font-size: calc(50.13/1366*100vw);
  font-weight: normal;
  color: #000;
  letter-spacing: 0.062em;
  line-height: 1.32;
}

.contact-form-wrap {
  background: #fff;
  padding: calc(56/1366*100vw) calc(63/1366*100vw);
  margin-top: calc(73/1366*100vw);
}

.contact-form-inner {
  background: #f1f9ff;
  padding: calc(85/1366*100vw) calc(119/1366*100vw) calc(113/1366*100vw);
}

.contact-fields {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-fields > * + * { margin-top: calc(35/1366*100vw); }
.contact-fields > *:nth-child(2) { margin-top: calc(63/1366*100vw); }

.form-row {
  display: flex;
  align-items: center;
  gap: calc(79/1366*100vw);
}

.form-row--top {
  align-items: flex-start;
}

.form-label {
  font-family: 'Noto Sans JP';
  font-size: calc(23.2/1366*100vw);
  color: #000;
  font-weight: 700;
  letter-spacing: 0.065em;
  line-height: 1.48;
  width: calc(200/1366*100vw);
  flex-shrink: 0;
}

.form-label--top {
  padding-top: calc(22/1366*100vw);
}

.form-field {
  flex: 1;
  width: 100%;
}

.form-radios {
  display: flex;
  flex-direction: column;
  gap: calc(19/1366*100vw);
}

.form-radio {
  display: flex;
  align-items: center;
  gap: calc(7/1366*100vw);
  font-family: 'Noto Sans JP';
  font-size: calc(20.13/1366*100vw);
  font-weight: normal;
  color: #000;
  letter-spacing: 0.065em;
  line-height: 1.48;
  cursor: pointer;
}

.form-input {
  display: block;
  width: 76%;
  padding: calc(20/1366*100vw) calc(21/1366*100vw);
  background: #fff;
  border: 2px solid #b4b4b4;
  font-family: 'Noto Sans JP';
  font-size: calc(18.8/1366*100vw);
  font-weight: normal;
  color: #000;
  letter-spacing: 0.065em;
  line-height: 1.48;
  box-sizing: border-box;
}

.form-textarea {
  display: block;
  width: 100%;
  height: calc(295.2/1366*100vw);
  padding: calc(20/1366*100vw) calc(21/1366*100vw);
  background: #fff;
  border: 2px solid #b4b4b4;
  font-family: 'Noto Sans JP';
  font-size: calc(18.8/1366*100vw);
  font-weight: normal;
  color: #000;
  letter-spacing: 0.065em;
  line-height: 1.48;
  resize: vertical;
  box-sizing: border-box;
}

.form-privacy {
  margin-top: calc(112/1366*100vw);
  text-align: center;
}

.form-privacy__heading {
  font-family: 'Noto Sans JP';
  font-size: calc(23.2/1366*100vw);
  font-weight: 700;
  color: #000;
  letter-spacing: 0.065em;
  line-height: 1.48;
}

.form-privacy__br { display: none; }

.form-privacy__body {
  width: 100%;
  height: calc(261.4/1366*100vw);
  margin-top: calc(63/1366*100vw);
  padding: calc(26/1366*100vw) calc(34/1366*100vw);
  background: #fff;
  overflow-y: auto;
  text-align: left;
  font-family: 'Noto Sans JP';
  font-size: calc(18.8/1366*100vw);
  font-weight: normal;
  color: #000;
  letter-spacing: 0.065em;
  line-height: 1.48;
  box-sizing: border-box;
}

.form-privacy__body strong { font-weight: 700; }
.form-privacy__body p { margin-bottom: calc(30/1366*100vw); }
.form-privacy__body p:last-child { margin-bottom: 0; }

.form-submit {
  margin-top: calc(63/1366*100vw);
  text-align: center;
}

.btn-submit {
  width: calc(336.9/1366*100vw);
  height: calc(66.9/1366*100vw);
  background: #2d71e6;
  border: 2px solid #231f20;
  border-radius: 9999px;
  font-family: Arial, sans-serif;
  font-size: calc(22.67/1366*100vw);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0em;
  line-height: 1.4;
  cursor: pointer;
  transition: background .2s, color .2s;
}


/* ============================================================
   Contact Dialog
   ============================================================ */
.contact-dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-dialog-overlay[hidden] { display: none; }

.contact-dialog {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

.contact-dialog__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(to right, #5db5e6, #446898);
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  line-height: 64px;
  margin: 0 auto 20px;
}

.contact-dialog__title {
  font-size: 22px;
  font-weight: 700;
  color: #3f495f;
  margin-bottom: 16px;
}

.contact-dialog__message {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-dialog__close {
  background: #2d71e6;
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 12px 48px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}

.contact-dialog__close:hover { background: #446898; }

/* ============================================================
   Footer
   ============================================================ */
/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #f1f9ff;
  padding: calc(44/1366*100vw) calc(131/1366*100vw) calc(92/1366*100vw);
}

/* 全幅の実線（上パディング後に配置し、負マージンで左右に伸ばす） */
.site-footer::before {
  content: '';
  display: block;
  height: 1px;
  background: #25519e;
  margin-bottom: calc(79/1366*100vw);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* SP専用要素はPC非表示 */
.footer-brand { display: none; }

.footer-logo img {
  height: calc(110.9/1366*100vw);
  width: auto;
  display: block;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: calc(31/1366*100vw);
}

.footer-nav-social {
  display: flex;
  align-items: center;
  gap: calc(25/1366*100vw);
}

.footer-nav {
  display: flex;
  gap: calc(22/1366*100vw);
  flex-wrap: nowrap;
}

.footer-nav a {
  font-family: 'Source Han Sans JP', 'Noto Sans JP', sans-serif;
  font-size: calc(21.6/1366*100vw);
  color: #3f495f;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}


/* PCはご利用の流れ・お問い合わせを非表示（SP専用リンク） */
.footer-nav a:nth-child(7),
.footer-nav a:nth-child(8) { display: none; }

.footer-social--pc {
  display: flex;
  gap: calc(10/1366*100vw);
}

.social-link {
  transition: opacity .2s;
}


.footer-social--pc .social-link img {
  width: calc(39.2/1366*100vw);
  height: auto;
  display: block;
}

.footer-copy--pc {
  font-family: 'Source Han Sans JP', 'Noto Sans JP', sans-serif;
  font-size: calc(17.6/1366*100vw);
  color: #3f495f;
  font-weight: normal;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ============================================================
   Responsive — Tablet (≤900px)
   ============================================================ */
@media (max-width: 900px) {
  /* sec-trust SP */
  .trust-hd__title {
    top: calc(14 / 375.2 * 100vw);
    filter: drop-shadow(0 0 calc(8 / 375.2 * 100vw) rgba(0,0,0,0.4))
            drop-shadow(0 0 calc(16 / 375.2 * 100vw) rgba(0,0,0,0));
  }

  .trust-hd__tokushima {
    font-size: calc(27.33 / 375.2 * 100vw);
  }

  .trust-hd__rest {
    font-size: calc(20.8 / 375.2 * 100vw);
  }

  /* trust-reason--1 SP */
  .trust-reason--1 {
    margin-top: calc(39 / 375.2 * 100vw);
    padding: 0 calc(27 / 375.2 * 100vw);
  }

  .trust-reason__row {
    flex-direction: column;
    gap: calc(18 / 375.2 * 100vw);
    align-items: center;
  }

  .trust-reason__photo {
    width: 100%;
    height: calc(205 / 375.2 * 100vw);
    border-radius: calc(20 / 375.2 * 100vw);
  }

  .trust-reason__content {
    width: 100%;
  }

  .trust-tag {
    padding: calc(6 / 375.2 * 100vw) calc(10 / 375.2 * 100vw);
    border-width: calc(2 / 375.2 * 100vw);
    font-size: calc(12 / 375.2 * 100vw);
  }

  .trust-reason__title {
    font-size: calc(25 / 375.2 * 100vw);
    margin-top: calc(12 / 375.2 * 100vw);
  }

  .trust-reason__body {
    font-size: calc(13.87 / 375.2 * 100vw);
    margin-top: calc(15 / 375.2 * 100vw);
  }

  .trust-reason__body--pc { display: none; }
  .trust-reason__body--sp { display: block; }

  /* trust-reason--2 SP */
  .trust-reason--2 {
    margin-top: calc(59 / 375.2 * 100vw);
    padding: 0 calc(27 / 375.2 * 100vw);
  }

  .trust-reason--2 .trust-reason__photo {
    order: -1;
  }

  /* trust-reason--3 SP */
  .trust-reason--3 {
    margin-top: calc(67 / 375.2 * 100vw);
    padding: 0 calc(27 / 375.2 * 100vw);
  }

  /* trust-compare SP */
  .trust-compare {
    margin-top: calc(60 / 375.2 * 100vw);
    padding: 0 calc(12 / 375.2 * 100vw);
  }

  .trust-compare__lead--pc { display: none; }
  .trust-compare__lead--sp { display: block; }

  .trust-compare__lead {
    font-size: calc(19 / 375.2 * 100vw);
  }

  .trust-compare__tables {
    gap: calc(12 / 375.2 * 100vw);
    margin-top: calc(28 / 375.2 * 100vw);
  }

  .compare-tbl {
    border-width: calc(4 / 375.2 * 100vw);
  }

  .compare-tbl__head {
    padding: calc(6 / 375.2 * 100vw) 0 calc(10 / 375.2 * 100vw);
  }

  .compare-tbl__title {
    font-size: calc(11.87 / 375.2 * 100vw);
    filter: drop-shadow(0 0 calc(8 / 375.2 * 100vw) rgba(0,0,0,0.4))
          drop-shadow(0 0 calc(16 / 375.2 * 100vw) rgba(0,0,0,0));
  }

  .compare-tbl__body {
    padding: calc(10 / 375.2 * 100vw) calc(11 / 375.2 * 100vw) calc(6 / 375.2 * 100vw);
  }

  .compare-tbl__top {
    font-size: calc(9.87 / 375.2 * 100vw);
  }

  .compare-tbl__arrow {
    width: calc(49 / 375.2 * 100vw);
    margin-top: calc(6 / 375.2 * 100vw);
  }

  .compare-tbl__mid {
    font-size: calc(9.87 / 375.2 * 100vw);
    margin-top: calc(6 / 375.2 * 100vw);
  }

  .compare-tbl__bottom {
    font-size: calc(11.6 / 375.2 * 100vw);
    margin-top: calc(9 / 375.2 * 100vw);
  }

  .compare-tbl__money {
    width: calc(28.4 / 375.2 * 100vw);
    bottom: calc(7 / 375.2 * 100vw);
    right: calc(5 / 375.2 * 100vw);
  }

  .compare-tbl__all-in {
    font-size: calc(12.13 / 375.2 * 100vw);
  }

  .compare-tbl__equal-text {
    font-size: calc(10.53 / 375.2 * 100vw);
    margin-top: calc(12 / 375.2 * 100vw);
  }

  .compare-tbl__person {
    width: calc(63.2 / 375.2 * 100vw);
    bottom: calc(-16 / 375.2 * 100vw);
    right: calc(-15 / 375.2 * 100vw);
  }

  .trust-reason__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

}

/* ============================================================
   Responsive — Mobile (≤600px)
   ============================================================ */
@media (max-width: 600px) {
  body { zoom: 1; }

  /* SP header: logo | badge | hamburger */
  .site-header__inner {
    height: clamp(64px, 20.35vw, 90px);
    padding-left: clamp(14px, 5.06vw, 24px);
    padding-right: clamp(14px, 5.6vw, 24px);
    justify-content: space-between;
    gap: calc(8 / 375.2 * 100vw);
  }

  [id] { scroll-margin-top: clamp(64px, 20.35vw, 90px); }

  .site-logo img { height: clamp(36px, 12.05vw, 52px); }

  /* Show SP badge */
  .header-sp-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #25519e;
    padding: clamp(5px, 1.87vw, 9px) clamp(9px, 3.46vw, 16px) clamp(4px, 1.6vw, 8px);
    text-align: center;
  }

  .header-sp-badge__sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(9.33px, 3.053vw, 13.33px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.105em;
    line-height: 1.4;
    text-shadow: calc(1 / 375.2 * 100vw) calc(1 / 375.2 * 100vw) 0 rgba(0,0,0,.4);
    display: block;
  }

  .header-sp-badge__main {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(9.33px, 3.160vw, 14.67px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.094em;
    line-height: 1.4;
    -webkit-text-stroke: calc(2 / 375.2 * 100vw) #f24021;
    paint-order: stroke fill;
    display: block;
  }

  .header-sp-badge__row {
    display: flex;
    align-items: baseline;
    white-space: nowrap;
  }
  .header-sp-badge__row .header-sp-badge__sub,
  .header-sp-badge__row .header-sp-badge__main {
    display: inline;
  }

  .hamburger-btn {
    display: flex;
    width: clamp(22px, 7.57vw, 32px);
    height: clamp(20px, 7.14vw, 30px);
  }

  .hamburger-btn span { background: #000; }

  .hamburger-btn.is-active span:nth-child(1) {
    transform: translateY(calc(12 / 375.2 * 100vw)) rotate(45deg);
  }
  .hamburger-btn.is-active span:nth-child(3) {
    transform: translateY(calc(-12 / 375.2 * 100vw)) rotate(-45deg);
  }

  /* Hide PC-only elements */
  .announce-bar { display: none; }
  .header-tel { display: none; }
  .site-nav {
    pointer-events: none;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .25s ease, transform .25s ease;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f1f9ff;
    border-top: calc(2 / 375.2 * 100vw) solid #25519e;
    box-shadow: 0 calc(8 / 375.2 * 100vw) calc(24 / 375.2 * 100vw) rgba(0,0,0,.18);
    z-index: 99;
  }

  .site-nav.is-open {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav__sp-only { display: block; }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    padding: calc(10 / 375.2 * 100vw) 0;
  }

  .site-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(16 / 375.2 * 100vw) calc(24 / 375.2 * 100vw);
    font-size: calc(14.5 / 375.2 * 100vw);
    font-weight: 700;
    color: #25519e;
    letter-spacing: 0.08em;
    border-bottom: calc(1 / 375.2 * 100vw) solid rgba(37,81,158,.12);
  }

  .site-nav ul li:last-child a {
    border-bottom: none;
  }

  .nav-sns {
    display: flex;
    justify-content: center;
    gap: calc(15 / 375.2 * 100vw);
    padding: calc(20 / 375.2 * 100vw) 0 calc(24 / 375.2 * 100vw);
  }
  .nav-sns__link img {
    width: calc(32 / 375.2 * 100vw);
    height: calc(32 / 375.2 * 100vw);
    display: block;
  }

  .side-cta-wrap { display: none; }

  /* Hero SP */
  .hero-fv-img {
    height: auto;
    object-fit: unset;
  }

  .hero-side-cta {
    display: none;
  }

  /* Service cards SP */
  .sv-cards {
    flex-direction: column;
    gap: calc(27 / 375.2 * 100vw);
    padding: 0 calc(30 / 375.2 * 100vw);
    margin-top: calc(34 / 375.2 * 100vw);
  }

  .sv-card {
    border-radius: calc(43 / 375.2 * 100vw);
    padding: calc(6 / 375.2 * 100vw);
    box-shadow: calc(3 / 375.2 * 100vw) calc(15 / 375.2 * 100vw) calc(15 / 375.2 * 100vw) rgba(0, 0, 0, 0.15);
  }

  .sv-card__inner {
    border-radius: calc(37 / 375.2 * 100vw);
    padding: calc(22 / 375.2 * 100vw) calc(26 / 375.2 * 100vw) calc(16 / 375.2 * 100vw);
  }

  .sv-card__img {
    width: calc(253 / 375.2 * 100vw);
    height: calc(146.8 / 375.2 * 100vw);
    border-radius: calc(20 / 375.2 * 100vw);
  }

  .sv-card__title {
    font-size: calc(22 / 375.2 * 100vw);
    margin-top: calc(26 / 375.2 * 100vw);
  }

  .sv-card__list {
    gap: calc(8 / 375.2 * 100vw);
    margin-top: calc(19 / 375.2 * 100vw);
    padding: 0 calc(14 / 375.2 * 100vw);
  }

  .sv-card__list li {
    font-size: calc(14 / 375.2 * 100vw);
    gap: calc(5 / 375.2 * 100vw);
  }

  .sv-card__check {
    width: calc(23.5 / 375.2 * 100vw);
  }

  .sv-card__btn {
    width: calc(180.9 / 375.2 * 100vw);
    height: calc(39.2 / 375.2 * 100vw);
    border-width: calc(3 / 375.2 * 100vw);
    font-size: calc(14 / 375.2 * 100vw);
    margin-top: calc(19 / 375.2 * 100vw);
  }

  .sv-card__btn::after {
    inset: calc(-3 / 375.2 * 100vw);
  }

  /* Reviews SP */
  .sec-reviews {
    padding: calc(63 / 375.2 * 100vw) calc(41 / 375.2 * 100vw) calc(50 / 375.2 * 100vw);
  }

  .reviews-title {
    font-size: calc(23.33 / 375.2 * 100vw);
  }

  .reviews-subtitle--pc { display: none; }
  .reviews-subtitle--sp { display: block; }

  .reviews-subtitle {
    margin-top: calc(19 / 375.2 * 100vw);
    font-size: calc(14.27 / 375.2 * 100vw);
  }

  .reviews-grid {
    margin-top: calc(29 / 375.2 * 100vw);
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: calc(18 / 375.2 * 100vw);
  }

  .review-item {
    border-radius: calc(37 / 375.2 * 100vw);
    box-shadow: calc(2 / 375.2 * 100vw) calc(4 / 375.2 * 100vw) calc(8 / 375.2 * 100vw) rgba(0, 0, 0, 0.1);
  }

  .review-item--sp-hidden {
    display: none;
  }

  .review-item--sp-hidden.is-visible {
    display: flex;
  }

  .review-item__head {
    border-radius: calc(37 / 375.2 * 100vw) calc(37 / 375.2 * 100vw) 0 0;
    padding: calc(6 / 375.2 * 100vw) calc(24 / 375.2 * 100vw);
    gap: calc(15 / 375.2 * 100vw);
  }

  .review-item__avatar {
    width: calc(46.9 / 375.2 * 100vw);
    height: calc(46.9 / 375.2 * 100vw);
  }

  .review-item__name {
    font-size: calc(14.53 / 375.2 * 100vw);
  }

  .review-item__triangle {
    bottom: calc(-13.6 / 375.2 * 100vw);
    width: calc(51.1 / 375.2 * 100vw);
  }

  .review-item__body {
    border-radius: 0 0 calc(37 / 375.2 * 100vw) calc(37 / 375.2 * 100vw);
    padding: calc(17 / 375.2 * 100vw) calc(20 / 375.2 * 100vw) calc(23 / 375.2 * 100vw);
  }

  .review-item__body p {
    font-size: calc(11.47 / 375.2 * 100vw);
  }

  .reviews-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: calc(18 / 375.2 * 100vw) auto 0;
    width: calc(36.6 / 375.2 * 100vw);
    height: calc(36.6 / 375.2 * 100vw);
    border-radius: 50%;
    background: #085aaf;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: calc(20 / 375.2 * 100vw);
    font-weight: 700;
    line-height: 1;
  }

  .reviews-toggle__minus { display: none; }
  .reviews-toggle.is-expanded .reviews-toggle__plus { display: none; }
  .reviews-toggle.is-expanded .reviews-toggle__minus { display: block; }

  .reviews-fade {
    display: block;
    height: calc(150 / 375.2 * 100vw);
    margin-top: calc(-140 / 375.2 * 100vw);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%);
    position: relative;
    z-index: 1;
    pointer-events: none;
  }

  .reviews-fade.is-hidden {
    display: none;
  }

  /* News SP */
  .sec-news {
    padding: calc(56 / 375.2 * 100vw) calc(29 / 375.2 * 100vw) calc(68 / 375.2 * 100vw);
  }

  .news-title {
    font-size: calc(23.33 / 375.2 * 100vw);
  }

  .news-list {
    margin-top: calc(46 / 375.2 * 100vw);
  }

  .news-item {
    flex-wrap: wrap;
    align-items: center;
    padding: calc(13 / 375.2 * 100vw) 0 calc(10 / 375.2 * 100vw);
  }

  .news-item:first-child {
    border-top: none;
    padding-top: 0;
  }

  .news-item__date {
    font-size: calc(10.8 / 375.2 * 100vw);
    margin-right: calc(9 / 375.2 * 100vw);
  }

  .news-item__cat {
    font-size: calc(9.47 / 375.2 * 100vw);
    padding: calc(2 / 375.2 * 100vw) calc(11 / 375.2 * 100vw);
    border-width: calc(1 / 375.2 * 100vw);
    margin-right: 0;
  }

  .news-item__title {
    flex-basis: 100%;
    font-size: calc(12.13 / 375.2 * 100vw);
    padding: 0 calc(6 / 375.2 * 100vw);
    margin-top: calc(10 / 375.2 * 100vw);
  }

  .news-btn {
    margin-top: calc(33 / 375.2 * 100vw);
    width: calc(128.2 / 375.2 * 100vw);
    height: calc(37.9 / 375.2 * 100vw);
    border-width: 1px;
    font-size: calc(12 / 375.2 * 100vw);
  }

  /* Steps SP */
  .sec-steps {
    padding: calc(67 / 375.2 * 100vw) calc(29 / 375.2 * 100vw) calc(56 / 375.2 * 100vw);
  }

  .steps-title {
    font-size: calc(27.93 / 375.2 * 100vw);
    text-align: center;
  }

  .steps-title__br {
    display: inline;
  }

  .steps-subtitle--pc {
    display: none;
  }

  .steps-subtitle--sp {
    display: block;
    font-size: calc(14.27 / 375.2 * 100vw);
    margin-top: calc(20 / 375.2 * 100vw);
  }

  .steps-list {
    flex-direction: column;
    gap: calc(42 / 375.2 * 100vw);
    padding: 0;
    margin-top: calc(42 / 375.2 * 100vw);
  }

  .steps-list::before {
    display: none;
  }

  .step-item {
    flex-direction: row;
    align-items: center;
    gap: calc(18 / 375.2 * 100vw);
  }

  .step-item:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: calc(50% + 41.95 / 375.2 * 100vw);
    left: calc(41.95 / 375.2 * 100vw);
    transform: translateX(-50%);
    width: 2px;
    background: rgba(74, 119, 166, 0.53);
  }

  .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: calc(50% + 41.95 / 375.2 * 100vw);
    bottom: calc(-42 / 375.2 * 100vw);
    left: calc(41.95 / 375.2 * 100vw);
    transform: translateX(-50%);
    width: 2px;
    background: rgba(74, 119, 166, 0.53);
  }

  .step-img {
    width: calc(83.9 / 375.2 * 100vw);
    height: calc(83.9 / 375.2 * 100vw);
    filter: drop-shadow(0 0 calc(20 / 375.2 * 100vw) rgba(8, 90, 175, 0.20));
    flex-shrink: 0;
  }

  .step-text {
    gap: calc(16 / 375.2 * 100vw);
  }

  .step-label {
    font-size: calc(19.07 / 375.2 * 100vw);
    text-align: left;
  }

  .step-desc {
    font-size: calc(13.47 / 375.2 * 100vw);
  }

  .steps-banner {
    margin-top: calc(42 / 375.2 * 100vw);
    width: calc(320 / 375.2 * 100vw);
  }

  /* Special cleaning SP */
  .special-sv {
    margin-top: calc(76 / 375.2 * 100vw);
  }

  .special-sv__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .special-sv__bubble {
    width: calc(177.3 / 375.2 * 100vw);
  }

  .special-sv__heading {
    grid-column: unset;
    grid-row: unset;
    letter-spacing: 0.219em;
    margin-top: 0;
    margin-left: calc(23 / 375.2 * 100vw);
  }

  .special-sv__heading--blue {
    font-size: calc(38.53 / 375.2 * 100vw);
  }

  .special-sv__heading--black {
    font-size: calc(29.47 / 375.2 * 100vw);
  }

  .special-sv__img {
    grid-column: unset;
    grid-row: unset;
    margin-top: calc(19 / 375.2 * 100vw);
    width: calc(254.5 / 375.2 * 100vw);
    height: calc(164.6 / 375.2 * 100vw);
    border-radius: calc(16 / 375.2 * 100vw);
    align-self: center;
  }

  .special-sv__desc {
    grid-column: unset;
    grid-row: unset;
    margin-top: calc(21 / 375.2 * 100vw);
    font-size: calc(13.6 / 375.2 * 100vw);
    text-align: left;
  }

  /* Scene card SP */
  .scene-card {
    margin-top: calc(36 / 375.2 * 100vw);
    border-radius: calc(24 / 375.2 * 100vw);
    box-shadow: calc(3 / 375.2 * 100vw) calc(15 / 375.2 * 100vw) calc(15 / 375.2 * 100vw) rgba(0, 0, 0, 0.15);
  }

  .scene-card__inner {
    padding: calc(15 / 375.2 * 100vw);
    flex-direction: column;
    gap: calc(15 / 375.2 * 100vw);
  }

  .scene-card__text-wrapper {
    gap: calc(10 / 375.2 * 100vw);
  }

  .scene-card__text-deco {
    display: block;
    flex-shrink: 0;
    align-self: flex-end;
    width: calc(15 / 375.2 * 100vw);
    height: calc(30 / 375.2 * 100vw);
  }

  .scene-card__text-deco--left {
    background: linear-gradient(
      to bottom left,
      transparent calc(50% - 1px),
      #000000 calc(50% - 1px),
      #000000 calc(50% + 1px),
      transparent calc(50% + 1px)
    );
  }

  .scene-card__text-deco--right {
    background: linear-gradient(
      to bottom right,
      transparent calc(50% - 1px),
      #000000 calc(50% - 1px),
      #000000 calc(50% + 1px),
      transparent calc(50% + 1px)
    );
  }

  .scene-card__text {
    font-size: calc(14.5 / 375.2 * 100vw);
  }

  .scene-card__text--pc-br {
    display: none;
  }

  .scene-list {
    gap: calc(10 / 375.2 * 100vw);
  }

  .scene-list__item {
    border-radius: calc(16 / 375.2 * 100vw);
    padding: calc(7 / 375.2 * 100vw) calc(14 / 375.2 * 100vw);
    gap: calc(10 / 375.2 * 100vw);
  }

  .scene-list__item:nth-child(1) img {
    width: calc(33.4 / 375.2 * 100vw);
  }

  .scene-list__item:nth-child(2) img {
    width: calc(41.7 / 375.2 * 100vw);
  }

  .scene-list__item:nth-child(3) img {
    width: calc(43 / 375.2 * 100vw);
  }

  .scene-list__item p {
    font-size: calc(13.2 / 375.2 * 100vw);
  }

  /* Services section SP */
  .sec-services {
    padding-top: calc(31 / 375.2 * 100vw);
    padding-bottom: calc(70 / 375.2 * 100vw);
  }

  .sv-head__deco { display: none; }

  .sv-head__line1 { font-size: calc(25.6 / 375.2 * 100vw); }
  .sv-head__line2 { font-size: calc(31.33 / 375.2 * 100vw); }

  .sv-head__emphasis { 
    width: calc(18.4 / 375.2 * 100vw);
    top: 5px;
    left: -10px;
  }

  .sv-head__desc {
    font-size: calc(14 / 375.2 * 100vw);
    margin-top: calc(39 / 375.2 * 100vw);
  }
  .sv-head__desc--pc { display: none; }
  .sv-head__desc--sp { display: block; }

  /* Basic services SP */
  .basic-sv {
    margin-top: calc(50 / 375.2 * 100vw);
  }

  .basic-sv__title {
    font-size: calc(23.73 / 375.2 * 100vw);
    letter-spacing: 0.102em;
    line-height: 1.32;
  }

  .basic-sv__grid {
    grid-template-columns: repeat(2, calc(157.5 / 375.2 * 100vw));
    column-gap: calc(16 / 375.2 * 100vw);
    row-gap: calc(21 / 375.2 * 100vw);
    width: calc(331 / 375.2 * 100vw);
    margin-top: calc(40 / 375.2 * 100vw);
  }

  .basic-sv__img-wrap {
    width: calc(157.5 / 375.2 * 100vw);
    height: calc(103.3 / 375.2 * 100vw);
    border-radius: calc(16 / 375.2 * 100vw);
  }

  .basic-sv__img {
    width: calc(157.5 / 375.2 * 100vw);
    height: calc(103.3 / 375.2 * 100vw);
    border-radius: calc(16 / 375.2 * 100vw);
  }

  .basic-sv__item-title {
    font-size: calc(14.4 / 375.2 * 100vw);
    margin-top: calc(21 / 375.2 * 100vw);
  }

  .basic-sv__item-desc {
    font-size: calc(10.67 / 375.2 * 100vw);
    margin-top: calc(11 / 375.2 * 100vw);
  }

  /* Pricing table SP */
  .price-tbl {
    margin-top: calc(55 / 375.2 * 100vw);
    margin-left: calc(30 / 375.2 * 100vw);
    margin-right: calc(30 / 375.2 * 100vw);
    border-radius: calc(32 / 375.2 * 100vw);
    box-shadow: calc(3 / 375.2 * 100vw) calc(15 / 375.2 * 100vw) calc(15 / 375.2 * 100vw) rgba(0, 0, 0, 0.15);
  }

  .price-tbl__hd {
    padding: calc(23 / 375.2 * 100vw) 0 calc(21 / 375.2 * 100vw);
  }

  .price-tbl__title {
    font-size: calc(20 / 375.2 * 100vw);
  }

  .price-tbl__body {
    padding: calc(12 / 375.2 * 100vw) calc(18 / 375.2 * 100vw) calc(23 / 375.2 * 100vw);
  }

  .price-tbl__grid--4col {
    display: none;
  }

  .price-tbl__grid--2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(5 / 375.2 * 100vw) calc(8 / 375.2 * 100vw);
  }

  .price-tbl__cell {
    padding: calc(11 / 375.2 * 100vw) 0;
    gap: calc(4 / 375.2 * 100vw);
  }

  .price-tbl__cell--hd {
    font-size: calc(12.53 / 375.2 * 100vw);
  }

  .price-tbl__cell--data {
    font-size: calc(15.33 / 375.2 * 100vw);
  }

  .price-tbl--house {
    margin-top: calc(57 / 375.2 * 100vw);
  }
  .price-tbl--house .price-tbl__cell {
    white-space: normal;
    padding: calc(6.2 / 375.2 * 100vw) 0;
  }
  .price-tbl--house .price-tbl__cell--hd {
    padding: calc(11 / 375.2 * 100vw) 0;
  }
  .price-tbl--house .price-tbl__cell--data {
    height: calc(40.7 / 375.2 * 100vw);
  }
  .price-tbl--house .price-tbl__cell--option {
    font-size: calc(11.6 / 375.2 * 100vw);
  }
  .price-tbl--house .price-tbl__cell small {
    font-size: calc(8.62 / 375.2 * 100vw);
  }
  .price-tbl__note {
    margin-top: calc(6 / 375.2 * 100vw);
    padding: calc(13 / 375.2 * 100vw) calc(10 / 375.2 * 100vw) calc(16 / 375.2 * 100vw);
  }
  .price-tbl__note__title {
    font-size: calc(11.73 / 375.2 * 100vw);
  }
  .price-tbl__note__text {
    margin-top: calc(9 / 375.2 * 100vw);
    padding-left: calc(8 / 375.2 * 100vw);
    font-size: calc(10.8 / 375.2 * 100vw);
  }
  .price-tbl__note__text--pc { display: none; }
  .price-tbl__note__text--sp { display: block; }

  /* price-tbl--ac SP */
  .price-tbl--ac {
    margin-top: calc(29 / 375.2 * 100vw);
  }
  .price-tbl--ac .price-tbl__cell {
    white-space: normal;
    padding: calc(6.2 / 375.2 * 100vw) 0;
  }
  .price-tbl--ac .price-tbl__cell--hd {
    padding: calc(11 / 375.2 * 100vw) 0;
  }
  .price-tbl--ac .price-tbl__cell--data {
    height: calc(40.7 / 375.2 * 100vw);
  }
  .price-tbl--ac .price-tbl__cell--actype {
    font-size: calc(11.33 / 375.2 * 100vw);
  }
  .price-tbl__grid--3col {
    display: none;
  }
  .price-tbl--ac .price-tbl__note {
    max-width: 100%;
  }
  .price-tbl__note__worktime {
    display: block;
    margin-top: calc(16 / 375.2 * 100vw);
  }
  .price-tbl__note__worktime-title {
    font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
    font-size: calc(11.73 / 375.2 * 100vw);
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.065em;
    line-height: 1.22;
  }
  .price-tbl__note__worktime-text {
    margin-top: calc(9 / 375.2 * 100vw);
    padding-left: calc(8 / 375.2 * 100vw);
    font-family: 'Noto Sans JP', 'Source Han Sans JP', sans-serif;
    font-size: calc(10.8 / 375.2 * 100vw);
    letter-spacing: 0.065em;
    line-height: 1.22;
  }

  .sec-services__cta {
    margin-top: calc(27 / 375.2 * 100vw);
  }

  /* Banner section SP */
  .sec-banner {
    padding-top: calc(42.7 / 375.2 * 100vw);
    padding-bottom: calc(40 / 375.2 * 100vw);
  }

  .banner-10off {
    width: calc(320 / 375.2 * 100vw);
  }

  .cta-card {
    margin-top: calc(31 / 375.2 * 100vw);
    width: calc(308.8 / 375.2 * 100vw);
    border-radius: calc(20 / 375.2 * 100vw);
    padding: calc(6 / 375.2 * 100vw);
    box-shadow: calc(3 / 375.2 * 100vw) calc(15 / 375.2 * 100vw) calc(15 / 375.2 * 100vw) rgba(0, 0, 0, 0.15);
  }

  .cta-card__inner {
    border-radius: calc(16.25 / 375.2 * 100vw);
  }

  .cta-card__header {
    padding: calc(14 / 375.2 * 100vw) 0 calc(15 / 375.2 * 100vw);
  }

  .cta-card__lead--pc { display: none; }
  .cta-card__lead--sp { display: block; }

  .cta-card__lead {
    font-size: calc(18.8 / 375.2 * 100vw);
    letter-spacing: 0.066em;
    line-height: 1.3;
  }

  .cta-card__body {
    padding: calc(15 / 375.2 * 100vw) 0;
    flex-direction: column;
    align-items: center;
    gap: calc(10 / 375.2 * 100vw);
  }

  .cta-badges {
    grid-template-columns: 1fr 1fr;
    gap: calc(8 / 375.2 * 100vw);
  }

  .cta-badge {
    border-width: calc(2 / 375.2 * 100vw);
    border-radius: calc(16 / 375.2 * 100vw);
    padding: calc(13 / 375.2 * 100vw);
  }

  .cta-badge__icon {
    width: calc(36 / 375.2 * 100vw);
  }

  .cta-badge__icon--calc {
    width: calc(36 / 375.2 * 100vw);
  }

  .cta-badge__text {
    margin-top: calc(8 / 375.2 * 100vw);
    font-size: calc(13.2 / 375.2 * 100vw);
  }

  .cta-contact {
    width: 100%;
    gap: calc(15 / 375.2 * 100vw);
  }

  .cta-tel {
    gap: calc(12 / 375.2 * 100vw);
  }

  .cta-tel__num-group {
    gap: calc(4 / 375.2 * 100vw);
  }

  .cta-tel__row {
    gap: calc(5 / 375.2 * 100vw);
  }

  .cta-tel__icon {
    width: calc(27.4 / 375.2 * 100vw);
    height: calc(27.4 / 375.2 * 100vw);
  }

  .cta-tel__num {
    font-size: calc(28.93 / 375.2 * 100vw);
  }

  .cta-tel__line {
    gap: calc(8 / 375.2 * 100vw);
  }

  .cta-tel__line::before,
  .cta-tel__line::after {
    height: calc(1 / 375.2 * 100vw);
  }

  .cta-tel__sub {
    font-size: calc(11.6 / 375.2 * 100vw);
  }

  .cta-tel__alt {
    gap: calc(4 / 375.2 * 100vw);
    padding: calc(6 / 375.2 * 100vw) calc(8 / 375.2 * 100vw);
    border-radius: calc(8 / 375.2 * 100vw);
  }

  .cta-tel__alt-label {
    font-size: calc(6.8 / 375.2 * 100vw);
  }

  .cta-tel__alt-num {
    font-size: calc(12.4 / 375.2 * 100vw);
  }

  .cta-btns {
    gap: calc(5 / 375.2 * 100vw);
  }

  .cta-btn img {
    width: calc(139.8 / 375.2 * 100vw);
  }

  /* Links SP */
  .sec-links {
    background-image: url('../../img/links-background_mobile.svg');
    aspect-ratio: 281.25 / 283.5;
  }

  .links-title {
    gap: calc(7 / 375.2 * 100vw);
  }

  .links-title__top {
    font-size: calc(28.8 / 375.2 * 100vw);
    text-shadow: calc(1 / 375.2 * 100vw) calc(1 / 375.2 * 100vw) 0 rgba(0, 0, 0, 0.4);
  }

  .links-title__bottom {
    font-size: calc(32.8 / 375.2 * 100vw);
    text-shadow: calc(1 / 375.2 * 100vw) calc(1 / 375.2 * 100vw) 0 rgba(0, 0, 0, 0.4);
  }

  .links-imgs {
    flex-direction: column;
    align-items: center;
    gap: calc(17 / 375.2 * 100vw);
    margin-top: calc(27 / 375.2 * 100vw);
  }

  .links-img {
    width: calc(260 / 375.2 * 100vw);
  }

  .links-tel {
    width: calc(260 / 375.2 * 100vw);
    border-radius: calc(12 / 375.2 * 100vw);
    padding: calc(7 / 375.2 * 100vw) calc(10 / 375.2 * 100vw);
  }

  .links-tel__main {
    gap: calc(5 / 375.2 * 100vw);
  }

  .links-tel__icon {
    width: calc(26.3 / 375.2 * 100vw);
    height: calc(26.3 / 375.2 * 100vw);
  }

  .links-tel__num {
    font-size: calc(27.73 / 375.2 * 100vw);
    text-shadow:0 calc(1 / 375.2 * 100vw) calc(4 / 375.2 * 100vw) rgba(0, 0, 0, 0.1),
                0 calc(1 / 375.2 * 100vw) calc(9 / 375.2 * 100vw) rgba(0, 0, 0, 0.15);
  }

  .links-tel__line {
    gap: calc(7 / 375.2 * 100vw);
    margin-top: calc(1 / 375.2 * 100vw);
  }

  .links-tel__sub {
    font-size: calc(11.06 / 375.2 * 100vw);
    text-shadow:0 calc(1 / 375.2 * 100vw) calc(2 / 375.2 * 100vw) rgba(0, 0, 0, 0.1),
                0 calc(1 / 375.2 * 100vw) calc(5 / 375.2 * 100vw) rgba(0, 0, 0, 0.15);
  }

  .links-tel__alt {
    gap: calc(4 / 375.2 * 100vw);
    margin-top: calc(3 / 375.2 * 100vw);
  }

  .links-tel__alt-label {
    font-size: calc(6.67 / 375.2 * 100vw);
    line-height: 1.4;
    text-shadow:0 calc(1 / 375.2 * 100vw) calc(2 / 375.2 * 100vw) rgba(0, 0, 0, 0.1),
                0 calc(1 / 375.2 * 100vw) calc(5 / 375.2 * 100vw) rgba(0, 0, 0, 0.15);
  }

  .links-tel__alt-num {
    font-size: calc(10.66 / 375.2 * 100vw);
    text-shadow:0 calc(1 / 375.2 * 100vw) calc(2 / 375.2 * 100vw) rgba(0, 0, 0, 0.1),
                0 calc(1 / 375.2 * 100vw) calc(5 / 375.2 * 100vw) rgba(0, 0, 0, 0.15);
  }

  /* Footer SP */
  .site-footer {
    padding: calc(44/375.2*100vw) calc(27/375.2*100vw) calc(39/375.2*100vw);
    padding-bottom: calc(135/375.2*100vw);
  }

  .site-footer::before {
    margin-bottom: calc(55/375.2*100vw);
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: calc(36/375.2*100vw);
  }

  /* SP: footer-right（ナビ）が上段、footer-image-group（ロゴ+ブランド）が下段 */
  .footer-right { order: 1; width: 100%; align-items: center; }
  .footer-image-group { order: 2; display: flex; align-items: flex-end; justify-content: center; gap: calc(30/375.2*100vw); }

  .footer-logo img { height: calc(57.8/375.2*100vw); }

  /* SP専用ブランド（ソーシャル + 会社名）を表示 */
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(9/375.2*100vw);
  }

  .footer-social--sp {
    display: flex;
    gap: calc(6/375.2*100vw);
  }

  .footer-social--sp .social-link img {
    width: calc(31.7/375.2*100vw);
    height: auto;
    display: block;
  }

  .footer-copy--sp {
    font-family: 'Source Han Sans JP', 'Noto Sans JP', sans-serif;
    font-size: calc(9.6/375.2*100vw);
    color: #3f495f;
    font-weight: normal;
    letter-spacing: 0.04em;
    line-height: 1.4;
    text-align: center;
  }

  /* PC専用要素はSP非表示 */
  .footer-social--pc,
  .footer-copy--pc { display: none; }

  /* ナビ: 2列グリッド（カラムフロー）
     HTML順: TOP(1),サービス内容(2),料金(3),お客様の声(4),実績(5),お知らせ(6),ご利用の流れ(7),お問い合わせ(8)
     SP表示: Col1={TOP,サービス内容,料金,実績} Col2={お客様の声,お知らせ,ご利用の流れ,お問い合わせ}
     → orderで4(お客様の声)と5(実績)を入れ替える */
  .footer-nav-social { flex-direction: column; align-items: center; }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    column-gap: calc(53/375.2*100vw);
  }

  .footer-nav a {
    font-size: calc(14.93/375.2*100vw);
    line-height: 2.15;
    white-space: nowrap;
  }

  .footer-nav a:nth-child(1) { order: 1; }
  .footer-nav a:nth-child(2) { order: 2; }
  .footer-nav a:nth-child(3) { order: 3; }
  .footer-nav a:nth-child(4) { order: 4; }
  .footer-nav a:nth-child(5) { order: 5; }
  .footer-nav a:nth-child(6) { order: 6; }
  .footer-nav a:nth-child(7) { order: 7; display: block; }
  .footer-nav a:nth-child(8) { order: 8; display: block; }

  /* 相談促進 SP */
  .trust-urgency {
    margin-top: calc(61 / 375.2 * 100vw);
    padding: calc(51 / 375.2 * 100vw) calc(39 / 375.2 * 100vw) calc(43 / 375.2 * 100vw);
  }

  .trust-urgency__title--pc { display: none; }
  .trust-urgency__title--sp { display: block; }

  .trust-urgency__title {
    font-size: calc(24.47 / 375.2 * 100vw);
  }

  .trust-urgency__body--pc { display: none; }
  .trust-urgency__body--sp { display: block; }

  .trust-urgency__body {
    font-size: calc(15.6 / 375.2 * 100vw);
    margin-top: calc(20 / 375.2 * 100vw);
    padding: 0;
    text-align: left;
  }

  /* Pricing tables: horizontal scroll on mobile */
  .price-box {
    overflow-x: auto;
  }

  .price-table th,
  .price-table td {
    padding: calc(8 / 375.2 * 100vw) calc(10 / 375.2 * 100vw);
    font-size: calc(17.33 / 375.2 * 100vw);
  }

  /* Contact form */
  .sec-contact {
    padding: calc(71/375.2*100vw) calc(25/375.2*100vw) calc(14/375.2*100vw);
  }

  .contact-title {
    font-size: calc(24.93/375.2*100vw);
  }

  .contact-form-wrap {
    padding: calc(32/375.2*100vw) calc(18/375.2*100vw);
    margin-top: calc(40/375.2*100vw);
  }

  .contact-form-inner {
    padding: calc(39/375.2*100vw) calc(16/375.2*100vw) calc(61/375.2*100vw);
  }

  .contact-fields > * + * { margin-top: calc(19/375.2*100vw); }
  .contact-fields > *:nth-child(2) { margin-top: calc(27/375.2*100vw); }

  .form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(9/375.2*100vw);
  }

  .form-row--radio {
    gap: calc(17/375.2*100vw);
  }

  .form-row--top {
    align-items: flex-start;
    gap: calc(9/375.2*100vw);
  }

  .form-label {
    font-size: calc(15.2/375.2*100vw);
    width: auto;
  }

  .form-label--top {
    padding-top: 0;
  }

  .form-radios {
    gap: calc(13/375.2*100vw);
  }

  .form-radio {
    font-size: calc(14.53/375.2*100vw);
    gap: calc(5/375.2*100vw);
  }

  .form-input {
    width: 100%;
    padding: calc(12/375.2*100vw);
    font-size: calc(11.87/375.2*100vw);
  }

  .form-textarea {
    width: 100%;
    height: calc(213/375.2*100vw);
    padding: calc(12/375.2*100vw);
    font-size: calc(11.87/375.2*100vw);
  }

  .form-privacy {
    margin-top: calc(44/375.2*100vw);
  }

  .form-privacy__heading {
    font-size: calc(11.73/375.2*100vw);
  }

  .form-privacy__br { display: inline; }

  .form-privacy__body {
    height: calc(171.4/375.2*100vw);
    margin-top: calc(27/375.2*100vw);
    padding: calc(17/375.2*100vw) calc(11/375.2*100vw);
    font-size: calc(11.07/375.2*100vw);
  }

  .form-privacy__body p { margin-bottom: calc(18/375.2*100vw); }

  .form-submit {
    margin-top: calc(46/375.2*100vw);
  }

  .btn-submit {
    width: calc(170.4/375.2*100vw);
    height: calc(44/375.2*100vw);
    border-width: 1px;
    font-size: calc(14.67/375.2*100vw);
  }

  /* Cases section SP */
  .sec-cases {
    padding: calc(75 / 375.2 * 100vw) 0;
    background-image:
      radial-gradient(circle, #dedede 4px, transparent 4px),
      radial-gradient(circle, #dedede 4px, transparent 4px);
    background-size: 100px 100px;
    background-position: 0 -25px, 50px 25px;
  }

  .cases-title--pc { display: none; }
  .cases-title--sp { display: block; }

  .cases-title {
    font-size: calc(23.33 / 375.2 * 100vw);
  }

  .cases-outer {
    margin-top: calc(32 / 375.2 * 100vw);
  }

  .cases-viewport {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-left: calc(22 / 375.2 * 100vw);
    scroll-padding-left: calc(22 / 375.2 * 100vw);
    scroll-padding-right: calc(22 / 375.2 * 100vw);
  }

  .cases-viewport::-webkit-scrollbar {
    display: none;
  }

  .cases-track {
    gap: calc(11 / 375.2 * 100vw);
    padding-left: 0;
    transform: none !important;
  }

  .cases-track::after {
    content: '';
    flex: 0 0 calc(11 / 375.2 * 100vw);
  }

  .case-item:last-child {
    scroll-snap-align: end;
  }

  .case-item {
    gap: calc(6 / 375.2 * 100vw);
    scroll-snap-align: start;
    width: calc(150 / 375.2 * 100vw);
  }

  .case-item__imgs--double {
    gap: calc(4 / 375.2 * 100vw);
  }

  .case-item__img {
    width: calc(150 / 375.2 * 100vw);
    height: calc(167 / 375.2 * 100vw);
    border-radius: calc(8 / 375.2 * 100vw);
  }

  .case-item__img-label {
    top: 0;
    left: 0;
    padding: calc(3 / 375.2 * 100vw) calc(8 / 375.2 * 100vw);
    font-size: calc(8 / 375.2 * 100vw);
    border-radius: calc(8 / 375.2 * 100vw) 0 0 0;
  }

  .case-item__imgs--double .case-item__img {
    height: calc(81 / 375.2 * 100vw);
  }

  .case-item__cat {
    padding: calc(4 / 375.2 * 100vw);
    border-radius: calc(4 / 375.2 * 100vw);
    font-size: calc(7.73 / 375.2 * 100vw);
  }

  .case-item__title {
    font-size: calc(10.93 / 375.2 * 100vw);
  }

  .case-item__details tr + tr th,
  .case-item__details tr + tr td {
    border-top-width: calc(1 / 375.2 * 100vw);
  }

  .case-item__detail-label {
    font-size: calc(8 / 375.2 * 100vw);
    padding: calc(4 / 375.2 * 100vw) calc(6 / 375.2 * 100vw);
  }

  .case-item__detail-value {
    font-size: calc(9 / 375.2 * 100vw);
    padding: calc(4 / 375.2 * 100vw) calc(6 / 375.2 * 100vw);
  }

  .cases-nav {
    display: none;
  }

  .cases-scrollbar {
    display: block;
    margin: calc(18 / 375.2 * 100vw) calc(22 / 375.2 * 100vw) 0;
    height: calc(4 / 375.2 * 100vw);
    background: #d9e8f5;
    border-radius: 9999px;
    overflow: hidden;
  }

  .cases-scrollbar__thumb {
    height: 100%;
    background: #3a92ca;
    border-radius: 9999px;
    transition: transform .1s linear, width .1s linear;
    transform-origin: left center;
  }
}

/* ============================================================
   Hover effects (pointer devices only)
   ============================================================ */
@media (hover: hover) {
  .site-nav ul li a:hover {
    opacity: 1;
    color: #3a92ca;
  }

  .header-tel__num:hover { opacity: 0.75; }

  .hero-side-cta__link:hover { opacity: 0.75; }

  a:hover .banner-10off { opacity: 0.75; }

  a:hover .steps-banner { opacity: 0.75; }

  .cta-tel__num:hover { opacity: 0.75; }
  .cta-tel__alt-num:hover { opacity: 0.75; }

  .cta-btn:hover { opacity: 0.75; }

  .sv-card--blue .sv-card__btn:hover,
  .sv-card--green .sv-card__btn:hover {
    border-color: transparent;
    color: #fff;
  }

  .sv-card--blue .sv-card__btn:hover::after,
  .sv-card--green .sv-card__btn:hover::after {
    opacity: 1;
  }

  .news-btn:hover {
    background: #0f8bc1;
    color: #ffffff;
    border-color: #0f8bc1;
  }

  .links-imgs a:hover { opacity: 0.75; }
  .links-tel__num:hover { opacity: 0.75; }
  .links-tel__alt-num:hover { opacity: 0.75; }

  .btn-submit:hover {
    background: #ffffff;
    color: #000000;
  }

  .footer-nav a:hover { color: #3a92ca; }

  .social-link:hover { opacity: 0.75; }

  .archive-item:hover .archive-item__title a { color: #0f8bc1; }
}

/* ============================================================
   News Archive Page
   ============================================================ */

/* Hero */
.archive-hero {
  background: linear-gradient(to right, #5db5e6, #446898);
  padding: calc(48 / 1366 * 100vw) calc(131 / 1366 * 100vw) calc(40 / 1366 * 100vw);
}

.archive-hero__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(36 / 1366 * 100vw);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-bottom: calc(12 / 1366 * 100vw);
}

.archive-breadcrumb {
  display: flex;
  align-items: center;
  gap: calc(8 / 1366 * 100vw);
  font-size: calc(13 / 1366 * 100vw);
  color: rgba(255,255,255,.75);
}

.archive-breadcrumb a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s;
}

.archive-breadcrumb a:hover { color: #fff; }

.archive-breadcrumb__sep { opacity: .6; }

/* Category filter */
.archive-cats {
  background: #f1f9ff;
  border-bottom: 1px solid #d0e8f8;
}

.archive-cats__inner {
  max-width: calc(900 / 1366 * 100vw);
  margin: 0 auto;
  padding: calc(20 / 1366 * 100vw) 0;
  display: flex;
  flex-wrap: wrap;
  gap: calc(10 / 1366 * 100vw);
}

.archive-cat-btn {
  display: inline-flex;
  align-items: center;
  padding: calc(6 / 1366 * 100vw) calc(20 / 1366 * 100vw);
  border: calc(1.5 / 1366 * 100vw) solid #3a92ca;
  border-radius: 9999px;
  font-size: calc(13 / 1366 * 100vw);
  font-weight: 700;
  color: #3a92ca;
  background: #fff;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.archive-cat-btn.is-active,
.archive-cat-btn:hover {
  background: #3a92ca;
  color: #fff;
}

/* Main content */
.archive-main {
  background: #fff;
  padding: calc(40 / 1366 * 100vw) calc(131 / 1366 * 100vw) calc(80 / 1366 * 100vw);
}

.archive-main__inner {
  max-width: calc(900 / 1366 * 100vw);
  margin: 0 auto;
}

/* List */
.archive-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.archive-item {
  display: flex;
  gap: calc(28 / 1366 * 100vw);
  padding: calc(28 / 1366 * 100vw) 0;
  border-bottom: 1px solid #e8f0f8;
  align-items: flex-start;
  position: relative;
}

.archive-item:first-child {
  border-top: 1px solid #e8f0f8;
}

.archive-item__thumb {
  flex-shrink: 0;
  width: calc(200 / 1366 * 100vw);
  aspect-ratio: 4 / 3;
  border-radius: calc(8 / 1366 * 100vw);
  overflow: hidden;
  background: #f1f9ff;
  display: block;
}

.archive-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.archive-item__thumb:hover .archive-item__img {
  transform: scale(1.04);
}

.archive-item__no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ebf4ff;
}

.archive-item__placeholder {
  width: 60%;
  height: auto;
  opacity: .4;
}

.archive-item__body {
  flex: 1;
  min-width: 0;
}

.archive-item__meta {
  display: flex;
  align-items: center;
  gap: calc(12 / 1366 * 100vw);
  margin-bottom: calc(14 / 1366 * 100vw);
}

.archive-item__date {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(13.4 / 1366 * 100vw);
  color: #000000;
  font-weight: normal;
  letter-spacing: 0.065em;
  line-height: 1.48;
  white-space: nowrap;
}

.archive-item__cat {
  display: inline-block;
  padding: calc(3 / 1366 * 100vw) calc(14 / 1366 * 100vw);
  background: #ffffff;
  border-radius: 9999px;
  border: 1px solid #0f8bc1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(11.5 / 1366 * 100vw);
  color: #0f8bc1;
  font-weight: normal;
  letter-spacing: 0.065em;
  line-height: 1.48;
  white-space: nowrap;
}

.archive-item__title {
  font-size: calc(17 / 1366 * 100vw);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: calc(8 / 1366 * 100vw);
}

.archive-item__title a {
  color: #1a1a2e;
  text-decoration: none;
  transition: color .2s;
}

.archive-item__link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.archive-item__excerpt {
  font-size: calc(13 / 1366 * 100vw);
  color: #666;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pagination */
.archive-pagination {
  margin-top: calc(48 / 1366 * 100vw);
  display: flex;
  justify-content: center;
}

.archive-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: calc(6 / 1366 * 100vw);
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(40 / 1366 * 100vw);
  height: calc(40 / 1366 * 100vw);
  border: 1px solid #d0e8f8;
  border-radius: calc(6 / 1366 * 100vw);
  font-size: calc(14 / 1366 * 100vw);
  color: #3a92ca;
  text-decoration: none;
  background: #fff;
  transition: background .2s, color .2s;
}

.archive-pagination .page-numbers.current {
  background: #25519e;
  border-color: #25519e;
  color: #fff;
}

.archive-pagination .page-numbers:hover:not(.current) {
  background: #ebf4ff;
}

.archive-pagination .page-numbers.dots {
  border: none;
  background: none;
  color: #aaa;
}

/* Empty */
.archive-empty {
  text-align: center;
  color: #888;
  font-size: calc(15 / 1366 * 100vw);
  padding: calc(60 / 1366 * 100vw) 0;
}

/* ---- News Archive SP ---- */
@media (max-width: 600px) {
  .archive-hero {
    padding: calc(32 / 375.2 * 100vw) calc(24 / 375.2 * 100vw) calc(28 / 375.2 * 100vw);
  }

  .archive-hero__title {
    font-size: calc(24 / 375.2 * 100vw);
    margin-bottom: calc(8 / 375.2 * 100vw);
  }

  .archive-breadcrumb {
    font-size: calc(11 / 375.2 * 100vw);
    gap: calc(6 / 375.2 * 100vw);
    align-items: flex-start;
  }

  .archive-cats__inner {
    max-width: 100%;
    padding: calc(14 / 375.2 * 100vw) calc(20 / 375.2 * 100vw);
    gap: calc(8 / 375.2 * 100vw);
  }

  .archive-cat-btn {
    padding: calc(5 / 375.2 * 100vw) calc(14 / 375.2 * 100vw);
    font-size: calc(11.5 / 375.2 * 100vw);
    border-width: 1px;
  }

  .archive-main {
    padding: calc(24 / 375.2 * 100vw) calc(20 / 375.2 * 100vw) calc(48 / 375.2 * 100vw);
  }

  .archive-main__inner { max-width: 100%; }

  .archive-item {
    flex-direction: column;
    gap: calc(14 / 375.2 * 100vw);
    padding: calc(22 / 375.2 * 100vw) 0;
  }

  .archive-item__thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: calc(6 / 375.2 * 100vw);
  }

  .archive-item__meta {
    gap: calc(8 / 375.2 * 100vw);
    margin-bottom: calc(10 / 375.2 * 100vw);
  }

  .archive-item__date { font-size: calc(10.8 / 375.2 * 100vw); }

  .archive-item__cat {
    padding: calc(2 / 375.2 * 100vw) calc(10 / 375.2 * 100vw);
    font-size: calc(9.47 / 375.2 * 100vw);
    border-width: 1px;
  }

  .archive-item__title { font-size: calc(14.5 / 375.2 * 100vw); }

  .archive-item__excerpt {
    font-size: calc(12 / 375.2 * 100vw);
    -webkit-line-clamp: 3;
  }

  .archive-pagination { margin-top: calc(32 / 375.2 * 100vw); }

  .archive-pagination .nav-links { gap: calc(4 / 375.2 * 100vw); }

  .archive-pagination .page-numbers {
    width: calc(36 / 375.2 * 100vw);
    height: calc(36 / 375.2 * 100vw);
    font-size: calc(12 / 375.2 * 100vw);
    border-radius: calc(4 / 375.2 * 100vw);
  }

  .archive-empty { font-size: calc(13 / 375.2 * 100vw); }

  /* SP固定CTAバー */
  .sp-bottom-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #fff;
    border-radius: calc(16 / 375.2 * 100vw) calc(16 / 375.2 * 100vw) 0 0;
    overflow: hidden;
    box-shadow: 0 calc(-4 / 375.2 * 100vw) calc(20 / 375.2 * 100vw) rgba(0,0,0,.18);
  }

  .sp-bottom-cta__inner {
    display: flex;
  }

  .sp-bottom-cta__btn {
    flex: 1 1 0%;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(14 / 375.2 * 100vw) calc(6 / 375.2 * 100vw);
    gap: calc(8 / 375.2 * 100vw);
    text-decoration: none;
  }

  .sp-bottom-cta__btn--tel { background: #25519e; }
  .sp-bottom-cta__btn--line { 
    background: #06c755;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .sp-bottom-cta__btn--contact { background: #e06820; }

  .sp-bottom-cta__top {
    display: flex;
    align-items: center;
    gap: calc(5 / 375.2 * 100vw);
  }

  .sp-bottom-cta__icon {
    width: calc(30 / 375.2 * 100vw);
    height: calc(30 / 375.2 * 100vw);
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .sp-bottom-cta__icon img,
  .sp-bottom-cta__icon svg {
    width: calc(18 / 375.2 * 100vw);
    height: calc(18 / 375.2 * 100vw);
    display: block;
  }

  .sp-bottom-cta__label {
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: calc(12 / 375.2 * 100vw);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.065em;
  }

  .sp-bottom-cta__sub {
    background: rgba(255,255,255,.9);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: calc(10 / 375.2 * 100vw);
    font-weight: 700;
    padding: calc(4 / 375.2 * 100vw) calc(0 / 375.2 * 100vw);
    border-radius: calc(100 / 375.2 * 100vw);
    white-space: nowrap;
    width: 100%;
    text-align: center;
  }

  .sp-bottom-cta__btn--tel     .sp-bottom-cta__sub { color: #25519e; }
  .sp-bottom-cta__btn--line    .sp-bottom-cta__sub { color: #06c755; }
  .sp-bottom-cta__btn--contact .sp-bottom-cta__sub { color: #e06820; }
}

/* ---- News Single ---- */
.single-news-main {
  padding-top: calc(48 / 1366 * 100vw);
  padding-bottom: calc(80 / 1366 * 100vw);
}

.single-news-meta {
  margin-bottom: calc(24 / 1366 * 100vw);
}

.single-news-thumb {
  margin-bottom: calc(36 / 1366 * 100vw);
  border-radius: calc(8 / 1366 * 100vw);
  overflow: hidden;
}

.single-news-thumb__img {
  width: 100%;
  height: auto;
  display: block;
}

.single-news-body {
  font-size: calc(15 / 1366 * 100vw);
  line-height: 1.9;
  color: #333;
  margin-bottom: calc(60 / 1366 * 100vw);
}

.single-news-body p { margin-bottom: calc(20 / 1366 * 100vw); }
.single-news-body h2 {
  font-size: calc(20 / 1366 * 100vw);
  font-weight: 700;
  margin: calc(36 / 1366 * 100vw) 0 calc(16 / 1366 * 100vw);
  padding-left: calc(14 / 1366 * 100vw);
  border-left: calc(4 / 1366 * 100vw) solid #3a92ca;
}
.single-news-body h3 {
  font-size: calc(17 / 1366 * 100vw);
  font-weight: 700;
  margin: calc(28 / 1366 * 100vw) 0 calc(12 / 1366 * 100vw);
}
.single-news-body img {
  max-width: 100%;
  height: auto;
  border-radius: calc(6 / 1366 * 100vw);
}
.single-news-body a {
  color: #3a92ca;
  text-decoration: underline;
}

/* Post navigation */
.single-news-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(50 / 1366 * 100vw);
  padding-top: calc(40 / 1366 * 100vw);
  border-top: 1px solid #e8f0f8;
}

.single-news-nav__prev,
.single-news-nav__next {
  flex: 1;
  min-width: 0;
}

.single-news-nav__next { text-align: right; }

.single-news-nav__link {
  display: inline-flex;
  align-items: center;
  gap: calc(8 / 1366 * 100vw);
  font-size: calc(14 / 1366 * 100vw);
  color: #3a92ca;
  text-decoration: none;
  transition: opacity .2s;
  max-width: 100%;
}

.single-news-nav__link:hover { opacity: .7; }

.single-news-nav__label {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.single-news-nav__arrow {
  flex-shrink: 0;
  font-size: calc(14 / 1366 * 100vw);
}

.single-news-nav__back {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: calc(10 / 1366 * 100vw) calc(28 / 1366 * 100vw);
  border: 1px solid #3a92ca;
  border-radius: 9999px;
  font-size: calc(14 / 1366 * 100vw);
  font-weight: 700;
  color: #3a92ca;
  background: #fff;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.single-news-nav__back:hover {
  background: #3a92ca;
  color: #fff;
}

/* ---- News Single SP ---- */
@media (max-width: 600px) {
  .single-news-main {
    padding-top: calc(28 / 375.2 * 100vw);
    padding-bottom: calc(48 / 375.2 * 100vw);
  }

  .single-news-meta { margin-bottom: calc(16 / 375.2 * 100vw); }

  .single-news-thumb {
    margin-bottom: calc(24 / 375.2 * 100vw);
    border-radius: calc(6 / 375.2 * 100vw);
  }

  .single-news-body {
    font-size: calc(13.5 / 375.2 * 100vw);
    margin-bottom: calc(40 / 375.2 * 100vw);
  }

  .single-news-body p { margin-bottom: calc(14 / 375.2 * 100vw); }

  .single-news-body h2 {
    font-size: calc(16 / 375.2 * 100vw);
    margin: calc(28 / 375.2 * 100vw) 0 calc(12 / 375.2 * 100vw);
    padding-left: calc(10 / 375.2 * 100vw);
    border-left-width: calc(3 / 375.2 * 100vw);
  }

  .single-news-body h3 {
    font-size: calc(14.5 / 375.2 * 100vw);
    margin: calc(22 / 375.2 * 100vw) 0 calc(10 / 375.2 * 100vw);
  }

  .single-news-nav {
    flex-direction: column;
    align-items: stretch;
    gap: calc(14 / 375.2 * 100vw);
    padding-top: calc(28 / 375.2 * 100vw);
  }

  .single-news-nav__prev,
  .single-news-nav__next { text-align: left; }

  .single-news-nav__link { font-size: calc(12 / 375.2 * 100vw); }

  .single-news-nav__arrow {
    font-size: calc(12 / 375.2 * 100vw);
  }

  .single-news-nav__back {
    text-align: center;
    justify-content: center;
    padding: calc(10 / 375.2 * 100vw) calc(20 / 375.2 * 100vw);
    font-size: calc(12 / 375.2 * 100vw);
    order: -1;
  }
}
