/*
Theme Name: pet-mimamori
Theme URI: 
Author: maki
Description: ペットみまもり弁護士 LP
Version: 1.0
*/

/* =========================
  COMMON
  :root
========================= */
:root {
  --font-main: "Zen Maru Gothic", sans-serif;
  --font-en: "Inter", sans-serif;

  /* --- フォントサイズ（SP） --- */
  --fz-hero: 28px;
  --fz-heading: 22px;
  /* h2タグ */
  --fz-subheading: 18px;
  --fz-body: 15px;
  --fz-subbody: 14px;
  /* voice */
  --fz-caption: 13px;
  --fz-button: 16px;

  /* --- 行間 --- */
  --lh-heading: 1.5;
  --lh-subheading: 1.6;
  --lh-body: 1.7;

  /* --- 字間 --- */
  --ls-heading: 0.02em;
  --ls-body: 0.03em;
  --ls-button: 0.04em;

  /* --- カラー --- */
  --color-text: #615772;
  --color-header-footer: #4A4650;
  --color-main: #D2D300;
  /* 黄緑メイン */
  --color-green: #84D6D6;
  /* グリーンアクセント */
  --color-coral: #EF8989;
  /* コーラルピンク */

  --color-bg-green-light: #BFE5E5;
  /* 薄いグリーン背景 */
  --color-bg-blue-light: #E7F8FF;
  /* 薄いブルー */
  --color-bg-skyblue: #E3F0F7;
  /* スカイブルー：faq用 */
  --color-bg-pale: #FDFDF7;
  /* ほぼ白背景 */
  --color-bg-yellow: #E8E8A3;
  /* 淡い黄緑背景 */
  --color-bg-pink-light: #FFF6F6;
  /* 薄ピンク背景 */
  --color-white: #FFFFFF;

  /* CTAグラデーション */
  --color-cta-grad-start: #FFD8D8;
  --color-cta-grad-end: #FFA4A4;

  /* --- ボーダー --- */
  --border-gray: #E0E0E0;
  --border-green: #84D6D6;
  /* = --color-green */
  --border-pink: #FFE9E9;

  /* --- シャドウ --- */
  --shadow-btn: 0 4px 4px rgba(0, 0, 0, 0.10);

  /* --- レイアウト（SP） --- */
  --inner-width: 335px;
  --inner-padding: 0 16px;
}


/* ====
  PC （min-width: 768px）
==== */
@media screen and (min-width: 768px) {
  :root {
    --fz-hero: 40px;
    --fz-heading: 28px;
    --fz-subheading: 20px;
    --fz-body: 16px;
    --fz-subbody: 15px;
    --fz-caption: 14px;
    --fz-button: 18px;

    --inner-width: 1440px;
    --inner-padding: 0 8%;
  }
}


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

body {
  font-family: var(--font-main);
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  color: var(--color-text);
  background-color: var(--color-white);
}

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

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

/* --- コンテナ --- */
.l-container {
  padding: var(--inner-padding);
  margin: 0 auto;
}

/* =========================
  コンポーネント
========================= */
.c-heading {
  font-size: var(--fz-heading);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  font-weight: 700;
}

.c-subheading {
  font-size: var(--fz-subheading);
  line-height: var(--lh-subheading);
  letter-spacing: var(--ls-heading);
  font-weight: 700;
}

.c-text {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-weight: 500;
}

.c-subtext {
  font-size: var(--fz-subbody);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-weight: 500;
}

.c-subtext-small {
  font-size: 13px;
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-weight: 400;
}

.c-caption {
  font-size: var(--fz-caption);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-weight: 400;
}

.c-button {
  font-size: var(--fz-button);
  letter-spacing: var(--ls-button);
  font-weight: 700;
  box-shadow: var(--shadow-btn);
  display: inline-block;
  cursor: pointer;
}

/* ----// Component　END //---- */

/* =========================
  共通パーツ　Common
========================= */
/* セクション見出し */
.reason__title,
.case__title,
.plan__title,
.lawyer__title,
.voice__title,
.faq__title,
.access__title,
.contact__title {
  text-align: center;
  margin: 30px auto 60px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reason__title::before,
.case__title::before,
.plan__title::before,
.lawyer__title::before,
.voice__title::before,
.faq__title::before,
.access__title::before,
.contact__title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../images/title-ring.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
}

.reason__title-text,
.case__title-text,
.plan__title-text,
.lawyer__title-text,
.faq__title-text,
.access__title-text,
.contact__title-text {
  position: relative;
  z-index: 1;
  background-color: var(--color-white);
  padding: 0 16px;
}

.voice__title-text {
  position: relative;
  z-index: 1;
  background-color: var(--color-bg-pink-light);
  padding: 0 16px;
}

/* ボタンホバー共通 */
.c-button,
.cta-banner__btn,
.contact__submit,
.header__cta-btn,
.fixed-cta__btn {
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.c-button:hover,
.cta-banner__btn:hover,
.contact__submit:hover,
.header__cta-btn:hover,
.fixed-cta__btn:hover {
  opacity: 0.85;
  filter: brightness(0.9);
  /* 少し暗く */
}

@media screen and (min-width: 1180px) {

  .reason__title,
  .case__title,
  .plan__title,
  .lawyer__title,
  .voice__title,
  .faq__title,
  .access__title,
  .contact__title {
    margin: 40px auto 90px;
  }

  .reason__title::before,
  .case__title::before,
  .plan__title::before,
  .lawyer__title::before,
  .voice__title::before,
  .faq__title::before,
  .access__title::before,
  .contact__title::before {
    width: 120px;
    height: 120px;
  }
}

/* ----// Common　END //---- */

/* =========================
  header
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  z-index: 100;
  box-shadow: var(--shadow-btn);
}

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* --- ロゴ --- */
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo img {
  width: 48px;
}

.header__logo h1 {
  font-size: 10px;
  color: var(--color-header-footer);
  letter-spacing: var(--ls-body);
}

.header__logo span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.15em;
}

/* --- SP hamburger --- */
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-header-footer);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- SP Nav --- */
.header__nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background-color: var(--color-white);
  padding: 40px 20px;
  z-index: 99;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.header__nav.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.header__nav-list a {
  font-size: var(--fz-body);
  font-weight: 700;
  color: var(--color-header-footer);
  letter-spacing: var(--ls-body);
}

.header__nav-list a {
  border-bottom: 2px solid transparent;
  /* 最初は透明 */
  padding-bottom: 4px;
  transition: border-color 0.3s ease;
}

.header__nav-list a:hover,
.header__nav-list a:active,
.header__nav-list a.is-active {
  border-bottom-color: var(--color-main);
}

.header__cta-btn {
  display: none;
}

