/* ========================================
   Base / Reset
======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1c6b12;
  --color-primary-light: #56c445;
  --color-primary-pale: #80d972;
  --color-primary-bg: #f5faf4;
  --color-primary-border: #d6edce;
  --color-accent: #ff3c00;
  --color-yellow: #ffe20a;
  --color-text: #141f0e;
  --color-text-gray: #707070;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-bg-dark: #141f0e;

  /* Fonts */
  --font-main: "Noto Sans JP", sans-serif;
  --font-en: "DIN 2014", "Noto Sans JP", sans-serif;

  /* Layout */
  --max-width: 1440px;
  --content-width: 1080px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: 1.8;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* SP only line break */
.br-sp {
  display: none;
}

/* PC only line break */
.br-pc {
  display: inline;
}

@media (max-width: 768px) {
  .br-sp {
    display: inline;
  }
  .br-pc {
    display: none;
  }
}

/* ========================================
   Header
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--color-white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 0 0 20px;
}

.header__brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

.header__sub-text {
  font-size: 10px;
  color: var(--color-black);
  white-space: nowrap;
  margin-bottom: 5px;
}

.header__logo a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__logo-img {
  width: auto;
  height: 36px;
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.header__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0px 30px;
}

.header__nav-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  white-space: nowrap;
  transition: opacity 0.3s;
}

.header__nav-link:hover {
  opacity: 0.7;
}

.header__nav-icon {
  font-size: 12px;
  margin-left: 2px;
}

.header__contact {
  display: flex;
  align-items: stretch;
  height: 100px;
  flex-shrink: 0;
}

.header__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  width: 200px;
  height: 100%;
}

.header__phone-number {
  font-family: var(--font-en);
  font-size: 24px;
  color: var(--color-accent);
  font-weight: 400;
}

.header__phone-time {
  font-size: 14px;
  color: var(--color-accent);
}

.header__cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-white);
  width: 200px;
  height: 100%;
  transition: opacity 0.3s;
}

.header__cta-btn:hover {
  opacity: 0.85;
}

.header__cta-btn-main {
  font-size: 20px;
  font-weight: 700;
}

.header__cta-btn-sub {
  font-size: 14px;
}

/* ========================================
   FV (First View / Hero)
======================================== */
.fv {
  position: relative;
  width: 100%;
  height: 603px;
  margin-top: 100px;
  overflow: hidden;
  background: linear-gradient(133deg, #ffffff, #ffffff 39%, #f5faf4 39%, #f5faf4 67%, #ffffff 67% 100%);
}

/* 左上の薄緑四角 */
.fv__deco-rect {
  position: absolute;
  top: -144px;
  left: -124px;
  width: 402px;
  height: 312px;
  background: var(--color-primary-bg);
  transform: rotate(-5deg) skewX(-5deg);
  z-index: 0;
}

/* 右上の緑丸装飾 */
.fv__deco-circle-green {
  position: absolute;
  top: -73px;
  right: -55px;
  width: 355px;
  height: 355px;
  border: 3px solid var(--color-primary-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}


/* FV Photo (独立セクション) */
.fv-photo {
  width: 100%;
  aspect-ratio: 100 / 38;
  overflow: hidden;
}

.fv-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv__side-label {
  position: absolute;
  top: 150px;
  left: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.fv__side-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-primary-pale);
}

.fv__side-text {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary-pale);
  letter-spacing: 1.6px;
}

.fv__main {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
}

.fv__main-row {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 30px;
}

.fv__content {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  font: inherit;
}

.fv__tags {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.fv__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
}

.fv__title {
  display: block;
  font-size: 44px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.3;
  margin-bottom: 10px;
}

.fv__title-price {
  font-family: var(--font-en);
  font-size: 84px;
  font-weight: 700;
  color: var(--color-black);
}

.fv__title-unit {
  font-size: 52px;
  font-weight: 700;
  color: var(--color-black);
}

.fv__title-particle {
  font-size: 44px;
  color: var(--color-black);
}

.fv__title-highlight {
  font-size: 58px;
  font-weight: 700;
  color: var(--color-black);
}

.fv__subtitle {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black);
  margin-top: 5px;
  margin-bottom: 0;
}

.fv__subtitle-line {
  display: inline-block;
  width: 27px;
  height: 2px;
  background: var(--color-black);
}

.fv__price-box {
  position: relative;
  width: 836px;
  background: var(--color-white);
  border-radius: 5px;
  border: 1px solid var(--color-primary);
  padding: 4px 24px 12px;
}

.fv__price-text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
}

.fv__price-label {
  display: inline-block;
  background: var(--color-text);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  padding: 2px 20px;
  border-radius: 30px;
  margin-right: 15px;
}

.fv__price-detail {
  font-size: 16px;
  font-weight: 700;
  margin-right: 10px;
}

.fv__price-amount {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 600;
  color: var(--color-accent);
  font-style: italic;
  margin-right: 5px;
}

.fv__price-yen {
  font-size: 24px;
}

.fv__price-tax {
  font-size: 16px;
  font-weight: 500;
  margin-left: 5px;
}

.fv__price-incl {
  font-family: var(--font-en);
  font-size: 20px;
  margin-left: 5px;
}

.fv__price-note {
  font-size: 14px;
  color: var(--color-text);
}

.fv__right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}

