@charset "UTF-8";
/*** The new CSS reset - version 1.11.3 (last updated 25.8.2024) ***/
*:where(
    :not(
        html,
        iframe,
        canvas,
        img,
        svg,
        video,
        audio,
        input,
        textarea,
        select,
        button,
        meter,
        progress
      )
      :not(svg *, symbol *)
  ) {
  all: unset;
  display: revert;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
a,
button {
  cursor: revert;
}
ol,
ul,
menu,
summary {
  list-style: none;
}
ol {
  counter-reset: revert;
}
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}
table {
  border-collapse: collapse;
}
input,
:where(pre) {
  all: revert;
  box-sizing: border-box;
}
::placeholder {
  color: unset;
}
:where([hidden]) {
  display: none;
}
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}
:where([draggable="true"]) {
  -webkit-user-drag: element;
}
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}
::-webkit-details-marker {
  display: none;
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
共通
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
:root {
  --brand-orange: #f08231;
  --brand-green: #abe244;
  --black: #000;
  --light-blue: #08cac6;
  --bg-orange: #f0ebde;
  --max-width: 1260px;
  --max-width-2: 960px;
}

body {
  color: var(--black);
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  font-style: normal;
}

p {
  line-height: 1.8;
  font-weight: 500;
}

.br-sp {
  display: none;
}

.bold700 {
  font-weight: 700;
}

.sec-h2 {
  text-align: center;
  font-size: 30px;
  color: var(--brand-orange);
  margin-bottom: 40px;
  font-weight: 500;
}
.sec-h2 span {
  font-size: 24px;
}

.contact__btn {
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
}

.contact__btn img {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
}

.contact__btn-sp {
  display: none;
}

@media (max-width: 768px) {
  p {
    font-size: 14px;
  }

  .br-sp {
    display: block;
  }

  .br-pc {
    display: none;
  }

  .sec-h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .sec-h2 span {
    font-size: 20px;
  }

  .contact__btn-pc {
    display: none;
  }

  .contact__btn-sp {
    display: block;
  }

  .contact__btn img {
    max-width: 400px;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
sticky
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sticky {
  opacity: 0;
  visibility: hidden;
}

.sticky .sticky-btn-area {
  display: none;
}

@media screen and (max-width: 819px) {
  .sticky {
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 10px 12px 13px;
    background-color: rgba(10, 35, 72, 0.8);
    transition: 0.3s;
  }
  .sticky.active {
    opacity: 1;
    visibility: visible;
  }

  .sticky .text {
    margin-bottom: 2%;
    font-weight: 600;
    line-height: 1.2;
  }

  .sticky p {
    color: #fff;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
  }

  .sticky .sticky-btn-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    width: 100%;
  }

  .sticky .sticky-btn {
    font-size: 17px;
    padding: 10px 6px;
    text-align: center;
    color: #fff;
  }

  .sticky .sticky-btn.tel {
    background-color: var(--brand-orange);
    line-height: 0.6;
  }

  .sticky .sticky-btn.tel::before {
    display: inline-block;
    width: 23px;
    height: 23px;
    padding-right: 6px;
    content: url("../img/icon_tel.svg");
    background-size: contain;
    vertical-align: middle;
  }

  .sticky-btn-tel-reception-hours {
    font-size: 12px;
  }

  .sticky .sticky-btn.web {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: var(--light-blue);
  }

  .sticky .sticky-btn.web::before {
    display: inline-block;
    width: 23px;
    height: 20px;
    padding-right: 6px;
    content: url("../img/icon_email.svg");
    background-size: contain;
    vertical-align: middle;
  }

  .sticky.sticky-contact .sticky-btn-area {
    display: block;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
header 
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.header {
  z-index: 10;
  position: sticky;
  top: 0;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.8);
  padding-inline: 15px;
  align-content: center;
}

.header__inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  line-height: 1;
  width: 100%;
  max-width: 500px;
}

.header__contact {
  display: flex;
  align-items: center;
}

.header__entry-btn {
  padding: 10px 14px 13px;
  border-radius: 10px;
  font-size: 18px;
  color: #fff;
  background-color: var(--light-blue);
  line-height: 1.4;
}

.tel-area {
  display: flex;
  align-items: center;
  margin-right: 16px;
}

.tel-area-left {
  line-height: 1.4;
  color: var(--brand-orange);
  font-size: 18px;
}

.tel-area-right {
  text-align: center;
}

.tel {
  color: var(--brand-orange);
  font-size: 28px;
  font-weight: 500;
}

.tel::before {
  display: inline-block;
  width: 26px;
  height: 26px;
  padding-right: 8px;
  content: url("../img/icon_tel.svg");
  background-size: contain;
  vertical-align: middle;
}

.header__entry-btn.web::before {
  display: inline-block;
  width: 26px;
  height: 26px;
  padding-right: 8px;
  content: url("../img/icon_email.svg");
  background-size: contain;
  vertical-align: middle;
}

.header .tel::before {
  width: 30px;
  height: 47px;
  content: url("../img/icon_tel-or.svg");
}

.tel-reception-hours {
  margin: -8px 0 12px;
  color: #000;
  font-size: 16px;
  line-height: 1;
}

.header__entry-btn.web.pc {
  display: none;
}

.header__contact .header__entry-btn.web::before {
  width: 30px;
  height: 29px;
}
.header__entry-btn.tel.sp {
  display: none;
}

@media (max-width: 1080px) {
  .header__logo {
    max-width: 360px;
  }

  .tel-area-left {
    display: none;
  }
}

@media (max-width: 819px) {
  .header {
    padding: 10px;
    height: 60px;
  }

  .header__logo {
    margin: 0 auto;
    max-width: 300px;
  }

  .header__entry-btn {
    padding: 8px 15px;
  }

  .header__contact {
    display: none;
  }

  .header__entry-btn.tel.sp {
    display: block;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
FV
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-fv {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(520px, 70vh, 760px);
  overflow: hidden;
  color: #fff;
}

.fv__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.02);
}

.fv__bgItem {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: opacity;
}

.fv__bgItem--1 {
  background-image: url("../img/img_bg1_pc.jpg");
  animation: fvFadeA 16s infinite linear;
}
@supports (background-image: url('../img/img_bg1_pc.webp')) {
  .fv__bgItem--1 {
    background-image: url('../img/img_bg1_pc.webp');
  }
}

.fv__bgItem--2 {
  background-image: url("../img/img_bg2_pc.jpg");
  animation: fvFadeB 16s infinite linear;
}
@supports (background-image: url('../img/img_bg2_pc.webp')) {
  .fv__bgItem--2 {
    background-image: url('../img/img_bg2_pc.webp');
  }
}

@keyframes fvFadeA {
  0%,
  44% {
    opacity: 1;
  }
  50%,
  94% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fvFadeB {
  0%,
  44% {
    opacity: 0;
  }
  50%,
  94% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .fv__bgItem--1 {
    background-image: url("../img/img_bg1_sp.jpg");
  }
  @supports (background-image: url('../img/img_bg1_sp.webp')) {
    .fv__bgItem--1 {
      background-image: url('../img/img_bg1_sp.webp');
    }
  }
  .fv__bgItem--2 {
    background-image: url("../img/img_bg2_sp.jpg");
  }
  @supports (background-image: url('../img/img_bg2_sp.webp')) {
    .fv__bgItem--2 {
      background-image: url('../img/img_bg2_sp.webp');
    }
  }
}

.fv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.22)
  );
}