/* ====  header PC ==== */
@media (min-width: 1180px) {

  .header .l-container {
    padding: 0 24px;
  }

  .header__inner {
    height: 62px;
  }

  .header__logo img {
    width: 56px;
  }

  .header__logo h1 {
    font-size: 11px;
  }

  .header__logo span {
    font-size: 18px;
  }

  .header__hamburger {
    display: none;
  }

  /* PCはナビ横並び */
  .header__nav {
    display: flex !important;
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    align-items: center;
    gap: 24px;
    overflow: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .header__nav-list {
    flex-direction: row;
    gap: 20px;
    margin-bottom: 0;
    text-align: left;
  }

  .header__nav-list a {
    font-size: 13px;
    font-weight: 500;
  }


  .header__cta-btn {
    /* display: inline-block; */
    text-align: center;
    background: linear-gradient(90deg, var(--color-cta-grad-start) 0%, var(--color-cta-grad-end) 100%);
    color: var(--color-header-footer);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: var(--ls-button);
    padding: 10px 20px;
    border-radius: 40px;
    box-shadow: var(--shadow-btn);
    max-width: 400px;
    margin: 0 auto;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__cta-btn::after {
    content: '';
    background-image: url(../images/cta_icon-paw.svg);
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    margin-left: 4px;
  }
}

/* ----// HEADER　END //---- /*  


/* =========================
  hero ファーストビュー
========================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 40px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(../images/bg_dot-blue.png);
  background-repeat: repeat;
  opacity: 0.2;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 21%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 30%;
  background-image: url(../images/hero_bg-cloud.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.5;
  z-index: 0;
}

.hero .l-container {
  position: relative;
  z-index: 1;
}

.hero .l-container::after {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 100%;
  height: 11%;
  background-image: url(../images/hero_curve.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  z-index: -1;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.hero__label {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text);
  line-height: var(--lh-subheadingz);
  letter-spacing: var(--ls-body);
  text-align: center;
}

.hero__title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--color-green);
  letter-spacing: var(--ls-heading);
  line-height: var(--lh-heading);
  text-align: center;
  margin-top: 24px;
}

.hero__lead {
  font-size: 14px;
  line-height: 2.4;
  letter-spacing: var(--ls-body);
  margin-top: 24px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.hero__lead--heart {
  color: var(--color-text);
  font-weight: 700;
  position: relative;
  display: inline-block;
  /* borderline */
  background: linear-gradient(var(--border-pink), var(--border-pink));
  background-size: 100% 12px;
  background-repeat: no-repeat;
  background-position: left bottom 0;
  /* ← 上下調整 */
}

.hero__lead--heart::before {
  content: '';
  display: block;
  width: 203px;
  height: 20px;
  background-image: url(../images/hero-heart-line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 7px;
  margin-bottom: -17px;
}

/* 
.hero__lead--heart::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--border-pink);
  border-radius: 4px;
  z-index: -1;
} */

.hero__price {
  font-size: 14px;
  font-weight: 700;
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  text-align: center;
  margin-top: 24px;
}

.hero__lead--fee {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-en);
}

.hero__lead--support {
  font-size: 18px;
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(2, 170px);
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  align-items: end;
  justify-items: center
}

.hero__badge {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 2px solid var(--border-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  position: relative;
}

.hero__badge img {
  position: absolute;
  top: 5%;
  left: 8px;
  width: 25px;
  height: 25px;
}

.hero__badge:first-of-type img {
  top: 4%;
  width: 20px;
  height: 27px;
}

.hero__badge:nth-of-type(2) img {
  width: 23px;
  height: 23px;
}

.hero__badge-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-coral);
  white-space: nowrap;
}

.hero__badge-small {
  font-size: 14px;
}

.hero__badge-sub {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}

.hero__badge-desc {
  font-size: var(--fz-caption);
  color: var(--color-text);
  line-height: var(--lh-body);
  margin-top: 8px;
  white-space: nowrap;
}

.hero__image img {
  width: 100%;
  border-radius: 8px;
}

.hero__btns {
  display: none;
}

.hero__img-block {
  display: none;
}


