:root {
  --light-blue: #eaf9f9;
  --dark-blue: #0297ca;
  --white: #ffffff;
  --black: #222;
  --navy: #026191;
  --pink: #d81d56;
  --yellow: #fcee09; 
  --light-gray: #f8f8f8;
  --orange: #fbe1c3;
  --dot-blue: #77a7bc;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-noto-sans: "Noto Sans JP", sans-serif;
  --font-family-ads: "ads-rumba", sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2l: 24px;
}

html{
  font-size: 62.5%;
  height: 100%;
  box-sizing: border-box;
}

body{
  background: var(--background);
  font-family: var(--font-family-noto-sans);
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-family-noto-sans);
}

p {
  line-height: 1.6;
  letter-spacing: 0.06rem;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.ads {
  font-family: var(--font-family-ads);
}

/* ************************************ */
/* ヘッダー */
/* ************************************ */
header {
  background: url(../images/bg_lightblue.png);
  background-repeat: repeat;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* スクロール時のヘッダー */
header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  background: var(--white);
}

header.hide {
  transform: translateY(-100%);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5vw;
  min-height: 80px;
}

.header-inner .logo-link {
  text-decoration: none;
  cursor: pointer;
}

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

.header_logo--img {
  margin: 0;
  max-width: 80px;
} */

.header_title {
  margin: 0;
}

.header_title .main-title {
  color: var(--black);
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: -5px;
}

.header_title .main-title .ads {
  font-weight: 400;
}

.header_title .sub-title {
  color: var(--dark-blue);
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}

/* ロゴ */
.logo {
  letter-spacing: 0.15rem;
}

.header_logo {
  margin: 0;
}

/* PCナビゲーション */
.header-nav-menu {
  display: flex;
  list-style: none;
  gap: 26px;
  margin-bottom: 0;
}

.header-nav-menu li a {
  text-decoration: none;
  color: var(--black);
  font-family: var(--font-family-noto-sans);
  font-size: 1.6rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.header-nav-menu li a:hover {
  color: var(--main-color);
}

.header-nav {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
}

.nav_tel {
  background: var(--pink);
  border-radius: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px;
  padding: 6px 10px 6px 6px;
  text-decoration: none;
  align-items: center;
}
.nav_tel_left {
  background: var(--white);
  border-radius: 8px;
  color: var(--pink);
  font-family: var(--font-family-ads);
  padding: 5px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.nav_tel_right {
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav_tel_right_top {
  font-size: 1.1rem;
  line-height: 1;
}
.nav_tel_tel {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.nav_tel_right_btm {
  font-size: 1.0rem;
  line-height: 1;
}

.nav_tel_sp {
  max-width: 240px;
  margin: 0 auto;
}

/* ハンバーガーメニューボタン */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--navy);
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  transition: left 0.3s ease;
  z-index: 999;
  padding-top: 100px;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.mobile-menu ul li {
  padding: 0;
}

.mobile-menu ul li a {
  display: block;
  padding: 15px 30px;
  text-decoration: none;
  color: var(--black);
  font-family: var(--font-family-noto-sans);
  font-size: 1.4rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.mobile-menu ul li a:hover {
  background-color: #f8f9fa;
  color: var(--main-color);
}

/* オーバーレイ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .header_title .main-title {
    font-size: 2rem;
  }
}
/* ************************************ */
/* フッター */
/* ************************************ */
.footer {
  background: var(--dark-blue);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  color: var(--white);
  position: sticky;
  top: 100vh;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
}

/* フッターロゴ */
.footer-inner .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer_logo img {
  width: 250px;
}

.footer-info_title {
  font-size: 1.8rem;
  margin: 1rem 0 1rem;
}

.footer-info p {
  font-size: 1.4rem;
  margin: 0 0 1rem;
}

.footer-info .tel {
  font-size: 2rem;
  font-weight: 600;
  margin-left: 1rem;
}

.footer-info .f-hour {
  margin-bottom: 2rem;
}

.footer .nav_tel {
  background: transparent;
  padding: 0;
}

.footer .nav_tel_tel {
  font-size: 2.4rem;
}

/* フッターナビゲーション */
.footer-nav {
  max-width: 980px;
  margin: 5rem auto 0;
  padding: 2rem;
}

.footer-nav-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
  gap: 1rem;
  padding-left: 0;
}

.footer-nav-menu li a {
  text-decoration: none;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 400;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-nav-menu li a:hover {
  opacity: 0.8;
}

/* copyright */
.copyright {
  text-align: right;
  padding: 20px 0;
  color: var(--white);
  font-size: 1rem;
}

.copyrightWrap {
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px;
}

.copyright-link {
  color: var(--white);
  text-decoration: none;
  margin-bottom: 1rem;
}

.copyright p {
  margin: 0;
  font-size: 1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    padding-top: 40px;
  }
  .footer-nav {
    margin-top: 0;
  }
  .copyright {
    text-align: center;
    padding:0 0 20px;
    color: var(--white);
    font-size: 1rem;
  }
}


/* ************************************ */
/* レスポンシブデザイン */
/* ************************************ */
@media (max-width: 1250px) {
  /* ***** header ***** */
  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-container {
    padding: 10px 15px;
    min-height: inherit;
  }

  main {
    padding: 0;
  }
}

@media (max-width: 768px) {
  p {
    font-size: var(--font-size-sm);
  }
  
  .pc-only {
    display: none;
  }
  
  .sp-only {
    display: block;
  }

  /* ***** footer ***** */
  /* フッターモバイル対応 */
  .footer-container {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0px;
    padding: 0 15px;
  }

  /* .footer-logo {
    font-size: 3.5rem;
    margin-bottom: 10px;
  } */

  .footer-nav-menu {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0;
    padding-top: 1rem;
    padding-left: 0;
    text-align: center;
    width: 100%;
  }

  .footer-nav-menu li {
    width: 100%;
  }

  .footer-nav-menu li a {
    display: block;
    padding: 5px 0;
  }

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

  .sectionWrap {
    padding: 10px 0 0;
  }

  .sectionWrapper {
    padding: 60px 20px;
  }

  .section_title {
    font-size: 3rem;
  }
}

/* ************************************ */
/* button */
/* ************************************ */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  margin: 0 auto;
  padding: 12px 2em;
  border-radius: 100vh;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 1.8rem;
}

.btn__primary {
  background: var(--navy);
  border: solid 1px var(--navy);
}

.btn__primary:hover {
  background: var(--background);
  color: var(--main-color);
  transition: background 0.4s ease, color 0.4s ease;
}

.btn__secondary {
  background: var(--white);
  border: solid 3px var(--navy);
  color: var(--navy);
}

.btn__secondary:hover {
  background: var(--navy);
  border: solid 3px var(--navy);
  color: var(--white);
  transition: background 0.4s ease, color 0.4s ease;
}

.tel--link.btn__secondary {
  margin: 0;
}

.tel--link.btn__secondary::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../images/icon/tel-icon-navy.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
}


/* ************************************ */
/* breadcrumb */
/* ************************************ */
.breadcrumb {
  margin: 10px 0;
  font-size: 1.2rem;
}

.breadcrumb-list {
  list-style: none;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0 8px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid var(--black);
}

.breadcrumb-item a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--black);
  text-decoration: underline;
}

.breadcrumb-item.current span {
  color: var(--black);
  font-weight: 500;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .breadcrumb {
      font-size: 12px;
      margin: 15px 0;
  }
  
  .breadcrumb-item:not(:last-child)::after {
      margin: 0 4px;
  }
}


/* ************************************ */
/* メインコンテンツ（front-page.php） */
/* ************************************ */
main {
  padding: 0;
  position: relative;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.section_title {
  text-align: center;
  position: relative;
}

.content-section {
  padding: 80px 40px;
}

.sectionWrapper {
  padding: 90px 40px 80px;
  position: relative;
  overflow: hidden;
}
.section_title h2 {
  margin:0 0 5rem;
}







.contactWrap {
  text-align: center;
}

.contactWrap p{
  color: var(--yellow);
  font-size: 1.6rem;
  padding: 30px 0;
}


/* ************************************ */

/* 404.php */

/* ************************************ */
.page-404 {
  text-align: center;
}

.page-404,
.page-404 h1,
.page-404 p {
  color: var(--black);
}

.page-404 h1 {
  font-size: 2.4rem;
  margin-bottom: 4rem;
}

.page-404 p {
  font-size: var(--font-size-md);
  margin-bottom: 3rem;
}

.page-404 .return-link {
  color: var(--main-color);
  font-size: var(--font-size-md);
}


/* Thanks message */
.wpcf7-response-output{
  display: none;
}


/* ************************************ */


/* map */


/* ************************************ */
/* ===========================
   アクセスマップ セクション
   access-map
=========================== */

.access-map .sectionWrapper {
  padding: 90px 0;
  overflow: visible;
}

.access-map__wrap {
  display: flex;
  align-items: stretch;
}

.map-address {
  flex: 0 0 50%;
  box-sizing: border-box;
  padding: 0 40px 80px max(20px, calc((100vw - 1240px) / 2 + 20px));
}

.map-name {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1.6rem;
  color: var(--black);
}

.map-text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0 0 1.6rem;
  color: var(--black);
}

