@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  html {
    font-size: min(16 / 390 * 100vw, 20.5128205128px);
  }
}
/* @media (min-width: 768px) and (max-width: 1150px) {
  html {
    font-size: 1.3913043478vw;
  }
}
@media (min-width: 1151px) {
  html {
    font-size: 16px;
  }
} */

/* @media screen and (max-width: 767px) {
  html {
    font-size: min(17 / 390 * 100vw, 21.7948717949px);
  }
} */
@media (min-width: 768px) and (max-width: 1150px) {
  html {
    font-size: 1.4782608696vw;
  }
}
@media (min-width: 1151px) {
  html {
    font-size: 17px;
  }
}
@media screen and (min-width: 768px) {
    .c-top-wrap-zoom {
        zoom: 0.75; 
    }
}
body {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.7;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    /* font-size: 0.875rem; */
    font-size: 1rem;
  }
}

body.c-no-scroll {
  overflow: hidden;
  height: 100vh;
}

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

.c-mv__catch-sub-emphasis{
  position: relative;
  display: inline-block;
  font-weight: 800;
  letter-spacing: .02em;
  padding: .05em .15em;
font-size: min(3.5166666667vw, 56px);
/* font-size: min(2.9166666667vw, 56px); */
  /* ここから強調 */
  color: #ff7a00; 
  text-shadow:
    0 1px 0 rgba(255,255,255,0.75),  /* 上品な“立体感” */
    0 2px 8px rgba(0,0,0,0.18);      /* ほんのり影 */
  border-radius: .35em;

background: linear-gradient(
  120deg,
  rgba(255, 185, 100, 0.28) 0%,
  rgba(240, 240, 240, 0.18) 65%,
  rgba(230, 230, 230, 0.12) 100%
);
}
@media screen and (max-width: 767px) {
  .c-mv__catch-sub-emphasis{
    font-size: 2.25rem;
    margin-top:10px;
    /* font-size: 1.75rem; */
  }
}

.h1-kazoku{
  margin: 0;
}
.c-container {
  
  max-width: 68.75rem;
  /* max-width: 60.75rem; */
  margin-inline: auto;
}
.c-container {
  width: 100%;
  max-width: 1200px; /* サイト全体のコンテンツ最大幅 */
  margin-right: auto;
  margin-left: auto;
  /* padding-right: 20px;
  padding-left: 20px; */
  box-sizing: border-box; /* これが必須です */
}
/* @media screen and (max-width: 767px) { */
@media screen and (max-width: 910px) { 
.c-container {
    padding-inline: 1.25rem;
    max-width: 100%;
  }
}

.c-container-wide {
  max-width: 120rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-container-wide {
    max-width: 100%;
  }
}

.c-section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #333333;
  text-align: center;
}
.c-tokutyou-ex{
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 1.5rem;
  }
  .c-tokutyou-ex{
  font-size: 2.5rem;
}
}