/* ====  hero PC ==== */
@media (min-width: 768px) {
  .hero .l-container::after {
    bottom: 85px;
    height: 16%;
  }

  .hero__img-block img {
    width: 100%;
  }

  .hero__badges {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 500px;
    margin: 30px auto;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__badge {
    width: 180px;
    height: 180px;
  }

  .hero__badge img {
    position: absolute;
    top: 3%;
    left: 12px;
    width: 30px;
    height: 28px;
  }

  .hero__badge:first-of-type img {
    height: 37px;
    width: 28px;
  }

  .hero__badge:nth-of-type(2) img {
    width: 32px;
    height: 32px;
  }

  .hero__image {
    display: none;
  }

  .brSp {
    display: none;
  }

  .hero__img-block {
    display: block;
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(210px);
    height: 254px;
    width: 220px;
    margin-bottom: 30px;
  }

  /* --- PC - hero CTAボタン --- */
  .hero__btns {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 60px;
  }

  .c-button {
    background: linear-gradient(90deg, var(--color-cta-grad-start) 0%, var(--color-cta-grad-end) 100%);
    color: var(--color-header-footer);
    padding: 12px;
    width: 230px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: var(--ls-button);
    box-shadow: var(--shadow-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }

  .c-button::after {
    content: '';
    background-image: url(../images/cta_icon-paw.svg);
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    margin-left: 4px;
  }
}


@media (min-width: 1180px) {
  .hero {
    padding: 120px 0 24px;
  }

  .hero::after {
    background-size: contain;
    height: 100%;
    top: 44%;
  }

  .hero .l-container::after {
    bottom: 60px;
    left: 0;
    width: 100%;
    height: 25%;
  }

  .hero__text-block {
    flex: 1;
  }

  /* 
  .brSp {
    display: none;
  } */

  /* .hero__img-block img {
    width: 100%;
  } */

  .hero__badges {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 660px;
    margin: 30px auto;
  }

  .hero__badge {
    width: 192px;
    height: 192px;
  }

  /* .hero__badge img {
    position: absolute;
    top: 6%;
    left: 7px;
  } */


  /* .hero__image {
    display: none;
  } */

  .hero__btns {
    flex-direction: row;
  }

  .hero__label {
    font-size: 32px;
    color: var(--color-text);
    letter-spacing: var(--ls-heading);
  }

  .hero__title {
    font-size: 64px;
    margin-top: 30px;
    line-height: 1;
  }

  .hero__lead {
    font-size: 16px;
    margin-top: 30px;
  }

  .hero__lead--heart::before {
    width: 232px;
    height: 22px;
    margin-left: 6px;
    margin-bottom: -19px;
  }

  .hero__lead--heart::after {
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 10px;
    border-radius: 4px;
  }

  .hero__price {
    font-size: 16px;
    margin-top: 30px;
  }

  .hero__lead--fee {
    font-size: 32px;
  }

  .hero__lead--support {
    font-size: 28px;
  }

  .hero__img-block {
    display: block;
    position: absolute;
    bottom: -4%;
    left: 50%;
    transform: translateX(286px);
    height: 254px;
    /* aspect-ratio: 1 / 1; */
    width: 305px;
    margin-bottom: 30px;
  }

  /* --- PC - hero CTAボタン --- */
  .hero__btns {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
  }

  .c-button {
    background: linear-gradient(90deg, var(--color-cta-grad-start) 0%, var(--color-cta-grad-end) 100%);
    color: var(--color-header-footer);
    padding: 14px;
    width: 250px;
    border-radius: 40px;
    font-size: var(--fz-button);
    font-weight: 700;
    letter-spacing: var(--ls-button);
    box-shadow: var(--shadow-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }

  .c-button::after {
    content: '';
    background-image: url(../images/cta_icon-paw.svg);
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    margin-left: 4px;
  }
}

/* ----// HERO　END //---- /*  


/* =========================
  trouble 共感セクション
========================= */
.trouble {
  background-color: var(--color-bg-green-light);
  padding: 60px 0;
}

.trouble__title-sub {
  font-size: var(--fz-subheading);
  font-weight: 700;
  letter-spacing: var(--ls-body);
  text-align: center;
  position: relative;
}

.trouble__title-sub::after {
  content: '';
  display: block;
  background-image: url(../images/trouble_line-sp.svg);
  width: var(--inner-width);
  width: 280px;
  height: 20px;
  margin: 4px auto 0;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
}

.trouble__title {
  text-align: center;
  margin-bottom: 16px;
  padding-right: 24px;
  position: relative;
  display: flex;
  justify-content: center;
}

.trouble__title-red {
  color: var(--color-coral);
  font-size: 24px;
}

.trouble__title::before {
  content: '';
  display: inline-block;
  background-image: url(../images/trouble_man.webp);
  width: 60px;
  height: 66px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 12px;
}

.trouble__wrap {
  background-color: var(--color-white);
  padding: 40px 8px;
}

.trouble__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}

.trouble__item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  border: 1.5px solid var(--border-gray);
  padding: 10px 10px 10px 18px;
  position: relative;
}

.trouble__item::after {
  content: '';
  background-image: url(../images/trouble_icon-tangled.png);
  width: 43px;
  height: 36px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -15px;
  right: 4px;
}

.trouble__item:last-child p {
  font-size: 16px;
}

.trouble__item img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.trouble__item-small {
  font-size: var(--fz-caption);
}

/* --- ノート --- */
.trouble__note {
  text-align: center;
  position: relative;
  width: fit-content;
  margin: 40px auto 0;
}

.trouble__note::after {
  content: '';
  background-image: url(../images/trouble_woman.webp);
  width: 62px;
  height: 62px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -30px;
  right: -30px;
}

.trouble__note-big {
  display: block;
}

.trouble__note-sp {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

@media (min-width: 400px) {
  .trouble__item {
    gap: 20px;
    padding: 10px 10px 10px 20px;
    max-width: 400px;
  }

  .trouble__item:last-child p {
    font-size: 18px;
  }

}

/* ==== trouble PC ==== */
@media (min-width: 1180px) {
  .trouble {
    padding: 80px 0;
  }

  .trouble__wrap {
    padding: 48px 8px;
  }

  .trouble__title-sub {
    font-size: 28px;
  }

  .trouble__title-sub::after {
    background-image: url(../images/trouble_line-pc.svg);
    width: 682px;
    height: 28px;
    margin: 6px auto 0;
  }

  .trouble__title {
    align-items: center;
  }

  .trouble__title-red {
    font-size: 36px;
  }

  .trouble__title::before {
    width: 84px;
    height: 93px;
    aspect-ratio: 28/31;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 14px;
    margin-bottom: 8px;
  }

  .trouble__title-red:last-of-type {
    font-size: 40px;
  }

  .trouble__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
  }

  .trouble__item {
    flex-direction: column;
    flex-direction: column-reverse;
    text-align: center;
    width: 350px;
    height: 200px;
    padding: 16px;
    justify-content: center;
    align-items: center;
  }

  .trouble__item::after {
    width: 60px;
    height: 50px;
    top: 90px;
    right: 18px;
  }

  .trouble__item img {
    width: 64px;
    height: 64px;
  }

  .trouble__note {
    font-weight: 500;
  }

  .trouble__note-big {
    margin-top: 10px;
    font-size: 24px;
  }

  .trouble__note-sp {
    font-size: var(--fz-subheading);
    font-weight: 500;
    margin-top: 10px;
  }

  .trouble__note::after {
    width: 94px;
    height: 94px;
    bottom: -10px;
    right: -120px;
  }
}

/* ----// TROUBLE　END //---- */

.divider {
  display: block;
  margin: -34px 0;
  position: relative;
  z-index: 1;
}

.divider img {
  width: 14px;
  margin: 0 auto;
}

/* =========================
  about サービス概要
========================= */
.about {
  position: relative;
  padding: 60px 0;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(../images/bg_dot-blue.png);
  background-repeat: repeat;
  opacity: 0.2;
  z-index: 0;
}

.about .l-container {
  position: relative;
  z-index: 1;
}

.about__title {
  text-align: center;
  margin-bottom: 20px;
}

.about__lead {
  display: block;
  margin: 20px auto 0;
  max-width: 720px;
  font-weight: 500;
}

.about__lead--under {
  /* display: inline-block; */
  position: relative;
  font-weight: 700;
  /* borderline */
  /* text-decoration: underline;
  text-decoration-color: var(--border-pink);
  text-decoration-thickness: 12px;
  text-underline-offset: 0; */
  background: linear-gradient(var(--border-pink), var(--border-pink));
  background-size: 100% 12px;
  background-repeat: no-repeat;
  background-position: left bottom 0;
  /* ← 上下調整 */
}

/* .about__lead--under::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--border-pink);
  border-radius: 4px;
  z-index: -1;
} */

.brPc {
  display: none;
}

.about__can-label {
  text-align: center;
  margin: 60px 0 16px;
  position: relative;
}

.about__can-label::before {
  content: '\\\\';
  color: var(--color-main);
  margin: 0 8px;
}

.about__can-label::after {
  content: '//';
  color: var(--color-main);
  margin: 0 8px;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.about__item {
  background-color: var(--color-white);
  border-radius: 50px 20px 20px 20px;
  border: 2px solid var(--color-bg-blue-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.about__item-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--color-bg-blue-light);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__item-img img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.about__item-title {
  font-weight: 700;
  margin: 10px 8px;
}

.about__title--under {
  display: inline-block;
  position: relative;
  /* borderline */
  /* text-decoration: underline;
  text-decoration-color: var(--border-pink);
  text-decoration-thickness: 12px;
  text-underline-offset: 0; */
  background: linear-gradient(var(--border-pink), var(--border-pink));
  background-size: 100% 12px;
  background-repeat: no-repeat;
  background-position: left bottom 0;
  /* ← 上下調整 */
}

.text__wrap {
  position: relative;
  z-index: 0;
  padding: 10px 8px;
}

/* .about__title--under::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--border-pink);
  border-radius: 4px;
  z-index: -1;
} */

.about__item-desc {
  margin-top: 4px;
  color: var(--color-text);
  margin: 10px 8px 10px 0;
}

.about__item-desc span {
  font-weight: 700;
}

.about__info {
  font-size: 13px;
  max-width: 720px;
  margin: 0 auto;
  
}

/* ==== about PC ==== */
@media (min-width: 1205px) {
  .about {
    padding: 80px 0;
  }

  .about__title {
    margin-bottom: 60px;
  }

  .about__lead {
    text-align: center;
    max-width: 1080px;
  }

  .about__list {
    gap: 24px;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }

  .about__item {
    border-radius: 75px 20px 20px 75px;
    gap: 16px;
    /* align-items: center; */
  }

  .about__item-img {
    width: 136px;
    height: 136px;
  }

  .about__item-img img {
    width: 86px;
    height: 78px;
    object-fit: contain;
  }

  .about__item-title {
    font-weight: 700;
    margin: 10px 8px;
  }

  .about__item-desc {
    margin-top: 10px;
    margin: 10px 8px;
  }

  .brPc {
    display: block;
  }

  .about__info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* margin-left: auto;
    margin-right:auto; */
    max-width: 1200px;
    
  }
}

/* ----// ABOUT　END //---- */


/* =========================
  CTA
========================= */
.cta-banner {
  background-color: var(--color-bg-yellow);
  padding: 60px 0;
  position: relative
}

.cta-banner::after {
  position: absolute;
  content: '';
  background-image: url(../images/cta-hug.webp);
  background-repeat: no-repeat;
  background-size: contain;
  height: 100px;
  width: 120px;
  bottom: 0;
  left: 4px;
}

.cta-banner__inner {
  background-color: var(--color-white);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

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

.cta-banner__name {
  position: relative;
  /* borderline */
  /* text-decoration: underline;
  text-decoration-color: var(--border-pink);
  text-decoration-thickness: 12px;
  text-underline-offset: 0; */
  background: linear-gradient(var(--border-pink), var(--border-pink));
  background-size: 100% 12px;
  background-repeat: no-repeat;
  background-position: left bottom 0;
  /* ← 上下調整 */
}

/* .cta-banner__name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--border-pink);
  border-radius: 4px;
  z-index: -1;
} */


.cta-banner__title {
  font-size: var(--fz-subbody);
  font-weight: 700;
  letter-spacing: var(--ls-body);
}

.cta-banner__title-number {
  font-family: var(--font-en);
  font-size: 18px;
}

.cta-banner__title-big {
  font-size: 18px;
}

.cta-banner__small {
  position: relative;
  margin-top: 4px;
  font-weight: 500;
}

.cta-banner__small::before {
  content: '\\';
  margin: 0 4px;
}

.cta-banner__small::after {
  content: '/';
  margin: 0 4px;
}

.cta-banner__btn {
  background: linear-gradient(90deg, var(--color-cta-grad-start) 0%, var(--color-cta-grad-end) 100%);
  color: var(--color-text);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: var(--fz-button);
  font-weight: 700;
  letter-spacing: var(--ls-button);
  box-shadow: var(--shadow-btn);
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
}

.cta-banner__btn::after {
  content: '';
  background-image: url(../images/cta_icon-paw.svg);
  background-size: contain;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  margin-left: 4px;
}

/* ==== CTA PC ==== */
@media (min-width: 940px) {
  .cta-banner {
    padding: 80px 0;
  }

  .cta-banner::after {
    height: 140px;
    width: 170px;
    bottom: 30px;
    left: 20px;
  }

  .cta-banner__inner {
    flex-direction: row;
    justify-content: center;
    text-align: center;
    gap: 80px;
    padding: 60px 60px;
  }

  .cta-banner__title-number {
    font-size: 20px;
  }

  .cta-banner__title-big {
    font-size: 20px;
  }

  .cta-banner__btn {
    padding: 20px 60px;
    width: fit-content;
  }

  .cta-banner__small {
    margin-bottom: 8px;
    text-align: center;
  }
}

@media (min-width: 1180px) {
  .cta-banner::after {
    height: 150px;
    width: 200px;
    bottom: 50px;
    left: 50px;
  }
}

/* ----// CTA　END //---- /*  

/* =========================
  reason 選ばれる理由
========================= */
.reason {
  background-color: var(--color-bg-pink-light);
  padding: 60px 0;
}

.reason__inner {
  background-color: var(--color-white);
  padding: 40px 16px;
}

.reason__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.reason__item {
  background-color: var(--color-bg-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 16px;
}

.reason__icon-contain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.reason__icon-contain img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.reason__num {
  color: var(--color-main);
  white-space: nowrap;
}

.reason__num-value {
  font-size: 32px;
}

.reason__text-contain {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reason-title__box {
  border-radius: 20px;
  border: 2px solid var(--color-text);
  background: #FFF;
  padding: 20px 20px 20px 30px;
  position: relative;
}

.reason-title__box::after {
  content: '';
  position: absolute;
  left: 16px;
  top: -3px;
  width: 28px;
  height: 2px;
  background-color: var(--color-text);
  transform: rotate(128deg);
}

.reason__item-title {
  font-weight: 700;
  color: var(--color-text);
  position: relative;
  /* borderline */
  /* background: linear-gradient(var(--border-pink), var(--border-pink));
  background-size: 100% 12px;
  background-repeat: no-repeat;
  background-position: left bottom 0; */
}

/* .reason__item-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--border-pink);
  border-radius: 4px;
  z-index: -1;
} */
/* ✅👆本当はこちらの入れ方をしたいが、制限あり */

/* ✅背景色と下線の兼合いでどうしてもここだけ擬似要素でラインを入れられなかった。要確認  */
.reason__item-title {
  text-decoration: underline;
  text-decoration-color: var(--border-pink);
  text-decoration-thickness: 8px;
  /* text-underline-offset: -4px; */
  /* ✅本当は-4pxくらいにしたいのですが、半角英数「LINE」に下線が敷かれなくなってしまうので、妥協案で👇0にしています */
  text-underline-offset: 0;
}

.reason__item-text {
  color: var(--color-text);
  margin-top: 20px;
}

/* ==== reason PC ==== */
@media (min-width: 1180px) {
  .reason {
    padding: 80px 0;
  }

  .reason__inner {
    padding: 60px 48px;
  }

  .reason__list {
    flex-direction: column;
    gap: 60px 20px;
    max-width: 1260px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .reason__item {
    flex-direction: row;
    text-align: left;
    align-items: center;
    width: 100%;
    padding: 24px 32px;
    gap: 24px;
  }

  .reason__icon-contain {
    flex-direction: column;
    align-items: center;
  }

  .reason__icon-contain img {
    width: 80px;
    height: 80px;
  }

  .reason__num-value {
    font-size: 36px;
  }

  .reason-title__box {
    width: fit-content;
  }

  .reason__item-title {
    white-space: nowrap;
  }

  .reason-title__box::after {
    top: 58px;
    left: -14px;
    transform: rotate(135deg);
  }

  .reason__item-title .brSp {
    display: block;
  }
}

@media (min-width: 1470px) {
  .reason__item-title .brSp {
    display: none;
  }
}

/* ----// REASON　END //---- */

/* =========================
  case 相談例
========================= */
.case {
  position: relative;
  padding: 60px 0;
}

.case::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(../images/bg_dot-blue.png);
  background-repeat: repeat;
  opacity: 0.2;
  z-index: 0;
}

.case .l-container {
  position: relative;
  z-index: 1;
}

.case__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case__col {
  background-color: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  border: solid 1.5px var(--border-gray);
}

.case-title__bg {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
}

.case-title__bg--blue {
  background-color: #F4FBFE;
}

.case-title__bg--yellow {
  background-color: var(--color-bg-pale);
}

.case__col-title {
  font-weight: 700;
}

.case__col-title__cat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case__col-title__cat::before {
  content: '';
  background-image: url(../images/about_img-cat.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 48px;
  height: 50px;
  display: block;
  flex-shrink: 0;
}

.col-yellow__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.case__col-sub {
  font-size: var(--fz-caption);
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

.case__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 2%;
}

.case__list li {
  padding-left: 16px;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}

.case__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--border-gray);
}


/* ==== case PC ==== */
@media (min-width: 440px) {
  .case__list {
    padding: 20px 10%;
  }
}

/* ==== case PC ==== */
@media (min-width: 940px) {
  .case {
    padding: 80px 0;
  }

  .case__inner {
    flex-direction: row;
    gap: 24px;
    max-width: 1080px;
    margin: 80px auto 0;
  }

  .case__col {
    flex: 1;
  }

  .case__list li {
    font-size: 16px;
  }

  .case-title__bg {
    height: 130px;
    padding: 20px 24px;
  }
}

/* ----// CASE　END //---- */

/* =========================
  plan 料金プラン
========================= */
.plan {
  background-color: var(--color-bg-green-light);
  padding: 60px 0;
}

.plan__inner {
  background-color: var(--color-white);
  padding: 40px 16px;
}

/* --- 価格ボックス --- */
.plan__price-box {
  display: flex;
  padding: 30px 20px 50px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
  border: 6px solid var(--border-pink);
  opacity: 0.8;
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.plan__price-box::after {
  position: absolute;
  content: '';
  background-image: url(../images/plan_family.webp);
  background-repeat: no-repeat;
  background-size: contain;
  height: 120px;
  width: 120px;
  bottom: -50px;
  right: -20px;
}

.plan__price {
  text-align: center;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.plan__price::before {
  content: '';
  background-image: url(../images/plan-title-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  margin-right: 6px;
}

.plan__price::after {
  content: '';
  background-image: url(../images/plan-title-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  margin-left: 6px;
}

.plan__price span {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-green);
}

.plan__summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan__summary li {
  font-size: 16px;
  padding-left: 32px;
  font-weight: 500;
  position: relative;
}

.plan__summary li::before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  margin-right: 4px;
  background-repeat: no-repeat;
  background-size: contain;
}

.plan-icon1::before {
  background-image: url(../images/plan_icon-mail.svg);
}

.plan-icon2::before {
  background-image: url(../images/plan_icon_coin.svg);
}

.plan-icon3::before {
  background-image: url(../images/plan_icon-calendar.svg);
}

.plan-icon4::before {
  background-image: url(../images/plan_icon-heart.svg);
}

.plan__summary--under {
  display: inline-block;
  position: relative;
  /* borderline */
  /* text-decoration: underline;
  text-decoration-color: var(--border-pink);
  text-decoration-thickness: 12px;
  text-underline-offset: 0; */
  background: linear-gradient(var(--border-pink), var(--border-pink));
  background-size: 100% 12px;
  background-repeat: no-repeat;
  background-position: left bottom 0;
  /* ← 上下調整 */
}

/* .plan__summary--under::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--border-pink);
  border-radius: 4px;
  z-index: -1;
} */

.plan__detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 60px auto 0;
  max-width: 680px;
}

.plan__col {
  border-radius: 30px;
  padding: 30px 20px;
  border: 1px solid var(--border-green);
}

.plan__col--yellow {
  background-color: var(--color-bg-pale);
}

.plan__col--blue {
  background-color: #F4FBFE;
}

.plan__col-title {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
}

.plan__col-title::before {
  content: '';
  background-image: url(../images/about_img-fees.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  display: block;
  flex-shrink: 0;
}

.plan__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.plan__list li {
  padding-left: 16px;
  position: relative;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  gap: 8px;

  &.sp-column {
    flex-direction: column;
    align-items: flex-start;
  }
}

.plan__list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--border-gray);
}

.icon-arrow {
  padding-left: 1rem;
}

.icon-arrow img {
  width: 16px;
  height: 16px;
  transform: rotate(90deg);

}

.plan__note {
  display: block;
  font-size: var(--fz-caption);
  margin-top: -4px;
  color: var(--color-text);
  font-weight: 400;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
}


/* ==== plan PC ==== */
@media (min-width: 1180px) {
  .plan {
    padding: 80px 0;
  }

  .plan__inner {
    padding: 60px 48px;
  }

  .plan__price-box {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 40px;
    width: fit-content;
    border: 8px solid var(--border-pink);
  }

  .plan__price {
    margin-bottom: 0;
    white-space: nowrap;
    line-height: 1;
  }

  .plan__price span {
    font-size: 32px;
  }

  .plan__price-box::after {
    height: 120px;
    width: 130px;
    bottom: -20px;
    right: -110px;
  }

  .plan__detail {
    flex-direction: row;
    gap: 24px;
    max-width: 1080px;
  }


  .plan__col {
    flex: 1;
    padding: 30px 40px;
  }

  .plan__list li {

    &.sp-column {
      flex-direction: row;
    }
  }

  .icon-arrow {
    padding-left: 0;
    margin-top: 8px;
  }
  
  .icon-arrow img {
    transform: rotate(0deg);
  }
  
}

/* ----// PLAN　END //---- /*  

/* =========================
  lawyer 弁護士紹介
========================= */
.lawyer {
  position: relative;
  padding: 40px 0;
}

.lawyer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(../images/lawyer_bg-paw.svg);
  background-repeat: repeat-y;
  background-position: center;
  background-size: contain;
  opacity: 1;
  z-index: 0;
}

.lawyer__title-text {
  white-space: nowrap;
}

.lawyer .l-container {
  position: relative;
  z-index: 1;
}

.lawyer__img-block {
  width: 80%;
  max-width: 500px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin: 0 auto;
}

.lawyer__img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.3);
}

.lawyer__text-block {
  width: 80%;
  margin: 0 auto;
  max-width: 500px;
}

.lawyer__role {
  margin-top: 10px;
}

.lawyer__name {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.lawyer__name span {
  font-family: var(--font-en);
}

.lawyer__comment {
  margin-top: 20px;
}

.lawyer__comment:first-of-type {
  margin-top: 40px;
}

.brPc {
  display: none;
}

.lawyer__lead {
  margin-top: 40px;
}

.lawyer__lead--under {
  /* display: inline-block; */
  position: relative;
  font-weight: 700;
  /* borderline */
  /* text-decoration: underline;
  text-decoration-color: var(--border-pink);
  text-decoration-thickness: 12px;
  text-underline-offset: 0; */
  background: linear-gradient(var(--border-pink), var(--border-pink));
  background-size: 100% 12px;
  background-repeat: no-repeat;
  background-position: left bottom 0;
  /* ← 上下調整 */
}

/* .lawyer__lead--under::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--border-pink);
  border-radius: 4px;
  z-index: -1;
} */

.lawyer__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
}

.lawyer__features li {
  padding-left: 16px;
  position: relative;
}

.lawyer__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-green);
}

