/*==========================
　　共通
============================*/
body {
  font-family: "Zen Maru Gothic", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: #5b4a42;
}

/* PC改行コントロール　<br class="pc-br"> 　*/
.pc-br {
  display: block;
}

@media (max-width: 768px) {
  .pc-br {
    display: none;
  }
}

/* mobile改行コントロール　<br class="u-sp-only"> 　*/
.u-sp-only {
  display: none;
}

@media (max-width: 768px) {
  .u-sp-only {
    display: block;
  }
}

/* リンクボタン */
.common-button-wrap {
  display: flex;
  justify-content: center;
  padding: 0 16px;
  margin-top: 30px;
}

.common-button {
  width: 100%;
  max-width: 320px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  background: #1696e7;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 5px 0 #0d7fc7;
  transition:
    background-color 0.3s,
    transform 0.2s;
}

.common-button::before {
  content: "➜";
  margin-right: 10px;
  font-size: 0.95em;
}

.common-button:hover {
  background: #0f88d6;
  transform: translateY(2px);
  box-shadow: 0 3px 0 #0d7fc7;
}

@media (max-width: 768px) {
  .common-button {
    max-width: 100%;
    font-size: 17px;
    padding: 14px 18px;
  }
}

/*==========================
　　トップビュー メインエリア
============================*/
.top-view {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  background: #f8f3ed;
  margin-top: 12px;
}

.top-view-bg,
.top-view-slide {
  position: absolute;
  inset: 0;
}

.top-view-bg {
  z-index: 1;
}

.top-view-slide {
  opacity: 0;
  z-index: 1;
  transition: opacity 1.8s ease-in-out;
}

.top-view-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.top-view-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.top-view-slide.is-active img {
  animation: topViewSlowZoom 7s ease-out forwards;
}

@keyframes topViewSlowZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.1);
  }
}

.top-view-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.72) 38%,
      rgba(255, 255, 255, 0.28) 70%,
      rgba(255, 255, 255, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(255, 255, 255, 0.12) 36%,
      rgba(255, 255, 255, 0.35) 100%
    );
}

.top-view-inner {
  position: relative;
  z-index: 4;
  max-width: 1300px;
  min-height: 610px;
  margin: 0 auto;
  padding: 72px 20px 58px;
  display: flex;
  align-items: center;
}

.top-view-content-left {
  width: 100%;
  max-width: 680px;
  text-align: left;
}

.top-view-area {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 86px 10px 36px;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid #73c800;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.top-view-area-text {
  margin: 0;
  color: #5b4a42;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.top-view-area-text span {
  font-size: 0.68em;
  color: #6f9f58;
}

.top-view-fuji {
  position: absolute;
  right: 14px;
  bottom: -3px;
  width: 68px;
  height: auto;
}

.top-view-copy {
  margin-bottom: 24px;
}

.top-view-copy h1 {
  margin: 0 0 12px;
  color: #8b5a2b;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-shadow:
    0 0 12px #fff,
    0 0 22px #fff;
  white-space: nowrap;
}

.top-view-copy p {
  margin: 0;
  color: #5b4a42;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  line-height: 1.65;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow:
    0 0 12px #fff,
    0 0 22px #fff;
}

.top-view-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 660px;
}

.top-view-point {
  padding: 15px 8px 14px;
  background: #fff;
  border: 2px solid #73c800;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(7px);
  box-shadow: 0 5px 16px rgba(139, 173, 122, 0.14);
}

.top-view-point-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 7px;
}

.top-view-point-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-view-point p {
  margin: 0;
  color: #5b4a42;
  font-size: 0.86rem;
  line-height: 1.42;
  font-weight: 700;
}

.top-view-point p span {
  display: inline-block;
  margin-bottom: 3px;
  color: #e98a2a;
  font-size: 0.8rem;
}

/* 波 */
.top-view-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 5;
  pointer-events: none;
}

.top-view-wave svg {
  display: block;
  width: 100%;
  height: 44px;
}

.top-view-wave path {
  fill: #fffcf1;
}

@media (max-width: 1000px) {
  .top-view {
    min-height: 560px;
  }

  .top-view-inner {
    min-height: 560px;
    padding: 62px 18px 48px;
    align-items: flex-start;
  }

  .top-view-content-left {
    max-width: 100%;
    text-align: center;
  }

  .top-view-area {
    margin-bottom: 18px;
    padding: 9px 66px 9px 24px;
  }

  .top-view-fuji {
    width: 54px;
  }

  .top-view-copy {
    margin-bottom: 150px;
  }

  .top-view-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
  }

  .top-view-point {
    padding: 12px 8px;
  }
}

