@charset "UTF-8";

:root {
  --header-height: 8rem;

  --color-navy:      #0D2040;
  --color-red:       #B61429;
  --color-green:     #059669;
  --color-gold:      #997A44;
  --color-heading:   #54472C;
  --color-text:      #464338;
  --color-beige:     #D6C2A6;
  --color-line:      #CCCCCC;
  --color-case-line: #786F5C;
  --color-tag:       #837A67;

  --font-num: "Montserrat", "Noto Sans JP", sans-serif;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
}


@media screen and (max-width: 1200px) and (min-width: 768px) {
  html {
    font-size: 0.83333vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 2.66667vw;
  }
}


body {
  padding-top: var(--header-height);
  font-family: var(--font-noto-serif);
  font-weight: 500;
  color: var(--color-text);
  background-color: #FFFFFF;
  letter-spacing: 0.05em;
}

/* --------------------------------------------
  共通パーツ
-------------------------------------------- */
.l-inner {
  position: relative;
  z-index: 1;
  width: 112rem;
  margin-inline: auto;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.c-heading {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: var(--color-heading);
}

.c-secbg {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.c-secbg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.p-fv,
.p-advance,
.p-worries,
.p-reason,
.p-partner,
.p-flow,
.p-office {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.p-fv       { background-image: url(../images/bg-fv-pc.webp); }
.p-advance  { background-image: url(../images/bg-advance-pc.webp); }
.p-worries  { background-image: url(../images/bg-worries-pc.webp); }
.p-reason   { background-image: url(../images/bg-reason-pc.webp); }
.p-partner  { background-image: url(../images/bg-partner-pc.webp); }
.p-flow     { background-image: url(../images/bg-flow-pc.webp); }
.p-office   { background-image: url(../images/bg-office-pc.webp); }

/* --------------------------------------------
  ヘッダー
-------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  max-width: 100vw;
  height: var(--header-height);
  background-color: #FFFFFF;
}

.l-header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  padding-left: 1.5rem;
}

.l-header__logo {
  position: relative;
  flex-shrink: 0;
  width: 30rem;
}

.l-header__logo-sub {
  position: absolute;
  top: 4rem;
  left: 8.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
  color: #3D393A;
}

.l-header__tel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: auto;
  margin-right: 1.6rem;
}

.l-header__tel-icon {
  width: 3.6rem;
}

.l-header__tel-num {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.061em;
  color: var(--color-navy);
}

.c-headbtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20.2rem;
  height: 100%;
  color: #FFFFFF;
  text-align: center;
}

.c-headbtn--form { background-color: var(--color-red); }
.c-headbtn--line { background-color: var(--color-green); }

.c-headbtn__main {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
}

.c-headbtn__sub {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
}

/* --------------------------------------------
  ヘッダー下の帯
-------------------------------------------- */
.p-headbar {
  height: 5rem;
  background-color: var(--color-beige);
  font-size: 2rem;
  font-weight: 600;
  line-height: 5rem;
  text-align: center;
  color: var(--color-navy);
}

/* --------------------------------------------
  CTAボタン
-------------------------------------------- */
.c-btns {
  display: flex;
  gap: 1.3rem;
  width: 112rem;
}

.c-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 8.2rem;
  border: 1px solid var(--color-gold);
  border-radius: 1rem;
  color: #FFFFFF;
  text-align: center;
}

.c-btn--form { background-color: var(--color-red); }
.c-btn--line { background-color: var(--color-green); }

.c-btn__main {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.4;
}

.c-btn__sub {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.35;
}

.c-btn--form::after,
.c-btn--line::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 2.2rem;
  transform: translateY(-50%);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}

.c-btn--tel {
  display: grid;
  grid-template-columns: 4.8rem auto;
  grid-template-rows: auto auto;
  align-content: center;
  justify-content: center;
  column-gap: 1rem;
  background-color: var(--color-navy);
}

.c-btn__icon {
  position: relative;
  top: -0.5rem;
  grid-row: 1 / 3;
  align-self: center;
  width: 4.8rem;
}

.c-btn__telnum {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.25;
}

.c-btn__telsub {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
}

/* --------------------------------------------
  CTAバー（FV直下）
-------------------------------------------- */
.p-ctabar {
  position: relative;
  height: 19.9rem;
}

.p-ctabar__inner {
  position: relative;
  height: 100%;
}

.p-ctabar__note {
  position: absolute;
  top: 2.7rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: #FFFFFF;
}

.p-ctabar__note--1 { left: 11rem; }
.p-ctabar__note--2 { left: 48.8rem; }

.p-ctabar .c-btns {
  position: absolute;
  top: 5.9rem;
  left: 0;
}

/* --------------------------------------------
  CTAブロック
-------------------------------------------- */
.p-cta {
  position: relative;
}

.p-cta__inner {
  position: relative;
  height: 42.6rem;
}

.p-cta__slash--l::before { content: "＼ "; }
.p-cta__slash--r::before { content: " ／"; }

.p-cta__heading {
  position: absolute;
  top: 5.2rem;
  left: 4.1rem;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: #FFFFFF;
}

.c-badges {
  position: absolute;
  top: 10.5rem;
  left: 7.6rem;
  display: flex;
  gap: 0.7rem;
}

.c-badge {
  display: flex;
  flex-direction: column;
  width: 20.3rem;
  height: 13.6rem;
  padding: 0.4rem;
  border: 1px solid var(--color-gold);
  overflow: hidden;
  background-color: #FFFFFF;
  border-radius: 0.5rem;
}

.c-badge__label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.2rem;
  background-color: var(--color-navy);
  border-radius: 0.3rem;
  font-size: 2.4rem;
  font-weight: 600;
  color: #F5F5F0;
}

