/* =========================================================
  TOKENS / RESET
========================================================= */
@charset "utf-8";
:root {
  --c-teal: #2f7f8d;
  --c-teal-dark: #256a76;
  --c-orange: #f1a223;
  --c-navy: #0b1f3a;

  --c-ink: #1a1a1a;
  --c-text: #1a1a1a;
  --c-muted: #666;

  --c-bg: #fff;
  --c-light: #f3f5f7;
  --c-dark: #2c2c2c;

  --line: rgba(0, 0, 0, 0.12);
  --radius: 14px;
  --radius-lg: 12px;
  --radius-xlg: 100px;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.12);

  --container: 1100px;
  --gutter: 12px;
  --section-py: 100px;

  --ff: system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;

  --focus: 0 0 0 3px rgba(241, 162, 35, 0.35);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 10px;
}

body {
  margin: 0;
  font-family: var(--ff);
  color: var(--c-text);
  background: var(--c-bg);
}

img {
  max-width: 100%;
  display: block;
}

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

p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 8px;
}

/* =========================================================
  UTILITIES
========================================================= */
.u-m0 {
  margin: 0 !important;
}
.u-mt-14 {
  margin-top: 14px !important;
}

/* =========================================================
  LAYOUT
========================================================= */
.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.section {
  padding: var(--section-py) 3%;
}

.section--teal {
  background: var(--c-teal);
}

.section--dark {
  background: var(--c-dark);
  color: #fff;
}

/* inner wrappers */
[class$="__inner"] {
  width: min(1000px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

/* headings */
.section__title {
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  font-size: clamp(1.75rem, 1.065rem + 2.58vw, 3rem);
}

.section__title--white {
  color: #fff;
}

.section__lead {
  text-align: center;
  margin: 0 0 26px;
  color: var(--c-muted);
}

.section__lead--white {
  color: rgba(255, 255, 255, 0.88);
}

.section__lead--full {
  grid-column: 1 / -1;
}

/* =========================================================
  BUTTONS
========================================================= */
.btn,
.ctaBtn,
.btnCall,
.btnMail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  border: 2px solid transparent;
  border-radius: var(--radius-xlg);
  cursor: pointer;
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
  text-decoration: none;
  border: 4px solid #fff;
}

.btn:hover,
.ctaBtn:hover,
.btnCall:hover,
.btnMail:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}
.btn {
  width: min(600px, 100%);
  padding: 14px 18px;
  border-radius: 999px;
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  position: relative;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 26px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-left: 9px solid #fff;
  border-bottom: 6px solid transparent;
  box-sizing: border-box;
}

.btn--teal {
  background: #06c755;
  color: #fff;
}

.btn--orange {
  background: var(--c-orange);
  color: #fff;
}

.cta-row {
  display: flex;

  gap: 10px;
  position: absolute;
  bottom: 4%;
  right: 50%;
  transform: translateX(32%);
}
.Square-teal::after {
  border-left: 9px solid var(--c-teal-dark);
}

/* =========================================================
  LISTS
========================================================= */
.list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.list--x li {
  position: relative;
  line-height: 1.6;
  font-weight: 800;
  font-size: 1.6rem;
  border-bottom: 1px solid #fff;
  padding: 18px 0 18px 70px;
}

.list--x li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: url(../img/x.png) center/cover no-repeat;
}

/* =========================================================
  HERO
========================================================= */
.hero {
  width: 100%;
  height: auto;
  aspect-ratio: 1366 / 768;
  background: url(../img/bg_hero.webp) center top/cover no-repeat;
  @media (max-width: 820px) {
    background: url(../img/bg_hero_tab.webp) center top/cover no-repeat;
    aspect-ratio: 820 / 1180;
    @media (max-width: 420px) {
      aspect-ratio: 1080 / 1878;
      background: url(../img/bg_hero_sp.webp) center top/cover no-repeat;
    }
  }
}

.hero__brSp {
  display: none;

  @media (max-width: 820px) {
    display: inline;
  }
}

.hero__content {
  padding-block: 1.2vw;
  padding-left: 11.641vw;
  padding-right: 3.66vw;
  @media (max-width: 820px) {
    padding-block: 3.659vw;
    padding-inline: 4.512vw;
  }
  @media (max-width: 420px) {
    padding-block: 4vw;
  }
}

.hero__textBlock {
  display: flex;
  flex-direction: column;
  @media (max-width: 820px) {
    flex-direction: column-reverse;
  }
}

.hero__head {
  display: flex;
  align-items: center;
  gap: 0.952vw;
  @media (max-width: 820px) {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 1.5vw;

    @media (max-width: 420px) {
      margin-top: 1vw;
      gap: 3vw;
    }
  }
}

.hero__logo {
  width: 16.471vw;

  img {
    width: 100%;
    height: auto;
  }

  @media (max-width: 820px) {
    width: 42.683vw;

    @media (max-width: 420px) {
      width: 51vw;
    }
  }
}

