@charset "UTF-8";
/* ==================================================
   CSS VARIABLES & RESET
================================================== */
:root {
  --green_dark: #1e3d2a; /* 見出し・濃いテキスト */
  --green_nav: #2a4835; /* ナビ・CTAバナー背景 */
  --green_btn: #2e5e3e; /* ボタン */
  --green_hover: #246040; /* ボタンhover */
  --gold: #c9a440; /* ゴールドアクセント */
  --gold_light: #d4b565; /* ゴールド薄め */
  --cream: #f8f4ec; /* MV背景・特徴背景 */
  --cream_dark: #f0ebe0; /* 特徴セクション背景 */
  --bg_light: #f8f7f4; /* 薄いグレー背景 */
  --white: #ffffff;
  --text: #1a1a1a;
  --text_sub: #555555;
  --border: #e0dbd0;
  --radius: 4px;
}

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

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

/* rem はルートの html を参照するため font-size だけではスケールしない。
   style.css の 12.5px を !important で抑止し、
   ヘッダー・フッターは zoom で rem ごと拡大する */
@media only screen and (min-width: 1500px) {
  html {
    font-size: 10px !important;
  }
  .l-header,
  .l-head__pickup {
    zoom: 1.25; /* 10px × 1.25 = 12.5px 相当 */
  }
  footer {
    zoom: 1.25;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-text-stroke: 0.3px;
}

.l-header,
.l-head__pickup,
.l-footer {
  -webkit-text-stroke: 0;
  line-height: 1;
  font-family:
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka,
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.bodr-line.bm-line:before {
  height: 0.8px !important;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  /* GLOBAL */
  h3 {
    font-size: 2rem;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ==================================================
   SITE HEADER
================================================== */
.site_header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
}

.site_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 90px;
}

.site_header_inner a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  padding: 0 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.site_header_inner a:hover {
  opacity: 0.85;
}

.site_header_cta_icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.site_header_cta_body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site_header_cta_num {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
}

.site_header_cta_sub {
  font-size: 1.3rem;
  color: var(--text_sub);
  letter-spacing: 0.04em;
}

@media (min-width: 769px) {
  .site_header_cta_sp_label {
    display: none;
  }

  .site_header_cta_sub {
    font-size: 1.4rem;
    padding-top: 3px;
  }
}

@media (max-width: 768px) {
  .site_header {
    padding: 7px 0;
  }

  .site_header_inner {
    padding: 0 16px;
  }

  .site_header_inner a {
    background: var(--green_btn);
    color: #fff;
    padding: 10px 12px;
    border-radius: 3px;
    gap: 8px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
  }

  .site_header_inner a:hover {
    background: var(--green_hover);
    opacity: 1;
  }

  .site_header_cta_body {
    display: none;
  }

  .site_header_cta_icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
  }

  .site_header_cta_sp_label {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1;
  }
}

/* ==================================================
   GLOBAL NAVIGATION
================================================== */
.gnav {
  background: #faf9f5;
  position: static;
  z-index: 200;
  box-shadow: none;
  border-bottom: none;
}

.gnav .container {
  padding: 40px 0;
}

.gnav_hamburger {
  display: none;
}

.gnav_list {
  display: flex;
  gap: 6px;
}

.gnav_list li {
  flex: 1;
  border: 1px solid #d0ddd4;
  border-radius: 3px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.gnav_list li::after {
  content: "";
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent var(--green_dark) transparent;
}

.gnav_list li + li::before {
  display: none;
}

.gnav_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--green_dark);
  font-size: 1.8rem;
  font-weight: 500;
  padding: 22px 16px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: background 0.2s;
}

.gnav_list a:hover {
  background: #f0f7f2;
  color: var(--green_dark);
}

.gnav_calc_link {
  gap: 5px;
}

.gnav_calc_icon {
  display: none;
}

@media (max-width: 768px) {
  .gnav {
    position: static;
    width: 100%;
    background: transparent;
    border-radius: 0;
    border-bottom: none;
  }

  .gnav .container {
    padding: 0;
  }

  .gnav_hamburger {
    display: none;
  }

  .gnav_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .gnav_list li:last-child {
    grid-column: span 3;
  }

  .gnav_list li {
    border: 1px solid #d0ddd4;
    border-radius: 3px;
    background: #fff;
    position: relative;
    overflow: hidden;
  }

  .gnav_list li::after {
    content: "";
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent var(--green_dark) transparent;
  }

  .gnav_list li + li::before {
    display: none;
  }

  .gnav_list a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--green_dark);
    font-size: 1.4rem;
    font-weight: 500;
    padding: 20px 6px;
    letter-spacing: 0.04em;
    transition: background 0.2s;
  }

  .gnav_calc_link {
    gap: 6px;
  }

  .gnav_calc_icon {
    display: inline;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
}

/* ==================================================
   MV / HERO
================================================== */
.mv {
  overflow: hidden;
}

.mv_inner {
  width: 100%;
  display: flex;
  align-items: stretch;
  min-height: 720px;
  max-height: 960px;
}

/* テキストエリア */
.mv_left {
  padding: 56px 30px 56px 90px;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

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

.mv_title {
  font-family: "Zen Old Mincho", serif;
  font-size: 6.4rem;
  font-weight: 500;
  color: var(--green_dark);
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  white-space: nowrap;
}

.mv_title_mini {
  font-size: 90%;
}

.mv_title_sub {
  font-size: 85%;
}

.mv_title_firm {
  font-size: 50%;
  display: inline-block;
  padding-bottom: 17px;
  position: relative;
}

.mv_title_firm::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--green_dark);
}