@media (max-width: 640px) {
  .top-view {
    min-height: 520px;
    margin-top: 8px;
  }

  .top-view-inner {
    min-height: 520px;
    padding: 52px 15px 38px;
  }

  .top-view-area {
    padding: 8px 18px;
  }

  .top-view-area-text,
  .top-view-copy p {
    font-size: 18px;
  }

  .top-view-area-text span {
    font-size: 14px;
  }

  .top-view-copy {
    margin-bottom: 130px;
  }

  .top-view-copy h1 {
    font-size: 1.85rem;
  }

  .top-view-point-icon {
    width: 32px;
    height: 32px;
  }

  .top-view-point p,
  .top-view-point p span {
    font-size: 16px;
  }

  .top-view-wave svg {
    height: 24px;
  }
}

@media (max-width: 640px) {
  .top-view-inner {
    padding-top: 92px;
  }
}

/*==========================
  セクションタイトル
============================*/
.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  width: 100%;
  margin-bottom: 30px;
}

.section-title-side {
  min-width: 0;
  display: flex;
  align-items: center;
}

.section-title-side-left {
  justify-content: flex-end;
}

.section-title-side-right {
  justify-content: flex-start;
}

.section-title-side img {
  display: block;
  width: min(100%, 210px);
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.section-title-main {
  display: flex;
  justify-content: center;
}

.section-title-main img {
  display: block;
  width: 350px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .section-title {
    column-gap: 14px;
    margin-bottom: 24px;
  }

  .section-title-side img {
    width: min(100%, 140px);
  }

  .section-title-main img {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .section-title {
    column-gap: 8px;
    margin-bottom: 20px;
  }

  .section-title-side {
    height: 34px;
    overflow: hidden;
  }

  .section-title-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .section-title-main img {
    width: 230px;
  }
}

/*==========================
　　特徴
============================*/
.features-section {
  position: relative;
  background-color: #fffcf1;
  overflow: hidden;
  padding-bottom: 104px;
}

.features-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* 波 */
.features-wave-bottom {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.features-wave-bottom svg {
  display: block;
  width: 100%;
  height: 44px;
}

.features-wave-bottom path {
  fill: #ffffff; /* 次のセクション背景色 */
}

/* リボン */
.features-ribbon {
  margin: 0 0 28px;
}

.features-ribbon img {
  width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.features-description {
  font-size: 20px;
  line-height: 1.9;
  margin: 30px auto 64px;
  font-weight: 500;
  color: #4a4036;
}

/* グリッド */
.features-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1;
  min-width: 290px;
  position: relative;
  margin-bottom: 40px;
  padding-top: 18px;
}

/* 丸ラベル（画像の後ろ）*/
.feature-badge {
  position: absolute;
  top: -8px;
  left: 10px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.feature-badge span {
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  display: inline-block;
}

.feature-badge-orange {
  background: #f39800;
}

.feature-badge-blue {
  background: #1696e7;
}

.feature-badge-green {
  background: #73c800;
}

/* 写真 */
.feature-photo {
  width: 84%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.feature-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-card-small-photo .feature-photo {
  width: 71%;
}

/* キャプション */
.feature-caption {
  display: inline-block;
  margin-top: 18px;
  padding: 0 0 6px;
  background: transparent;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 6px solid #fff100;
  position: relative;
  z-index: 4;
}

.feature-caption::before,
.feature-caption::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 18px;
  background: #fff100;
  transform: translateY(-50%) rotate(10deg);
  border-radius: 3px;
  display: none;
}

.feature-caption::before {
  left: -6px;
}

.feature-caption::after {
  right: -6px;
  transform: translateY(-50%) rotate(-10deg);
}

.features-button::before {
  content: "➜";
  margin-right: 10px;
  display: inline-block;
  font-size: 0.95em;
}

.features-button:hover {
  background-color: #0f88d6;
}

.features-wave-bottom {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.features-wave-bottom svg {
  display: block;
  width: 100%;
  height: 44px;
}

.features-wave-bottom path {
  fill: #ffffff; /* 次のセクション背景色に変更 */
}

@media (max-width: 1024px) {
  .features-section {
    margin-top: -22px;
    padding: 100px 0 110px;
  }

  .features-wave-top {
    top: -56px;
  }

  .features-wave-top svg {
    height: 56px;
  }

  .features-wave-bottom {
    bottom: -56px;
  }

  .features-wave-bottom svg {
    height: 56px;
  }

  .features-ribbon img {
    width: 230px;
  }

  .feature-card {
    min-width: 260px;
  }

  .feature-badge {
    width: 98px;
    height: 98px;
    left: 12px;
  }

  .feature-badge span {
    font-size: 16px;
  }

  .feature-photo {
    width: 88%;
  }

  .feature-card-small-photo .feature-photo {
    width: 75%;
  }

  .feature-caption {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .features-section {
    margin-top: -8px;
    padding: 78px 0 90px;
  }

  .features-wave-top {
    top: -32px;
  }

  .features-wave-top svg {
    height: 32px;
  }

  .features-wave-bottom {
    bottom: -40px;
  }

  .features-wave-bottom svg {
    height: 40px;
  }

  .features-ribbon {
    margin-bottom: 24px;
  }

  .features-ribbon img {
    width: 210px;
  }

  .features-description {
    font-size: 18px;
    line-height: 1.9;
    margin: 24px auto 42px;
  }

  .features-description br {
    display: none;
  }

  /* 縦1列 */
  .features-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .feature-card {
    width: 100%;
    min-width: 0;
    margin-bottom: 30px;
    padding-top: 14px;
  }

  /* 丸を少し大きく */
  .feature-badge {
    width: 120px;
    height: 120px;
    top: -8px;
    left: 8px;
  }

  .feature-badge span {
    font-size: 20px;
    line-height: 1.35;
  }

  /* 全体の画像を少し小さく */
  .feature-photo {
    width: 82%;
  }

  /* 頑張る子・優しい子はさらに少し小さく */
  .feature-card-small-photo .feature-photo {
    width: 72%;
  }

  /* 囲いなし + 黄色の下線風 */
  .feature-caption {
    display: inline-block;
    margin-top: 14px;
    padding: 0 0 6px;
    background: transparent;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 6px solid #fff100;
  }

  .feature-caption::before,
  .feature-caption::after {
    display: none;
  }

  .features-button-wrap {
    margin-top: 28px;
  }

  .features-button {
    width: 100%;
    max-width: 320px;
    padding: 15px 20px;
    font-size: 17px;
  }
}

/*==========================
　　特典
============================*/
.benefit-section,
.benefit-section * {
  box-sizing: border-box;
}

.benefit-section {
  position: relative;
  overflow: hidden;
  padding: 58px 20px 86px;
  background: #ffffff;
}

.benefit-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 26px 20px;
  border: 2px solid #73c800;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
}

/* ラベル */
.benefit-label {
  display: inline-block;
  margin: -54px auto 22px;
  padding: 10px 54px;
  background: #73c800;
  color: #ffffff;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  clip-path: polygon(8% 0, 100% 0, 92% 50%, 100% 100%, 8% 100%, 0 50%);
}

/* タイトル */
.benefit-heading {
  margin: 0 0 26px;
  color: #5b4a42;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.benefit-heading span {
  color: #7fae64;
}

/* コンテンツ */
.benefit-content {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 32px;
  align-items: center;
}

/* メイン画像 */
.benefit-main-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

/* 説明 */
.benefit-lead {
  margin: 0 0 22px;
  color: #5b4a42;
  font-size: 20px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: left;
}

/* ポイント */
.benefit-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-point {
  text-align: center;
}

.benefit-point-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #f3f8e8;
  display: grid;
  place-items: center;
}

.benefit-point-icon img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.benefit-point h3 {
  margin: 0 0 8px;
  color: #6f9f58;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
}

.benefit-point p {
  margin: 0;
  color: #5b4a42;
  font-size: 0.96rem;
  line-height: 1.75;
  font-weight: 500;
}

/* 下メッセージ */
.benefit-message {
  margin: 22px 0 0;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fffdf6;
  color: #5b4a42;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* 波 */
.benefit-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.benefit-wave svg {
  display: block;
  width: 100%;
  height: 44px;
}

.benefit-wave path {
  fill: #f1f7e7;
}

@media (max-width: 768px) {
  .benefit-section {
    padding: 54px 16px 82px;
  }

  .benefit-inner {
    padding: 22px 16px 18px;
    border-radius: 20px;
  }

  .benefit-label {
    margin: -48px auto 20px;
    padding: 9px 30px;
  }

  .benefit-heading {
    margin-bottom: 24px;

    line-height: 1.6;
  }

  .benefit-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefit-main-image {
    max-width: 320px;
    margin: 0 auto;
  }

  .benefit-lead {
    text-align: center;
    font-size: 19px;
    line-height: 1.9;
  }

  .benefit-points {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit-message {
    border-radius: 18px;
    font-size: 19px;
  }

  .home-simple-plan-text {
    font-size: 19px;
  }

  .benefit-wave svg {
    height: 24px;
  }

  .benefit-point {
    display: flex;
    align-items: center;
    justify-content: center; /* 追加 */
    gap: 14px;
    text-align: left;
  }

  .benefit-point-icon {
    flex: 0 0 78px;
    margin: 0;
  }

  .benefit-point-text {
    display: flex;
    flex-direction: column;
  }

  .benefit-point h3 {
    margin: 0 0 6px;
  }

  .benefit-point p {
    margin: 0;
  }
}

/*==========================
  プラン（簡潔ver.）
============================*/
.home-simple-plan-section,
.home-simple-plan-section * {
  box-sizing: border-box;
}

.home-simple-plan-section {
  position: relative;
  overflow: hidden;
  padding: 48px 20px 72px;
  background: #f1f7e7;
}

.home-simple-plan-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.home-simple-plan-copy {
  margin: 0 auto 24px;
}

.home-simple-plan-label {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 24px;
  border: 2px solid #73c800;
  border-radius: 999px;
  color: #73c800;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-simple-plan-heading {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.25;
  color: #5b4a42;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-simple-plan-heading::after {
  content: "";
  display: block;
  width: 360px;
  max-width: 80%;
  height: 2px;
  margin: 14px auto 0;
  background: repeating-linear-gradient(
    90deg,
    #bfd4a5 0,
    #bfd4a5 10px,
    transparent 10px,
    transparent 18px
  );
}

.home-simple-plan-text {
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
  color: #5b4a42;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.text-green {
  color: #6f9f58;
  font-weight: 700;
}

.text-pink {
  color: #d87979;
  font-weight: 700;
}

.home-plan-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto 18px;
}

.home-plan-box {
  padding: 22px 20px 20px;
  border: 2px solid #d8e3c5;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 5px 14px rgba(139, 173, 122, 0.13);
}

.home-plan-box-green {
  border-color: #b8d49c;
}

.home-plan-box-pink {
  border-color: #efb6b6;
}

.home-plan-title {
  margin: 0 0 12px;
}

.home-plan-title span {
  display: inline-block;
  min-width: 180px;
  padding: 8px 26px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.home-plan-box-green .home-plan-title span {
  background: linear-gradient(180deg, #8fc94f 0%, #65a832 100%);
}

.home-plan-box-pink .home-plan-title span {
  background: linear-gradient(180deg, #ed8585 0%, #d96868 100%);
}

.home-plan-lead {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.5;
  color: #5b4a42;
  font-weight: 700;
}

.home-plan-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0 0 14px;
}

.home-plan-flow-three {
  grid-template-columns: repeat(3, 1fr);
}

.home-simple-plan-card {
  position: relative;
  padding: 14px 6px 12px;
  border: 2px solid #d8e3c5;
  border-radius: 18px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 4px 12px rgba(139, 173, 122, 0.1);
}

.home-simple-plan-card:not(:last-child)::after {
  content: "▶";
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  z-index: 2;
  color: #b6b0aa;
  font-size: 16px;
}

.home-simple-plan-card-green {
  border-color: #cdddbb;
}

.home-simple-plan-card-pink {
  border-color: #efd0cd;
}

.home-simple-plan-card-yellow {
  border-color: #efd9a8;
}

.home-simple-plan-card-blue {
  border-color: #cdddeb;
}

.home-simple-plan-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #f3f8e8;
  display: grid;
  place-items: center;
}

.home-simple-plan-card-pink .home-simple-plan-icon {
  background: #fbeaea;
}

.home-simple-plan-card-yellow .home-simple-plan-icon {
  background: #fff2d8;
}

.home-simple-plan-card-blue .home-simple-plan-icon {
  background: #eaf4fb;
}

.home-simple-plan-icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.home-simple-plan-card h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  white-space: nowrap;
}

.home-simple-plan-card-green h3 {
  color: #6f9f58;
}

.home-simple-plan-card-pink h3 {
  color: #d87979;
}

.home-simple-plan-card-yellow h3 {
  color: #d9a52e;
}

.home-simple-plan-card-blue h3 {
  color: #6d96b8;
}

.home-plan-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5b4a42;
  font-weight: 600;
}

.home-plan-attention {
  color: #5b4a42;
  font-size: 15px;
  font-weight: 700;
}

.home-simple-plan-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.home-simple-plan-wave svg {
  display: block;
  width: 100%;
  height: 44px;
}

.home-simple-plan-wave path {
  fill: #fffcf1;
}

@media (max-width: 768px) {
  .home-simple-plan-section {
    padding: 56px 12px 82px;
  }

  .home-simple-plan-copy {
    margin-bottom: 26px;
  }

  .home-simple-plan-label {
    margin-bottom: 14px;
    padding: 7px 22px;
    font-size: 14px;
  }

  .home-simple-plan-heading {
    font-size: 32px;
    line-height: 1.45;
  }

  .home-simple-plan-text {
    font-size: 17px;
    line-height: 1.7;
  }

  .home-plan-compare {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 18px;
  }

  .home-plan-box {
    padding: 22px 12px 18px;
    border-radius: 20px;
  }

  .home-plan-title span {
    min-width: 160px;
    padding: 8px 24px;
    font-size: 21px;
  }

  .home-plan-lead {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .home-plan-flow {
    gap: 8px;
    margin-bottom: 16px;
  }

  .home-simple-plan-card {
    padding: 14px 4px 12px;
    border-radius: 15px;
  }

  .home-simple-plan-card:not(:last-child)::after {
    right: -11px;
    font-size: 13px;
  }

  .home-simple-plan-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 8px;
  }

  .home-simple-plan-icon img {
    width: 32px;
    height: 32px;
  }

  .home-simple-plan-card h3 {
    font-size: 12px;
  }

  .home-plan-note {
    font-size: 13px;
    line-height: 1.7;
  }

  .home-plan-attention {
    margin-bottom: 22px;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.6;
  }

  .home-simple-plan-wave svg {
    height: 24px;
  }
}

/*==========================
  料金（簡潔ver.）
============================*/
.home-price-section,
.home-price-section * {
  box-sizing: border-box;
}

.home-price-section {
  position: relative;
  overflow: hidden;
  padding: 76px 20px 108px;
  background: #fffcf1;
}

.home-price-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.home-price-copy {
  margin: 28px 0 34px;
  color: #5b4a42;
  font-size: clamp(1.45rem, 2.8vw, 1.6rem);
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-price-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 46px;
  align-items: center;
  margin-bottom: 34px;
}

.home-price-main {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 85% 22%,
      rgba(255, 255, 255, 0.95),
      transparent 28%
    ),
    linear-gradient(135deg, #ffffff 0%, #f1f7e7 100%);
  border: 2px solid #73c800;
  text-align: left;
}

.home-price-animal {
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.home-price-main-text p {
  margin: 0 0 0px;
  color: #5b4a42;
  font-size: 25px;
  font-weight: 700;
}

.home-price-main-text strong {
  display: block;
  color: #6f9f58;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.home-price-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.home-price-points div {
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffff;
  border: 1px solid #e5dcc0;
  text-align: center;
}

.home-price-points span {
  display: block;
  margin-bottom: 4px;
  color: #5b4a42;
  font-size: 19px;
  font-weight: 700;
}

.home-price-points strong {
  color: #6f9f58;
  font-size: 1.35rem;
}

.home-price-image {
  position: relative;
}

.home-price-image img {
  display: block;
  width: 100%;
  height: auto;
}

.home-price-text {
  max-width: 800px;
  margin: 0 auto 22px;
  color: #5b4a42;
  font-size: 20px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.home-price-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.home-price-wave svg {
  display: block;
  width: 100%;
  height: 44px;
}

.home-price-wave path {
  fill: #eaf3f6;
}

@media (max-width: 768px) {
  .home-price-section {
    padding: 64px 16px 92px;
  }

  .home-price-copy {
    margin: 24px 0 28px;
    font-size: 19px;
  }

  .home-price-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 28px;
  }

  .home-price-main {
    padding: 20px 18px;
    gap: 16px;
  }

  .home-price-animal {
    width: 68px;
    height: 68px;
  }

  .home-price-points {
    gap: 10px;
  }

  .home-price-image {
    max-width: 420px;
    margin: 0 auto;
  }

  .home-price-text {
    text-align: left;
    font-size: 19px;
  }

  .home-price-wave svg {
    height: 24px;
  }

  .home-price-points span {
    font-size: 19px;
  }

  .home-price-points strong {
    font-size: 22px;
  }
}

/*==========================
  お客様の声
============================*/
.voice-section,
.voice-section * {
  box-sizing: border-box;
}

.voice-section {
  width: 100%;
  background: #eaf3f6;
  padding: 90px 0 130px;
  position: relative;
  overflow: hidden;
}

.voice-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.voice-section-title {
  margin: 0 0 46px;
  text-align: center;
}

.voice-section-title img {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.voice-slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
  padding: 0;
  width: 100%;
}

.voice-card {
  flex: 0 0 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: #333;
}

.voice-stars {
  font-size: 16px;
  color: #ffa000;
  margin-bottom: 4px;
}

.voice-name {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 2px;
}

.voice-tag {
  font-size: 12px;
  color: #777;
  margin-bottom: 8px;
}

.voice-text {
  margin: 0;
  font-size: 19px;
  line-height: 1.5;
  color: #444;
}

.slider-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ccc;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
}

.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

.slider-dots {
  text-align: center;
  margin-top: 20px;
}

.slider-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.slider-dots .dot.active {
  background: #73c800;
}

/* 次セクションにつなぐ波 */
.voice-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.voice-wave svg {
  display: block;
  width: 100%;
  height: 44px;
}

.voice-wave path {
  fill: #fffcf1; /* 次のセクション背景色に変更 */
}

.voice-slider:hover {
  animation-play-state: paused;
}

@keyframes voiceLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 1024px) {
  .voice-section {
    padding: 72px 0 110px;
  }

  .voice-slider {
    gap: 20px;
  }

  .voice-card {
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 600px) {
  :root {
    --card-w: 85%;
    --gap: 16px;
  }

  .voice-section {
    padding: 60px 0 92px;
  }

  .voice-inner {
    padding: 20px;
    overflow: hidden;
  }

  .voice-section-title {
    margin-bottom: 34px;
  }

  .voice-section-title img {
    max-width: 210px;
  }

  .voice-slider {
    display: flex;
    justify-content: flex-start;
    gap: var(--gap);
    max-width: 100%;
    position: relative;
  }

  .voice-slider::before,
  .voice-slider::after {
    content: "";
    flex: 0 0 calc((100% - var(--card-w) - var(--gap)) / 2);
  }

  .voice-card {
    flex: 0 0 var(--card-w);
    max-width: var(--card-w);
    margin: 0;
  }

  .slider-btn {
    top: 50%;
    z-index: 2;
  }

  .slider-btn.prev {
    left: 20px;
  }

  .slider-btn.next {
    right: 20px;
  }

  .voice-wave svg {
    height: 24px;
  }

  .voice-text {
    font-size: 19px;
  }
}

/*==========================
  対応エリア
============================*/
.area-section,
.area-section * {
  box-sizing: border-box;
}

.area-section {
  position: relative;
  overflow: hidden;
  padding: 64px 20px 96px;
  background: #fffcf1;
}

.area-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.area-lead {
  margin: 20px 0 24px;
  color: #5b4a42;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.area-map {
  max-width: 860px;
  margin: 0 auto 26px;
}

.area-map img {
  display: block;
  width: 100%;
  height: auto;
}

.area-list {
  max-width: 960px;
  margin: 0 auto 26px;
  border: 1px solid #e5dcc0;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 5px 14px rgba(139, 173, 122, 0.12);
}

.area-list-row {
  display: grid;
  grid-template-columns: 240px 1fr;
}

.area-list-row + .area-list-row {
  border-top: 1px solid #e5dcc0;
}

.area-list-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.area-list-head-free {
  background: #f1f7e7;
  color: #6f9f58;
}

.area-list-head-paid {
  background: #fbeaea;
  color: #d87979;
}

.area-list-head span {
  font-size: 20px;
}

.area-list-head em {
  margin-top: 6px;
  font-style: normal;
  font-size: 20px;
}

.area-list-body {
  padding: 16px 20px;
  text-align: left;
}

.area-list-body p {
  margin: 0;
  color: #5b4a42;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 500;
}

.area-list-body p + p {
  margin-top: 6px;
}

.area-list-body strong {
  margin-right: 0.4em;
  font-weight: 700;
}

.area-car-box {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 24px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 28px;
  padding: 22px 24px;
  border: 2px solid #73c800;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 5px 14px rgba(139, 173, 122, 0.13);
  text-align: left;
}

.area-car-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.area-car-icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f3f8e8;
  display: grid;
  place-items: center;
}

.area-car-icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.area-car-heading h3 {
  margin: 0;
  color: #5b4a42;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.45;
  font-weight: 700;
}

.area-car-heading h3::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 360px;
  height: 2px;
  margin-top: 8px;
  background: repeating-linear-gradient(
    90deg,
    #8fb383 0,
    #8fb383 10px,
    transparent 10px,
    transparent 18px
  );
}

.area-car-text p {
  margin: 0;
  color: #5b4a42;
  font-size: 20px;
  line-height: 2;
  font-weight: 500;
}

.area-car-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.area-car-images img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.area-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.area-wave svg {
  display: block;
  width: 100%;
  height: 44px;
}

.area-wave path {
  fill: #f1f7e7;
}

@media (max-width: 768px) {
  .area-section {
    padding: 64px 16px 92px;
  }

  .area-lead {
    margin: 22px 0 24px;
    font-size: 19px;
  }

  .area-map {
    margin-bottom: 26px;
  }

  .area-list {
    margin-bottom: 28px;
  }

  .area-list-row {
    grid-template-columns: 1fr;
  }

  .area-list-head {
    padding: 14px 16px;
  }

  .area-list-body {
    padding: 16px;
  }

  .area-car-box {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px 18px;
  }

  .area-car-heading {
    align-items: flex-start;
  }

  .area-car-images {
    grid-template-columns: 1fr 1fr;
  }

  .area-wave svg {
    height: 24px;
  }

  .area-car-text p {
    font-size: 19px;
  }
}

/* =========================
   お知らせ・コラム
========================= */
.news-column-section {
  position: relative;
  background: #f1f7e7;
  padding: 90px 0 130px;
  overflow: hidden;
  z-index: 1;
}

.news-column-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 54px;
}

/* 左 */
.news-column-left {
  text-align: left;
}

.news-column-title-img {
  margin: 0 0 22px;
  line-height: 1;
}

.news-column-title-img img {
  display: block;
  max-width: 350px;
  width: 100%;
  height: auto;
}

.news-column-lead {
  margin: 0;
  color: #5b4a42;
  font-size: 20px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* 右 */
.news-column-right {
  min-width: 0;
}

.news-column-slider-wrap {
  width: 100%;
  min-width: 0;
}

/* ビューポート */
.news-column-viewport {
  width: 100%;
  overflow: hidden;
  padding-top: 20px;
}

/* トラック */
.news-column-track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s ease;
  will-change: transform;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.news-column-track:active {
  cursor: grabbing;
}

/* カード幅 */
.news-column-track .news-card {
  flex: 0 0 calc((100% - 28px) / 2);
  width: calc((100% - 28px) / 2);
  min-width: 0;
  box-sizing: border-box;
}

/* カード */
.news-card {
  height: auto;
}

.news-card-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 5;
}

/* 画像 */
.news-card-thumb-wrap {
  position: relative;
}

.news-card-date {
  position: absolute;
  top: -18px;
  left: 12px;
  z-index: 2;
  width: 80px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 10px 6px 8px;
}

.news-card-year {
  display: block;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #7b7b7b;
}

.news-card-md {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  color: #73c800;
}

.news-card-week {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 700;
  color: #7b7b7b;
}

.news-card-thumb {
  width: 100%;
  aspect-ratio: 1.18 / 0.84;
  overflow: hidden;
  border-radius: 12px;
  background: #dcdcdc;
}

.news-card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 本文 */
.news-card-body {
  padding-top: 12px;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  color: #222;
}

.news-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #73c800;
  flex: 0 0 8px;
}