.c-section-title__line {
  display: block;
  width: 3rem;
  height: 0.375rem;
  background-color: #ff9400;
  margin-top: 1.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-section-title__line {
    margin-top: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .c-pc-br {
    display: none;
  }
}

.c-sp-br {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-sp-br {
    display: block;
  }
}

@media (min-width: 768px) {
  .c-sp-br {
    display: none;
  }
}

.c-footer__main {
  /* background-color: #FFEBDD; */
  background-color: #f9f9f9;
  
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-footer__main {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

/* .c-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 7.5rem;
  align-items: center;
} */
.c-footer__inner {
  display: flex;
  justify-content: space-between;
  /* 固定の 7.5rem ではなく、画面に合わせて縮むように変更 */
  gap: clamp(1.5rem, 5vw, 7.5rem); 
  align-items: flex-start; /* centerより上揃えの方が崩れにくいです */
  width: 100%;
  max-width: 1200px; /* コンテンツの最大幅を指定 */
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .c-footer__inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.c-footer__logo {
  display: flex;
  align-items: end;
  gap: 1rem;
}

.c-footer__logo-img {
  width: 6.625rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-footer__logo-img {
    width: 3.75rem;
  }
}

.c-footer__logo-badge {
  display: inline-block;
  background-color: #ff9400;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 62.4375rem;
  padding-inline: 1.25rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-footer__logo-badge {
    font-size: 0.625rem;
  }
}

.c-footer__logo-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-footer__logo-name {
    font-size: 0.875rem;
  }
}

.c-footer__address {
  font-size: 1.125rem;
  color: #333333;
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
  margin-bottom: 0;
}
@media (min-width: 1151px) {
  .c-footer__address {
    white-space: normal; /* 安全のため normal か、幅に余裕がある時だけ nowrap に */
  }
}
/* @media (min-width: 1151px) {
  .c-footer__address {
    white-space: nowrap;
  }
} */
@media screen and (max-width: 767px) {
  .c-footer__address {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}

.c-footer__tel {
  font-family: "Lato", sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-footer__tel {
    font-size: 1.5rem;
    margin-top: 0;
  }
}

/* .c-footer__nav {
  display: flex;
  gap: 5rem;
  white-space: nowrap;
} */

.c-footer__nav {
  display: flex;
  /* ここも広すぎるので調整 */
  gap: clamp(1rem, 3vw, 5rem);
  /* 1150px以下では改行を許可するようにしないと、右に突き抜けます */
  @media screen and (max-width: 1150px) {
    white-space: normal; 
  }
}
@media screen and (max-width: 767px) {
  .c-footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.c-footer__nav-col {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-footer__nav-col {
    display: contents;
  }
}

.c-footer__nav-link {
  font-size: 1rem;
  color: #333333;
  letter-spacing: 0.04em;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-footer__nav-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-footer__nav-link {
    font-size: 0.875rem;
  }
}

.c-footer__nav-link--external::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.25rem;
  background: url("./img-kazoku/sections/footer/footer-nav-icon.svg") no-repeat center/contain;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-footer__nav-link--external::after {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.c-footer__bottom {
  /* background-color: #ff9400; */
  background-color: #1f1f1f;
  padding-block: 0.75rem;
  text-align: center;
}

.c-footer__copyright {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-footer__copyright {
    font-size: 0.75rem;
  }
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.3s ease; /* スムーズに動かす */
    z-index: 9999;
}


.c-header {
  
  background-color: rgba(255, 255, 255, 0.8);

  /* height: clamp(77px, 9.722vw + 2.33px, 189px);
  width:100%;
  
  z-index: 100; */

  
}


@media screen and (max-width: 767px) {
  .c-header {
    
    height: clamp(58px, 4.859vw + 39.78px, 77px);
  }
}
.c-header.c-is-menu-open {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 201;
}


/* スクロールで隠すここから */

/* PCのみ：隠すアニメーションを適用 */
@media screen and (min-width: 768px) {
    .c-header.is-hide {
        transform: translateY(-100%) !important;
    }
}

/* スマホ版：JSの干渉を物理的にシャットアウト */
@media screen and (max-width: 767px) {
    .c-header {
      
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        transform: translateY(0) !important; /* 絶対に場外へ行かせない */
        transition: none !important;
        z-index: 9999;
    }

    /* ハンバーガーメニュー本体の表示設定を確認 */
    .c-sp-menu {
        display: block; /* もし js で show/hide 制御しているならここは不要 */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 10000; /* ヘッダーより上に重ねる */
        /* メニューが開いていない時は visibility や opacity で制御されているか確認 */
    }
}

/* スクロールで隠すここまで */



.c-header__inner {

  display: flex;
  align-items: center;
  gap: min(1.25vw, 24px);
  padding-top: min(0.8333333333vw, 16px);
  padding-bottom: min(0.8333333333vw, 16px);
  padding-inline: min(2.0833333333vw, 40px);
  padding-top:0;
  padding-bottom:0;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  /* max-height:200px; */
}
@media screen and (max-width: 767px) {
  .c-header__inner {
    flex-direction: row;
    justify-content: space-between;
    min-height: 4rem;
    
    padding-inline: 1.25rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    gap: 0.75rem;
  
  }
}

.c-header__left-group {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .c-header__left-group {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
}

.c-header__top-row {
  display: flex;
  align-items: center;
  gap: min(4.6875vw, 90px);
}
@media screen and (max-width: 767px) {
  .c-header__top-row {
    gap: 0.5rem;
  }
}

.c-header__left {
  display: flex;
  align-items: center;
  gap: min(0.8333333333vw, 16px);
  flex-shrink: 0;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .c-header__left {
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
}

.c-header__logo {
  display: block;
  flex-shrink: 0;
}

.c-header__logo-img {
  width: min(5.2083333333vw, 100px);
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-header__logo-img {
    width: 2.75rem;
  }
}

.c-header__logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: min(1.0416666667vw, 20px);
}
@media screen and (max-width: 767px) {
  .c-header__logo-text {
    padding-top: 0.3125rem;
  }
}

.c-header__logo-badge {
  display: inline-block;
  width: min(22.1875vw, 426px);
  box-sizing: border-box;
  text-align: center;
  background-color: #ff9400;
  color: #ffffff;
  font-size: min(0.8333333333vw, 16px);
  font-weight: 700;
  line-height: 1.5;
  padding-inline: min(1.0416666667vw, 20px);
  border-radius: 62.4375rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-header__logo-badge {
    width: min(90%, 426px);
    /* width: min(220px, 426px); */
    font-size: 0.5rem;
    padding-inline: 0.375rem;
    line-height: 1.6;
    align-self: flex-start;
  }
}

.c-header__logo-name {
  font-size: min(1.0416666667vw, 20px);
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: min(0.2083333333vw, 4px);
}
.c-header__logo-name strong {
  font-size: min(1.6666666667vw, 32px);
}
@media screen and (max-width: 767px) {
  .c-header__logo-name {
    /* font-size: 0.625rem; */
    font-size: 0.625rem;
    margin-top: 0.125rem;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .c-header__logo-name strong {
    font-size: 0.775rem;
    /* font-size: 0.875rem; */
  }
}

.c-header__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(0.4166666667vw, 8px);
  flex-shrink: 0;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .c-header__center {
    display: none;
  }
}

.c-header__access {
  font-size: min(0.8333333333vw, 16px);
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.c-header__access strong {
  color: #F65C02;
}

.c-header__access-num {
  color: #f65c02;
  font-size: min(1.0416666667vw, 20px);
  font-weight: 700;
}

.c-header__dl-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: min(0.2083333333vw, 4px);
  background-color: #73bc16;
  color: #ffffff;
  font-size: min(0.9375vw, 18px);
  font-weight: 700;
  padding: min(0.5208333333vw, 10px);
  border-radius: min(0.4166666667vw, 8px);
  width: min(15.625vw, 300px);
  height: min(3.3333333333vw, 64px);
  letter-spacing: 0.04em;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.c-header__dl-btn .c-header__btn-icon {
  width: min(1.25vw, 24px);
  height: min(1.25vw, 24px);
  flex-shrink: 0;
}
@media (hover: hover) {
  .c-header__dl-btn:hover {
    opacity: 0.8;
  }
}

.c-header__right {
  flex-shrink: 0;
  border: 0.1875rem solid #ff9400;
  border-radius: min(0.4166666667vw, 8px);
  /* padding: min(0.57vw, 11px) min(1.25vw, 24px); */
  padding: min(0.3125vw, 6px) min(1.25vw, 24px);
  /* padding: min(0.8333333333vw, 16px) min(1.25vw, 24px); */
  /* margin-block: min(1.0416666667vw, 20px); */
  margin: 5px auto;
  margin-left: min(2.0833333333vw, 40px);
  
  text-align: center;
  width: min(33.3333333333vw, 640px);
  min-width: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-header__right {
    display: none;
  }
}

.c-header__cta-title {
  font-size: min(1.25vw, 24px);
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.16em;
  line-height: 1.5;
  white-space: nowrap;
  margin-block: 0;
}

.c-header__cta-line {
  width: 100%;
  height: 0.0625rem;
  background-color: #d9d9d9;
  margin-top: min(0.4166666667vw, 8px);
}

.c-header__cta-btns {
  display: flex;
  align-items: center;
  gap: min(0.8333333333vw, 16px);
  margin-top: min(0.625vw, 12px);
  justify-content: center;
}

.c-header__line-icon {
  width: min(2.9166666667vw, 56px);
  height: min(2.9166666667vw, 56px);
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-header__line-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.c-header__mail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: min(0.2083333333vw, 4px);
  flex-shrink: 0;
  background-color: #ff9400;
  color: #ffffff;
  font-size: min(0.9375vw, 18px);
  font-weight: 700;
  border: 0.125rem solid #ff9400;
  border-radius: min(0.4166666667vw, 8px);
  width: min(11.4583333333vw, 220px);
  height: min(2.9166666667vw, 56px);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.c-header__mail-btn .c-header__btn-icon {
  width: min(1.25vw, 24px);
  height: min(1.25vw, 24px);
  flex-shrink: 0;
}
.c-header__mail-btn {
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-header__mail-btn:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .c-header__mail-btn {
    font-size: 0.875rem;
    width: auto;
    min-width: 10rem;
    padding-inline: 0.75rem;
    height: 2.75rem;
  }
}

.c-header__tel {
  display: flex;
  align-items: center;
  gap: min(0.4166666667vw, 8px);
  color: #333333;
}

.c-header__tel-icon {
  width: min(1.09375vw, 21px);
  height: min(1.09375vw, 21px);
  flex-shrink: 0;
}

.c-header__tel-number {
  font-family: "Lato", sans-serif;
  font-size: min(1.6666666667vw, 32px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-header__tel-number {
    font-size: 1.375rem;
  }
}

.c-header__cta-hours {
  font-size: min(0.8333333333vw, 16px);
  color: #333333;
  margin-top: min(0.4166666667vw, 8px);
  margin-bottom: 0;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-header__cta-hours {
    font-size: 0.75rem;
  }
}

.c-header__nav {
  
  /* margin-top: min(1vw, 10px); */
  /* margin-top: min(1.9791666667vw, 38px); */
}
@media screen and (max-width: 767px) {
  .c-header__nav {
    display: none;
  }
}

.c-header__nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-header__nav-item {
  position: relative;
}
.c-header__nav-item::after {
  content: "";
  display: block;
  width: 0;
  height: min(1.25vw, 24px);
  border-right: 0.0625rem dotted #333333;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c-header__nav-item:last-child::after {
  display: none;
}

.c-header__nav-link {
  display: block;
  padding: min(0.625vw, 12px) min(1.25vw, 24px);
  font-size: min(0.8333333333vw, 16px);
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.3s;
}
@media (hover: hover) {
  .c-header__nav-link:hover {
    color: #ff9400;
  }
}

.c-header__menu-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-header__menu-btn {
    display: flex;
    padding: 0;
  }
}

.c-header__menu-icon {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background-color: #ff9400;
  position: relative;
  transition: background-color 0.3s;
}
.c-header__menu-icon::before, .c-header__menu-icon::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background-color: #ff9400;
  position: absolute;
  left: 0;
  transition: transform 0.3s, top 0.3s, background-color 0.3s;
}
.c-header__menu-icon::before {
  top: -0.4375rem;
}
.c-header__menu-icon::after {
  top: 0.4375rem;
}
.c-is-menu-open .c-header__menu-icon {
  background-color: transparent;
}
.c-is-menu-open .c-header__menu-icon::before, .c-is-menu-open .c-header__menu-icon::after {
  background-color: #ff9400;
  top: 0;
}
.c-is-menu-open .c-header__menu-icon::before {
  transform: rotate(45deg);
}
.c-is-menu-open .c-header__menu-icon::after {
  transform: rotate(-45deg);
}

.c-header__menu-text {
  font-size: 0.625rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-header__menu-text {
    margin-top: 0.25rem;
  }
}

.c-sp-menu {
  display: none;
  position: fixed;
  top: 4rem;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  background-color: #ffffff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.c-sp-menu.c-is-open {
  display: block;
}

.c-sp-menu__body {
  padding: 1rem 1.25rem 2.5rem;
}

.c-sp-menu__cta {
  border: 0.1875rem solid #ff9400;
  border-radius: 0.5rem;
  padding:0 1.0rem ;
  /* padding: 1.25rem 1.5rem; */
  text-align: center;
}

.c-sp-menu__cta-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.16em;
  line-height: 1.5;
}

.c-sp-menu__cta-line {
  width: 100%;
  height: 0.0625rem;
  background-color: #d9d9d9;
  margin-top: 0.625rem;
}

.c-sp-menu__cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  
}

.c-sp-menu__line-btn {
  margin-top: 0.38rem;
  flex-shrink: 0;
}

.c-sp-menu__line-icon {
  width: 3rem;
  height: 3rem;
}

.c-sp-menu__mail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background-color: #ff9400;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border: 0.125rem solid #ff9400;
  border-radius: 0.5rem;
  width: 14.875rem;
  height: 3rem;
  letter-spacing: 0.04em;
  transition: opacity 0.3s;
}
.c-sp-menu__mail-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
@media (hover: hover) {
  .c-sp-menu__mail-btn:hover {
    opacity: 0.8;
  }
}

.c-sp-menu__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  color: #333333;
}
.c-sp-menu__tel svg {
  width: 1.5rem;
  height: 1.625rem;
  flex-shrink: 0;
}

.c-sp-menu__tel-number {
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.c-sp-menu__hours {
  font-size: 0.75rem;
  color: #333333;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.c-sp-menu__dl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background-color: #73bc16;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.5rem;
  height: 3rem;
  letter-spacing: 0.04em;
  margin-top: 1rem;
  transition: opacity 0.3s;
}
.c-sp-menu__dl-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
@media (hover: hover) {
  .c-sp-menu__dl-btn:hover {
    opacity: 0.8;
  }
}

.c-sp-menu__nav {
  margin-top: 1rem;
}

.c-sp-menu__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-sp-menu__nav-item {
  border-bottom: 0.0625rem solid #d9d9d9;
}
.c-sp-menu__nav-item:first-child {
  border-top: 0.0625rem solid #d9d9d9;
}

.c-sp-menu__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.c-sp-menu__nav-link::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 0.125rem solid #ff9400;
  border-bottom: 0.125rem solid #ff9400;
  transform: rotate(-45deg);
  flex-shrink: 0;
}
@media (hover: hover) {
  .c-sp-menu__nav-link:hover {
    color: #ff9400;
  }
}
.c-header-space{
  height: clamp(77px, 9.722vw + 2.33px, 189px);
}
@media screen and (max-width: 767px) {
.c-header-space{
  height: clamp(70px, 6.394vw + 46.02px, 95px);
  /* display:none; */
}
}
.c-mv {
  position: relative;
  height: min(36.4583333333vw, 700px);
  overflow: hidden;
  /* padding-top: clamp(120px, 9.84vw, 189px); */
  /* padding-top: clamp(77px, 9.722vw + 2.33px, 189px); */
  /* margin-top: clamp(77px, 9.722vw + 2.33px, 189px);  */
}
.c-mv::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: min(5.2083333333vw, 100px);
  width: min(43.75vw, 840px);
  height: min(18.75vw, 360px);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(to right, #FFF3C8 0%, #F7CB8E 100%);
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-mv {
    height: auto;
    padding-bottom: 2.5rem;
    overflow: hidden;
  }
  .c-mv::after {
    display: none;
  }
}

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

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

.c-mv__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 25%, rgba(255, 255, 255, 0.5) 75%);
}

.c-mv__border {
  position: absolute;
  top: min(0.8333333333vw, 16px);
  left: min(0.8333333333vw, 16px);
  right: min(0.8333333333vw, 16px);
  bottom: min(0.8333333333vw, 16px);
  border: 0.125rem solid #ffffff;
}

.c-mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  max-width: 120rem;
  margin-inline: auto;
  padding-inline: min(6.25vw, 120px);
  padding-top: min(4.8958333333vw, 94px);
}
@media screen and (max-width: 767px) {
  .c-mv__inner {
    flex-direction: column;
    padding-inline: 1.25rem;
    padding-top: 1.875rem;
  }
}

.c-mv__content {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .c-mv__content {
    max-width: 100%;
    min-width: 0;
  }
}

.c-mv__catch {
  margin: 0;
}

.c-mv__catch-main {
  display: inline-block;
  font-size: min(2.5vw, 48px);
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0.04em;
  position: relative;
}
.c-mv__catch-main::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: min(0.5208333333vw, 10px);
  width: min(33.75vw, 648px);
  height: min(0.7291666667vw, 14px);
  background-color: #F7CB8E;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-mv__catch-main {
    font-size: 1.25rem;
    display: inline;
    background: linear-gradient(transparent calc(100% - 0.5rem), #F7CB8E calc(100% - 0.5rem));
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  .c-mv__catch-main::after {
    display: none;
  }
}

.c-mv__catch-sub {
  display: inline-block;
  font-size: min(2.9166666667vw, 56px);
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: min(0.4166666667vw, 8px);
  position: relative;
}
.c-mv__catch-sub::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: min(0.5208333333vw, 10px);
  /* width: min(45.8854166667vw, 881px); */
  width: min(30vw, 881px);
  height: min(0.7291666667vw, 14px);
  background-color: #F7CB8E;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-mv__catch-sub {
    font-size: 1.75rem;
    display: inline;
    background: linear-gradient(transparent calc(100% - 0.5rem), #F7CB8E calc(100% - 0.5rem));
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  .c-mv__catch-sub::after {
    display: none;
  }
}

.c-mv__catch-accent {
  color: #333333;
  font-family: "Noto Serif JP", serif;
}

.c-mv__lead {
  margin-top: min(2.0833333333vw, 40px);
}
@media screen and (max-width: 767px) {
  .c-mv__lead {
    margin-top: 1.5625rem;
  }
}

.c-mv__lead-small {
  font-size: min(1.25vw, 24px);
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  margin-block: 0;
}
@media screen and (max-width: 767px) {
  .c-mv__lead-small {
    font-size: 0.875rem;
  }
}

.c-mv__lead-main {
  font-size: min(2.0833333333vw, 40px);
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  margin-top: min(0.2083333333vw, 4px);
}
@media screen and (max-width: 767px) {
  .c-mv__lead-main {
    font-size: 1rem;
    margin-bottom: 0;
  }
}

.c-mv__lead-highlight {
  display: inline-block;
  background-color: #ff9400;
  color: #ffffff;
  padding: min(0.0520833333vw, 1px);
  margin-inline: min(0.4166666667vw, 8px);
  font-size: min(2.0833333333vw, 40px);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-mv__lead-highlight {
    font-size: 1rem;
    padding: 0.125rem 0.25rem;
  }
}

.c-mv__voice {
  margin-top: min(2.0833333333vw, 40px);
}
@media screen and (max-width: 767px) {
  .c-mv__voice {
    margin-top: 1.4375rem;
  }
}

.c-mv__voice-label {
  font-size: min(1.25vw, 24px);
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  margin-bottom: min(0.8333333333vw, 16px);
}
@media screen and (max-width: 767px) {
  .c-mv__voice-label {
    font-size: 0.875rem;
    margin-block: 0;
  }
}

.c-mv__voice-label-mark {
  color: #ff9400;
}

.c-mv__voice-item {
  display: flex;
  align-items: center;
  gap: min(0.4166666667vw, 8px);
  background-color: #ffffff;
  border: 0.125rem solid #ff9400;
  padding-left: min(1.0416666667vw, 20px);
  height: min(2.5vw, 48px);
  margin-top: min(0.625vw, 12px);
  max-width: min(41.6666666667vw, 800px);
}
@media screen and (max-width: 767px) {
  .c-mv__voice-item {
    height: auto;
    min-height: 3.625rem;
    padding: 0.5rem 0.875rem;
    gap: 0.25rem;
    max-width: 100%;
    margin-top: 0.5rem;
  }
}

.c-mv__voice-quote {
  font-size: min(1.6666666667vw, 32px);
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #ff9400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.c-mv__voice-text {
  font-size: min(1.0416666667vw, 20px);
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-mv__voice-text {
    font-size: 0.875rem;
    margin-block: 0;
  }
}

.c-mv__voice-strong {
  color: #ff9400;
}

.c-mv__right {
  flex-shrink: 0;
  position: relative;
  width: min(26.0416666667vw, 500px);
}
@media screen and (max-width: 767px) {
  .c-mv__right {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: block;
    margin-top: 6.875rem;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(to right, #FFF3C8 0%, #F7CB8E 100%);
  }
}

.c-mv__photo {
  position: absolute;
  left: min(2.34375vw, 45px);
}
@media screen and (max-width: 767px) {
  .c-mv__photo {
    position: absolute;
    left: auto;
    right: 1.25rem;
    bottom: -3.75rem;
  }
}

.c-mv__photo-img {
  width: min(22.3958333333vw, 430px);
  height: min(32.96875vw, 633px);
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .c-mv__photo-img {
    width: 12.5rem;
    height: 18.375rem;
  }
}

.c-mv__stats {
  text-align: center;
  position: absolute;
  left: min(-8.8541666667vw, -170px);
  left: calc(min(9.375vw, 180px) * -1);
  top: min(8.8541666667vw, 170px);
}
@media screen and (max-width: 767px) {
  .c-mv__stats {
    position: static;
    margin-top: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    left: 0.3125rem;
    top: -1.375rem;
    height: 10rem;
  }
}

.c-mv__stats-label {
  font-family: "Noto Serif JP", serif;
  font-size: min(1.25vw, 24px);
  font-weight: 900;
  color: #333333;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-mv__stats-label {
    font-size: 0.875rem;
    margin: 0;
    margin-left: 1.25rem;
  }
}

.c-mv__stats-numbers {
  margin-top: min(0.4166666667vw, 8px);
}
@media screen and (max-width: 767px) {
  .c-mv__stats-numbers {
    margin-top: 0.5rem;
    margin-left: 1.5625rem;
  }
}

.c-mv__stats-numbers-img {
  display: block;
  width: min(13.8020833333vw, 265px);
  height: min(9.4270833333vw, 181px);
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .c-mv__stats-numbers-img {
    width: 100%;
    max-width: 9.375rem;
    height: auto;
  }
}

.c-mv__stats-unit-top {
  font-size: min(1.25vw, 24px);
  font-weight: 700;
  color: #333333;
}

.c-mv__stats-num {
  font-family: "Noto Serif JP", serif;
  font-size: min(2.9166666667vw, 56px);
  font-weight: 900;
  background: linear-gradient(to bottom, #f27706, #ffc81f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.04em;
  line-height: 1;
}

.c-mv__stats-unit-right {
  font-size: min(1.25vw, 24px);
  font-weight: 700;
  color: #333333;
}

.c-mv__stats-unit-bottom {
  font-size: min(1.0416666667vw, 20px);
  font-weight: 700;
  color: #333333;
}

.c-mv__profile {
  position: absolute;
  right: min(-1.0416666667vw, -20px);
  top: min(13.5416666667vw, 260px);
  text-align: center;
  -webkit-text-stroke: 0.1875rem #ffffff;
  paint-order: stroke fill;
}
@media screen and (max-width: 767px) {
  .c-mv__profile {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    z-index: 1;
    margin-top: 0;
  }
}

.c-mv__profile-role {
  display: block;
  font-size: min(1.0416666667vw, 20px);
  font-weight: 700;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .c-mv__profile-role {
    font-size: 0.625rem;
  }
}

.c-mv__profile-name {
  display: block;
  font-size: min(1.25vw, 24px);
  font-weight: 700;
  color: #333333;
  margin-top: min(0.2083333333vw, 4px);
}
@media screen and (max-width: 767px) {
  .c-mv__profile-name {
    font-size: 0.875rem;
  }
}

.c-cta {
  background: url("./img-kazoku/sections/cta/cta-bg.jpg") center center/cover no-repeat;
  padding-top: 2.75rem;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-cta {
    padding-top: 2.8125rem;
    padding-bottom: 2.8125rem;
  }
}

.c-cta__btns {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-cta__btns {
    gap: 0.5rem;
  }
}

.c-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 24.25rem;
  height: 5rem;
  border-radius: 0.5rem;
  border: 0.1875rem solid #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.15);
}
.c-cta__btn .c-cta__btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}
.c-cta__btn {
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-cta__btn:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .c-cta__btn {
    flex: 1;
    min-width: 0;
    height: 5rem;
    font-size: 0.9375rem;
    flex-direction: column;
    gap: 0.25rem;
  }
  .c-cta__btn .c-cta__btn-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.c-cta__btn--mail {
  background-color: #ff9400;
}

.c-cta__btn--dl {
  background-color: #73bc16;
}

.c-cta__contact {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  background-color: #ffffff;
  border: 0.1875rem solid #ff9400;
  border-radius: 0.75rem;
  padding-top: 0.9375rem;
  margin-top: 2rem;
  max-width: 50rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-cta__contact {
    flex-direction: column;
    gap: 0;
    padding: 0.9375rem;
    margin-top: 1rem;
  }
}

.c-cta__contact-img {
  width: 11.25rem;
  height: 11.25rem;
  object-fit: contain;
  object-position: center;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .c-cta__contact-img {
    width: 7.5rem;
    height: 7.5rem;
  }
}

.c-cta__contact-center {
  text-align: center;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-cta__contact-center {
    margin-top: 1.5rem;
    padding-bottom: 0;
  }
}

.c-cta__contact-right {
  margin-bottom: 0.875rem;
  width: 10rem;
  height: 10rem;
}

.c-cta__contact-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  white-space: nowrap;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .c-cta__contact-text {
    font-size: 0.875rem;
    white-space: normal;
  }
}