.access-map__container {
  position: relative;
  flex: 1;
  min-height: 450px;
  background-color: #FFF5F9;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
}

/* iframe本体 */
.access-map__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* 読み込み完了後にフェードイン */
.access-map__iframe.is-loaded {
  opacity: 1;
}

/* 読み込み前プレースホルダー */
.access-map__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF5F9;
  pointer-events: none;
}

.access-map__placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #E72E79;
}

.access-map__placeholder-inner p {
  font-size: 1.4rem;
  color: #E72E79;
  margin: 0;
}

/* ===========================
   レスポンシブ: 768px以下
=========================== */
@media (max-width: 768px) {
  .access-map .sectionWrapper {
    padding: 60px 0;
  }
  .access-map__wrap {
    flex-direction: column;
  }
  .map-address {
    flex: none;
    padding: 0 20px 40px;
    text-align: center;
  }
  .access-map__container {
    flex: none;
    height: 300px;
    min-height: unset;
    border-radius: 0;
  }
  .map-address .tel--link {
    max-width: 100%;
    margin: 0 auto;
  }
}



/* ************************************ */


/* cv-contact */


/* ************************************ */

.cv-contact { 
  padding: 0 40px;
}

.cv-contact__inner {
  background: url(../images/bg_blue.png);
  background-repeat: repeat;
  background-position: center;
  border-radius: 20px;
  padding: 60px 0 50px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cv-contact__center {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: end;
  justify-content: center;
  column-gap: 100px;
}

.cv-contact__figure {
  margin: 0;
  grid-row: 1;
}

.cv-contact__figure--left {
  grid-column: 1;
}

.cv-contact__figure--right {
  grid-column: 3;
}

.cv-contact__figure img {
  display: block;
  width: 220px;
  height: auto;
}

.cv-contact__text {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.cv-contact__text {
  text-align: center;
}

.cv-contact__label {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 10px;
  background-color: var(--dark-blue);
  text-align: left;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
}

.cv-contact__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15px 5px 0 5px;
  border-color: var(--dark-blue) transparent transparent;
  translate: -50% 100%;
}

.cv-contact__title {
  font-family: var(--font-family-ads);
  font-size: 5.6rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 1.4rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.cv-contact__subtitle {
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0;
}

/* ヘッダー・フッターと同じ横幅 */
.cv-contact__card {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 28px 20px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.cv-contact__tel-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cv-contact__tel-link {
  display: flex;
  align-items: end;
  gap: 8px;
  text-decoration: none;
  color: var(--dark-blue);
}

.cv-contact__tel-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.cv-contact__tel-num {
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

.cv-contact__hours {
  font-size: 1.3rem;
  color: var(--black);
  margin: 0;
  padding-left: 44px;
}

.cv-contact__btn {
  background: var(--navy);
  color: var(--white);
  font-size: 2rem;
  gap: 10px;
  max-width: 400px;
  width: 100%;
  padding: 16px 40px;
  flex-shrink: 0;
  margin: 0;
}

.cv-contact__btn-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.cv-contact__btn:hover {
  background: var(--dark-blue);
  color: var(--white);
  transition: background 0.3s ease;
}

@media (max-width: 768px) {
  .cv-contact__inner {
    padding: 40px 0 0;
  }

  .cv-contact__center {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .cv-contact__figure--left {
    display: none;
  }

  .cv-contact__figure--right {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .cv-contact__text {
    grid-column: 1;
    grid-row: 1;
    padding: 0 20px;
  }

  .cv-contact__figure img {
    width: 160px;
  }

  .cv-contact__title {
    font-size: 4rem;
  }

  .cv-contact__card {
    flex-direction: column;
    padding: 24px 0;
    gap: 24px;
    text-align: center;
    border-radius: 0;
  }

  .cv-contact__tel-wrap {
    align-items: center;
  }

  .cv-contact__hours {
    padding-left: 0;
  }

  .cv-contact__tel-num {
    font-size: 3.4rem;
  }

  .cv-contact__btn {
    width: 100%;
    max-width: 300px;
  }

  .cv-contact__tel-icon {
    width: 30px;
    height: 30px;
  }
}


/* ************************************ */


/* top page */


/* ************************************ */
/* 見出し吹き出し */
.heading__wrapper {
  position: relative;
  display: inline-block;
  margin: 0 0 20px;
}
 
.heading-balloon {
  display: inline-block;
  background: var(--dark-blue);
  color: var(--white);
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 18px 20px;
  border-radius: 16px;
  position: relative;
  max-width: 400px;
  width: 100%;
}
 
.heading-balloon::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 15px 5px 0 5px;
  border-color: var(--dark-blue) transparent transparent transparent;
}

@media (max-width: 768px) {
  .heading-balloon {
    font-size: 1.8rem;
  }
}

/* ============================== */
/* top-fv */
/* ============================== */
.top-fv {
  position: relative;
  padding: 100px 0 0;
  overflow-x: hidden;
}

.top-fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  z-index: 0; 
}

.top-fv__inner {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

.top-fv__badge {
  top: 0;
  right: 0;
  margin: 0;
  width: 130px;
  z-index: 3;
}

.top-fv__badge img {
  width: 100%;
  height: auto;
  display: block;
}

.top-fv__head {
  position: relative;
  padding-top: 20px;
}

.top-fv__balloon.balloon {
  display: inline-block;
  position: relative;
  z-index: 0;
  padding: 10px;
  background-color: var(--dark-blue);
  color: var(--white);
  font-family: var(--font-family-noto-sans);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0;
  border-radius: 10px;
  letter-spacing: 0;
  text-align: center;
}

.top-fv__balloon-txt-l {
  font-size: 1.8rem;
}

.top-fv__balloon.balloon::before {
  content: '';
  position: absolute;
  z-index: -1;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(-135deg);
  left: 20px;
  top: auto;
  bottom: -10px;
  border-right: 20px solid var(--dark-blue);
  border-top: 20px solid var(--dark-blue);
  border-left: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.top-fv__balloon.balloon::after {
  content: '';
  position: absolute;
  z-index: -1;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(-225deg);
  left: 35px;
  top: auto;
  bottom: -20px;
  border-right: 20px solid var(--light-blue);
  border-top: 20px solid var(--light-blue);
  border-left: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.top-fv__title {
  font-weight: 400;
  margin: 0 auto 60px;
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.top-fv__title-first {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 20px;
}

.top-fv__title-row {
  display: flex;
  align-items: flex-end;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-weight: 400;
  font-size: 4rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.top-fv__title-row2 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 20px;
}

.top-fv__zero-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.top-fv__label-zero {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.top-fv__zero {
  font-family: var(--font-family-noto-sans);
  font-size: 24rem;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1;
}

/* 「円」の頭上に「ゼロ」を表示 */
.top-fv__zero-ruby {
  font-family: var(--font-family-noto-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-blue);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.top-fv__zero-deco {
  position: absolute;
  top: -10px;
  right: -36px;
  width: 50px;
  height: auto;
}

.top-fv__zero-label {
  font-size: 5.6rem;
  color: var(--black);
  margin-right: 4px;
  align-self: flex-end;
}

.top-fv__accent {
  color: var(--navy);
  font-size: 10rem;
  position: relative;
  display: inline-block;
  line-height: 1;
}

.top-fv__accent .italic {
  font-style: italic;
  margin-left: -40px;
}

.top-fv__accent::after {
  content: '';
  position: absolute;
}

.top-fv__accent.nami_line::after {
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 8px;
  background-image: url('../images/fv/nami_line.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* 3つの吹き出し */
.top-fv__speech-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

.top-fv__speech-item {
  position: absolute;
}

.top-fv__speech-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  border-radius: 100vh;
  padding: 20px 28px;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1.4;
  white-space: nowrap;
}

.top-fv__speech-item--01 {
  top: 0;
  left: 25%;
  position: relative;
}

.top-fv__speech-item--01::before {
  content: '';
  position: absolute;
  z-index: -1;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(-45deg);
  left: 20px;
  top: auto;
  bottom: -15px;
  border-right: 20px solid var(--white);
  border-top: 20px solid var(--white);
  border-left: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.top-fv__speech-item--01::after {
  content: '';
  position: absolute;
  z-index: -1;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(-245deg);
  left: 35px;
  top: auto;
  bottom: -20px;
  border-right: 20px solid var(--light-blue);
  border-top: 20px solid var(--light-blue);
  border-left: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.top-fv__speech-item--01 .top-fv__speech-bubble {
  border-radius: 50%;
  width: 200px;
  height: 160px;
  white-space: normal;
  text-align: center;
}

.top-fv__speech-item--02 {
  top: 50px;
  left: 45%;
}

.top-fv__speech-item--02 .top-fv__speech-bubble {
  border-radius: 50%;
  width: 170px;
  height: 130px;
  white-space: normal;
  text-align: center;
}

.top-fv__speech-item--02::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: var(--white) transparent transparent;
  translate: -50% 100%;
}

.top-fv__speech-item--03 {
  top: 0;
  left: 65%;
}

.top-fv__speech-item--03 .top-fv__speech-bubble {
  border-radius: 50%;
  width: 200px;
  height: 160px;
  white-space: normal;
  text-align: center;
}

.top-fv__speech-item--03::before {
  content: '';
  position: absolute;
  z-index: -1;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(-45deg);
  right: 20px;
  top: auto;
  bottom: -15px;
  border-right: 20px solid var(--white);
  border-top: 20px solid var(--white);
  border-left: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.top-fv__speech-item--03::after {
  content: '';
  position: absolute;
  z-index: -1;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(-245deg);
  left: 35px;
  top: auto;
  bottom: -20px;
  border-right: 20px solid var(--light-blue);
  border-top: 20px solid var(--light-blue);
  border-left: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.top-fv__people {
  position: relative;
  z-index: 1;
  margin: -40px auto 0;
  max-width: 1200px;
  width: 100%;
}

.top-fv__people img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================== */
/* レスポンシブ:  */
/* ============================== */
@media (min-width: 1150px) {
  .top-fv__badge--pc {
    display: block;
  }
  .top-fv__badge--sp {
    display: none;
  }
}
@media (max-width: 1150px) {
  .top-fv__head {
    padding-top: 50px;
  }
  .top-fv__title {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .top-fv__badge--pc {
    display: none;
  }
  .top-fv__badge--sp {
    display: block;
    position: absolute;
  }
  .top-fv__badge {
    width: 100px;
    right: 10px;
    top: -10px;
  }
  .top-fv__accent {
    font-size: 6rem;
  }
  
}
@media (max-width: 768px) {
  .top-fv {
    padding: 40px 0 0;
  }

  .top-fv__head {
    padding-top: 20px;
  }

  .top-fv__badge {
    width: 80px;
    right: 10px;
    top: 30px;
  }

  .top-fv__title-row {
    white-space: normal;
    font-size: 2.6rem;
  }

  .top-fv__title-last {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 12px;
  }

  .top-fv__balloon.balloon {
    font-size: 1.2rem;
  }

  .top-fv__balloon-txt-l {
    font-size: 1.3rem;
  }

  .top-fv__zero {
    font-size: 9rem;
  }

  .top-fv__zero-label {
    font-size: 4rem;
  }

  .top-fv__zero-ruby {
    font-size: 1.1rem;
    top: -1.8em;
  }

  .top-fv__zero-deco {
    width: 28px;
    top: -16px;
    right: -18px;
  }

  .top-fv__speech-list {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .top-fv__speech-item {
    position: static;
  }

  .top-fv__speech-bubble {
    padding: 12px 16px;
    font-size: 1.1rem;
  }

  .top-fv__speech-item--01 .top-fv__speech-bubble {
    width: 100px;
    height: 100px;
  }

  .top-fv__speech-item--02 .top-fv__speech-bubble {
    width: 100px;
    height: 100px;
  }

  .top-fv__speech-item--03 .top-fv__speech-bubble {
    width: 100px;
    height: 100px;
  }

  .top-fv__people {
    margin-top: 0;
  }
}


/* ============================== */
/* top-menu */
/* ============================== */
.top-menu {
  position: relative;
  padding: 30px 0;
  background: var(--white);
}

.top-menu::before {
  content: '';
  position: absolute;
  top: -75px;
  left: 0;
  width: 100%;
  height: 150px;
  background: #fff;
  border-radius: 50% 80% 0 0 / 75px 75px 0 0;
  z-index: 1;
}

.top-menu__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 10;
}

.top-menu__item {
  display: block;
}

.top-menu__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 16px;
  background: var(--white);
  border: 3px solid var(--dark-blue);
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  height: 100%;
  box-sizing: border-box;
  transition: background 0.3s ease, color 0.3s ease;
}

.top-menu__link:hover {
  opacity: 0.8;
}

.top-menu__icon {
  margin: 0;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.top-menu__label {
  font-family: var(--font-family-noto-sans);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--black);
  margin: 0;
  line-height: 1.4;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .top-menu {
    padding: 40px 0;
  }

  .top-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 30px;
    background: #fff;
    border-radius: 50% 50% 0 0 / 20px 20px 0 0;
    z-index: 1;
  }

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

  .top-menu__link {
    padding: 24px 12px;
    gap: 12px;
    border-radius: 12px;
  }

  .top-menu__icon {
    width: 70px;
    height: 70px;
  }

  .top-menu__label {
    font-size: 1.4rem;
  }
}


/* ============================== */
/* top-flow */
/* ============================== */
.top-flow {
  text-align: center;
  padding: 0 0 80px;
}
 
.top-flow__lead {
  font-family: var(--font-family-noto-sans);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--black);
  margin: 0 0 48px;
}
 
/* ステップ一覧 */
.top-flow__steps {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}
 
.top-flow__steps::before {
  content: "";
  position: absolute;
  top: 90px;
  left: calc(50% - 350px);
  right: calc(50% - 350px);
  height: 4px;
  background: var(--dark-blue);
  z-index: 0;
}
 
.top-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 180px;
  z-index: 1;
}
 
.top-flow__card {
  position: relative;
  width: 180px;
  height: 180px;
  border: 2px solid var(--dark-blue);
  border-radius: 16px;
  border-top-left-radius: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
 
/* 番号タブ（左上の三角バッジ） */
.top-flow__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  background: var(--dark-blue);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
 
.top-flow__num span {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  margin: 6px 0 0 8px;
}
 
.top-flow__icon {
  width: 100%;
  height: auto;
  object-fit: contain;
}
 
.top-flow__label {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--black);
  margin: 1rem 0 0;
  white-space: nowrap;
}
 
/* 詳しい流れはこちらボタン */
.top-flow__btn-area {
  display: flex;
  justify-content: center;
}
 
.navy__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  width: 100%;
  padding: 12px 32px;
  border: 2px solid var(--navy);
  border-radius: 100vh;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  background: var(--white);
  transition: background 0.3s ease, color 0.3s ease;
}

.navy__btn:hover {
  background: var(--navy);
  color: var(--white);
}
 
/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .top-flow__heading-balloon {
    font-size: 16px;
    padding: 14px 28px;
  }
 
  .top-flow__lead {
    font-size: 15px;
    margin-bottom: 36px;
  }
 
  /* カードを縦一列・中央揃えに */
  .top-flow__steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
 
  /* 横線は使わないため非表示 */
  .top-flow__steps::before {
    display: none;
  }
 
  .top-flow__step {
    width: 180px;
  }
 
  /* 各カードの中心から次のカードの中心まで届く縦線セグメント */
  .top-flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% + 40px);
    background: var(--dark-blue);
    z-index: -1;
  }

  .top-flow__label {
    background: var(--white);
  }
 
  .navy__btn {
    padding: 14px 24px;
    min-width: 220px;
    font-size: 13px;
  }
}


/* ============================== */
/* top-price-compare */
/* ============================== */
.top-price-compare {
  text-align: center;
  padding: 80px 0;
}

.top-price-compare__heading {
  margin-bottom: 10px;
}

.top-price-compare__title {
  font-weight: 500;
  font-size: 4rem;
  letter-spacing: 0.06em;
  color: var(--black);
  margin: 0 0 20px;
}

.top-price-compare__title-accent {
  color: var(--dark-blue);
  font-size: 4.6rem;
}

.top-price-compare__frame {
  background: url('../images/bg_lightblue.png');
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  border-radius: 20px;
  padding: 40px;
}

.top-price-compare__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.top-price-compare__card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 24px;
}

.top-price-compare__label {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--black);
  margin: 0 auto 16px;
  padding-bottom: 16px;
  border-bottom: 2px dotted var(--dot-blue);
  max-width: 300px;
  width: 100%;
}

.top-price-compare__label-accent {
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 1.8rem;
}

.top-price-compare__price {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--black);
  margin: 0;
}

.top-price-compare__price .price {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.02em;
}

.top-price-compare__price .tax {
  margin-left: -10px;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .top-price-compare {
    padding: 40px 0;
  }

  .top-price-compare__title {
    font-size: 2.4rem;
  }

  .top-price-compare__frame {
    padding: 16px;
    border-radius: 16px;
  }

  .top-price-compare__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .top-price-compare__card {
    padding: 24px 16px;
  }

  .top-price-compare__label {
    font-size: 1.5rem;
  }

  .top-price-compare__title-accent {
    font-size: 3.2rem;
  }

  .top-price-compare__price {
    font-size: 1.5rem;
  }

  .top-price-compare__price .price {
    font-size: 2.6rem;
  }
}


/* ============================== */
/* top-risk-zero */
/* ============================== */
.top-risk-zero {
  text-align: center;
  padding: 80px 0;
}

.top-risk-zero .container {
  max-width: 1020px;
}

.top-risk-zero__heading {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

/* 吹き出し*/
.top-risk-zero__balloon.balloon {
  position: relative;
  z-index: 0;
  padding: 6px 20px;
  background-color: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0;
  border-radius: 10px;
}

/* 色付きの半円*/
.top-risk-zero__balloon.balloon::before {
  content: '';
  position: absolute;
  z-index: -1;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(-135deg);
  left: auto;
  right: 10px;
  top: auto;
  bottom: -10px;
  border-right: 20px solid var(--navy);
  border-top: 20px solid var(--navy);
  border-left: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

/* 白い半円（右下向き） */
.top-risk-zero__balloon.balloon::after {
  content: '';
  position: absolute;
  z-index: -1;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(-225deg);
  left: auto;
  right: -5px;
  top: auto;
  bottom: -20px;
  border-right: 20px solid var(--white);
  border-top: 20px solid var(--white);
  border-left: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.top-risk-zero__sub {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--dark-blue);
  margin: 0;
  border-bottom: 2px dotted var(--dot-blue);
}

.top-risk-zero__title {
  font-weight: 500;
  font-size: 4rem;
  color: var(--black);
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}

.top-risk-zero__title .large {
  color: var(--dark-blue);
  font-size: 4.8rem;
  letter-spacing: 0.04em;
}

.top-risk-zero__title .large:last-of-type {
  margin-left: -20px;
}

.top-risk-zero__band {
  background: url('../images/bg_lightblue.png');
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  border-radius: 10px;
  font-weight: 500;
  font-size: 3.2rem;
  color: var(--navy);
  padding: 10px 20px;
  margin: 0 0 40px;
}

.top-risk-zero__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 0 auto 48px;
}

.top-risk-zero__card {
  background: url('../images/bg_lightblue.png');
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  border: 2px solid var(--dark-blue);
  border-radius: 16px;
  padding: 40px 24px;
}

.top-risk-zero__icon {
  margin: 0 0 16px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.top-risk-zero__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-risk-zero__card-title {
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--navy);
  margin: 0 0 8px;
}

.top-risk-zero__card-text {
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--black);
  margin: 0;
}

.top-risk-zero__lead {
  margin: 0;
}

.top-risk-zero__lead p {
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--black);
  line-height: 1.8;
  margin: 0;
}

.top-risk-zero__lead .mark {
  background: linear-gradient(transparent 70%, var(--orange) 70%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .top-risk-zero {
    padding: 60px 0;
  }

  .top-risk-zero__heading {
    flex-direction: column;
    gap: 12px;
  }

  .top-risk-zero__balloon.balloon {
    font-size: 1.4rem;
    padding: 10px 16px;
  }

  .top-risk-zero__sub {
    font-size: 1.4rem;
    padding-left: 0;
    border-left: none;
  }

  .top-risk-zero__title {
    font-size: 4rem;
    margin-bottom: 24px;
  }

  .top-risk-zero__title .large:last-of-type {
    margin-left: -20px;
  }

  .top-risk-zero__band {
    font-size: 1.6rem;
    padding: 14px;
    margin-bottom: 32px;
  }

  .top-risk-zero__list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .top-risk-zero__card {
    padding: 32px 20px;
  }

  .top-risk-zero__card-title {
    font-size: 1.8rem;
  }

  .top-risk-zero__card-text {
    font-size: 1.4rem;
  }

  .top-risk-zero__lead p {
    font-size: 1.8rem;
  }
}


/* ============================== */
/* top-report */
/* ============================== */

.top-report {
  padding: 80px 0;
}
 
.top-report__frame {
  position: relative;
  background-image: url('../images/bg_lightblue.png');
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  border-radius: 20px;
  padding: 48px 60px;
  overflow: visible;
  margin-bottom: 40px;
  z-index: 0;
}
 
/* 右下の人物画像（フレームより前面のレイヤーに配置） */
.top-report__person {
  position: absolute;
  right: 40px;
  bottom: 0;
  margin: 0;
  width: 220px;
  height: 220px;
  background-image: url('../images/icon/report/report_bg.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  z-index: 10;
  pointer-events: none;
}
 
.top-report__inner {
  position: relative;
  z-index: 1;
}
 
.top-report__title {
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--dark-blue);
  letter-spacing: 0.04em;
  max-width: 650px;
  margin: 0 auto 30px;
  padding-bottom: 12px;
  border-bottom: 2px dotted var(--dot-blue);
  text-align: center;
}
 
.top-report__list {
  list-style: none;
  max-width: 780px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
.top-report__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
 
.top-report__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-top: 2px;
}
 
.top-report__text {
  font-size: 1.8rem;
  color: var(--black);
  margin: 0;
  line-height: 1.6;
}
 
.top-report__text strong {
  color: var(--navy);
  font-weight: 700;
}
 
.top-report__lead {
  text-align: center;
}
 
.top-report__lead p {
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--black);
  line-height: 1.8;
  margin: 0;
}
 
.top-report__lead .mark {
  background: linear-gradient(transparent 70%, var(--orange) 70%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
 
/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .top-report {
    padding: 60px 0;
  }
 
  .top-report__frame {
    padding: 32px 24px 100px;
    border-radius: 16px;
    margin-bottom: 32px;
    background-size: cover;
  }
 
  .top-report__person {
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
    width: 100px;
    height: 100px;
  }
 
  .top-report__inner {
    max-width: 100%;
  }
 
  .top-report__title {
    font-size: 1.8rem;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
 
  .top-report__list {
    gap: 16px;
  }
 
  .top-report__text {
    font-size: 1.4rem;
  }
 
  .top-report__lead p {
    font-size: 1.6rem;
  }
}
 


/* ============================== */
/* top-advisory-price */
/* ============================== */
.top-advisory-price {
  text-align: center;
  padding: 80px 0 0;
}

.top-advisory-price__heading {
  margin-bottom: 10px;
}
.heading__wrapper.top-advisory-price__heading {
  display: block;
}

.top-advisory-price__title {
  font-weight: 700;
  font-size: 3.2rem;
  color: var(--dark-blue);
  letter-spacing: 0.06em;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 2px dotted var(--dot-blue);
  display: inline-block;
}

.top-advisory-price__price {
  font-weight: 500;
  font-size: 4rem;
  color: var(--black);
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.top-advisory-price__price .num {
  font-size: 6rem;
  color: var(--pink);
}

.top-advisory-price__price .mark {
  background: linear-gradient(transparent 70%, var(--orange) 70%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: var(--pink);
}

.top-advisory-price__catch {
  font-weight: 700;
  font-size: 4rem;
  color: var(--pink);
  letter-spacing: 0.04em;
  margin: 0 0 40px;
}

.top-advisory-price__note {
  position: relative;
  display: inline-block;
  padding: 0 60px;
}

.top-advisory-price__note::before,
.top-advisory-price__note::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 16px;
  border-top: 5px solid var(--dark-blue);
  border-bottom: 5px solid var(--dark-blue);
}

.top-advisory-price__note::before {
  left: 0;
  border-left: 5px solid var(--dark-blue);
}

.top-advisory-price__note::after {
  right: 0;
  border-right: 5px solid var(--dark-blue);
}

.top-advisory-price__note-title {
  margin: 0 0 16px;
}

.top-advisory-price__note-title .mark {
  font-weight: 700;
  font-size: 2rem;
  color: var(--black);
  background: linear-gradient(transparent 70%, var(--orange) 70%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.top-advisory-price__note-text {
  font-size: 1.2rem;
  color: var(--black);
  margin: 0;
  line-height: 1.8;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .top-advisory-price {
    padding: 60px 0 0;
  }

  .top-advisory-price__title {
    font-size: 2.2rem;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .top-advisory-price__price {
    font-size: 2.4rem;
  }

  .top-advisory-price__price .num {
    font-size: 3.6rem;
  }

  .top-advisory-price__catch {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .top-advisory-price__note {
    padding: 0 28px;
  }

  .top-advisory-price__note::before,
  .top-advisory-price__note::after {
    width: 10px;
  }

  .top-advisory-price__note-title .mark {
    font-size: 1.5rem;
  }

  .top-advisory-price__note-text {
    font-size: 1.2rem;
  }
}


/* ============================== */
/* top-subsidy */
/* ============================== */
.top-subsidy {
  padding: 0;
}

.top-subsidy__frame {
  background: url('../images/bg_blue.png');
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  border-radius: 50px;
  padding: 48px 60px;
  text-align: center;
}

.top-subsidy__lead {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--dark-blue);
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  padding-bottom: 5px;
  border-bottom: 2px dotted var(--dot-blue);
  display: inline-block;
}

.top-subsidy__title {
  font-weight: 500;
  font-size: 4.8rem;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin: 0 0 20px;
}

.top-subsidy__title-sub {
  color: var(--black);
}

.top-subsidy__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.top-subsidy__item {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.top-subsidy__icon {
  margin: 0 0 10px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.top-subsidy__label {
  font-weight: 700;
  font-size: 2rem;
  color: var(--dark-blue);
  letter-spacing: 0.02em;
  margin: 0;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .top-subsidy {
    padding: 0;
  }

  .top-subsidy__frame {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .top-subsidy__lead {
    font-size: 1.4rem;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .top-subsidy__title {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .top-subsidy__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .top-subsidy__item {
    padding: 28px 16px;
  }

  .top-subsidy__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }

  .top-subsidy__label {
    font-size: 1.6rem;
  }
}


/* ============================== */
/* top-message */
/* ============================== */
.top-message {
  background-color: var(--light-gray);
}

.top-message__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: stretch;
}

.top-message__content {
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 40px 80px max(20px, calc((100vw - 1200px) / 2 + 20px));
}

/* 左下の人物素材（背景として配置） */
.top-message__deco {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  width: 180px;
  z-index: 0;
  pointer-events: none;
}

.top-message__deco img {
  width: 100%;
  height: auto;
  display: block;
}

.top-message__body {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
}

.top-message__label {
  font-weight: 100;
  font-size: 1.4rem;
  color: var(--dark-blue);
  letter-spacing: 0.15em;
  margin: 0 0 16px;
}

.top-message__title {
  font-weight: 700;
  font-size: 3.2rem;
  color: var(--black);
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin: 0 0 32px;
}

.top-message__title-accent {
  margin-left: 2rem;
}

.top-message__text p {
  font-size: 1.6rem;
  color: var(--black);
  line-height: 2;
  margin: 0 0 32px;
}

.top-message__btn-area {
  display: flex;
}

.top-message__btn.navy__btn {
  background: transparent;
}

.top-message__btn.navy__btn:hover {
  background: var(--navy);
}

/* 右端：人物画像（右端まで余白なし） */
.top-message__photo {
  margin: 0;
  width: 100%;
  height: 400px;
}

.top-message__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-bottom-left-radius: 20px;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .top-message__inner {
    grid-template-columns: 1fr;
  }

  /* 表示順: 人物画像 → 説明文 */
  .top-message__photo {
    order: 1;
    min-height: 320px;
  }

  .top-message__content {
    order: 2;
    padding: 48px 20px 48px;
    padding-left: 20px;
  }

  .top-message__deco {
    width: 100px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }

  .top-message__body {
    max-width: 100%;
  }

  .top-message__label {
    font-size: 1.2rem;
  }

  .top-message__title {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }

  .top-message__text p {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }

  .top-message__photo img {
    border-bottom-left-radius: 0;
  }

  .top-message__btn-area {
    justify-content: center;
    margin-bottom: 100px;
  }
}


/* ============================== */
/* top-price-table */
/* ============================== */
.top-price-table {
  padding: 80px 0;
}

.top-price-table__block {
  margin-bottom: 80px;
}

.top-price-table__block:last-child {
  margin-bottom: 0;
}

.top-price-table__heading {
  text-align: center;
  display: block;
}

.top-price-table__scroll {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.top-price-table__table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
}

.top-price-table__table th,
.top-price-table__table td {
  border: 1px solid var(--dot-blue);
  padding: 16px 24px;
  font-size: 1.6rem;
  color: var(--black);
  text-align: right;
}

.top-price-table__table th:first-child,
.top-price-table__table td:first-child {
  text-align: left;
}

.top-price-table__table thead th {
  font-weight: 400;
  background: var(--light-gray);
  text-align: center;
}

.top-price-table__table thead th:first-child {
  background: #fff;
}

.top-price-table__table thead th.is-highlight {
  background: var(--dark-blue);
  color: var(--white);
  font-weight: 700;
}

.top-price-table__table td.is-highlight {
  background: url('../images/bg_lightblue.png');
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  color: var(--navy);
  font-size: 1.8rem!important;
}

.top-price-table__table td.is-pink,
.top-price-table__table td.is-highlight.is-pink {
  color: var(--pink);
}

.top-price-table__total-amount {
  font-size: 2.2rem;
}

/* 横スクロールアイコン（SP時のみ表示） */
.top-price-table__scroll-icon {
  display: none;
}

.top-price-table__note {
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.8;
  margin: 10px auto 0;
  max-width: 900px;
}

.top-price-table__note--black {
  color: var(--black);
  font-weight: 400;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .top-price-table {
    padding: 60px 0;
  }

  .top-price-table__block {
    margin-bottom: 56px;
  }

  .top-price-table__scroll {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  /* テーブルは縮小せず元サイズのまま横スクロール */
  .top-price-table__table {
    width: auto;
    min-width: 600px;
    margin: 0;
  }

  .top-price-table__table th,
  .top-price-table__table td {
    font-size: 1.6rem;
    padding: 12px 16px;
    white-space: nowrap;
  }

  .top-price-table__total-amount {
    font-size: 1.8rem;
  }

  /* 横スクロール可能を示す矢印アイコン（テーブル右側・縦中央） */
  .top-price-table__scroll-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    color: var(--dark-blue);
    background: var(--white);
    border: 1px solid var(--dot-blue);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.4;
    transition: opacity 0.2s ease;
  }

  .top-price-table__scroll-icon.is-hidden {
    opacity: 0;
  }

  .top-price-table__note {
    font-size: 1.2rem;
  }
}


/* ============================== */
/* top-achievement */
/* ============================== */
.top-achievement {
  padding: 0;
}

/* .top-subsidy__frame と同様の構造 */
.top-achievement__frame {
  position: relative;
  background-image: url('../images/bg_blue.png');
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  border-radius: 50px;
  padding: 60px 60px 70px;
  text-align: center;
  overflow: hidden;
}

/* 左上・右下の装飾素材（.top-achievement__card の背面に表示） */
.top-achievement__deco {
  position: absolute;
  margin: 0;
  pointer-events: none;
  z-index: 1;
}

.top-achievement__deco img {
  width: 100%;
  height: auto;
  display: block;
}

.top-achievement__deco--top-left {
  top: 0;
  left: 0;
  width: 400px;
}

.top-achievement__deco--bottom-right {
  bottom: 0;
  right: 0;
  width: 180px;
}

.top-achievement__title {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 4.8rem;
  color: var(--black);
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin: 0 0 40px;
}

.top-achievement__title-accent {
  color: var(--dark-blue);
}

.top-achievement__card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 24px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 60px;
  text-align: left;
}

.top-achievement__lead {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--black);
  text-align: center;
  margin: 0 0 32px;
}

.top-achievement__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}

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

.top-achievement__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 2px dotted var(--dot-blue);
}

.top-achievement__item--last {
  border-bottom: none;
}

.top-achievement__name {
  font-size: 1.6rem;
  color: var(--black);
}

.top-achievement__amount {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--navy);
  white-space: nowrap;
}

.top-achievement__unit {
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--black);
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .top-achievement {
    padding: 0;
  }

  .top-achievement__frame {
    padding: 40px 20px 48px;
    border-radius: 20px;
  }

  .top-achievement__deco--top-left {
    /* width: 100px; */
    display: none;
  }

  .top-achievement__deco--bottom-right {
    /* width: 90px; */
    display: none;
  }

  .top-achievement__title {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }

  .top-achievement__card {
    border-radius: 16px;
    padding: 28px 20px;
  }

  .top-achievement__lead {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .top-achievement__list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .top-achievement__item {
    padding: 12px 0;
  }

  .top-achievement__name {
    font-size: 1.4rem;
  }

  .top-achievement__amount {
    font-size: 1.5rem;
  }

  /* 1つ目のcolの最後のliにドット線を追加 */
  .top-achievement__col:first-child .top-achievement__item--last {
    border-bottom: 2px dotted var(--dot-blue);
  }

  /* 折りたたみ時: 1つ目col の6番目以降と2つ目col全体を非表示（5番目は透過表示） */
  .top-achievement__list-wrap.is-collapsed .top-achievement__col:first-child .top-achievement__item:nth-child(n+6),
  .top-achievement__list-wrap.is-collapsed .top-achievement__col:last-child {
    display: none;
  }

  /* ラッパーを基準にグラデーションを重ねる */
  .top-achievement__list-wrap {
    position: relative;
  }

  .top-achievement__list-wrap.is-collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--white));
    pointer-events: none;
  }

  /* もっと見るボタン */
  .top-achievement__more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }

  .top-achievement__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    border: none;
    background: transparent;
    color: var(--navy);
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .top-achievement__more::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    text-decoration: none;
  }
}


/* ************************************ */



/* page */



/* ************************************ */
/* ============================== */
/* page cv section */
/* ============================== */
.page .cv-contact {
  background: url('../images/bg_blue.png');
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: -50px;
}
.page .cv-contact__inner {
  padding-bottom: 100px;
}
/* ============================== */
/* page-menu */
/* ============================== */
.page-menu {
  position: relative;
  padding: 60px 0 30px;
}

.page-menu__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-menu__item {
  display: block;
}

.page-menu__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 16px;
  background: var(--white);
  border: 3px solid var(--dark-blue);
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  height: 100%;
  box-sizing: border-box;
  transition: background 0.3s ease, color 0.3s ease;
}