/* --- profile 2カラム --- */
.lawyer__profile {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.lawyer__profile-icon,
.lawyer__licence-icon {
  margin-bottom: 12px;
  padding-bottom: 10px;
  width: 100%;
  border-bottom: 2px solid var(--color-main);
}

.lawyer__profile-icon,
.lawyer__licence-icon,
.lawyer__book-icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.lawyer__profile-icon::before,
.lawyer__licence-icon::before,
.lawyer__book-icon::before {
  content: '';
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  margin-right: 6px;
}

.lawyer__profile-icon::before {
  background-image: url(../images/lawyer_icon-badge.webp);
}

.lawyer__licence-icon::before {
  background-image: url(../images/lawyer_icon-pencil.webp);
}

.lawyer__book-icon::before {
  background-image: url(../images/lawyer_icon-book.webp);
}

.lawyer__licence-col,
.lawyer__book-col {
  margin-top: 40px;
}

.lawyer__profile-col ul,
.lawyer__licence-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lawyer__history {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lawyer__history-item {
  display: flex;
  gap: 16px;
}

.lawyer__history-year {
  font-weight: 500;
  white-space: nowrap;
  min-width: 90px;
}

.lawyer__licence-col li {
  padding-left: 16px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lawyer__licence-col li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--border-gray);
}

.lawyer__book-col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.lawyer__book-col li {
  border: 1px solid var(--border-gray);
  background: var(--color-white);
  border-radius: 30px;
}

.lawyer__book-col a {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-weight: 500;
}

.lawyer__book-col li img {
  width: 130px;
  flex-shrink: 0;
}


/* ==== lawyer PC ==== */

@media (min-width: 768px) {
  .brPc {
    display: block;
  }

  .lawyer__img-block img {
    width: 100%;
    max-width: 600px;
    transform: scale(1);
  }


  .lawyer__book-col {
    margin-top: 60px;
  }

  .lawyer__book-col ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .lawyer__book-col li {
    flex-direction: column;
  }

  .lawyer__book-col li img {
    width: 130px;
  }

  .lawyer__comment {
    margin-top: 20px;
  }

  .lawyer__comment:first-of-type {
    margin-top: 60px;
  }

  .lawyer__lead,
  .lawyer__features {
    margin-top: 60px;
  }
}

@media (min-width: 1180px) {
  .lawyer {
    padding: 80px 0;
  }

  .lawyer__title::before {
    width: 120px;
    height: 120px;
  }

  .lawyer__img-block {
    width: 600px;
    margin: 60px auto 10px;
  }


  .lawyer__text-block {
    flex: 1;
  }

  .lawyer__profile {
    flex-direction: row;
    gap: 40px;
    margin-top: 60px;
  }

  .lawyer__profile-col,
  .lawyer__licence-col {
    flex: 1;
  }

  .lawyer__licence-col {
    margin-top: 0;
  }

}

/* ----// LAWYER　END //---- /*  

/* =========================
  voice お客様の声
========================= */
.voice {
  background-color: var(--color-bg-pink-light);
  padding: 60px 0;
  overflow: hidden;
}

.voice__title {
  text-align: center;
  margin-bottom: 32px;
}

.voice__slider {
  overflow: visible;
}

.voice__list {
  margin-top: 70px;
}

.voice__item {
  background-color: var(--color-white);
  border: 1px solid var(--border-gray);
  border-radius: 30px;
  padding: 20px 10px;
  height: 316px;
  width: 280px;
}

.voice__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.voice__meta img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
}