.mv_title_accent {
  background: linear-gradient(135deg, #d4680a 0%, #e8892a 60%, #d45a0a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-text-stroke: 0;
}

.mv_tags {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding-left: 10px;
}

.mv_tag {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  transform: rotate(45deg);
  background: rgb(249 249 241 / 30%);
  box-shadow: 3px 3px 14px rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  position: relative;
  z-index: 1;
}

.mv_tag:nth-child(2) {
  z-index: 2;
}

.mv_tag:last-child {
  z-index: 3;
  margin-right: 0;
}

.mv_tag_inner {
  transform: rotate(-45deg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.mv_tag_sub {
  font-size: 1.5rem;
  color: var(--text_sub);
  letter-spacing: 0.03em;
}

.mv_tag_main {
  font-size: 2rem;
  font-weight: 500;
  color: var(--green_dark);
  letter-spacing: 0.03em;
}

.mv_tags .mv_tag:nth-child(2) .mv_tag_main {
  line-height: 1.4;
  font-size: 1.8rem;
}

.mv_desc {
  font-size: 1.6rem;
  color: var(--text_sub);
  line-height: 1.85;
  margin-bottom: 40px;
}

.mv_content_bottom a {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #3a7d4f 0%, #2e6340 50%, #245032 100%);
  box-shadow:
    0 4px 16px rgba(46, 99, 64, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 22px 40px 22px 28px;
  margin-bottom: 14px;
  align-self: flex-start;
  transition: filter 0.2s;
  gap: 0;
}

.mv_content_bottom a:hover {
  filter: brightness(1.12);
}

/* 写真エリア */
.mv_img_wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 28%);
  mask-image: linear-gradient(to right, transparent 0%, black 28%);
}

.mv_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.mv_caption {
  font-family: "Zen Old Mincho", serif;
  position: absolute;
  bottom: 59%;
  left: 540px;
  right: auto;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.mv_caption_sub {
  font-size: 1.4rem;
  font-weight: 400;
}

.mv_caption_name {
  font-size: 2.2rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .mv_inner {
    flex-direction: column;
    min-height: auto;
    max-height: none;
  }

  .mv_left {
    display: contents;
  }

  .mv_content_top {
    order: 1;
    padding: 32px 20px 16px;
    position: relative;
    z-index: 1;
  }

  .mv_img_wrap {
    order: 2;
    flex: none;
    width: 100%;
    height: 410px;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      black 22%,
      black 72%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      black 22%,
      black 72%,
      transparent 100%
    );
    margin-top: -95px;
    margin-bottom: -65px;
  }

  .mv_content_bottom {
    order: 3;
    padding: 36px 20px 32px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
  }

  .mv_title {
    font-size: 3rem;
    white-space: normal;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .mv_title_firm::after {
    width: 26px;
  }

  .mv_title_accent {
    font-size: 4rem;
    display: inline-block;
    margin-top: -8px;
    -webkit-text-stroke: 0;
  }

  .mv_tags {
    margin-bottom: 28px;
    justify-content: center;
    padding-left: 0;
  }

  .mv_tag {
    width: 98px;
    height: 98px;
    margin-right: 19px;
    background: rgb(249 249 241 / 75%);
  }

  .mv_tag_inner {
    gap: 0;
  }

  .mv_tag:nth-child(2) .mv_tag_inner {
    margin-top: 8px;
  }

  .mv_tag_main {
    font-size: 1.8rem;
  }

  .mv_tags .mv_tag:nth-child(2) .mv_tag_main {
    font-size: 1.7rem;
  }
  .mv_tag_sub {
    font-size: 1.4rem;
  }

  .mv_desc {
    font-size: 1.55rem;
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .mv_desc br {
    display: none;
  }

  .mv_content_bottom a {
    align-self: stretch;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 20px;
    margin-bottom: 12px;
    position: relative;
  }

  .mv_caption {
    bottom: 58px;
    right: auto;
    left: 16px;
    text-align: left;
    color: #fff;
  }

  .mv_caption_sub {
    margin-bottom: -3px;
    color: #fff;
  }

  .mv_caption_name {
    font-size: 1.6rem;
    color: #fff;
  }
}

@media (min-width: 2000px) {
  .mv_img {
    object-fit: contain;
  }

  .mv_caption {
    left: 560px;
  }
}

/* ==================================================
   WORRIES
================================================== */
.worries {
  padding: 100px 0;
  background: var(--white);
}

.wave_text {
  position: relative;
  display: inline-block;
  font-size: 1.15em;
}
.wave_text::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='7' viewBox='0 0 18 7'%3E%3Cpath d='M0 3.5 Q4.5 0 9 3.5 Q13.5 7 18 3.5' stroke='%23c9a440' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: auto 100%;
}

.section_heading,
.section_heading_line {
  font-family: "Zen Old Mincho", serif;
  display: block;
  text-align: center;
  font-size: 3.4rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 48px;
}

.section_heading_line::before,
.section_heading_line::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 20px;
}

.heading_em {
  font-size: 130%;
}

.heading_gold {
  color: var(--gold);
  font-size: 120%;
}

@media (max-width: 768px) {
  .heading_gold {
    font-size: 150%;
    margin-top: 8px;
    display: block;
  }
}

.br_sp {
  display: none;
}

.heading_dots {
  position: relative;
  display: inline-block;
}

.heading_dots::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 12px;
  background:
    radial-gradient(circle, #e03635 45%, transparent 46%) 16.7% 0 / 12px 12px
      no-repeat,
    radial-gradient(circle, #e03635 45%, transparent 46%) 50% 0 / 12px 12px
      no-repeat,
    radial-gradient(circle, #e03635 45%, transparent 46%) 83.3% 0 / 12px 12px
      no-repeat;
}

.worries_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  margin-top: 70px;
}

.worry_card {
  flex: 0 0 calc((100% - 80px) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.worry_bubble {
  border-radius: 15px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  background: #ebebeb;
  position: relative;
  overflow: visible;
  width: 100%;
  flex: 1;
}

.worry_bubble::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background:
    radial-gradient(
      ellipse 80% 65% at 15% 20%,
      rgba(255, 255, 255, 0.9) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 55% at 88% 80%,
      rgba(210, 210, 210, 0.65) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 55% 40% at 60% 5%,
      rgba(225, 225, 225, 0.55) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 45% 50% at 20% 90%,
      rgba(215, 215, 215, 0.6) 0%,
      transparent 55%
    );
  filter: blur(18px);
  z-index: 0;
}

.worry_bubble::after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 18px;
  background: #ebebeb;
  clip-path: path("M 0 0 C 5 0, 12 14, 15 18 C 18 14, 25 0, 30 0 Z");
  z-index: 2;
}

.worry_bubble > * {
  position: relative;
  z-index: 1;
}

/* ちょぼの水平位置と先っちょ方向 */
.worry_card:nth-child(1) .worry_bubble::after {
  left: 72%;
  clip-path: path("M 0 0 C 5 0, 12 14, 25 18 C 18 14, 25 0, 30 0 Z");
}
.worry_card:nth-child(2) .worry_bubble::after {
  left: 50%;
}
.worry_card:nth-child(3) .worry_bubble::after {
  left: 28%;
  clip-path: path("M 0 0 C 5 0, 12 14, 5 18 C 18 14, 25 0, 30 0 Z");
}
.worry_card:nth-child(4) .worry_bubble::after {
  left: 72%;
  clip-path: path("M 0 0 C 5 0, 12 14, 25 18 C 18 14, 25 0, 30 0 Z");
}
.worry_card:nth-child(5) .worry_bubble::after {
  left: 28%;
  clip-path: path("M 0 0 C 5 0, 12 14, 5 18 C 18 14, 25 0, 30 0 Z");
}

.worry_check {
  position: absolute;
  top: calc(24px + (2.2rem * 1.5 - 22px) / 2);
  left: 16px;
  width: 22px;
  height: auto;
  z-index: 1;
}

.worry_body {
  grid-column: 1 / -1;
}

.worry_illust_col {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-top: 24px;
}

.worry_illust_single {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.worry_title {
  font-size: 2.2rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  text-align: center;
  color: var(--text);
  line-height: 1.5;
}

.worry_em {
  color: #2e5e3e;
  font-size: 115%;
}

.worry_body {
  font-size: 1.6rem;
  color: var(--text_sub);
  line-height: 1.85;
}

@media screen and (max-width: 768px) {
  .heading_dots::before {
    top: 0px;
    height: 9px;
    background:
      radial-gradient(circle 3.5px at 50% 50%, #e03635 99%, transparent 100%)
        16.7% 0 / 9px 9px no-repeat,
      radial-gradient(circle 3.5px at 50% 50%, #e03635 99%, transparent 100%)
        50% 0 / 9px 9px no-repeat,
      radial-gradient(circle 3.5px at 50% 50%, #e03635 99%, transparent 100%)
        83.3% 0 / 9px 9px no-repeat;
  }

  .worry_body {
    font-size: 1.5rem;
  }

  .worry_title {
    font-size: 2rem;
  }

  .worries {
    padding: 60px 0;
  }

  .br_sp {
    display: block;
  }

  .section_heading,
  .section_heading_line {
    font-size: 2.6rem;
    margin-bottom: 32px;
    line-height: 1.7;
  }

  .section_heading_line::before {
    display: none;
  }

  .section_heading_line::after {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--gold);
    margin: 12px auto 0;
  }

  .worries_grid {
    gap: 32px;
    margin-top: 50px;
  }

  .worry_card {
    flex: 0 0 100%;
  }

  .worries_grid {
    align-items: stretch;
  }

  .worry_illust_single {
    width: 120px;
    height: 150px;
  }
  .worry_illust_col {
    margin-top: 40px;
  }
}
/* ==================================================
   CALC INTRO
================================================== */
.calc_intro {
  padding: 10px 0 0;
  background: #edf4ef;
}

.calc_intro_inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.calc_intro_illust {
  width: 180px;
  height: auto;
  flex-shrink: 0;
}

.calc_intro_text {
  text-align: left;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
}

.calc_frame_wrap {
  position: relative;
}

.calc_intro_sub {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-16%, -16%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.55;
  z-index: 2;
  background: linear-gradient(145deg, #d4680a 0%, #e8842a 50%, #c05508 100%);
  border: 2px solid rgba(255, 255, 255, 0.35);
  padding: 0;
}

.calc_intro_sub_em {
  font-size: 1.7rem;
}

.calc_intro_title {
  font-family: "Zen Old Mincho", serif;
  font-size: 3.4rem;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
}

.calc_intro_desc {
  font-size: 1.5rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .calc_intro_inner {
    flex-direction: column;
    gap: 0;
  }

  .calc_intro_text {
    padding-left: 0;
    line-height: 1.5;
  }

  .calc_intro_title {
    font-size: 2.2rem;
    margin-top: 10px;
  }

  .calc_intro_illust {
    width: 100px;
  }

  .calc_frame_wrap {
    margin-top: 24px;
  }

  .calc_intro_sub {
    width: auto;
    height: auto;
    border-radius: 100px;
    padding: 7px 22px;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    flex-direction: row;
    gap: 0;
    font-size: 1.4rem;
    white-space: nowrap;
  }
}

/* ==================================================
   CALC V2（フレームデザイン版）
================================================== */
.calc_v2 {
  padding: 20px 0 0;
}

.calc_frame {
  border: 2px solid #c3e4d3;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.calc_v2 .calc_intro {
  background: #c3e4d3;
  padding: 24px 40px;
}

.calc_v2 .calc_intro_title {
  font-family: "Zen Old Mincho", serif;
}

.calc_v2 .calc_intro_desc {
  color: var(--text);
}

.calc_v2 .calc_layout {
  border-radius: 0;
}

.calc_v2 .calc_layout.bg {
  background: #fff;
}

@media (max-width: 768px) {
  .calc_v2 .calc_intro {
    padding: 30px 20px 20px;
  }
}

.cta_pc_text {
  display: inline;
}
.cta_sp_text {
  display: none;
}

@media (max-width: 768px) {
  .cta_pc_text {
    display: none;
  }
  .cta_sp_text {
    display: inline;
  }
  .cta_bar_num .cta_sp_text {
    font-size: 0.85em;
  }
}

/* ==================================================
   CALC CTA
================================================== */
.cta_section {
  padding: 130px 24px;
}

.cta_section a {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #3a7d4f 0%, #2e6340 50%, #245032 100%);
  box-shadow:
    0 4px 16px rgba(46, 99, 64, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  max-width: 760px;
  margin: 0 auto;
  padding: 22px 40px 22px 28px;
  transition: filter 0.2s;
}

.cta_section a:hover {
  filter: brightness(1.12);
}

.cta_bar_badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8801e 0%, #f8ef90 50%, #b8801e 100%);
  color: var(--green_dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 3px 10px rgba(0, 0, 0, 0.3),
    inset 0 1px 3px rgba(255, 255, 255, 0.3);
  position: relative;
  font-family: "Zen Old Mincho", serif;
}

.cta_bar_badge::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.cta_bar_badge_sub {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}

.cta_bar_badge_main {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
}

.cta_bar_body {
  padding-left: 32px;
  margin-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.cta_bar_catch {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.92rem;
  color: #fff;
}

.cta_bar_num_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta_bar_num {
  font-family: "Noto Serif Japanese", serif;
  font-size: 4.48rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.cta_bar_icon {
  width: 2.4rem;
  height: auto;
}

@media (min-width: 769px) {
  .cta_bar_icon {
    width: 2.8rem;
  }
  .cta_bar_num {
    font-size: 4rem;
  }
}

.cta_bar_hours {
  display: flex;
  gap: 0;
  font-size: 1.6rem;
  color: #fff;
}

/* .mv_content_bottom a の濃緑グラデを上書きして反転カラーに */
.mv_recruit_btn.mv_recruit_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 8px;
  align-self: stretch;
  margin-top: 12px;
  margin-bottom: 0;
  padding: 18px 28px;
  background: #fff;
  box-shadow:
    0 4px 16px rgba(46, 99, 64, 0.2),
    0 2px 6px rgba(0, 0, 0, 0.08);
  border: 1.5px solid #2e6340;
  border-radius: 6px;
  color: #2e6340;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: filter 0.2s;
}

.mv_recruit_btn::after {
  content: "›";
  font-size: 1.8rem;
  line-height: 1;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.mv_recruit_btn:hover {
  filter: brightness(0.96);
}

.cta_bar_hours span + span::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.8em;
  background: currentColor;
  opacity: 0.5;
  margin: 0 10px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .cta_section {
    padding: 60px 24px;
  }

  .cta_section a {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px 20px;
    gap: 8px;
    position: relative;
    max-width: none;
  }

  .cta_bar_badge {
    position: absolute;
    top: 12px;
    left: -8px;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
  }

  .cta_bar_badge_sub {
    font-size: 1.3rem;
  }

  .cta_bar_badge_main {
    font-size: 2.2rem;
  }

  .cta_bar_body {
    border-left: none;
    border-top: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 4px;
  }

  .cta_bar_catch {
    font-size: 1.6rem;
    padding-left: 0;
  }

  .cta_bar_num {
    font-size: 3rem;
  }

  .cta_bar_num_wrap {
    padding-left: px;
  }

  .cta_bar_hours {
    justify-content: center;
    font-size: 1.4rem;
    gap: 0;
  }
}

/* ==================================================
   RISKS（自力申告のリスク）
================================================== */
.risks {
  padding: 130px 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
    url("../images/atomzeiri/risks_bg.jpg") center center / cover no-repeat;
  position: relative;
  z-index: 1;
}

.risks::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 160px;
  width: 500px;
  height: 500px;
  background: url("../images/atomzeiri/risk_bg.png") right bottom / contain
    no-repeat;
  pointer-events: none;
  z-index: 0;
}

.section_heading_left {
  font-family: "Zen Old Mincho", serif;
  font-size: 3.4rem;
  font-weight: 500;
  color: var(--green_dark);
  line-height: 1.5;
  margin-bottom: 48px;
  padding-left: 20px;
  position: relative;
  text-align: left;
}

.section_heading_left::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3px;
  height: 70%;
  background: var(--gold);
}

.risks_lead {
  font-size: 1.6rem;
  color: var(--text_sub);
  line-height: 1.85;
  margin-bottom: 58px;
  text-align: center;
}

.risks_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.risk_card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 30px 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.risk_head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.risk_num {
  width: 98px;
  height: 72px;
  flex-shrink: 0;
  background-image: url("../images/atomzeiri/risks_bubble.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 8px;
}

.risk_num_label {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

.risk_num_val {
  color: var(--white);
  font-family: "Zen Old Mincho", serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
}

.risk_title {
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.6;
  flex: 1;
}

.risk_title_marker {
  font-size: 120%;
  font-weight: 700;
  color: #e03635;
}

.risk_body {
  font-size: 1.6rem;
  color: var(--text_sub);
  line-height: 1.85;
  flex-basis: 100%;
  text-align: left;
  background: #f1f1f1;
  padding: 10px 20px;
  border-radius: var(--radius);
  margin-top: 10px;
}

.risk_transition_banner {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-top: -50px;
  margin-bottom: -218px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.12));
}

.risk_transition_banner_inner {
  background: linear-gradient(to bottom, transparent 0%, #fff 21%);
  text-align: center;
  padding: 72px 80px 70px;
  width: max-content;
  white-space: nowrap;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 44px),
    50% 100%,
    0 calc(100% - 44px)
  );
}

@media (max-width: 768px) {
  .risks {
    padding: 30px 0 60px;
  }

  .risks::after {
    bottom: 0px;
    right: -20px;
  }

  .section_heading_left {
    font-size: 2.6rem;
    margin-bottom: 32px;
  }
}

/* ==================================================
   RISKS SOLUTION（リスク回避）
================================================== */
.risks_solution {
  padding: 240px 0 130px;
  margin-top: 0;
  position: relative;
  background: var(--cream);
}

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

.risks_solution_heading {
  font-size: 4.8rem;
  margin-bottom: 0;
  line-height: 1.3;
}

.risks_heading_top {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.06em;
}

.risks_heading_top::before {
  content: "＼ ";
}

.risks_heading_top::after {
  content: " ／";
}

.solution_compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.solution_head {
  padding: 18px 24px 22px 44px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.solution_head p {
  color: var(--white);
}

.solution_head_before {
  background: #4a4844;
}

.solution_head_after {
  background: var(--gold);
}

.solution_head_label {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.solution_head_sub {
  font-size: 1.6rem;
  opacity: 0.9;
  letter-spacing: 0.03em;
}

.solution_cell {
  padding: 22px 24px 22px 44px;
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 14px;
  row-gap: 4px;
  align-items: start;
}

.solution_cell::before {
  content: "";
  width: 32px;
  height: 32px;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}

.solution_cell_before {
  background: #f3f3f3;
}

.solution_cell_before::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23e03535'/%3E%3Cpath d='M7.5 7.5l9 9M16.5 7.5l-9 9' stroke='white' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
  grid-row: 1 / 3;
  align-self: center;
}

.solution_cell_after {
  background: #fff;
}

.solution_cell_after::before {
  background: url("../images/atomzeiri/risks_solution_icon.svg") center/contain
    no-repeat;
  grid-row: 1;
  align-self: center;
}

.solution_compare .solution_cell_before ~ .solution_cell_before {
  border-top: 1px solid #ddd;
}

.solution_compare .solution_cell_after ~ .solution_cell_after {
  border-top: 1px solid #e8e8e8;
}

.solution_cell_risk {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.15rem;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.07);
  display: inline-block;
  width: fit-content;
  padding: 1px 8px;
  border-radius: 3px;
}

.solution_cell_text {
  grid-column: 2;
  grid-row: 2;
  font-size: 1.75rem;
  line-height: 1.65;
  color: var(--text);
}

.solution_cell_after .solution_cell_text {
  grid-row: 1;
  align-self: center;
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--text);
}

.text_em {
  color: #b8801e;
  font-weight: 500;
  font-size: 120%;
}

@media screen and (max-width: 768px) {
  .risks_grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .risk_card {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: relative;
    padding: 40px 20px 20px;
  }

  .risk_num {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .risk_head {
    flex-direction: column;
    width: 100%;
  }

  .risk_title {
    flex: 1;
    min-width: 0;
    text-align: center;
    margin-bottom: 14px;
    font-size: 1.5rem;
  }
  .risk_body {
    flex-basis: auto;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
  }

  .risks .section_heading {
    white-space: normal;
    font-size: 2.2rem;
    line-height: 2;
  }

  .risk_transition_banner {
    margin-top: -24px;
    margin-bottom: -110px;
  }

  .risk_transition_banner_inner {
    width: 100%;
    white-space: normal;
    padding: 48px 20px 32px;
    background: linear-gradient(to bottom, #e4e4e4 0%, #fff 40%);
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 24px),
      50% 100%,
      0 calc(100% - 24px)
    );
  }

  .risk_transition_banner .risks_solution_heading {
    font-size: 2.6rem;
  }

  .risks_solution {
    padding: 130px 0 60px;
  }

  .risks_solution_heading {
    font-size: 3.2rem;
  }

  .solution_compare {
    margin-top: 20px;
  }

  .solution_head {
    padding: 14px 12px;
    gap: 6px;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .solution_head_label {
    font-size: 1.8rem;
    letter-spacing: 0.06em;
  }

  .solution_head_sub {
    font-size: 1.4rem;
  }

  .solution_cell {
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .solution_cell::before {
    width: 28px;
    height: 28px;
  }

  .solution_cell_risk {
    font-size: 1rem;
  }

  .solution_cell_text {
    font-size: 1.35rem;
  }

  .solution_cell_after .solution_cell_text {
    font-size: 1.4rem;
  }

  .solution_cell_text br {
    display: none;
  }
}

/* ============================================================
   CASES（解決事例）
============================================================ */
.cases {
  padding: 130px 0;
  background: #fff;
}

.cases_note {
  font-size: 1.3rem;
  color: var(--text_sub);
  margin-bottom: 32px;
}

.cases_list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.case_card {
  border: 1px solid #ebebeb;
  border-radius: 4px;
  overflow: hidden;
}

.case_label {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  background: var(--green_btn);
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  margin: 12px 20px 0;
}

.case_title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--green_dark);
  line-height: 1.6;
  padding: 8px 20px 16px;
}

.case_card_body {
  display: flex;
  gap: 0;
  border-top: 1px solid #ebebeb;
}

.case_img_wrap {
  width: 220px;
  flex-shrink: 0;
  background: #e8e8e8;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.case_img_caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #888;
  line-height: 1.7;
  text-align: center;
}

.case_table {
  flex: 1;
  border-collapse: collapse;
  font-size: 1.6rem;
  line-height: 1.7;
}

.case_table th,
.case_table td {
  padding: 14px 18px;
  border-bottom: 1px solid #e8e8e8;
  vertical-align: top;
  text-align: left;
}

.case_table tr:last-child th,
.case_table tr:last-child td {
  border-bottom: none;
}

.case_table th {
  width: 90px;
  font-weight: 500;
  color: var(--green_dark);
  white-space: nowrap;
  border-right: 1px solid #e8e8e8;
  background: #fafafa;
}

.case_table td {
  color: var(--text);
}

@media screen and (max-width: 768px) {
  .case_card_body {
    flex-direction: column;
  }

  .case_img_wrap {
    width: 100%;
    height: 180px;
  }

  .case_table th {
    width: 80px;
    font-size: 1.4rem;
    padding: 12px 10px;
  }

  .case_table td {
    font-size: 1.4rem;
    padding: 12px 12px;
  }

  .cases {
    padding: 0 0 60px;
  }
}

/* ==================================================
   ABOUT（事務所紹介）
================================================== */
.about {
  padding: 130px 0 0;
  background: var(--white);
  overflow: hidden;
  position: relative;
}

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

.about_inner {
  display: flex;
  align-items: stretch;
  gap: 48px;
}

.about_left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
}

.about_top {
  margin-bottom: 28px;
}

.about_desc {
  font-size: 1.6rem;
  color: var(--text_sub);
  line-height: 1.85;
  margin-top: 16px;
}

.about_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 240px;
}

.about_img_caption {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  color: var(--text_sub);
  margin-top: 8px;
  text-align: right;
}

.about_right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 0 0 0 8px;
}

.about_card {
  border: none;
  border-radius: 10px;
  padding: 24px 28px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about_card_head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about_card_icon {
  flex-shrink: 0;
  width: 230px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about_card_icon img {
  object-fit: contain;
}

.about_card_title {
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

.about_card_desc {
  font-size: 1.5rem;
  color: var(--text_sub);
  line-height: 1.85;
}

@media screen and (max-width: 768px) {
  .about::before {
    display: none;
  }

  .about_inner {
    flex-direction: column;
    gap: 32px;
  }

  .about_left {
    flex: none;
  }

  .about_img {
    min-height: 220px;
  }

  .about {
    padding: 60px 0 0;
  }

  .about_right {
    padding: 0;
  }

  .about_card_icon {
    width: 160px;
    height: 80px;
  }
}

/* ==================================================
   REASONS（選ばれる理由）
================================================== */
.reasons {
  padding: 130px 0;
  background: #f2f2f2;
}

.reasons_list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.reason_row {
  display: flex;
  align-items: center;
  gap: 0;
}

.reason_row--reverse {
  flex-direction: row-reverse;
}

.reason_img_wrap {
  flex: 0 0 50%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 8 / 4.6;
  background: var(--bg_light);
}

.reason_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reason_badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--gold);
  color: #ffffff;
  padding: 8px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
}

.reason_badge_label {
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.reason_badge_num {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.reason_text {
  flex: 1;
  padding: 36px 32px 40px;
  border-radius: 8px;
  margin-bottom: 36px;
}

.reason_title {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--green_dark);
  line-height: 1.45;
  margin-bottom: 0;
}

.reason_desc {
  font-size: 1.6rem;
  color: var(--text_sub);
  line-height: 1.9;
  margin-top: 20px;
}

.reason_desc_medals {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 20px;
}

.reason_desc_medals .reason_desc {
  flex: 1;
  margin-top: 0;
}

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

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

.reason_medal {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    #a87020 0%,
    #ddc85a 40%,
    #c09828 70%,
    #946010 100%
  );
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  border: 2px solid #b48913;
  position: relative;
  z-index: 1;
  transition: z-index 0s;
}

.reason_medal + .reason_medal {
  margin-left: -16px;
}

.reason_medal_label {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 5px;
  font-family: "Zen Old Mincho", serif;
}

.reason_medal_main {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}

.reason_medal_num {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}

.reason_medal_unit {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.reason_medal_note {
  font-size: 1rem;
  margin-top: 4px;
  opacity: 0.85;
}

.reason_medals_note {
  font-size: 1.2rem;
  color: var(--text_sub);
  margin-top: 10px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .reason_row,
  .reason_row--reverse {
    flex-direction: column;
    gap: 24px;
  }

  .reason_img_wrap {
    flex: none;
    width: 100%;
  }

  .reasons_list {
    gap: 52px;
  }

  .reason_title {
    font-size: 2.2rem;
  }

  .reason_desc_medals {
    flex-direction: column;
  }

  .reasons {
    padding: 60px 0;
  }

  .reasons_list {
    gap: 40px;
  }

  .reason_text {
    padding: 0;
    margin-bottom: 0;
  }
}

/* ==================================================
   LETTERS（いただいた声）
================================================== */
.letters {
  padding: 130px 0;
  background-color: var(--cream);
  background-image: url("../images/atomzeiri/letters_bg.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

.letters_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.letter_card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.letter_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 44px 44px 0 0;
  border-color: var(--gold) transparent transparent transparent;
}

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

.letter_card_header::after {
  content: "";
  flex: 1;
  border-bottom: 1px dashed var(--border);
}

.letter_icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.letter_label {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.68rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}

.letter_body {
  font-size: 1.6rem;
  color: var(--text);
  line-height: 1.9;
  flex: 1;
}

.letter_person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
}

.letter_person_icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.letter_person_label {
  font-size: 1.6rem;
  color: var(--text_sub);
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .letters_grid {
    grid-template-columns: 1fr;
  }

  .letters {
    padding: 60px 0;
  }
}

/* ==================================================
   MERITS（5つのメリット）
================================================== */
.merits {
  padding: 130px 0;
  background: var(--cream);
}

.merits_count {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6em;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  vertical-align: baseline;
}

.merits_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.merit_card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--white);
  border-radius: 8px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border-top: 3px solid var(--gold);
}

.merit_num {
  font-family: "Zen Old Mincho", serif;
  font-size: 3.6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.merit_num::before {
  content: "メリット";
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.merit_title {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--green_dark);
  line-height: 1.45;
  margin-bottom: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.merit_desc {
  font-size: 1.5rem;
  color: var(--text_sub);
  line-height: 1.85;
  flex: 1;
}

@media (max-width: 768px) {
  .merit_card {
    flex: 0 0 100%;
  }

  .merits {
    padding: 60px 0;
  }

  .merits_list {
    gap: 16px;
    margin-top: 32px;
  }
}

/* ==================================================
   PRICE（料金表）
================================================== */
.price {
  background: var(--white);
}

.price .container {
  max-width: 900px;
}

.price_lead {
  margin-top: -24px;
  margin-bottom: 36px;
  font-size: 1.6rem;
  color: var(--text_sub);
  line-height: 1.8;
  text-align: center;
}

.price_inner {
  display: grid;
  gap: 48px;
}

.price_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
}

.price_table thead th {
  background: var(--green_dark);
  color: var(--white);
  font-weight: 500;
  padding: 14px 20px;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}

.price_table td {
  padding: 11px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 1.8rem;
}

.price_table td:first-child {
  border-right: 1px solid var(--border);
}

.price_table td:last-child {
  text-align: right;
  white-space: nowrap;
}

.price_num {
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--green_dark);
}

.price_unit {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text_sub);
  margin-left: 2px;
}

.price_table tbody tr:last-child td {
  border-bottom: none;
}

.price_table tbody {
  border: 1px solid var(--border);
}

.price_side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price_side_label {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text_sub);
  text-align: center;
}

