/* ========================================
   RESET CSS
======================================== */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ========================================
   FOUNDATION / LAYOUT (FLOCSS: layout l-)
======================================== */

body.l-body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.l-container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 16px;
}

.l-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.l-footer {
  background-color: #143e2f;
}

/* ========================================
   PROJECT: HEADER
======================================== */

.p-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
}

.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 97px;
  max-width: 1366px;
  padding: 0 25px;
}

.p-header__brand-lead {
  font-size: 17px;
  margin: 0;
  letter-spacing: 0.01em;
}

.p-header__brand-name {
  display: inline-block;
  margin-top: 4px;
  padding: 0 12px;
  background-color: #143e2f;
}

.p-header__brand-text {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.p-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* フローティングバナー（デスクトップ表示では非表示） */
.p-header__actions--floating {
  display: none;
}

/* キラッと光るアニメーション */
@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.p-header__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 304px;
  padding: 7px 14px;
  background: linear-gradient(135deg,
      #f65107 0%,
      #f2750a 50%,
      #f08d0c 100%);
  border-radius: 10px;
}

.p-header__badge-text {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.p-header__tel {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.p-header__tel-icon {
  width: 44px;
  height: 44px;
  background-image: url("../img/ico-tel.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.p-header__tel-number {
  color: #143E2F;
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.02em;
}

/* ========================================
   PROJECT: HERO SECTION
======================================== */

.p-hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
}

.p-hero__top-band {
  background-color: #e9e9e9;
}

.p-hero-top {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}

.p-hero-bubble {
  --bubble-base: 105px;
  --bubble-height: 45px;
  --bubble-body: 97px;
  --bubble-gradient: linear-gradient(258deg, #143e2f 0%, #008354 100%);
  width: 100%;
  height: calc(var(--bubble-body) + var(--bubble-height));
  margin: 0 auto -45px;
  padding: 0 16px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  background: var(--bubble-gradient);
  clip-path: polygon(0 0,
      100% 0,
      100% var(--bubble-body),
      calc(50% + var(--bubble-base) / 2) var(--bubble-body),
      50% calc(var(--bubble-body) + var(--bubble-height)),
      calc(50% - var(--bubble-base) / 2) var(--bubble-body),
      0 var(--bubble-body));
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.p-hero-bubble__text {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.02em;
  padding: 6px 16px;
  border-bottom: 1px solid #FFF;
  margin: 0;
}

.p-hero-bubble__text span {
  color: #FFDA75;
  padding-left: 5px;
}

#js-current-time {
  color: #FFF;
}

.p-hero-bubble__text strong {
  font-size: 48px;
  letter-spacing: 0.02em;
}

.p-hero-thumbs {
  width: 100%;
}

.p-hero-thumbs__img {
  width: 100%;
}

.p-hero__main {
  position: relative;
}

.p-hero__content {
  display: block;
}

.p-hero-copy {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-bottom: 110px;
  height: 650px;
  background: url(../img/hero-copy-bg.jpg) no-repeat center right 30% / cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p-hero-copy::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  border-top: 55px solid transparent;
  border-right: 50vw solid transparent;
  border-left: 50vw solid #104E37;
  border-bottom: 55px solid #104E37;
}

.p-hero-copy .l-container {
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.p-hero-copy__lead {
  font-size: 52px;
  font-weight: 900;
  line-height: 104px;
  text-stroke: 8px white;
  -webkit-text-stroke: 8px white;
  position: relative;
}

.p-hero-copy__main {
  font-weight: 900;
  line-height: 104px;
  background: linear-gradient(90deg, #f08d0c, #fa3104);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-bottom: 4px solid #1A5BBE;
  padding-bottom: 20px;
  width: fit-content;
  text-stroke: 8px white;
  -webkit-text-stroke: 8px white;
  display: flex;
  align-items: baseline;
}

.p-hero-copy__main-word--large {
  font-size: 100px;
  position: relative;
}

.p-hero-copy__main-word--small {
  font-size: 60px;
  position: relative;
}

.p-hero-copy__lead::after {
  content: "車・バイクのトラブル";
  background: linear-gradient(90deg, #f08d0c, #fa3104);
}

.p-hero-copy__main-word--large::after {
  content: "緊急";
  background: linear-gradient(90deg, #f08d0c, #F2740A);
}

.p-hero-copy__main-word--small::after {
  content: "で駆け付けます！";
  background: linear-gradient(90deg, #F3720A, #fa3104);
}

.p-hero-copy__lead::after,
.p-hero-copy__main-word--large::after,
.p-hero-copy__main-word--small::after {
  position: absolute;
  top: 0;
  left: 0;
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-stroke: 0px;
  -webkit-text-stroke: 0px;
}

.p-hero-copy__area {
  position: relative;
  max-width: 1200px;
  height: 160px;
  margin: auto;
}

.p-hero-copy__area::after {
  content: "";
  position: absolute;
  width: calc((100% - 70%) + (100vw - 1152px) / 2);
  height: 111px;
  top: 48px;
  left: 70%;
  background: #143E2F;
  z-index: -1;
}

.p-hero-copy__area .l-container {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(to right, #008354, #143E2F);
  width: fit-content;
  height: 111px;
  padding-right: 140px;
  position: absolute;
  top: 48px;
  right: -10px;
  z-index: 1;
}

.p-hero-copy__area-text {
  margin: 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.p-hero-copy__area-text .dots {
  font-size: 42px;
  background-image: radial-gradient(circle at center, #fff 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.2em;
  padding-top: .1em;
}

.p-hero-copy__area-map {
  width: 128px;
  height: 142px;
  position: absolute;
  top: -15px;
  right: 10px;
}

.p-hero-copy__medal {
  position: relative;
  width: 100vw;
  max-width: 1366px;
  padding: 0 37px;
  left: 50%;
  transform: translateX(-50%);
  height: 10px;
  z-index: 1;
}

.p-hero-copy__medal-inner {
  background: url(../img/medal.svg) no-repeat center / cover;
  width: 276px;
  height: 313px;
  padding-bottom: 37px;
  position: absolute;
  top: -120px;
  left: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-hero-copy__medal-text {
  margin: 0;
  color: #143E2F;
  font-size: 42px;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
}

.p-hero-copy__medal-text span {
  color: #F84406;
  font-size: 80px;
  letter-spacing: 0;
}

.p-hero-price {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 30px 0 80px;
  background: url(../img/hero-price-bg.jpg) no-repeat bottom center / cover;
}

.p-hero-price .l-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.p-hero-price__guarantee {
  margin: 0 0 15px;
  text-align: center;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
}

.p-hero-price__guarantee::before,
.p-hero-price__guarantee::after {
  width: 2px;
  height: 40px;
  content: "";
  background-color: #ffffff;
}

.p-hero-price__guarantee::before {
  margin-right: 0.5em;
  transform: rotate(-45deg) translateY(10px);
}

.p-hero-price__guarantee::after {
  margin-left: 0.5em;
  transform: rotate(45deg) translateY(10px);
}

.p-hero-price__comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 2px solid #FFDA75;
  width: fit-content;
  margin: 0 auto;
}

.p-hero-price__original {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.p-hero-price__regular {
  font-size: 42px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.p-hero-price__regular-number {
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  font-size: 65px;
  font-style: italic;
  position: relative;
  display: inline-block;
}

.p-hero-price__regular-number::after {
  content: "";
  position: absolute;
  left: 8%;
  bottom: 5%;
  width: 100%;
  height: 8px;
  background-color: #f84406;
  transform: rotate(-13deg);
  transform-origin: left bottom;
}

.p-hero-price__regular-unit {
  font-size: 31px;
  padding-left: 5px;
}

.p-hero-price__campaign-tag {
  display: inline-block;
  margin: 0;
  padding: 13px 20px;
  border-radius: 13px;
  background-color: #ffffff;
  color: #f84406;
  font-weight: 700;
  font-size: 31px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.p-hero-price__triangle {
  width: 74px;
  height: 102px;
  padding-top: 20px;
}

.p-hero-price__discount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.p-hero-price__value-wrap {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 8px;
  position: relative;
}

.p-hero-price__value-wrap::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: -10px;
  width: 100%;
  height: 24px;
  background-color: #FFFFFF;
  z-index: -1;
}

.p-hero-price__value {
  font-size: 120px;
  font-weight: 700;
  font-style: italic;
  color: #ffe260;
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1;
  letter-spacing: 0.02em;
  text-stroke: 32px #143E2F;
  -webkit-text-stroke: 32px #143E2F;
  paint-order: stroke;
}

.p-hero-price__suffix {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.p-hero-price__tax {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.p-hero-price__yen {
  font-size: 52px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.p-hero-price__credit {
  margin: 0;
  font-size: 24px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.p-hero-price__credit-icon {
  width: 48px;
  height: 48px;
  display: block;
  flex-shrink: 0;
}

.p-hero-medals {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.p-hero-medal {
  background: url(../img/medal2.svg) no-repeat center center / cover;
  width: 237px;
  height: 269px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.p-hero-medal__text {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #143E2F;
  text-align: center;
}

.p-hero-medal__text strong {
  font-size: 36px;
  color: #F65107;
}

.p-hero-medal__text .dots {
  line-height: 52px;
  display: inline-block;
  position: relative;
}

.p-hero-medal__text .dots::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F65107;
}

.p-hero-medal__text .dots.min::before {
  top: -4px;
}

.p-hero-achievement {
  display: flex;
  justify-content: center;
}

.p-hero__cta-band {
  background: url(../img/hero-cta-bg.jpg) no-repeat center center / cover;
  padding: 0;
}

.p-cta-main {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #ffffff;
  max-width: 1188px;
}

.p-cta-main__image {
  flex-shrink: 0;
}

.p-cta-main__lady {
  width: 265px;
  height: 379px;
  display: block;
  object-fit: contain;
}

.p-cta-main__content {
  padding: 60px 0 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.p-cta-main__text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.p-cta-main__note {
  font-size: 20px;
  background-color: #ffffff;
  color: #f1840c;
  line-height: 1;
  font-weight: 700;
  padding: 12px 38px;
  border-radius: 20px;
  display: inline-block;
}

.p-cta-main__headline {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  line-height: 1.4;
}

.p-cta-main__headline::before,
.p-cta-main__headline::after {
  width: 2px;
  height: 40px;
  content: "";
  background-color: #ffffff;
}

.p-cta-main__headline::before {
  margin-right: 0.5em;
  transform: rotate(-45deg) translateY(-5px);
}

.p-cta-main__headline::after {
  margin-left: 0.5em;
  transform: rotate(45deg) translateY(-5px);
}

.p-cta-main__headline strong {
  font-size: 42px;
}

.p-cta-main__call {
  display: flex;
  align-items: center;
  gap: 20px;
}

.p-cta-main__call-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.p-cta-main__tel {
  display: flex;
  align-items: center;
  gap: 6px;
}

.p-cta-main__tel-icon {
  width: 85px;
  height: 85px;
  background-image: url("../img/ico-tel-wh.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.p-cta-main__tel-number {
  font-size: 72px;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
}

.p-cta-main__time {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.p-cta-main__free {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #143E2F;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* ========================================
   PROJECT: SECTION TITLE
======================================== */

.p-section-title {
  margin-bottom: 46px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #000000;
}

.p-section-title__red {
  color: #f65107;
}

.p-section-title__large {
  font-size: 32px;
}

/* ========================================
   PROJECT: TROUBLE
======================================== */

.p-trouble {
  background: url(../img/trouble-bg.jpg) no-repeat center center / cover;
  padding: 117px 0 141px;
  position: relative;
}

.p-trouble::before {
  content: "";
  width: 100%;
  height: 120px;
  background-color: #fffdf7;
  position: absolute;
  bottom: -1px;
  clip-path: polygon(0% 0%, 0% 100%, 50% 100%);
}

.p-trouble::after {
  content: "";
  width: 100%;
  height: 120px;
  background-color: #fffdf7;
  position: absolute;
  bottom: -1px;
  clip-path: polygon(50% 100%, 100% 0%, 100% 100%);
}

.l-container--trouble {
  max-width: 882px;
}

.p-trouble__title {
  color: #fff;
  margin-bottom: 60px;
}

.p-trouble-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 50px;
  justify-content: center;
}

.p-trouble-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.p-trouble-card__image-wrap {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.p-trouble-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-trouble-card__label-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-trouble-card__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.p-trouble-card__label {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.42;
}

/* ========================================
   PROJECT: REASON
======================================== */

.p-reason {
  background-color: #fffdf7;
  padding: 32px 0 64px;
  position: relative;
}

.p-reason__title {
  margin-top: 0;
}

.p-reason-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 67px 40px 92px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-reason-box .p-reason__title {
  margin-bottom: 40px;
}

.p-reason-list {
  display: grid;
  gap: 60px;
}

.p-reason-item {
  display: flex;
  align-items: center;
  gap: 50px;
}

.p-reason-item__medal {
  background: url(../img/medal2.svg) no-repeat center center / cover;
  width: 127px;
  height: 145px;
  padding-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.p-reason-item__medal-text {
  line-height: 0.9;
}

.p-reason-item__medal-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #143e2f;
}

.p-reason-item__medal-number {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 24px;
  font-weight: 700;
  color: #143e2f;
}

.p-reason-item__medal-no {
  font-size: 42px;
  color: #f65107;
  letter-spacing: 0.02em;
}

.p-reason-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-reason-item__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #f65107;
  letter-spacing: 0.02em;
  line-height: 1.42;
  text-decoration-color: #fdf167;
  text-decoration-line: underline;
  text-decoration-thickness: 14px;
  text-underline-offset: -7px;
  text-decoration-skip-ink: none;
}

.p-reason-card__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.42;
  letter-spacing: 0.02em;
  color: #000000;
}

.p-reason-card__text p {
  margin: 0;
}

/* ========================================
   PROJECT: COMPARE
======================================== */

.p-compare {
  background-color: #fffdf7;
  padding: 0 0 120px;
}

.p-compare__title {
  margin-top: 0;
}

.p-compare-table-wrap {
  overflow-x: auto;
  padding: 38px 0 0;
  max-width: 1152px;
  margin: 0 auto;
}

.p-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.p-compare-table th,
.p-compare-table td {
  padding: 9px 16px;
  font-size: 24px;
  color: #747474;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
}


th.p-compare-table__corner {
  width: 180px;
  background: transparent;
  border: none;
}

.p-compare-table__head th {
  border-bottom: none;
}

th.p-compare-table__heading {
  height: 74px;
  font-size: 24px;
  letter-spacing: 0.02em;
  font-weight: 700;
  background-color: #ababab;
  color: #ffffff;
  border-left: 1px solid #ffffff;
}

th.p-compare-table__heading--main {
  font-size: 24px;
  letter-spacing: 0.02em;
  background-color: #f65107;
  border-left: none;
  position: relative;
  z-index: 2;
  position: relative;
  padding: 0 16px 39px;
}

th.p-compare-table__heading--main::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: -2px;
  width: calc(100% + 4px);
  height: 38px;
  background-color: #f65107;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

th.p-compare-table__row-heading {
  height: 64px;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 0.02em;
  background-color: #f2780b;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.p-compare-table__body tr:first-child .p-compare-table__row-heading {
  border-top-left-radius: 20px;
}

.p-compare-table__body tr:last-child .p-compare-table__row-heading {
  border-bottom-left-radius: 20px;
  border-bottom: none;
}

.p-compare-table__em {
  color: #f65107;
  font-size: 32px;
  font-weight: 700;
}

.p-compare-table__highlight {
  color: #f65107;
  font-weight: 700;
}

.p-compare-table__cell--icon {
  color: #f65107;
  font-weight: 700;
  font-size: 24px;
}

.p-compare-table__cell--icon-muted {
  color: #747474;
  font-weight: 700;
  font-size: 24px;
}

.p-compare-table__cell--ok {
  color: #f65107;
  font-weight: 700;
}

.p-compare-table__head th:nth-child(2) {
  border-left: 2px solid #f65107;
  border-right: 2px solid #f65107;
}

.p-compare-table__body td:nth-child(2) {
  border-left: 2px solid #f65107;
  border-right: 2px solid #f65107;
  background: #fff;
}

.p-compare-table__body tr:last-child td:nth-child(2) {
  border-bottom: 2px solid #f65107;
}

.p-compare-table__body td {
  border-left: 1px solid #eeeeee;
}

.p-compare-table__body td:first-child {
  border-left: none;
}

.p-compare-table__body td:last-child {
  border-right: 1px solid #eeeeee;
}

.p-compare-area {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  position: relative;
}

.p-compare-area::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 25%;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 50px solid #f65107;
}

.p-compare-area__box {
  max-width: 1000px;
  width: 100%;
  background-color: #ffffff;
  border: 6px solid #f65107;
  border-radius: 10px;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  overflow: hidden;
}

.p-compare-area__map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 485px;
}

.p-compare-area__map-image {
  display: block;
  width: 70%;
  max-width: 267px;
  height: auto;
  position: relative;
  z-index: 1;
}

.p-compare-area__map-bg {
  position: absolute;
  max-width: 485px;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #FDF167;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.p-compare-area__content {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.p-compare-area__badge {
  display: inline-block;
  width: fit-content;
  padding: 16px 34px;
  background-color: #f65107;
  border-radius: 70px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.42;
}

.p-compare-area__desc {
  margin: 0;
  font-size: 24px;
  line-height: 1.42;
  letter-spacing: 0.02em;
  text-align: center;
}

.p-compare-area__prefectures {
  color: #f65107;
  font-size: 32px;
  font-weight: 700;
}

.p-compare-area__text {
  color: #000000;
  font-size: 24px;
  font-weight: 700;
}

/* ========================================
   PROJECT: VOICE
======================================== */

.p-voice {
  background-color: #fffdf7;
  padding: 88px 0 96px;
}

.p-voice__title {
  margin: 0 0 45px;
  text-align: center;
  color: #000000;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  line-height: 1;
}

.p-voice__title-red {
  color: #f65107;
  font-size: 32px;
}

.p-voice__title::before,
.p-voice__title::after {
  width: 2px;
  height: 40px;
  content: "";
  background-color: #000000;
}

.p-voice__title::before {
  margin-right: 1.5em;
  transform: rotate(-45deg) translateY(10px);
}

.p-voice__title::after {
  margin-left: 1.5em;
  transform: rotate(45deg) translateY(10px);
}

.p-voice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 68px 54px;
  justify-content: center;
  max-width: 1022px;
  margin: 0 auto;
}

.p-voice-card {
  position: relative;
  max-width: 484px;
  flex: 1;
  min-width: 400px;
  background-color: #ffe3c6;
  border-radius: 10px;
  padding: 18px 20px 20px;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.1));
  overflow: visible;
}

.p-voice-card::before {
  content: "";
  position: absolute;
  bottom: -40px;
  right: 36px;
  width: 0;
  height: 0;
  border-top: 46px solid #ffe3c6;
  border-left: 89px solid transparent;
  z-index: 1;
}

.p-voice-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 36px;
  width: 89px;
  height: 10px;
  background-color: #ffe3c6;
  border-bottom-right-radius: 10px;
}

.p-voice-card__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.p-voice-card__icon {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background-color: #ffffff;
  background-size: auto 70px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.p-voice-card__icon.man {
  background-image: url("../img/ico-man.svg");
}

.p-voice-card__icon.woman {
  background-image: url("../img/ico-woman.svg");
}

.p-voice-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-voice-card__meta-main {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.02em;
  line-height: 1.42;
}

.p-voice-card__meta-sub {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.02em;
  line-height: 1.42;
}

.p-voice-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.42;
  letter-spacing: 0.02em;
  color: #000000;
}

.p-voice-card__text-emphasis {
  color: #f65107;
  font-weight: 700;
}

/* ========================================
   PROJECT: FAQ
======================================== */

.p-faq {
  background-color: #f1f1f1;
  padding: 83px 0 107px;
}

.p-faq__inner {
  max-width: 840px;
  margin: 0 auto;
}

.p-faq-list {
  display: grid;
  gap: 20px;
}

.p-faq-item {
  margin-bottom: 0;
}

.p-faq-item__button {
  width: 100%;
  height: 111px;
  padding: 0 33px;
  display: flex;
  align-items: center;
  gap: 32px;
  background-color: #ffffff;
  border: none;
  border-radius: 10px;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.p-faq-item__q-mark {
  font-size: 42px;
  font-weight: 700;
  color: #143e2f;
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.p-faq-item__question {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.02em;
  line-height: 1.42;
}

.p-faq-item__toggle {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-faq-item__toggle::before,
.p-faq-item__toggle::after {
  content: "";
  position: absolute;
  background-color: #ababab;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.p-faq-item__toggle::before {
  width: 3px;
  height: 21px;
  transform: rotate(0deg);
}

.p-faq-item__toggle::after {
  width: 21px;
  height: 3px;
}

.p-faq-item.is-open .p-faq-item__toggle::before {
  transform: rotate(90deg);
  opacity: 0;
}

.p-faq-item.is-open .p-faq-item__toggle::after {
  transform: rotate(0deg);
  opacity: 1;
}

.p-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.p-faq-item.is-open .p-faq-item__answer {
  max-height: 500px;
  transition: max-height 0.3s ease-in, padding 0.3s ease-in;
}

.p-faq-item__answer-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  max-width: 840px;
  margin: 0 auto;
  padding: 27px 33px 17px;
}

.p-faq-item__a-mark {
  font-size: 42px;
  font-weight: 700;
  color: #143e2f;
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.p-faq-item__answer-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.42;
  letter-spacing: 0.02em;
  color: #000000;
}

.p-faq-item__answer-text p {
  margin: 0;
}

.p-faq-item__answer-text--strong {
  font-weight: 700;
}

/* ========================================
   PROJECT: FOOTER
======================================== */

.p-footer__inner {
  height: 80px;
}

/* ========================================
   UTILITY (FLOCSS: utility u-)
======================================== */

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

@media (min-width: 768px) {
  .u-hidden-sp {
    display: inline;
  }
}

.u-inline-block {
  display: inline-block;
}

.u-1200-br {
  display: none;
}

@media (max-width: 1200px) {
  .u-1200-br {
    display: block !important;
  }
}

.u-tb-br {
  display: none;
}

@media (max-width: 1023px) {
  .u-tb-br {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .u-tb-br {
    display: none;
  }
}

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

@media (max-width: 767px) {
  .u-sp-br {
    display: block !important;
  }
}

/* ========================================
   RESPONSIVE: TABLET
======================================== */
@media (max-width: 1200px) {
  .p-hero-copy__area::after {
    left: 100%;
  }

  .p-cta-main__tel-number {
    font-size: 64px;
  }
}

@media (max-width: 1023px) {
  .l-container {
    padding: 0 20px;
  }

  .p-header__brand-lead {
    font-size: 14px;
  }

  .p-header__brand-text {
    font-size: 18px;
  }

  .p-header__badge {
    width: auto;
  }

  .p-header__badge-text {
    font-size: 14px;
  }

  .p-header__tel-icon {
    width: 36px;
    height: 36px;
  }

  .p-header__tel-number {
    font-size: 28px;
  }

  .p-hero-bubble {
    --bubble-base: 80px;
    --bubble-height: 40px;
    --bubble-body: 75px;
    margin-bottom: -40px;
  }

  .p-hero-bubble__text {
    font-size: 24px;
  }

  .p-hero-bubble__text strong {
    font-size: 32px;
  }

  .p-hero-copy {
    height: auto;
    padding: 40px 0 130px;
  }

  .p-hero-copy__lead {
    font-size: 42px;
    line-height: 1.2;
  }

  .p-hero-copy__main-word--large {
    font-size: 80px;
  }

  .p-hero-copy__main-word--small {
    font-size: 48px;
  }

  .p-hero-copy__area {
    width: 100%;
    max-width: 1000px;
  }

  .p-hero-copy__area-text {
    font-size: 28px;
  }

  .p-hero-copy__medal-inner {
    width: 220px;
    height: 250px;
    padding-bottom: 30px;
  }

  .p-hero-copy__medal-text {
    font-size: 32px;
  }

  .p-hero-copy__medal-text span {
    font-size: 64px;
  }

  .p-hero-price__guarantee {
    font-size: 28px;
  }

  .p-hero-price__regular {
    font-size: 36px;
  }

  .p-hero-price__regular-number {
    font-size: 56px;
  }

  .p-hero-price__value {
    font-size: 100px;
  }

  .p-hero-price__campaign-tag {
    font-size: 20px;
  }

  .p-hero-medals {
    gap: 24px;
  }

  .p-hero-medal {
    width: 200px;
    height: 227px;
  }

  .p-hero-medal__text {
    font-size: 22px;
  }

  .p-hero-medal__text strong {
    font-size: 32px;
  }

  .p-hero-medal__text .dots::before {
    top: 4px;
  }

  .p-hero-medal__text .dots.min::before {
    top: 0;
  }

  .p-cta-main__note {
    font-size: 18px;
  }

  .p-cta-main__headline {
    font-size: 18px;
  }

  .p-cta-main__headline strong {
    font-size: 24px;
  }

  .p-cta-main__tel-icon {
    width: 60px;
    height: 60px;
  }

  .p-cta-main__tel-number {
    font-size: 36px;
  }

  .p-cta-main__free {
    width: 90px;
    height: 90px;
    font-size: 24px;
  }

  .p-trouble-grid {
    gap: 30px;
  }

  .p-reason-item {
    gap: 30px;
  }

  .p-voice-grid {
    gap: 68px 30px;
  }

  .p-voice-card {
    min-width: 300px;
  }

  .p-faq-item__button {
    height: 80px;
  }
}

/* ========================================
   RESPONSIVE: MOBILE
======================================== */
@media (max-width: 767px) {
  .l-container {
    padding: 0 12px;
  }

  .p-header__inner {
    height: 60px;
    padding: 0 12px;
  }

  .p-header__brand-lead {
    font-size: 12px;
  }

  .p-header__brand-text {
    font-size: 15px;
  }

  /* ヘッダー内のactionsを非表示 */
  .p-header__actions {
    display: none;
  }

  /* フローティングバナーを表示 */
  .p-header__actions--floating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f65107 0%, #f2750a 50%, #f08d0c 100%);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
  }

  /* フローティングバナー内の要素にz-indexを設定 */
  .p-header__actions--floating > * {
    position: relative;
    z-index: 2;
  }

  /* キラッと光るアニメーション */
  .p-header__actions--floating::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.2) 30%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0.2) 70%,
      transparent 100%
    );
    animation: shine 4s infinite;
    pointer-events: none;
    z-index: 1;
  }

  /* フローティングバナー内のbadgeスタイル */
  .p-header__actions--floating .p-header__badge {
    display: inline-flex;
    width: auto;
    flex: 1;
    background: #fff;
  }

  .p-header__actions--floating .p-header__badge-text {
    color: #f65107;
    font-size: 12px;
  }

  .p-header__actions--floating .p-header__tel {
    min-width: 50%;
    flex-shrink: 0;
    justify-content: center;
  }

  .p-header__actions--floating .p-header__tel-number {
    font-size: 20px;
    color: #fff;
  }

  .p-header__actions--floating .p-header__tel-icon {
    width: 24px;
    height: 24px;
    background-image: url("../img/ico-tel-wh.svg");
  }

  /* HERO SECTION */
  .p-hero-bubble {
    --bubble-base: 40px;
    --bubble-height: 20px;
    --bubble-body: 35px;
    margin-bottom: -20px;
    padding: 0 12px;
  }

  .p-hero-bubble__text {
    font-size: 15px;
    padding: 0px 12px;
    letter-spacing: -0.01em;
    border-bottom: none;
  }

  .p-hero-bubble__text strong {
    font-size: 22px;
  }

  .p-hero-copy {
    height: auto;
    padding-bottom: 60px;
  }

  .p-hero-copy::after {
    border-top: 25px solid transparent;
    border-bottom: 25px solid #104E37;
  }

  .p-hero-copy .l-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .p-hero-copy__lead {
    font-size: 20px;
    line-height: 1.3;
    text-stroke: 4px white;
    -webkit-text-stroke: 4px white;
  }

  .p-hero-copy__main {
    line-height: 1.2;
    padding-bottom: 12px;
    border-bottom-width: 2px;
    text-stroke: 4px white;
    -webkit-text-stroke: 4px white;
  }

  .p-hero-copy__main-word--large {
    font-size: 36px;
  }

  .p-hero-copy__main-word--small {
    font-size: 24px;
  }

  .p-hero-copy__area {
    width: 100%;
    height: 80px;
  }

  .p-hero-copy__area .l-container {
    height: 60px;
    padding-right: 0;
    top: 20px;
    gap: 4px;
  }

  .p-hero-copy__area::after {
    height: 60px;
    top: 20px;
    width: 100%;
  }

  .p-hero-copy__area-text {
    font-size: 18px;
    white-space: normal;
  }

  .p-hero-copy__area-text .dots {
    font-size: 22px;
  }

  .p-hero-copy__area-map {
    width: 80px;
    height: auto;
    position: relative;
    top: 0;
    right: 0;
  }

  .p-hero-copy__medal-inner {
    width: 100px;
    height: 112px;
    padding-bottom: 16px;
    top: -70px;
    left: 4px;
  }

  .p-hero-copy__medal-text {
    font-size: 14px;
  }

  .p-hero-copy__medal-text span {
    font-size: 28px;
  }

  .p-hero-price {
    padding: 12px 0 40px;
  }

  .p-hero-price .l-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .p-hero-price__guarantee {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .p-hero-price__guarantee::before,
  .p-hero-price__guarantee::after {
    height: 24px;
  }

  .p-hero-price__comparison {
    flex-direction: column;
    gap: 8px;
    padding-bottom: 10px;
    margin-bottom: 12px;
  }

  .p-hero-price__original {
    gap: 12px;
  }

  .p-hero-price__regular {
    font-size: 18px;
  }

  .p-hero-price__regular-number {
    font-size: 32px;
  }

  .p-hero-price__regular-unit {
    font-size: 14px;
  }

  .p-hero-price__campaign-tag {
    display: none;
    padding: 10px 16px;
    font-size: 20px;
    line-height: 1.3;
  }

  .p-hero-price__triangle {
    display: none;
    width: 50px;
    height: 70px;
    padding-top: 10px;
    transform: rotate(90deg);
  }

  .p-hero-price__discount {
    gap: 6px;
  }

  .p-hero-price__value {
    font-size: 48px;
    text-stroke: 16px #143E2F;
    -webkit-text-stroke: 16px #143E2F;
  }

  .p-hero-price__value-wrap::after {
    height: 8px;
    bottom: -8px;
  }

  .p-hero-price__tax {
    font-size: 14px;
  }

  .p-hero-price__yen {
    font-size: 24px;
  }

  .p-hero-price__credit {
    font-size: 16px;
  }

  .p-hero-price__credit-icon {
    width: 36px;
    height: 36px;
  }

  .p-hero-medals {
    gap: 10px;
    margin-top: 12px;
  }

  .p-hero-medal {
    width: 100px;
    height: 113px;
    padding-bottom: 13px;
  }

  .p-hero-medal__text {
    font-size: 12px;
  }

  .p-hero-medal__text strong {
    font-size: 16px;
  }

  .p-hero-medal__text .dots {
    line-height: 30px;
  }

  .p-hero-medal__text .dots::before {
    width: 3px;
    height: 3px;
  }

  .p-hero-medal__text .dots.min::before {
    top: 2px;
  }

  .p-cta-main {
    flex-direction: column;
    align-items: center;
  }

  .p-cta-main__image {
    order: 2;
  }

  .p-cta-main__lady {
    width: 180px;
    height: auto;
  }

  .p-cta-main__content {
    padding: 32px 0 24px;
    gap: 16px;
  }

  .p-cta-main__text-block {
    gap: 6px;
  }

  .p-cta-main__note {
    font-size: 16px;
    padding: 10px 24px;
    border-radius: 16px;
  }

  .p-cta-main__headline {
    font-size: 18px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .p-cta-main__headline::before,
  .p-cta-main__headline::after {
    height: 24px;
  }

  .p-cta-main__headline strong {
    font-size: 28px;
  }

  .p-cta-main__call {
    gap: 12px;
  }

  .p-cta-main__tel-icon {
    width: 36px;
    height: 36px;
  }

  .p-cta-main__tel-number {
    font-size: 28px;
  }

  .p-cta-main__time {
    font-size: 14px;
  }

  .p-cta-main__free {
    width: 72px;
    height: 72px;
    font-size: 20px;
    line-height: 1.2;
  }

  /* SECTION TITLE */
  .p-section-title {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .p-section-title__large {
    font-size: 26px;
  }

  /* TROUBLE SECTION */
  .p-trouble {
    padding: 60px 0 80px;
  }

  .p-trouble::before,
  .p-trouble::after {
    height: 80px;
  }

  .p-trouble__title {
    margin-bottom: 40px;
    font-size: 20px;
  }

  .p-trouble-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .p-trouble-card {
    gap: 10px;
  }

  .p-trouble-card__image-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .p-trouble-card__label-wrap {
    gap: 6px;
  }

  .p-trouble-card__icon {
    width: 20px;
    height: 20px;
  }

  .p-trouble-card__label {
    font-size: 16px;
  }

  /* REASON SECTION */
  .p-reason {
    padding: 24px 0 40px;
  }

  .p-reason-box {
    padding: 40px 20px 60px;
    margin: 0 12px;
  }

  .p-reason-box .p-reason__title {
    margin-bottom: 32px;
    font-size: 20px;
  }

  .p-reason-list {
    gap: 40px;
  }

  .p-reason-item {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .p-reason-item__medal {
    width: 100px;
    height: 114px;
  }

  .p-reason-item__medal-label {
    font-size: 14px;
  }

  .p-reason-item__medal-number {
    font-size: 20px;
  }

  .p-reason-item__medal-no {
    font-size: 36px;
  }

  .p-reason-item__title {
    font-size: 20px;
    text-decoration-thickness: 10px;
    text-underline-offset: -5px;
  }

  .p-reason-card__text {
    font-size: 16px;
  }

  /* COMPARE SECTION */
  .p-compare {
    padding: 0 0 60px;
  }

  .p-compare-table-wrap {
    padding: 24px 0 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .p-compare-table {
    width: auto;
    min-width: 100%;
    table-layout: auto;
    padding-bottom: 10px;
  }

  .p-compare-table th,
  .p-compare-table td {
    padding: 8px 10px;
    font-size: 14px;
    white-space: nowrap;
  }

  th.p-compare-table__corner {
    width: 100px;
  }

  th.p-compare-table__heading {
    height: 60px;
    font-size: 16px;
  }

  th.p-compare-table__heading--main {
    font-size: 16px;
    padding: 0 10px 24px;
  }

  th.p-compare-table__heading--main::before {
    height: 24px;
  }

  th.p-compare-table__row-heading {
    height: 50px;
    font-size: 14px;
  }

  .p-compare-table__em {
    font-size: 20px;
  }

  .p-compare-table__cell--icon,
  .p-compare-table__cell--icon-muted {
    font-size: 16px;
  }

  .p-compare-area {
    margin-top: 40px;
  }
  
  .p-compare-area::before {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 25px solid #f65107;
  }

  .p-compare-area__box {
    height: auto;
    padding: 24px 20px;
    gap: 24px;
    flex-direction: column;
  }

  .p-compare-area__map {
    width: 200px;
    height: 200px;
    flex: 0 1 auto;
    order: 2;
  }

  .p-compare-area__content {
    order: 1;
    gap: 10px;
  }

  .p-compare-area__badge {
    padding: 12px 24px;
    font-size: 18px;
  }


  .p-compare-area__desc {
    font-size: 18px;
    text-align: center;
  }

  .p-compare-area__prefectures {
    font-size: 24px;
  }

  .p-compare-area__text {
    font-size: 18px;
  }

  /* VOICE SECTION */
  .p-voice {
    padding: 48px 0 60px;
  }

  .p-voice__title {
    margin: 0 0 32px;
    font-size: 20px;
    gap: 8px;
  }

  .p-voice__title span {
    font-size: 24px;
  }

  .p-voice__title::before,
  .p-voice__title::after {
    height: 24px;
  }

  .p-voice-grid {
    gap: 40px;
  }

  .p-voice-card {
    padding: 16px 18px 18px;
  }

  .p-voice-card::before {
    bottom: -20px;
    border-top: 23px solid #ffe3c6;
    border-left: 45px solid transparent;
  }

  .p-voice-card__head {
    gap: 12px;
    margin-bottom: 16px;
  }

  .p-voice-card__icon {
    width: 70px;
    height: 70px;
    background-size: auto 50px;
  }

  .p-voice-card__meta-main,
  .p-voice-card__meta-sub {
    font-size: 16px;
  }

  .p-voice-card__text {
    font-size: 14px;
  }

  /* FAQ SECTION */
  .p-faq {
    padding: 48px 0 60px;
  }

  .p-faq__inner {
    padding: 0 12px;
  }

  .p-faq-item__button {
    height: auto;
    min-height: 80px;
    padding: 16px 20px;
    gap: 16px;
  }

  .p-faq-item__q-mark {
    font-size: 32px;
  }

  .p-faq-item__question {
    font-size: 16px;
  }

  .p-faq-item__toggle {
    width: 24px;
    height: 24px;
  }

  .p-faq-item__toggle::before {
    height: 16px;
  }

  .p-faq-item__toggle::after {
    width: 16px;
  }

  .p-faq-item__answer-inner {
    gap: 20px;
    padding: 20px;
  }

  .p-faq-item__a-mark {
    font-size: 32px;
  }

  .p-faq-item__answer-text {
    font-size: 16px;
  }
}