.page-menu__link:hover {
  opacity: 0.8;
}

.page-menu__icon {
  margin: 0;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-menu__label {
  font-family: var(--font-family-noto-sans);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--black);
  margin: 0;
  line-height: 1.4;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .page-menu {
    padding: 40px 0 20px;
  }

  .page-menu__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .page-menu__link {
    padding: 24px 12px;
    gap: 12px;
    border-radius: 12px;
  }

  .page-menu__icon {
    width: 70px;
    height: 70px;
  }

  .page-menu__label {
    font-size: 1.4rem;
  }
}


/* ============================== */
/* page-header */
/* ============================== */
.page-header {
  position: relative;
  width: 100%;
  background-image: url('../images/bg_lightblue.png');
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  overflow: hidden;
  padding-top: 70px;
}

.page-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 220px;
  padding-top: 60px;
}

.page-header__text {
  display: flex;
  flex-direction: column;
}

.page-header__title {
  font-weight: 400;
  font-size: 4rem;
  color: var(--black);
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin: 0;
}

.page-header__sub {
  font-weight: 200;
  font-size: 1.4rem;
  color: var(--dark-blue);
  letter-spacing: 0.2em;
  margin: 0;
}

.page-header__image {
  flex-shrink: 0;
  margin: 0;
  width: 280px;
  align-self: flex-end;
}