.voice__pet {
  font-weight: 700;
}

.voice__text {
  margin-top: 20px;
}

@media (min-width: 1180px) {
  .voice {
    padding: 80px 0;
  }

  .voice__list {
    margin-top: 90px;
  }

  .voice__item {
    width: 375px;
    height: 316px;
    padding: 20px;
  }
}

/* ----// VOICE　END //---- /*  

/* =========================
  FAQ 
========================= */
.faq {
  position: relative;
  padding: 60px 0;
}

.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(../images/bg_dot-blue.png);
  background-repeat: repeat;
  opacity: 0.2;
  z-index: 0;
}

.faq .l-container {
  position: relative;
  z-index: 1;
}

.faq__title {
  margin-bottom: 60px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.faq__item {
  background-color: var(--color-bg-skyblue);
  border: 1px solid var(--border-gray);
  border-radius: 20px;
  overflow: hidden;
}

/* --- question --- */
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 10px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq__q-label {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
  background-color: var(--color-green);
  width: 28px;
  height: 28px;
  align-items: center;
  border-radius: 50%;
  text-align: center;
  line-height: 1.4;
}

.faq__q-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  flex: 1;
  letter-spacing: var(--ls-body);
}

.faq__question::after {
  content: '+';
  width: 28px;
  height: 28px;
  color: var(--color-text);
  flex-shrink: 0;
  font-size: 28px;
  margin-right: 6px;
  line-height: 1;
  text-align: center;
  transition: transform 0.3s ease, content 0.3s ease;
  display: inline-block;
}

