@charset "UTF-8";
/* =========================
   0) Reset / Normalize (軽量)
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-padding-top: var(--header-height);
}
body {
  margin: 0;
  font-family: "Noto Sans JP", "Segoe UI", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #000;
}
body.active {
  height: 100vh;
  overflow: hidden;
}
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
}
a {
  text-decoration: none;
  color: #000;
}
a,
a::before,
a::after {
  transition: all 0.5s ease;
}
a:hover {
  opacity: 0.8;
}
img {
  display: block;
  height: auto;
  max-width: 100%; /* 拡大しない */
  vertical-align: bottom;
}
/* =========================
   1) Design Tokens
   ========================= */
:root {
  --header-height: 64px;
  --green: #006d46;
  --green-dark: #183d30;
  --green-light: #eef4dc;
  --teal: #2fa97d;
  --green-line: #00A65D;
  --blue: #055eab;
  --blue-light: #effaff;
  --yellow: #fcd64e;
  --red: #c92e27;
  --red-light: #ec3d4e;
  --pink: #e8214c;
  --bg: #f3f3f3;
  --text: #505251;
  --muted: #6c7a86;
  --shadow: 0 10px 24px rgb(0 0 0 / 8%);
  --radius: 16px;
  --radius-lg: 22px;
  --bold: 700;
  --medium: 500;
  --regular: 400;
}
/* =========================
   2) Base
   ========================= */
html,
body {
  height: 100%;
}
body {
  color: var(--text);
  background: #fff;
}
.inner {
  max-width: 1260px;
  padding: 0 25px;
  margin: 0 auto;
}
@media (width <= 765px) {
  .inner {
    padding: 0 15px;
  }
}
/* =========================
   3) Layout
   ========================= */