.page-header__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .page-header {
    padding-top: 40px;
  }

  .page-header__inner {
    min-height: 0;
    padding-top: 40px;
    gap: 16px;
  }

  .page-header__title {
    font-size: 2.4rem;
    letter-spacing: 0.04em;
  }

  .page-header__sub {
    font-size: 1.2rem;
  }

  .page-header__image {
    width: 120px;
  }
}


/* ============================== */
/* page-schedule */
/* ============================== */
.page-schedule__step {
  padding: 60px 0 0;
}

.page-schedule__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-schedule__item {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: stretch;
  border: 3px solid var(--dark-blue);
  border-radius: 10px;
  overflow: hidden;
}

.page-schedule__label {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-blue);
  color: var(--white);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  padding: 24px 16px;
}

.page-schedule__label .num {
  font-size: 2rem;
  margin-left: 2px;
}

.page-schedule__text {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  background: var(--white);
  color: var(--black);
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  margin: 0;
  padding: 24px 40px;
}

.page-schedule__text .sm {
  font-size: 1.4rem;
}

.page-schedule__accent {
  color: var(--dark-blue);
  font-weight: 700;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .page-schedule__step {
    padding: 40px 0 0;
  }

  .page-schedule__list {
    gap: 16px;
  }

  .page-schedule__item {
    grid-template-columns: 1fr;
  }

  .page-schedule__label {
    font-size: 1.4rem;
    align-items: baseline;
    justify-content: flex-start;
    padding: 8px 20px;
  }

  .page-schedule__label .num {
    font-size: 1.6rem;
  }

  .page-schedule__text {
    font-size: 1.4rem;
    padding: 16px 20px;
  }
}