.news-card-title {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
  color: #22242b;
  overflow: hidden;
  height: calc(1.75em * 2);
}

.news-card-excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #666;
  overflow: hidden;
  height: calc(1.8em * 2);
}

/* コントロール */
.news-column-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

/* 矢印 */
.news-column-arrow {
  position: relative;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  flex: 0 0 38px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.news-column-arrow:hover {
  transform: translateY(-2px);
}

.news-column-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #73c800;
  border-right: 2px solid #73c800;
}

.news-column-arrow-prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.news-column-arrow-next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

.news-column-arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* プログレス */
.news-column-progress {
  position: relative;
  width: min(100%, 360px);
  flex: 0 1 360px;
  height: 10px;
}

.news-column-progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: #d8d8d8;
  transform: translateY(-50%);
}

.news-column-progress-fill {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 4px;
  border-radius: 999px;
  background: #73c800;
  transform: translateY(-50%);
  transition:
    width 0.3s ease,
    transform 0.3s ease;
}

/* 波 */
.news-column-bottom-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.news-column-bottom-wave svg {
  display: block;
  width: 100%;
  height: 44px;
}

.news-column-bottom-wave path {
  fill: #ffffff;
}

@media (max-width: 991px) {
  .news-column-section {
    padding: 76px 0 112px;
  }

  .news-column-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .news-column-left {
    text-align: center;
  }

  .news-column-title-img img {
    margin: 0 auto;
    max-width: 230px;
  }

  .news-column-lead {
    text-align: center;
  }

  .news-column-track {
    gap: 24px;
  }

  .news-column-track .news-card {
    flex: 0 0 calc((100% - 24px) / 2);
    width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 767px) {
  .news-column-section {
    padding: 68px 0 92px;
  }

  .news-column-inner {
    padding: 0 20px;
  }

  .news-column-title-img img {
    max-width: 210px;
  }

  .news-column-lead {
    text-align: left;
    font-size: 19px;
    line-height: 1.9;
  }

  .news-column-track {
    gap: 0;
  }

  .news-column-track .news-card {
    flex: 0 0 100%;
    width: 100%;
  }

  .news-column-progress {
    width: min(100%, 180px);
    flex-basis: 180px;
  }

  .news-column-bottom-wave svg {
    height: 24px;
  }

  .news-card-title {
    font-size: 19px;
  }

  .news-card-meta,
  .news-card-excerpt {
    font-size: 15px;
  }
}

/*==========================
　　代表挨拶
============================*/
.representative-section,
.representative-section * {
  box-sizing: border-box;
}

.representative-section {
  position: relative;
  background: #ffffff;
  padding: 120px 20px 154px;
  overflow: hidden;
}

.representative-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
}