.c-badge__price {
  flex: 1;
  min-height: 0;
  padding-top: 0.88rem;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 0.9;
  text-align: center;
  color: var(--color-navy);
}

.c-badge__price em {
  font-family: var(--font-num);
  font-style: normal;
  font-weight: 700;
  font-size: 6.4rem;
  letter-spacing: -0.02em;
  color: var(--color-gold);

}

.p-cta__note {
  position: absolute;
  top: 25.15rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: #FFFFFF;
}

.p-cta__note--1 { left: 11rem; }
.p-cta__note--2 { left: 48.8rem; }

.p-cta .c-btns {
  position: absolute;
  z-index: 2;
  top: 28.3rem;
  left: 0;
}

.p-cta__person {
  position: absolute;
  z-index: 1;
  top: -6rem;
  left: 73.8rem;
  width: 30rem;
}

/* --------------------------------------------
  お問い合わせの前に
-------------------------------------------- */
.p-advance {
  padding: 5.7rem 0 5.9rem;
}

.p-advance__heading {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: var(--color-red);
}

.p-advance__card {
  width: 78.6rem;
  margin: 3.7rem auto 0;
  padding: 3.3rem 4rem 3.5rem;
  background-color: #FFFFFF;
  border: 2px solid #D4B56A;
  text-align: center;
}

.p-advance__target {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0C1F3F;
}

.p-advance__target-em {
  font-size: 2.4rem;
  font-weight: 600;
}

.p-advance__audience {
  margin-top: 1.9rem;
  padding-top: 1.9rem;
  border-top: 1px solid #D0D0D0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.375;
  color: var(--color-navy);
}

.p-advance__exclude-title {
  margin-top: 3rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  color: #0C1F3F;
}

.p-advance__exclude {
  width: 70.6rem;
  margin: 1.9rem auto 0;
  padding: 2rem 2.4rem 1.8rem;
  border: 1px solid var(--color-line);
  text-align: left;
}

.p-advance__exclude li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-red);
}