/* ============================== */
/* page-faq */
/* ============================== */
.page-faq__section {
  padding: 60px 0 0;
}

.page-faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-faq-item {
  display: flex;
  flex-direction: column;
}

.page-faq-question {
  position: relative;
  background: var(--dark-blue);
  color: var(--white);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.04em;
  border-radius: 10px;
  padding: 10px 20px;
  margin: 0 0 30px;
}

/* 質問バー下の小さな三角（吹き出しの先端） */
.page-faq-question::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 60px;
  border-style: solid;
  border-width: 14px 7px 0 7px;
  border-color: var(--dark-blue) transparent transparent;
  translate: 0 100%;
}

.page-faq-answer {
  font-size: 1.4rem;
  color: var(--black);
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

.page-faq-answer p {
  margin: 0 0 1.4rem;
  line-height: 1.8;
}

.page-faq-answer__list {
  list-style-type: disc;
  padding-left: 2rem;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .page-faq__section {
    padding: 40px 0 0;
  }

  .page-faq-list {
    gap: 16px;
  }

  .page-faq-question {
    font-size: 1.5rem;
  }

  .page-faq-question::after {
    left: 24px;
    border-width: 11px 6px 0 6px;
  }

  .page-faq-answer {
    font-size: 1.3rem;
    padding: 0;
  }
}


/* ============================== */
/* page-finance__lead */
/* ============================== */
.page-finance__lead {
  padding: 100px 0 0;
}

.page-finance__lead-banner {
  position: relative;
  background: var(--dark-blue);
  border-radius: 24px;
  padding: 56px 80px;
  margin-bottom: 48px;
  overflow: visible;
  display: flex;
  align-items: center;
  z-index: 0;
}

.page-finance__lead-banner-text {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
}

.page-finance__lead-title {
  font-weight: 700;
  font-size: 3.6rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin: 0 0 5px;
}

.page-finance__lead-subtitle {
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin: 0;
}

/* 右端の人物画像（バナーより前面のレイヤーに配置） */
.page-finance__lead-banner-image {
  position: absolute;
  right: 40px;
  bottom: -25px;
  margin: 0;
  width: 220px;
  z-index: 10;
  pointer-events: none;
}

.page-finance__lead-banner-image img {
  width: 100%;
  height: auto;
  display: block;
}

.page-finance__lead-text p {
  font-size: 1.6rem;
  color: var(--black);
  line-height: 2;
  margin: 0 0 32px;
}

.page-finance__lead-text p:last-child {
  margin-bottom: 0;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .page-finance__lead {
    padding: 40px 0 0;
  }

  .page-finance__lead-banner {
    border-radius: 16px;
    padding: 32px 24px 100px;
    margin-bottom: 32px;
    flex-direction: column;
    align-items: stretch;
  }

  .page-finance__lead-title {
    font-size: 2.2rem;
    margin-bottom: 8px;
  }

  .page-finance__lead-subtitle {
    font-size: 1.5rem;
  }

  .page-finance__lead-banner-image {
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
    width: 70px;
  }

  .page-finance__lead-text p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 24px;
  }
}