.fv__badge-text {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(to right, #866a0e, #d7b02f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.4;
  white-space: nowrap;
  margin-bottom: 15px;
}

.fv__credentials {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fv__credentials-laurel {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.fv__credentials-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  text-align: center;
}

.fv__credentials-gold {
  color: #b88d00;
}

.fv__cta-button {
  position: relative;
  width: 383px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  border: 2px solid var(--color-white);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.16);
  transition: opacity 0.3s;
}

.fv__cta-button:hover {
  opacity: 0.85;
}

.fv__cta-arrow {
  font-size: 20px;
}


/* ========================================
   Track Record (実績)
======================================== */
.record {
  position: relative;
  background: var(--color-primary-bg);
  padding: 120px 0 80px;
}

.record__side-label {
  position: absolute;
  top: 56px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.record__side-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-primary-pale);
}

.record__side-text {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary-pale);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.record__header {
  text-align: center;
  max-width: 672px;
  margin: 0 auto 40px;
}

.record__header-area {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary-light);
  margin-bottom: 2px;
  line-height: 1.5;
}

.record__header-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 0;
}

.record__header-sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 20px;
}

.record__header-desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.85;
}

/* Cards */
.record__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--content-width);
  margin: 0 auto 80px;
  padding: 0 20px;
}

.record__card {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 4px 4px 5px rgba(86, 196, 69, 0.1);
}

.record__card-img {
  height: 140px;
  overflow: hidden;
}

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

.record__card-body {
  padding: 20px 14px 20px;
}

.record__card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 6px;
}

.record__card-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.8;
  text-align: justify;
}

/* Banner */
.record__banner-wrap {
  position: relative;
  max-width: 100%;
  padding: 0;
  background: #1C6B12;
  overflow: hidden;
}

.record__banner-wrap .record__banner {
  max-width: 792px;
  margin: 0 auto;
}

.record__banner {
  position: relative;
  height: 365px;
  padding: 50px 40px;
  text-align: center;
  background: #2D8F21;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
}

/* 装飾円 */
.record__deco-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.record__deco-circle--1 {
  width: 302px;
  height: 302px;
  top: -60px;
  right: -80px;
  border: 3px solid var(--color-primary-light);
  opacity: 0.3;
}

.record__deco-circle--2 {
  width: 200px;
  height: 200px;
  top: -10px;
  right: -30px;
  background: var(--color-primary-light);
  opacity: 0.08;
}

.record__deco-circle--3 {
  width: 258px;
  height: 258px;
  bottom: -80px;
  left: -100px;
  border: 3px solid var(--color-primary-light);
  opacity: 0.3;
}

.record__deco-circle--4 {
  width: 172px;
  height: 172px;
  bottom: -40px;
  left: -60px;
  background: var(--color-primary-light);
  opacity: 0.08;
}

.record__deco-circle--5 {
  width: 176px;
  height: 176px;
  top: 20px;
  left: -130px;
  border: 3px solid var(--color-primary-light);
  opacity: 0.25;
}

.record__deco-circle--6 {
  width: 116px;
  height: 116px;
  bottom: -20px;
  right: -40px;
  background: var(--color-primary-light);
  opacity: 0.08;
}

.record__banner-content {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.record__banner-budget {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.1;
}

.record__banner-budget-price {
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 700;
}

.record__banner-budget-unit {
  font-size: 26px;
  font-weight: 700;
}

.record__banner-title {
  font-size: 46px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 2.1px;
  margin-bottom: 20px;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.record__banner-title-highlight {
  font-size: 46px;
}

.record__banner-stats {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.record__banner-stat {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.5;
}

.record__banner-stat-highlight {
  color: var(--color-primary-light);
  position: relative;
}

.record__banner-stat-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 39px;
  background: var(--color-white);
  z-index: -1;
}

/* ========================================
   Feature (特徴)
======================================== */
.feature {
  position: relative;
  padding: 60px 0;
  background: var(--color-primary-bg);
}

.feature__side-label {
  position: absolute;
  top: 56px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.feature__side-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-primary-pale);
}

.feature__side-text {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary-pale);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.feature__list {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  position: relative;
}

.feature__number {
  position: absolute;
  top: 17px;
  left: 4px;
  font-family: var(--font-en);
  font-size: 60px;
  font-weight: 700;
  color: var(--color-primary-border);
  line-height: 1.5;
  z-index: 1;
}

.feature__item-content {
  max-width: 514px;
  position: relative;
  z-index: 3;
}

.feature__item-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 30px;
}

.feature__item-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.85;
  text-align: justify;
}

.feature__item-img {
  position: relative;
  width: 400px;
  height: 208px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.feature__item-img::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -30px;
  width: 432px;
  height: 247px;
  background: var(--color-primary-bg);
  border-radius: 0 0 0 80px;
  z-index: -1;
}

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

/* ========================================
   CTA (Contact)
======================================== */
.cta {
  position: relative;
  height: 551px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.cta__bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-bg-dark);
  opacity: 0.7;
}

.cta__en-title {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 62px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 24.8px;
  z-index: 1;
}

.cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 40px;
}

.cta__lead {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: 2px;
}

.cta__title {
  font-size: 32px;
  font-weight: 700;
  color: #f7f7f7;
  line-height: 1.5;
  margin-bottom: 20px;
}

.cta__desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.85;
}

.cta__buttons {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
  padding: 0 20px;
}

.cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 460px;
  height: 100px;
  border-radius: 120px;
  font-weight: 700;
  transition: opacity 0.3s;
}

.cta__btn:hover {
  opacity: 0.85;
}

.cta__btn--phone {
  background: var(--color-white);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.cta__btn--phone .cta__btn-main {
  font-family: var(--font-en);
  font-size: 26px;
}

.cta__btn--phone .cta__btn-sub {
  font-size: 16px;
}

.cta__btn--contact {
  background: var(--color-accent);
  color: var(--color-white);
}

.cta__btn--contact .cta__btn-main {
  font-size: 22px;
}

.cta__btn--contact .cta__btn-sub {
  font-size: 16px;
}

/* ========================================
   Service / Plans (サービス内容・プラン)
======================================== */
.service {
  position: relative;
  background: #F5FAF4;
  padding: 80px 0 100px;
}

.service__side-label {
  position: absolute;
  top: 43px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.service__side-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-primary-pale);
}