.hero__badge {
  padding-inline: 3.23vw;
  padding-block: 0.366vw;
  letter-spacing: -0.05em;
  line-height: 1.5;
  color: #886208;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  font-size: 1.6vw;
  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/bg_hero-badge.webp) center 50% / contain no-repeat;
  }

  @media (max-width: 820px) {
    text-align: center;
    letter-spacing: 0.1em;
    padding-inline: 6vw;
    padding-block: 0.3vw;

    &::before,
    &::after {
      content: "";
      position: absolute;
      inset: auto;
      top: 50%;
      translate: 0 -50%;
      aspect-ratio: 114 / 199;
      width: 9vw;
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
    }

    &::before {
      left: 0;
      background-image: url(../img/deco_hero-flareL.webp);
    }

    &::after {
      right: 0;
      background-image: url(../img/deco_hero-flareR.webp);
    }

    @media (max-width: 420px) {
      padding-inline: 7.6vw;

      &::before,
      &::after {
        width: 12vw;
        height: 20vw;
      }
    }
  }
}

.hero__badgeMain {
  @media (max-width: 820px) {
    font-size: 3vw;
    font-weight: 600;

    @media (max-width: 420px) {
      font-size: 4.1vw;
    }
  }
}

.hero__badgeSub {
  font-size: 1.47vw;
  @media (max-width: 820px) {
    font-size: 3vw;
    font-weight: 600;

    @media (max-width: 420px) {
      font-size: 3.8vw;
    }
  }
}

.hero__badgeSubAccent {
  @media (max-width: 820px) {
    font-size: 3.5vw;
    font-weight: 700;
  }
}

.hero__titleBubble {
  display: block;
  width: fit-content;
  margin-block: 1vw 1.464vw;
  background-color: #0d1a40;
  color: #fff;
  padding: 0.366vw 1.464vw;
  font-size: 2.3vw;
  line-height: 1.5;
  letter-spacing: 0.02em;
  border-radius: 0.586vw;
  position: relative;
  font-weight: 500;
  font-feature-settings: "palt";

  &::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 42%;
    translate: 0 -1px;
    width: 1.757vw;
    height: 1.025vw;
    background-color: inherit;
    clip-path: polygon(0 0, 100% 0, 25% 100%);
  }

  @media (max-width: 820px) {
    font-size: 3.5vw;
    margin-block: 1.22vw 2.439vw;
    padding: 0.61vw 2.439vw;
    border-radius: 0.976vw;

    @media (max-width: 420px) {
      font-size: 4vw;
    }
  }
}

.hero__titleBubbleAccent {
  font-size: 2.8vw;
  @media (max-width: 820px) {
    font-size: 4vw;
  }
  @media (max-width: 420px) {
    font-size: 5vw;
  }
}

.hero__titleTitle {
  line-height: 1.2;
  margin: 0;
  font-size: 4vw;
  font-weight: 800;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 14px rgba(255, 255, 255, 0.8))
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.6));

  @media (max-width: 820px) {
    font-size: 7vw;
    line-height: 1.5;
    @media (max-width: 420px) {
      font-size: 8vw;
    }
  }
}

.hero__titleAccent {
  font-size: 1.4em;
  @media (max-width: 820px) {
    line-height: 1.3;
  }
  @media (max-width: 420px) {
    font-size: 10.5vw;
  }
}

.hero__lead {
  display: flex;
  align-items: center;
  font-size: 1.9vw;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0d1a40;
  font-feature-settings: "palt";

  &::before {
    content: "";
    order: 1;
    width: 0.15em;
    height: 0.9em;
    margin-inline: 0.5em;
    background-color: currentColor;
  }

  @media (max-width: 820px) {
    font-size: 2.927vw;
    margin-top: 1.829vw;

    @media (max-width: 420px) {
      font-size: 3.4vw;
    }
  }
}

.hero__leadText:first-of-type {
  order: 0;
}

.hero__leadText:last-of-type {
  order: 2;
}

.hero__list {
  padding: 1.26vw 1.575vw;
  background-color: #fff;
  border-radius: 2.306vw;
  border: 0.308vw solid #0d1a40;
  box-shadow: 0 0 2.306vw 1.537vw rgba(255, 255, 255, 0.6);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.384vw;
  width: fit-content;

  @media (max-width: 820px) {
    width: 100%;
    margin-top: 1vw;
    padding: 2.439vw 2.439vw;
    border-radius: 3.659vw;
    border-width: 0.61vw;
    gap: 0.61vw;
    box-shadow: 0 0 3.659vw 2.439vw rgba(255, 255, 255, 0.6);
  }

  @media (max-width: 420px) {
    margin-top: 1vw;
    gap: 2vw;
  }
}

.hero__item {
  font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: 0.09em;
  display: flex;
  align-items: center;
  gap: 0.525vw;
  font-size: 1.461vw;
  color: #0d1a40;
  font-weight: 700;
  padding-bottom: 0.769vw;
  border-bottom: 1px solid #0d1a40;
  &::before {
    content: "";
    flex-shrink: 0;
    width: 2.537vw;
    height: auto;
    aspect-ratio: 33 / 25;
    background: url(../img/icon_check.webp) center/contain no-repeat;
  }

  &:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  @media (max-width: 820px) {
    gap: 1.463vw;
    font-size: 3.293vw;
    letter-spacing: 0.02em;
    padding-bottom: 1.463vw;

    &::before {
      width: 3.659vw;
    }

    @media (max-width: 420px) {
      padding-bottom: 2vw;
    }
  }
}

