@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 {/*2026.01.09一部変更*/
  --header-height: 64px;
  /* --green: #006d46;
  --green-dark: #183d30;
  --green-light: #eef4dc; */
  --green: #00BA45;
  --green-dark: #00712B;
  --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: 998;
  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: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 25px;
  background: #fff;
  border-bottom: 1px solid #e7eceb;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}
/* 追従ヘッダー（MVを過ぎた時） */
.header.is-sticky {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
}
.header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--green);
}
.header__inner {
  width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header > .header-top,
.header > .header-bottom {
  max-width: none;
  margin-inline: 0;
}
/* ================= 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; */
  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; */
    padding: 40px 0 clamp(70px, 18.880208333333336vw, 145px);/*2026.01.09変更*/
  }
  .site-footer__nav {
    flex-direction: column;
    gap: 12px 16px;
  }
}
/* --- TOP --- */
/* 変更部分 */
.header-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 12px;
  flex-shrink: 0;
}
.header-top__left {
  flex-shrink: 0;
  height: 100%;
  padding: 12px 0 0 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: 0;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
/* header-bottom 固定表示（MVを過ぎた時） */
.header-bottom.is-fixed {
  position: fixed;
  top: 64px; /* header-topの高さ分下に配置（JavaScriptで動的に更新） */
  left: 25px; /* JavaScriptで動的に更新 */
  z-index: 1000;
  padding: 0;
  margin-top: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
  width: auto; /* JavaScriptで動的に更新 */
  max-width: none; /* JavaScriptで動的に更新 */
}
.header-bottom.is-fixed > .header-tabs {
  max-width: none;
  margin-inline: 0;
  justify-content: flex-end;
}
@media (width <= 1250px) {
  .header-bottom.is-fixed {
    padding: 0 15px;
  }
  .header-bottom.is-fixed > .header-tabs {
    justify-content: flex-start;
  }
}
/* タブコンテナ */
.header-tabs {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 11px;
  flex-wrap: wrap;
}
/* 各タブ（均等幅） */
.header-tabs__item {
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  background: var(--green);
  border-radius: 0 0 14px 14px;
  transition:
    filter 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.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: 20px;
	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--article::after {
  background-image: url("./img/icon/icon-article.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 <= 1250px) {
  .header {
    padding: 0 15px;
  }
  .header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .header-top {
    width: 100%;
    padding: 8px 0;
  }
  .header-top__left img {
		width: 47vw;
    height: 40px;
		min-width: 200px;
	}
  .header-bottom {
    width: 100%;
    padding-bottom: 2px;
    margin-top: 0;
  }
  .header-tabs {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }
  .header-tabs__item {
    padding: 8px 12px;
    font-size: 14px;
    flex: 1;
    min-width: calc(50% - 4px);
  }
  .hamburger,
  .js-hamburger {
    display: inline-block;
  } /* ←ここは必ず表示に */
  .header-tabs {
    display: none;
  } /* 1250px以下でタブナビを隠す場合 */
  .header-top__right {
    display: none;
  }
}
@media screen and (width <= 400px) {
  .drawer,
  .js-drawer {
  width: 100vw;
	max-width: 100%;
}
}


/* 追従バナー */
.side-banner,
.side-banner2 {
  position: fixed;
  position: fixed;
  z-index: 999;/*2026.01.09 1001→999へ変更*/
  display: none;
  /* opacity: 0; *//* 初期状態で透明 */
  transition: opacity 0.3s ease;
}
.fixed-contents__wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 18px 0;
  display: none;
  width: 100%;
  background-color: #006d46;
  /* opacity: 0; *//* 初期状態で透明 */
  transition: opacity 0.3s ease;
}
.arrange-fixed,
.arrange-fixed2,
.arrange-fixed3 { opacity: 0; }
.arrange-fixed-fadeIn { opacity: 1; }
/* PC版の追従バナー */
@media (width >= 769px) {
  .side-banner {
    /* top: 50%; */
    right: 0;
    bottom: 205px;
    display: block;
    /* transform: translateY(-50%); */
  }
  .side-banner2 {
    right: 0;
    bottom: 380px;
    display: block;
    width: 87px;
  }
  .fixed-contents__wrap { display: block; }
  .fixed-contents {
    margin: 0 auto;
    display: block;
    width: fit-content;
  }
}
/* スマホ版の追従バナー */
@media (width <= 768px) {
  .side-banner {
    right: 0;
    /* bottom: clamp(10px, 24.1vw, 187px); */
    bottom: 0;/*2026.01.09変更*/
    left: 0;
    display: block;
    /* opacity: 0; *//* 初期状態で透明 */
    transform: none;
  }
  .side-banner2 {
    right: 0;
    /* bottom: clamp(140px, 42.31770833333333vw, 325px);*/
    bottom: clamp(140px, 25vw, 325px);
    display: block;
  }
  .fixed-contents__wrap {
    padding: clamp(10px, 3.90625vw, 30px) 0;
    display: block;
  }
  .fixed-contents {
    margin: 0 auto;
    max-width: 90%;
    width: 90%;
  }
  .fixed-contents__link { display: block; }
  .fixed-contents__image--sp { width: 100%; }
}
.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,
  .fixed-contents__image--pc {
    display: block;
  }
  .side-banner__image--sp,
  .fixed-contents__image--sp {
    display: none;
  }
}
/* スマホ版ではSP画像のみ表示 */
@media (width <= 768px) {
  .side-banner__image--pc,
  .fixed-contents__image--pc {
    display: none;
  }
  .side-banner__image--sp,
  .fixed-contents__image--sp {
    display: block;
  }
}
.side-banner__link:hover .side-banner__image {
  box-shadow: 0 6px 16px rgb(0 0 0 / 25%);
}