.c-cta__contact-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-cta__contact-tel {
    margin-top: 0;
  }
}

.c-cta__contact-tel-icon {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.c-cta__contact-number {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-cta__contact-number {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .c-cta__contact-right {
    margin-top: 1rem;
  }
}

.c-cta__contact-qr {
  width: 10rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-cta__contact-qr {
    width: 10rem;
  }
}

.c-news {
  padding-top: 5.5rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-news {
    padding-top: 3.125rem;
    padding-bottom: 2.5rem;
  }
}
.c-news > .c-news__inner > .c-section-title {
  margin-top: 0;
  margin-bottom: 0;
}

.c-news__list {
  display: flex;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-news__list {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.c-news__card {
  flex: 1;
  
}

.c-news__card-img {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 350/240;
  background-color: #d9d9d9;
  box-shadow: 0 10px 26px rgba(0,0,0,0.15);
}
@media screen and (max-width: 767px) {
  .c-news__card-img {
    aspect-ratio: 350/160;
  }
}

.c-news__card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* 中央上部を基準にトリミング */
}
.c-news__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* これが重要：画像を隙間なく敷き詰め、はみ出しをカットします */
  display: block;    /* 画像の下に謎の隙間ができるのを防ぎます */
}
.c-news__card-date {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #c0c0c0;
  letter-spacing: 0.04em;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-news__card-date {
    margin-top: 0;
  }
}

.c-news__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .c-news__card-title {
    font-size: 1rem;
    margin-block: 0;
  }
}

.c-news__more {
  text-align: center;
  margin-top: 2.5rem;
}

.c-news__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 17.5rem;
  height: 3.5rem;
  border: 0.125rem solid #ff9400;
  border-radius: 62.4375rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ff9400;
  letter-spacing: 0.04em;
  transition: background-color 0.3s, color 0.3s;

}
.c-news__more-btn svg {
  position: absolute;
  right: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  fill: #ff9400;
  transition: fill 0.3s;
}
@media (hover: hover) {
  .c-news__more-btn:hover {
    background-color: #ff9400;
    color: #ffffff;
  }
  .c-news__more-btn:hover svg {
    fill: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .c-news__more-btn {
    width: 17.5rem;
    height: 3rem;
    font-size: 1rem;
  }
  .c-news__more-btn svg {
    right: 1.25rem;
  }
}

.c-freeze {
  position: relative;
  z-index: 1;
  padding-top: 5.5rem;
  padding-bottom: 4.0625rem;
  background-color: #fff5e1;
  background-color: #FFF2D6;
}
.c-freeze::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5rem;
  height: 5rem;
  background-color: #FFF2D6;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-freeze {
    padding-top: 3.125rem;
    padding-bottom: 0.625rem;
  }
  .c-freeze::after {
    bottom: -3.125rem;
    height: 3.125rem;
  }
}