.hero__itemSub {
  font-size: 1.076vw;

  @media (max-width: 820px) {
    font-size: 2.439vw;
  }
}

.hero__itemSub--block {
  display: block;
}

.hero__ctaWrap {
  display: flex;
  flex-direction: column;
  gap: 0.3vw;
  margin-top: 0.5vw;
  margin-left: 2.5vw;
  width: fit-content;
  align-items: center;

  @media (max-width: 820px) {
    flex-direction: column;
    gap: 1.8vw;
    margin-left: 0;
    width: 100%;
  }
  @media (max-width: 420px) {
    margin-top: 3vw;
  }
}

.hero__btn {
  position: relative;
  width: 37vw;
  min-height: 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 3.66vw 3.83vw;
  border: 0.293vw solid #fff;
  border-radius: 999px;
  box-shadow: 0 0.5vw 0.4vw rgba(0, 0, 0, 0.15);
  color: #fff;
  text-align: center;
  position: relative;
  transition:
    translate 0.25s ease,
    box-shadow 0.25s ease;

  &::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.61vw;
    width: 0.879vw;
    height: 0.879vw;
    border-top: 0.22vw solid #fff;
    border-right: 0.22vw solid #fff;
    rotate: 45deg;
    translate: 0 -50%;
    transition: translate 0.25s ease;
  }

  @media (max-width: 820px) {
    width: 100%;
    min-height: 12vw;
    border-width: 0.488vw;
    gap: 1.8vw;
    padding-inline: 3vw 6.5vw;

    &::after {
      right: 3.6vw;
      width: 2.2vw;
      height: 2.2vw;
      border-top-width: 0.5vw;
      border-right-width: 0.5vw;
    }
    @media (max-width: 420px) {
      min-height: 17vw;
      border-width: 1.1vw;
      gap: 2.6vw;
      padding-inline: 5vw 9vw;

      &::after {
        right: 5vw;
        width: 3vw;
        height: 3vw;
        border-top-width: 0.7vw;
        border-right-width: 0.7vw;
      }
    }
  }

  @media (any-hover: hover) {
    &:hover {
      translate: 0 -3px;
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    }

    &:hover::after {
      translate: 0.44vw -50%;
    }
  }
}

.hero__btn--line {
  background-color: #06c755;
}

.hero__btnIcon {
  flex-shrink: 0;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.hero__btnIcon--line {
  position: absolute;
  top: 50%;
  left: 5.2vw;
  translate: 0 -50%;
  width: 4.087vw;

  @media (max-width: 820px) {
    left: 4.8vw;
    width: 7.3vw;

    @media (max-width: 420px) {
      left: 7vw;
      width: 10.4vw;
    }
  }
}

.hero__btnText {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero__btnMain {
  font-size: 2vw;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;

  @media (max-width: 820px) {
    font-size: 4.5vw;

    @media (max-width: 420px) {
      font-size: 5vw;
    }
  }
}

.hero__btnSub {
  font-size: 1.3vw;
  font-weight: 700;
  font-feature-settings: "palt";
  white-space: nowrap;

  @media (max-width: 820px) {
    font-size: 2.8vw;
    letter-spacing: -0.01em;

    @media (max-width: 420px) {
      font-size: 2.9vw;
    }
  }
}

.hero__smallBadge {
  width: fit-content;
  background-color: #fff;
  color: #028f4b;
  border: 0.15vw solid #028f4b;
  border-radius: 999px;
  font-size: 1.5vw;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.2vw 1.5vw;

  @media (max-width: 820px) {
    font-size: 2.9vw;
    border-width: 0.4vw;
    padding: 0.5vw 3vw;

    @media (max-width: 420px) {
      font-size: 3.8vw;
      border-width: 0.55vw;
      padding: 0.7vw 4vw;
    }
  }
}

/* =========================================================
  COMPARISON TABLE
========================================================= */
#compare {
  background: url(../img/compare-bg.jpg) center bottom/cover no-repeat;
}

.table-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.table-card__head,
.table-card__row {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
}

.table-card__col,
.table-card__cell {
  padding: 14px 12px;
  text-align: center;
  font-size: clamp(1rem, 0.962rem + 0.19vw, 1.125rem);
}

.table-card__col {
  font-size: clamp(1.125rem, 0.972rem + 0.76vw, 1.625rem);
  font-weight: 700;
}

.table-card__col--dark {
  background: #1f2730;
  color: #fff;
}

.table-card__col--accent {
  background: var(--c-orange);
  color: #fff;
}

.table-card__row {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.table-card__cell--label {
  background: #f2f4f6;
  font-size: clamp(1.125rem, 1.049rem + 0.38vw, 1.375rem);
  font-weight: 800;
}

/* =========================================================
  PROFILE
========================================================= */
#profile {
  background: #f9f9f9;
}

.profile {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 8px;
}

.profile__photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.profile__right {
  font-size: 2.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile__name {
  margin: 0;
  font-weight: 700;
  font-size: 48px;
}

.profile__meta {
  margin: 6px 0 10px;
  font-weight: 500;
  font-size: 20px;
}

.profile__textWrap {
  text-align: center;
  margin-top: 30px;
}

.profile__lead {
  font-weight: 800;
  color: var(--c-teal-dark);
  font-size: clamp(1.5rem, 1.08rem + 2.1vw, 2.5rem);
  margin: 40px 0 0;
}

.profile__content {
  margin: 16px 0 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.mini-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 12px;
}

.mini-card__title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: var(--c-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(0, 0, 0, 0.8);
  display: grid;
  gap: 6px;
  font-size: 18px;
}

/* =========================================================
  WORRIES
========================================================= */
#worries {
  background: url(../img/worries-bg_1.jpg) center/cover no-repeat;
}

.worries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.worries__photo img {
  width: 100%;
}

/* =========================================================
  FEE
========================================================= */
#fee {
  overflow: hidden;
  text-align: center;
  position: relative;
}