.p-advance__exclude li + li {
  margin-top: 0.4rem;
}

.p-advance__exclude li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0;
}

.p-advance__notes {
  margin-top: 1.7rem;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.55;
  text-align: left;
  color: #666666;
}

.p-advance__notes a {
  text-decoration: underline;
}

/* --------------------------------------------
  解決事例
-------------------------------------------- */
.p-case {
  padding: 7.1rem 0 4.36rem;
  position: relative;
}

.p-case__lead {
  width: 90.1rem;
  padding-right: 2.2rem;
  margin: 2.4rem auto 0;
  font-size: 2.1rem;
  line-height: 1.8;
  text-align: justify;
}

.p-case__list {
  width: 90.1rem;
  margin: 3.3rem auto 0;
}

.c-case {
  position: relative;
  height: 24.8rem;
  border-top: 1px solid rgba(204, 204, 204);
  color: var(--color-gold);
}

.c-case__tag {
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  width: 20rem;
  height: 4rem;
  background-color: var(--color-tag);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 4rem;
  text-align: center;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  color: #FFFFFF;
}

.c-case__before {
  position: absolute;
  top: 5.7rem;
  left: 2.1rem;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
}

.c-case__before-label {
  display: block;
  margin-bottom: 1.1rem;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--color-text);
}

.c-case__before-num {
  color: var(--color-text);
}

.c-case__before-num em {
  font-family: var(--font-num);
  font-style: normal;
  font-weight: 700;
  font-size: 5.6rem;
  letter-spacing: -0.02em;
  color: var(--color-tag);
}

.c-case__rate {
  position: absolute;
  top: 1.5rem;
  left: 24.8rem;
  width: 9.4rem;
  text-align: center;
}

.c-case__rate-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: var(--color-text);
}

.c-case__rate-num em {
  font-family: var(--font-num);
  font-style: normal;
  font-weight: 700;
  font-size: 4.4rem;
  letter-spacing: -0.02em;
  color: var(--color-gold);
}

.c-case__arrow {
  display: block;
  width: 6rem;
  margin: 0.9rem auto 0;
}

.c-case__after {
  position: absolute;
  top: 5.5rem;
  left: 34.4rem;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text);
}

.c-case__after em {
  font-family: var(--font-num);
  font-style: normal;
  font-weight: 700;
  font-size: 9rem;
  letter-spacing: -0.02em;
  color: var(--color-gold);
}

.c-case__text {
  position: absolute;
  top: 14.7rem;
  left: 0.1rem;
  width: 87.8rem;
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--color-text);
}

/* --------------------------------------------
  担当するのは、この3名です
-------------------------------------------- */
.p-partner {
  padding: 7.9rem 0 8rem;
  color: #FFFFFF;
}

.p-partner .c-heading {
  color: #FFFFFF;
}

.p-partner__lead {
  max-width: 90rem;
  margin-top: 3.9rem;
  margin-inline: auto;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.81;
  text-align: left;
}

.p-partner__list {
  display: grid;
  grid-template-columns: repeat(3, 28rem);
  gap: 3rem;
  justify-content: center;
  margin-top: 3.2rem;
}

.c-partner__photo {
  width: 28rem;
  height: 35rem;
  object-fit: cover;
}

.c-partner__name {
  margin-top: 1.6rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.45;
}

.c-partner__name .pc {
  font-size: 1.6rem;
}

.c-partner__role,
.c-partner__meta {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.45;
}

.c-partner__meta {
  margin-top: 0;
}

.c-partner__quote {
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid #CCCCCC;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.78;
  text-align: left;
}

.p-partner__foot {
  width: 88.1rem;
  margin: 4rem auto 0;
  padding: 1rem 2rem 1.7rem;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}

.p-partner__meet {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.78;
}

.p-partner__note {
  margin-top: 0;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.77;
}