.c-freeze__inner {
  position: relative;
  z-index: 1;
}

.c-freeze__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-freeze__title {
    font-size: 1.5rem;
  }
}

.c-freeze__title-highlight {
  display: inline-block;
  background-color: #f65c02;
  color: #ffffff;
  padding-inline: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-freeze__title-highlight {
    margin-right: 0.25rem;
    margin-top: 0.25rem;
  }
}

.c-freeze__box {
  background-color: #ffffff;
  border: 0.25rem solid #ff9400;
  border-radius: 1.25rem;
  padding: 3.5rem 5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-freeze__box {
    padding: 1.5rem 1rem;
    margin-top: 1.5rem;
  }
}

.c-freeze__box-lead {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-freeze__box-lead {
    font-size: 1rem;
  }
}

.c-freeze__box-accent {
  color: #f65c02;
}

.c-freeze__box-quote {
  font-family: "Noto Serif JP", serif;
}

.c-freeze__cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-freeze__cards {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }
}

.c-freeze__card {
  width: 18.5625rem;
  border: 0.125rem solid #d9d9d9;
  padding: 1.25rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-freeze__card {
    width: 100%;
    padding-top: 0;
  }
}

.c-freeze__card-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #ff9400;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-freeze__card-num {
    position: relative;
    top: 1.875rem;
  }
}

.c-freeze__card-icon {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .c-freeze__card-icon {
    margin-top: 0;
  }
}

.c-freeze__card-icon-img {
  width: 5.8125rem;
  height: 5rem;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .c-freeze__card-icon-img {
    width: 5.3125rem;
    height: 3.4375rem;
  }
}

.c-freeze__card-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  margin-top: 1rem;
  display: inline-block;
  position: relative;
  z-index: 0;
  white-space: nowrap;
}
.c-freeze__card-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1875rem;
  width: 100%;
  height: 0.5rem;
  background-color: #D9D9D9;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-freeze__card-label {
    font-size: 1.125rem;
    margin-bottom: 0;
    white-space: normal;
  }
}

.c-freeze__alert {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-freeze__alert {
    margin-top: 1.5rem;
  }
}

.c-freeze__alert-text {
  display: inline-block;
  background-color: #858585;
  color: #ffffff;
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  padding-block: 0.25rem;
  width: 58.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-freeze__alert-text {
    width: 100%;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
  }
}

.c-freeze__alert-arrow {
  display: block;
  width: 0;
  height: 0;
  border-left: 0.75rem solid transparent;
  border-right: 0.75rem solid transparent;
  border-top: 0.75rem solid #858585;
  margin-inline: auto;
  margin-top: -0.0625rem;
}
@media screen and (max-width: 767px) {
  .c-freeze__alert-arrow {
    border-left: 0.5rem solid transparent;
    border-right: 0.5rem solid transparent;
    border-top: 0.5rem solid #858585;
  }
}

.c-freeze__impact {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-freeze__impact {
    margin-top: 1rem;
  }
}

.c-freeze__impact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-freeze__impact-item {
    gap: 0.875rem;
  }
}

.c-freeze__impact-icon-img {
  width: 7.5rem;
  height: 7.5rem;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .c-freeze__impact-icon-img {
    width: 5rem;
    height: 5rem;
  }
}

.c-freeze__impact-tag {
  display: inline-block;
  border: 0.125rem solid #ff9400;
  background-color: #ffffff;
  padding: 0.25rem 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .c-freeze__impact-tag {
    font-size: 0.9375rem;
  }
}

.c-freeze__impact-text {
  font-size: 1.25rem;
  color: #333333;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-top: 0.5rem;
}
.c-freeze__impact-text strong {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-freeze__impact-text {
    font-size: 1rem;
  }
}

.c-freeze__impact-line {
  width: 100%;
  height: 0.0625rem;
  background-color: #d9d9d9;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-freeze__impact-line {
    margin-top: 0;
  }
}

.c-freeze__note {
  font-size: 1.125rem;
  color: #333333;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-freeze__note {
    font-size: 1rem;
    margin-top: 1.875rem;
    margin-bottom: 0;
    text-align: left;
  }
}

.c-freeze__conclusion {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 3rem;
  position: relative;
  z-index: 0;
}
.c-freeze__conclusion::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.625rem;
  width: 58.9375rem;
  height: 0.9375rem;
  background-color: #F7CB8E;
  transform: translateX(-50%);
  z-index: -1;
}
.c-freeze__conclusion strong {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-freeze__conclusion {
    font-size: 1.25rem;
    text-align: left;
    margin-top: 0.9375rem;
  }
  .c-freeze__conclusion strong {
    font-size: 1.5rem;
  }
  .c-freeze__conclusion::after {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .c-freeze__conclusion-text {
    display: inline;
    background: linear-gradient(transparent calc(100% - 0.75rem), #F7CB8E calc(100% - 0.75rem));
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding-bottom: 0.25rem;
  }
}

.c-trust {
  padding-top: 8.125rem;
  padding-bottom: 5rem;
  background: url("./img-kazoku/sections/trust/trust-bg.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .c-trust {
    padding-top: 6.25rem;
    padding-bottom: 2.5rem;
  }
}

.c-trust__kicker {
  font-size: 1.125rem;
  color: #333333;
  text-align: center;
  letter-spacing: 0.04em;
  border: 0.125rem solid #ff9400;
  border-radius: 62.4375rem;
  display: inline-block;
  padding: 0.25rem 1.25rem;
  margin: 0 auto 0.625rem;
  font-weight: 700;
  background-color: #ffffff;
  position: relative;
}
.c-trust__kicker::after {
  content: "";
  position: absolute;
  bottom: -0.375rem;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 0.5625rem;
  height: 0.5625rem;
  background-color: #ffffff;
  border-right: 0.125rem solid #ff9400;
  border-bottom: 0.125rem solid #ff9400;
}
@media screen and (max-width: 767px) {
  .c-trust__kicker {
    font-size: 0.875rem;
  }
}

.c-trust__inner {
  text-align: center;
}

.c-trust__inner > .c-section-title {
  /* ここに c-trust セクション専用の調整を書く */
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.c-trust__scheme {
  border: 0.1875rem solid #ff9400;
  border-radius: 0.75rem;
  margin-top: 2.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-trust__scheme {
    margin-top: 1.5rem;
  }
}

.c-trust__scheme-title {
  background-color: #ff9400;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  padding-block: 0.375rem;
  letter-spacing: 0.04em;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-trust__scheme-title {
    font-size: 1.25rem;
  }
}

.c-trust__scheme-content {
  padding: 2.5rem 3.5rem;
  background-color: #ffffff;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "person-a arrows person-b" "benefit  .      assets";
  gap: 2rem 0;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .c-trust__scheme-content {
    padding: 1.5rem;
    gap: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.c-trust__scheme-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 22.5rem;
}
@media screen and (max-width: 767px) {
  .c-trust__scheme-person {
    width: 100%;
    display: grid;
    grid-template-columns: 6.25rem 1fr;
    grid-template-rows: auto auto;
    gap: 0 0.5rem;
    align-items: center;
  }
}

.c-trust__scheme-person--a {
  grid-area: person-a;
}

.c-trust__scheme-person--b {
  grid-area: person-b;
}
@media screen and (max-width: 767px) {
  .c-trust__scheme-person--b {
    margin-top: 1rem;
  }
}

.c-trust__scheme-balloon {
  background-color: #ffffff;
  border: 0.125rem solid #D9D9D9;
  padding: 1rem 1.5rem;
  text-align: center;
  width: 100%;
  position: relative;
}
.c-trust__scheme-balloon::before {
  content: "";
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.625rem 0.4375rem 0;
  border-color: #D9D9D9 transparent transparent;
}
.c-trust__scheme-balloon::after {
  content: "";
  position: absolute;
  bottom: -0.375rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5rem 0.375rem 0;
  border-color: #ffffff transparent transparent;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-trust__scheme-balloon {
    grid-column: 1/3;
    grid-row: 1;
    margin-bottom: 0;
    padding: 0.75rem 0;
  }
}

.c-trust__scheme-person-img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-trust__scheme-person-img {
    width: 6.25rem;
    height: 6.25rem;
    grid-column: 1;
    grid-row: 2;
    padding-left: 3.125rem;
  }
}

.c-trust__scheme-person-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-trust__scheme-person-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-trust__scheme-person-info {
    grid-column: 2;
    grid-row: 2;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 1.5625rem;
  }
}

.c-trust__scheme-person-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ff9400;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  padding-inline: 0.75rem;
  border-radius: 62.4375rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-trust__scheme-person-badge {
    font-size: 0.875rem;
  }
}