.lg-show {
  display: none;
}
.lg-none {
  display: block;
}
.md-show {
  display: none;
}
.md-none {
  display: block;
}
.sp-show {
  display: none;
}
.sp-none {
  display: block;
}
@media (width <= 1200px) {
  .lg-show {
    display: block;
  }
  .lg-none {
    display: none;
  }
}
@media (width <= 765px) {
  .md-show {
    display: block;
  }
  .md-none {
    display: none;
  }
}
@media (width <= 400px) {
  .sp-show {
    display: block;
  }
  .sp-none {
    display: none;
  }
}
@media screen and (width <= 768px) {
  .md-show {
    display: block;
  }
  .md-none {
    display: none;
  }
}
@font-face {
  font-family: Bayon;
  src: url("font/Bayon-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* 共通 */
.text-24 {
  font-size: 24px;
  font-weight: var(--bold);
}
.btn {
  position: relative;
  width: 100%;
  max-width: 523px;
  padding: 20px 10px;
  margin: 70px auto 0;
  text-align: center;
  border-radius: 10px;
}
.btn::after {
  content: "";
  position: absolute;
  top: 29px;
  right: 29px;
  z-index: 1000;
  width: 12px;
  height: 31px;
  background-repeat: no-repeat;
  background-size: cover;
}
.lower-title {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-size: 50px;
  font-weight: var(--bold);
  text-align: center;
  color: var(--text);
}
.lower-title::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  width: 100%;
  height: 25px;
  background-image: url("./img/icon/lower-title-accent.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateX(-50%);
}
.lower-title--large::after {
  background-image: url("./img/icon/lower-title-accent-large.svg");
}
@media (width <= 768px) {
  .lower-title {
    font-size: 38px;
  }
}
/* パンくずリスト */
.breadcrumbs {
  height: 56px;
  padding: 10px 0;
  background-color: var(--green-light);
}
.breadcrumbs__list {
  display: flex;
  height: 100%;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: 8px;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
}
.breadcrumbs__item:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}
.breadcrumbs__item a {
  font-size: 18px;
  font-weight: var(--medium);
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s ease;
}
.breadcrumbs__item a:hover {
  text-decoration: underline;
  color: var(--green-dark);
}
.breadcrumbs__item a:focus {
  border-radius: 2px;
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
/* レスポンシブ対応 */
@media (width <= 768px) {
  .breadcrumbs {
    padding: 15px 0;
  }
  .breadcrumbs__list {
    padding: 0 15px;
  }
  .breadcrumbs__item a {
    font-size: 16px;
  }
}
/* =========================
   Header (top / bottom tabs)
   ========================= */
.header {
	position: relative;
  padding: 0 25px;
  background: #fff;
  border-bottom: 1px solid #e7eceb;
}
.header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--green);
}
.header > .header-top,
.header > .header-bottom {
  max-width: 1220px;
  margin-inline: auto;
}
/* ================= CTA ================= */
.top-cta {
  position: relative;
  height: 440px;
  background-image: url("./img/top/top-cta-bg.png");
  background-position: center;
  background-size: cover;
}
.top-cta__box {
  display: flex;
  min-height: 320px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
}
@media (width >= 960px) {
  .top-cta__box {
    min-height: 380px;
}
}
.top-cta__lead {
  margin: 0 0 20px;
  font-size: clamp(30px, 30px, 32px);
  font-weight: var(--bold);
  color: #fff;
}
.top-cta__btn {
  margin: 20px auto 0;
  background-color: var(--yellow);
  box-shadow: #927611;
}
.top-cta__btn::after {
  width: 17px;
  background-image: url("./img/icon/arrow-black.svg");
}
.top-cta__btn a {
  font-size: clamp(30px, 30px, 32px);
  font-weight: var(--bold);
  color: var(--text);
}
.top-cta__btn:hover {
  box-shadow:
    0 16px 34px rgb(0 0 0 / 20%),
    inset 0 2px 0 rgb(255 255 255 / 50%);
  filter: brightness(1.05);
}
.top-cta__btn:active {
  transform: translateY(1px);
}
@media (width <= 765px) {
  .header::after {
    display: none;
  }
  .top-cta__lead {
    font-size: clamp(24px, 2vw, 28px);
    word-break: auto-phrase;
  }
  .top-cta__btn a {
    font-size: clamp(20px, 2vw, 22px);
  }
  .top-cta__btn::after {
    top: 24px;
    right: 13px;
    width: 12px;
    height: 24px;
  }
}
/* ================= Footer ================= */
.site-footer {
  padding: 48px 0 60px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid #e6ecf5;
}
.site-footer__brand img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 541px;
  margin: 0 auto 18px;
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  justify-content: center;
  margin: 37px 0 16px;
}
.site-footer__nav a {
  padding: 4px 6px;
  font-size: 18px;
  font-weight: var(--bold);
  color: var(--green);
  border-radius: 8px;
}
.site-footer__nav a:hover {
  background: #e7f4ef;
}
.site-footer__copy {
  margin: 8px 0 0;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: #63707f;
}
@media (width <= 768px) {
  .site-footer {
    padding: 40px 0 150px;
  }
  .site-footer__nav {
    flex-direction: column;
    gap: 12px 16px;
  }
}
/* --- TOP --- */
.header__inner {
  max-width: 1220px;
}
/* 変更部分 */
.header-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  /* align-items: end; */
  gap: 16px;
  padding: 12px 0;
}
.header-top__left a{
  display: inline-block;
}
.header-top__left img {
	width: 276px;
  height: auto;
}
.header-top__right {
	display: flex;
	align-items: end;
  justify-content: end;
  gap: 20px;
}
.header-top__tel {
	display: flex;
	align-items: center;
	gap: 7px;
}
/* .header-top__tel p {
	margin: 0;
	font-size: 16px;
	font-weight: var(--medium);
  color: #4c5a53;
} */
.header-top__tel a {
  font-family: Bayon, sans-serif;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  color: var(--green);
}
.header-top__tel a img {
  width: 100%;
  height: auto;
  max-width: 250px;
}
.header-top__holiday {
	display: flex;
  flex-direction: column;
	width: fit-content;
	justify-content: space-between;
}
/* 変更部分 */
.header-top__holiday-title {
  font-size: 16px;
	font-weight: var(--medium);
}
.header-top__holiday-text {
  font-size: 16px;
  font-weight: var(--medium);
}
/* --- BOTTOM: タブ --- */
.header-bottom {
  padding-bottom: 2px;
  margin-top: 5px;
}
/* タブコンテナ */
.header-tabs {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 11px;
}
/* 各タブ（均等幅） */
.header-tabs__item {
  padding: 10px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  background: var(--green);
  border-radius: 14px 14px 0 0;
  transition:
    filter 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  flex: 1;
}
.header-tabs__item:hover {
  filter: brightness(1.05);
}
.header-tabs__item.is-active,
.header-tabs__item[aria-selected="true"] {
  background: var(--green-dark);
}
/* ハンバーガーメニュー */
.hamburger,
.js-hamburger {
  position: fixed;
	top: 10px;
	right: 15px;
  z-index: 9999;
  display: none;
	width: 40px;
	height: 40px;
  background-color: var(--green);
	border-radius: 10px;
  cursor: pointer;
}
.hamburger span,
.js-hamburger span {
  position: absolute;
  display: inline-block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.5s ease;
}
.hamburger span:first-child,
.js-hamburger span:first-child {
	top: 10px;
	right: 17%;
}
.hamburger span:nth-child(2),
.js-hamburger span:nth-child(2) {
	top: 19px;
	right: 17%;
}
.hamburger span:nth-child(3),
.js-hamburger span:nth-child(3) {
	top: 28px;
	right: 17%;
}
/* アクティブ時（×に変形＋フェード） */
.js-hamburger.is-active span:first-child {
  top: 19px;
  animation: ham_btn_span01_active 0.75s forwards;
}
.js-hamburger.is-active span:nth-child(2) {
  opacity: 0;
  animation: ham_btn_span02_active 0.75s forwards;
}
.js-hamburger.is-active span:nth-child(3) {
  top: 19px;
  animation: ham_btn_span03_active 0.75s forwards;
}
/* 非アクティブに戻す時のアニメーション */
.js-hamburger:not(.is-active) span:first-child {
  animation: ham_btn_span01_reverse 0.75s forwards;
}
.js-hamburger:not(.is-active) span:nth-child(2) {
  animation: ham_btn_span02_reverse 0.75s forwards;
}
.js-hamburger:not(.is-active) span:nth-child(3) {
  animation: ham_btn_span03_reverse 0.75s forwards;
}
/* キーフレーム（Sass→CSS） */
@keyframes ham_btn_span01_active {
  0% {
    opacity: 1;
    transform: rotate(0);
  }
  50% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-45deg);
  }
}
@keyframes ham_btn_span01_reverse {
  0% {
    transform: rotate(-45deg);
  }
  50% {
    transform: translateY(14px) rotate(0);
  } /* prem(14) */
  100% {
    transform: rotate(0);
  }
}
@keyframes ham_btn_span02_active {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ham_btn_span02_reverse {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ham_btn_span03_active {
  0% {
    opacity: 1;
    transform: rotate(0);
  }
  50% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes ham_btn_span03_reverse {
  0% {
    transform: rotate(45deg);
  }
  50% {
    transform: translateY(-14px) rotate(0);
  } /* prem(-14) */
  100% {
    transform: rotate(0);
  }
}
/* ===== Overlay ===== */
.overlay,
.js-overlay {
  position: fixed;
  z-index: 8000;
  background: rgb(0 0 0 / 50%);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  inset: 0;
}
.overlay.is-active,
.js-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
/* ===== Drawer (右からスライド) ===== */
.drawer,
.js-drawer {
  position: fixed;
  top: 0;
  right: -100%; /* 初期は画面外 */
  z-index: 9997;
  width: 77vw;
  height: 100vh;
  max-width: 400px;
  padding: 11px 0;
  background: var(--bg);
  box-shadow: -8px 0 24px rgb(0 0 0 / 12%);
  transition: right 0.6s ease;
}
/* ドロワーメニューの上部分に緑の帯を追加 */
.drawer::before,
.js-drawer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 65px;
  background-color: var(--green);
}
.drawer.is-active,
.js-drawer.is-active {
	right: 0;
}
.drawer__nav {
	padding: 0;
  margin: 100px 0 0;
}
.drawer__list {
	padding: 0;
  margin: 0;
}
.drawer__nav-link {
	position: relative;
  display: flex;
  padding: 16px 24px;
  border-bottom: 1px solid var(--green);
  transition: background-color 0.3s ease;
  align-items: center;
}
.drawer__nav-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 16px;
}
.drawer__nav-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translate(-50%, -50%);
}
/* 各アイコンのスタイル */
.drawer__nav-icon--home::after {
  background-image: url("./img/icon/icon-home.png");
}
.drawer__nav-icon--flow::after {
  background-image: url("./img/icon/icon-beginner.png");
}
.drawer__nav-icon--search::after {
  background-image: url("./img/icon/icon-car.png");
}
.drawer__nav-icon--price::after {
  background-image: url("./img/icon/icon-money.png");
}
.drawer__nav-icon--faq::after {
  background-image: url("./img/icon/icon-faq.png");
}
.drawer__nav-icon--application::after {
  background-image: url("./img/icon/icon-contact.png");
}
.drawer__nav-text {
  flex: 1;
  font-size: 25px;
  font-weight: var(--medium);
  color: var(--green);
}
/* 右側の矢印（既存の疑似要素を復活） */
.drawer__nav-link::after {
  content: "";
  position: absolute;
	top: 24px;
  right: 30px;
  z-index: 1000;
	width: 10px;
	height: 24px;
  background-image: url("./img/icon/arrow-green.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
/* ===== Utility ===== */
body.no-scroll {
  overflow: hidden;
}
/* ===== ヘッダーレスポンシブ ===== */
@media screen and (width <= 768px) {
  .header {
    padding: 0 15px;
  }
  .header-top__left img {
		width: 47vw;
    height: 40px;
		min-width: 200px;
	}
  .hamburger,
  .js-hamburger {
    display: inline-block;
  } /* ←ここは必ず表示に */
  .header-tabs {
    display: none;
  } /* モバイルでタブナビを隠す場合 */
  .header-top__right {
    display: none;
  }
}
@media screen and (width <= 400px) {
  .drawer,
  .js-drawer {
  width: 100vw;
	max-width: 100%;
}
}
/* メインビュー */
.mv {
  min-height: 560px;
  background-color: var(--bg);
}
/* Swiper Styles */
.mv-swiper {
  width: 100%;
  height: 85vh;
  /* min-height: 560px; */
  min-height: 680px;
}
.mv-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
/* Slide 1: 既存のMVコンテンツ */
.mv-swiper .swiper-slide:first-child {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}
/* スライダー内のMVコンテンツの調整 */
.mv-swiper .mv__top {
  position: relative;
  width: 100%;
  height: 100%;
}
.mv-swiper .mv__main-container {
  left: 23%;
  width: 60vw;
  background-position: right;
}
.mv-swiper .mv__main-text-wrap {
  position: absolute;
  top: 47%;
  left: 25%;
  transform: translate(-50%, -50%);
}
.mv-swiper .mv__main-title {
  margin: 25px auto 0;
  text-align: center;
}
.mv-swiper .mv__lead {
  margin: 20px auto 0;
  font-size: 22px;
  font-weight: var(--bold);
  line-height: 1.5;
  text-align: left;
  text-shadow:
    -2px -2px 2px white,
    2px -2px 2px white,
    -2px 2px 2px white,
    2px 2px 2px white,
    -1px -1px 0 white,
    1px -1px 0 white,
    -1px 1px 0 white,
    1px 1px 0 white;
  color: #131212;
}
/* Slide 2: 画像のみ */
.mv__image-slide {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.mv__slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Swiper Pagination */
.mv-swiper .swiper-pagination {
  bottom: 30px;
  z-index: 10;
}
.mv-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: rgb(255 255 255 / 50%);
  opacity: 1;
  transition: all 0.3s ease;
}
.mv-swiper .swiper-pagination-bullet-active {
  background: var(--green);
  transform: scale(1.2);
}
/* レスポンシブ対応 */
@media (width <= 768px) {
  .mv-swiper .swiper-pagination {
    bottom: 20px;
  }
  .mv-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}
/* PC用MV */
.mv__pc {
  display: block;
}
/* スマートフォン用MV */
.mv__sp {
  display: none;
}
/* レスポンシブ対応 */
@media (width <= 768px) {
  .mv__pc {
    display: none;
  }
  .mv__sp {
    display: block;
  }
}
/* スマートフォン用MV Swiper */
.mv-sp-swiper {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.mv-sp-swiper .swiper-wrapper {
  padding: 0;
  margin: 0;
}
/* スマホ版のMVセクション全体 */
.mv__sp {
  position: relative;
  display: none; /* デフォルトで非表示 */
}
/* スマホ版の既存スタイルを上書き */
.mv__sp .mv__sp-image {
  display: block;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.mv__sp .mv__sp-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.mv__sp .mv__sp-content {
  display: flex;
  margin-top: -20px; /* 余白を調整 */
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* スマホ版ボタン群 */
.mv__sp-btn {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
}
.mv__sp-btn-inner {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}
.mv__sp-btn-text {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}
.mv__sp-btn-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mv-sp-swiper .swiper-slide {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
/* スマホ版Slide 1: 既存のMVコンテンツ */
.mv-sp-swiper .swiper-slide:first-child {
  background: transparent;
}
/* スマホ版Slide 2: 画像のみ */
.mv__sp-image-slide {
  display: block;
  width: 100%;
  height: auto;
}
.mv__sp-slide-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
/* スマホ版Swiper Pagination */
.mv-sp-swiper .swiper-pagination {
  bottom: 20px;
  z-index: 10;
}
.mv-sp-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: rgb(255 255 255 / 50%);
  opacity: 1;
  transition: all 0.3s ease;
}
.mv-sp-swiper .swiper-pagination-bullet-active {
  background: var(--green);
  transform: scale(1.2);
}
.mv__sp-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.mv__sp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv__sp-content {
  background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
}
.mv__sp-text {
  margin-bottom: 30px;
  text-align: center;
}
.mv__sp-title {
  margin: 0 0 15px;
  font-size: 28px;
  font-weight: var(--bold);
  text-shadow: 1px 1px 2px white;
  color: var(--green);
}
.mv__sp-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px white;
  color: var(--text);
}
.mv__sp-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mv__sp-btn {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
  transition: transform 0.3s ease;
}
.mv__sp-btn:hover {
  transform: translateY(-2px);
}
.mv__sp-btn--orange {
  color: white;
  background: linear-gradient(135deg, #ff8c42, #ff6b1a);
}
.mv__sp-btn--red {
  color: white;
  background: linear-gradient(135deg, #ff4757, #ff3742);
}
.mv__sp-btn--blue {
  color: white;
  background: linear-gradient(135deg, #3742fa, #2f3542);
}
.mv__sp-btn-icon {
  margin-right: 12px;
  font-size: 20px;
}
.mv__sp-btn-text {
  flex: 1;
  font-size: 16px;
  font-weight: var(--medium);
}
.mv__sp-btn-arrow {
  font-size: 18px;
  font-weight: var(--bold);
}
.mv__top {
  position: relative;
  height: 100%;
  min-height: 560px;
  background-image: url("./img/top/mv.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.mv__main-title {
  margin: 25px auto 0;
  text-align: center;
}
/* 3つのボタン（画像を使う想定） */
.mv__btn {
  position: relative;
  z-index: 1000;
  height: 25%;
  max-height: 210px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.mv__btn::before {
  content: "";
  position: absolute;
  z-index: 0;
  background-image: url("./img/top/mv-btn-bg.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  inset: -70px 0 0;
}
.mv__btn-inner {
  position: relative;
  z-index: 1;
  max-width: 1250px;
  padding: 0 25px;
  margin: 0 auto;
}
.mv__btn-text {
  display: none;
  margin: 0 0 14px;
  text-align: center;
}
.mv__btn-item {
  display: grid;
  padding-top: 20px;
  margin-top: 11px;
  gap: 33px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mv__btn a {
  display: block;
  filter: drop-shadow(0 10px 18px rgb(0 0 0 / 18%));
  transition:
    transform 0.06s ease,
    filter 0.2s ease;
}
.mv__btn a:hover {
  filter: drop-shadow(0 16px 22px rgb(0 0 0 / 22%));
}
.mv__btn a:active {
  transform: translateY(1px);
}
.mv__btn img {
  display: block;
  width: 100%;
  height: auto;
}
/* 画面幅が狭い時のレイアウト */
@media (width <= 1200px) {
  /* .mv {
    height: 700px;
  } */
  .mv__top {
    min-height: 440px;
    background-image: url("./img/top/mv-1200.jpg");
    background-position: right;
  }
  .mv__main-container {
    left: 23%;
    width: 60vw;
    background-position: right;
   }
   .mv__sub-title {
    width: fit-content;
  }
  .mv__main-text-wrap {
    top: 24%;
    left: 37%;
    width: 70%;
   }
   .mv-swiper .mv__main-text-wrap {
    top: 24%;
    left: 37%;
    width: 70%;
   }
  .mv__lead {
    display: none;
    /* font-size: clamp(20px, 2.4vw, 18px); */
  }
  .mv__btn {
    height: 32%;
  }
  .mv__btn-text {
    display: block;
    font-size: clamp(17px, 2vw, 22px);
    font-weight: var(--bold);
    line-height: 1.5;
    color: #fff;
  }
}
@media (width <= 768px) {
  .mv {
    height: auto;
    min-height: auto;
  }
  .mv__top {
    display: none;
  }
  .mv__btn {
    display: none;
  }
  .mv__sp {
    display: block;
    padding: 0;
  }
  .mv__sp-content {
    position: relative;
    display: flex;
    width: 100%;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  .mv__sp-text-box {
    /* position: relative; */
    position: absolute;
    top: 40px;
    width: 100%;
    padding: 30px 0;
    margin-top: 0; /* 上部の余白を削除 */
    /* background-color: #CCE2DA; */
  }
  /* .mv__sp-text-box::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    width: 100%;
    height: 20px;
    background-image: url('./img/top/top-text-box-line.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateX(-50%);
  } */
  /* .mv__sp-text-box::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 100%;
    height: 20px;
    background-image: url('./img/top/top-text-box-line.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateX(-50%);
  } */
  .mv__sub-title {
    position: relative;
    z-index: 1;
    display: flex;
    margin: 0 auto 20px;
    justify-content: center;
  }
  .mv__sub-title img {
    height: auto;
    max-width: 85%;
  }
  .mv__main-title {
    display: flex;
    justify-content: center;
    max-width: 85%;
    margin: 0 auto 30px;
  }
  .mv__main-title img {
    height: auto;
    max-width: 100%;
  }
  .mv__lead {
    display: block;
    /* font-size: clamp(20px, 2.4vw, 18px); */
  }
  .mv__btn-item {
    display: flex;
    width: 100%;
    padding: 40px 0 32px;
    margin-top: 0;
    background-color: var(--green);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
  .btn--orange img,
  .btn--red img,
  .btn--blue img {
    aspect-ratio: 240/77;
    object-fit: contain;
  }
}
@media (width <= 550px) {
  .mv__sp-image {
    height: 250px;
  }
  .mv__sp-text-box::before {
    top: -11px;
  }
}
/* =========================
   LINE Application section
========================= */
.line-application {
  padding: 96px 0;
}
.line-application__inner {
  width: 100%;
}
/* ヘッダー */
.line-application__divider {
  width: 100%;
  height: 1px;
  margin-top: 85px;
}
/* メインコンテンツ */
.line-application__content {
  padding: 0 10px 10px;
  margin-bottom: 20px;
  background-color: #02B166;
  border-radius: 10px;
}
.line-application__main-title {
  padding: 30px 0;
  text-align: center;
}
.line-application__main-title h2 {
  margin: 0;
  font-size: 36px;
  font-weight: var(--bold);
  line-height: 1.4;
  color: white;
}
.line-application__main-title-40 {
  font-size: 40px;
}
.line-application__main-title-50 {
  font-size: 50px;
}
/* STEP */
.line-application__steps {
  background-color: white;
  border-radius: 0 0 10px 10px;
}
.line-application__step-container {
  padding: 50px;
}
.line-application__step-body {
  display: flex;
  align-items: flex-start;
  gap: 12%;
}
.line-application__step-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 159px;
  height: 159px;
  font-size: 36px;
  font-weight: var(--bold);
  color: white;
  background-color: #000;
  border-radius: 0;
}
.line-application__step-content {
  flex: 1;
}
/* ステップヘッダー */
.line-application__step-header {
  margin-bottom: 40px;
}
.line-application__badge {
  position: relative;
  display: inline-block;
  padding: 6px 33px;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: var(--bold);
  color: var(--green);
  background-color: #FFD700;
  border-radius: 20px;
}
.line-application__badge::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 8px solid #FFD700;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: translateX(-50%);
}
.line-application__step-title {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: var(--bold);
  line-height: 1.3;
  word-break: break-all;
  color: var(--green-line);
  overflow-wrap: break-word;
  hyphens: auto;
}
.line-application__step-subtitle {
  font-size: 20px;
  font-weight: var(--bold);
  word-break: auto-phrase;
  color: var(--text);
}
.line-application__step-description {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: var(--medium);
  line-height: 1.4;
  color: var(--text);
}
.line-application__step-img {
  display: flex;
  margin-left: 10%;
  justify-content: center;
}
/* QRコードセクション */
.line-application__qr-section {
  display: flex;
  margin: 30px 0;
}
.line-application__phone-image {
  height: 100%;
  max-width: 469px;
  object-fit: contain;
}
.line-application__phone-image-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* ボタン */
.line-application__buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}
.line-application__button-group {
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 8px;
}
.line-application__button-label {
  font-size: 14px;
  color: #333;
  flex: 1;
}
.line-application__button-arrow {
  font-size: 16px;
  font-weight: var(--bold);
  color: #333;
}
.line-application__button {
  width: 100%;
  padding: 8px 56px;
  font-size: 16px;
  font-weight: var(--medium);
  text-align: center;
  text-decoration: none;
  color: #333;
  background-color: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.line-application__button--pink {
  background-color: transparent;
}
.line-application__button--pink:hover {
  background-color: rgb(255 255 255 / 20%);
}
.line-application__button--beige {
  background-color: transparent;
}
.line-application__button--beige:hover {
  background-color: rgb(255 255 255 / 20%);
}
.line-application__button img {
  width: 100%;
}
.line-application__button-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
/* 矢印 */
.line-application__arrow {
  display: flex;
  padding: 0 56px;
  margin-top: 64px;
  justify-content: center;
}
.line-application__arrow img {
  width: 100%;
}
/* レスポンシブ対応 */
@media (width <= 1050px) {
  .line-application__step-body {
    gap: 9%;
  }
  .line-application__step-label{
    width: 100px;
    height: 100px;
    font-size: 24px;
  }
  .line-application__main-title h2 {
    margin: 0;
    font-size: 32px;
    font-weight: var(--bold);
    line-height: 1.4;
    color: white;
  }
  .line-application__main-title-40 {
    font-size: 40px;
  }
  .line-application__main-title-50 {
    font-size: clamp(2.5rem, 0.822rem + 3.509vw, 3.125rem);
  }
}
@media (width <= 768px) {
  .line-application__step-body {
    flex-direction: column;
  }
  .line-application__step-label {
    width: 100%;
    height: 60px;
    margin-bottom: 32px;
    border-radius: 0;
  }
  .line-application__step-container {
  padding: 50px;
  padding: 60px 15px 0;
  text-align: center;
}
  .line-application__step-content {
    margin: 0 auto;
    align-items: center;
  }
  .line-application__qr-section {
    justify-content: center;
    margin: 30px 0;
  }
  .line-application__buttons {
    margin-top: 0;
    flex-direction: row;
    justify-content: center;
  }
  .line-application__button {
    padding: 8px 15px;
  }
  .line-application__step-title {
    font-size: clamp(1.313rem, 0.651rem + 2.821vw, 2rem);
    word-break: auto-phrase;
  }
  .line-application__step-description {
    margin-bottom: 0;
    font-size: clamp(1.25rem, 1.01rem + 1.026vw, 1.5rem);
    text-align: left;
    /* word-break: auto-phrase; */
  }
  .line-application__step-img {
    margin-left: 0;
  }
  .line-application__step-img img {
    width: 85%;
    max-width: 460px;
    margin: 0 auto;

  }
  .line-application__arrow {
    padding: 0 20px;
    margin-top: 20px;
  }
  .line-application__content {
    padding: 10px;
  }
  .line-application__badge {
    padding: 6px 13px;
  }
}
/* URLボタン */
.line-application__url-button {
  margin: 15px 0;
  text-align: left;
}
.line-application__url-link {
  display: inline-block;
  padding: 12px 24px;
  font-size: 20px;
  font-weight: var(--medium);
  text-decoration: none;
  color: white;
  background-color: var(--green-line);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.line-application__url-link:hover {
  background-color: #00a65d;
  box-shadow: 0 4px 12px rgb(0 0 0 / 20%);
  transform: translateY(-2px);
}
@media (width <= 768px) {
  .line-application__url-button {
    text-align: center;
  }
}
@media (width <= 550px) {
  .line-application {
    padding: 60px 0;
  }
  .line-application__main-title h2 {
    font-size: 20px;
  }
  .line-application__main-title-40 {
    font-size: 28px;
  }
  .line-application__main-title-50 {
    font-size: 32px;
  }
  .line-application__phone-frame {
    width: 180px;
    height: 270px;
  }
  .line-application__qr-code {
    width: 100px;
    height: 100px;
  }
  .line-application__button-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .line-application__button-label {
    flex: none;
  }
  .line-application__url-link {
    padding: 12px 10px;
  }
}
/* =========================
   Top About section
========================= */
.top-about {
  padding: 100px 0 95px;
  background: var(--bg);
}
@media (width <= 1200px) {
  .top-about {
    padding: 80px 0 95px;
  }
}
.top-about__container {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}
.top-about__title h3 {
  padding: 33px 10px;
  font-size: clamp(30px, 2.6vw, 36px);
  font-weight: 800;
  text-align: center;
  color: #fff;
  background: var(--green);
  border-radius: 10px 10px 0 0;
}
.top-about__title .text-40 {
    font-size: 1.1em;
}
.top-about__title .text-50 {
    font-size: 1.38em;
}
/* 3カラムのカード */
.top-about__content {
  display: grid;
  gap: 25px;
  padding: 0 6% 65px;
  grid-template-columns: repeat(3, 1fr);
}
/* 各アイテム（カード本体） */
.top-about__item {
  position: relative;
  display: flex;
  margin-top: 40px;
  flex-direction: column;
}
  /* 画像 */
.top-about__item img {
  width: 100%;
  aspect-ratio: 337 / 187;
  object-fit: cover;
  margin-top: 22px;
}
/* バッジ */
.top-about__item h4 {
  position: relative;
  padding: 25px 10px;
  margin-bottom: 18px;
  overflow: visible;
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  background: var(--teal);
  border-radius: 12px;
}
/* ▼ 三角（擬似要素：画像版） */
.top-about__item h4::after {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 24px;
  height: 24px;
  background: url("/img/icon/triangle-green.png") center/contain no-repeat;
  transform: translate(-50%, -4px);
}
  /* テキスト */
.top-about__item p {
  margin-top: 20px;
  font-size: 18px;
  color: #2a2f33;
}
@media (width <= 1200px) {
  .top-about__item h4 {
    font-size: clamp(16px, 1.8vw, 24px);
  }
  .top-about__content {
    padding: 0 3% 40px;
  }
}
@media (width <= 765px) {
  .top-about {
    padding: 64px 0;
  }
  .top-about__container {
    max-width: 600px;
    margin: 0 auto;
  }
  .top-about__content {
    grid-template-columns: 1fr;
  }
  .top-about__item h4 {
    font-size: clamp(24px, 1.8vw, 26px);
  }
}
@media (width <= 550px) {
  .top-about__title h3 {
    font-size: clamp(24px, 2vw, 27px);
  }
}
/* =========================
   Top Points
   ========================= */
.top-points {
  padding: 96px 0;
  background-color: #fff;
}
/* セクション見出し */
.top-points__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  margin-bottom: 40px;
}
.top-points-list {
  display: grid;
  max-width: 1200px;
  padding: 0;
  margin: 40px auto 0;
  counter-reset: point;
  gap: 18px;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}
/* カード本体 */
.top-point-card {
  position: relative;
  display: grid;
  padding: 16px;
  background: #f8fbfa;
  border: 2px solid var(--green);
  border-radius: 14px;
  counter-increment: point;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}
.top-point-card:hover {
  box-shadow: 0 8px 24px rgb(0 0 0 / 6%);
  transform: translateY(-2px);
}
.top-point-card__icon {
  display: grid;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 6px;
  background: #fff;
  border: 1px solid #e6efed;
  border-radius: 50%;
  place-items: center;
}
.top-point-card__icon img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.top-point-card h4 {
  display: flex;
  margin: 2px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #1f3f33;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
/* 緑の丸数字バッジ（①風デザインは従来のまま） */
.top-point-card h4::before {
  content: counter(point);
  display: grid;
  width: 30px;
  height: 30px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
  color: #fff;
  background: #1aa16a;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgb(0 0 0 / 8%);
  place-items: center;
  flex: 0 0 auto;
}
.top-point-card p {
  margin: 10px 0;
  line-height: 1.75;
  color: #425a63;
}
/* 新しい3つの安心サポートデザイン */
.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 30px;
  list-style: none;
  max-width: 1200px;
  padding: 0;
  margin: 0 auto;
  align-items: stretch;
}
.support-card {
  display: flex;
  height: 100%;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.support-card__number {
  position: relative;
  z-index: 2;
  display: flex;
  width: 72px;
  height: 72px;
  padding-bottom: 6px;
  font-size: 48px;
  font-weight: 700;
  color: var(--green);
  background: #EFEA3A;
  border: 3px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
  align-items: center;
  justify-content: center;
}
.support-card__content {
  display: flex;
  width: 100%;
  min-height: 500px;
  padding: 42px 24px;
  margin-top: -34px;
  background: #f0f8f0;
  border: 2px solid var(--green);
  border-radius: 12px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
}
.support-card__content:hover {
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
  transform: translateY(-5px);
}
.support-card__header {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  align-items: center;
  justify-content: center;
}
.support-card__icon {
  display: flex;
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.support-card__icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.support-card__header h4 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--green);
}
.support-card__details {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 30px;
}
.support-detail {
  text-align: left;
}
.support-detail__icon {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
  margin-bottom: 8px;
}
.support-detail__icon h5 {
  margin: 0 0 5px;
  font-size: 20px;
  line-height: 1.4;
  color: var(--green);
}
.support-detail__text {
  flex: 1;
}
.support-detail__text p {
  margin: 0;
  font-size: 18px;
  font-weight: var(--medium);
  line-height: 1.5;
  color: var(--text);
}
@media (width <= 1024px) {
  .top-points__head {
    flex-direction: column;
  }
  .support-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
  }
  .support-card__content {
    min-height: 400px;
  }
}
@media (width <= 765px) {
  .top-points {
    padding: 64px 0;
  }
  .top-points-list {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 40px auto 0;
   }
   .top-points__head {
    gap: 40px;
   }
  .top-points__head img {
    width: 200px;
   }
  .top-points__head .top-points__title img {
    width: auto;
   }
  .support-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 350px;
    margin: 30px auto 0;
  }
  .support-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .support-card__content {
    height: auto;
    min-height: auto;
    padding: 20px 15px;
    flex: none;
  }
  .support-card__number {
    width: 41px;
    height: 41px;
    padding-bottom: 3px;
    margin-bottom: 15px;
    font-size: 24px;
  }
  .support-card__header {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .support-card__icon {
    width: 35px;
    height: 35px;
  }
  .support-card__icon img {
    width: 18px;
    height: 18px;
  }
  .support-card__header h4 {
    font-size: 32px;
  }
  .support-details {
    gap: 15px;
  }
  .support-detail__icon {
    width: 100%;
    justify-content: center;
  }
  .support-detail__icon h5 {
    font-size: 18px;
  }
  .support-detail__icon img {
    width: 35px;
    height: 35px;
  }
  .support-detail__text p {
    font-size: 16px;
  }
}
/* =========================
   Price Section
   ========================= */
.price-section {
  padding: 96px 0;
}
.price-section__inner {
  max-width: 1265px;
}
.price-section__container {
  text-align: center;
}
.price-section__title {
  position: relative;
  margin: 0 0 46px;
  font-size: 48px;
  font-weight: var(--bold);
  line-height: 1.2;
  text-align: center;
  color: var(--dark);
}
.price-section__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 4px;
  background-color: var(--dark);
  border-radius: 2px;
  transform: translateX(-50%);
}
.price-banner {
  padding: 20px 0;
  background-color: #EC3D4E;
  border-radius: 8px 8px 0 0;
}
.price-banner__title {
  margin: 0;
  font-size: 50px;
  font-weight: var(--bold);
  line-height: 1.2;
  text-align: center;
  color: white;
}
.price-body {
  display: flex;
  padding: 67px 67px 32px;
  background-color: #f3f3f3;
  flex-direction: column;
  align-items: left;
  border-radius: 0 0 8px 8px;
}
.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
  background-color: #f3f3f3;
}
.price-card {
  display: flex;
  height: 100%;
  text-align: center;
  border-radius: 0 0 10px 10px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  flex-direction: column;
  align-items: center;
}
.price-card__icon {
  display: flex;
  width: 100%;
  height: auto;
  min-height: 123px;
  background: #FEDADE;
  border-radius: 10px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.price-card__icon img {
  object-fit: contain;
}
.price-card__text-box{
  display: flex;
  width: 100%;
  min-height: 135px;
  padding: 20px 13px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  flex: 1;
  flex-direction: column;
}
.price-card__title {
  position: relative;
  padding-bottom: 10px;
  margin: 0 0 15px;
  font-size: clamp(1.375rem, 0.75rem + 0.833vw, 1.5rem);
  font-weight: var(--bold);
  line-height: 1.3;
  color: var(--dark);
  border-bottom: 2px solid var(--red);
}
.price-card__amount {
  margin: 0;
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.2;
  color: var(--text);
}
.price-card__amount span {
  margin-right: 8px;
  font-size: 40px;
  color: var(--red);
}
/* .price-card:nth-child(3) .price-card__amount {
  font-size: 36px;
  color: var(--red);
} */
.price-card__amount--estimate {
  font-size: 24px;
  color: var(--dark);
}
.price-card__amount--original {
  margin-bottom: 4px;
  font-size: 22px;
  color: var(--text);
}
.price-notes {
  margin-top: 30px;
  text-align: left;
}
.price-note {
  font-size: 18px;
}
.price-note:last-child {
  margin-bottom: 0;
}
/* Price Section Responsive */
@media (width <= 1200px) {
  .price-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    height: 100%;
  }
  .price-card__icon {
    height: auto;
  }
}
@media (width <= 1024px) {
  .price-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .price-card__amount {
    font-size: 28px;
  }
  .price-card__amount--estimate {
    font-size: 20px;
  }
}
@media (width <= 765px) {
  .price-section {
    padding: 64px 0;
  }
  .price-section__title {
    margin-bottom: 30px;
    font-size: 36px;
  }
  .price-banner {
    padding: 15px 0;
    margin-bottom: 40px;
  }
  .price-banner__title {
    font-size: 24px;
  }
  .price-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .price-card {
    max-width: 400px;
    margin: 0 auto;
  }
  .price-card__icon img {
    object-fit: contain;
  }
  .price-card__amount {
    font-size: 24px;
  }
  .price-card__amount--estimate {
    font-size: 18px;
  }
}
@media (width <= 480px) {
  .price-body {
    padding: 6%;
  }
  .price-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .price-card {
    padding: 20px 15px;
  }
  .price-notes {
    margin-top: 0;
  }
}
.top-auction {
  padding: 96px 0;
  background-color: #faf2e0;
}
.top-auction__head {
  position: relative;
  z-index: 2;
  max-width: 1057px;
  margin: 0 auto;
  text-align: center;
  background-color: #ffe02e;
  border-radius: 10px 10px 0 0;
}
.top-auction__head h3 {
  padding: 40px 10px;
  font-size: 50px;
  font-weight: var(--bold);
  color: var(--text);
}
.top-auction__content {
  position: relative;
  z-index: 1;
  padding: 165px 55px 60px;
  margin: -120px auto 0;
  background-color: #fff;
  border: 5px solid #ffe02e;
  border-radius: 10px;
}
.top-auction__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.top-auction__item {
  overflow: hidden;
}
.top-auction__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-auction__btn {
  background-color: var(--green);
}
.top-auction__btn::after {
  background-image: url("./img/icon/arrow-white.svg");
}
.top-auction__btn a {
  font-size: clamp(30px, 2vw, 36px);
  font-weight: var(--bold);
  color: #fff;
}
@media (width <= 765px) {
  .top-auction__head h3 {
    font-size: clamp(31px, 2vw, 36px);
  }
  .top-auction__list {
    grid-template-columns: 1fr;
  }
  .top-auction__content {
    padding: 160px 15px 60px;
  }
  .top-auction__btn a {
    font-size: clamp(24px, 2vw, 28px);
    font-weight: var(--bold);
    color: #fff;
  }
  .top-auction__btn::after {
    top: 28px;
    right: 27px;
    width: 11px;
    height: 27px;
  }
}
.top-faq {
  padding: 60px 0 95px;
  background-color: #fff;
}
.top-faq__title {
  font-size: 50px;
  font-weight: var(--bold);
  text-align: center;
  color: var(--blue);
}
.top-faq__container {
  margin: 70px auto 0;
}
.top-faq__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  gap: 50px;
  margin: 0;
}
.top-faq__item {
  padding: 24px;
  background: var(--blue-light);
  border: 1px solid #d7e7ff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 4%);
}
.top-faq__q {
  position: relative;
  padding: 14px 16px;
  margin: 0 0 14px;
  font-size: clamp(30px, 32px, 36px);
  font-weight: var(--bold);
  color: #055eab;
  border-bottom: 1px solid #97c2db;
}
.top-faq__q::before {
  content: "Q. ";
  margin-right: 2px;
  font-weight: 800;
}
.top-faq__text {
  font-size: 18px;
  font-weight: var(--medium);
  line-height: 1.5;
  white-space: pre-line;
  color: var(--text);
}
.top-faq__link {
  font-weight: var(--bold);
  text-decoration: underline;
  color: var(--green);
}
.top-faq__link:hover {
  text-decoration: none;
  color: var(--green-dark);
}
@media (width <= 765px) {
  .top-faq {
    padding: 56px 0;
  }
  .top-faq__q {
    padding: 12px 14px;
    font-size: clamp(26px, 2vw, 30px);
  }
  .top-faq__item {
    padding: 18px;
  }
  .top-faq__list {
    gap: 28px;
  }
}
/* 料金表ページ */
.price-plan {
  padding: 65px 0 95px;
}
.price-plan__inner {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.price-plan__container {
  margin: 70px auto 0;
}
.price-plan__table-title {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.price-plan__table-title::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  z-index: -1;
  width: 486px;
  height: 80px;
  background-image: url("./img/price/table-top.webp");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
}
.price-plan__table-title h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 50px;
  font-weight: var(--bold);
  line-height: 2;
  text-align: center;
  color: #fff;
}
/* 料金表レイアウト */
.price-plan__top {
  margin-bottom: 40px;
  align-items: start;
}
@media (width <= 1200px) {
  .price-plan__top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.price-plan__section-header {
  padding: 20px;
  text-align: center;
  background: var(--red);
}
.price-plan__commission-title {
  font-size: 24px;
  color: #fff;
}
.price-plan__section-title {
  margin: 0;
  font-size: clamp(34px, 2vw, 36px);
  font-weight: var(--bold);
  color: #fff;
}
.price-plan__section-header--comparison {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  background: var(--yellow);
  border-radius: 10px 10px 0 0;
}
.price-plan__comparison-title {
  height: 100%;
  font-size: 36px;
  border-radius: 10px;
}
.price-plan__section-content {
  padding-top: 20px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}
.price-plan__fee-plan {
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.price-plan__fee-plan .price-plan__section-content {
  height: 400px;
  padding: 20px;
  background-color: #fff;
}
.price-plan__fee-plan .price-plan__fee-table {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: stretch;
}
.price-plan__condition {
  padding: 15px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: var(--medium);
  text-align: center;
  border-radius: 8px;
}
.price-plan__table-title {
  font-size: 18px;
  font-weight: var(--bold);
  color: var(--text);
}
.price-plan__main-container {
  padding: 60px 64px;
  margin-top: -30px;
  background-color: var(--red-light);
  border-radius: 10px;
}
/* テーブルスタイル */
.price-table {
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
}
.price-table th {
  padding: 12px 8px;
  font-size: 13px;
  font-weight: var(--bold);
  text-align: center;
}
/* .price-table th:first-child {
  background-color: transparent;
} */
.price-table th:nth-child(2) {
  width: 39%;
}
.price-table th:nth-child(3) {
  width: 39%;
}
.price-table td {
  padding: 5px;
  font-size: 20px;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #e9ecef;
}
.price-table tbody tr:hover {
  background: #f8f9fa;
}
/* 料金表の特別なスタイル */
.price-table--fee {
  position: relative;
  z-index: 0;
  width: 63%;
  background-color: var(--red-light);
  table-layout: fixed;
  border-collapse: collapse;
  flex-shrink: 0;
}
.price-table--fee th {
  padding: 10px 6px;
  font-size: 24px;
}
.price-table--fee th:first-child {
  background-color: var(--red-light);
}
.price-table--fee th:nth-child(2) {
  color: var(--red-light);
  background-color: #fff;
  border-radius: 10px 10px 0 0;
}
.price-table--fee th:nth-child(3) {
  color: var(--text);
  background-color: #ccc6c7;
  border-radius: 10px 10px 0 0;
}
.price-table--fee tbody {
  height: 100%;
}
.price-table--fee tbody tr {
  height: 20%;
}
.price-table--fee td {
  padding: 10px 6px;
  font-size: 24px;
  vertical-align: middle;
  letter-spacing: 0.1em;
}
.price-table--fee td:nth-child(1) {
  width: 40%;
  font-size: 20px;
  font-weight: var(--bold);
  color: #fff;
  background-color: #343031;
}
/* 表の線 */
.price-table--fee td:nth-child(2),
.price-table--fee td:nth-child(3) {
  border: 2px solid #d7d5d5;
}
.price-table--fee tbody tr:first-child td:nth-child(1) {
  border-radius: 8px 0 0;
}
.price-table--fee tbody tr:last-child td:nth-child(1) {
  border-radius: 0 0 0 8px;
}
.price-table--fee td:nth-child(2) {
  width: 30%;
  background-color: #f6f8f6;
}
.price-table--fee td:nth-child(3) {
  width: 30%;
}
/* 価格別手数料一覧のスタイル */
.price-plan__fee-list {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 8px;
  flex-direction: column;
}
.price-plan__fee-list-title {
  padding: 15px 0;
  font-size: 24px;
  font-weight: var(--bold);
  text-align: center;
  color: #fff;
  background-color: #343031;
  border-radius: 8px 8px 0 0;
}
.price-plan__fee-list-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  flex: 1;
  background-color: #fff;
}
.price-plan__fee-item {
  padding: 10px;
  font-size: 24px;
  font-weight: var(--bold);
  text-align: center;
  background-color: #f6f8f6;
  border-radius: 4px;
}
.price-plan__fee-percentage {
  position: relative;
  padding: 20px;
  margin-top: 20px;
  font-size: 24px;
  font-weight: var(--bold);
  text-align: center;
  color: var(--text);
  border-radius: 8px;
}
.price-plan__fee-percentage span {
  font-size: 36px;
  font-weight: var(--bold);
  color: var(--red);
}
.price-plan__fee-percentage::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 37px;
  height: 12px;
  background-image: url("./img/icon/gray-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateX(-50%);
}
.price-estimate {
  font-size: 14px;
  color: var(--text);
}
.price-empty {
  background-color: #f6f8f6;
}
.price-table--price-list {
  height: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 10px 0;
}
.price-table--price-list th {
  width: 50%;
  padding: 10px;
  font-size: 24px;
  vertical-align: middle;
  color: #fff;
  background-color: #e8214c;
  border-radius: 0;
}
.price-table--price-list tbody {
  height: 100%;
}
.price-table--price-list tbody tr {
  height: 20%;
}
.price-table--price-list td {
  padding: 10px 6px;
  font-size: 20px;
  font-weight: var(--bold);
  vertical-align: middle;
}
.price-commission {
  font-size: 36px;
  font-weight: var(--bold);
  color: var(--red);
}
/* 落札価格の手数料 */
.price-plan__price-list-commission .price-plan__section-header {
  padding: 10px 6px;
  font-size: 24px;
  background: #3c3435;
  border-radius: 10px 10px 0 0;
}
.price-plan__price-list-yellow .price-plan__section-title {
  color: #fff;
  background-color: var(--pink);
}
/* 価格表示の色分け */
.price-zero {
  font-weight: var(--bold);
  color: #000;
}
.price-zero span {
  font-size: 36px;
  font-weight: var(--bold);
  color: var(--red);
}
.price-free span {
  font-size: 36px;
  font-weight: var(--bold);
  color: var(--red);
}
.price-amount {
  font-size: 20px;
  font-weight: var(--bold);
}
.price-amount span {
  font-size: 36px;
  font-weight: var(--bold);
  line-height: 1;
  color: var(--red);
}
.price-total {
  font-size: 16px;
  font-weight: var(--bold);
  color: #fff;
  background: var(--red);
}
/* 下部合計比較 */
.price-plan__bottom {
  margin-top: 40px;
}
.price-plan__total-comparison {
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 8%);
}
.price-plan__section-content.price-plan__section-content--comparison {
  padding: 58px 30px 0;
  margin-top: -47px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}
.price-plan__comparison-title {
  position: relative;
  font-weight: var(--bold);
  color: var(--text);
}
.price-table--total th {
  padding: 20px;
  font-size: 18px;
  background: var(--red);
}
.price-table.price-table--comparison td {
  padding: 8px;
  font-size: 24px;
}
.price-comparison {
  font-size: 20px;
  font-weight: var(--bold);
}
.price-comparison span {
  font-size: 32px;
  font-weight: var(--bold);
  line-height: 1;
  color: var(--text);
}
.price-plan__comparison-total {
  padding: 10px;
  font-size: 36px;
  font-weight: var(--bold);
  color: #fff;
  background: var(--pink);
}
.price-table.price-table--comparison tbody tr:last-child td {
  padding: 26px 8px;
}
/* お申し込みフォーム */
.application {
  padding: 80px 0 100px;
  background-color: #fff;
}
.application__inner {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}
.application__text {
  margin-top: 50px;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  color: var(--text);
}
.application__form-container {
  padding: 36px 58px 58px;
  margin-top: 27px;
  background-color: var(--bg);
  border-radius: 10px;
}
.application__form-title {
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: var(--bold);
  color: var(--text);
  border-bottom: 1px solid #bcbebd;
}
.application__form-item {
  display: flex;
}
.application__form-item:not(:first-child) {
  margin-top: 20px;
}
.application__form-item--half {
  display: flex;
  flex: 1;
}
.application__form-item.application__form-item--half {
  margin-top: 20px;
}
.application__form-item--half.application__form-item--right > label {
  text-align: center;
}
.application__form-row {
  display: flex;
  gap: 15px;
}
.application__form-label {
  position: relative;
  display: block;
  width: 329px;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: var(--medium);
  line-height: 1.2;
  text-align: left;
  color: var(--text);
}
.application__form-label-container {
  display: flex;
  width: 240px;
  flex-shrink: 0;
}
.application__form-label--small {
  width: 237px;
  flex-shrink: 0;
}
.application__form-label-postal {
  width: 240px;
  flex-shrink: 0;
}
.application__form-required {
  padding: 2px 6px;
  margin-left: 8px;
  font-size: 12px;
  font-weight: var(--bold);
  color: #fff;
  background-color: var(--red);
  border-radius: 3px;
}
.application__form-input {
  width: 100%;
  padding: 12px 15px;
  margin-left: 20px;
  font-size: 16px;
  color: var(--text);
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}
.application__form-input:first-child {
  width: 100%;
}
.application__form-input.application__form-input--postal {
  width: 233px;
}
.application__form-postal .application__form-input {
  padding-left: 12px 15px;
}
.application__form-input:focus {
  border-color: var(--green);
  outline: none;
}
.application__form-input[readonly] {
  color: #6c757d;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  cursor: default;
}
.application__form-label--postal {
  position: relative;
  width: 315px;
}
.application__form-postal {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.application__form-postal::before {
  content: "〒";
  position: absolute;
  top: 50%;
  left: -30px;
  z-index: 1;
  font-size: 24px;
  font-weight: var(--bold);
  color: var(--text);
  transform: translateY(-50%);
  pointer-events: none;
}
.application__form-hint {
  font-size: 12px;
  color: #6c757d;
}
.application__form-privacy {
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
}
.application__form-privacy-text {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}
.application__form-checkbox {
  display: flex;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.application__form-checkbox input[type="checkbox"] {
  width: 21px;
  height: 21px;
  margin-right: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  accent-color: var(--green);
  appearance: none;
}
.application__form-checkbox input[type="checkbox"]:checked {
  background-color: #fff;
  background-image: url("./img/icon/check-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 12px;
}
.application__form-checkbox-text {
  font-size: 13px;
  font-weight: var(--medium);
}
.application__form-submit {
  text-align: center;
}
.application__form-btn {
  display: inline-flex;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: var(--bold);
  color: #fff;
  background-color: var(--green);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-items: center;
  gap: 10px;
}
.application__form-btn:hover {
  background-color: #2d7d32;
}
.application__form-btn-arrow {
  font-size: 20px;
  font-weight: var(--bold);
}
/* プライバシーポリシーリンク */
.privacy-link {
  text-decoration: underline;
  color: var(--blue);
  cursor: pointer;
}
/* お申し込み完了ページ専用スタイル */
.application-done {
  padding: 80px 0 100px;
  background-color: #fff;
}
.application-done__inner {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}
.application-done__text {
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.6;
  text-align: center;
  color: var(--green);
}
.application-done__form-container {
  margin-top: 27px;
  border-radius: 10px;
}
.application-done__form-item {
  display: flex;
}
.application-done__form-label {
  position: relative;
  width: 322px;
  padding: 24px 15px;
  font-size: 24px;
  font-weight: var(--medium);
  line-height: 1.2;
  text-align: center;
  color: var(--text);
  background-color: var(--bg);
  border: 1px solid #bcbebd;
  border-right: none;
  flex-shrink: 0;
}
.application-done__form-value {
  display: flex;
  padding: 24px 15px;
  font-size: 24px;
  color: #6c757d;
  background-color: #fff;
  border: 1px solid #bcbebd;
  flex: 1;
  align-items: center;
}
/* 角の丸み設定 */
.application-done__form-item:first-child .application-done__form-label {
  border-top-left-radius: 8px;
}
.application-done__form-item:last-child .application-done__form-label {
  border-bottom-left-radius: 8px;
}
.application-done__form-item:first-child .application-done__form-value {
  border-top-right-radius: 8px;
}
.application-done__form-item:last-child .application-done__form-value {
  border-bottom-right-radius: 8px;
}
.application-done__form-item:not(:first-child) .application-done__form-value {
  border-top: none;
}
.application-done__form-item:not(:first-child) .application-done__form-label {
  border-top: none;
}
.application-done__form-submit {
  margin-top: 40px;
  text-align: center;
}
.application-done__form-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
/* レスポンシブ対応 */
@media (width <= 768px) {
  .application-done__form-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .application-done__form-label {
    width: 100%;
    font-size: 20px;
    border: 1px solid #bcbebd;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
  }
  .application-done__form-item:last-child .application-done__form-label {
    border-radius: 8px 8px 0 0;
  }
  .application-done__form-item:not(:first-child) .application-done__form-label {
    border-top: 1px solid #bcbebd;
  }
  .application-done__form-value {
    width: 100%;
    margin-left: 0;
    border-radius: 0 0 8px 8px;
  }
  .application-done__form-item:first-child .application-done__form-value {
    border-radius: 0 0 8px 8px;
  }
  .application-done__text {
    font-size: 20px;
  }
  .btn03 {
    width: 100%;
    max-width: 400px;
  }
  .btn03 span {
    padding: 15px 20px;
    font-size: 16px;
  }
  .application-done__form-value {
    font-size: 18px;
    text-align: center;
  }
  .btn03 {
    width: 100%;
    max-width: 300px;
  }
  .btn03 span {
    padding: 15px 20px;
    font-size: 20px;
  }
  .btn03 span::after {
    top: 24px;
    right: 24px;
    width: 11px;
    height: 25px;
  }
  .application-done__form-buttons {
    flex-direction: column;
    margin-top: 40px;
  }
}
/* 押し込みボタンデザイン */
.btn03 {
  position: relative;
	display: inline-block;
  width: 362px;
  height: 80px;
  padding: 0;
  text-align: center;
  text-decoration: none;
  background: transparent;
  border: none;
	border-radius: 10px;
  outline: none;
  transition: all 0.2s ease;
}
/* hoverをした後のボタンの形状 */
.btn03:hover {
  border-color: transparent;
}
/* ボタンの中のテキスト */
.btn03 span {
	position: relative;
	z-index: 2;
	display: block;
  display: flex;
  height: 75px;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  background: #006d46;
  border-radius: 10px;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
/* == 下に押し込まれる（立体が平面に） */
.pushdown::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 75px;
  background-color: #0f3b2b;
	border-radius: 10px;
}
/* hoverの際にY軸に5pxずらす */
.pushdown:hover span {
	color: #fff;
  background-color: #0f3b2b;
	transform: translateY(5px);
}
.privacy-link:hover {
  color: var(--green);
}
/* プライバシーポリシーモーダル */
.privacy-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: none;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
.privacy-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 50%);
}
.privacy-modal__content {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 800px;
  max-height: 80vh;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgb(0 0 0 / 30%);
  flex-direction: column;
}
.privacy-modal__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-radius: 12px 12px 0 0;
}
.privacy-modal__title {
  margin: 0;
  font-size: 24px;
  font-weight: var(--bold);
  color: var(--text);
}
.privacy-modal__close {
  position: absolute;
  top: -15px;
  right: -10px;
  display: flex;
  width: 40px;
  height: 40px;
  font-size: 20px;
  font-weight: var(--bold);
  color: #fff;
  background-color: var(--green);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-items: center;
  justify-content: center;
}
.privacy-modal__close:hover {
  background-color: #2d7d32;
}
.privacy-modal__body {
  padding: 30px;
  overflow-y: auto;
  flex: 1;
}
.privacy-modal__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
}
.privacy-modal__text h3 {
  padding-bottom: 8px;
  margin: 25px 0 0;
  font-size: 18px;
  font-weight: var(--bold);
}
.privacy-modal__text h3:first-child {
  margin-top: 0;
}
.privacy-modal__text p {
  font-size: 14px;
}
.privacy-modal__text ul {
  margin: 7px 0;
}
.privacy-modal__text li {
  margin-bottom: 8px;
  font-size: 14px;
}
.privacy-modal__footer {
  padding: 20px 30px;
  text-align: center;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  border-radius: 0 0 12px 12px;
}
.privacy-modal__btn {
  padding: 15px 40px;
  font-size: 16px;
  font-weight: var(--bold);
  color: #fff;
  background-color: var(--green);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.privacy-modal__btn:hover {
  background-color: #2d7d32;
}
/* レスポンシブ対応 */
@media (width <= 1200px) {
  .price-plan__fee-plan .price-plan__fee-table {
    flex-direction: column;
    gap: 40px;
  }
  .price-table--fee {
    width: 100%;
  }
  .price-table--fee tbody tr:last-child td:nth-child(2),
  .price-table--fee tbody tr:last-child td:nth-child(3) {
    border-right: none;
    border-bottom: none;
  }
  .price-table--fee tbody tr:last-child td:nth-child(3) {
    border-radius: 0 0 10px;
  }
  .price-table th:nth-child(2) {
    width: 35%;
  }
  .price-table th:nth-child(3) {
    width: 35%;
  }
  .price-plan__main-container {
    padding: 60px 30px;
  }
  .price-table.price-table--comparison td {
    padding: 8px;
    font-size: clamp(16px, 2vw, 18px);
  }
  .price-comparison {
    font-size: clamp(16px, 2vw, 18px);
  }
  .price-comparison span {
    font-size: clamp(24px, 2vw, 26px);
  }
  .price-plan__comparison-total {
    padding: 10px;
    font-size: clamp(28px, 2vw, 30px);
  }
}
@media (width <= 768px) {
  .price-plan {
    padding: 40px 0;
  }
  .price-plan__inner {
    padding: 0;
  }
  .price-plan__container {
    margin-top: 90px;
  }
  .price-plan__title {
    font-size: 40px;
  }
  .price-plan__title::after {
    bottom: -63px;
    width: 100%;
    height: 100%;
  }
  .price-plan__comparison-title {
    font-size: 28px;
  }
  .price-plan__table-title h2 {
    padding-top: 0;
    margin-top: -15px;
    font-size: clamp(28px, 2vw, 40px);
    line-height: 2.2;
    transform: translateY(-10px);
  }
  .price-plan__table-title::after {
    top: 30%;
    bottom: -63px;
    width: 160%;
    height: 110%;
  }
  .application__form-container {
    padding: 30px 10px;
}
}
@media (width <= 440px) {
  .price-plan__table-title h2 {
    padding-top: 0;
    margin-top: -15px;
    font-size: clamp(28px, 2vw, 40px);
    line-height: 2.2;
    transform: translateY(-10px);
  }
  .price-plan__table-title::after {
    top: 30%;
    bottom: -63px;
    width: 140%;
    height: 110%;
  }
  .price-amount span {
    font-size: clamp(24px, 2vw, 26px);
  }
  .price-free span {
    font-size: clamp(24px, 2vw, 26px);
  }
  .price-plan__top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .price-plan__fee-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .price-plan__section-content {
    padding: 20px;
  }
  .price-plan__section-title {
    font-size: 20px;
  }
  .price-plan__main-container {
    padding: 40px 15px;
  }
  .price-plan__section-content.price-plan__section-content--comparison {
    padding: 58px 15px 0;
  }
  .price-table th,
  .price-table td {
    padding: 8px 4px;
    font-size: 12px;
  }
  .price-table--fee th,
  .price-table--fee td {
    padding: 8px 4px;
    font-size: 20px;
  }
  .price-table--fee {
    width: 100%;
  }
  .price-plan__fee-list {
    width: 100%;
  }
  .price-plan__fee-list-title {
    padding: 12px;
    font-size: 22px;
  }
  .price-plan__fee-item {
    padding: 8px;
    font-size: 18px;
  }
  .price-plan__fee-percentage {
    padding: 15px;
    font-size: 24px;
  }
  .price-table--price-list th,
  .price-table--price-list td {
    font-size: clamp(15px, 2vw, 18px);
  }
  .price-table--total th,
  .price-table--total td {
    padding: 15px 8px;
    font-size: 16px;
  }
  .price-plan__condition {
    margin-bottom: 0;
    font-size: 16px;
  }
  .price-comparison {
    font-size: clamp(14px, 2vw, 16px);
  }
  .price-comparison span {
    font-size: clamp(20px, 2vw, 24px);
  }
  .price-plan__comparison-total {
    padding: 10px;
    font-size: clamp(16px, 2vw, 24px);
  }
  .price-table.price-table--comparison tbody tr:last-child td {
    padding: 26px 4px;
  }
  /* スマホ用画像に切り替え */
  .price-plan__comparison-title img[src="./img/price/price-plan01.svg"] {
    content: url("./img/price/sp-price-plan01.svg");
  }
  .price-plan__comparison-title img[src="./img/price/price-plan02.svg"] {
    content: url("./img/price/sp-price-plan02.svg");
  }
  /* お申し込みフォーム レスポンシブ */
  .application {
    padding: 60px 0 80px;
  }
  .application__inner {
    padding: 0 15px;
  }
  .application__title {
    font-size: 36px;
  }
  .application__text {
    margin-bottom: 40px;
    font-size: 16px;
  }
  .application__form-item {
    margin-bottom: 20px;
  }
  .application__form-row {
    flex-direction: column;
    gap: 0;
  }
  .application__form-item--half {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .application__form-label {
    font-size: 15px;
  }
  .application__form-input {
    padding: 12px 15px;
    font-size: 15px;
  }
  .application__form-privacy {
    padding: 0;
  }
  .application__form-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    justify-content: center;
  }
}
/* 1000px以下でのレスポンシブ対応 */
@media (width <= 1200px) {
  .application__form-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .application__form-label {
    width: 100%;
    margin-bottom: 8px;
    font-size: 24px;
  }
  .application__form-input {
    width: 100%;
    margin-left: 0;
  }
  .application__form-row {
    flex-direction: column;
    gap: 0;
  }
  .application__form-item--half {
   width: 100%;
   margin-right: 0;
  }
  .application__form-postal {
    flex-direction: column;
    align-items: flex-start;
  }
  .application__form-postal::before {
    top: 29%;
    left: 12px;
  }
  .application__form-input.application__form-input--postal {
    padding-left: 40px;
  }
  .application__form-postal .application__form-input {
    width: 100%;
  }
  .application__form-item.application__form-item--half {
    margin-top: 0;
  }
  .application__form-hint {
    margin-top: 5px;
    font-size: 11px;
  }
  .btn03 {
    width: 100%;
    max-width: 400px;
  }
  .btn03 span {
    padding: 15px 20px;
    font-size: 16px;
  }
  /* プライバシーポリシーモーダル レスポンシブ */
  .privacy-modal {
    padding: 10px;
  }
  .privacy-modal__content {
    max-height: 90vh;
  }
  .privacy-modal__header {
    padding: 15px 20px;
  }
  .privacy-modal__title {
    font-size: 20px;
  }
  .privacy-modal__close {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .privacy-modal__body {
    padding: 20px;
  }
  .privacy-modal__text h3 {
    font-size: 16px;
  }
  .privacy-modal__text p,
  .privacy-modal__text li {
    font-size: 13px;
  }
  .privacy-modal__footer {
    padding: 15px 20px;
  }
  .privacy-modal__btn {
    width: 100%;
    padding: 12px 30px;
    font-size: 14px;
  }
}
@media (width <= 765px) {
  .application__form-container {
    padding: 30px 10px;
  }
}
/* hoverをした後のボタンの形状 */
.btn03:hover {
  border-color: transparent;
}
.btn03 span {
	position: relative;
	z-index: 2;
	display: block;
  display: flex;
  height: 75px;
    padding: 20px 30px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
  color: #fff;
  background: #006d46;
  border-radius: 10px;
  transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
/* 影の設定 */
.pushdown::before {
  content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: 75px;
  background-color: #0f3b2b;
	border-radius: 10px;
}
.pushdown:hover span {
	color: #fff;
  background-color: #0f3b2b;
	transform: translateY(5px);
}
.btn03 span::after {
  content: "";
  position: absolute;
  top: 27px;
  right: 30px;
  width: 9px;
  height: 21px;
  background-image: url("./img/icon/arrow-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (width <= 768px) {
  .btn03 {
    width: 100%;
    max-width: 300px;
  }
  .btn03 span {
    padding: 15px 20px;
    font-size: 20px;
  }
  .btn03 span::after {
    top: 24px;
    right: 24px;
    width: 11px;
    height: 25px;
  }
}
/* お問い合わせフォーム専用スタイル */
.contact {
  padding: 80px 0 100px;
  background-color: #fff;
}
.contact__inner {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}
.contact-title::after {
  width: 295px;
  height: 22px;
  background-image: url("./img/icon/contact-titleーaccent.svg");
}
.contact__phone-info {
  margin-top: 50px;
}
.contact__phone-text {
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.6;
  text-align: center;
  color: var(--green);
}
.contact__phone-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.contact__phone-hours,
.contact__phone-holiday {
  margin: 0;
  font-size: 24px;
  color: var(--text);
}
.contact__phone-number {
  font-size: 24px;
  font-weight: var(--bold);
  color: var(--text);
}
.contact__phone-number span {
  font-size: 36px;
  color: var(--green);
}
.contact__form-container {
  max-width: 700px;
  padding: 10px;
  margin: 50px auto 0;
}
.contact__form-item {
  margin-bottom: 30px;
}
.contact__form-label {
  position: relative;
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: var(--medium);
  color: var(--text);
}
.contact__form-required {
  margin-left: 8px;
  font-size: 14px;
  color: var(--red);
}
.contact__form-input,
.contact__form-textarea {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  color: var(--text);
  background-color: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}
.contact__form-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact__form-input::placeholder,
.contact__form-textarea::placeholder {
  color: #999;
}
.contact__form-input:focus,
.contact__form-textarea:focus {
  border-color: var(--green);
  outline: none;
}
.contact__form-privacy {
  margin-top: 50px;
  text-align: left;
}
.contact__form-privacy-text {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}
.privacy-link {
  font-weight: var(--medium);
  text-decoration: underline;
  color: var(--green);
}
.contact__privacy-title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: var(--bold);
  color: var(--text);
}
.contact__privacy-content {
  max-height: 200px;
  padding: 20px;
  margin-bottom: 20px;
  overflow-y: auto;
  background-color: var(--bg);
  border-radius: 8px;
}
.contact__privacy-content h4 {
  margin: 15px 0 8px;
  font-size: 16px;
  font-weight: var(--bold);
  color: var(--text);
}
.contact__privacy-content h4:first-child {
  margin-top: 0;
}
.contact__privacy-content p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}
.contact__privacy-content ul {
  padding-left: 20px;
  margin: 10px 0;
}
.contact__privacy-content li {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}
.contact__form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.contact__form-checkbox input[type="checkbox"] {
  position: relative;
  width: 21px;
  height: 21px;
  background-color: var(--bg);
  border: 2px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
  appearance: none;
}
.contact__form-checkbox input[type="checkbox"]:checked {
  background-color: var(--bg);
  border-color: var(--green);
}
.contact__form-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 12px;
  background-image: url("./img/icon/check-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translate(-50%, -50%);
}
.contact__form-checkbox-text {
  font-size: 16px;
  color: var(--text);
}
.contact__form-submit {
  margin-top: 50px;
  text-align: center;
}
/* レスポンシブ対応 */
@media (width <= 768px) {
  .contact {
    padding: 60px 0 80px;
  }
  .contact__phone-details {
    flex-direction: column;
    gap: 10px;
  }
  .contact__form-container {
    padding: 20px;
  }
  .contact__privacy-content {
    max-height: 150px;
  }
}
/* お問い合わせ確認ページ専用スタイル */
.contact-done {
  padding: 80px 0 100px;
  background-color: #fff;
}
.contact-done__inner {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}
.contact-done__text {
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.6;
  text-align: center;
  color: var(--green);
}
.contact-done__form-container {
  margin-top: 27px;
  border-radius: 10px;
}
.contact-done__form-item {
  display: flex;
}
.contact-done__form-label {
  position: relative;
  width: 322px;
  padding: 24px 15px;
  font-size: 24px;
  font-weight: var(--medium);
  line-height: 1.2;
  text-align: center;
  color: var(--text);
  background-color: var(--bg);
  border: 1px solid #bcbebd;
  border-right: none;
  flex-shrink: 0;
}
.contact-done__form-value {
  display: flex;
  padding: 24px 15px;
  font-size: 24px;
  color: #6c757d;
  background-color: #fff;
  border: 1px solid #bcbebd;
  flex: 1;
  align-items: center;
}
.contact-done__form-value--message {
  align-items: flex-start;
  min-height: 120px;
  line-height: 1.6;
}
/* 角の丸み設定 */
.contact-done__form-item:first-child .contact-done__form-label {
  border-top-left-radius: 8px;
}
.contact-done__form-item:last-child .contact-done__form-label {
  border-bottom-left-radius: 8px;
}
.contact-done__form-item:first-child .contact-done__form-value {
  border-top-right-radius: 8px;
}
.contact-done__form-item:last-child .contact-done__form-value {
  border-bottom-right-radius: 8px;
}
.contact-done__form-item:not(:first-child) .contact-done__form-value {
  border-top: none;
}
.contact-done__form-item:not(:first-child) .contact-done__form-label {
  border-top: none;
}
.contact-done__form-submit {
  margin-top: 80px;
  text-align: center;
}
/* Responsive for contact-done */
@media (width <= 768px) {
  .contact-done__form-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .contact-done__form-label {
    width: 100%;
    font-size: 20px;
    border: 1px solid #bcbebd;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
  }
  .contact-done__form-item:last-child .contact-done__form-label {
    border-radius: 8px 8px 0 0;
  }
  .contact-done__form-item:not(:first-child) .contact-done__form-label {
    border-top: 1px solid #bcbebd;
  }
  .contact-done__form-value {
    width: 100%;
    margin-left: 0;
    font-size: 18px;
    text-align: center;
    border-radius: 0 0 8px 8px;
    justify-content: center;
  }
  .contact-done__form-value--message {
    justify-content: flex-start;
    text-align: left;
  }
  .contact-done__form-item:first-child .contact-done__form-value {
    border-radius: 0 0 8px 8px;
  }
  .contact-done__text {
    font-size: 20px;
  }
}
/* お問い合わせサンクスページ専用スタイル */
.contact-thanks {
  padding: 80px 0 120px;
  background-color: #fff;
}
.contact-thanks__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact-thanks__message {
  margin-top: 83px;
}
.contact-thanks__success {
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: var(--bold);
  line-height: 1.6;
  color: var(--green);
}
.contact-thanks__text {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.8;
  color: var(--text);
}
.contact-thanks__button {
  display: flex;
  justify-content: center;
  margin-top: 95px;
}
/* Responsive for contact-thanks */
@media (width <= 768px) {
  .contact-thanks {
    padding: 60px 0 80px;
  }
  .contact-title::after {
    width: 184px;
    height: 24px;
    background-image: url("./img/icon/contact-titleーaccent.svg");
  }
  .contact-thanks__message {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .contact-thanks__success {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .contact-thanks__text {
    font-size: 16px;
  }
}
/* 車を探したいページ専用スタイル */
.search {
  padding: 80px 0 100px;
  background-color: #fff;
}
.search__inner {
  max-width: 1200px;
  padding: 0 50px;
  margin: 0 auto;
}
.search__overview {
  max-width: 1060px;
  padding: 34px 83px;
  margin: 62px auto 0;
  background-color: var(--bg);
  border-radius: 10px;
}
.search__overview-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 15px;
}
.search__overview-list li {
  position: relative;
  padding-left: 20px;
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 1.6;
  word-break: auto-phrase;
  color: var(--text);
}
.search__overview-list li::before {
  content: "";
position: absolute;
top: 6px;
left: 0;
  z-index: 1000;
width: 9px;
height: 20px;
  background-image: url("./img/icon/arrow-green.svg");
background-repeat: no-repeat;
  background-size: cover;
}
.search__overview-list li span {
  line-height: 1.6;
  color: var(--green);
}
.search__steps {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
}
.search__steps-inner {
  width: 100%;
  margin: 0 auto;
}
.search__step {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  gap: 20px;
  align-items: flex-start;
}
.search__step-content {
  position: relative;
  width: 100%;
  padding: 60px 0;
  text-align: center;
  border: solid 4px #c1c1c1;
  border-radius: 10px;
}
.search__overview-list-sp {
  display: none;
}
.search__step .search__step-content::before {
  content: "STEP";
  position: absolute;
  top: -35px;
  left: -37px;
  display: flex;
  width: 80px;
  height: 80px;
  padding-top: 17px;
  font-size: 17px;
  font-weight: var(--bold);
  line-height: 1;
  color: #fff;
  background-color: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 7px #fff;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
}
.search__step .search__step-content::after {
  position: absolute;
  top: -36px;
  left: -36px;
  display: flex;
  width: 80px;
  height: 80px;
  padding-bottom: 12px;
  font-size: 30px;
  font-weight: var(--bold);
  line-height: 1;
  color: #fff;
  background-color: transparent;
  border-radius: 50%;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}
/* 各ステップの数字 */
.search__step:nth-child(1) .search__step-content::after {
  content: "01";
}
.search__step:nth-child(2) .search__step-content::after {
  content: "02";
}
.search__step:nth-child(3) .search__step-content::after {
  content: "03";
}
.search__step:nth-child(4) .search__step-content::after {
  content: "04";
}
.search__step:nth-child(5) .search__step-content::after {
  content: "05";
}
.search__step:nth-child(6) .search__step-content::after {
  content: "06";
}
.search__step:nth-child(7) .search__step-content::after {
  content: "07";
}
.search__step:nth-child(8) .search__step-content::after {
  content: "08";
}
.search__step:nth-child(9) .search__step-content::after {
  content: "09";
}
.search__step:nth-child(10) .search__step-content::after {
  content: "10";
}
/* ステップ間に矢印を表示（最後のステップ以外） */
.search__step:not(:last-child)::after {
  content: "";
  display: block;
  width: 80px;
  height: 25px;
  margin: 20px auto;
  background-image: url("./img/icon/gray-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
/* スマホサイズでの矢印調整 */
@media (width <= 768px) {
  .search__step:not(:last-child)::after {
    width: 50px;
    height: 20px;
    margin: 15px auto;
  }
  .search__overview-list.search__overview-list--pc {
    display: none;
  }
  .search__overview-list-sp {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 12px;
  }
  .search__overview-list-sp li {
    position: relative;
    padding-left: 18px;
    font-size: 20px;
    font-weight: var(--bold);
    line-height: 1.5;
    word-break: auto-phrase;
    color: var(--text);
  }
  .search__overview-list-sp li::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    z-index: 1000;
    width: 8px;
    height: 16px;
    background-image: url("./img/icon/arrow-green.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .search__overview-list-sp li span {
    margin-right: 3%;
    line-height: 1.5;
    color: var(--green);
  }
}
.search__step-title {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 1.182rem + 1.187vw, 2.25rem);
  font-weight: var(--bold);
  line-height: 1.4;
  text-align: center;
  word-break: auto-phrase;
  color: var(--green);
}
.search__step-description {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: var(--medium);
  line-height: 1.6;
  text-align: left;
  color: #666;
}
.search__step-title-sp {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: var(--bold);
  line-height: 1.4;
  text-align: center;
  word-break: auto-phrase;
}
.search__step-title-main {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
}
.search__step-title-desc {
  display: block;
  font-size: clamp(1rem, 0.063rem + 4vw, 1.313rem);
  font-weight: var(--medium);
  line-height: 1.6;
  text-align: left;
  word-break: normal;
  color: var(--text);
}
.search__step-badge {
  position: relative;
  display: inline-block;
  padding: 6px 33px;
  margin: 0 auto 15px;
  font-size: 24px;
  font-weight: var(--bold);
  color: var(--green);
  background-color: #FFD700;
  border-radius: 20px;
}
.search__step-badge::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 8px solid #FFD700;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: translateX(-50%);
}
@media (width <= 768px) {
  .search__step-badge {
    font-size: 20px;
}
}
.search__step-qr {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.search__step-qr-img {
  height: auto;
  max-width: 480px;
}
.search__step-url {
  margin: 0 auto 40px;
  text-align: center;
}
.search__step-url a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 60px;
  max-width: 480px;
  padding: 0;
  text-align: center;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 8px;
  outline: none;
  box-shadow: 0 6px 20px rgb(0 0 0 / 20%);
  transition: all 0.2s ease;
}
.search__step-url a:hover {
  border-color: transparent;
  box-shadow: 0 8px 25px rgb(0 0 0 / 30%);
  transform: translateY(-3px);
}
.search__step-url a:active {
  box-shadow: 0 3px 12px rgb(0 0 0 / 25%);
  transform: translateY(-1px);
}
.search__step-url a span {
  position: relative;
  z-index: 2;
  display: flex;
  height: 64px;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 1.2;
  color: var(--green);
  background: #FFD700;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 30%);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}
.search__step-url a span::after {
  content: "";
  position: absolute;
  top: 23px;
  right: 20px;
  width: 8px;
  height: 20px;
  background-image: url("./img/icon/arrow-green.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.search__step-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.search__step-images .search__step-image {
  display: flex;
  justify-content: center;
}
.search__step-images .search__step-img {
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
}
.search__step-text-content {
  margin: 20px 0 40px;
  text-align: center;
}
.search__step-description {
  margin: 0;
  font-size: 18px;
  font-weight: var(--medium);
  text-align: center;
  color: var(--text);
}
.search__step-content-box {
  max-width: 600px;
  margin: 0 auto;
}
.search__step-content {
  padding: 30px 15px;
}
.search__step-text--bold {
  font-size: 20px;
}
.search__step-text-green {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 1.4;
  color: var(--green);
}
.search__step-text {
  font-size: 18px;
  color: var(--text);
}
.search__step-text--green {
  font-size: 24px;
  font-weight: var(--bold);
  color: var(--green);
}
.search__step-text a {
  text-decoration: underline;
  color: var(--blue);
}
.search__step-image {
  max-width: 660px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.search__step-img {
  width: 100%;
  height: auto;
  max-width: 630px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
}
.search__step-placeholder {
  display: flex;
  width: 100%;
  height: 300px;
  font-size: 18px;
  font-weight: var(--medium);
  color: #fff;
  background-color: #666;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.search__step-table {
  margin: 30px 0;
}
.search__evaluation-table {
  width: 100%;
  overflow-x: auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
}
.search__evaluation-table table {
  width: 100%;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  border-radius: 8px;
  border-collapse: collapse;
}
.search__evaluation-table th,
.search__evaluation-table td {
  padding: 12px 8px;
  text-align: left;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.search__evaluation-table th:last-child,
.search__evaluation-table td:last-child {
  border-right: none;
}
.search__evaluation-table th {
  font-size: 14px;
  font-weight: var(--medium);
  text-align: center;
  color: #fff;
  background-color: var(--green);
}
.search__evaluation-table td {
  font-size: 16px;
  line-height: 1.6;
  word-break: break-all;
  color: var(--text);
}
.search__evaluation-table td:first-child {
  width: 75px;
  font-weight: var(--medium);
  text-align: center;
  background-color: #f8f9fa;
}
.search__evaluation-table td:nth-child(2) {
  width: 113px;
  text-align: center;
}
.search__evaluation-table td:nth-child(3) {
  padding-left: 12px;
  text-align: left;
}
.search__evaluation-table tbody tr:hover {
  background-color: #f8f9fa;
}
.search__evaluation-table tr:last-child td {
  border-bottom: none;
}
/* 料金表のスタイル */
.search__fee-table {
  margin: 40px 0;
}
.search__fee-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: var(--bold);
  text-align: center;
  color: var(--green);
}
.search__fee-table-content {
  width: 100%;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
  border-collapse: collapse;
}
.search__fee-table-content th,
.search__fee-table-content td {
  padding: 12px 8px;
  text-align: left;
  word-break: break-all;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.search__fee-table-content th:last-child,
.search__fee-table-content td:last-child {
  border-right: none;
}
.search__fee-table-content th {
  font-size: 14px;
  font-weight: var(--medium);
  text-align: center;
  color: #fff;
  background-color: var(--green);
}
.search__fee-table-content td {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}
.search__fee-table-content td:first-child {
  width: 200px;
  font-weight: var(--medium);
  background-color: #f8f9fa;
}
.search__fee-table-content td:nth-child(2) {
  width: 120px;
  font-weight: var(--medium);
  text-align: center;
  color: var(--green);
}
.search__fee-table-content td:nth-child(3) {
  padding-left: 12px;
  text-align: left;
}
.search__fee-table-content tbody tr:hover {
  background-color: #f8f9fa;
}
.search__fee-table-content tr:last-child td {
  border-bottom: none;
}
.search__step-button {
  margin-top: 30px;
}
/* CTA Section */
.search__cta {
  padding: 60px 0;
  margin-top: 80px;
  background-color: var(--green);
}
.search__cta-inner {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
}
.search__cta-title {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: var(--bold);
  line-height: 1.4;
  color: #fff;
}
.search__cta-button {
  display: flex;
  justify-content: center;
}
/* Responsive for search */
@media (width <= 768px) {
  .search {
    padding: 60px 0 80px;
  }
  .search__inner {
    padding: 0 25px;
  }
  .search__overview {
    padding: 34px 20px;
  }
  .search__overview-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .search__steps {
    gap: 60px;
  }
  .search__step {
    flex-direction: column;
    gap: 20px;
  }
  .search__step .search__step-content::before {
    top: -35px;
    left: -20px;
    width: 60px;
    height: 60px;
    padding-top: 13px;
    font-size: 15px;
  }
  .search__step .search__step-content::after {
    position: absolute;
    top: -32px;
    left: -21px;
    display: flex;
    width: 60px;
    height: 60px;
    padding-bottom: 12px;
    font-size: 20px;
    font-weight: var(--bold);
    line-height: 1;
    color: #fff;
    background-color: transparent;
    border-radius: 50%;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 0;
  }
  .search__step-number {
    width: 60px;
    height: 60px;
    font-size: 20px;
    align-self: center;
  }
  .search__step-title {
    font-size: clamp(1.25rem, 1.01rem + 1.026vw, 1.5rem);
    text-align: center;
  }
  .search__step-description {
    font-size: 14px;
    text-align: left;
  }
  .search__step-text {
    font-size: 14px;
  }
  .search__step-url a {
    max-width: 400px;
  }
  .search__step-url a span::after {
    display: none;
  }
  .search__step-url a span {
    padding: 12px 16px;
    font-size: 17px;
  }
  .search__step-images {
    gap: 15px;
  }
  .search__step-qr-img {
    max-width: 80%;
  }
  .search__step-description {
    font-size: 16px;
  }
  .search__cta-title {
    font-size: 24px;
  }
  .search__evaluation-table table {
    font-size: 12px;
  }
  .search__evaluation-table th,
  .search__evaluation-table td {
    padding: 8px 4px;
    font-size: 13px;
  }
  .search__evaluation-table td:first-child {
    width: 45px;
  }
  .search__evaluation-table td:nth-child(2) {
    width: 54px;
  }
  .search__fee-title {
    font-size: 20px;
  }
  .search__fee-table-content {
    font-size: 12px;
  }
  .search__fee-table-content th,
  .search__fee-table-content td {
    padding: 8px 4px;
    font-size: 13px;
  }
  .search__fee-table-content td:first-child {
    width: 93px;
  }
  .search__fee-table-content td:nth-child(2) {
    width: 85px;
  }
}
/* PDFダウンロードボタンのスタイル */
.search__step-pdf {
  margin-top: 40px;
  text-align: center;
}
.search__step-pdf-link {
  display: inline-flex;
  width: 100%;
  padding: 28px 24px;
  font-weight: var(--bold);
  text-decoration: none;
  background-color: var(--bg);
  border: 2px solid #505251;
  border-radius: 8px;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.search__step-pdf-link:hover {
  color: #fff;
  background-color: #06c;
  box-shadow: 0 4px 8px rgb(0 102 204 / 30%);
  transform: translateY(-2px);
}
.search__step-pdf-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.search__step-pdf-text {
  font-size: 18px;
  font-weight: 500;
}
/* スマホサイズでのPDFボタン調整 */
@media (width <= 768px) {
  .search__step-pdf-text {
    font-size: 16px;
  }
  .search__step-pdf-link {
    padding: 10px;
    font-size: 13px;
  }
  .search__step-pdf-icon {
    width: 25px;
    height: 25px;
  }
}
.flow {
  margin-top: 70px;
  background-color: #fff;
}
.flow__inner {
  margin-bottom: 60px;
}
.flow__steps {
  margin-top: 80px;
}
.flow__steps-title {
  font-size: 36px;
  font-weight: var(--bold);
  text-align: center;
  color: var(--green);
}
/* STEP 1 特別レイアウト用のスタイル */
.flow__step--special {
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border: 2px solid var(--green);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgb(0 0 0 / 10%);
}
.flow__step-header {
  padding: 24px 32px;
  text-align: center;
  background: var(--green);
  border-radius: 14px 14px 0 0;
}
.flow__step-header .flow__step-sidebar-number-box {
  display: flex;
  align-items: center;
  gap: 4px;
}
.flow__step-header .flow__step-number {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #000;
  border-radius: 4px;
}
.flow__step-header .flow__step-number-large {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.flow__step-header .flow__step-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
.flow__step-main-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.flow__step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.flow__step-card {
  display: flex;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgb(0 0 0 / 10%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-direction: column;
}
.flow__step-card:hover {
  box-shadow: 0 8px 24px rgb(0 0 0 / 15%);
  transform: translateY(-4px);
}
.flow__step-card-header {
  padding: 16px 20px;
  text-align: center;
  background: var(--green);
}
.flow__step-card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
.flow__step-card-image {
  padding: 20px;
  text-align: center;
  background: #f8f9fa;
}
.flow__step-card-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}
.flow__step-card-text {
  padding: 20px;
  flex: 1;
}
.flow__step-card-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
.flow__step-content-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 260px;
  gap: 20px;
}
.flow__step-content-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.flow__step-option-boxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flow__step-option-link {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.flow__step-option-link:hover {
  transform: scale(1.05);
}
.flow__step-option-box {
  display: flex;
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
  align-items: center;
}
.flow__step-option-img {
  display: block;
  width: 100%;
  height: auto;
}
.flow__step-option-text {
  flex: 1;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  background: #f0f0f0;
}
.flow__step-option-button {
  position: relative;
  min-width: 120px;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.flow__step-option-button::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 12px;
  font-weight: 700;
  transform: translateY(-50%);
}
.flow__step-option-button--pink {
  background: #ffb3ba;
}
.flow__step-option-button--yellow {
  background: #ffeb3b;
}
.flow__step--special .flow__step-option-button--pink {
  background: #ffb3ba;
  border-radius: 6px;
}
.flow__step--special .flow__step-option-button--yellow {
  background: #ffeb3b;
  border-radius: 6px;
}
.flow__step-option-button:hover {
  box-shadow: 0 4px 12px rgb(0 0 0 / 15%);
  transform: translateY(-2px);
}
.flow__step--special .flow__step-qr {
  width: 100px;
  height: 100px;
  padding: 15px;
  background-color: #d0d0d0;
  border: 2px solid #999;
  border-radius: 8px;
  box-shadow: none;
}
.flow__step--special .flow__step-qr::before {
  display: none;
}
.flow__step-qr::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-right: 8px solid var(--green);
  border-bottom: 8px solid transparent;
  transform: translateY(-50%);
}
.flow__step-qr-img {
  display: block;
  width: 228px;
  height: 210px;
}
.flow__step--special .flow__step-qr-img {
  width: 70px;
  height: 70px;
}
/* モバイル対応 */
@media (width <= 768px) {
  .flow__step-header {
    padding: 20px;
  }
  .flow__step-main-title {
    font-size: 20px;
  }
  .flow__step-content {
    padding: 24px;
  }
  .flow__step-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .flow__step-card-img {
    height: 100px;
  }
}
.flow__steps-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow__step {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  margin-bottom: 0;
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  align-items: stretch;
}
.flow__step--special {
  overflow: hidden;
  background-color: #f0f0f0;
  border-radius: 12px;
}
.flow__step--special .flow__step-header {
  padding: 20px;
  color: white;
  background-color: var(--green);
}
.flow__step--special .flow__step-sidebar {
  display: flex;
  width: auto;
  min-width: auto;
  padding: 0;
  background: none;
  border-radius: 0;
  align-items: center;
  gap: 15px;
}
.flow__step--special .flow__step-sidebar-number-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.flow__step--special .flow__step-number {
  font-size: 16px;
  font-weight: var(--bold);
}
.flow__step--special .flow__step-number-large {
  font-size: 32px;
  font-weight: var(--bold);
}
.flow__step--special .flow__step-title {
  padding: 0;
  margin: 0;
  font-size: 20px;
  font-weight: var(--bold);
  border: none;
}
.flow__step--special .flow__step-content::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-right: 30px solid var(--green);
  border-bottom: 30px solid transparent;
}
.flow__step-sidebar {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 140px;
  padding: 20px;
  color: #fff;
  background-color: var(--green);
  border-radius: 8px 8px 0 0;
}
.flow__step-sidebar-number-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow__step-number {
  font-size: 40px;
  font-weight: var(--bold);
}
.flow__step-number-large {
  margin-left: 10px;
  font-size: 40px;
  font-weight: var(--bold);
  line-height: 1;
}
.flow__step-title {
  margin-left: 30px;
  font-size: 30px;
  font-weight: var(--bold);
  line-height: 1.3;
  word-break: auto-phrase;
}
.flow__step-content {
  padding: 40px 25px;
}
.flow__step-content.flow__step-content--second {
  display: flex;
  align-items: center;
  gap: 55px;
}
.flow__step-content-top {
  display: flex;
  align-items: center;
  gap: 9%;
}
.flow__step-icon {
  width: 100%;
  max-width: 165px;
  flex-shrink: 0;
}
.flow__step-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.flow__step-text {
  font-size: 36px;
  text-align: center;
  color: var(--text);
  flex: 1;
}
.flow__step-text.flow__step-text--second {
  font-size: 26px;
  text-align: left;
}
.flow__step-content-main {
  display: flex;
  max-width: 1050px;
  padding: 20px 33px;
  margin: 40px auto 0;
  background-color: #fff;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}
/* LINEボタン */
.flow__line-button {
  margin: 20px 0;
  text-align: center;
}
.flow__line-link {
  display: inline-block;
  padding: 16px 80px;
  font-size: 24px;
  font-weight: var(--medium);
  text-decoration: none;
  color: white;
  background-color: var(--green-line);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.flow__line-link:hover {
  background-color: #00a65d;
  box-shadow: 0 4px 12px rgb(0 0 0 / 20%);
  transform: translateY(-2px);
}
.flow__arrow {
  position: relative;
  margin: 20px auto;
}
.flow__arrow::after {
  content: "";
  display: block;
  width: 85px;
  height: 30px;
  margin: 0 auto;
  background-image: url("./img/icon/gray-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.flow__step-notice {
  display: flex;
  padding: 32px 11px;
  padding: 28px;
  margin-top: 20px;
  background-color: #fff;
  border-radius: 8px;
  align-items: flex-start;
  gap: 10px;
}
.flow__step-notice-icon {
  position: relative;
  width: 95px;
  height: 95px;
  flex-shrink: 0;
}
.flow__step-notice-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./img/icon/icon-excl.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.flow__step-notice-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
}
/* 保証金セクション */
.flow__deposit {
  margin: 60px 0;
}
.flow-section-title {
  position: relative;
  padding-left: 51px;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: var(--bold);
  text-align: left;
  color: var(--green);
}
.flow-section-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 1;
  width: 32px;
  height: 4px;
  background-color: var(--green);
}
.flow__deposit-text {
  font-size: 24px;
  font-weight: var(--bold);
  text-align: left;
  color: var(--text);
}
.flow__deposit-cards {
  display: grid;
  max-width: 1200px;
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
}
.flow__deposit-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 200px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
}
/* カードサイズはgridで自動調整 */
@media (width <= 1300px) and (width >= 769px) {
  .flow__deposit-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
/* 中サイズ画面（カード幅が320px以下の場合） */
@media (width <= 900px) and (width >= 769px) {
  .flow__deposit-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (width <= 1200px) {
  .flow__step-content-main {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }
}
@media (width <= 768px) {
  .flow-section-title {
    padding-left: 20px;
    font-size: clamp(1.625rem, 1.024rem + 2.564vw, 2.25rem);
  }
  .flow-section-title::before {
    top: 14%;
    width: 4px;
    height: 77%;
    background-color: var(--green);
  }
  .flow__step-option-boxes {
    width: 100%;
    flex-direction: row;
  }
  .flow__step-text.flow__step-text--second {
    font-size: 20px;
    line-height: 1.5;
    text-align: left;
    word-break: auto-phrase;
  }
  .flow__step-content.flow__step-content--second {
    gap: 24px;
    align-self: flex-start;
  }
  .flow__step-content-main {
    padding: 30px 10px;
    gap: 20px;
  }
  .flow__line-link {
    padding: 16px;
  }
}
.flow__deposit-card-header {
  position: relative;
  padding: 15px 10px;
  font-size: 22px;
  font-weight: var(--medium);
  line-height: 1.3;
  text-align: center;
  color: #fff;
  background-color: #505251;
}
.flow__deposit-card-header::after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 50%;
  z-index: 1;
  width: 22px;
  height: 42px;
  border-top: 14px solid #505251;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  transform: translate(-50%, -50%);
}
.flow__deposit-card-amount {
  height: 100%;
  padding: 20px 10px;
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.3;
  text-align: center;
  color: #333;
  background-color: #f5f5f5;
}
.flow__deposit-card-amount span {
  font-size: 36px;
  font-weight: var(--bold);
  color: var(--red-light);
}
.flow__deposit-percentage {
  font-size: 24px;
  font-weight: var(--bold);
  color: var(--red-light);
}
/* 落札できなかった場合 */
.flow__no-bid {
  margin-top: 60px;
  text-align: center;
}
.flow__no-bid-text {
  font-size: 24px;
  font-weight: var(--bold);
  text-align: left;
}
/* 落札した場合 */
.flow__success {
  margin-top: 60px;
}
.flow__success-title {
  position: relative;
  padding-left: 51px;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: var(--bold);
  text-align: left;
  color: var(--green);
}
.flow__success-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 32px;
  height: 4px;
  background-color: var(--green);
}
.flow__success-text {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: var(--bold);
  text-align: left;
  color: var(--red-light);
}
.flow__success-flows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}
.flow__success-container {
  background-color: #fff;
  border-radius: 8px;
}
.flow__success-flow-header {
  position: relative;
  margin-bottom: 20px;
}
.flow__success-flow-title {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 15px 20px;
  font-size: 24px;
  font-weight: var(--bold);
  text-align: center;
  color: #fff;
  background-color: var(--red-light);
  border-radius: 10px 10px 0 0;
}
.flow__success-flow-title::after {
  content: "";
  position: absolute;
  top: 87%;
  left: 50%;
  width: 34px;
  height: 34px;
  border-top: 26px solid var(--red-light);
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
  transform: translateX(-50%);
}
.flow__success-steps {
  padding: 30px 80px;
  background-color: var(--bg);
  border-radius: 0 0 10px 10px;
}
.flow__success-step {
  display: flex;
  align-items: center;
}
.flow__success-step:not(:first-child) {
  margin-top: 20px;
}
.flow__success-step-number {
  display: flex;
  width: 43px;
  height: 43px;
  padding: 8px;
  margin-right: 24px;
  font-size: 24px;
  font-weight: var(--bold);
  color: #fff;
  background-color: var(--red-light);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flow__success-step-text {
  font-size: 24px;
  font-weight: var(--medium);
  color: var(--text);
}
.flow__success-flow-text {
  margin-top: 20px;
  font-size: 18px;
  font-weight: var(--medium);
  line-height: 1.6;
  color: var(--text);
}
.flow__success-flow-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}
/* 300万円以上の車を落札される場合 */
.flow__high-price {
  margin: 60px 0;
  background-color: #f8f9fa;
}
.flow__high-price-header {
  position: relative;
  width: 100%;
}
.flow__high-price-title {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 15px 20px;
  font-size: 24px;
  font-weight: var(--bold);
  text-align: center;
  color: #fff;
  background-color: var(--red-light);
  border-radius: 10px 10px 0 0;
}
.flow__high-price-title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 10px solid var(--red-light);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  transform: translateX(-50%);
}
.flow__high-price-text {
  padding: 30px;
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.6;
  text-align: center;
  word-break: auto-phrase;
  color: var(--text);
}
.flow__high-price-amount {
  font-size: 36px;
  font-weight: var(--bold);
  color: var(--red-light);
}
/* レスポンシブ対応 */
@media (width <= 768px) {
  .flow__step {
    flex-direction: column;
    min-height: auto;
  }
  .flow__step-sidebar {
    width: 100%;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    flex-direction: column;
  }
  .flow__step-sidebar-number-box {
    flex-direction: row;
    gap: 10px;
  }
  .flow__step-number-large {
    font-size: 36px;
  }
  .flow__step-title {
    margin-left: 0;
    font-size: clamp(1.375rem, 0.975rem + 1.882vw, 1.875rem);
    text-align: center;
  }
  .flow__step-content {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .flow__step-icon {
    width: 130px;
    align-self: center;
  }
  .flow__step-text {
    font-size: clamp(1.375rem, 0.975rem + 1.882vw, 1.875rem);
    text-align: left;
  }
  .flow__step-content-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .flow__step-notice {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .flow__arrow::after {
    width: 60px;
    height: 25px;
  }
  .flow__deposit {
    margin-top: 40px;
  }
  .flow__deposit-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .flow__deposit-card {
    width: 100%;
    max-width: 100%;
  }
  .flow__success-flows {
    grid-template-columns: 1fr;
  }
  .flow__success-steps {
    padding: 20px;
    word-break: auto-phrase;
  }
  .flow__no-bid-text,
  .flow__success-text,
  .flow__high-price-text {
    font-size: 20px;
  }
}
/* スマホ版MVのテキスト重ね表示対応 */
.mv__sp .mv__sp-content {
  display: flex;
}
/* スマートフォン用MV Swiper */
.mv-sp-swiper {
  width: 100vw;
  max-width: 100vw;
  min-height: 500px;
  padding: 0;
  margin: 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
}
.mv-sp-swiper .swiper-wrapper {
  width: 100vw;
  padding: 0;
  margin: 0;
  overflow: visible;
}
/* スマホ版の既存スタイルを上書き */
.mv__sp .mv__sp-image {
  display: block;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.mv__sp .mv__sp-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
/* スマホ版テキストコンテンツ（Swiperに重ねて表示） */
.mv__sp .mv-sp-swiper .swiper-slide .mv__sp-content {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 2;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mv__sp .mv-sp-swiper .swiper-slide .mv__sp-text-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.mv__sp .mv-sp-swiper .swiper-slide .mv__sub-title {
  width: fit-content;
  margin: 0 auto;
}
.mv__sp .mv-sp-swiper .swiper-slide .mv__main-title {
  display: block;
  margin: 10px 0;
}
@media (width <= 768px) {
  .mv__sp .mv-sp-swiper .swiper-slide .mv__main-title{
    margin-top: 24px;
  }
}
.mv-sp-swiper .swiper-slide {
  position: relative;
  display: flex;
  width: 100vw;
  min-height: 500px;
  padding: 0;
  margin: 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  flex-direction: column;
}
/* スマホ版Slide 1: 既存のMVコンテンツ */
.mv-sp-swiper .swiper-slide:first-child {
  position: relative;
  background: transparent;
}
/* スマホ版画像スライド */
.mv__sp-image-slide {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}
.mv__sp-slide-image {
  width: 100vw;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: bottom;
}
/* スマホ版Swiper Pagination */
.mv-sp-swiper .swiper-pagination {
  bottom: 20px;
  z-index: 10;
}
.mv-sp-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: rgb(255 255 255 / 50%);
  opacity: 1;
  transition: all 0.3s ease;
}
.mv-sp-swiper .swiper-pagination-bullet-active {
  background: var(--green);
  transform: scale(1.2);
}
/* スマホ版ボタン群 */
.mv__sp-btn {
  display: none;
}
@media (width <= 768px) {
  .mv__sp-btn {
  display: block;
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
  }
}
.mv__sp-btn-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.mv__sp-btn-text {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.6;
  color: var(--text);
}
.mv__sp-btn-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/* 2枚目のスライド: プロモーションバナー */
.slider-promo {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.slider-promo__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.slider-promo__bg-image {
  width: 100%;
  height: 100%;
  object-position: center;
}
/* 1200px以下の時の背景画像 */
@media (width <= 1200px) {
  .slider-promo__bg {
    background-image: url("./img/top/slider-bg-03.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .slider-promo__bg-image {
    opacity: 0;
    object-fit: cover;
  }
}
.slider-promo__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin-top: -40px;
}
.slider-promo__text-block {
  margin-bottom: 20px;
  text-align: center;
}
.slider-promo__title {
  margin: 0 0 10px;
}
@media (width <= 1200px) {
  .slider-promo__title {
    width: 90%;
    margin: 0 auto;
  }
}
.slider-promo__subtitle {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  text-shadow:
    3px 3px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    0 0 8px rgb(0 0 0 / 50%);
  color: #FFD700;
}
.slider-promo__percentage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
.slider-promo__number {
  margin-right: 20px;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 1;
  text-shadow:
    6px 6px 0 #000,
    -3px -3px 0 #000,
    3px -3px 0 #000,
    -3px 3px 0 #000,
    0 0 15px rgb(0 0 0 / 70%);
  color: #FFD700;
}
.slider-promo__badge {
  position: absolute;
  top: -20px;
  right: -20px;
  padding: 8px 16px;
  background: #FFD700;
  border: 3px solid #000;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 30%);
  transform: rotate(15deg);
}
.slider-promo__badge-text {
  display: block;
  font-size: clamp(0.8rem, 1.5vw, 1.2rem);
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 1px 1px 0 #000;
  color: #F00;
}
.slider-promo__ribbon {
  position: relative;
  padding: 15px 30px;
  margin: 20px 0;
  background: #FFF;
  border: 4px solid #000;
  box-shadow: 0 4px 8px rgb(0 0 0 / 30%);
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0% 50%);
}
.slider-promo__ribbon-text {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 1px 1px 0 #FFF;
  color: #000;
}
.slider-promo__ribbon-text .brand {
  color: #000;
}
.slider-promo__ribbon-text .event {
  color: #F00;
}
.slider-promo__period {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 20px 20px 60px;
  background: #000;
}
@media (width <= 1200px) {
  .slider-promo__period {
    padding: 20px 20px 65px;
  }
}
.slider-promo__period-inner {
  max-width: 1250px;
  margin: 0 auto;
}
.slider-promo__period-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.slider-promo__period-text-first {
  width: 100%;
  max-width:450px ;
}
/* レスポンシブ対応 */
@media (width <= 768px) {
  .mv__sp {
    display: block;
  }
  .slider-promo {
    min-height: 400px;
  }
  .slider-promo__content {
    padding: 20px 15px;
  }
  .slider-promo__badge {
    top: -15px;
    right: -15px;
    padding: 6px 12px;
  }
  .slider-promo__ribbon {
    padding: 12px 20px;
    margin: 15px 0;
  }
  .slider-promo__ribbon-text {
    font-size: clamp(1rem, 3vw, 1.5rem);
  }
  .slider-promo__period-text {
    flex-direction: column;
  }
  .slider-promo__period-text-second {
    width: 47%;
  }
}
/* 追従バナー */
.side-banner {
  position: fixed;
  z-index: 1000;
  display: none;
  opacity: 0; /* 初期状態で透明 */
  transition: opacity 0.3s ease;
}
/* PC版の追従バナー */
@media (width >= 769px) {
  .side-banner {
    /* top: 50%; */
    right: 0;
    bottom: 20px;
    display: block;
    /* transform: translateY(-50%); */
  }
}
/* スマホ版の追従バナー */
@media (width <= 768px) {
  .side-banner {
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    opacity: 0; /* 初期状態で透明 */
    transform: none;
  }
}
.side-banner__link {
  display: block;
  transition: transform 0.3s ease;
}
.side-banner__link:hover {
  transform: scale(1.05);
}
.side-banner__image {
  display: block;
  height: auto;
  box-shadow: 0 4px 12px rgb(0 0 0 / 15%);
  transition: box-shadow 0.3s ease;
}
/* PC版の画像 */
.side-banner__image--pc {
  width: 210px;
}
/* スマホ版の画像 */
.side-banner__image--sp {
  display: none;
  width: 100%;
  max-width: 100vw;
}
/* PC版ではPC画像のみ表示 */
@media (width >= 769px) {
  .side-banner__image--pc {
    display: block;
  }
  .side-banner__image--sp {
    display: none;
  }
}
/* スマホ版ではSP画像のみ表示 */
@media (width <= 768px) {
  .side-banner__image--pc {
    display: none;
  }
  .side-banner__image--sp {
    display: block;
  }
}
.side-banner__link:hover .side-banner__image {
  box-shadow: 0 6px 16px rgb(0 0 0 / 25%);
}