.price_tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.price_tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #e6f0e8;
  border-radius: 6px;
  padding: 14px 8px 12px;
}

.price_tag_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price_tag_name {
  font-size: 1.6rem;
  color: var(--text_sub);
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
}

.price_note {
  font-size: 1.3rem;
  color: var(--text_sub);
  margin-bottom: 16px;
}

.price_detail_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 1.6rem;
  color: var(--text);
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.price_detail_link:hover {
  background: var(--bg_light);
  border-color: var(--text_sub);
}

.price_detail_arrow {
  font-size: 2rem;
  color: var(--text_sub);
  line-height: 1;
}

.price_side_note {
  font-size: 1.6rem;
  color: var(--text_sub);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .price_inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .price_tag_name {
    font-size: 1.6rem;
  }

  .price {
    padding: 0;
  }

  .price_table thead th {
    font-size: 1.6rem;
    padding: 12px 14px;
  }

  .price_table td {
    font-size: 1.6rem;
    padding: 10px 12px;
  }

  .price_num {
    font-size: 2.2rem;
  }

  .price .cta_section {
    padding: 70px 24px 0px;
  }
}

/* ==================================================
   TAXLAWYER（税理士紹介）
================================================== */
.taxlawyer {
  padding: 0 0 130px;
  position: relative;
  overflow: hidden;
}

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