.c-trust__scheme-person-role {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-trust__scheme-person-role {
    font-size: 0.9375rem;
  }
}

.c-trust__scheme-balloon-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .c-trust__scheme-balloon-text {
    font-size: 1rem;
  }
}

.c-trust__scheme-arrows {
  grid-area: arrows;
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  align-self: center;
  justify-self: center;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .c-trust__scheme-arrows {
    flex-direction: row;
    justify-content: center;
    gap: 0;
    width: auto;
    margin-top: 1rem;
    padding-inline: 0;
    padding-block: 0.5rem;
  }
}

.c-trust__scheme-arrow-img {
  display: block;
  width: 100%;
  height: 1.875rem;
  object-fit: fill;
}
@media screen and (max-width: 767px) {
  .c-trust__scheme-arrow-img {
    width: 3.375rem;
    height: 3.375rem;
    object-fit: contain;
    transform: none;
  }
}

.c-trust__scheme-arrows picture:nth-of-type(1) img {
  transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .c-trust__scheme-arrows picture:nth-of-type(1) img {
    transform: none;
  }
}

@media screen and (max-width: 767px) {
  .c-trust__scheme-arrows picture:nth-of-type(2) img {
    transform: none;
  }
}

.c-trust__scheme-benefit {
  grid-area: benefit;
  border: 0.1875rem solid #ff9400;
  padding: 1.5625rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-trust__scheme-benefit {
    width: 100%;
    padding: 0.75rem;
  }
}

.c-trust__scheme-benefit-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .c-trust__scheme-benefit-text {
    font-size: 0.875rem;
  }
}

.c-trust__scheme-assets {
  grid-area: assets;
  border: 0.1875rem solid #ff9400;
  padding: 0.9375rem 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-trust__scheme-assets {
    width: 100%;
    margin-top: 1rem;
  }
}

.c-trust__scheme-assets-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  margin: 0;
  padding-bottom: 0.25rem;
  border-bottom: 0.125rem solid #d9d9d9;
}

.c-trust__scheme-assets-subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  color: #333333;
  margin: 0;
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}

.c-trust__scheme-assets-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.75rem;
}

.c-trust__scheme-assets-icon {
  width: 3.5rem;
  height: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .c-trust__scheme-assets-icon {
    width: 2.5rem;
    height: 1.875rem;
  }
}

.c-trouble {
  position: relative;
  z-index: 2;
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  background: url("./img-kazoku/sections/trouble/trouble-bg.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .c-trouble {
    padding-top: 2.5rem;
    padding-bottom: 3.125rem;
  }
 .c-jigyoshokei{
  font-size:19px;
}
}

.c-trouble__deco {
  position: relative;
  width: 100%;
  height: 0.5rem;
  margin-bottom: 0;
  margin-left: -6.25rem;
}
@media screen and (max-width: 767px) {
  .c-trouble__deco {
    margin-left: 1.5625rem;
    margin-bottom: 0.3125rem;
  }
}
.c-trouble__deco::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #C0C0C0;
  box-shadow: -5rem 0 0 #C0C0C0, -2.5rem 0 0 #C0C0C0, 2.5rem 0 0 #C0C0C0, 5rem 0 0 #C0C0C0;
}
@media screen and (max-width: 767px) {
  .c-trouble__deco::before {
    width: 0.375rem;
    height: 0.375rem;
    box-shadow: -3.125rem 0 0 #C0C0C0, -1.5625rem 0 0 #C0C0C0, 1.5625rem 0 0 #C0C0C0, 3.125rem 0 0 #C0C0C0;
  }
}

.c-trouble__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 3rem;
  row-gap: 4.6875rem;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .c-trouble__cards {
    gap: 2.1875rem;
    margin-top: 2.8125rem;
  }
}

.c-trouble__inner > h2.c-section-title {
  margin: 0;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .c-trouble__inner > h2.c-section-title {
    margin-top: 0;
  }
}

.c-trouble__inner > h2.c-section-title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 0.375rem;
  background-color: #ff9400;
  margin-top: 1.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-trouble__inner > h2.c-section-title::after {
    margin-top: 0.75rem;
  }
}

.c-trouble__card {
  width: 20.875rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.15);
  padding: 1.875rem 1.5rem 0;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-trouble__card {
    width: 100%;
    padding: 2.75rem 1rem 0;
  }
}

.c-trouble__card-quote {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 3rem;
  font-weight: 700;
  color: transparent;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
}
.c-trouble__card-quote::before {
  content: "“";
  position: absolute;
  inset: 0;
  color: #c0c0c0;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
}

.c-trouble__card-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #ff9400;
  position: absolute;
  top: -1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.c-trouble__card-check::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 0.75rem;
  border-left: 0.25rem solid #ffffff;
  border-bottom: 0.25rem solid #ffffff;
  transform: rotate(-45deg);
  margin-top: -0.25rem;
}
@media screen and (max-width: 767px) {
  .c-trouble__card-check::after {
    width: 1.125rem;
    height: 0.75rem;
    margin-top: -0.1875rem;
    border-left: 0.3125rem solid #ffffff;
    border-bottom: 0.3125rem solid #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .c-trouble__card-check {
    width: 2.5rem;
    height: 2.5rem;
    top: -1.25rem;
  }
}

.c-trouble__card-desc {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  margin: 0;
  margin-top: 1rem;
  white-space: nowrap;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .c-trouble__card-desc {
    font-size: 0.9375rem;
    white-space: normal;
    word-break: normal;
    margin-top: 1.25rem;
  }
}

.c-trouble__card-category {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  margin: 0;
  margin-top: 1rem;
  display: inline-block;
  padding-bottom: 0.25rem;
  padding-right: 0.25rem;
  position: relative;
  z-index: 0;
  white-space: nowrap;
  word-break: keep-all;
}
.c-trouble__card-category::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.25rem;
  bottom: 0.4375rem;
  width: auto;
  height: 0.625rem;
  background-color: #F7CB8E;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-trouble__card-category {
    font-size: 1.125rem;
    white-space: normal;
    word-break: normal;
    margin-top: 0.5rem;
    padding-right: 0;
  }
}

.c-trouble__card:nth-of-type(3) > .c-trouble__card-category {
  padding-right: 0.75rem;
  transform: translateX(-0.875rem);
}
@media screen and (max-width: 767px) {
  .c-trouble__card:nth-of-type(3) > .c-trouble__card-category {
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .c-trouble__card:nth-of-type(5) > .c-trouble__card-category {
    font-size: 1.125rem;
  }
}

.c-trouble__card-icon-img {
  display: block;
  width: 4.1875rem;
  height: 4.5rem;
  object-fit: contain;
  object-position: center;
  margin-top: 1rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-trouble__card-icon-img {
    width: 3.4375rem;
    height: 4.0625rem;
    margin-top: 0.75rem;
  }
}

.c-trouble__arrow {
  position: absolute;
  bottom: calc(5.125rem / -2);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-trouble__arrow {
    bottom: calc(4.6875rem / -2);
  }
}

.c-trouble__arrow-img {
  width: 3.875rem;
  height: 5.125rem;
}
@media screen and (max-width: 767px) {
  .c-trouble__arrow-img {
    width: 2.5rem;
    height: 3.3125rem;
  }
}

.c-checklist {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  background: url("./img-kazoku/sections/checklist/checklist-bg.jpg") no-repeat;
  background-size: cover;
  background-position: center -15.625rem;
}
.c-checklist::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width: 767px) {
  .c-checklist {
    padding-top: 3.125rem;
    padding-bottom: 2.5rem;
    background-position: center;
  }
}

.c-checklist__inner {
  position: relative;
  z-index: 1;
}

.c-checklist__inner .c-section-title {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .c-checklist__inner .c-section-title {
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
.c-checklist__inner .c-section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.375rem;
  width: 31.25rem;
  height: 0.9375rem;
  background-color: #F9D9AE;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-checklist__inner .c-section-title::after {
    width: 18.75rem;
    height: 0.625rem;
    bottom: -0.0625rem;
  }
}

.c-checklist__lead {
  font-size: 1.125rem;
  color: #333333;
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .c-checklist__lead {
    font-size: 1rem;
    text-align: left;
    margin-block: 0;
  }
}

.c-checklist__box {
  display: flex;
  gap: 2.5rem;
  background-color: #ffffff;
  border: 0.0625rem solid #d9d9d9;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.15), inset 0 0 0 0.5rem #ffffff, inset 0 0 0 0.5625rem #d9d9d9;
  margin-top: 2.5rem;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-checklist__box {
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 1.25rem 1rem;
    margin-top: 1.5rem;
  }
}

.c-checklist__box-inner {
  flex: 1;
}

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

.c-checklist__item {
  font-size: 1.125rem;
  color: #333333;
  letter-spacing: 0.04em;
  padding: 0.75rem 0;
  border-bottom: 0.0625rem dashed #d9d9d9;
  padding-left: 2.25rem;
  position: relative;
  white-space: nowrap;
  word-break: keep-all;
}
.c-checklist__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.875rem;
  width: 1.75rem;
  height: 1.75rem;
  background: url("./img-kazoku/sections/checklist/check.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .c-checklist__item {
    font-size: 1rem;
    padding: 0.625rem 0 0.625rem 2.5rem;
    white-space: normal;
    word-break: normal;
  }
}

.c-checklist__box-img-inner {
  width: 20rem;
  height: 20rem;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .c-checklist__box-img-inner {
    width: 8.75rem;
    height: 8.75rem;
    margin-inline: auto;
    display: block;
  }
}

.c-checklist__result {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .c-checklist__result {
    font-size: 1.25rem;
    margin-top: 1.5rem;
  }
}

.c-checklist__result-highlight {
  display: inline-block;
  background-color: #ff9400;
  color: #ffffff;
  font-size: 2.25rem;
  padding-inline: 0.75rem;
  margin-inline: 0.5rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-checklist__result-highlight {
    font-size: 1.5rem;
    margin-right: 0.3125rem;
    margin-top: 0.25rem;
  }
}