/* ============================== */
/* page-finance__flow */
/* ============================== */
.page-finance__flow {
  padding: 60px 0 30px;
  text-align: center;
}

.page-finance__flow-heading {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.page-finance__flow-heading .heading-balloon {
  max-width: 100%;
  background: var(--light-blue);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.4;
}

.page-finance__flow-heading .heading-balloon::after {
  border-color: var(--light-blue) transparent transparent transparent;
}

.page-finance__flow-title {
  font-weight: 400;
  font-size: 6rem;
  color: var(--navy);
  letter-spacing: 0.06em;
  margin: 0 0 30px;
  text-align: center;
}

.page-finance__flow-title-accent {
  color: var(--black);
  font-size: 5rem;
}

/* このセクション内の page-schedule__item は内容量が可変のため上揃えにする */
.page-finance__flow .page-schedule__item {
  align-items: stretch;
}

.page-finance__flow .page-schedule__label {
  align-items: center;
}

.page-finance__flow .page-schedule__text {
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

/* ステップ内テキスト（page-schedule__text の中身） */
.page-finance__flow-step-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--black);
  margin: 0;
  width: 100%;
  text-align: left;
}

.page-finance__flow-step-list {
  list-style: none;
  counter-reset: flow-step;
  margin: 12px 0 0;
  padding: 0;
  width: 100%;
  text-align: left;
}

.page-finance__flow-step-list li {
  counter-increment: flow-step;
  position: relative;
  font-size: 1.5rem;
  color: var(--black);
  line-height: 1.8;
  padding-left: 1.8em;
  margin-bottom: 4px;
}

.page-finance__flow-step-list li:last-child {
  margin-bottom: 0;
}

.page-finance__flow-step-list li::before {
  content: counter(flow-step);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--black);
  font-weight: 700;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .page-finance__flow {
    padding: 40px 0 0;
  }

  .page-finance__flow-title {
    font-size: 3.6rem;
    margin-bottom: 24px;
  }

  .page-finance__flow-title-accent {
    font-size: 3rem;
  }

  .page-finance__flow-step-title {
    font-size: 1.5rem;
  }

  .page-finance__flow-step-list li {
    font-size: 1.3rem;
  }

  .page-finance__flow .page-schedule__text {
    align-items: flex-start;
  }
}



/* ============================== */
/* page-company_overview */
/* ============================== */
.page-company_overview {
  padding: 60px 0;
}

.page-company_overview__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: start;
  gap: 100px;
}

.page-company_overview__title {
  font-weight: 400;
  font-size: 4rem;
  color: var(--dark-blue);
  letter-spacing: 0.06em;
  margin: 0;
}

.page-company_overview__list {
  margin: 0;
}

.page-company_overview__item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 2px dotted var(--dot-blue);
}

.page-company_overview__label {
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--black);
  margin: 0;
}

.page-company_overview__value {
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--black);
  margin: 0;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .page-company_overview {
    padding: 40px 0;
  }

  /* タイトルを上、概要をその下に配置 */
  .page-company_overview__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-company_overview__title {
    font-size: 2.6rem;
    text-align: center;
  }

  .page-company_overview__item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  .page-company_overview__label {
    font-size: 1.3rem;
  }

  .page-company_overview__value {
    font-size: 1.4rem;
  }
}