.taxlawyer_inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 48px;
  background: var(--white);
  border-radius: 0;
  box-shadow:
    16px 16px 0 #e6f0e8,
    0 8px 40px rgba(30, 61, 42, 0.1);
  overflow: hidden;
}

.taxlawyer_photo_outer {
  position: relative;
  background: var(--green_dark);
}

.taxlawyer_photo_outer::after {
  display: none;
}

.taxlawyer_photo_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: #dedad7;
  overflow: hidden;
}

.taxlawyer_photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  inset: 0;
}

.taxlawyer_photo_placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text_sub);
  font-size: 1.6rem;
}

.taxlawyer_left {
  display: flex;
  flex-direction: column;
  padding: 52px 56px;
  position: relative;
}

.taxlawyer_left::before {
  display: none;
}

.taxlawyer_group_name {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.taxlawyer_group_body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.taxlawyer_role {
  display: inline-block;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: var(--white);
  font-weight: 500;
  background: var(--green_dark);
  padding: 4px 14px;
  border-radius: 2px;
  align-self: flex-start;
}

.taxlawyer_name {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 500;
  color: var(--green_dark);
  line-height: 1.3;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.taxlawyer_name_en {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text_sub);
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.12em;
}

.taxlawyer_meta {
  font-size: 1.35rem;
  color: var(--text_sub);
}

.taxlawyer_divider {
  border: none;
  background: none;
  margin: 32px 0;
}

.taxlawyer_desc {
  font-size: 1.6rem;
  color: var(--text);
  line-height: 1.9;
}

.taxlawyer_qual {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 3px;
  overflow: hidden;
  align-self: flex-start;
}

.taxlawyer_qual_label {
  font-size: 1.4rem;
  padding: 5px 12px 5px 0;
  background: var(--white);
  color: var(--green_dark);
  font-weight: 400;
  white-space: nowrap;
  position: relative;
}

.taxlawyer_qual_label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40%;
  background: var(--green_dark);
}