.c-cases {
  position: relative;
  padding-top: 5.5rem;
  padding-bottom: 5rem;
  background-color: rgb(255, 235, 221);
  z-index: 1;
}
.c-cases::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 5.5vw;
  background-image: url("./img-kazoku/sections/case/cases-bg.png");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  pointer-events: none;
 
}
.c-cases::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 5.5vw;
  background-image: url("./img-kazoku/sections/case/cases-bg.png");
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
  pointer-events: none;

}
@media screen and (max-width: 767px) {
  .c-cases {
    padding-top: 3.125rem;
    padding-bottom: 2.5rem;
  }
}

.c-cases__list {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-cases__list {
    margin-top: 1.875rem;
    gap: 1.875rem;
  }
}

.c-cases__item-header {
  background-color: #ff9400;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  padding: 0.5rem 3.5rem;
  border-radius: 1.25rem 1.25rem 0 0;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 2;
  margin-block: 0;
}
@media screen and (max-width: 767px) {
  .c-cases__item-header {
    font-size: 1.25rem;
    padding: 0.625rem 1rem;
    gap: 0.75rem;
    border-radius: 0.75rem 0.75rem 0 0;
  }
}

.c-cases__item-case {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 62.4375rem;
  padding: 0.125rem 1rem;
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  color: #ff9400;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-cases__item-case {
    font-size: 1.125rem;
    padding: 0.125rem 0.75rem;
  }
}

.c-cases__item-body {
  background-color: #ffffff;
  padding: 2.5rem 3.5rem;
  border-radius: 0 0 1.25rem 1.25rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .c-cases__item-body {
    padding: 1.25rem;
    border-radius: 0 0 0.75rem 0.75rem;
  }
}

.c-cases__item-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  padding-left: 1rem;
  border-left: 0.25rem solid #ff9400;
  border-bottom: 0.125rem solid #D9D9D9;
  margin-top: 0;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-cases__item-subtitle {
    font-size: 1.125rem;
  }
}

.c-cases__item-desc {
  font-size: 1rem;
  color: #333333;
  line-height: 1.7;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .c-cases__item-desc {
    font-size: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.c-cases__item-problem {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background-color: #ffffff;
  border: 0.125rem solid #d9d9d9;
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.c-cases__item-problem::after {
  content: "";
  position: absolute;
  bottom: -2.0625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.25rem solid transparent;
  border-right: 1.25rem solid transparent;
  border-top: 1.0625rem solid #F65C02;
}
@media screen and (max-width: 767px) {
  .c-cases__item-problem {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-top: 0;
  }
}

.c-cases__item-problem-icon {
  flex-shrink: 0;
  width: 7.5rem;
  height: 7.5rem;
}
@media screen and (max-width: 767px) {
  .c-cases__item-problem-icon {
    width: 6.25rem;
    height: 6.25rem;
  }
}

.c-cases__item-problem-content {
  flex: 1;
}

.c-cases__item-problem-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #858585;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  letter-spacing: 0.04em;
  margin-block: 0;
}
@media screen and (max-width: 767px) {
  .c-cases__item-problem-title {
    font-size: 1rem;
  }
}

.c-cases__item-problem-list {
  list-style: none;
  padding: 0;
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.c-cases__item-problem-list li {
  font-size: 1rem;
  color: #333333;
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}
.c-cases__item-problem-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #C0C0C0;
}
@media screen and (max-width: 767px) {
  .c-cases__item-problem-list li {
    font-size: 0.875rem;
  }
  .c-cases__item-problem-list li:not(:first-child) {
    margin-top: 0.75rem;
  }
}

.c-cases__item-solution {
  border: 0.1875rem solid #f65c02;
  padding: 1.5rem;
  margin-top: 3.0625rem;
}
@media screen and (max-width: 767px) {
  .c-cases__item-solution {
    padding: 1rem;
  }
}

.c-cases__item-solution-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  display: inline-block;
  padding: 0.25rem 0;
  position: relative;
  z-index: 0;
  margin-block: 0;
}
.c-cases__item-solution-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.3125rem;
  width: 100%;
  height: 0.5rem;
  background-color: #F7CB8E;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-cases__item-solution-title {
    display: inline;
    background: linear-gradient(transparent calc(100% - 0.625rem), #F7CB8E calc(100% - 0.625rem));
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding-bottom: 0.0625rem;
  }
  .c-cases__item-solution-title::after {
    display: none;
  }
}

.c-cases__item-solution-text {
  font-size: 1rem;
  color: #333333;
  line-height: 1.7;
  margin-top: 0.75rem;
  margin-block: 0;
}
@media screen and (max-width: 767px) {
  .c-cases__item-solution-text {
    font-size: 0.9375rem;
    margin-top: 1rem;
  }
}

.c-cases__more {
  text-align: center;
  margin-top: 2.5rem;
}

.c-cases__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 17.5rem;
  height: 3.5rem;
  border: 0.125rem solid #ff9400;
  border-radius: 62.4375rem;
  background-color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ff9400;
  letter-spacing: 0.04em;
  transition: background-color 0.3s, color 0.3s;
}
.c-cases__more-btn svg {
  position: absolute;
  right: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  fill: #ff9400;
  transition: fill 0.3s;
}
@media (hover: hover) {
  .c-cases__more-btn:hover {
    background-color: #ff9400;
    color: #ffffff;
  }
  .c-cases__more-btn:hover svg {
    fill: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .c-cases__more-btn {
    font-size: 1rem;
    height: 3rem;
  }
  .c-cases__more-btn svg {
    right: 1.25rem;
  }
}

.c-compare {
  position: relative;
  padding-top: 9.375rem;
  padding-bottom: 12.5rem;
  background: url("./img-kazoku/sections/compare/compare-bg.jpg") no-repeat center/cover;
}
.c-compare::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width: 767px) {
  .c-compare {
    padding-top: 3.125rem;
    padding-bottom: 4.375rem;
    background-image: url("./img-kazoku/sections/compare/compare-sp-bg.jpg");
  }
}

.c-compare__inner {
  position: relative;
  z-index: 1;
}

.c-compare__boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-compare__boxes {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.875rem;
  }
}

.c-compare__box-wrap {
  min-width:300px;
  flex: 1;
  filter: drop-shadow(0.125rem 0 0 #333333) drop-shadow(-0.125rem 0 0 #333333) drop-shadow(0 0.125rem 0 #333333) drop-shadow(0 -0.125rem 0 #333333);
}

.c-compare__box {
  position: relative;
  padding: 3.125rem 0;
  text-align: center;
  background: url("./img-kazoku/sections/compare/compare-mask.jpg") no-repeat center/cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.9375rem), calc(100% - 1.9375rem) 100%, 0 100%);
}
.c-compare__box::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.9375rem;
  height: 1.9375rem;
  border: 0.125rem solid #333333;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media screen and (max-width: 767px) {
  .c-compare__box {
    padding: 0.625rem;
  }
}

.c-compare__box-text {
  font-size: 1.5rem;
  color: #333333;
  letter-spacing: 0.04em;
  white-space:nowrap;
}
.c-compare__box-text strong {
  font-size: 1.75rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  z-index: 0;
}
.c-compare__box-text strong:nth-of-type(1)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1875rem;
  width: 100%;
  height: 0.5rem;
  background-color: #F7CB8E;
  z-index: -1;
}
.c-compare__box-text strong:nth-of-type(2)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1875rem;
  width: 100%;
  height: 0.5rem;
  background-color: #D9D9D9;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-compare__box-text {
    font-size: 1rem;
  }
  .c-compare__box-text strong {
    font-size: 1.125rem;
  }
}

.c-compare__optimal {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-compare__optimal-badge {
  display: inline-block;
  border: 0.125rem solid #ff9400;
  border-radius: 62.4375rem;
  padding: 0.25rem 1.25rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: #333333;
  letter-spacing: 0.04em;
  background-color: #ffffff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-compare__optimal-badge {
    font-size: 0.9375rem;
  }
}
.c-compare__optimal-badge::after {
  content: "";
  position: absolute;
  bottom: -0.375rem;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 0.5625rem;
  height: 0.5625rem;
  background-color: #ffffff;
  border-right: 0.125rem solid #ff9400;
  border-bottom: 0.125rem solid #ff9400;
}

.c-compare__optimal-text {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  margin-top: 0.75rem;
  position: relative;
  display: inline-block;
  z-index: 0;
}
.c-compare__optimal-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.375rem;
  width: 100%;
  height: 0.875rem;
  background-color: #F9D9AE;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-compare__optimal-text::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c-compare__optimal-text {
    font-size: 1.25rem;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .c-compare__optimal-text-line1,
  .c-compare__optimal-text-line2 {
    position: relative;
    display: inline-block;
    z-index: 0;
  }
  .c-compare__optimal-text-line1::after,
  .c-compare__optimal-text-line2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.375rem;
    width: 100%;
    height: 0.375rem;
    background-color: #F9D9AE;
    z-index: -1;
  }
}

.c-compare__timeline {
  margin-top: 2rem;
  display:flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
}
@media screen and (max-width: 767px) {
  .c-compare__timeline {
    margin-top: 1.5625rem;
  }
}

.c-compare__timeline-label {
  font-size: 1.125rem;
  color: #333333;
  font-weight: 700;
  letter-spacing: 0.04em;
  width:100%;
}
.c-compare__timeline-label::after {
  content: "";
  display: block;
  height: 0.125rem;
  margin-top: 0.5rem;
  background: linear-gradient(to right, #ff9400 10rem, #d9d9d9 10rem);
}

.c-compare__timeline-chart {
  margin-top: 1rem;
  width: 68.75rem;
}
@media screen and (max-width: 767px) {
  .c-compare__timeline-chart {
    width: 100%;
  }
}

.c-compare__timeline-chart-img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.2);
  border-radius:1.25rem;
}

.c-compare__timeline-phases {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 12.5rem);
  gap: 2.5rem;
  margin-bottom: 3.125rem;
}

.c-compare__timeline-phase-wrap {
  position: relative;
}
.c-compare__timeline-phase-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0.125rem;
  height: 15.625rem;
  background-color: #d9d9d9;
  z-index: 0;
  pointer-events: none;
}