/* --------------------------------------------
  弁護士費用
-------------------------------------------- */
.p-price {
  position: relative;
  padding: 7.2rem 0 8.3rem;
  /* 高さが変わっても紙目が伸びないようタイルで敷く（PC/SP共通の1枚） */
  background: url(../images/bg-paper.webp) repeat left top;
  background-size: 300px 300px;
}

.p-price__lead {
  margin-top: 2.4rem;
  font-size: 2.1rem;
  line-height: 1.8;
  text-align: center;
}

.c-fee {
  width: 78.2rem;
  margin: 2.9rem auto 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.c-fee__caption {
  height: 5.2rem;
  padding-left: 2.1rem;
  background-color: #887F6E;
  font-size: 2.1rem;
  line-height: 5.2rem;
  text-align: left;
  color: #FFFFFF;
}

.c-fee th,
.c-fee td {
  height: 5rem;
  padding: 0 2.1rem;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--color-line);
  font-size: 1.8rem;
  font-weight: 500;
}

.c-fee th { text-align: left; }
.c-fee td { text-align: right; }

.c-fee__total th,
.c-fee__total td {
  background-color: #6B6049;
  border-bottom: none;
  color: #FFFFFF;
}

.p-price__note {
  width: 78.2rem;
  margin: 3.9rem auto 0;
  padding: 2rem 2.4rem 1.95rem;
  background-color: rgb(238, 238, 238);
  border: 1px solid var(--color-line);
}

.p-price__note-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.p-price__note-text {
  margin-top: 1.75rem;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: justify;
}

/* --------------------------------------------
  よくあるご質問
-------------------------------------------- */
.p-faq {
  position: relative;
  padding: 7rem 0 8.1rem;
  /* アコーディオンの開閉で背景が伸縮しないようタイルで敷く */
  background: url(../images/bg-paper.webp) repeat left top;
  background-size: 300px 300px;
}

.c-accordion {
  width: 78.2rem;
  margin: 3rem auto 0;
}

.c-accordion__item + .c-accordion__item {
  margin-top: 1.8rem;
}

.c-accordion__q {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 5.2rem;
  padding: 0.8rem 4.8rem 0.8rem 2.1rem;
  background-color: #FFFFFF;
  border: none;
  font-family: inherit;
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--color-heading);
  text-align: left;
  cursor: pointer;
}

.c-accordion__q-mark {
  align-self: flex-start;
  margin-right: 0.8rem;
}

.c-accordion__icon {
  position: absolute;
  right: 2rem;
  width: 2.2rem;
  height: 2.2rem;
}


.c-accordion__icon::before,
.c-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-heading);
  transition: transform 0.3s ease;
}

.c-accordion__icon::after {
  transform: rotate(90deg);
}

.c-accordion__q[aria-expanded="true"] .c-accordion__icon::after {
  transform: rotate(0deg);
}

.c-accordion__a {
  display: grid;
  grid-template-rows: 0fr;
  background-color: #FFFFFF;
  transition: grid-template-rows 0.3s ease;
}

.c-accordion__q[aria-expanded="true"] + .c-accordion__a {
  grid-template-rows: 1fr;
  border-top: 1px solid var(--color-line);
}

.c-accordion__a > p {
  overflow: hidden;
  min-height: 0;
  padding: 0 2.1rem;
  font-size: 1.8rem;
  line-height: 1.8;
  transition: padding 0.3s ease;
}

.c-accordion__q[aria-expanded="true"] + .c-accordion__a > p {
  padding: 0.9rem 2.1rem 1.3rem;
}

/* --------------------------------------------
  事務所のご案内・地図
-------------------------------------------- */
.p-office {
  padding: 6.8rem 0 8.1rem;
  color: #FFFFFF;
}

.p-office .c-heading {
  color: #FFFFFF;
  line-height: 1;
}

.p-office__list {
  width: 78rem;
  margin: 4.6rem auto 0;
  border-top: 1px solid var(--color-line);
}