.taxlawyer_qual_text {
  font-size: 1.4rem;
  padding: 5px 14px;
  background: var(--white);
  color: var(--green_dark);
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .taxlawyer_inner {
    grid-template-columns: 1fr;
    box-shadow:
      6px 6px 0 #e6f0e8,
      0 8px 40px rgba(30, 61, 42, 0.1);
  }

  .taxlawyer_photo_wrap {
    min-height: 320px;
  }

  .taxlawyer_photo {
    object-fit: contain;
  }

  .taxlawyer_left {
    padding: 36px 28px;
  }

  .taxlawyer {
    padding: 60px 0;
  }

  .taxlawyer_name {
    font-size: 2.8rem;
  }

  .taxlawyer_divider {
    margin: 20px 0;
  }
}

/* ==================================================
   SOUDAN（相談できること）
================================================== */
.soudan {
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}

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

.soudan_top {
  max-width: 100%;
  margin-bottom: 48px;
}

.soudan_desc {
  font-size: 1.6rem;
  color: var(--text_sub);
  line-height: 1.85;
}

.soudan_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.soudan_card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 20px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-top: 52px;
}

.soudan_num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, calc(-100% + 1px));
  width: 90px;
  height: 50px;
  border-radius: 50px 50px 0 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: none;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6px;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 1;
}