/* 下の波 */
.representative-wave-bottom {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.representative-wave-bottom svg {
  display: block;
  width: 100%;
  height: 44px;
}

.representative-wave-bottom path {
  fill: #fff7f3;
}

/* 背景ドット */
.rep-dot {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(255, 142, 145, 0.45);
  z-index: 0;
}

.rep-dot01 {
  width: 34px;
  height: 34px;
  left: 34px;
  top: 92px;
}

.rep-dot02 {
  width: 18px;
  height: 18px;
  left: 22%;
  bottom: 70px;
  background: rgba(255, 142, 145, 0.75);
}

.rep-dot03 {
  width: 10px;
  height: 10px;
  right: 38px;
  top: 38%;
  background: rgba(255, 142, 145, 0.7);
}

.rep-dot04 {
  width: 48px;
  height: 48px;
  right: -16px;
  bottom: 95px;
  background: rgba(255, 142, 145, 0.25);
}

.rep-dot05 {
  width: 22px;
  height: 22px;
  left: -8px;
  bottom: 165px;
  background: rgba(255, 142, 145, 0.35);
}

.rep-dot06 {
  width: 14px;
  height: 14px;
  right: 22%;
  top: 72px;
  background: rgba(255, 142, 145, 0.3);
}

/* 左写真 */
.representative-photo {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  transform: translate(-12px, 34px);
}

.representative-photo img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 18px;
}