.faq__question[aria-expanded="true"]::after {
  content: '×';
  transform: rotate(180deg);
}

.faq__answer {
  display: flex;
  gap: 12px;
  padding: 0 20px;
  background-color: var(--color-white);
  border-top: 1px solid var(--border-gray);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__answer.is-open {
  max-height: 320px;
  padding: 16px 10px;
}

.faq__answer[hidden] {
  display: flex;
}

.faq__a-label {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-green);
  flex-shrink: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-green);
  width: 28px;
  height: 28px;
  align-items: center;
  border-radius: 50%;
  text-align: center;
  line-height: 1.3;
}


/* ==== faq PC ==== */
@media (min-width: 1180px) {
  .faq {
    padding: 80px 0;
  }

  .faq__list {
    margin-top: 90px;
    gap: 40px;
  }

  .faq__q-text {
    font-size: 20px;
  }
}

/* ----// FAQ　END //---- /*  

/* =========================
  access
========================= */
/* =========================
  access アクセス
========================= */
.access {
  position: relative;
  padding: 60px 0;
}

.access::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(../images/bg_dot-blue.png);
  background-repeat: repeat;
  opacity: 0.2;
  z-index: 0;
}

.access .l-container {
  position: relative;
  z-index: 1;
}

/* --- inner --- */
.access__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