.soudan_icon {
  width: 72px;
  height: 72px;
  background: #e6f0e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.soudan_icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.soudan_card_title {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--green_dark);
  margin-bottom: 10px;
  line-height: 1.5;
  text-align: center;
  min-height: calc(2.4rem * 1.5 * 2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.soudan_card_desc {
  font-size: 1.6rem;
  color: var(--text_sub);
  line-height: 1.85;
}

@media screen and (max-width: 768px) {
  .soudan {
    padding: 30px 0 0;
  }

  .soudan_top {
    max-width: 100%;
    margin-bottom: 0;
  }

  .soudan_list {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .soudan_num {
    width: 70px;
    height: 40px;
    font-size: 2rem;
  }

  .soudan_cta {
    padding: 60px 24px;
  }

  .soudan_card_title br {
    display: none;
  }

  .soudan_card_title {
    min-height: unset;
    font-size: 2rem;
  }
}

/* ==================================================
   FLOW（相談から申告までの流れ）
================================================== */
.flow {
  padding: 130px 0;
  background: #ddeae2;
  max-width: inherit;
}

.flow_heading {
  font-family: "Zen Old Mincho", serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--green_dark);
  text-align: center;
  line-height: 1.4;
}

.flow_steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
}

.flow_step {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 820px;
  text-align: left;
  padding: 14px 18px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(30, 61, 42, 0.07);
  position: relative;
  overflow: hidden;
}

.flow_step_visual {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.flow_step_circle {
  width: 140px;
  height: 140px;
  border-radius: 5px;
  background: var(--green_dark);
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow_step_num {
  position: absolute;
  top: 43px;
  right: 19px;
  transform: translateY(-50%);
  font-family: "Zen Old Mincho", serif;
  font-size: 6rem;
  font-weight: 500;
  color: rgba(180, 200, 185, 0.7);
  line-height: 1;
  z-index: 0;
  letter-spacing: 0;
  pointer-events: none;
}

.flow_step_icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.flow_step_body {
  flex: 1;
  z-index: 1;
}

.flow_step_title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--green_dark);
  margin-bottom: 6px;
  line-height: 1.4;
}

.flow_step_desc {
  font-size: 1.6rem;
  color: var(--text);
  line-height: 1.8;
}

.flow_arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 680px;
  padding: 0;
  color: #a0c0a8;
  font-size: 1.1rem;
}

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

  .flow_heading {
    font-size: 2.6rem;
  }

  .flow_steps {
    margin-top: 32px;
    padding: 0 4px;
  }

  .flow_step {
    gap: 16px;
    padding: 14px 14px;
    max-width: 100%;
  }

  .flow_step_visual,
  .flow_step_circle {
    width: 88px;
    height: 88px;
  }

  .flow_step_num {
    font-size: 4rem;
    top: 30px;
    right: 12px;
  }

  .flow_step_title {
    font-size: 1.7rem;
  }

  .flow_step_desc {
    font-size: 1.4rem;
  }
}