/* SP写真はPCで非表示 */
.representative-photo-sp {
  display: none;
}

/* 右カード */
.representative-card {
  position: relative;
  z-index: 3;
  background: #ffffff;
  padding: 48px 54px;
  margin-left: -64px;
  border-radius: 22px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.representative-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 4px;
}

.representative-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9272e;
}

.representative-label p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.04em;
}

.representative-sub {
  margin: 0 0 22px;
  font-size: 14px;
  color: #555;
}

.representative-title {
  margin: 0 0 28px;
  font-size: 25px;
  line-height: 1.65;
  font-weight: 700;
  color: #222;
}

.representative-text p {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 2;
  color: #333;
}

.representative-text p:last-child {
  margin-bottom: 0;
}

.representative-name {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-top: 32px;
  color: #222;
}

.representative-name span {
  font-size: 13px;
}

.representative-name strong {
  font-size: 20px;
  letter-spacing: 0.08em;
}

@media (max-width: 940px) {
  .representative-section {
    padding: 76px 16px 94px;
  }

  .representative-inner {
    display: block;
    max-width: 620px;
  }

  .representative-inner > .representative-photo {
    display: none;
  }

  .representative-photo-sp {
    display: block;
    margin: 18px 0 24px;
    transform: none;
  }

  .representative-photo-sp img {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    height: auto;
    border-radius: 18px;
  }

  .representative-card {
    margin: 0 auto;
    padding: 34px 24px;
    border-radius: 22px;
  }

  .representative-title,
  .representative-name strong {
    font-size: 22px;
  }

  .representative-text p {
    font-size: 18px;
    line-height: 1.9;
  }

  .representative-wave-bottom svg {
    height: 24px;
  }

  .representative-name span {
    font-size: 16px;
  }
}