.c-compare__timeline-phase-border {
  filter: drop-shadow(0.125rem 0 0 #ff9400) drop-shadow(-0.125rem 0 0 #ff9400) drop-shadow(0 0.125rem 0 #ff9400) drop-shadow(0 -0.125rem 0 #ff9400);
}

.c-compare__timeline-phase {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  background-color: #ffffff;
  clip-path: polygon(0 0, calc(100% - 1.25rem) 0, 100% 50%, calc(100% - 1.25rem) 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .c-compare__timeline-phase {
    font-size: 0.875rem;
    height: 2.75rem;
    clip-path: polygon(0 0, calc(100% - 0.75rem) 0, 100% 50%, calc(100% - 0.75rem) 100%, 0 100%);
  }
}

.c-compare__timeline-bars {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 13.5rem);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 6.875rem;
}

.c-compare__timeline-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  background-color: #858585;
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-compare__timeline-bar {
    font-size: 0.75rem;
    height: 2rem;
  }
}

.c-compare__timeline-trust {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7.125rem;
  background: url("./img-kazoku/sections/compare/compare-path.png") no-repeat center/100% 100%;
}
.c-compare__timeline-trust span {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-compare__timeline-trust {
    background-image: none;
    background-color: #ff9400;
    font-size: 1.25rem;
    height: 3.75rem;
    clip-path: polygon(0 0, calc(100% - 1.875rem) 0, 100% 50%, calc(100% - 1.875rem) 100%, 0 100%);
  }
  .c-compare__timeline-trust span {
    display: inline;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
}

.c-compare__summary {
  font-size: 1.5rem;
  color: #333333;
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 2.5rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-compare__summary {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

.c-compare__summary-line {
  display: block;
}

.c-compare__summary-line--second {
  margin-top: 0.5rem;
}

.c-compare__summary-highlight {
  display: inline-block;
  background-color: #ff9400;
  color: #ffffff;
  padding-inline: 0.5rem;
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-compare__summary-highlight {
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
  }
}

.c-compare__summary-tail {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-compare__summary-tail {
    font-size: 1.25rem;
  }
}

.c-features {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  /* background: linear-gradient(to right, #FFF3C8 0%, #F7CB8E 100%); */
  /* background: linear-gradient(to bottom, #FFF3C8 0%, #F7CB8E 100%); */
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%) !important;
  /* background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%) !important; */
  clip-path: ellipse(120% 100% at 50% 92%);
  z-index: 1;
}
.c-features::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 10vw;
  /* background-color: #FFF3C8; */
  background-color: #ffffff !important;
  clip-path: ellipse(150% 100% at 50% 100%);
  pointer-events: none;
  
}
@media screen and (max-width: 767px) {
  .c-features {
    padding-top: 0;
    padding-bottom: 2.5rem;
    clip-path: ellipse(180% 105% at 50% 100%);
  }
  .c-features::before {
    height: 20vw;
  }
}

.c-features__list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-features__list {
    gap: 1.875rem;
    margin-top: 1.875rem;
  }
}

.c-features__item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 3.125rem 3.4375rem 3.125rem 5rem;
  /* box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.15); */
  box-shadow: 0 12px 28px rgba(0,0,0,0.10) !important;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-features__item {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

.c-features__item:nth-of-type(2) {
  padding: 0;
}

.c-features__item-left {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .c-features__item-left {
    padding: 1rem 0 0 1.5rem;
  }
}

.c-features__item:nth-of-type(2) .c-features__item-left {
  padding: 3.125rem 3.4375rem 3.125rem 5rem;
}
@media screen and (max-width: 767px) {
  .c-features__item:nth-of-type(2) .c-features__item-left {
    padding: 1rem 0 0 1.5rem;
  }
}

.c-features__item-point {
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  color: #ff9400;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.c-features__item-num {
  font-family: "Lato", sans-serif;
  font-size: 3rem;
  color: #ff9400;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-features__item-num {
    font-size: 2rem;
  }
}

.c-features__item-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-features__item-title {
    font-size: 1.125rem;
    margin-top: 0.5rem;
  }
}

.c-features__item-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 0.125rem solid #ff9400;
  border-radius: 62.4375rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #ff9400;
  letter-spacing: 0.04em;
  margin-top: 2.5rem;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .c-features__item-btn {
    margin-top: 1.5rem;
  }
}
.c-features__item-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  fill: #ff9400;
  transition: fill 0.3s;
}
@media (hover: hover) {
  .c-features__item-btn:hover {
    background-color: #ff9400;
    color: #ffffff;
  }
  .c-features__item-btn:hover svg {
    fill: #ffffff;
  }
}

.c-features__item-right {
  flex-shrink: 0;
  width: 33.75rem;
}
@media screen and (max-width: 767px) {
  .c-features__item-right {
    width: 100%;
  }
}

.c-features__price-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-features__price-heading {
    margin: 0;
  }
}

.c-features__price-note {
  font-size: 0.875rem;
  font-weight: 700;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-features__price-note {
    display: block;
    margin-left: 0;
  }
}

.c-features__price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
}
.c-features__price-table th,
.c-features__price-table td {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  border: 0.0625rem solid #d9d9d9;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-features__price-table th,
  .c-features__price-table td {
    padding: 0.25rem 0.375rem;
    font-size: 0.625rem;
  }
}
.c-features__price-table thead th {
  background-color: #ff9400;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}
.c-features__price-table tbody td {
  font-weight: 500;
}
.c-features__price-table tbody td:first-child {
  width: 21.25rem;
}
@media screen and (max-width: 767px) {
  .c-features__price-table tbody td:first-child {
    width: auto;
  }
}
.c-features__price-table td:last-child {
  text-align: center;
  white-space: nowrap;
}
.c-features__price-table td:last-child strong {
  font-size: 1.125rem;
}
.c-features__price-table tfoot td {
  background-color: #fff5e1;
  font-weight: 500;
}
.c-features__price-table tfoot tr:first-child td {
  font-weight: 700;
}
.c-features__price-table tfoot tr:nth-child(2) td {
  background-color: #ffffff;
}

.c-features__price-note-bottom {
  margin-top: 0.75rem;
  padding: 0.5rem;
  border: 0.125rem solid #f65c02;
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-features__price-note-bottom {
    padding-left: 0;
  }
}
.c-features__price-note-bottom span {
  font-size: 0.875rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-features__price-note-bottom span {
    display: block;
    text-align: left;
    padding-left: 0.9375rem;
  }
}

.c-features__stats {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("./img-kazoku/sections/feature/feature-bg.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .c-features__stats {
    padding: 1.25rem;
  }
}

.c-features__stats-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-features__stats-heading {
    font-size: 1.125rem;
  }
}

.c-features__stats-img {
  display: block;
  max-width: 16.5625rem;
  margin-top: 1rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-features__stats-img {
    max-width: 12.5rem;
  }
}

.c-features__stats-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-features__stats-label {
    font-size: 1rem;
  }
}

.c-features__stats-num {
  font-family: "Noto Serif JP", serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(to bottom, #f27706, #ffc81f);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-features__stats-num {
    font-size: 2.5rem;
  }
}

.c-features__stats-unit {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-features__stats-unit {
    font-size: 1rem;
  }
}

.c-features__stats-sub {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
}
.c-features__stats-sub strong {
  font-size: 2rem;
  font-weight: 700;
  color: #ff9400;
}
@media screen and (max-width: 767px) {
  .c-features__stats-sub {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
  .c-features__stats-sub strong {
    font-size: 1.5rem;
  }
}

.c-flow {
  padding-top: 5.5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-flow {
    padding-top: 3.125rem;
    padding-bottom: 2.5rem;
  }
}

.c-flow__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-flow__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 1.875rem;
    max-width: 15.625rem;
    margin-inline: auto;
  }
}

.c-flow__step {
  text-align: center;
  width: 10rem;
}
@media screen and (max-width: 767px) {
  .c-flow__step {
    width: 100%;
    display: grid;
    grid-template-columns: 5rem 1fr;
    grid-template-rows: auto auto;
    gap: 0.25rem 1.5rem;
    text-align: left;
    align-items: center;
  }
}

.c-flow__step-num {
  font-family: "Lato", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #ff9400;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-flow__step-num {
    font-size: 1.5rem;
    grid-row: 1;
    grid-column: 2;
  }
}

.c-flow__step-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background-color: #fff5e1;
  margin-top: 0.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-flow__step-circle {
    width: 5rem;
    height: 5rem;
    margin-top: 0;
    margin-inline: 0;
    flex-shrink: 0;
    grid-row: 1/3;
    grid-column: 1;
    align-self: center;
  }
}

.c-flow__step:nth-of-type(3) > .c-flow__step-circle {
  padding-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-flow__step:nth-of-type(3) > .c-flow__step-circle {
    padding-left: 0;
  }
}

.c-flow__step-icon {
  width: 5rem;
  height: 5rem;
  display: block;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .c-flow__step-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.c-flow__step:nth-of-type(1) .c-flow__step-icon,
.c-flow__step:nth-of-type(2) .c-flow__step-icon {
  width: 4.25rem;
  height: 4.25rem;
}
@media screen and (max-width: 767px) {
  .c-flow__step:nth-of-type(1) .c-flow__step-icon,
  .c-flow__step:nth-of-type(2) .c-flow__step-icon {
    width: 2.1875rem;
    height: 2.5rem;
  }
}

.c-flow__step:nth-of-type(3) .c-flow__step-icon {
  width: 4.5rem;
  height: 4.5rem;
}
@media screen and (max-width: 767px) {
  .c-flow__step:nth-of-type(3) .c-flow__step-icon {
    padding-left: 0.1875rem;
    width: 1.875rem;
    height: 2.5rem;
  }
}

.c-flow__step:nth-of-type(2) .c-flow__step-icon {
  width: 5.1875rem;
}
@media screen and (max-width: 767px) {
  .c-flow__step:nth-of-type(2) .c-flow__step-icon {
    width: 3.125rem;
    height: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .c-flow__step:nth-of-type(3) .c-flow__step-icon {
    width: 2.1875rem;
    height: 2.5rem;
  }
}
.c-flow__step-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .c-flow__step-label {
    font-size: 1rem;
    margin-top: 0;
    grid-row: 2;
    grid-column: 2;
  }
}

.c-flow__step-line {
  display: block;
  width: 2.1875rem;
  height: 0.25rem;
  background-color: #ff9400;
  margin-top: calc(2.25rem + 0.5rem + 5rem - 0.125rem);
  margin-inline: 1.25rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-flow__step-line {
    width: 0.125rem;
    height: 1.5rem;
    margin: 0 0 0 2.4375rem;
  }
}

.c-flow__more {
  text-align: center;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-flow__more {
    margin-top: 2.5rem;
  }
}

.c-flow__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 17.5rem;
  height: 3.5rem;
  border: 0.125rem solid #ff9400;
  border-radius: 62.4375rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ff9400;
  letter-spacing: 0.04em;
  transition: background-color 0.3s, color 0.3s;
}
.c-flow__more-btn svg {
  position: absolute;
  right: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  fill: #ff9400;
  transition: fill 0.3s;
}
@media (hover: hover) {
  .c-flow__more-btn:hover {
    background-color: #ff9400;
    color: #ffffff;
  }
  .c-flow__more-btn:hover svg {
    fill: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .c-flow__more-btn {
    font-size: 1rem;
  }
  .c-flow__more-btn svg {
    right: 1.25rem;
  }
}

.c-voice {
  position: relative;
  padding-top: 5.5rem;
  padding-bottom: 5rem;
  background: url("./img-kazoku/sections/voice/voice-bg.jpg") no-repeat center/cover;
}
.c-voice::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width: 767px) {
  .c-voice {
    padding-top: 3.125rem;
    padding-bottom: 2.5rem;
  }
}