.p-office__row {
  display: flex;
  align-items: center;
  min-height: 5.4rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 1.8rem;
  line-height: 1.8;
}

.p-office__row dt {
  width: 9.5rem;
  flex-shrink: 0;
  font-weight: 500;
}

.p-office__row dd {
  margin: 0;
}

.p-map {
  height: 40rem;
  background-color: #CCCCCC;
}

.p-map iframe {
  width: 100%;
  height: 100%;
}

/* --------------------------------------------
  無料相談のお申し込み
-------------------------------------------- */
.p-form {
  padding: 6.6rem 0 7.3rem;
  position: relative;
  text-align: center;
}

.p-form__lead {
  margin-top: 2.3rem;
  font-size: 2.1rem;
  line-height: 1.8;
}

.p-form__price {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
  padding: 0;
}

.p-form__price small {
  display: block;
  font-size: 1.3rem;
  line-height: 1.8;
}

.p-form__btn {
  margin-top: 3.2rem;
}

.c-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36.6rem;
  height: 8.2rem;
  background-color: var(--color-red);
  border-radius: 1rem;
  font-size: 2.8rem;
  font-weight: 600;
  color: #FFFFFF;
}

.p-form__secret {
  margin-top: 1.3rem;
  font-size: 1.3rem;
  line-height: 1.5;
}

/* --------------------------------------------
  フッター
-------------------------------------------- */
.l-footer {
  height: 8.1rem;
  position: relative;
  color: #FFFFFF;
}

.l-footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: 112rem;
  height: 100%;
  margin-inline: auto;
  padding: 1.75rem 0 0;
}

.l-footer__address {
  padding-left: 10.6rem;
  font-size: 1.3rem;
  line-height: 1.5;
}

.l-footer__name {
  font-size: 1.6rem;
}

.l-footer__note {
  width: max-content;
  margin-top: 0.5rem;
  margin-right: 11.9rem;
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: left;
}