/* --- info --- */
.access__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.access__name {
  font-weight: 700;
  text-align: center;
}

.access__tel-fax {
  display: grid;
  grid-template-columns: 48px 1fr;
}

.access__tel-fax dt {
  font-weight: 400;
}

.access__map {
  width: 100%;
  margin: 20px auto 0;
}

.access__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 75/49;
  border: none;
  display: block;
}

@media (min-width: 940px) {
  .access .brSp {
    display: none;
  }

  .access {
    padding: 80px 0 100px;
  }

  .access__inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
    max-width: none;
    margin-top: 90px;
  }

  .access__info {
    flex: 1;
    margin-top: 0;
  }

  .access__name {
    text-align: left;
  }

  .access__map {
    flex: 1;
    margin-top: 0;
    height: fit-content;
  }

  /* .access__map iframe {
    height: 400px;
  } */
}

/* ----// ACCESS　END //---- /*  

/* =========================
  contact お問合せ
========================= */
.contact {
  background-color: var(--color-bg-blue-light);
  padding: 40px 0;
}

.contact__inner {
  background-color: var(--color-white);
  padding: 20px 16px;
}

.contact__lead {
  text-align: center;
  margin-top: 80px;
  line-height: var(--lh-body);
  font-weight: 500;
}

.contact__lead:last-of-type {
  margin-top: 20px;
}

.contact__lead--under {
  position: relative;
  font-weight: 700;
  background: linear-gradient(var(--border-pink), var(--border-pink));
  background-size: 100% 12px;
  background-repeat: no-repeat;
  background-position: left bottom 0;
}

.c-button--line__contact {
  background: linear-gradient(to bottom, var(--color-cta-grad-start), var(--color-cta-grad-end));
  color: var(--color-header-footer);
  padding: 16px 42px;
  border-radius: 40px;
  font-size: var(--fz-button);
  font-weight: 700;
  letter-spacing: var(--ls-button);
  box-shadow: var(--shadow-btn);
  border: none;
  cursor: pointer;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: fit-content;
  /* width: 230px; */
  width: 270px;
}