.service__side-text {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary-pale);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.service__header {
  text-align: center;
  max-width: 672px;
  margin: 0 auto 30px;
}

.service__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 20px;
}

.service__desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.85;
}

/* Plan Cards */
.plan-cards {
  max-width: var(--content-width);
  margin: 0 auto 30px;
  overflow: visible;
  padding-top: 70px!important;
  padding-bottom: 10px;
}

.plan-cards .swiper-wrapper {
  align-items: flex-end;
  overflow: visible;
}

.plan-cards__pagination {
  display: none;
}

.plan-card {
  position: relative;
  width: 340px;
  flex-shrink: 0;
  background: var(--color-white);
  text-align: center;
  padding-top: 89px;
  padding-bottom: 20px;
}

.plan-card--recommended {
  margin-top: -76px;
}

.plan-card__badge {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  background: var(--color-primary-light);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 14px;
  border-radius: 125px;
  line-height: 1.8;
  text-align: center;
  white-space: nowrap;
  z-index: 1;
}

.plan-card__badge::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--color-primary-light);
}

.plan-card--ume::before,
.plan-card--take::before,
.plan-card--matsu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}

.plan-card--ume::before {
  width: 106px;
  height: 104px;
  background-image: url("../images/ume.png");
}

.plan-card--take::before {
  width: 160px;
  height: 84px;
  background-image: url("../images/take.png");
}

.plan-card--matsu::before {
  width: 137px;
  height: 72px;
  background-image: url("../images/matsu.png");
}

.plan-card__name {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.5;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.plan-card__price-line {
  width: 48px;
  height: 1px;
  background: var(--color-text);
  margin: 5px auto 10px;
}

.plan-card__price {
  margin-bottom: 5px;
  line-height: 1.5;
  position: relative;
  z-index: 3;
}

.plan-card__price-num {
  font-family: var(--font-en);
  font-size: 46px;
  font-weight: 600;
  color: var(--color-black);
}

.plan-card__price-yen {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-black);
}

.plan-card__price-tax {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-gray);
  margin-bottom: 15px;
}

.plan-card__specs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.plan-card__spec {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--color-primary);
  border-radius: 2px;
  width: 184px;
  height: 29px;
}

.plan-card__spec-icons {
  display: flex;
  align-items: center;
  gap: 1px;
  padding-left: 10px;
}

.plan-card__spec-icons img {
  width: 14px;
  height: 14px;
}

.plan-card__spec-text {
  position: absolute;
  left: 93px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;
  text-align: center;
}

.plan-card__en-label {
  position: absolute;
  bottom: 20px;
  right: -10px;
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 76px;
  font-weight: 600;
  color: var(--color-primary-border);
  letter-spacing: 7.6px;
  text-transform: uppercase;
  opacity: 0.5;
  z-index: 0;
}

.plan-card--ume .plan-card__en-label {
  color: #ecdfe4;
}

.plan-card--take .plan-card__en-label {
  color: var(--color-primary-border);
}

.plan-card--matsu .plan-card__en-label {
  color: #b4c2af;
}

.service__budget-link {
  display: block;
  max-width: var(--content-width);
  margin: 0 auto 40px;
  padding-left: 61px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  transition: opacity 0.3s;
}

.service__budget-link:hover {
  opacity: 0.7;
}

.service__budget-arrow {
  margin-left: 8px;
  font-size: 20px;
}

.service__divider {
  max-width: 960px;
  margin: 0 auto 60px;
  border: none;
  border-top: 1px solid var(--color-primary-border);
}

/* Plan Detail */
.plan-detail {
  max-width: var(--content-width);
  margin: 0 auto 60px;
  position: relative;
}

.plan-detail__en-title {
  font-family: var(--font-en);
  font-size: 76px;
  font-weight: 600;
  color: #ecdfe4;
  letter-spacing: 7.6px;
  text-transform: uppercase;
  margin-bottom: -30px;
  mix-blend-mode: multiply;
}

.plan-detail__en-title--take {
  color: #D6EDCE;
}

.plan-detail__en-title--matsu {
  color: #B4C2AF;
}

.plan-detail__header {
  background: var(--color-white);
  padding: 40px 25px;
  position: relative;
  overflow: hidden;
}

.plan-detail__header--ume::before,
.plan-detail__header--take::before,
.plan-detail__header--matsu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}

.plan-detail__header--ume::before {
  width: 106px;
  height: 104px;
  background-image: url("../images/ume.png");
}

.plan-detail__header--take::before {
  width: 160px;
  height: 84px;
  background-image: url("../images/take.png");
}

.plan-detail__header--matsu::before {
  width: 137px;
  height: 72px;
  background-image: url("../images/matsu.png");
}

.plan-detail__header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.plan-detail__header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.plan-detail__name {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-black);
}

.plan-detail__header-divider {
  display: inline-block;
  width: 1px;
  height: 63px;
  background: #ccc;
}

.plan-detail__header-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan-detail__header-price-main {
  display: flex;
  align-items: baseline;
}

.plan-detail__header-price-num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.5;
}

.plan-detail__header-price-yen {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-black);
}

.plan-detail__header-price-tax {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-gray);
}

.plan-detail__header-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

.plan-detail__header-spec {
  display: flex;
  align-items: center;
  gap: 7px;
}

.plan-detail__header-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--color-primary);
  padding: 4px 8px;
  border-radius: 3px;
  height: 25px;
}