/*==========================
  会社概要
============================*/
.company-overview {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 80px auto 0;
}

.company-overview-title {
  margin: 0 0 30px;
  text-align: left;
  line-height: 1;
}

.company-overview-title img {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
}

.company-overview-content {
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 56px;
  align-items: stretch;
}

/* 左：会社概要 */
.company-overview-list {
  margin: 0;
}

.company-overview-list div {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 16px 0;
  color: #333;
}

.company-overview-list div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #bdbdbd;
}

/* 左丸 */
.company-overview-list div::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bdbdbd;
}

/* 右丸 */
.company-overview-list div span.company-line-dot {
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bdbdbd;
}

.company-overview-list dt {
  font-weight: 700;
  color: #5b4a42;
  font-size: 20px;
}

.company-overview-list dd {
  margin: 0;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
}

/* 右：地図 */
.company-overview-map {
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.company-overview-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

@media (max-width: 940px) {
  .company-overview {
    margin-top: 56px;
  }

  .company-overview-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .company-overview-title img {
    max-width: 230px;
  }

  .company-overview-list div {
    grid-template-columns: 90px 1fr;
    gap: 14px;
    font-size: 13px;
  }

  .company-overview-list dd {
    font-size: 16.8px;
  }

  .company-overview-map {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .company-overview-map iframe {
    height: 320px;
    min-height: auto;
  }
}

/*==========================
  CTA
============================*/
.cta-section,
.cta-section * {
  box-sizing: border-box;
}

.cta-section {
  position: relative;
  z-index: 2;
  background: #fff7f3;
  padding: 100px 20px 145px;
  margin: 0;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cta-tel {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-tel img {
  display: block;
  width: 100%;
  height: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 44px;
}

.cta-button {
  width: 46%;
  max-width: 520px;
  min-height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.cta-button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.cta-button img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.cta-button-mail {
  background: #1696e7;
}

.cta-button-line {
  background: #06c755;
}

.cta-notes {
  margin-top: 34px;
  text-align: left;
  display: inline-block;
}

.cta-notes p {
  margin: 5px 0;
  font-size: 20px;
  line-height: 1.8;
  color: #5a4a43;
}

/* CTA → Footer 波 */
.cta-footer-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.cta-footer-wave svg {
  display: block;
  width: 100%;
  height: 44px;
}

.cta-footer-wave path {
  fill: #fdf5e6;
}

@media (max-width: 640px) {
  .cta-section {
    padding: 72px 16px 105px;
    margin: 0;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 16px;
    margin-top: 26px;
  }

  .cta-button {
    width: 100%;
    max-width: 100%;
    min-height: 68px;
    font-size: 18px;
    gap: 10px;
  }

  .cta-button img {
    width: 28px;
    height: 28px;
  }

  .cta-notes {
    margin-top: 22px;
  }

  .cta-notes p {
    font-size: 16px;
  }

  .cta-footer-wave svg {
    height: 24px;
  }
}