/* ============================================
  SP（〜767px）
============================================ */
@media screen and (max-width: 767px) {

  :root {
    --header-height: 7.9rem;
  }

  body {
    padding-top: var(--header-height);
    padding-bottom: 5.1rem;
  }

  .l-inner {
    width: 100%;
  }

  .p-fv,
  .p-worries,
  .p-reason,
  .p-flow {
    background-image: none;
  }

  .c-heading {
    font-size: 3.2rem;
  }

  /* ---------- ヘッダー ---------- */
  .l-header__inner {
    padding-left: 1.5rem;
  }

  .l-header__logo {
    align-self: flex-start;
    width: 21.2rem;
    margin-top: 2rem;
  }

  .l-header__logo-sub {
    top: 2.74rem;
    left: 5.95rem;
    font-size: 0.99rem;
  }

  .l-header__telbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 13.1rem;
    height: 100%;
    margin-left: auto;
    background-color: var(--color-navy);
    font-size: 1.7rem;
    font-weight: 600;
    color: #FFFFFF;
  }

  .l-header__telbtn img {
    width: 2.4rem;
  }

  /* ---------- 追従フッターCTA ---------- */
  .l-fixedbar {
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    max-width: 100vw;
    height: 5.1rem;
  }

  .l-fixedbar__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    color: #FFFFFF;
    text-align: center;
  }

  .l-fixedbar__btn--form { background-color: var(--color-red); }
  .l-fixedbar__btn--line { background-color: var(--color-green); }

  .l-fixedbar__main {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
  }

  .l-fixedbar__sub {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
  }

  /* ---------- 帯 ---------- */
  .p-headbar {
    height: 4.6rem;
    padding-top: 0.2rem;
    font-size: 1.4rem;
    line-height: 1.5;
  }

  /* ---------- ボタン共通 ---------- */
  .c-btns {
    position: relative;
    width: 100%;
  }

  .c-btns::before {
    content: "";
    position: absolute;
    top: -1.1rem;
    left: 1.45rem;
    width: 34.6rem;
    height: 18.6rem;
    background-color: var(--color-navy);
    border-radius: 0.9rem;
  }

  .c-btn {
    display: flex;
    width: 32.6rem;
    height: 7.7rem;
    margin-inline: auto;
    flex: none;
  }

  .c-btn__main { font-size: 2.6rem; }
  .c-btn__sub  { font-size: 1.6rem; }

  .c-btn--form::after,
  .c-btn--line::after {
    right: 1.4rem;
    font-size: 2.3rem;
  }

  .c-btn--line { margin-top: 1rem; }

  .c-btn--tel {
    display: grid;
    grid-template-columns: 4.5rem auto;
    width: 34.6rem;
    margin-top: 2rem;
    column-gap: 1.2rem;
  }

  .c-btn__icon    { width: 4.5rem; }
  .c-btn__telnum  { font-size: 3.2rem; }
  .c-btn__telsub  { font-size: 1.7rem; }

  /* ---------- CTAバー（FV直下） ---------- */
  .p-ctabar {
    height: 33.55rem;
  }

  .p-ctabar__note--1 {
    top: 1.38rem;
    left: 0;
    width: 100%;
    text-align: center;
  }

  .p-ctabar__note--2 { display: none; }

  .p-ctabar .c-btns {
    top: 5.45rem;
    display: block;
  }

  /* ---------- CTAブロック ---------- */
  .p-cta__inner {
    height: 51rem;
  }

  .p-cta__heading {
    top: 2.05rem;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.1rem;
    width: 100%;
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
  }

  .p-cta__heading-text { white-space: nowrap; }

  .p-cta__slash--l::before { content: "\\"; }
  .p-cta__slash--r::before { content: "/"; }

  .p-cta__heading-text {
    margin-top: -0.76rem;
  }

  .p-cta__slash {
    flex: none;
    font-family: var(--font-noto-serif);
    font-weight: 200;
    font-size: 5.6rem;
    line-height: 1;
  }

  .c-badges {
    top: 10rem;
    left: 1.4rem;
    gap: 0.4rem;
  }

  .c-badge {
    width: 11.3rem;
    height: 7.6rem;
    padding: 0.2rem;
  }

  .c-badge__label {
    height: 2.9rem;
    font-size: 1.5rem;
  }

  .c-badge__price {
    padding-top: 0.08rem;
    font-size: 2.14rem;
  }
  .c-badge__price em { font-size: 4.27rem; }

  .p-cta__note--1 {
    top: 19.03rem;
    left: 0;
    width: 100%;
    text-align: center;
  }

  .p-cta__note--2 { display: none; }

  .p-cta .c-btns {
    top: 23.1rem;
    display: block;
  }

  .p-cta__person { display: none; }

  /* ---------- お問い合わせの前に ---------- */
  .p-advance {
    padding: 4.1rem 0 3.5rem;
    background-image: url(../images/bg-advance-sp.webp);
    background-position: center top;
  }

  .p-advance__heading {
    font-size: 3.2rem;
    line-height: 1.35;
  }

  .p-advance__card {
    width: 34.4rem;
    margin-top: 3.5rem;
    padding: 2rem 1.6rem 2.2rem;
    border-width: 1px;
  }

  .p-advance__target {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.55;
  }

  .p-advance__target-em {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.4;
  }

  .p-advance__audience {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .p-advance__exclude-title {
    margin-top: 2.2rem;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
  }

  .p-advance__exclude {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.6rem 1.2rem 1.5rem;
    text-align: left;
  }

  .p-advance__exclude li {
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: left;
  }

  .p-advance__exclude li + li {
    margin-top: 0.4rem;
  }

  .p-advance__exclude li::before {
    position: absolute;
    left: 0;
    top: 0;
    margin-right: 0;
  }

  .p-advance__notes {
    margin-top: 1.8rem;
    font-size: 1.3rem;
    line-height: 1.55;
  }

  /* ---------- 解決事例 ---------- */
  .p-case {
    padding: 3.3rem 0 0;
  }

  .p-case__lead {
    width: 34.6rem;
    margin-top: 2.35rem;
    font-size: 2rem;
  }

  .p-case__list {
    width: 34.6rem;
    margin-top: 1rem;
    border-bottom: none;
  }

  .c-case {
    height: 46.5rem;
    border-top-width: 0.2rem;
  }

  .c-case__tag {
    top: 0;
    left: 0;
    width: 20.1rem;
    height: 4.1rem;
    font-size: 1.7rem;
    line-height: 4.1rem;
  }

  .c-case__before {
    top: 5.2rem;
    left: 1.65rem;
    font-size: 3rem;
  }

  .c-case__before-label {
    margin-bottom: 0.9rem;
    font-size: 2.1rem;
  }

  .c-case__before-num em { font-size: 5.6rem; }

  .c-case__rate {
    top: 1.4rem;
    left: 23.7rem;
    width: 9.4rem;
  }

  .c-case__rate-num { font-size: 2.4rem; }
  .c-case__rate-num em { font-size: 4.48rem; }

  .c-case__arrow {
    width: 6.05rem;
    margin-top: -0.26rem;
  }

  .c-case__after {
    top: 16.6rem;
    left: 1.65rem;
    width: 31rem;
    font-size: 3rem;
    line-height: 4.2rem;
  }

  .c-case__after em { font-size: 6.75rem; }

  .c-case__text {
    top: 27rem;
    left: 0.4rem;
    width: 33.85rem;
  }

  /* ---------- 担当するのは、この3名です ---------- */
  .p-partner {
    padding: 4.5rem 0 4rem;
    background-image: url(../images/bg-partner-sp.webp);
    background-position: center top;
  }

  .p-partner__lead {
    margin-top: 2.4rem;
    font-size: 1.8rem;
    line-height: 1.78;
    text-align: left;
    padding: 0 1.5rem;
  }

  .p-partner__list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2.8rem;
    padding: 0 1.5rem;
  }

  .c-partner {
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  .c-partner + .c-partner {
    margin-top: 2.4rem;
  }

  .c-partner:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .c-partner__head {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }

  .c-partner__photo {
    flex-shrink: 0;
    width: 18rem;
    height: auto;
    aspect-ratio: 280 / 350;
  }

  .c-partner__name {
    margin-top: 0;
    font-size: 2.4rem;
    line-height: 1.35;
  }

  .c-partner__role {
    margin-top: 0.2rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .c-partner__meta {
    margin-top: 0.6rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .c-partner__quote {
    margin-top: 0;
    padding-top: 0;
    font-size: 1.6rem;
    line-height: 1.75;
    border: none;
  }

  .p-partner__foot {
    width: auto;
    margin: 2.8rem 1.5rem 0;
    padding: 0.5rem 1rem 1rem;
  }

  .p-partner__meet {
    font-size: 1.6rem;
    line-height: 1.75;
  }

  .p-partner__note {
    margin-top: 1rem;
    font-size: 1.3rem;
    line-height: 1.55;
  }

  /* ---------- 弁護士費用 ---------- */
  .p-price {
    padding: 3.3rem 0 4rem;
  }

  .p-price__lead {
    width: 33.6rem;
    margin: 2.35rem auto 0;
    font-size: 2rem;
    text-align: justify;
  }

  .c-fee {
    width: 34.6rem;
    margin-top: 2.9rem;
    table-layout: auto;
  }

  .c-fee__caption {
    height: 7.6rem;
    padding: 1.1rem 1.1rem 0;
    font-size: 2rem;
    line-height: 1.5;
    text-align: left;
  }

  .c-fee__bar { display: none; }

  .c-fee th,
  .c-fee td {
    height: 3.74rem;
    padding: 0 0.9rem;
    font-size: 1.8rem;
  }

  .c-fee th {
    width: auto;
    white-space: nowrap;
  }

  .c-fee td {
    width: 1%;
    white-space: nowrap;
  }

  .c-fee td b {
    font-size: 1.1rem;
    font-weight: 500;
  }

  .c-fee th small { font-size: 1.1rem; }

  .p-price__note {
    width: 34.6rem;
    margin-top: 3.9rem;
    padding: 1.55rem 1.1rem 1rem;
  }

  .p-price__note-title { font-size: 1.8rem; }

  .p-price__note-text {
    margin-top: 1.25rem;
    font-size: 1.4rem;
    line-height: 1.5;
  }

  /* ---------- よくあるご質問 ---------- */
  .p-faq {
    padding: 3.3rem 0 4.4rem;
  }

  .c-accordion {
    width: 34.6rem;
    margin-top: 2.65rem;
  }

  .c-accordion__item + .c-accordion__item {
    margin-top: 1.4rem;
  }

  .c-accordion__q {
    min-height: 5.35rem;
    padding: 1.075rem 6rem 1.075rem 1.5rem;
    font-size: 1.9rem;
  }

  .c-accordion__icon {
    right: 1.5rem;
    width: 2rem;
    height: 2rem;
  }

  .c-accordion__a > p {
    font-size: 1.8rem;
    padding: 0 1.5rem;
  }

  .c-accordion__q[aria-expanded="true"] + .c-accordion__a > p {
    padding: 0.5rem 1.5rem 0.7rem;
  }

  /* ---------- 事務所のご案内 ---------- */
  .p-office {
    padding: 4rem 0 3.2rem;
    background-image: url(../images/bg-office-sp.webp);
    background-position: center;
  }

  .p-office__list {
    width: auto;
    margin: 3.8rem 1.5rem 0;
  }

  .p-office__row {
    display: block;
    min-height: 0;
    padding: 1.1rem 0 1.2rem;
    line-height: 1;
  }

  .p-office__row dt {
    width: auto;
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
    line-height: 1;
  }

  .p-office__row dd {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  /* ---------- 地図 ---------- */
  .p-map { height: 30rem; }

  /* ---------- 無料相談のお申し込み ---------- */
  .p-form {
    padding: 3.3rem 0 3.57rem;
  }

  .p-form__lead {
    margin-top: 2.3rem;
    font-size: 2rem;
  }

  .p-form__price {
    margin-top: 2.4rem;
    font-size: 1.8rem;
    text-align: left;
    padding: 0 2rem;
  }

  .p-form__price small { font-size: 1.3rem; }

  .p-form__btn { margin-top: 3.35rem; }

  .c-submit {
    width: 34.6rem;
    height: 7.7rem;
    font-size: 2.6rem;
  }

  .p-form__secret {
    margin-top: 1.78rem;
    font-size: 1.3rem;
  }

  /* ---------- フッター ---------- */
  .l-footer {
    height: 16.5rem;
  }

  .l-footer__inner {
    display: block;
    width: 100%;
    padding: 1.2rem 1.5rem 0;
    text-align: center;
  }

  .l-footer__address {
    padding-left: 0;
    font-size: 1.4rem;
    line-height: 1.55;
  }

  .l-footer__name {
    font-size: 1.7rem;
    line-height: 1.6;
  }

  .l-footer__note {
    width: auto;
    margin-top: 0;
    margin-right: 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 1.3rem;
    line-height: 1.5;
    text-align: left;
  }
}


@media screen and (min-width: 500px) and (max-width: 767px) {
  html {
    font-size: 13.3333px;
  }

  body {
    width: 37.5rem;
    margin-inline: auto;
  }

  .l-header,
  .l-fixedbar {
    left: 50%;
    width: 37.5rem;
    max-width: none;
    transform: translateX(-50%);
  }
}