/* ============================== */
/* page-company__profile */
/* ============================== */
.page-company__profile {
  position: relative;
  background-color: var(--light-gray);
}

/* 左下の人物素材（セクション左下端に表示） */
.page-company__profile::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
  height: 280px;
  background-image: url('../images/company/company_img.png');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

.page-company__profile-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-company__profile-content {
  position: relative;
  display: flex;
  align-items: center;
}

.page-company__profile-body {
  position: relative;
  z-index: 1;
  max-width: 760px;
  width: 100%;
}

.page-company__profile-label {
  font-weight: 200;
  font-size: 1.4rem;
  color: var(--dark-blue);
  letter-spacing: 0.2em;
  margin: 0 0 16px;
}

.page-company__profile-title {
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--black);
  letter-spacing: 0.06em;
  margin: 0 0 32px;
}

.page-company__profile-text p {
  font-size: 1.6rem;
  color: var(--black);
  line-height: 2;
  margin: 0 0 24px;
}

.page-company__profile-text p:last-child {
  margin-bottom: 0;
}

.page-company__profile-history {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.page-company__profile-history-item {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 16px 0;
  border-bottom: 2px dotted var(--dot-blue);
}

.page-company__profile-history-year {
  flex-shrink: 0;
  width: 80px;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--black);
}

.page-company__profile-history-text {
  font-size: 1.6rem;
  color: var(--black);
}

.page-company__profile-photo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
}

.page-company__profile-photo img {
  width: 100%;
  max-width: 450px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .page-company__profile-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  /* 表示順: 写真 → テキスト */
  .page-company__profile-photo {
    order: 1;
    padding: 24px 20px 0;
    justify-content: center;
  }

  .page-company__profile-content {
    order: 2;
    padding: 40px 20px 100px;
  }

  .page-company__profile::after {
    width: 100px;
    height: 156px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }

  .page-company__profile-body {
    max-width: 100%;
  }

  .page-company__profile-label {
    font-size: 1.2rem;
  }

  .page-company__profile-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .page-company__profile-text p {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .page-company__profile-history {
    margin-top: 40px;
  }

  .page-company__profile-history-item {
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
  }

  .page-company__profile-history-year {
    width: auto;
    font-size: 1.4rem;
  }

  .page-company__profile-history-text {
    font-size: 1.3rem;
  }
}


/* ============================== */
/* page-company__access */
/* ============================== */
.page-company__access {
  padding: 80px 0;
}

.page-company__access-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.page-company__access-heading {
  margin: 0;
  flex: 0 0 30%;
}

.page-company__access-title {
  font-weight: 400;
  font-size: 4rem;
  color: var(--dark-blue);
  letter-spacing: 0.06em;
  margin: 0;
}

.page-company__access-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 0 0 70%;
}

/* 地図 */
.page-company__access-map-wrap {
  position: relative;
  width: 100%;
  height: 450px;
  background-color: var(--light-blue);
  overflow: hidden;
}

.page-company__access-map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.page-company__access-map-iframe.is-loaded {
  opacity: 1;
}

.page-company__access-map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-blue);
  pointer-events: none;
}

.page-company__access-map-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--dark-blue);
}

.page-company__access-map-placeholder-inner p {
  font-size: 1.4rem;
  color: var(--dark-blue);
  margin: 0;
}

.page-company__access-name {
  font-weight: 700;
  font-size: 2rem;
  color: var(--black);
  margin: 0 0 16px;
}

.page-company__access-text {
  font-size: 1.6rem;
  color: var(--black);
  line-height: 1.8;
  margin: 0 0 16px;
}

.page-company__access-text:last-of-type {
  margin-bottom: 24px;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .page-company__access {
    padding: 60px 0;
  }

  /* 表示順: 見出し → 地図 → 住所情報 → ボタン */
  .page-company__access-inner {
    flex-direction: column;
    gap: 24px;
  }

  .page-company__access-heading {
    flex: 0 0 auto;
    width: 100%;
  }

  .page-company__access-title {
    font-size: 2.4rem;
    text-align: center;
  }

  .page-company__access-content {
    gap: 24px;
    flex: 0 0 auto;
    width: 100%;
  }

  .page-company__access-map-wrap {
    max-width: 100%;
    height: 300px;
  }

  .page-company__access-address {
    max-width: 100%;
    text-align: center;
  }

  .page-company__access-name {
    font-size: 1.8rem;
  }

  .page-company__access-text {
    font-size: 1.3rem;
  }

  .page-company__access-address .tel--link {
    max-width: 100%;
    margin: 0 auto;
  }
}



/* ============================== */
/* page-flow__step */
/* ============================== */
.page-flow__step {
  padding: 80px 0 40px;
  text-align: center;
}

.page-flow__step-heading {
  margin-bottom: 48px;
}

.page-flow__step-title {
  display: inline-block;
  font-weight: 700;
  font-size: 4rem;
  color: var(--dark-blue);
  letter-spacing: 0.06em;
  margin: 0 0 12px;
  padding-bottom: 5px;
  border-bottom: 2px dotted var(--dot-blue);
}

.page-flow__step-note {
  font-size: 1.4rem;
  color: var(--black);
  margin: 0;
}

.page-flow__step-scroll {
  position: relative;
}

.page-flow__step-inner {
  width: 100%;
}

/* 見出し行：お客様 / 事務所 */
.page-flow__step-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 16px;
}

.page-flow__step-column-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-flow__step-person {
  margin: 0;
  width: 120px;
  z-index: 1;
  position: relative;
}

.page-flow__step-person img {
  width: 100%;
  height: auto;
  display: block;
}

.page-flow__step-column-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  border-radius: 10px;
  color: var(--white);
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.06em;
}

.page-flow__step-column-header--customer .page-flow__step-column-label {
  background: #c97d05;
}

.page-flow__step-column-header--office .page-flow__step-column-label {
  background: var(--dark-blue);
}

/* STEPリスト：2カラムグリッド */
.page-flow__step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.page-flow__step-item {
  position: relative;
  border-radius: 8px;
  padding: 24px 32px;
  text-align: left;
}

.page-flow__step-item--full {
  grid-column: 1 / -1;
}

.page-flow__step-item--half {
  grid-column: span 1;
}

.page-flow__step-item--orange {
  background-color: #f4f1ea;
}

.page-flow__step-item--blue {
  background-color: var(--light-blue);
}

.page-flow__step-item--gray {
  background-color: #f2ebee;
}

.page-flow__step-num {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
  gap: 4px;
  margin: 0;
  color: #c97d05;
}

.page-flow__step-num--pink {
  color: var(--pink);
}

.page-flow__step-num--darkblue {
  color: var(--dark-blue);
}

.page-flow__step-num-label {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.page-flow__step-num-value {
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.02em;
}

.page-flow__step-item-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--black);
  margin: 0;
}

.page-flow__step-item-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 0 0 12px;
}

.page-flow__step-item-text {
  font-size: 1.6rem;
  color: var(--black);
  line-height: 1.8;
  margin: 0;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .page-flow__step {
    padding: 60px 0 30px;
  }

  .page-flow__step-heading {
    margin-bottom: 32px;
  }

  .page-flow__step-title {
    font-size: 2.4rem;
    margin-bottom: 8px;
    padding-bottom: 12px;
  }

  .page-flow__step-note {
    font-size: 1.2rem;
  }

  .page-flow__step-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .page-flow__step-inner {
    width: 700px;
    min-width: 700px;
  }

  .page-flow__step-person {
    width: 80px;
  }

  .page-flow__step-column-label {
    height: 44px;
    font-size: 1.4rem;
  }

  .page-flow__step-item {
    padding: 20px 24px;
  }

  .page-flow__step-item-head {
    gap: 8px;
    margin-bottom: 8px;
  }

  .page-flow__step-item-title {
    font-size: 1.5rem;
  }

  .page-flow__step-item-text {
    font-size: 1.3rem;
  }
}


/* ============================== */
/* page-difference_banner */
/* ============================== */
.page-difference_banner {
  padding: 80px 0 0;
}

.page-difference_banner__inner {
  position: relative;
  background: var(--dark-blue);
  border-radius: 24px;
  padding: 48px 80px;
  text-align: center;
}