#fee::before {
  content: "";
  width: 200px;
  height: 400px;
  display: inline-block;
  background: url(../img/fee-img.png) center/cover no-repeat;
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(230%);
  pointer-events: none;
}

#fee h3 {
  font-size: 1.5rem;
  color: var(--c-teal);
}

/* =========================================================
  ICON CARDS
========================================================= */
.icon-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
}

.icon-cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

.icon-cards span {
  font-size: 50px;
  color: #ffd400;
}

.icon-card {
  background: var(--c-teal);
  color: #fff;
  border-radius: var(--radius);
  padding: 8%;
  box-shadow: var(--shadow);
}

.icon {
  font-size: 28px;
  margin-bottom: 6px;
  text-align: center;
}

.icon-card p {
  margin: 0;
}

.icon img {
  margin: 0 auto;
}

/* =========================================================
  POINTS (Reasons)
========================================================= */
.point {
  background: #fff;
  color: var(--c-ink);
  padding: 48px 16px;
  margin-bottom: 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

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

.point__head {
  text-align: center;
  margin-bottom: 22px;
}

.point__label {
  margin: 0;
  font-weight: 700;
  color: var(--c-teal);
  letter-spacing: 0.08em;
  font-size: 14px;
}

.point__no {
  margin: 4px 0 12px;
  font-weight: 900;
  color: var(--c-teal);
  font-size: clamp(44px, 7vw, 64px);
  line-height: 1;
}

.point__title {
  margin: 0;
  font-size: clamp(1.75rem, 1.477rem + 1.36vw, 2.5rem);
  line-height: 1.35;
  font-weight: 800;
}

.lead {
  margin: 10px 0 0;
  line-height: 1.7;
  color: var(--c-muted);
}

.grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

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

.grid--imgText {
  grid-template-columns: 420px 1fr;
  margin-top: 22px;
  gap: 22px;
  align-items: center;
}

.grid--hoursBadgePhoto {
  grid-template-columns: 340px 180px 1fr;
  margin-top: 22px;
  gap: 22px;
  align-items: center;
}

.media {
  margin: 0;
  width: 100%;
}

.media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.stats {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.9;
  color: var(--c-muted);
}

.stats span {
  font-weight: 700;
  color: var(--c-ink);
}

.stats strong {
  font-weight: 700;
  color: var(--c-ink);
}

.desc {
  margin: 0;
  line-height: 1.9;
  color: var(--c-muted);
}

.box {
  border: 4px solid rgba(47, 127, 141, 0.35);
  margin-top: 60px;
  padding: 4% 3% 3%;
  position: relative;
  background: #f2f2f2;
}

.box__title {
  padding: 0.6% 2%;
  background: #428897;
  color: #fff;
  width: fit-content;
  font-weight: 600;
  text-align: center;
  font-size: 24px;
  border-radius: 5px;
  position: absolute;
  top: -16%;
  left: 50%;
  transform: translateX(-50%);
}

.box__body p {
  margin: 0 0 10px;
}
.box__body p:last-child {
  margin-bottom: 0;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checks li {
  position: relative;
  padding-left: 32px;
  margin: 12px 0;
  font-size: 20px;
  line-height: 1.7;
  color: var(--c-ink);
  font-weight: 700;
}

.checks li small {
  font-weight: 600;
  color: var(--c-muted);
  font-size: 16px;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-navy);
}

.checks li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.55em;
  width: 12px;
  height: 8px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}

.pill {
  margin: 0 0 10px;
  display: inline-block;
  background: var(--c-teal);
  color: #fff;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 18px;
}
.hours__list {
  margin: 0;
}

.hours__row {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin: 10px 0;
  font-size: 18px;
  line-height: 1.6;
}

.hours__row dt {
  min-width: 5.5em;
  font-weight: 700;
}

.hours__row dd {
  margin: 0;
  font-weight: 700;
  color: var(--c-muted);
}

.note {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-muted);
}

.badge {
  width: 180px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--c-teal);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  margin: 0 auto;
}

.badge__top,
.badge__bottom {
  margin: 0;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0.95;
}

.badge__main {
  margin: 8px 0 6px;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
}

.badge__main span {
  display: block;
  font-size: 24px;
  font-weight: 700;
}