.plan-detail__header-spec-pill img {
  width: 14px;
  height: 14px;
}

.plan-detail__header-spec-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
}

.plan-detail__header-line {
  border: none;
  border-top: 1px solid #ddd;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.plan-detail__section {
  background: var(--color-white);
  padding: 25px;
}

.plan-detail__section-title-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary-border);
  padding: 2px 14px;
  margin-bottom: 20px;
}

.plan-detail__section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
}

.plan-detail__section-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary-light);
  flex-shrink: 0;
}

.plan-detail__section-body {
  display: flex;
  gap: 84px;
  align-items: flex-start;
}

.plan-detail__list {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--color-black);
  list-style: disc;
  padding-left: 24px;
}

.plan-detail__list li {
  margin-bottom: 0;
}

.plan-detail__list-tooltip-wrap {
  position: relative;
}

.plan-detail__tooltip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  margin-left: 5px;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  line-height: 1;
}

.plan-detail__tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  background: var(--color-text);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  padding: 12px 16px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
  z-index: 100;
  white-space: normal;
}

.plan-detail__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--color-text);
}

.plan-detail__tooltip-trigger:hover .plan-detail__tooltip {
  opacity: 1;
  visibility: visible;
}

.plan-detail__footnote {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-black);
  text-align: right;
}

.plan-detail__section-img {
  width: 398px;
  height: 288px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.plan-detail__section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-detail__gallery {
  display: flex;
  gap: 57px;
  align-items: flex-start;
}

.plan-detail__gallery-main {
  position: relative;
  width: 534px;
  height: 411px;
  flex-shrink: 0;
  background: var(--color-primary-border);
  overflow: hidden;
  cursor: pointer;
}

.plan-detail__gallery-main::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.5) url('../images/icon-zoom.svg') center / 20px 20px no-repeat;
  border-radius: 50%;
  transition: background-color 0.3s;
  pointer-events: none;
}

.plan-detail__gallery-main:hover::after {
  background-color: rgba(255, 255, 255, 0.7);
}

/* 配線図ポップアップモーダル */
.diagram-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.diagram-modal.is-open {
  display: flex;
}

.diagram-modal__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  cursor: default;
}

.diagram-modal__close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
}

.plan-detail__gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plan-detail__gallery-desc {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.85;
  text-align: justify;
}

.plan-detail__gallery-desc p + p {
  margin-top: 1.85em;
}

/* ========================================
   Option (オプション料金)
======================================== */
.option {
  position: relative;
  background: var(--color-white);
  padding: 75px 0 80px;
}

.option__side-label {
  position: absolute;
  top: 43px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.option__side-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-primary-pale);
}

.option__side-text {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary-pale);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.option__content {
  max-width: 740px;
  margin: 0 auto;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.option__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  line-height: 1.5;
}

.option__desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  line-height: 1.85;
  margin-top: -40px;
}

.option__table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option__table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #143d0a;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  height: 33px;
}

.option__table-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.option__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  border-bottom: 1px dotted #ddd;
}

.option__row--alt {
  background: var(--color-primary-bg);
}

.option__row-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.option__row-icon {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.option__row-icon--green {
  background: var(--color-primary-light);
}

.option__row-icon img {
  width: 16px;
  height: 16px;
  filter: brightness(10);
}

.option__row-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  white-space: nowrap;
}

.option__row-price {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  text-align: right;
  white-space: nowrap;
}

.option__row-price-wrap {
  text-align: right;
}

.option__row-price-note {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.35;
}

/* ========================================
   Area (対応エリア)
======================================== */
.area {
  position: relative;
  background: var(--color-primary-bg);
  padding: 61px 0 80px;
}

.area__side-label {
  position: absolute;
  top: 61px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.area__side-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-primary-pale);
}

.area__side-text {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary-pale);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.area__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 40px;
}

.area__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: var(--content-width);
  margin: 0 auto;
  margin-bottom: 40px;
}

.area__map {
  position: relative;
  flex-shrink: 0;
}

.area__map-img {
  width: 380px;
  height: auto;
}

.area__map-legend {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  justify-content: center;
}

.area__legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.area__legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.area__legend-dot--base {
  background: var(--color-text);
}

.area__legend-dot--area {
  background: var(--color-primary-light);
  border-radius: 2px;
}

.area__info {
  max-width: 356px;
}

.area__tags {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.area__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  min-width: 84px;
  text-align: center;
  line-height: 1.5;
}

.area__subtitle {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 20px;
}

.area__desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.85;
  text-align: justify;
}

/* ========================================
   Flow (ご利用の流れ)
======================================== */
.flow {
  position: relative;
  background: var(--color-white);
  padding: 80px 0;
}

.flow__side-label {
  position: absolute;
  top: 80px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.flow__side-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-primary-pale);
}

.flow__side-text {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary-pale);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.flow__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 50px;
}

.flow__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0;
}

.flow__step {
  width: 200px;
  flex-shrink: 0;
}

.flow__step-header {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.flow__step-label {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary-border);
  line-height: 1.5;
}

.flow__step-num {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.5;
}

.flow__step-body {
  padding: 20px;
}

.flow__step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  line-height: 1.8;
  margin-bottom: 10px;
}

.flow__step-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.8;
  text-align: justify;
}

.flow__link {
  color: var(--color-primary-light);
  text-decoration: underline;
}

/* ========================================
   FAQ (よくあるご質問)
======================================== */
.faq {
  position: relative;
  background: var(--color-primary-bg);
  padding: 77px 0 80px;
}

.faq__side-label {
  position: absolute;
  top: 77px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.faq__side-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-primary-pale);
}