.fv__inner {
  position: relative;
  box-sizing: border-box;
  flex: 1 0 auto;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(32px, 5vh, 56px) 24px clamp(16px, 3vh, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(10px, 2vh, 20px);
  text-align: center;
}

.fv__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 0;
}

.fv__inner .annotation {
  margin-top: 10px;
  margin-bottom: 0;
  text-align: left;
  flex-shrink: 0;
}

.fv__lead {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(24px, 4.6vw, 34px);
  letter-spacing: 0.02em;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.fv__lead .hl {
  color: #ffff9e;
}

.fv__lead .large-txt {
  padding: 0 4px;
  font-size: clamp(34px, 4.6vw, 52px);
}

.fv__lead .small-txt {
  font-size: 15px;
}

.fv__lineImg {
  display: block;
  width: min(380px, 70vw);
  height: auto;
  margin: 8px auto;
  user-select: none;
  pointer-events: none;
}

.fv__title {
  margin: 0 0 26px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: clamp(24px, 4.6vw, 46px);
  white-space: nowrap;
}

.sec-fv .compare {
  width: min(629px, 92vw);
  margin: 0 auto;
}

.sec-fv .compare__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  justify-content: center;
  margin: 0 auto 10px;
  align-items: center;
}

.sec-fv .tabPill {
  border-radius: 999px;
  padding: 14px 18px;
  height: 62px;
  font-weight: 800;
  font-size: 18px;
  font-size: clamp(18px, 4.6vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  min-height: 52px;
}

.sec-fv .tabPill--gray {
  background: rgba(100, 100, 105, 0.88);
  color: #fff;
}

.sec-fv .tabPill--logo {
  background: rgba(240, 130, 49, 0.92);
  padding: 10px 16px;
}
.sec-fv .tabPill__logo {
  display: block;
  max-height: 34px;
  max-width: 100%;
  height: auto;
  width: auto;
  user-select: none;
  pointer-events: none;
}

.sec-fv .compare__rows {
  display: grid;
  gap: 10px;
}

.sec-fv .priceRow {
  background: #fff;
  border-radius: 40px;
  padding: 2px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 18px;
}

.sec-fv .priceRow__left {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 900;
  font-size: 30px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.sec-fv .priceRow__right {
  color: #f08231;
  font-weight: 900;
  font-size: 40px;
  text-align: center;
  white-space: nowrap;
}

.sec-fv .unit {
  font-size: 0.62em;
  letter-spacing: 0;
  vertical-align: baseline;
  margin-left: 2px;
  display: inline-block;
}

.sec-fv .priceRow__arrow {
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid rgba(240, 130, 49, 0.95);
  justify-self: center;
}

@media (max-width: 768px) {
  .fv__inner {
    padding: 44px 16px;
  }

  .fv__title {
    white-space: normal;
    line-height: 1.15;
  }

  .sec-fv .compare__tabs {
    gap: 12px;
  }

  .sec-fv .tabPill {
    font-size: 20px;
    padding: 12px 14px;
    height: 40px;
  }
  .sec-fv .tabPill--logo {
    padding: 8px 12px;
  }
  .sec-fv .tabPill__logo {
    max-height: 20px;
  }

  .sec-fv .priceRow {
    padding: 5px 14px;
  }
  .sec-fv .sec-fv .priceRow__left {
    font-size: 24px;
  }
  .sec-fv .priceRow__right {
    font-size: 34px;
  }
  .sec-fv .priceRow__arrow {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 16px solid rgba(240, 130, 49, 0.95);
  }

  .sec-fv .priceRow__left {
    font-size: 24px;
  }
  .sec-fv .priceRow__right {
    font-size: 32px;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
intro
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-intro {
  background-color: var(--brand-orange);
}
.intro__inner {
  display: flex;
  align-items: end;
  gap: 40px;
  margin: 0 auto;
  padding: 80px 18px 0;
  max-width: var(--max-width);
}

.intro__h2 {
  margin: 20px 0;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
}

.intro__txtarea {
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: 120px;
}

.intro__txt {
  color: #fff;
}

.intro__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  max-width: min(340px, 48vw);
  margin-left: auto;
}

.intro__bubble {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  max-width: 300px;
  margin: 0 0 12px;
  padding: 18px 20px 16px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
  text-align: center;
  box-sizing: border-box;
}

/* PC: 吹き出し → 画像 → 名前（縦並び・重ねない） */
@media (min-width: 769px) {
  .intro__figure {
    align-items: flex-start;
    max-width: min(300px, 32vw);
    margin-left: auto;
    margin-right: 32px;
    transform: translateX(calc(-3 * clamp(16px, 1.6vw, 22px)));
  }

  .intro__bubble {
    max-width: 280px;
    margin-bottom: 14px;
    padding: 16px 18px 14px;
    text-align: left;
  }

  .intro__bubble-lead {
    font-size: clamp(16px, 1.6vw, 22px);
  }

  .intro__bubble::after {
    left: 36%;
    margin-left: -11px;
  }

  .intro__profile {
    align-items: flex-start;
  }

  .intro__profile .intro__photo {
    width: 100%;
    max-width: 280px;
    max-height: min(380px, 42vh);
    margin: 0;
  }

  .intro__profile-role,
  .intro__profile-name {
    text-align: left;
  }

  .intro__bubble-sub {
    font-size: clamp(12px, 1.2vw, 15px);
    line-height: 1.5;
  }
}

.intro__bubble::after {
  content: "";
  position: absolute;
  right: auto;
  left: 50%;
  bottom: -10px;
  margin-left: -11px;
  width: 22px;
  height: 22px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.06);
}

.intro__bubble-lead {
  color: var(--brand-orange);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.intro__bubble-sub {
  margin-top: 6px;
  color: #1a1a2e;
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 700;
  line-height: 1.55;
}

.intro__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.intro__photo {
  display: block;
  width: auto;
  max-width: min(260px, 34vw);
  max-height: 400px;
  object-fit: contain;
  object-position: bottom center;
  flex-shrink: 0;
}

.intro__profile-role {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}

.intro__profile-name {
  margin-top: 2px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-align: center;
}

@media (max-width: 1120px) {
  .intro__inner {
    gap: 0;
    padding: 52px 18px 0;
  }

  .intro__h2 {
    font-size: 26px;
  }

  .intro__txtarea {
    margin-bottom: 72px;
  }

  .intro__figure {
    max-width: 100%;
    margin: 0 auto;
  }

  .intro__profile .intro__photo {
    max-width: 220px;
    max-height: 340px;
  }

  .intro__bubble {
    max-width: 260px;
  }

  .intro__profile-role {
    font-size: 10px;
  }

  .intro__profile-name {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .intro__inner {
    display: block;
    padding: 30px 18px 0;
  }

  .intro__h2 {
    font-size: 24px;
  }

  .intro__txtarea {
    margin-bottom: 0;
  }

  .intro__figure {
    margin: 28px auto 0;
    max-width: 340px;
  }

  .intro__bubble {
    margin-bottom: 8px;
    max-width: 100%;
  }

  .intro__profile .intro__photo {
    max-width: 240px;
    max-height: 320px;
    margin: 0 auto;
  }

  .intro__profile-role {
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .intro__profile-name {
    font-size: 18px;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
reason
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-reason {
  background: var(--bg-orange);
  padding: 110px 20px 80px;
}

.reason__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.reason__h2 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 60px;
}

.reason__h2 span {
  color: #fff;
  background: var(--brand-orange);
  padding: 0 0 0 10px;
  margin-right: 7px;
}

.reason__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "img h3"
    "img txt";
  column-gap: 80px;
  align-items: center;
  margin-bottom: 54px;
}

.reason__img01,
.reason__img02 {
  grid-area: img;
  width: 100%;
  height: auto;
  display: block;
}

.reason__img01 {
  max-width: 400px;
  margin: 0 0 0 auto;
}

.reason__img02 {
  max-width: 350px;
  margin: 0 auto;
}

.reason__h3 {
  grid-area: h3;
  font-size: 24px;
  font-weight: 500;
  color: var(--brand-orange);
  line-height: 1.6;
}
.reason__txt {
  grid-area: txt;
  margin: 20px 0;
}
.reason__txtarea {
  grid-area: txt;
}
.reason__txtarea ul {
  margin: 20px 0;
  color: var(--brand-orange);
  font-weight: 500;
}

.reason__txtarea ul.custom li {
  position: relative;
  padding-left: 1.3em;
  line-height: 1.8;
}

.reason__txtarea ul.custom li::before {
  position: absolute;
  left: 0;
  top: 0.8em;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background: url("../img/icon_check.svg") no-repeat center / contain;
}

.reason__block--reverse {
  grid-template-areas:
    "h3 img"
    "txt img";
  margin-bottom: 36px;
}

.reason__comment .reason__txt {
  margin-left: auto;
  max-width: 400px;
  font-weight: 400;
}

.reason__block:first-of-type .reason__h3,
.reason__block--reverse .reason__h3 {
  align-self: end;
}

.reason__block:first-of-type .reason__txt,
.reason__block--reverse .reason__txtarea {
  align-self: start;
}

.reason__block .reason__img01 {
  align-self: center;
}

.reason__comment {
  position: relative;
  padding: 40px 0 0;
}

.reason__comment-inner {
  max-width: 648px;
  margin: 0 auto;
  padding: 22px 30px;
  align-items: center;
  background: var(--brand-orange);
  color: #fff;
}

.reason__comment-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateX(-216px);
  max-width: 186px;
  height: auto;
  flex-shrink: 0;
}

@media screen and (max-width: 868px) {
  .reason__block {
    column-gap: 60px;
  }

  .reason__img01 {
    max-width: 360px;
  }

  .reason__img02 {
    max-width: 310px;
  }
}

@media screen and (max-width: 768px) {
  .sec-reason {
    padding: 60px 20px 60px;
  }

  .reason__h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .reason__block {
    grid-template-columns: 1fr;
    grid-template-areas:
      "h3"
      "img"
      "txt";
    gap: 20px;
    margin-bottom: 10px;
  }

  .reason__h3 {
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
  }
  .reason__img01 {
    max-width: 254px;
    margin: 0 auto;
  }

  .reason__img02 {
    max-width: 250px;
  }

  .reason__txtarea ul.custom li {
    font-size: 14px;
  }

  .reason__comment {
    padding: 0;
  }

  .reason__comment-inner {
    padding: 18px 10px;
  }

  .reason__comment .reason__txt {
    margin: 0 0 0 86px;
    max-width: 520px;
  }

  .reason__comment-img {
    max-width: 136px;
    transform: translateX(-50%) translateX(-274px);
  }
}

@media screen and (max-width: 600px) {
  .reason__comment-img {
    transform: none;
    left: -40px;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
3d perspective
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-perspective {
  position: relative;
  padding: 160px 0 180px;
  background-image: url(../img/img_3d-perspective-bg.png);
  background-size: cover;
}

.perspective {
  position: absolute;
  top: 40px;
  right: 0;
  width: 40%;
}

.perspective__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}

.perspective__img-b {
  display: block;
  max-width: 740px;
  width: 100%;
}

.perspective__container {
  height: 417px;
  max-width: 740px;
  width: 100%;
  position: relative;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-size: cover;
  background-position: center center;

  animation: image-switch-animation 20s infinite;
}

.src1 {
  background-image: url(../img/img_3d-perspective-b.jpg);
}
.src2 {
  background-image: url(../img/img_3d-perspective-a.jpg);
}
.src3 {
  background-image: url(../img/img_3d-perspective-b.jpg);
}
.src4 {
  background-image: url(../img/img_3d-perspective-a.jpg);
}

@keyframes image-switch-animation {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.ba-img:nth-of-type(1) {
  animation-delay: 0s;
}
.ba-img:nth-of-type(2) {
  animation-delay: 5s;
}
.ba-img:nth-of-type(3) {
  animation-delay: 10s;
}
.ba-img:nth-of-type(4) {
  animation-delay: 15s;
}

.perspective__txtarea {
  position: absolute;
  right: 0;
  bottom: -16%;
  display: inline-block;
  padding: 30px 180px 30px 30px;
  background-color: var(--brand-orange);
  color: #fff;
}

.perspective__h2 {
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 500;
}

.perspective__ruler {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 280px;
}

@media (max-width: 1000px) {
  .perspective {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .sec-perspective {
    padding: 90px 0 60px;
  }

  .perspective__inner {
    padding: 0 18px;
  }

  .perspective {
    top: 24px;
  }

  .perspective__txtarea {
    position: static;
    display: block;
    padding: 20px 18px 30px;
  }

  .perspective__h2 {
    margin-bottom: 6px;
    font-size: 24px;
  }

  .perspective__ruler {
    bottom: 80px;
    max-width: 170px;
  }

  .container {
    height: 193px;
  }
}

@media (max-width: 568px) {
  .perspective {
    width: 90%;
    top: 30px;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
sec-zero-outsourcing
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-zero-outsourcing {
  position: relative;
  padding: 60px 18px 190px;
  text-align: center;
  background-color: var(--bg-orange);
}

.zero-outsourcing__h2 {
  margin: 20px 0;
  font-size: 36px;
  font-weight: 500;
  color: var(--brand-orange);
}

.zero-outsourcing__txt {
  font-weight: 500;
}

.zero-outsourcing__dakara-pc {
  margin: 40px 0 100px;
  max-width: 540px;
}

.zero-outsourcing__dakara-sp {
  display: none;
}

.zero-outsourcing__img-left {
  position: absolute;
  max-width: 296px;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateX(-290px);
}

.zero-outsourcing__img-right {
  position: absolute;
  max-width: 309px;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateX(290px);
}

@media (max-width: 1000px) {
  .sec-zero-outsourcing {
    padding: 60px 18px;
  }

  .zero-outsourcing__img-left {
    max-width: 200px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateX(-240px);
  }

  .zero-outsourcing__img-right {
    max-width: 210px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateX(240px);
  }
}

@media (max-width: 768px) {
  .sec-zero-outsourcing {
    padding: 30px 18px 80px;
  }

  .zero-outsourcing__h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .zero-outsourcing__dakara-pc {
    display: none;
  }

  .zero-outsourcing__dakara-sp {
    display: block;
    margin: 30px auto 30px;
    max-width: 340px;
    width: 100%;
  }

  .zero-outsourcing__img-left {
    max-width: 100px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateX(-120px);
  }

  .zero-outsourcing__img-right {
    max-width: 110px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateX(120px);
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
flow
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-flow {
  padding: 70px 20px 80px;
  background: var(--bg-orange);
}

.flow__inner {
  max-width: var(--max-width-2);
  margin: 0 auto;
}

.sec-flow .sec-h2 {
  color: var(--brand-orange);
}

.flow__step {
  position: relative;
  z-index: var(--z, 1);
  background: #fff;
  display: flex;
  align-items: center;
  padding: 32px 25px;
  border-radius: 4px;
  margin-bottom: 18px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  --tail: 46px;
}

.flow__step::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  top: calc(100% - (var(--tail) / 1.6) + 3px);
  width: calc(var(--tail) + 1px);
  height: calc(var(--tail) + -1px);
  background: rgba(0, 0, 0, 0.12);
  filter: blur(0.6px);
  border-radius: 4px;
  z-index: 0;
}

.flow__step::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  top: calc(100% - (var(--tail) / 1.6));
  width: var(--tail);
  height: var(--tail);
  background: #fff;
  border-radius: 4px;
  z-index: calc(var(--z, 1) + 1);
}

.flow__step:last-child:before,
.flow__step:last-child::after {
  content: none;
}

.flow__step-icon {
  max-width: 100px;
  margin-right: 20px;
  flex-shrink: 0;
}

.flow__step-h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}

.flow__step-txt {
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .sec-flow {
    padding: 50px 20px 60px;
  }

  .flow__step {
    margin-bottom: 12px;
    padding: 20px 10px 26px;
    --tail: 36px;
  }
  .flow__step-icon {
    max-width: 60px;
    margin-right: 12px;
  }

  .flow__step-h3 {
    font-size: 18px;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
実績
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-performance {
  position: relative;
  padding: 60px 18px 0;
  background-color: var(--brand-orange);
  text-align: center;
}

.performance__h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.6;
}

.performance__img-txt-pc {
  margin-top: 40px;
  max-width: 520px;
}

.performance__img-txt-sp {
  display: none;
}

.performance__img-pc {
  display: block;
  margin: 0 auto;
  max-width: var(--max-width);
  width: 100%;
  position: relative;
  z-index: 1;
}

.performance__img-sp {
  display: none;
}

.performance__bg-left-pc {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  pointer-events: none;
}

.performance__bg-right-pc {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
}

.performance__bg-left-sp,
.performance__bg-right-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .performance__h2 {
    font-size: 24px;
  }

  .performance__img-pc {
    display: none;
  }

  .performance__img-sp {
    display: block;
    max-width: 340px;
    margin: 20px auto 0;
  }

  .performance__img-txt-pc {
    display: none;
  }

  .performance__img-txt-sp {
    display: block;
    max-width: 338px;
    margin: 16px auto 0;
  }

  .performance__bg-left-sp {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
  }

  .performance__bg-right-sp {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
  }

  .performance__bg-left-pc,
  .performance__bg-right-pc {
    display: none;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
施工実績
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-works {
  margin: 70px 0 100px;
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
  max-width: var(--max-width);
  padding: 0 18px;
  margin: 0 auto 50px;
}

.works__card {
  background-color: #fff;
  overflow: hidden;
}

.works__card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.works__card-txtarea {
  background-color: #f57c00;
  color: #fff;
  text-align: center;
  padding: 8px 10px 10px;
}

.works__card-client {
  line-height: 1.3;
  font-size: 20px;
  margin: 0;
}

.works__card-category {
  line-height: 1.3;
  font-size: 16px;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .sec-works {
    margin: 50px 0;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
Q & A
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.sec-faq {
  background-color: #fff;
}

.faq__inner {
  max-width: 866px;
  margin: 0 auto;
  padding: 68px 18px 76px;
}

.faq__item {
  margin-bottom: 25px;
}

.faq__question {
  background-color: #e17c26;
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
}

.faq__question-txt {
  margin: 0 0 0 6px;
  padding-left: 1em;
  text-indent: -1.3em;
  font-size: 18px;
}

.faq__answer {
  padding: 12px 16px;
  margin-top: 6px;
  text-indent: -1.3em;
  padding-left: 1em;
  margin-left: 22px;
  font-weight: 300;
  line-height: 1.8;
}

.faq__answer .orange {
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 18px;
}

@media (max-width: 768px) {
  .faq__inner {
    padding: 48px 18px;
  }

  .faq__question {
    padding: 8px 6px;
  }

  .faq__question-txt {
    font-size: 16px;
    line-height: 1.5;
  }

  .faq__answer {
    margin-top: 0;
    margin-left: 12px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .faq__item {
    margin-bottom: 14px;
  }

  .faq__answer .orange {
    font-size: 16px;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
お問い合わせ
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.cta {
  height: 320px;
  background-image: url(../img/img_cta_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta__inner {
  display: flex;
  max-width: 866px;
  gap: 18%;
  height: 320px;
  margin: 0 auto;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.cta__btn {
  display: inline-block;
  padding: 14px 80px;
  border: 1px solid #fff;
  border-radius: 40px;
}

@media (max-width: 900px) {
  .cta {
    height: 200px;
  }

  .cta__inner {
    height: 200px;
    gap: 12%;
    padding: 0 18px;
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .cta {
    height: 220px;
  }

  .cta__inner {
    display: block;
    gap: 12%;
    padding: 44px 18px;
    height: auto;
    font-size: 18px;
    text-align: center;
  }

  .cta p {
    font-size: 18px;
    line-height: 1.6;
  }

  .cta__btn {
    margin-top: 20px;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
footer
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー-*/
.footer {
  max-width: var(--max-width);
  margin: 60px auto 10px;
  padding: 0 18px;
  text-align: left;
}

.footer__logo-img {
  max-width: 337px;
}

.footer__nav-list {
  margin: 30px 0;
}

.footer p {
  font-weight: 400;
}

.footer__nav-list li {
  margin-bottom: 30px;
  color: var(--brand-orange);
  font-weight: 500;
}

.footer__copyright {
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer {
    margin: 40px auto 10px;
  }

  .footer__logo-img {
    max-width: 260px;
  }

  .footer__nav-list {
    margin: 30px 0;
  }

  .footer__nav-list li {
    margin-bottom: 20px;
  }

  .footer__copyright {
    font-size: 12px;
  }
}


/* ============================================
   施工事例 カード型リデザイン（案A）
   ============================================ */
.works__card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.10);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.works__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.18);
}

/* リンクをカード全体に拡張 */
.works-item__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.works__card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
  flex-shrink: 0;
}

.works__card-img picture,
.works__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.works__card:hover .works__card-img img {
  transform: scale(1.04);
}

.works__card-txtarea {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.works__card-client {
  font-weight: 700;
  font-size: 14px;
  color: #1a1a2e;
  margin: 0;
}

.works__card-category {
  font-size: 12px;
  color: #666;
  margin: 0 0 auto;
}

.works__card-cta {
  margin-top: 12px;
  color: #f08231;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.works__card:hover .works__card-cta {
  color: #d96b10;
}


/* ============================================
   ミニFAQ（3問）
   ============================================ */
.sec-mini-faq {
  padding: 40px 16px;
  background: #f7f8fc;
}

.mini-faq__inner {
  max-width: 720px;
  margin: 0 auto;
}

.mini-faq__h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.mini-faq__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.mini-faq__item {
  background: #fff;
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
}

.mini-faq__q {
  font-weight: 700;
  font-size: 14px;
  color: #1a1a2e;
  margin: 0 0 8px;
}

.mini-faq__a {
  font-size: 13px;
  color: #444;
  margin: 0;
  line-height: 1.7;
}

.mini-faq__more {
  display: block;
  text-align: center;
  color: #f08231;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.mini-faq__more:hover {
  text-decoration: underline;
}

/* ============================================
   相見積もり実績カード（price-cases）
   ============================================ */
.price-cases__lead {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  background: #6b7db3;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 999px;
  margin: 24px auto 16px;
  display: flex;
  justify-content: center;
  width: fit-content;
}

.price-cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0 0 8px;
  width: 100%;
}

@media (max-width: 640px) {
  .price-cases {
    grid-template-columns: 1fr;
  }
}

.price-case {
  background: linear-gradient(135deg, #fff 0%, #f8f9fe 100%);
  border-radius: 12px;
  border: 1px solid #e4e8f2;
  padding: 16px 14px 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.price-case__name {
  font-weight: 700;
  font-size: 13px;
  color: #1a1a2e;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.price-case__type {
  font-size: 10px;
  color: #fff;
  background: #6b7db3;
  border-radius: 4px;
  padding: 2px 8px;
  font-weight: 500;
  white-space: nowrap;
}

.price-case__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.price-case__other-wrap,
.price-case__ours-wrap {
  flex: 1;
  text-align: center;
}

.price-case__other-lbl,
.price-case__ours-lbl {
  font-size: 10px;
  font-weight: 600;
  margin: 0 0 3px;
  letter-spacing: 0.03em;
}

.price-case__other-lbl {
  color: #aaa;
}

.price-case__ours-lbl {
  color: #e85d04;
}

.price-case__other-val {
  font-size: 20px;
  font-weight: 700;
  color: #bbb;
  text-decoration: line-through;
  text-decoration-color: #e74c3c;
  text-decoration-thickness: 2px;
  margin: 0;
  line-height: 1.2;
}

.price-case__ours-val {
  font-size: 24px;
  font-weight: 800;
  color: #e85d04;
  margin: 0;
  line-height: 1.2;
}

.pc-unit {
  font-size: 12px;
  font-weight: 600;
}

.price-case__arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.price-case__save {
  background: linear-gradient(90deg, #e85d04, #f4a261);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  text-align: center;
  margin: 0;
  letter-spacing: 0.04em;
}


/* ============================================
   施工事例カード内バッジ（画像左下）
   ============================================ */
.works__card-img {
  position: relative;
}

.works-card__badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #fff;
  color: #1a1a2e;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px 6px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
  letter-spacing: 0.04em;
  pointer-events: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.works__card:hover .works-card__badge {
  background: #f5f5f5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.28);
  transform: translateY(-1px);
}
/* ============================================
   PC レスポンシブ修正
   ============================================ */

/* works__card-txtarea: 元テーマのオレンジ背景・白文字・中央揃えを上書き */
.works__card-txtarea {
  background-color: #fff !important;
  color: #1a1a2e !important;
  text-align: left !important;
}

.works__card-client {
  color: #1a1a2e !important;
}

.works__card-category {
  color: #666 !important;
}

/* price-cases-wrap: intro__inner の外側に出したラッパー */
.price-cases-wrap {
  max-width: var(--max-width);
  margin: 32px auto 0;
  padding: 0 18px 60px;
}

/* PC: price-cases の幅を適切に制限 */
@media (min-width: 769px) {
  .price-cases {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-cases-wrap .price-cases__lead {
    margin-top: 0;
  }
}

/* CTA カード: PC では少し広め */
@media (min-width: 769px) {
  .cta-card {
    max-width: 800px;
  }

  .cta-btns {
    grid-template-columns: 2fr 1.4fr;
  }
}

/* works__card-img の position:relative が確実に適用されるよう強化 */
.works__card > a > .works__card-img {
  position: relative !important;
}

/* SP: price-cases 1列に */
@media (max-width: 640px) {
  .price-cases {
    grid-template-columns: 1fr !important;
  }

  .price-cases-wrap {
    padding: 0 16px 40px;
  }
}

/* ============================================
   アンカーリンクのスクロールオフセット修正
   sticky header (80px) + 余白 16px = 96px
   ============================================ */
#price-cases,
#faq-full,
#sec-comparison,
#works,
#voice {
  scroll-margin-top: 96px;
}

/* ============================================
   離脱防止ポップアップ リデザイン
   ============================================ */
.exit-popup__content {
  max-width: 540px;
  width: 92%;
  padding: 32px 24px 24px;
}

.exit-popup__heading {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 6px;
}

.exit-popup__sub {
  font-size: 15px;
  color: #444;
  margin: 0 0 20px;
  line-height: 1.6;
}

.exit-popup__sub strong {
  color: #e85d04;
}

/* ポップアップ内CTA カードの微調整 */
.exit-popup__cta-card {
  margin: 0;
  border-radius: 12px;
  padding: 16px 16px 18px;
}

.exit-popup__cta-card .cta-headline {
  font-size: 14px;
  margin-bottom: 12px;
}

.exit-popup__cta-card .cta-btns {
  grid-template-columns: 2fr 1.35fr;
  gap: 8px;
}

.exit-popup__cta-card .cta-btn {
  height: 58px;
  font-size: 16px;
}

.exit-popup__cta-card .cta-tel-num {
  font-size: 17px;
}

@media (max-width: 480px) {
  .exit-popup__cta-card .cta-btns {
    grid-template-columns: 1fr;
  }

  .exit-popup__cta-card .cta-tel-lbl--pc {
    display: none;
  }

  .exit-popup__cta-card .cta-tel-lbl--sp {
    display: inline;
  }

  .exit-popup__cta-card .cta-form-lbl--pc {
    display: none;
  }

  .exit-popup__cta-card .cta-form-lbl--sp {
    display: inline;
  }
}

/* ============================================
   アンカースクロール共通オフセット（sticky header 80px + 余白）
   ============================================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}


/* ============================================
   離脱ポップアップ 全面リデザイン（v3）
   ============================================ */

/* コンテンツ */
.exit-popup__content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px 28px;
  max-width: 460px !important;
  width: 92% !important;
  text-align: center;
  z-index: 1;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

/* バッジ */
.exit-popup__badge {
  display: inline-block;
  background: #e85d04;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 999px;
  margin: 0 0 14px;
}

/* 見出し */
.exit-popup__heading {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #1a1a2e !important;
  line-height: 1.45;
  margin: 0 0 10px !important;
}

/* サブテキスト */
.exit-popup__sub {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #555 !important;
  line-height: 1.7;
  margin: 0 0 22px !important;
}

/* ボタングループ */
.exit-popup__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

/* ボタン共通 */
.exit-popup__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  transition: filter 0.15s, transform 0.12s;
  position: relative;
  overflow: hidden;
}
.exit-popup__btn:active {
  transform: scale(0.97);
}

/* 電話ボタン */
.exit-popup__btn--tel {
  background: linear-gradient(135deg, #ff8a1f 0%, #e85d04 100%);
  color: #fff;
  flex-direction: column;
  gap: 2px;
}
.exit-popup__btn--tel:hover { filter: brightness(1.08); }

/* フォームボタン */
.exit-popup__btn--form {
  background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
  color: #fff;
}
.exit-popup__btn--form:hover { filter: brightness(1.08); }

/* ボタン内アイコン */
.exit-popup__btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.exit-popup__btn--tel .exit-popup__btn-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

/* ボタン内テキスト */
.exit-popup__btn-main {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.exit-popup__btn--tel .exit-popup__btn-main {
  font-size: 22px;
}

.exit-popup__btn-sub {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
}

/* フォームボタンは横並び */
.exit-popup__btn--form .exit-popup__btn-main {
  font-size: 16px;
}

/* ノート */
.exit-popup__note {
  font-size: 11px;
  color: #aaa;
  margin: 0;
}

/* 閉じるボタン（上書き） */
.exit-popup__close {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  font-size: 24px !important;
  color: #bbb !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  line-height: 1;
  padding: 4px;
}
.exit-popup__close:hover { color: #888 !important; }

@media (max-width: 480px) {
  .exit-popup__heading {
    font-size: 19px !important;
  }
  .exit-popup__btn-main {
    font-size: 17px !important;
  }
  .exit-popup__btn--tel .exit-popup__btn-main {
    font-size: 19px !important;
  }
}

/* ============================================
   離脱ポップアップ × CTAカード 統合スタイル（v4）
   ============================================ */

/* ポップアップ幅をCTAカードPC版に合わせて拡大 */
.exit-popup__content {
  max-width: 720px !important;
  padding: 32px 24px 24px !important;
}
@media (max-width: 640px) {
  .exit-popup__content {
    padding: 28px 14px 20px !important;
  }
}

/* サブテキストの余白を詰める */
.exit-popup__sub {
  margin: 0 0 16px !important;
}

/*
 * popup 内 CTA カードのレイアウト制御
 * ─────────────────────────────────────────────────────────
 * 計算根拠:
 *   tel ボタン内の必要幅:
 *   icon(28) + gap(14) + "0120-700-661" at 24px bold(~165) + gap(14)
 *   + pill "今すぐ無料相談" at 13px + padding(5px 12px)(~115) = 336px
 *   ボタン padding(0 20px) 込みで 376px 必要。
 *   popup 720px 内で 2fr の tel ボタンに割り当てられるのは最大 367px → 不足。
 *   → PC でも 2カラムは破綻する。ポップアップは常に 1カラム固定が正解。
 * ─────────────────────────────────────────────────────────
 */

/* ============================================
   SP CTA 電話ボタン - 受付時間表示
   ============================================ */
.cta-tel-sp-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.cta-tel-sp-hours {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.02em;
  white-space: nowrap;
}


/* ============================================
   相見積もり実績 - 節約ボタン
   ============================================ */
button.price-case__save {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: filter 0.15s, transform 0.12s;
}
button.price-case__save:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
button.price-case__save:active {
  transform: translateY(0);
}

/* price-popup も exit-popup の SP コンパクトルールを継承 */
#price-popup .cta-btns            { grid-template-columns: 1fr !important; }
#price-popup .cta-btn             { height: 58px !important; border-radius: 8px !important; }
#price-popup .cta-btn--tel        { gap: 8px !important; padding: 0 12px !important; animation: none !important; }
#price-popup .cta-tel-num         { display: none !important; }
#price-popup .cta-tel-lbl--pc     { display: flex !important; }
#price-popup .cta-tel-lbl--sp     { display: none !important; }
#price-popup .cta-tel-lbl         { font-size: 13px !important; }
#price-popup .cta-form-lbl--pc    { display: none !important; }
#price-popup .cta-form-lbl--sp    { display: inline !important; }
#price-popup .cta-pulse-ring      { display: none !important; }
#price-popup .cta-shine           { display: none !important; }
#price-popup .cta-icon-tel        { animation: none !important; }

@media (min-width: 900px) {
  #price-popup .cta-btns           { grid-template-columns: 2fr 1.4fr !important; }
  #price-popup .cta-btn            { height: 64px !important; border-radius: 10px !important; }
  #price-popup .cta-btn--tel       { gap: 14px !important; padding: 0 20px !important; }
  #price-popup .cta-tel-num        { display: block !important; }
  #price-popup .cta-tel-lbl--pc    { display: flex !important; }
  #price-popup .cta-tel-lbl--sp    { display: none !important; }
  #price-popup .cta-tel-lbl        { background: rgba(255,255,255,0.22) !important; box-shadow: 0 0 0 1px rgba(255,255,255,0.4) inset !important; padding: 5px 12px !important; font-size: 13px !important; }
  #price-popup .cta-form-lbl--pc   { display: flex !important; }
  #price-popup .cta-form-lbl--sp   { display: none !important; }
  #price-popup .cta-pulse-ring     { display: block !important; }
  #price-popup .cta-shine          { display: block !important; }
}

/* popup 内は画面幅に関わらず常に 1カラム SP コンパクトレイアウト */
#exit-popup .cta-btns            { grid-template-columns: 1fr !important; }
#exit-popup .cta-btn             { height: 58px !important; border-radius: 8px !important; }
#exit-popup .cta-btn--tel        { gap: 8px !important; padding: 0 12px !important; animation: none !important; }
#exit-popup .cta-tel-num         { display: none !important; }
#exit-popup .cta-tel-lbl--pc     { display: flex !important; }
#exit-popup .cta-tel-lbl--sp     { display: none !important; }
#exit-popup .cta-tel-lbl         { font-size: 13px !important; }
#exit-popup .cta-form-lbl--pc    { display: none !important; }
#exit-popup .cta-form-lbl--sp    { display: inline !important; }
#exit-popup .cta-pulse-ring      { display: none !important; }
#exit-popup .cta-shine           { display: none !important; }
#exit-popup .cta-icon-tel        { animation: none !important; }



/* ============================================
   ⑥ 離脱ポップアップ
   ============================================ */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exit-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.exit-popup__content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 40px 24px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  z-index: 1;
}

.exit-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
}

.exit-popup__heading {
  font-size: 22px;
  font-weight: bold;
  color: #e63946;
  margin-bottom: 8px;
}

.exit-popup__sub {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
}

.exit-popup__desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.exit-popup__tel {
  background: #e63946;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  display: block;
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 12px;
}

.exit-popup__form {
  background: #f4a261;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  display: block;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
}


/* ============================================
   ① FVエリア訴求コピー
   ============================================ */
.fv-area-copy {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  letter-spacing: 0.05em;
}

.fv-area-copy__accent {
  color: #f4a261;
  font-weight: 900;
  display: inline-block;
  animation: fvAccentGlow 2.4s ease-in-out infinite;
}
@keyframes fvAccentGlow {
  0%, 100% { color: #f4a261; text-shadow: none; }
  50% { color: #ff7a1a; text-shadow: 0 0 14px rgba(255, 122, 26, 0.7); }
}

/* h1内「安く」アクセント */
.fv__title-accent {
  color: #f4a261;
  display: inline-block;
  transform-origin: center bottom;
  animation: fvTitlePulse 2s ease-in-out infinite;
}
@keyframes fvTitlePulse {
  0%, 100% { transform: scale(1); color: #f4a261; }
  50% { transform: scale(1.07); color: #ff7a1a; text-shadow: 0 0 18px rgba(255, 122, 26, 0.5); }
}

/* priceRow クリッカブル化 */
.priceRow__right--link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  padding: 4px 8px;
  margin: -4px -8px;
}
.priceRow__right--link:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 2px rgba(240, 130, 49, 0.5), 0 4px 12px rgba(240, 130, 49, 0.25);
}
.priceRow__cta-hint {
  font-size: 10px;
  font-weight: 700;
  color: #f08231;
  letter-spacing: 0.04em;
  opacity: 0.85;
  margin-top: 1px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .fv-area-copy {
    font-size: 16px;
  }
  .priceRow__cta-hint {
    font-size: 9px;
  }
}


/* ============================================
   ⑦ 選ばれる理由ラッパー
   ============================================ */
.reason-wrapper {
  background: #f9f9f9;
}

.reason-wrapper__h2 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  padding: 60px 20px 0;
  color: #1a1a2e;
}

.reason-number {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.15em;
  color: #f4a261;
  margin: 0 0 8px;
}

@media (max-width: 768px) {
  .reason-wrapper__h2 {
    font-size: 22px;
  }
}

/* ============================================
   FVジャンプリンク（FV下部・CTA直上）
   ============================================ */
.fv-jump-links {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  gap: clamp(16px, 4vw, 28px);
  width: 100%;
  margin-top: 0;
  padding-top: 0;
}
.fv-jump-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}
.fv-jump-link:hover {
  color: #f4a261;
}
.fv-jump-link__chevron {
  font-size: 10px;
  opacity: 0.9;
  animation: fv-bounce 1.5s ease infinite;
}
@keyframes fv-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@media (max-width: 768px) {
  .fv__inner {
    padding-bottom: 20px;
    gap: 12px;
  }
}

/* FV: 縦幅が足りない端末でコンテンツ圧縮・はみ出し防止 */
@media (max-height: 720px) and (min-width: 769px) {
  .fv__inner {
    padding-top: 28px;
    padding-bottom: 14px;
    gap: 10px;
  }

  .fv__lead {
    font-size: clamp(20px, 3.5vw, 28px);
  }

  .fv__title {
    margin-bottom: 16px;
    font-size: clamp(22px, 4vw, 36px);
  }

  .sec-fv .tabPill {
    height: 48px;
    min-height: 44px;
    padding: 10px 14px;
  }
}

@media (max-height: 640px) {
  .sec-fv {
    min-height: auto;
  }

  .fv__inner {
    padding-top: 24px;
    padding-bottom: 16px;
  }

  .fv-jump-link {
    font-size: 11px;
  }

  .fv-jump-link__chevron {
    font-size: 9px;
  }
}

/* ============================================
   オーナーの声（LP既存トーン）
   ============================================ */
.sec-voice {
  margin: 0 0 80px;
  padding: 0 18px;
}

.sec-voice__lead {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin: -24px auto 36px;
  max-width: 520px;
  line-height: 1.7;
}

.voice-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.voice-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.voice-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.voice-card__shop {
  background-color: #f57c00;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  padding: 8px 10px;
  margin: 0;
}

.voice-card__body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.voice-card__quote {
  color: #444;
  font-size: 13px;
  line-height: 1.75;
  margin: 0 0 12px;
  flex: 1;
}

.voice-card__quote::before {
  content: "“";
  color: var(--brand-orange);
  font-weight: 700;
  margin-right: 2px;
}

.voice-card__owner {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: auto;
}

.voice-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.voice-card__name {
  color: #666;
  font-size: 12px;
}

.works-card__badge--br {
  left: auto;
  right: 10px;
}

.voice-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.voice-card__link:hover .works__card-img img {
  transform: scale(1.04);
}

.voice-card__link:hover .works-card__badge {
  background: #f5f5f5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.28);
  transform: translateY(-1px);
}

.voice-swiper-wrap {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}

.voice-swiper {
  max-width: 100%;
  margin: 0 auto;
}

.voice-swiper__nav {
  display: none;
}

.voice-swiper__pagination {
  position: static;
  margin-top: 16px;
}

.voice-swiper__pagination .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.voice-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--brand-orange);
}

@media (min-width: 769px) {
  .voice-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    transform: none !important;
  }

  .voice-swiper .swiper-slide {
    width: auto !important;
    height: auto;
  }

  .voice-swiper__pagination,
  .voice-swiper__nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .sec-voice {
    margin-bottom: 50px;
    padding: 0 16px;
  }

  .sec-voice__lead {
    margin-top: -8px;
    margin-bottom: 24px;
  }

  .voice-card__shop {
    font-size: 16px;
  }

  .voice-swiper {
    overflow: hidden;
    padding-bottom: 8px;
  }

  .voice-swiper .swiper-slide {
    width: calc(100vw - 32px);
    height: auto;
  }

  .voice-swiper__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 3;
    top: calc((100vw - 32px) * 3 / 8);
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: #888;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .voice-swiper__nav:active {
    background: rgba(255, 255, 255, 1);
    color: var(--brand-orange);
  }

  .voice-swiper__nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
  }

  .voice-swiper__nav--prev {
    left: 2px;
  }

  .voice-swiper__nav--next {
    right: 2px;
  }

  .voice-swiper__nav-icon {
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
  }

  .voice-swiper__nav--prev .voice-swiper__nav-icon {
    transform: rotate(-135deg);
    margin-left: 3px;
  }

  .voice-swiper__nav--next .voice-swiper__nav-icon {
    transform: rotate(45deg);
    margin-right: 3px;
  }
}