.c-voice__inner {
  position: relative;
  z-index: 1;
}

.c-voice__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-voice__list {
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.875rem;
  }
}

.c-voice__item-img {
  width: 100%;
  display: block;
  height: auto;
  aspect-ratio: 245/347;
  object-fit: cover;
  object-position: top center;
}

.c-voice__more {
  text-align: center;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-voice__more {
    margin-top: 1.5rem;
  }
}

.c-voice__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 17.5rem;
  height: 3.5rem;
  border: 0.125rem solid #ff9400;
  border-radius: 62.4375rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ff9400;
  letter-spacing: 0.04em;
  background-color: #ffffff;
  transition: background-color 0.3s, color 0.3s;
}
.c-voice__more-btn svg {
  position: absolute;
  right: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  fill: #ff9400;
  transition: fill 0.3s;
}
@media (hover: hover) {
  .c-voice__more-btn:hover {
    background-color: #ff9400;
    color: #ffffff;
  }
  .c-voice__more-btn:hover svg {
    fill: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .c-voice__more-btn {
    font-size: 1rem;
  }
  .c-voice__more-btn svg {
    right: 1.25rem;
  }
}

.c-faq {
  padding-top: 5.5rem;
  padding-bottom: 5rem;
  /* background-color: #FFF2D6; */
  background-color:#ffffff;
   /* background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%) !important; */
}
@media screen and (max-width: 767px) {
  .c-faq {
    padding-top: 3.125rem;
    padding-bottom: 2.5rem;
  }
}
/* qa補足追加ここから */
/* summary内の質問を2段構成にする */
.c-faq__q-text-wrap{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  min-width: 0;
}

/* 補足（1行） */
.c-faq__q-sub{
  font-size: 0.875rem;
  line-height: 1.4;
  color: rgba(0,0,0,0.55);
  letter-spacing: 0.02em;
}

/* SPは少し小さめ */
@media screen and (max-width: 767px){
  .c-faq__q-sub{
    font-size: 0.75rem;
  }
}
/* qa補足追加ここまで */
.c-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-faq__list {
    gap: 0.75rem;
    margin-top: 1.875rem;
  }
}

.c-faq__item {
  background-color: #ffffff;
  /* border: 0.125rem solid #ff9400; */
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.c-faq__question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.3s;
}
.c-faq__question::-webkit-details-marker {
  display: none;
}
@media (hover: hover) {
  .c-faq__question:hover {
    /* background-color: #fff5e1; */
    background-color: rgba(0,0,0,0.03) !important;
  }

}
@media screen and (max-width: 767px) {
  .c-faq__question {
    gap: 0.625rem;
    padding: 0.875rem 1rem;
    align-items: flex-start;
  }
}

.c-faq__q-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #ff9400;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.c-faq__q-text {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-faq__q-text {
    font-size: 0.875rem;
  }
}

.c-faq__toggle {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  position: relative;
}
.c-faq__toggle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #ff9400;
  border-right: 0.125rem solid #ff9400;
  border-top-color: rgba(0,0,0,0.40) !important;
  border-right-color: rgba(0,0,0,0.40) !important;
  transform: translate(-50%, -60%) rotate(135deg);
  transform-origin: center;
  transition: transform 0.3s ease;
}
details[open] > summary .c-faq__toggle::before {
  transform: translate(-50%, -40%) rotate(-45deg);
}

.c-faq__answer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0rem 1.5rem 1.25rem;
  /* border-top: 0.0625rem dashed #ff9400; */
  border-top: 1px dashed rgba(0,0,0,0.14) !important;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .c-faq__answer {
    gap: 0.625rem;
    padding: 0rem 1rem 0.875rem 0rem;
    margin-inline: 1rem;
    align-items: baseline;
  }
}

.c-faq__a-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #ffffff;
  /* border: 0.125rem solid #ff9400; */
  color: #ff9400;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid rgba(255,148,0,0.55) !important;
  
}

.c-faq__a-text {
  font-size: 1rem;
  color: #333333;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-faq__a-text {
    font-size: 0.875rem;
  }
}

.c-message {
  padding-top: 5.5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-message {
    padding-top: 3.125rem;
    padding-bottom: 2.5rem;
  }
}

.c-message__content {
  display: flex;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-message__content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 1.5625rem;
  }
}

.c-message__photo {
  position: relative;
  z-index: 1;
	margin-top:50px;
  margin-right: -3.75rem;
}
@media screen and (max-width: 767px) {
  .c-message__photo {
    margin-right: 0;
    margin-left: -1.25rem;
    align-self: flex-start;
	  margin-top:0;
  }
}

.c-message__photo-img {
  width: 31.25rem;
  height: 25rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .c-message__photo-img {
    width: 23.125rem;
    height: 12.5rem;
  }
}

.c-message__body {
  flex: 1;
  background-color: #fafafa;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  padding-right: 3.5rem;
  padding-left: 6.25rem;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .c-message__body {
    padding: 1.25rem;
    padding-top: 2.5rem;
    padding-left: 2.1875rem;
    margin-top: -1.875rem;
    margin-right: -1.25rem;
  }
}

.c-message__text {
  font-size: 0.875rem;
  color: #333333;
  line-height: 2;
  letter-spacing: 0.04em;
  /* white-space: nowrap; */
  margin-block: 0;
}
@media screen and (max-width: 767px) {
  .c-message__text {
    font-size: 0.75rem;
    white-space: normal;
  }
}

.c-sp-fixed-bar {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-sp-fixed-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .c-sp-fixed-bar.c-is-visible {
    transform: translateY(0);
  }
}

.c-sp-fixed-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
  height: 4rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
.c-sp-fixed-bar__btn svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.c-sp-fixed-bar__btn--tel {
  background-color: #f65c02;
}

.c-sp-fixed-bar__btn--mail {
  background-color: #ff9400;
}
/* 付箋に指マークを付けるここから */
/* 親要素を基準にする */
.c-compare__box-wrap {
    position: relative; 
    display: block;
    text-decoration: none;
}

/* 指マークの作成 */
.c-compare__box-wrap::after {
    content: '☝️'; /* 絵文字を使うのが最も簡単です */
    position: absolute;
    bottom: 5px;  /* 下からの位置 */
    right: 30px;   /* 右からの位置 */
    font-size: 50px;
    transform: rotate(-40deg);
    transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-compare__box-wrap::after {
   
    bottom: 5px;  /* 下からの位置 */
    right: 10%;   /* 右からの位置 */
    font-size: 40px;
    
}
}


/* マウスを乗せた時（ホバー時）の動き */
.c-compare__box-wrap:hover::after {
    /* ポイント：
       1. 元の -40deg を維持しつつ、さらに傾ける（例：-55deg）
       2. translateY を組み合わせて上に浮かせる
    */
    transform: rotate(-55deg) translateY(-10px); 
    
    /* もし「時計回り」に少し戻したい場合は rotate(-30deg) に調整してください */
}

/* 付箋に指マークを付けるここまで */

/* ===== お客様の声ここから */
.c-voice__list--survey{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 767px){
  .c-voice__list--survey{
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.75rem;
  }
}

.c-voice-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  overflow: hidden;
}

.c-voice-card__head{
  padding: 1.25rem 1.25rem 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.c-voice-card__title{
  margin: 0;
  font-weight: 800;
  letter-spacing: .02em;
  color: #222;
  font-size: 1.125rem;
}

.c-voice-card__meta{
  margin-top: .5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.c-voice-card__tag{
  display: inline-flex;
  align-items: center;
  padding: .28rem .6rem;
  border-radius: 999px;
  background: rgba(255,148,0,0.12);
  color: #7a3a00;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .02em;
}

/* body: image + text */
.c-voice-card__body{
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 767px){
  .c-voice-card__body{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* thumb */
.c-voice-card__thumb{
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: #f2f2f2;
  box-shadow: 0 12px 26px rgba(0,0,0,0.10);
}

.c-voice-card__thumb-img{
  width: 100%;
  height: auto;
  display: block;
}

.c-voice-card__thumb-note{
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: .75rem;
  padding: .5rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: #222;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .02em;
  text-align: center;
  backdrop-filter: blur(6px);
}

/* Q/A text */
.c-voice-dl{
  margin: 0;
}

.c-voice-dl__row{
  padding: .9rem 0;
  border-top: 1px dashed rgba(0,0,0,0.12);
}

.c-voice-dl__row:first-child{
  border-top: none;
  padding-top: 0;
}

.c-voice-dl__dt{
  margin: 0 0 .35rem 0;
  font-weight: 900;
  color: #222;
  letter-spacing: .02em;
  font-size: 1rem;
}

.c-voice-dl__dd{
  margin: 0;
  color: rgba(0,0,0,0.72);
  line-height: 1.85;
  letter-spacing: .02em;
  font-size: .98rem;
}

@media (max-width: 767px){
  .c-voice-dl__dt{
    font-size: .95rem;
  }
  .c-voice-dl__dd{
    font-size: .92rem;
    line-height: 1.8;
  }
}

/* hover (PC only) */
@media (hover:hover){
  .c-voice-card__thumb:hover{
    transform: translateY(-2px);
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 18px 34px rgba(0,0,0,0.12);
  }
}
/* ===== お客様の声ここまで */