.faq__side-text {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary-pale);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.faq__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 60px;
}

.faq__list {
  max-width: 740px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid #ddd;
}

.faq__item summary {
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__question-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.faq__question-row:hover {
  background: rgba(86, 196, 69, 0.05);
}

.faq__q {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  flex-shrink: 0;
}

.faq__question {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.85;
  flex: 1;
}

.faq__toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  margin-left: auto;
}

.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-primary-light);
  transition: transform 0.3s;
}

.faq__toggle::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq__toggle::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.faq__item[open] .faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
  display: flex;
  gap: 22px;
  padding: 0 10px 20px;
}

.faq__a {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary-light);
  line-height: 1.5;
  flex-shrink: 0;
}

.faq__answer-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.85;
}

/* ========================================
   Contact Form (お見積もりフォーム)
======================================== */
/* ========================================
   Final CTA (CTAエリア_2)
======================================== */
.final-cta {
  position: relative;
  background: var(--color-white);
  overflow: hidden;
}

.final-cta__top {
  position: relative;
  padding: 105px 0 40px;
  text-align: center;
  z-index: 1;
}

.final-cta__deco-wave {
  position: absolute;
  top: 59px;
  left: 0;
  width: 100%;
  height: 184px;
  background: #ebf5e8;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.final-cta__deco-circle {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.final-cta__deco-circle--1 {
  width: 327px;
  height: 327px;
  top: 10px;
  right: -4px;
  border: 2px solid var(--color-primary-light);
  opacity: 0.3;
}

.final-cta__deco-circle--2 {
  width: 247px;
  height: 247px;
  top: 50px;
  right: -24px;
  background: var(--color-primary-light);
  opacity: 0.06;
}

.final-cta__deco-circle--3 {
  width: 205px;
  height: 205px;
  top: 82px;
  left: -67px;
  border: 2px solid var(--color-primary-light);
  opacity: 0.3;
}

.final-cta__deco-circle--4 {
  width: 147px;
  height: 147px;
  top: 111px;
  left: -38px;
  background: var(--color-primary-light);
  opacity: 0.06;
}

.final-cta__title {
  position: relative;
  z-index: 1;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
}

.final-cta__bottom {
  display: flex;
  height: 272px;
  position: relative;
  z-index: 3;
}

.final-cta__left {
  position: relative;
  width: 50%;
  overflow: hidden;
}

.final-cta__left-bg {
  position: absolute;
  inset: 0;
}

.final-cta__left-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__left-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  opacity: 0.89;
}

.final-cta__left-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 30px;
}

.final-cta__message {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
}

.final-cta__leaflet-link {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: underline;
  line-height: 1.8;
  margin-bottom: 5px;
}

.final-cta__leaflet-note {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}

.final-cta__right {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.final-cta__phone-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
}

.final-cta__phone-number {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent);
}

.final-cta__phone-time {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
}

.final-cta__contact-block {
  flex: 1;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta__contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  transition: opacity 0.3s;
}

.final-cta__contact-btn:hover {
  opacity: 0.85;
}

.final-cta__contact-main {
  font-size: 20px;
  font-weight: 700;
}

.final-cta__contact-sub {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
}

/* ========================================
   News (お知らせ・コンテンツ)
======================================== */
.news {
  position: relative;
  background: var(--color-white);
  padding: 59px 0 80px;
}

.news__side-label {
  position: absolute;
  top: 93px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.news__side-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-primary-pale);
}

.news__side-text {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary-pale);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.news__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 50px;
}

.news__cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  max-width: var(--content-width);
  margin: 0 auto 50px;
}

.news__card {
  width: 346px;
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 4px 4px 5px rgba(86, 196, 69, 0.1);
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s;
}

.news__card:hover {
  opacity: 0.8;
}

.news__card-img {
  width: 100%;
  height: 176px;
  background: #dddddd;
}

.news__card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 14px;
  line-height: 1.8;
  color: var(--color-text);
}

.news__card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news__card-category {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
}

.news__card-category--news {
  background: #e8f5e9;
  color: var(--color-primary);
}

.news__card-category--case {
  background: #fff3e0;
  color: #e65100;
}

.news__card-category--column {
  background: #e3f2fd;
  color: #1565c0;
}

.news__card-date {
  font-size: 12px;
  font-weight: 700;
}

.news__card-title {
  font-size: 18px;
  font-weight: 700;
}

.news__card-text {
  font-size: 14px;
  font-weight: 500;
  text-align: justify;
}

.c-btn-outline-wrap {
  text-align: center;
}

.c-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

.c-btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.c-btn-outline:hover {
  opacity: 0.85;
}

.c-btn-outline__arrow {
  font-size: 20px;
}

/* ========================================
   Breadcrumb
======================================== */
.breadcrumb {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 20px 20px 0;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  font-size: 13px;
  color: var(--color-text-gray);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: ">";
  margin: 0 10px;
  color: var(--color-text-gray);
}

.breadcrumb__link {
  color: var(--color-primary);
  transition: opacity 0.3s;
}

.breadcrumb__link:hover {
  opacity: 0.7;
}

.breadcrumb__current {
  color: var(--color-text);
}