.badge__main b {
  color: #ffe066;
}

/* POINT03 badges */
.badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 22px auto 26px;
  max-width: 920px;
}

.example {
  border-top: 2px solid #222;
  padding-top: 10px;
  text-align: center;
}

.example__big {
  margin: 0;
  font-size: 28px;
  color: var(--c-ink);
  font-weight: 700;
  line-height: 1.45;
}

.example__small {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.45;
}

.example__arrow {
  text-align: center;
  font-weight: 600;
  color: var(--c-ink);
  margin: 0;
}

.em {
  text-align: center;
  margin: 22px 0 26px;
}

.em__pill {
  margin: 40px 0 0;
}

.em__pill span {
  position: relative;
  display: inline-block;
  background: var(--c-teal);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 6px 18px;
  border-radius: 6px;
}

.em__pill span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: var(--c-teal) transparent transparent;
}

.em__text {
  margin: 0;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: var(--c-teal);
  line-height: 1.25;
}

.em__text b {
  font-size: 1.35em;
}

.center {
  color: var(--c-ink);
  line-height: 1.9;
}

/* =========================================================
  CHANGE (sec-lawyer)
========================================================= */
.sec-lawyer {
  padding: var(--section-py) var(--gutter);
  background: #fff;
  color: var(--c-ink);
}

.sec-lawyer__head {
  text-align: center;
  margin-bottom: 26px;
}

.sec-lawyer__title {
  margin: 0;
  line-height: 1.35;
  color: var(--c-teal);
}

.sec-lawyer__sub {
  margin: 10px 0 0;
  color: var(--c-muted);
}

.sec-lawyer__top {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
  align-items: stretch;
}

.sec-lawyer__photo {
  margin: 0;
  aspect-ratio: 5 / 4;
  overflow: hidden;
}

.sec-lawyer__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.sec-lawyer__stress {
  background: var(--c-teal);
  color: #fff;
  padding: 16px 18px;
}

.sec-lawyer__stressTitle {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  color: var(--c-teal);
  background: #fff;
  position: relative;
  padding: 10px 8px;
}

.sec-lawyer__stressTitle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 12px 12px 0;
  border-style: solid;
  border-color: #ffffff transparent transparent;
}

#change .list--x li {
  font-size: 22px;
  font-weight: 700;
  padding: 14px 0 14px 41px;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

#change .list--x li::before {
  width: 30px;
  height: 30px;
  background-image: url(../img/x-navy.png);
}

.sec-lawyer__callout {
  margin: 32px auto 0;
  max-width: 60%;
}

.sec-lawyer__text,
.sec-lawyer__foot {
  margin-top: 18px;
  text-align: center;
  color: var(--c-muted);
  font-size: 13px;
  line-height: 1.9;
}

.sec-lawyer__q {
  color: var(--c-ink);
  font-weight: 700;
  margin-top: 14px;
}

.sec-lawyer__highlight span,
.sec-lawyer__note span {
  color: var(--c-ink);
  font-weight: 700;
  background: linear-gradient(transparent 70%, #fff1a8 0);
}

.sec-lawyer__tableWrap {
  margin: 18px auto 0;
}

.tbl {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-weight: 700;
}

.tbl thead th {
  background: var(--c-teal);
  color: #fff;
  padding: 12px 10px;
  border: 1px solid var(--c-teal);
  font-size: 22px;
}

.tbl td {
  padding: 14px 12px;
  border: 1px solid rgba(47, 127, 141, 0.28);
  background: #fff;
  font-size: 22px;
  text-align: center;
}

.tbl__amount {
  font-weight: 700;
  color: var(--c-teal);
  font-size: 16px;
}

/* =========================================================
  CASES
========================================================= */
.caseSec {
  background: #4f94a0;
  padding: var(--section-py) var(--gutter) calc(var(--section-py) - 12px);
  color: #fff;
}

.caseSec__head {
  text-align: center;
  padding: 22px 0 18px;
}

.caseSec__sub {
  margin: 8px 0 0;
  font-weight: 700;
  font-size: 18px;
}

.caseCard {
  background: #fff;
  color: var(--c-ink);
  border: 1px solid var(--line);
  padding: 18px 16px;
}

.caseCard + .caseCard {
  margin-top: 10px;
}

.caseCard__row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
  align-items: stretch;
}

.caseCard__left {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 14px;
}

.caseCard__meta {
  margin: 0 0 12px;
  font-weight: 700;
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
  padding-bottom: 10px;
  font-size: 24px;
  text-align: center;
}
.caseCard__step {
  text-align: center;
}
.caseCard__black {
  margin: 0;
  background: #000;
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  padding: 10px 12px;
  display: inline-block;
  text-align: center;
}

.caseCard__arrow {
  height: 0;
  width: 0;
  margin: 10px auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--c-navy);
}

.caseCard__orange {
  background: var(--c-orange);
  color: #fff;
  padding: 14px 12px 12px;
  text-align: center;
}

.caseCard__orangeTop,
.caseCard__orangeBig {
  margin: 0;
  font-weight: 800;
  font-size: 30px;
}

.caseCard__orangeBig {
  margin-top: 8px;
}