/* テキスト */
.page-difference_banner__text {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-difference_banner__lead {
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}

.page-difference_banner__main {
  font-weight: 700;
  font-size: 3.6rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 0 0 16px;
}

.page-difference_banner__person {
  position: absolute;
  bottom: 0;
  margin: 0;
  width: 140px;
  transform: translateY(10%);
  z-index: 2;
  pointer-events: none;
}

.page-difference_banner__person img {
  width: 100%;
  height: auto;
  display: block;
}

.page-difference_banner__person--left {
  left: 20px;
}

.page-difference_banner__person--right {
  right: 10px;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .page-difference_banner {
    padding: 40px 0;
  }

  .page-difference_banner__inner {
    border-radius: 16px;
    padding: 30px 20px;
  }

  .page-difference_banner__lead {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .page-difference_banner__main {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .page-difference_banner__person {
    width: 70px;
    transform: translateY(40%);
  }

  .page-difference_banner__person--left {
    left: 15px;
  }

  .page-difference_banner__person--right {
    right: 4px;
  }
}


/* ============================== */
/* page-difference__choose */
/* ============================== */
.page-difference__choose {
  padding: 80px 0 0;
  text-align: center;
}

.page-difference__choose-lead {
  display: inline-block;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--dark-blue);
  letter-spacing: 0.04em;
  margin: 0 0 32px;
  padding-bottom: 12px;
  border-bottom: 2px dotted var(--dot-blue);
}

.page-difference__choose-title {
  font-weight: 700;
  font-size: 3.2rem;
  color: var(--black);
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin: 0;
}

.page-difference__choose-accent {
  color: var(--dark-blue);
  font-size: 4rem;
}

.page-difference__choose-mark {
  background: linear-gradient(transparent 70%, var(--orange) 70%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .page-difference__choose {
    padding: 40px 0 0;
  }

  .page-difference__choose-lead {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 8px;
  }

  .page-difference__choose-title {
    font-size: 2rem;
    line-height: 1.6;
  }

  .page-difference__choose-accent {
    font-size: 2.4rem;
  }
}


/* ============================== */
/* page-difference__reason */
/* ============================== */
.page-difference__reason {
  padding: 60px 0 30px;
}

.page-difference__reason-heading {
  position: relative;
  text-align: center;
  margin-bottom: 24px;
}

.page-difference__reason-heading .heading-balloon {
  margin-bottom: 16px;
  background: var(--light-blue);
  color: var(--navy);
  font-weight: 700;
}

.page-difference__reason-heading .heading-balloon::after {
  border-color: var(--light-blue) transparent transparent transparent;
}

.page-difference__reason-title {
  font-weight: 400;
  font-size: 4.8rem;
  color: var(--black);
  letter-spacing: 0.04em;
  margin: 0;
}

.page-difference__reason-title-accent {
  color: var(--navy);
  font-size: 4.8rem;
  letter-spacing: 0;
  margin-left: -15px;
}

/* カードリスト：PC時 3カラム、4枚目以降は中央寄せ */
.page-difference__reason-list {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}

.page-difference__reason-item {
  grid-column: span 2;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--dark-blue);
}

/* 4枚目・5枚目は2段目で中央寄せにするためオフセット */
.page-difference__reason-item:nth-child(4) {
  grid-column: 2 / span 2;
}

.page-difference__reason-item:nth-child(5) {
  grid-column: 4 / span 2;
}

.page-difference__reason-item-head {
  background: var(--dark-blue);
  padding: 16px;
  text-align: center;
}

.page-difference__reason-item-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin: 0;
}

.page-difference__reason-item-body {
  background: var(--white);
  padding: 0 10px 24px;
  text-align: center;
}

.page-difference__reason-item-icon {
  margin: 0 auto;
  width: 200px;
  height: 180px;
}

.page-difference__reason-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.page-difference__reason-item-text {
  font-size: 1.6rem;
  color: var(--black);
  line-height: 1.7;
  margin: 0;
}

/* フッター */
.page-difference__reason-footer {
  text-align: center;
}

.page-difference__reason-footer-title {
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--black);
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

.page-difference__reason-footer-text {
  font-size: 1.6rem;
  color: var(--black);
  margin: 0;
}

/* ============================== */
/* レスポンシブ: 768px以下 */
/* ============================== */
@media (max-width: 768px) {
  .page-difference__reason {
    padding: 40px 0 20px;
  }

  .page-difference__reason-heading {
    margin-bottom: 32px;
  }

  .page-difference__reason-heading .heading-balloon {
    margin-bottom: 20px;
  }

  .page-difference__reason-title {
    font-size: 3.2rem;
    line-height: 1.3;
  }

  .page-difference__reason-title-accent {
    font-size: 2.8rem;
  }

  /* 1カラムに変更 */
  .page-difference__reason-list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .page-difference__reason-item,
  .page-difference__reason-item:nth-child(4),
  .page-difference__reason-item:nth-child(5) {
    grid-column: 1 / -1;
  }

  .page-difference__reason-item-head {
    padding: 16px;
  }

  .page-difference__reason-item-title {
    font-size: 1.5rem;
  }

  .page-difference__reason-item-body {
    padding: 24px 20px;
  }

  .page-difference__reason-item-icon {
    width: 200px;
    height: 140px;
  }

  .page-difference__reason-item-text {
    font-size: 1.3rem;
  }

  .page-difference__reason-footer-title {
    font-size: 1.7rem;
  }

  .page-difference__reason-footer-text {
    font-size: 1.3rem;
  }
}


/* ============================== */
/* page-contact-cv */
/* ============================== */
.page-contact-cv {
  padding: 0 40px;
}

.page-contact-cv__inner {
  background: var(--white);
  border-radius: 20px;
  padding: 60px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.page-contact-cv__center {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: end;
  justify-content: space-between;
  column-gap: 60px;
}

.page-contact-cv__figure {
  margin: 0;
  grid-row: 1;
}

.page-contact-cv__figure--left {
  grid-column: 1;
}

.page-contact-cv__figure--right {
  grid-column: 3;
}

.page-contact-cv__figure img {
  display: block;
  width: 220px;
  height: auto;
}

.page-contact-cv__text {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  text-align: center;
}

/* 「即日対応可能！」吹き出し */
.page-contact-cv__balloon.balloon {
  display: inline-block;
  position: relative;
  z-index: 0;
  padding: 12px 20px;
  background-color: var(--dark-blue);
  color: var(--white);
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0 0 16px;
  border-radius: 10px;
  letter-spacing: 0.02em;
  text-align: center;
}

.page-contact-cv__balloon.balloon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 14px 6px 0 6px;
  border-color: var(--dark-blue) transparent transparent;
  translate: -50% 100%;
}

.page-contact-cv__title {
  font-weight: 400;
  font-size: 4.8rem;
  color: var(--black);
  margin: 0 0 1.2rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.page-contact-cv__subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

/* ヘッダー・フッターと同じ横幅 */
.page-contact-cv__card {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  margin: 0;
  padding: 28px 40px;
  background: url(../images/bg_blue.png);
  background-repeat: repeat;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.page-contact-cv__tel-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-contact-cv__tel-link {
  display: flex;
  align-items: end;
  gap: 8px;
  text-decoration: none;
  color: var(--dark-blue);
}

.page-contact-cv__tel-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.page-contact-cv__tel-num {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

.page-contact-cv__hours {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--black);
  margin: 0;
  text-align: center;
}

.page-contact-cv__btn {
  background: var(--navy);
  color: var(--white);
  font-size: 2.4rem;
  gap: 10px;
  max-width: 400px;
  width: 100%;
  padding: 10px 16px;
  flex-shrink: 0;
  margin: 0;
}

.page-contact-cv__btn-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

.page-contact-cv__btn:hover {
  background: var(--dark-blue);
  color: var(--white);
  transition: background 0.3s ease;
}

.page-contactform-wrap {
  background: url(../images/bg_blue.png);
  background-repeat: repeat;
  background-position: center;
  border-radius: 20px;
  padding: 20px 40px;
  margin: 60px 0 40px;
}

@media (max-width: 768px) {
  .page-contact-cv {
    padding: 0 20px;
  }

  .page-contact-cv__inner {
    padding: 40px 0 0;
  }

  .page-contact-cv__center {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .page-contact-cv__figure--left {
    display: none;
  }

  .page-contact-cv__figure--right {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .page-contact-cv__text {
    grid-column: 1;
    grid-row: 1;
    padding: 0 10px;
  }

  .page-contact-cv__figure img {
    width: 140px;
  }

  .page-contact-cv__title {
    font-size: 2.4rem;
  }

  .page-contact-cv__subtitle {
    font-size: 1.4rem;
  }

  .page-contact-cv__card {
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    text-align: center;
  }

  .page-contact-cv__tel-wrap {
    align-items: center;
  }

  .page-contact-cv__hours {
    padding-left: 0;
  }

  .page-contact-cv__tel-num {
    font-size: 3rem;
  }

  .page-contact-cv__btn {
    width: 100%;
    max-width: 300px;
    font-size: 1.6rem;
  }

  .page-contact-cv__tel-icon {
    width: 26px;
    height: 26px;
  }
}


/* ============================== */
/* スクロールアニメーション */
/* ============================== */
.js-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}



/*_________gaben________________*/

.nav_tel {
    border-radius: 0 0 10px 10px;
}
.top-report__person {
    width: 300px;
    height: 300px;
}
.page-contact-cv__card,
.page-contactform-wrap {
    background: url(../images/bg_lightblue.png);
}
.page-privacy {
	padding: 60px 0 0;
}
@media (max-width: 768px) {
.top-report__person {
    width: 100px;
    height: 100px;
}
.nav_tel {
    border-radius: 10px;
}
}