/* ========================================
   Footer (フッター)
======================================== */
.footer {
  background: var(--color-primary-light);
  padding: 50px 82px 25px;
  position: relative;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer__left {
  color: var(--color-white);
}

.footer__sub-text {
  font-size: 10px;
  margin-bottom: 8px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo-img {
  height: 36px;
  width: auto;
}

.footer__company {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.footer__address {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: flex-end;
  max-width: 717px;
  align-content: flex-start;
  padding-top: 60px;
}

.footer__nav-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  white-space: nowrap;
  transition: opacity 0.3s;
}

.footer__nav-link:hover {
  opacity: 0.7;
}

.footer__nav-icon {
  font-size: 12px;
  margin-left: 2px;
}

.footer__copyright {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--color-white);
  text-align: center;
}

/* ========================================
   Mobile: Hamburger & Menu (PC hidden)
======================================== */
.header__hamburger {
  display: none;
}

.header__mobile-menu {
  display: none;
}

body.is-menu-open {
  overflow: hidden;
}

/* ========================================
   Responsive: FV Tablet (769px〜1100px)
======================================== */
@media (min-width: 769px) and (max-width: 1100px) {
  .fv {
    height: auto;
    padding: 30px 20px 40px;
  }

  .fv__side-label {
    display: none;
  }

  .fv__main {
    padding-top: 40px;
  }

  .fv__main-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .fv__content {
    text-align: center;
  }

  .fv__tags {
    justify-content: center;
  }

  .fv__title {
    font-size: 36px;
  }

  .fv__title-price {
    font-size: 68px;
  }

  .fv__title-unit {
    font-size: 42px;
  }

  .fv__title-particle {
    font-size: 36px;
  }

  .fv__title-highlight {
    font-size: 48px;
  }

  .fv__subtitle {
    justify-content: center;
    font-size: 20px;
  }

  .fv__right {
    align-items: center;
  }

  .fv__price-box {
    width: 100%;
    max-width: 700px;
  }
}

/* ========================================
   Responsive: Header SP (max-width: 768px)
======================================== */
@media (max-width: 768px) {
  .header {
    height: 70px;
  }

  .header__inner {
    height: 100%;
    padding: 0 0 0 20px;
  }

  .header__sub-text {
    font-size: 10px;
  }

  .header__logo-img {
    height: 30px;
  }

  .header__nav {
    display: none;
  }

  .header__contact {
    display: none;
  }

  /* Hamburger button */
  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background: #fafafa;
    border: none;
    cursor: pointer;
    z-index: 1100;
  }

  .header__hamburger-line {
    display: block;
    width: 35px;
    height: 2px;
    background: var(--color-primary);
    transition: transform 0.3s, opacity 0.3s;
  }

  .header__hamburger.is-active .header__hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .header__hamburger.is-active .header__hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .header__hamburger.is-active .header__hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header__hamburger.is-active {
    background: var(--color-primary-light);
  }

  .header__hamburger.is-active .header__hamburger-line {
    background: var(--color-white);
  }

  /* Mobile menu overlay */
  .header__mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--color-white);
    z-index: 1050;
    flex-direction: column;
    overflow-y: auto;
    padding-bottom: 100px;
  }

  .header__mobile-menu.is-open {
    display: flex;
  }

  .header__mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 0;
  }

  .header__mobile-nav-link {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
  }

  .header__mobile-nav-link:first-child {
    border-top: 1px solid #eee;
  }

  .header__mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 30px 40px;
  }

  .header__mobile-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70px;
    border: 2px solid var(--color-accent);
    border-radius: 120px;
    line-height: 1.2;
  }

  .header__mobile-phone-number {
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent);
  }

  .header__mobile-phone-time {
    font-size: 14px;
    color: var(--color-accent);
  }

  .header__mobile-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70px;
    background: var(--color-accent);
    border-radius: 120px;
    color: var(--color-white);
    line-height: 1.2;
  }

  .header__mobile-cta-main {
    font-size: 20px;
    font-weight: 700;
  }

  .header__mobile-cta-sub {
    font-size: 14px;
  }

  /* ========================================
     Responsive: FV SP
  ======================================== */
  .fv {
    margin-top: 70px;
    height: auto;
    padding: 30px 20px 40px;
  }

  .fv__deco-rect,
  .fv__deco-circle-green {
    display: none;
  }

  .fv__side-label {
    display: none;
  }

  .fv__main {
    padding-top: 0;
  }

  .fv__main-row {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
  }

  .fv__tags {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
  }

  .fv__tag {
    font-size: 13px;
    padding: 3px 10px;
  }

  .fv__title {
    font-size: 28px;
    line-height: 1.3;
  }

  .fv__title-price {
    font-size: 52px;
  }

  .fv__title-unit {
    font-size: 34px;
  }

  .fv__title-particle {
    font-size: 28px;
  }

  .fv__title-highlight {
    font-size: 38px;
  }

  .fv__subtitle {
    font-size: 16px;
    gap: 10px;
  }

  .fv__subtitle-line {
    width: 20px;
  }

  .fv__right {
    align-items: center;
  }

  .fv__badge-text {
    font-size: 18px;
    text-align: center;
  }

  .fv__credentials {
    margin-bottom: 15px;
  }

  .fv__credentials-text {
    font-size: 18px;
  }

  .fv__credentials-laurel {
    width: 30px;
  }

  .fv__cta-button {
    width: 100%;
    max-width: 340px;
    height: 60px;
    font-size: 16px;
  }

  .fv__price-box {
    width: 100%;
    padding: 12px 16px;
  }

  .fv__price-text {
    font-size: 12px;
    line-height: 1.6;
  }

  .fv__price-label {
    font-size: 12px;
    padding: 2px 12px;
    margin-right: 8px;
  }

  .fv__price-detail {
    font-size: 12px;
  }

  .fv__price-amount {
    font-size: 22px;
  }

  .fv__price-yen {
    font-size: 18px;
  }

  .fv__price-tax {
    font-size: 12px;
  }

  .fv__price-incl {
    font-size: 14px;
  }

  .fv__price-note {
    font-size: 11px;
  }

  /* FV Photo SP */
  .fv-photo {
    aspect-ratio: 2 / 1;
  }

  /* ========================================
     Responsive: Record SP
  ======================================== */
  .record {
    padding: 60px 0 40px;
  }

  .record__side-label {
    display: none;
  }

  .record__header {
    margin: 0 auto 30px;
    padding: 0 20px;
  }

  .record__header-area {
    font-size: 16px;
  }

  .record__header-title {
    font-size: 22px;
  }

  .record__header-sub {
    font-size: 12px;
  }

  .record__header-desc {
    font-size: 14px;
  }

  .record__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .record__card-img {
    height: 110px;
  }

  .record__card-body {
    padding: 12px 10px 15px;
  }

  .record__card-title {
    font-size: 14px;
    line-height: 1.5;
  }

  .record__card-text {
    font-size: 12px;
    line-height: 1.6;
  }

  /* ========================================
     Responsive: Banner SP
  ======================================== */
  .record__banner-wrap {
    padding: 0;
  }

  .record__banner {
    height: auto;
    padding: 40px 20px;
    clip-path: none;
  }

  .record__deco-circle {
    display: none;
  }

  .record__banner-budget {
    font-size: 13px;
  }

  .record__banner-budget-price {
    font-size: 28px;
  }

  .record__banner-budget-unit {
    font-size: 18px;
  }

  .record__banner-title {
    font-size: 30px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .record__banner-title-highlight {
    font-size: 30px;
  }

  .record__banner-stat {
    font-size: 20px;
  }

  .record__banner-stat-highlight::after {
    height: 28px;
  }

  /* ========================================
     Responsive: Feature SP
  ======================================== */
  .feature {
    padding: 40px 0;
  }

  .feature__side-label {
    display: none;
  }

  .feature__list {
    padding: 0 20px;
    gap: 10px;
  }

  .feature__item {
    flex-direction: column;
    padding: 30px 15px;
    gap: 20px;
  }

  .feature__number {
    position: static;
    font-size: 40px;
    margin-bottom: -10px;
  }

  .feature__item-content {
    max-width: 100%;
  }

  .feature__item-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .feature__item-text {
    font-size: 14px;
  }

  .feature__item-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  .feature__item-img::before {
    display: none;
  }

  /* ========================================
     Responsive: CTA SP
  ======================================== */
  .cta {
    height: auto;
    padding: 60px 20px;
  }

  .cta__en-title {
    font-size: 32px;
    letter-spacing: 10px;
    top: 15px;
  }

  .cta__lead {
    font-size: 16px;
  }

  .cta__title {
    font-size: 24px;
  }

  .cta__desc {
    font-size: 14px;
  }

  .cta__buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .cta__btn {
    width: 100%;
    max-width: 340px;
    height: 80px;
    margin: 0 auto;
    line-height: 1.2;
  }

  /* ========================================
     Responsive: Service SP
  ======================================== */
  .service {
    padding: 60px 0 60px;
  }

  .service__side-label {
    display: none;
  }

  .service__header {
    margin: 0 auto 40px;
    padding: 0 20px;
  }

  .service__title {
    font-size: 24px;
  }

  .service__desc {
    font-size: 14px;
  }

  /* Plan cards swiper */
  .plan-cards {
    max-width: 100%;
    margin: 0 auto 30px;
    padding: 0 20px 40px !important;
    overflow: hidden;
  }

  .plan-cards .swiper-wrapper {
    padding-top: 60px;
  }

  .plan-card {
    width: 300px !important;
    max-width: 340px;
    padding-top: 89px;
  }

  .plan-card--recommended {
    margin-top: 0;
  }

  .plan-card__badge {
    top: -55px;
  }

  .plan-cards__pagination {
    display: block;
    bottom: 0px !important;
    text-align: center;
  }

  .plan-cards__pagination .swiper-pagination-bullet {
    background: var(--color-primary-light);
    opacity: 0.3;
    width: 10px;
    height: 10px;
  }

  .plan-cards__pagination .swiper-pagination-bullet-active {
    opacity: 1;
  }

  .service__budget-link {
    padding-left: 20px;
    font-size: 14px;
  }

  .service__divider {
    margin: 0 20px 40px;
  }

  /* Plan detail SP */
  .plan-detail {
    margin: 0 auto 40px;
    padding: 0 15px;
  }

  .plan-detail__en-title {
    font-size: 48px;
    letter-spacing: 4px;
  }

  .plan-detail__header {
    padding: 30px 15px;
  }

  .plan-detail__header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
  }

  .plan-detail__header-left {
    gap: 20px;
  }

  .plan-detail__name {
    font-size: 24px;
  }

  .plan-detail__header-price-num {
    font-size: 32px;
  }

  .plan-detail__header-specs {
    grid-template-columns: 1fr 1fr;
    gap: 8px 15px;
    width: 100%;
  }

  .plan-detail__section {
    padding: 20px 15px;
  }

  .plan-detail__section-body {
    flex-direction: column;
    gap: 20px;
  }

  .plan-detail__section-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }

  .plan-detail__gallery {
    flex-direction: column;
    gap: 20px;
  }

  .plan-detail__gallery-main {
    width: 100%;
    height: auto;
  }

  .plan-detail__gallery-desc {
    font-size: 14px;
  }

  /* ========================================
     Responsive: Option SP
  ======================================== */
  .option {
    padding: 50px 0 60px;
  }

  .option__side-label {
    display: none;
  }

  .option__content {
    gap: 30px;
    padding: 0 20px;
  }

  .option__title {
    font-size: 24px;
  }

  .option__desc {
    font-size: 14px;
    margin-top: -10px;
  }

  .option__table {
    gap: 8px;
  }

  .option__table-header {
    font-size: 11px;
    height: 30px;
    padding: 4px 10px;
  }

  .option__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 10px;
  }

  .option__row-left {
    gap: 10px;
  }

  .option__row-icon {
    width: 26px;
    height: 26px;
  }

  .option__row-icon img {
    width: 14px;
    height: 14px;
  }

  .option__row-name {
    font-size: 14px;
  }

  .option__row-price {
    font-size: 14px;
    align-self: flex-end;
  }

  .option__row-price-wrap {
    align-self: flex-end;
  }

  .option__row-price-note {
    font-size: 10px;
  }

  /* ========================================
     Responsive: Area SP
  ======================================== */
  .area {
    padding: 40px 0 60px;
  }

  .area__side-label {
    display: none;
  }

  .area__title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .area__body {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }

  .area__map-img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .area__map {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .area__info {
    max-width: 100%;
    text-align: center;
  }

  .area__tags {
    justify-content: center;
    flex-wrap: wrap;
  }

  .area__tag {
    font-size: 16px;
    min-width: 70px;
    padding: 2px 10px;
  }

  .area__subtitle {
    font-size: 28px;
  }

  .area__desc {
    font-size: 14px;
    text-align: center;
  }

  /* ========================================
     Responsive: Flow SP
  ======================================== */
  .flow {
    padding: 50px 0;
  }

  .flow__side-label {
    display: none;
  }

  .flow__title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .flow__steps {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
  }

  .flow__step {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .flow__step-header {
    height: 40px;
  }

  .flow__step-label {
    font-size: 12px;
  }

  .flow__step-num {
    font-size: 20px;
  }

  .flow__step-body {
    padding: 15px 15px;
  }

  .flow__step-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .flow__step-text {
    font-size: 13px;
  }

  /* ========================================
     Responsive: FAQ SP
  ======================================== */
  .faq {
    padding: 50px 0 60px;
  }

  .faq__side-label {
    display: none;
  }

  .faq__title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .faq__list {
    padding: 0 20px;
  }

  .faq__question-row {
    gap: 12px;
    padding: 10px 5px;
  }

  .faq__q {
    font-size: 18px;
  }

  .faq__question {
    font-size: 14px;
  }

  .faq__toggle {
    width: 20px;
    height: 20px;
  }

  .faq__toggle::before {
    width: 12px;
  }

  .faq__toggle::after {
    height: 12px;
  }

  .faq__answer {
    gap: 12px;
    padding: 0 5px 15px;
  }

  .faq__a {
    font-size: 18px;
  }

  .faq__answer-text {
    font-size: 14px;
  }
}

/* ========================================
   Responsive: News SP
======================================== */
@media (max-width: 768px) {
  .news {
    padding: 40px 0 60px;
  }

  .news__side-label {
    display: none;
  }

  .news__title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .news__cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 30px;
  }

  .news__card {
    width: 100%;
    max-width: 340px;
  }

  .news__card-img {
    height: 140px;
  }

  .news__card-body {
    padding: 15px 12px;
  }

  .news__card-title {
    font-size: 16px;
  }

  .news__card-text {
    font-size: 13px;
  }

  .c-btn-outline {
    width: calc(100% - 40px);
    max-width: 340px;
    height: 60px;
    font-size: 18px;
  }

  /* ========================================
     Responsive: Final CTA SP
  ======================================== */
  .final-cta__top {
    padding: 60px 20px 30px;
  }

  .final-cta__deco-wave {
    height: 120px;
  }

  .final-cta__deco-circle {
    display: none;
  }

  .final-cta__title {
    font-size: 22px;
  }

  .final-cta__bottom {
    flex-direction: column;
    height: auto;
  }

  .final-cta__left {
    width: 100%;
    padding: 40px 20px;
  }

  .final-cta__left-content {
    padding: 0;
  }

  .final-cta__message {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .final-cta__leaflet-link {
    font-size: 16px;
  }

  .final-cta__leaflet-note {
    font-size: 12px;
  }

  .final-cta__right {
    width: 100%;
  }

  .final-cta__phone-block {
    padding: 20px;
  }

  .final-cta__phone-number {
    font-size: 22px;
  }

  .final-cta__contact-block {
    padding: 20px;
  }

  .final-cta__contact-main {
    font-size: 18px;
  }

  /* ========================================
     Responsive: Footer SP
  ======================================== */
  .footer {
    padding: 40px 20px 20px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer__logo-img {
    height: 30px;
  }

  .footer__company {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .footer__address {
    font-size: 13px;
  }

  .footer__nav {
    justify-content: flex-start;
    gap: 12px 20px;
    padding-top: 0;
    max-width: 100%;
  }

  .footer__nav-link {
    font-size: 14px;
  }

  .footer__copyright {
    font-size: 10px;
    padding-bottom: 70px;
  }

  .breadcrumb {
    padding: 14px 16px 0;
  }

  .breadcrumb__list {
    font-size: 12px;
  }
}

/* ========================================
   SP Fixed Bottom Bar
======================================== */
.sp-fixed-bar {
  display: none;
}

@media (max-width: 768px) {
  .sp-fixed-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  }

  .sp-fixed-bar__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    padding: 12px 0;
    background: var(--color-white);
    color: var(--color-accent);
    font-size: 15px;
    font-weight: 700;
  }

  .sp-fixed-bar__phone-icon {
    font-size: 18px;
    line-height: 1;
  }

  .sp-fixed-bar__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 10px 0;
    background: var(--color-accent);
    color: var(--color-white);
  }

  .sp-fixed-bar__contact-main {
    font-size: 15px;
    font-weight: 700;
  }

  .sp-fixed-bar__contact-sub {
    font-size: 10px;
    font-weight: 400;
  }
}