.caseCard__note {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-muted);
  text-align: center;
}

.caseCard__photo {
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  overflow: hidden;
  background: #f6f6f6;
}

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

.caseSec__disclaimer {
  margin: 0;
  padding: 18px 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}
.sp-only {
  display: none;
}

/* =========================================================
  FLOW
========================================================= */
.flowSec {
  background: #fff;
  padding: var(--section-py) var(--gutter);
}

.flowSec__head {
  text-align: center;
  margin-bottom: 28px;
}

.flowCard {
  border: 1px solid rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;
  background: #fff;
}

.flowCard__bar {
  background: var(--c-teal);
  color: #fff;
  font-weight: 700;
  padding: 14px 18px;
  margin: 0;
  font-size: 28px;
}

.flowCard__body {
  padding: 28px;
}

.flowCard__body--center {
  text-align: center;
}

.flowCard__body--split {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
}

.flowPill {
  display: inline-block;
  background: #eef6f8;
  color: var(--c-navy);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-xlg);
  margin-bottom: 12px;
  font-size: 24px;
}

.flowLines p {
  margin: 6px 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
}

.flowLink {
  color: var(--c-teal);
  font-weight: 700;
  word-break: break-all;
  display: block;
  text-decoration: underline;
}

.flowSmall,
.flowNote {
  margin-top: 10px;
  font-size: 18px;
  color: var(--c-muted);
  line-height: 1.7;
}

.flowText {
  line-height: 1.8;
}

.flowCard__photo {
  margin: 0;
}

.flowCard__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* =========================================================
  FAQ (CSS-only accordion)
========================================================= */
.faqSec {
  background: #f2f2f2;
  padding: var(--section-py) var(--gutter);
}

.faqSec__head {
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(1fr);
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0 0;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  position: relative;
  list-style: none;
  background: #4e8a94;
  color: #fff;
  padding: 20px 50px 20px 20px;
  font-weight: 700;
  font-size: 22px;
  cursor: pointer;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::before,
.faq-question::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #fff;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  transform: translateY(-50%);
}

.faq-question::after {
  transform: translateY(-50%) rotate(90deg);
}

details[open] .faq-question::after {
  opacity: 0;
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  padding: 14px 16px 16px;
}

.faq-answer p {
  margin: 0 0 10px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}

/* マーカーが枠の左端に出ないよう内側に寄せる */
.faq-answer ul {
  margin: 0 0 10px;
  padding-left: 1.5em;
  list-style: disc;
}

.faq-answer li {
  margin-bottom: 4px;
}

.example-box {
  margin: 10px 0;
  padding: 12px 14px;
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 6px solid var(--c-orange);
  font-weight: 700;
  line-height: 1.8;
}

/* =========================================================
  OFFICE
========================================================= */
.officeSec {
  background: #fff;
  padding: var(--section-py) var(--gutter);
}

.officeSec__head {
  text-align: center;
  margin-bottom: 18px;
}

.officeMap {
  width: 100%;

  overflow: hidden;
}

.officeGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
  margin-top: 20px;
}

.officeCol {
  display: grid;
  gap: 12px;
}

.infoCard,
.areaCard {
  background: #f6f6f6;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.infoCard__ttl,
.areaCard__ttl {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--c-ink);
}

.infoCard__txt,
.areaCard__txt {
  margin: 6px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-muted);
  line-height: 1.7;
}

.areaCard__row {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 16px;
}

.areaCard__note {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-teal);
  margin-top: 30px;
  text-align: center;
}

.areaCard__big {
  font-size: 28px;
  font-weight: 700;
  color: var(--c-teal);
  text-align: center;
}

.areaCard__img {
  margin: 0;
}

.areaCard__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
  CTA
========================================================= */
.ctaSec {
  background: #4f94a0;
  padding: 70px var(--gutter) 80px;
}

.ctaSec__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.ctaSec__lead {
  margin: 10px 0 0;
  color: #eaf6f8;
  font-weight: 700;
  font-size: 16px;
}

.ctaSec__copy {
  margin: 26px auto 34px;
  max-width: 760px;
  color: #eaf6f8;
  font-weight: 600;
  font-size: 16px;
  line-height: 2.2;
}

.ctaSec__copy p {
  margin: 10px 0;
}

.ctaBox {
  margin: 0 auto 30px;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: grid;
  grid-template-columns: 4fr 3fr;
  align-items: stretch;
  overflow: hidden;
  color: var(--c-ink);
}

.ctaBox__left {
  padding: 18px 20px;
  text-align: left;
}

.ctaBox__photo {
  margin: 0;
  background: #f3f3f3;
}

.ctaBox__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ctaBottom {
  margin-top: 10px;
}

.ctaBottom__note,
.ctaBottom__note2 {
  margin: 6px 0;
  color: #eaf6f8;
  font-weight: 600;
  font-size: 16px;
}

.ctaBtn {
  background: var(--c-bg);
  color: var(--c-teal-dark);
  font-weight: 900;
  font-size: clamp(20px, 4vw, 32px);
  letter-spacing: 0.02em;
  padding: 20px 50px 18px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
  border: 4px solid var(--c-teal);
  display: inline-block;
  margin-top: 30px;
  max-width: 768px;
  width: 100%;
  border-radius: var(--radius-xlg);
}