.c-button--line__contact::after {
  content: '';
  background-image: url(../images/cta_icon-paw.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  margin-left: 4px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 730px;
  margin: 60px auto 20px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__label-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact__label {
  font-weight: 500;
}

.contact__required {
  font-size: var(--fz-caption);
  color: var(--color-white);
  background-color: #A3A3A3;
  padding: 2px 10px;
}

.contact__input,
.contact__textarea {
  width: 100%;
  border: 2px solid var(--border-gray);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-main);
  font-size: var(--fz-body);
  color: var(--color-text);
  background-color: var(--color-white);
  transition: border-color 0.3s ease;
}

.contact__input:focus,
.contact__textarea:focus {
  outline: none;
  border-color: var(--color-green);
}

.contact__textarea {
  resize: vertical;
}

.contact__submit {
  background: linear-gradient(to bottom, var(--color-cta-grad-start), var(--color-cta-grad-end));
  color: var(--color-header-footer);
  padding: 16px 48px;
  border-radius: 40px;
  font-size: var(--fz-button);
  font-weight: 700;
  letter-spacing: var(--ls-button);
  box-shadow: var(--shadow-btn);
  border: none;
  cursor: pointer;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  width: 280px;
}

.contact__submit::after {
  content: '';
  background-image: url(../images/cta_icon-paw.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
}

/* ==== contact PC ==== */
@media (min-width: 1180px) {
  .contact {
    padding: 80px 0;
  }

  .contact__inner {
    padding: 20px 80px 20px;
  }

  .c-button--line__contact {
    width: 320px;
    /* width: 280px; */
    margin-top: 40px;
  }

  .contact__form {
    max-width: 800px;
    gap: 30px;
  }

  .contact__title::before {
    width: 120px;
    height: 120px;
  }

  /* PCはラベルと入力欄を横並び */
  .contact__field {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .contact__label-wrap {
    justify-content: space-between;
    width: 300px;
  }

  .contact__input,
  .contact__textarea {
    width: 500px;
  }

  .contact__submit {
    padding: 20px 80px;
    width: 320px;
  }

}

/* ----// CONTACT　END //---- */

/* Snow Monkey Forms 書き換え用 */
/* =========================
  Snow Monkey Forms 上書き
========================= */

/* フォーム全体 */
.contact__form .snow-monkey-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 1項目ごと */
.contact__form .smf-item {
  display: flex;
  flex-direction: column;
}

/* ラベル側 */
.contact__form .smf-item__col--label {
  margin: 10px 0;
}

.contact__form .smf-item__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.contact__form .smf-item__label__text {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* 必須ラベル */
.contact__form .smf-item:has([data-validations~="required"]) .smf-item__label__text::after {
  content: "必須";
  display: inline-block;
  margin-left: 0;
  font-size: var(--fz-caption);
  color: var(--color-white);
  background-color: #A3A3A3;
  padding: 2px 10px;
  font-weight: 500;
  line-height: 1.5;
  vertical-align: middle;
}

/* 入力欄 */
.contact__form .smf-text-control__control,
.contact__form .smf-email-control__control,
.contact__form .smf-tel-control__control,
.contact__form .smf-textarea-control__control,
.contact__form .smf-select-control__control {
  width: 100%;
  border: 2px solid var(--border-gray);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-main);
  font-size: var(--fz-body);
  color: var(--color-text);
  background-color: var(--color-white);
  transition: border-color 0.3s ease;
}

/* フォーカス時 */
.contact__form .smf-text-control__control:focus,
.contact__form .smf-email-control__control:focus,
.contact__form .smf-tel-control__control:focus,
.contact__form .smf-textarea-control__control:focus,
.contact__form .smf-select-control__control:focus {
  outline: none;
  border-color: var(--color-green);
}

/* テキストエリア */
.contact__form .smf-textarea-control__control {
  resize: vertical;
  min-height: 160px;
}

/* ボタンエリア */
.contact__form .smf-action {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* 確認画面へ / 送信する / 戻る ボタン */
.contact__form .smf-button-control__control {
  background: linear-gradient(to bottom, var(--color-cta-grad-start), var(--color-cta-grad-end));
  color: var(--color-header-footer);
  padding: 16px 82px;
  border-radius: 40px;
  font-family: var(--font-main);
  font-size: var(--fz-button);
  font-weight: 700;
  letter-spacing: var(--ls-button);
  box-shadow: var(--shadow-btn);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: fit-content;
}

/* 肉球アイコン */
.contact__form .smf-button-control__control::after {
  content: "";
  background-image: url(../images/cta_icon-paw.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  display: inline-block;
}

/* ホバー */
.contact__form .smf-button-control__control:hover {
  opacity: 0.85;
  filter: brightness(0.9);
}

@media (min-width: 1180px) {
  .contact__form .snow-monkey-form {
    gap: 30px;
  }

  .contact__form .smf-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 30px;
  }

  .contact__form .smf-item:has(.smf-textarea-control__control) {
    align-items: flex-start;
  }

  .contact__form .smf-item__col--label {
    width: 300px;
    flex: 0 0 300px;
  }

  .contact__form .smf-item__col--controls {
    width: 500px;
    flex: 0 0 500px;
  }

  .contact__form .smf-item__label__text {
    justify-content: space-between;
    width: 100%;
  }

  .contact__form .smf-item:has(.smf-textarea-control__control) {
    align-items: flex-start;
  }

  .contact__form .smf-text-control__control,
  .contact__form .smf-email-control__control,
  .contact__form .smf-tel-control__control,
  .contact__form .smf-textarea-control__control,
  .contact__form .smf-select-control__control {
    width: 500px;
  }

  .contact__form .smf-action {
    margin-top: 60px;
  }

  .contact__form .smf-button-control__control {
    padding: 20px 102px;
  }
}

/* Snow Monkey Forms 書き換え　--END-- */

/* =========================
  footer
========================= */
.footer {
  background-color: #91D0D0;
  color: var(--color-header-footer);
  padding: 40px 0 80px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}

/* --- info --- */
.footer__info {
  display: flex;
  flex-direction: column;
}

.footer__name {
  font-weight: 500;
  font-size: 24px;
  color: var(--color-white);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.footer__name::before {
  content: '';
  background-image: url(../images/logo-simbol-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
}

.footer-inner__wrap {
  margin-top: 8px;
  font-weight: 500;
}

.footer__tel {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-header-footer);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}

.footer__tel::before {
  content: '';
  background-image: url(../images/footer_icon-phone.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}

.footer__hours {
  font-weight: 700;
}

.footer__nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 12px 40px;
}

.footer__nav-list a {
  color: var(--color-header-footer);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}

.footer__nav-list a:hover {
  border-color: var(--color-white);
}

.footer__copy {
  text-align: center;
  font-family: var(--font-en);
  font-weight: 300;
}


/* ==== footer PC ==== */
@media (min-width: 768px) {
  .footer {
    padding: 60px 0 24px;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-inner__wrap {
    margin-top: 20px;
  }
}

@media (min-width: 1180px) {
  .footer__nav {
    margin-right: 10%;
  }
}

/* ----// FOOTER END //---- */

/* =========================
  SP - fixed CTA bar
========================= */
/* =========================
  固定CTA（SPのみ）
========================= */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background-color: var(--color-white);
}

.fixed-cta__innner {
  padding: 10px 20px;
  display: flex;
  gap: 3.6%;
}

.fixed-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  border-radius: 10px;
  font-size: var(--fz-button);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: var(--ls-button);
  color: var(--color-white);
  white-space: nowrap;
}

.fixed-cta__btn--line,
.fixed-cta__btn--mail {
  background: linear-gradient(to bottom, var(--color-cta-grad-start), var(--color-cta-grad-end));
  color: var(--color-header-footer);
}

.fixed-cta__btn--line::after {
  content: '';
  background-image: url(../images/cta_icon-paw.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  margin-left: 4px;
}

@media (min-width: 768px) {
  .fixed-cta__innner {
    display: none;
  }
}

@media (min-width: 1180px) {
  .fixed-cta {
    display: none;
  }
}

/* ----// SP - FIXED CTA　END //----*/

/* =========================
アニメーション調整
========================= */
/* aos: タイトル・フェードイン */
[data-aos="fade-down"] {
  transform: translateY(-8px);
}

/* hero */
/* ヒーローアニメーション */
@keyframes hero-show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero__lead,
.hero__price,
.hero__badge:nth-child(1),
.hero__badge:nth-child(2),
.hero__badge:nth-child(3),
.hero__btns {
  opacity: 0;
  animation: hero-show 2s ease-in-out forwards;
}

.hero__lead {
  animation-delay: 0.2s;
}

.hero__price {
  animation-delay: 0.4s;
}

.hero__badge:nth-child(1) {
  animation-delay: 0.6s;
}

.hero__badge:nth-child(2) {
  animation-delay: 0.8s;
}

.hero__badge:nth-child(3) {
  animation-delay: 1.0s;
}

.hero__btns {
  animation-delay: 1.3s;
}

/* =========================
  privacy
========================= */
.privacy {
  padding: 90px 0 80px;
  background-color: var(--color-bg-pale);
  min-height: 60vh;
}

.privacy__inner {
  max-width: 800px;
  margin: 0 auto;
}

.privacy__header {
  text-align: center;
  margin-bottom: 48px;
}

.privacy__title {
  text-align: center;
  margin: 30px auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.privacy__title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../images/title-ring.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
}

.privacy__title-text {
  position: relative;
  z-index: 1;
  background-color: var(--color-bg-pale);
  padding: 0 16px;
}

.privacy__content > * + * {
  margin-top: 1em;
}

.privacy__content h2 {
  font-size: var(--fz-subheading);
  font-weight: 700;
  margin-top: 2.5em;
  margin-bottom: 0.75em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--color-green);
}

.privacy__content h2:first-child {
  margin-top: 0;
}

.privacy__content h3 {
  font-size: var(--fz-body);
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.privacy__content p {
  margin-bottom: 1em;
}

.privacy__content ul {
  padding-left: 1.5em;
  margin-bottom: 1em;
  list-style-type: disc;
  list-style-position: outside;
}

.privacy__content ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
  list-style-type: decimal;
  list-style-position: outside;
}

.privacy__content li {
  display: list-item;
}

.privacy__content li + li {
  margin-top: 0.5em;
}

.privacy__content a {
  color: var(--color-green);
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .privacy {
    padding: 120px 0 100px;
  }

  .privacy__header {
    margin-bottom: 64px;
  }

  .privacy__title {
    margin: 40px auto;
  }

  .privacy__title::before {
    width: 120px;
    height: 120px;
  }
}