/* ==================================================
   FAQ（よくある質問）
================================================== */
.faq {
  padding: 130px 0;
  background: var(--bg_light);
  max-width: inherit;
}

.faq_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq_item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.qa_tgr {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 24px 0 0;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
  user-select: none;
}

.faq_label {
  flex-shrink: 0;
  width: 60px;
  padding: 20px 0;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  margin-right: 24px;
}

.faq_q {
  flex: 1;
  padding: 20px 0;
}

.faq_icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text_sub);
  transition: transform 0.25s ease;
}

.faq_item:not(.close) .faq_icon {
  transform: rotate(180deg);
}

.box {
  display: none;
  padding: 0 64px 22px calc(60px + 2px + 24px);
  font-size: 1.8rem;
  color: var(--text_sub);
  line-height: 1.9;
}

@media screen and (max-width: 768px) {
  .faq_label {
    width: 48px;
    font-size: 1.8rem;
    margin-right: 16px;
  }

  .qa_tgr {
    font-size: 1.6rem;
    padding-right: 16px;
  }

  .box {
    padding-left: calc(48px + 2px + 16px);
    padding-right: 16px;
    font-size: 1.6rem;
  }

  .faq {
    padding: 60px 0;
  }
}

/* ==================================================
   COMPANY（事務所情報）
================================================== */
.company {
  padding: 130px 0 0;
  background: var(--white);
}