.ctaBtn__sub {
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-top: 6px;
}

/* =========================================================
  CONTACT FLOW (simple CTA blocks)
========================================================= */
.contactFlow {
  background: #fff;
  padding: var(--section-py) var(--gutter) 70px;
}

.contactFlow__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.contactFlow__title {
  margin: 0 0 26px;
  color: var(--c-teal);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.flowCircles {
  display: flex;
  gap: 22px;
  margin-bottom: 22px;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.flowCircle img {
  width: 100%;
  height: auto;
  position: relative;
}
.flowCircle {
  position: relative;
}
.flowCircle::after {
  content: "";
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  right: -7%;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-left: 9px solid var(--c-teal);
  border-bottom: 6px solid transparent;
  box-sizing: border-box;
}
.flowCircle:last-child::after {
  display: none;
}

.contactFlow__note {
  margin: 0 0 26px;
  color: var(--c-ink);
  line-height: 1.9;
}

.ctaBlock {
  margin: 34px 0 0;
}

.ctaBlock__ttl {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: var(--c-ink);
}

.ctaBlock__txt {
  margin: 0 0 14px;
  color: var(--c-muted);
  line-height: 1.9;
}

.btnCall,
.btnMail {
  justify-content: space-around;
  width: min(720px, 100%);
  padding: 18px 18px 16px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-xlg);
}

.btnCall {
  background: var(--c-orange);
  color: #fff;
}
.btnMail {
  background: var(--c-navy);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.btnCall__icon,
.btnMail__icon {
  width: 10%;
}

.main-sub-wrap {
  text-align: center;
  margin-right: 20px;
}

.btnCall__main {
  font-size: clamp(1.5rem, 0.591rem + 4.55vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
}

.btnCall__sub,
.btnMail__sub {
  margin-top: 6px;
  font-weight: 700;
  font-size: 18px;
}

.btnMail__top {
  font-size: 14px;
  font-weight: 900;
  opacity: 0.95;
}

.btnMail__main {
  font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 70px 5%;
}
.privacy {
  margin-top: 50px;
}
.copyright,
.privacy {
  font-size: 0.9em;
}
.flow-sp {
  display: none;
}
.floating-cta {
  position: fixed;
  bottom: 3%;
  right: 3%;
  width: 300px;
}
.floating-cta {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    visibility 0.3s;
}
.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pc-only {
  display: block;
}
.tb-only {
  display: none;
}
.sp-only {
  display: none;
}
/* =========================================================
  RESPONSIVE
========================================================= */
@media (max-width: 980px) {
  .grid--imgText {
    grid-template-columns: 1fr;
  }
  .grid--hoursBadgePhoto {
    grid-template-columns: 1fr;
  }
  .caseCard__row {
    grid-template-columns: 1fr;
  }

  .ctaBox {
    grid-template-columns: 1fr;
  }
  .profile {
    grid-template-columns: 1fr;
  }
  .mini-card {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 4fr;
  }
  .officeGrid {
    grid-template-columns: 1fr;
  }
  .areaCard__row {
    grid-template-columns: 1fr;
  }

  .badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --section-py: 70px;
  }
  .sec-lawyer__top {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .worries {
    grid-template-columns: 3fr 2fr;
  }
  .list--x li {
    font-size: 1.2rem;
    padding-left: 56px;
  }
  .list--x li::before {
    width: 40px;
    height: 40px;
  }
  .flowCircles {
    gap: 12px;
  }
  .flowCard__body--split {
    grid-template-columns: 1fr;
  }
  #fee::before {
    background: url(../img/fee-img_sp.webp) center/contain no-repeat;
    top: 0;
    right: 20px;
    transform: translateX(0);
    width: 150px;
    height: 200px;
  }

  .grid--hoursBadgePhoto {
    grid-template-columns: 3fr 2fr;
  }
  .cell-wide {
    grid-column: 1 / -1;
  }
  .infoCard {
    position: relative;
    text-align: center;
  }

  .areaCard__img img {
    width: 20%;
    position: absolute;
    bottom: 5%;
    right: 10%;
  }
  .areaCard__row {
    width: 70%;
  }
  .zenkoku-badge {
    width: 80%;
    margin: 0 auto;
  }
  .cta-row {
    justify-content: center;
  }
  #point01 .text-center {
    text-align: center;
  }
  .caseCard__row {
    grid-template-rows: 1fr 460px;
  }

  .pc-only {
    display: none;
  }
  .tb-only {
    display: block;
  }
  .sp-only {
    display: none;
  }

  .cta-row {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 5%;
    flex-wrap: nowrap;
  }
  .btn {
    width: 100%;
  }
  .mini-card__title {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  h3 {
    font-size: 24px;
    font-weight: 700;
  }
  p {
    font-size: 14px;
  }
  .btn {
    padding: 12px 16px;
  }
  .icon-cards--3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .point {
    padding: 28px 0;
  }
  .grid--2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .box__title {
    padding: 2% 2%;
    width: 90%;
    top: -8%;
    font-size: 20px;
  }
  .box {
    padding: 8% 3% 3%;
  }
  .box--point3 {
    padding: 13% 3% 3%;
  }
  .grid--hoursBadgePhoto {
    grid-template-columns: 1fr;
    flex-direction: column-reverse;
  }
  .zenkoku-badge {
    width: 60%;
    margin: 0 auto;
  }
  .media {
    order: -1;
  }
  .media--point2 {
    order: 2;
  }
  .section__lead {
    text-align: justify;
  }
  .profile__content {
    text-align: justify;
  }
  .u-mt-14 {
    text-align: justify;
  }
  .example__big {
    font-size: 20px;
  }
  .example__small {
    font-size: 20px;
  }
  .sec-lawyer__callout {
    max-width: 100%;
  }
  .sec-lawyer__text,
  .sec-lawyer__foot {
    text-align: justify;
  }

  .faq-answer ul {
    padding-left: 1em;
    margin-bottom: 10px;
  }

  .pill {
    display: block;
    text-align: center;
  }

  .caseCard__orangeTop,
  .caseCard__orangeBig {
    font-size: 20px;
  }
  .caseCard__row {
    grid-template-rows: auto 250px;
  }
  .caseCard__photo {
    order: 2;
  }
  .pc-only {
    display: none;
  }
  .tb-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .flowPill {
    border-radius: 959px;
    font-size: 18px;
  }
  .areaCard__row {
    width: 100%;
  }
  .areaCard__img img {
    width: 25%;
    position: absolute;
    bottom: 5%;
    right: 10%;
  }
  .areaCard__note {
    width: 60%;
    text-align: center;
  }
  .infoCard {
    position: relative;
  }
  .areaCard__big {
    width: 60%;
    text-align: center;
    font-size: 24px;
    margin-bottom: 50px;
  }
  .flowCard__body {
    padding: 18px;
  }

  .flowText {
    font-size: 14px;
    text-align: justify;
  }
  .ctaSec__copy {
    text-align: justify;
  }
  .ctaBottom__note {
    text-align: justify;
  }
  .btnMail__main {
    font-size: 18px;
    font-weight: 900;
  }
  .btnMail__sub,
  .btnCall__sub {
    font-size: 16px;
  }

  .contactFlow__note,
  .ctaBlock__txt {
    text-align: justify;
  }
  .ctaBtn {
    font-size: 28px;
    font-weight: 700;
  }
  .tokuyaku {
    grid-template-columns: repeat(2, 1fr);
  }
  .icon-card {
    text-align: center;
    padding: 0;
  }

  .icon-card p {
    font-size: 20px;
    line-height: 1.4;
    padding: 3% 0;
  }
  .flowLines p {
    text-align: left;
  }
  .flowSmall {
    text-align: left;
    font-size: 14px;
  }

  #fee::before {
    top: 60px;
    right: 10px;
    width: 130px;
    height: 140px;
  }

  .fee-secTitle {
    text-align: left;
    text-shadow: 0px 0px 48px rgba(255, 255, 255, 1);
  }

  .profile__lead,
  .mini-card__title {
    font-size: 24px;
  }
  .list--x li {
    font-size: 16px;
  }
  .point__title {
    font-size: 24px;
  }
  #change .list--x li {
    font-size: 20px;
  }
  .tbl td {
    font-size: 20px;
  }
  .caseCard__black {
    font-size: 20px;
  }
  .caseCard__orangeBig {
    margin-top: 0;
  }
  .flowCard__bar {
    font-size: 24px;
    font-weight: 800;
  }
  .faq-question {
    font-size: 18px;
  }
  .infoCard__txt,
  .areaCard__txt {
    font-size: 16px;
  }
  .profile__name {
    font-size: 24px;
  }
  .section {
    position: relative;
  }
  .worries {
    grid-template-columns: 1fr;
  }
  .worries__photo img {
    position: absolute;
    top: -10px;
    right: 0;
  }
  .worries__photo img {
    width: 30%;
  }
  .icon-cards--3 .icon-card {
    display: flex;
    align-items: center;

    gap: 20px;
  }
  .icon img {
    width: 60%;
  }
  .icon__3 img {
    width: 70%;
    padding-left: 10px;
  }
  .caseCard__profile {
    font-size: 16px;
  }

  .cta-row {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 5%;
    flex-wrap: wrap;
  }
  .checks li {
    font-size: 18px;
  }
  .flowNote {
    font-size: 14px;
  }
  .sec-lawyer__stressTitle {
    font-size: 22px;
  }
  .caseCard__meta {
    line-height: 1.4;
  }
  .caseCard {
    padding: 10px;
  }
  .caseCard__orange {
    padding: 3%;
  }
  .orange-small {
    font-size: 0.6em;
    display: inline;
  }
  #point01 .text-center {
    text-align: justify;
  }
  .flow-sp {
    display: block;
  }
  .flow-pc {
    display: none;
  }
  .flowCircles {
    flex-direction: column;
  }
  .flowCircle::after {
    bottom: -28%;
    right: 45%;
    transform: rotate(90deg);
  }
  .floating-cta {
    padding: 3%;
    width: 100%;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    background-color: rgba(255, 255, 255, 0.3);
  }
}