.company .section_heading_left {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  padding-bottom: 0;
  font-size: 3.2rem;
  margin-bottom: 32px;
}

.company .section_heading_left::after {
  display: none;
}

.company_inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.company_table {
  width: 100%;
  border-collapse: collapse;
}

.company_table tr {
  border-bottom: 1px solid var(--border);
}

.company_table tr:first-child {
  border-top: 1px solid var(--border);
}

.company_table th {
  padding: 16px 20px;
  font-size: 1.6rem;
  font-weight: 400;
  background: #f8f7f4;
  white-space: nowrap;
  vertical-align: middle;
  width: 120px;
}

.company_table td {
  padding: 16px;
  font-size: 1.6rem;
  color: var(--text);
  line-height: 1.7;
}

.company_map {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 4px;
  display: block;
}

@media screen and (max-width: 768px) {
  .company_inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .company {
    padding: 60px 0 0;
  }

  .company .section_heading_left {
    font-size: 2.6rem;
  }
}

/* ========== footer ========== */
footer {
  padding: 64px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.footer-grid > div {
  padding: 0 30px;
}

.footer-grid > div:first-child {
  padding-left: 0;
}

.footer-grid > div:last-child {
  padding-right: 0;
}

@media (max-width: 768px) {
  footer {
    padding: 48px 0 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px 0;
  }

  .footer-grid > div {
    padding: 0;
    border-left: none;
  }

  body {
    padding-bottom: 108px;
    -webkit-text-stroke: 0.3px;
  }
}

/* style.css の .l-head__pickup h3 a を上書き（max-height・重複プロパティを修正） */
.l-head__pickup h3 a {
  max-height: none !important;
}
