@charset "UTF-8";

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  --color-primary: #339933;
  --color-primary-light: #64c424;
  --color-accent: #ff9900;
  --color-accent-dark: #cc7a00;
  --color-text: #333333;
  --color-text-dark: #1c1d1c;
  --color-text-mid: #515151;
  --color-text-light: #666666;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-bg-light: #f9f9f9;
  --color-bg-green: #f4fdec;
  --color-bg-green2: #f4fdec;
  --color-bg-green3: #f4fdec;
  --color-red: #e7000b;

  --font-base: "Noto Sans JP", sans-serif;
  --font-accent: "Lato", sans-serif;
  --font-poppins: "Poppins", sans-serif;

  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-ls: 18px;
  --font-size-lg: 24px;
  --font-size-xl: 32px;
  --font-size-hero: 48px;
  --font-size-title: 40px;

  --font-line-height-base: 1.7;
  --font-line-height-title: 1.3;
  --font-line-height-lg: 2.0;

  --container-width: 1100px;
  --container-padding: 20px;
  --header-height: 100px;
  --nav-height: 46px;
  --section-padding: 80px;
  --section-padding-half: 40px;
}

/* スマホ版（例：画面幅768px以下）の設定 */
@media (max-width: 768px) {
  :root {
    /* スマホ用に数値を小さく上書き */
    --font-size-xs: 10px;
    --font-size-sm: 12px;
    --font-size-base: 14px;
    --font-size-ls: 18px;
    --font-size-lg: 20px;
    --font-size-xl: 24px;
    --font-size-hero: 32px;
    --font-size-title: 24px;
    --container-padding: 24px;
  }
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0; padding: 0;
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  line-height: var(--font-line-height-base);
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: opacity .3s; }
a:hover { opacity: .75; }

img { max-width: 100%; height: auto; vertical-align: middle; }

ul, ol { list-style: none; padding: 0; margin: 0; }

p { margin: 0; }

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; }

/* ==========================================================================
   Layout
   ========================================================================== */
.l-container {
  max-width: calc(var(--container-width) + var(--container-padding) * 2);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ==========================================================================
   Section Heading (共通)
   ========================================================================== */
.p-section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.p-section-heading__title {
  display: inline-block;
  font-size: var(--font-size-title);
  font-weight: 400;
  letter-spacing: 5px;
  color: var(--color-text-mid);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
  line-height: 1.3;
}

.p-section-heading__title--sm {
  letter-spacing: 5px;
}

.p-section-heading--light .p-section-heading__title {
  color: var(--color-white);
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Header
   ========================================================================== */
.p-header {
  height: var(--header-height);
  background: var(--color-white);
  border-bottom: 1px solid #eee;
}

.p-header__top-text {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  padding: 8px 0;
  line-height: 1;
}

.p-header__inner {
  height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.p-header__contacts {
  display: flex;
  align-items: center;
  gap: 24px;
}

.p-header__tel-box {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.p-header__contact-text {
  font-size: 10px;
  line-height: 1.5;
  text-align: right;
  font-weight: 500;
}

.p-header__tel {
  font-family: var(--font-accent);
  font-size: var(--font-size-xl);
  font-weight: 900;
  line-height: 1;
  color: var(--color-black);
}

.p-header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-white);
  width: 165px;
  height: 42px;
  border-radius: 4px;
  font-size: var(--font-size-sm);
  font-weight: 700;
  box-shadow: 0 4px 0 var(--color-accent-dark);
  transition: all .2s;
}

.p-header__btn:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--color-accent-dark);
  opacity: 1;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.p-nav {
  height: var(--nav-height);
  background: #64C424;
  position: sticky;
  top: 0;
  z-index: 100;
}

.p-nav .l-container { 
  height: 100%; 
}

.p-nav__list {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.p-nav__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.p-nav__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 16px;
  background: rgba(255,255,255,.3);
}

.p-nav__link {
  color: var(--color-white);
  font-weight: 500;
  padding: 0 6px;
  white-space: nowrap;
  transition: all .2s;
  font-size: var(--font-size-sm);
}

.p-nav__link:hover,
.p-nav__link.is-active { color: var(--color-accent); opacity: 1; }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.p-hero {
  position: relative;
  height: 700px;
  background: #2a3a2a;
}

.p-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.p-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.65) 40%, rgba(0,0,0,.2) 100%);
  z-index: 2;
}

.p-hero__container { height: 100%; }

.p-hero__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0;
  max-width: 600px;
}

.p-hero__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  width: fit-content;
}

.p-hero__badge-tail {
  display: block;
  flex-shrink: 0;
  height: 34px;
  width: auto;
}

.p-hero__badge-tail--right { transform: scaleX(-1); }

.p-hero__badge-body {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #c3ac04;
  color: var(--color-white);
  padding: 10px 8px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.p-hero__badge-icon { width: 24px; height: 24px; }

.p-hero__title {
  line-height: 1.2;
  margin-bottom: 6px;
}

.p-hero__title-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
}

.p-hero__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 14px;
  text-shadow: 0 2px 6px rgba(0,0,0,.4);
}

.p-hero__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.p-hero__tag {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  padding: 3px 14px;
  border-radius: 50px;
  font-size: var(--font-size-sm);
  font-weight: 700;
}

.p-hero__tag-suffix {
  color: var(--color-white);
  font-weight: 700;
}

.p-hero__description {
  color: var(--color-white);
  line-height: 1.7;
  margin-bottom: 20px;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.p-hero__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
  transition: all .2s;
  width: fit-content;
}

.p-hero__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
  opacity: 1;
}

/* ==========================================================================
   Resolve Banner
   ========================================================================== */
/* ==========================================================================
   Resolve Banner
   ========================================================================== */
.p-resolve {
  background: var(--color-white);
  padding-top: 40px;
  padding-bottom: 80px;
}

.p-resolve__inner {
  position: relative;
  gap: 0;
}

.p-resolve__photo {
  position: absolute;
  bottom: -110px;
  left:-100px;
  flex-shrink: 0;
  width: 250px;
  z-index: 10;
}

.p-resolve__photo img {
  display: block;
  width: 100%;
}

.p-resolve__banner {
  flex: 1;
  position: relative;
  height: 100px;
  margin-bottom: 30px;
}

.p-resolve__banner-bg {
  position: absolute;
  top: -5px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  background: #ccc;
  transform: rotate(1.2deg);
  z-index: 1;
}

.p-resolve__banner-content {
  position: absolute;
  inset: 0;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.p-resolve__text {
  font-size: var(--font-size-xl);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-align: center;
}

/* ==========================================================================
   Problems Section
   ========================================================================== */
.p-problems {
  background: var(--color-white);
  padding: 80px 0 100px;
  position: relative;
}

.p-problems__heading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.p-problems__heading-img {
  width: 120px;
  flex-shrink: 0;
}

.p-problems__heading {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text-dark);
}

.p-problems__heading-accent { 
  color: var(--color-primary-light); 
  font-size: 1.25em;
}

.p-problems__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.p-problems__card .card-inner {
  display: flex;
  padding: 12px 12px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  position: relative;
}

/* 矩形背景 */
.p-problems__card::before {
  content: "";
  background-image: url(../images/problems_card_top.svg);
  background-size: 100% auto;
  background-position: bottom left;
  background-repeat: no-repeat;
  width: 100%;
  height: 30px;
  display: block;
  inset: 0;
  z-index: -1;
}
.p-problems__card::after {
  content: "";
  background-image: url(../images/problems_card_top_bottom.svg);
  background-size: 100% auto;
  background-position: top left;
  background-repeat: no-repeat;
  width: 100%;
  height: 30px;
  display: block;
  inset: 0;
  z-index: -1;
}

/* 上下の斜め三角装飾（SVGファイル） */

/* Alternating colors */
.p-problems__card:nth-child(odd) .card-inner {
  background-color: #FEFCE8;
}
.p-problems__card:nth-child(even) .card-inner {
  background-color: #f0fce4;
}

/* 偶数カードのSVG色を#f0fce4に上書き */
.p-problems__card:nth-child(even)::before {
  background-image: url("data:image/svg+xml,<svg width='260' height='24' viewBox='0 0 260 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M260 23.6524H0L20.6517 0L260 23.6524Z' fill='%23f0fce4'/></svg>");
}
.p-problems__card:nth-child(even)::after {
  background-image: url("data:image/svg+xml,<svg width='260' height='24' viewBox='0 0 260 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 0L260 0L239.348 23.6523L0 0Z' fill='%23f0fce4'/></svg>");
}

.p-problems__card-title {
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.p-problems__card-text {
  color: var(--color-text-dark);
  line-height: 1.7;
  flex: 1;
}

.p-problems__card-img {
  position: absolute;
  right: 0;
  z-index: 5;
  width: 120px;
}
.card01 .p-problems__card-img {
  bottom: -100px;
}
.card02 .p-problems__card-img {
  bottom: -100px;
}
.card03 .p-problems__card-img {
  bottom: -95px;
}
.card04 .p-problems__card-img {
  bottom: -120px;
}

.p-problems__card-img img {
  width: 100%;
  height: auto;
}

.p-problems__char {
  position: absolute;
  right: calc(50% - 500px);
  bottom: -30px;
  width: 237px;
  z-index: 10;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.p-features {
  background: #F4FDEC;
  padding: 80px 0 100px;
}

.p-features__lead {
  text-align: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}


.p-features__desc {
  text-align: center;
  color: var(--color-text-mid);
  line-height: 1.8;
  margin-bottom: 80px;
}

.p-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.p-features__item {
  height: 100%;
}

.p-features__item-inner {
  background: var(--color-white);
  padding: 60px 24px 30px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
}

.p-features__item-num {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: auto;
  z-index: 10;
}

.p-features__item-num img {
  width: 100%;
  height: auto;
}

.p-features__item-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text-dark);
  line-height: 1.4;
  margin-bottom: 20px;
}

.p-features__item-text {
  color: var(--color-text-dark);
  line-height: 1.8;
  flex: 1;
  text-align: left;
}

/* Character Illustrations positioning */
.p-features__item-img {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.p-features__item:nth-child(1) .p-features__item-img {
  top: -30px;
  right: 0px;
}

.p-features__item:nth-child(2) .p-features__item-img {
  top: -30px;
  right: 5px;
}

.p-features__item:nth-child(3) .p-features__item-img {
  top: -75px;
  right: 30px;
}

.p-features__item-img img {
  width: 80px;
  height: auto;
}

/* Highlight Utility */
.u-highlight {
  background: linear-gradient(transparent 0%, #f7e034 0%);
  font-weight: 700;
  padding: 0 2px;
}



/* ==========================================================================
   CTA Bar
   ========================================================================== */
.p-cta-bar {
  background: var(--color-white);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.p-cta-bar__note {
  color: var(--color-text-mid);
  margin-bottom: 20px;
  line-height: 1.8;
}

.p-cta-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 6px;
  box-shadow: 0 5px 0 var(--color-accent-dark);
  transition: all .2s;
  margin-bottom: 16px;
}

.p-cta-bar__btn:hover {
  transform: translateY(3px);
  box-shadow: 0 2px 0 var(--color-accent-dark);
  opacity: 1;
}

.p-cta-bar__sub {
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ==========================================================================
   Strengths Section
   ========================================================================== */
.p-strengths {
  position: relative;
  padding: 80px 0 100px;
  background: var(--color-white);
  overflow: hidden;
}

.p-strengths__bg {
  position: absolute;
  left: calc(50% - 300px);
  top: 55%;
  transform: translate(-50%, -50%) translateX(-250px); /* センターから左に約240px */
  width: 700px;
  z-index: 1;
  pointer-events: none;
}

.p-strengths__bg img {
  width: 100%;
  height: auto;
}

.p-strengths__overlay {
  display: none;
}

.p-strengths__container {
  position: relative;
  z-index: 10;
}

.p-strengths__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-mid);
  line-height: 1.4;
  font-weight: 500;
}

.p-strengths__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 700px;
  margin-left: auto;
  padding-right: 20px;
}

.p-strengths__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.p-strengths__item-num {
  flex-shrink: 0;
  margin-top: 4px;
}

.p-strengths__item-num img {
  height: 48px;
  width: auto;
}

.p-strengths__item-body {
  flex: 1;
}

.p-strengths__item-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.p-strengths__item-text {
  font-size: var(--font-size-base);
  color: var(--color-text-dark);
  line-height: 1.8;
}

/* Red accent for important text in strengths */
.p-strengths__item-accent {
  color: #e70012;
  font-weight: 700;
}

/* ==========================================================================
   Simulation Section
   ========================================================================== */
.p-simulation {
  background: var(--color-bg-green);
  padding: var(--section-padding) 0;
}

.p-simulation__table {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  margin-bottom: 36px;
}

.p-simulation__arrow {
  width: 40px;
  height: 250px;
  margin: 0 0px;
  position: relative;
}

.p-simulation__arrow img { 
  width: 100%; 
  height: 125px;
  position: absolute;
  top: 50px;
  left: 0px;
}

.p-simulation__col {
  width: 400px;
}

.p-simulation__col-header {
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 48px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-dark);
  position: relative;
}

.p-simulation__badge {
  background: #FB2C36;
  color: var(--color-white);
  font-size: var(--font-size-sm);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  transform: rotate(12deg);
  display: inline-block;
  margin-left: 8px;
  position: absolute;
  top: 10px;
  right: -10px;
}

.p-simulation__col-body {
  background: var(--color-primary-light);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-simulation__row {
  background: #f9fafb;
  border-radius: 4px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}

.p-simulation__row--light {
  background: rgba(255,255,255,.8);
}

.p-simulation__row--green {
  background: rgba(255,255,255,.2);
}

.p-simulation__row-label {
  color: var(--color-text-dark);
}

.p-simulation__row--green .p-simulation__row-label,
.p-simulation__row--green .p-simulation__row-value {
  color: var(--color-white);
}

.p-simulation__row-value {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-text-dark);
}

.p-simulation__row-value--zero { color: var(--color-text-dark); }

.p-simulation__total {
  border-top: 2px solid #d1d5dc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
}
.p-simulation__col--old .p-simulation__total {
  padding-top: 26px;
}
.p-simulation__total-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
}

.p-simulation__total-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
}

.p-simulation__total--green {
  /* same style, inherits from parent */
}

.p-simulation__col-body--new {
  background: var(--color-bg-green);
  padding: 0;
}

.p-simulation__col-body--new .p-simulation__row--light {
  margin: 0 16px 0px;
}

.p-simulation__col-body--new .p-simulation__row--light:first-child {
  margin-top: 16px;
}

.p-simulation__col-body-green {
  background: var(--color-primary-light);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-simulation__result {
  text-align: center;
}

.p-simulation__result-text {
  font-size: var(--font-size-xl);
  color: var(--color-text-dark);
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;

  strong {
    font-weight: 800;
  }
}

.p-simulation__result-num {
  display: inline-block;
  background: #ffe200;
  font-family: var(--font-poppins);
  font-size: var(--font-size-xl);
  font-weight: 700;
  padding: 0px 12px;
  color: var(--color-text-dark);
  vertical-align: middle;
  margin: 0 4px;
}

.p-simulation__result-note {
  color: var(--color-text-light);
}

/* ==========================================================================
   Price Table
   ========================================================================== */
.p-price {
  background: var(--color-white);
  padding: var(--section-padding) 0;
}

.p-price__desc {
  text-align: center;
  color: var(--color-text-mid);
  margin-bottom: 40px;
}

.p-price__main {
  background: var(--color-primary-light);
  overflow: hidden;
  margin-bottom: 30px;
}

.p-price__main-header {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.p-price__main-name h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.p-price__main-note {
  color: var(--color-white);
}

.p-price__main-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.p-price__main-label {
  color: var(--color-white);
  margin-bottom: 4px;
}

.p-price__main-price {
  font-family: var(--font-poppins);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.p-price__main-price span {
  font-family: var(--font-base);
  font-size: 22px;
}

.p-price__main-body {
  background: #F4FDEC;
  color: var(--color-text-dark);
  padding: 24px 30px;
  display: flex;
  gap: 40px;
}

.p-price__services {
  display: flex;
  gap: 40px;
}

.p-price__service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p-price__service-list li {
  font-size: var(--font-size-base);
  padding-left: 20px;
  position: relative;
}

.p-price__service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.p-price__conditions {
  flex: 1;
  background: rgba(255,255,255,.15);
  border-radius: 6px;
  padding: 14px 16px;
}

.p-price__conditions-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.p-price__conditions-text {
  line-height: 1.7;
  margin-bottom: 8px;
}

.p-price__warning {
  color: #CA3500;
  line-height: var(--font-line-height-base);
}

.p-price__lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.p-price__options {
  background: #FFF5E5;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.p-price__options-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.p-price__option-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-price__option-item {
  display: flex;
  justify-content: space-between;
  color: var(--color-text-mid);
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

.p-price__option-item dt { font-weight: 500; }
.p-price__option-item dd { font-weight: 700; }

.p-price__char {
  position: absolute;
  bottom: 0; right: 16px;
}

.p-price__char img {
  height: 100px;
  width: auto;
}

.p-price__extra {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  padding: 24px;
  overflow: hidden;
}

.p-price__extra-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 10px 16px;
  margin: -24px -24px 16px;
}

.p-price__extra-icon {
  width: 22px;
  height: 22px;
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-style: normal;
  flex-shrink: 0;
}

.p-price__extra-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.p-price__extra-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.p-price__extra-list strong {
  font-weight: 700;
  color: var(--color-text-dark);
}

.p-price__extra-list span {
}

.p-price__extra-guarantee {
  color: var(--color-text-dark);
  padding: 16px 20px;
  background: var(--color-bg-green);
  text-align: center;
}

.p-price__extra-guarantee-text {
  display: block;
  color: var(--color-red);
  font-weight: 700;
}

/* ==========================================================================
   Plan Conditions
   ========================================================================== */
.p-conditions {
  background: #f5f5f0;
  padding: var(--section-padding) 0;
}

.p-conditions__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.p-conditions__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.p-conditions__desc {
  line-height: 1.8;
}

.p-conditions__box {
  background: var(--color-white);
  border-radius: 10px;
  padding: 28px 32px;
  border: 1px solid #e0e0e0;
}

.p-conditions__box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.p-conditions__box-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.p-conditions__box-desc {
  margin-bottom: 0;
}

.p-conditions__divider {
  height: 1px;
  background: #e0e0e0;
  margin: 20px 0;
}

.p-conditions__list {
  display: flex;
  flex-direction: column;
  counter-reset: conditions;
}

.p-conditions__list li {
  counter-increment: conditions;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.6;
  padding: 16px 0;
  border-bottom: 1px solid #e8e8e8;
}

.p-conditions__list li:first-child {
  padding-top: 0;
}

.p-conditions__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.p-conditions__list li::before {
  content: counter(conditions);
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: var(--color-white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: -4px;
}

.p-conditions__list-note {
  display: block;
  color: var(--color-text-light);
  font-weight: 400;
  margin-top: 6px;
  line-height: 1.7;
}

/* ==========================================================================
   Customer Voices
   ========================================================================== */
.p-voices {
  background: var(--color-bg-green);
  padding: var(--section-padding) 0;
}

.p-voices__lead {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-mid);
  margin-bottom: 40px;
}

.p-voices__slider-wrap {
  margin-bottom: 24px;
}

.p-voices__swiper {
  padding: 10px 20px 50px !important;
}

.p-voices__swiper .swiper-slide {
  width: 580px !important;
}

.p-voices__card {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
}

.p-voices__card-inner {
  padding: 24px 80px 24px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.p-voices__card-area {
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  margin-bottom: 12px;
  font-weight: 400;
}

.p-voices__card-body { flex: 1; }

.p-voices__card-title {
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.p-voices__card-text {
  line-height: 1.75;
  margin-bottom: 16px;
}

.p-voices__card-char {
  position: absolute;
  right: 0px;
  top: 16px;
  width: 74px;
}

.p-voices__card-char img {
  width: 100%;
  height: auto;
}

.p-voices__card-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: auto;
}

.p-voices__card-benefit--green { background: #f0fdf4; }
.p-voices__card-benefit--purple { background: #faf5ff; }
.p-voices__card-benefit--blue { background: #eff6ff; }
.p-voices__card-benefit--orange { background: #fff7ed; }

.p-voices__benefit-icon { width: 20px; height: 20px; }

.p-voices__benefit-label {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-accent);
}

.p-voices__benefit-text {
  font-weight: 600;
  line-height: 1.4;
}

.p-voices__pagination {
  bottom: 16px !important;
}

.p-voices__pagination .swiper-pagination-bullet {
  background: #bbb;
  opacity: 1;
}

.p-voices__pagination .swiper-pagination-bullet-active {
  background: var(--color-primary-light);
}

.p-voices__note {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

/* ==========================================================================
   Service Fit
   ========================================================================== */
.p-fit {
  position: relative;
  background: var(--color-white);
  padding: var(--section-padding) 0 calc(var(--section-padding) + 60px);
}

.p-fit__inner {
  position: relative;
  z-index: 2;
}

.p-fit__intro {
  text-align: center;
  margin-bottom: 48px;
}

.p-fit__intro-lead {
  font-size: var(--font-size-xl);
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

/* 見出し装飾SVG（疑似要素） */
.p-fit__intro-lead::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 72px;
  background: url('../images/midashi_item_before.svg') center / contain no-repeat;
  flex-shrink: 0;
}

.p-fit__intro-lead::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 71px;
  background: url('../images/midashi_item_after.svg') center / contain no-repeat;
  flex-shrink: 0;
}


.p-fit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.p-fit__col {
  padding: 80px 40px 60px;
  position: relative;
  min-height: 360px;
}
  .p-fit__col--good {
    padding-left:150px ;
  }
  .p-fit__col--bad {
    padding-top:120px ;
    padding-left:100px ;
  }
/* 左カラム：p-fit_typeA.svg 疑似要素 */
.p-fit__col--good::before {
  content: "";
  position: absolute;
  top:0px;
  right: -70px;
  width: 936px;
  height: 391px;
  background: url('../images/p-fit_typeA.svg') center / 100% 100% no-repeat;
  pointer-events: none;
  z-index: -1;
}

/* 右カラム：p-fit_typeB.svg 疑似要素 */
.p-fit__col--bad::before {
  content: "";
  position: absolute;
  top:50px;
  left: 0px;
  width: 936px;
  height: 391px;
  background: url('../images/p-fit_typeB.svg') center / 100% 100% no-repeat;
  pointer-events: none;
  z-index: -1;
}

.p-fit__col--bad {
  padding-left: 60px;
}

.p-fit__col-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

/* SVGアイコン入り円形バッジ */
.p-fit__col-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.p-fit__col-badge--green {
  background: var(--color-primary-light);
}

.p-fit__col-badge--gray {
  background: #6a7282;
}

.p-fit__col-badge img {
  width: 24px;
  height: 24px;
}

.p-fit__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* typeA：緑チェックマーク */
.p-fit__col--good .p-fit__list li {
  font-size: var(--font-size-base);
  color: var(--color-text-dark);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}

.p-fit__col--good .p-fit__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary-light);
  font-weight: 700;
}

/* typeB：①②③ スタイル */
.p-fit__col--bad .p-fit__list {
  counter-reset: fit-bad;
}

.p-fit__col--bad .p-fit__list li {
  counter-increment: fit-bad;
  font-size: var(--font-size-base);
  color: var(--color-text-dark);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.p-fit__col--bad .p-fit__list li::before {
  content: counter(fit-bad);
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid #6a7282;
  color: #6a7282;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.p-fit__reassure {
  margin-top: 24px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.7;
}

/* 写真 */
.p-fit__photo {
  position: absolute;
  pointer-events: none;
}

.p-fit__photo--a {
  bottom: 180px;
  left: -290px;
  width: 400px;
  transform: translateY(100%);
}

.p-fit__photo--b {
  top: -30px;
  right: 90px;
  width: 400px;
  transform: translateY(100%);
  transform: translateX(100%);

}

.p-fit__photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Flow Section
   ========================================================================== */
.p-flow {
  background: var(--color-bg-green3);
  padding: var(--section-padding) 0;
}

.p-flow__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.p-flow__step {
  flex: 1;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.p-flow__step-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--color-white-solid, #FFF);
  box-shadow: 3px 3px 0 0 #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
}

.p-flow__step-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-flow__step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-flow__step-title {
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  margin: 0;
}

.p-flow__step-text {
  line-height: 1.7;
  text-align: left;
  width: 100%;
}

.p-flow__step-arrow {
  flex-shrink: 0;
  width: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 22px;
  color: var(--color-primary);
  font-weight: 700;
  align-self: flex-start;
  padding-top: 89px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.p-faq {
  background: var(--color-white);
  padding: var(--section-padding) 0;
}

.p-faq__lead {
  text-align: center;
  color: var(--color-text-mid);
  margin-bottom: 40px;
  line-height: 1.8;
}

.p-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}


.p-faq__q {
  background: var(--color-bg-green);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  height: 48px;
}

.p-faq__q-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}

.p-faq__q p {
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.5;
}

.p-faq__a {
  line-height: 1.75;
  padding: 16px 0;
  background: var(--color-white);
}

/* ==========================================================================
   Office Section
   ========================================================================== */
.p-office {
  background: var(--color-bg-green);
  padding: var(--section-padding) 0;
}

/* Office card */
.p-office__card {
  margin-bottom: 56px;
}

.p-office__card-logo {
  text-align: center;
  margin-bottom: 40px;
}

.p-office__card-logo img {
  height: 100px;
  width: auto;
}

.p-office__info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.p-office__dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-office__dl-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.p-office__dl-row:last-child { border-bottom: none; }

.p-office__dl-row dt {
  flex-shrink: 0;
  width: 120px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 500;
  padding: 3px 8px;
  line-height: 1.6;
}

.p-office__dl-row dd {
  line-height: 1.6;
  margin: 0;
  padding: 3px 0px;
}

/* CEO Message */
.p-office__ceo {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 56px;
}

.p-office__ceo-photo-wrap {
  flex-shrink: 0;
  position: relative;
  width: 200px;
}

.p-office__ceo-photo-bg {
  display: none;
}

.p-office__ceo-photo {
  position: relative;
  z-index: 2;
  text-align: center;
}

.p-office__ceo-photo img {
  width: 240px;
  height: auto;
  display: block;
}

.p-office__ceo-name-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-mid);
  margin-top: 8px;
}

.p-office__ceo-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.p-office__ceo-message-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 16px;
}

.p-office__ceo-message-catch {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: #57a026;
  line-height: 1.5;
  margin-bottom: 16px;
}

.p-office__ceo-message-text {
  line-height: 2;
  margin-bottom: 10px;
}

/* Philosophy */
.p-office__philosophy {
  background: var(--color-bg-green);
  padding: 32px;
  text-align: center;
}

.p-office__philosophy-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.p-office__philosophy-inner {
  background: var(--color-white);
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.p-office__philosophy-title {
  font-size: var(--font-size-lg);
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--color-text-mid);
}

.p-office__philosophy-deco { height: 72px; width: auto; }

.p-office__philosophy-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.p-office__philosophy-img img {
  height: auto;
  width: 260px;
}

.p-office__philosophy-text {
  font-size: var(--font-size-title);
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.5;
  text-align: left;
}

.p-office__philosophy-accent {
  font-weight: 700;
  color: #57a026;
}

.p-office__philosophy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  border-radius: 0;
  padding: 8px 40px;
  font-weight: 700;
  color: var(--color-primary);
  background: transparent;
  cursor: pointer;
  border-radius: 24px;
  transition: all .2s;
}

.p-office__philosophy-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  opacity: 1;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.p-contact {
  padding: var(--section-padding) 0;
}

.p-contact__lead {
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* LINE box */
.p-contact__line-box {
  background: #fff5e5;
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 48px;
  max-width: 740px;
  margin:auto;
}

.p-contact__line-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8d8c0;
}

.p-contact__line-logo {
  width: 44px;
  height: auto;
}

.p-contact__line-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.p-contact__line-body {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.p-contact__line-qr {
  flex-shrink: 0;
  width: 130px;
}

.p-contact__line-qr img {
  width: 100%;
  border-radius: 6px;
}

.p-contact__line-steps {
  color: var(--color-text-mid);
  line-height: 1.8;
}

.p-contact__line-steps p {
  font-weight: 500;
  margin-bottom: 8px;
}

.p-contact__line-steps ol {
  list-style: decimal;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Form section */
.p-contact__form-section {
  background: var(--color-white);
  border-radius: 10px;
  padding: 40px;
}

.p-contact__form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 2px solid #d0d0d0;
  margin-bottom: 24px;
}

.p-contact__form {
  max-width: 800px;
  margin: 0 auto;
}

.p-contact__form-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.p-contact__form-row--top { align-items: flex-start; }

.p-contact__form-label {
  width: 240px;
  flex-shrink: 0;
  font-weight: 500;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-contact__required {
  background: #e61874;
  color: var(--color-white);
  font-size: 11px;
  font-weight: 400;
  padding: 2px 6px;
  border-radius: 2px;
}

.p-contact__optional {
  background: #6699ff;
  color: var(--color-white);
  font-size: 11px;
  font-weight: 400;
  padding: 2px 6px;
  border-radius: 2px;
}

.p-contact__form-input-wrap { flex: 1; }

.p-contact__form-input-wrap--double {
  display: flex;
  gap: 8px;
}

.p-contact__form-input-wrap--narrow { max-width: 220px; }

.p-contact__form-input,
.p-contact__form-textarea {
  width: 100%;
  background: #eee;
  border: none;
  border-radius: 3px;
  padding: 12px 14px;
  font-size: var(--font-size-sm);
  font-family: var(--font-base);
  color: var(--color-text-dark);
  outline: none;
  transition: background .2s;
}

.p-contact__form-input:focus,
.p-contact__form-textarea:focus {
  background: #e0ede0;
  box-shadow: 0 0 0 2px var(--color-primary-light);
}

.p-contact__form-input { height: 44px; }

.p-contact__form-textarea { resize: vertical; }

.p-contact__privacy {
  margin: 24px 0;
}

.p-contact__privacy-title {
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
}

.p-contact__privacy-box {
  border: 1px solid #99a1af;
  border-radius: 4px;
  height: 120px;
  overflow-y: auto;
  padding: 10px 14px;
  font-size: var(--font-size-xs);
  color: var(--color-text-mid);
  line-height: 1.8;
}

.p-contact__privacy-box p { margin-bottom: 8px; }

.p-contact__form-submit {
  text-align: center;
  margin-top: 20px;
}

.p-contact__submit-btn , .mfp_element_button {
  background: #ffe200;
  color: var(--color-text-dark);
  font-size: var(--font-size-base);
  font-weight: 700;
  font-family: var(--font-base);
  padding: 14px 48px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  transition: opacity .2s;
}
#mfp_button_cancel {
  background: #ccc;

}

.p-contact__submit-btn:hover { opacity: .85; }

/* ==========================================================================
   Footer
   ========================================================================== */
.p-footer {
  background: #64c424;
  padding: 24px 20px 16px;
  text-align: center;
}

.p-footer__nav { margin-bottom: 14px; }

.p-footer__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.p-footer__nav-list li {
  position: relative;
  padding: 0 16px;
}

.p-footer__nav-list li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  color: rgba(255,255,255,.3);
  font-size: 10px;
}

.p-footer__nav-list a {
  color: rgba(255,255,255,.7);
  font-size: var(--font-size-xs);
  transition: color .2s;
}

.p-footer__nav-list a:hover {
  color: var(--color-white);
  opacity: 1;
}

.p-footer__copy {
  color: rgba(255,255,255,.5);
  font-size: 11px;
}

/* ==========================================================================
   SP Responsive
   ========================================================================== */
@media (max-width: 768px) {

  :root {
    --section-padding: 48px;
  }
  .is-pc {
    display: none;
  }

  /* Section Heading（共通タイトル） */
  .p-section-heading {
    margin-bottom: 24px;
  }

  .p-section-heading__title {
    letter-spacing: 4px;
    padding-bottom: 10px;
    border-bottom-width: 3px;
  }

  /* Header */
  .p-header {
    height: auto;
  }
  .p-header .l-container {
    padding-left: 16px;
  }
  .p-header__top-text { display: none; }

  .p-header__inner {
    height: 60px;
    padding: 0 ;
    justify-content: flex-start;
    gap: 0;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4px;
  }

  .p-header__logo img { height: 46px; }

  .p-header__contacts { display: none; }

  /* Nav */
  .p-nav { display: none; }

  .p-nav .l-container { 
    padding: 24px;
    height: 100%; 
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .p-nav .l-container ul {
    gap: 16px !important; 
    width: 100% !important;
  }

  /* Hero */
  .p-hero {
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .p-hero__overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,.6) 60%, rgba(0,0,0,.3) 100%);
  }

  .p-hero__content {
    padding: 60px 0;
    max-width: 100%;
  }

  .p-hero__badge {
    margin-bottom: 12px;
  }

  .p-hero__badge-body {
    font-size: 18px;
  }

  .p-hero__badge-icon {
    width: 24px;
    height: 24px;
  }

  .p-hero__title {
    margin-bottom: 4px;
  }

  .p-hero__title-img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .p-hero__subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .p-hero__tags {
    gap: 3px;
    margin-bottom: 10px;
    width: 100%;
  }

  .p-hero__tag {
    font-size: 11px;
    padding: 2px 8px;
  }

  .p-hero__tag-suffix {
    font-size: 12px;
  }

  .p-hero__description {
    font-size: var(--font-size-sm);
    margin-bottom: 16px;
  }

  .p-hero__cta-btn {
    font-size: 15px;
    padding: 16px 24px;
    width: 250px;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.1);
  }

  .p-resolve {
    padding-bottom: 0px;
    padding-top: 10px;
  }
  /* Resolve Banner */
  .p-resolve__inner {
    position: relative;
    align-items: center;
    padding: 0 20px 20px;
  }

  .p-resolve__photo {
    width: 125px;
    order: 2;
    position: absolute;
    bottom: -0px;
    left: -40px;
  }

  .p-resolve__banner {
    width: 100%;
    clip-path: none;
    margin-left: 0;
    padding: 20px;
    text-align: center;
    order: 1;
    border-radius: 6px;
  }

  .p-resolve__text { 
    font-size: var(--font-size-ls); 
    padding-left: 40px;
    text-align: left;
  }

  /* Problems */
  .p-problems {
    padding: 48px 0 60px;
    overflow: hidden;
  }

  .p-problems__heading-wrap {
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
  }

  .p-problems__heading-img {
    position: absolute;
    top: 22px;
    right: -20px;
    width: 100px;
  }

  .p-problems__heading {
    font-size: 18px;
    line-height: 1.4;
  }

  .p-problems__char {
    right: 10px;
    bottom: -20px;
    width: 130px;
    height: auto;
    overflow: hidden;
    
  }

  .p-problems__char img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .p-problems__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 ;
  }

  .p-problems__card .card-inner {
    padding: 8px 8px 8px 8px;
  }

  .p-problems__card-title {
    margin-bottom: 4px;
  }

  .p-problems__card-text {
    line-height: 1.6;
    color: var(--color-text-mid);
  }

  .p-problems__card-img {
    width: 65px;
  }

  .card01 .p-problems__card-img,
  .card02 .p-problems__card-img {
    bottom: -60px;
  }

  .card03 .p-problems__card-img,
  .card04 .p-problems__card-img {
    bottom: -70px;
  }

  /* Features */
  .p-features {
    padding: 48px 0px 60px;
  }

  .p-features__lead {
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
  }

  .p-features__desc {
    margin-bottom: 40px;
  }

  .p-features__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Figmaデザイン準拠: 左に丸バッジ+キャラ（絶対配置）、右にテキスト */
  .p-features__item-inner {
    display: block;
    position: relative;
    padding: 24px 24px 24px 80px;
    text-align: left;
  }

  /* 緑丸バッジ: カード左上に絶対配置 */
  .p-features__item-num {
    position: absolute;
    left: 10px;
    top: -4px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transform: none;
    margin-bottom: 0;
  }

  .p-features__item-num img {
    width: 50px;
    height: auto;
  }

  /* タイトル: 1行表示（改行なし）、左揃え */
  .p-features__item-title {
    font-size: 17px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 8px;
  }

  .p-features__item-title br {
    display: none;
  }

  /* テキスト: 左揃え */
  .p-features__item-text {
    text-align: left;
    line-height: 1.8;
  }

  /* キャラクターイラスト: 左側に絶対配置 */
  .p-features__item-img {
    position: absolute;
    left: -10px;
    z-index: 5;
    pointer-events: none;
    text-align: left;
    margin-top: 0;
  }

  .p-features__item-img img {
    width: 64px;
    height: auto;
  }

  /* キャラクターの縦位置（Figma準拠） */
  .p-features__item:nth-child(1) .p-features__item-img { top: 50px; }
  .p-features__item:nth-child(2) .p-features__item-img { top: 70px; }
  .p-features__item:nth-child(3) .p-features__item-img { top: 20px;left: -20px; }

  /* CTA Bar */
  /* CTA Bar */
  .p-cta-bar {
    padding: 40px 24px;
  }

  .p-cta-bar__note {
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .p-cta-bar__btn {
    padding: 18px 24px;
    width: 100%;
    max-width: 400px;
    border-radius: 0;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.6);
    margin-bottom: 16px;
  }

  .p-cta-bar__btn:hover {
    transform: translateY(2px);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.6);
  }

  .p-cta-bar__sub {
    line-height: 1.6;
  }

  /* Strengths */
  .p-strengths {
    padding: 48px 0 67vw; /* 背景画像の高さ分を下に確保 */
  }

  /* SP: 背景画像をセクション最下部にフル幅で表示 */
  .p-strengths__bg {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
  }

  .p-strengths__bg img {
    width: 100%;
    height: auto;
    display: block;
  }

  .p-strengths__list {
    max-width: 100%;
    margin-left: 0;
    padding: 0 0 40px 0;
    gap: 24px;
  }

  .p-strengths__lead {
    font-size: var(--font-size-ls);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 8px;
  }

  .p-strengths__item {
    gap: 0px;
    align-items: flex-start;
  }

  .p-strengths__item-num {
    width: 80px;
    flex-shrink: 0;
    margin-top: 8px;
  }

  .p-strengths__item-num img {
    height: 50px;
    width: auto;
  }

  .p-strengths__item-title {
    font-size: var(--font-size-ls);
    margin-bottom: 6px;
  }

  .p-strengths__item-text {
    line-height: 1.7;
  }

  /* Simulation: SP でも横並び2カラムを維持（Figma準拠） */
  .p-simulation {
    padding: 48px 0;
  }

  .p-simulation__table {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    margin-bottom: 24px;
  }

  .p-simulation__col {
    flex: 1;
    width: auto;
    min-width: 0;
  }

  .p-simulation__arrow {
    width: 20px;
    margin: 0;
    align-items: center;
    position: relative;
  }
  .p-simulation__arrow img { 
    width: 100%;
    height: 105px;
    position: absolute;
    top: 42px;
    left: 0px;
  }
  .p-simulation__col-header {
    height: 44px;
    padding: 6px 8px;
    gap: 6px;
  }

  .p-simulation__badge {
    font-size: var(--font-size-xs);
    padding: 3px 8px;
    right: -8px;
    top: -10px;
  }

  .p-simulation__col-body {
    padding: 10px;
    gap: 8px;
  }
  .p-simulation__col--new .p-simulation__col-body {
    padding: 10px 0 0 0;
    gap: 8px;
  }

  .p-simulation__col-body--new .p-simulation__row--light {
    margin: 0 8px 0px;
  }

  .p-simulation__col-body--new .p-simulation__row--light:first-child {
    margin-top: 0px;
  }

  .p-simulation__col-body-green {
    padding: 10px;
    gap: 8px;
  }

  .p-simulation__row {
    height: 36px;
    padding: 0 8px;
  }

  .p-simulation__row-label,
  .p-simulation__row-value {
    font-size: var(--font-size-xs);
  }

  .p-simulation__total {
    padding-top: 6px;
    flex-direction: column;
  }
  .p-simulation__col--old .p-simulation__total {
    padding-top: 16px;
  }

  .p-simulation__total-label {
    font-size: 12px;
  }

  .p-simulation__total-value {
    font-size: var(--font-size-xl);
  }

  .p-simulation__result-text {
    font-size: 18px;
    flex-wrap: wrap;
    gap: 4px;
  }

  .p-simulation__result-num {
    font-size: 20px;
    padding: 0 8px;
  }

  /* Price */
  .p-price__lower {
    grid-template-columns: 1fr;
  }

  /* メインヘッダー: 中央揃え縦積み（Figma準拠） */
  .p-price__main-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 24px 20px;
  }

  .p-price__main-name h3 {
    font-size: 20px;
    text-align: center;
  }

  .p-price__main-note {
    text-align: center;
  }

  .p-price__main-amount {
    align-items: center;
    text-align: center;
  }

  .p-price__main-label {
    text-align: center;
  }

  .p-price__main-price {
    font-size: 36px;
  }

  /* ボディ: 縦積み */
  .p-price__main-body {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  /* サービスリスト: 2カラム横並び（Figma準拠） */
  .p-price__services {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }

  .p-price__service-list {
    flex: 0 0 50%;
    gap: 4px;
  }

  .p-price__service-list li {
    font-size: var(--font-size-sm);
  }

  /* 適用条件 */
  .p-price__conditions {
    padding: 12px;
  }

  .p-price__conditions-title {
  }

  .p-price__conditions-text,
  .p-price__warning {
  }

  /* キャラ画像: SP非表示 */
  .p-price__char {
    display: none;
  }

  /* オプション */
  .p-price__options {
    padding: 16px;
  }

  .p-price__options-title {
  }

  .p-price__option-item dt,
  .p-price__option-item dd {
  }
  .p-price__option-item dd {
    margin-left: 0;
  }

  /* 追加料金セクション */
  .p-price__extra {
    padding: 0 0 16px;
  }

  .p-price__extra-header {
    margin: 0 0 16px;
    border-radius: 0;
    padding: 14px 16px;
  }

  .p-price__extra-list {
    padding: 0 16px;
  }

  .p-price__extra-list strong,
  .p-price__extra-list span {
  }

  /* 保証テキスト */
  .p-price__extra-guarantee {
    margin: 0 16px;
    padding: 12px 16px;
  }

  /* Conditions */
  .p-conditions {
    padding: 40px 0;
  }

  .p-conditions__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* タイトル: 左揃え（Figma準拠） */
  .p-conditions__title {
    font-size: 22px;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
  }

  .p-conditions__desc {
    line-height: 1.7;
  }

  /* ボックス */
  .p-conditions__box {
    padding: 20px;
    border-radius: 0;
  }

  .p-conditions__box-header {
    font-size: 16px;
    gap: 10px;
    margin-bottom: 12px;
  }

  .p-conditions__box-desc {
    line-height: 1.7;
  }

  .p-conditions__divider {
    margin: 16px 0;
  }

  /* リスト: ボーダーなし・ギャップで区切り（Figma準拠） */
  .p-conditions__list li {
    gap: 10px;
    padding: 10px 0;
    border-bottom: none;
  }

  .p-conditions__list li::before {
    width: 28px;
    height: 28px;
    font-size: 13px;
    margin-top: 0;
    flex-shrink: 0;
  }

  .p-conditions__list-note {
    font-size: 12px;
    line-height: 1.6;
    margin-top: 4px;
  }

  /* Voices */
  .p-voices {
    padding: 48px 0;
  }

  .p-voices__lead {
    padding: 0 20px;
    margin-bottom: 24px;
  }

  /* スライドをSP幅に調整（次のカードが少し見える） */
  .p-voices__swiper .swiper-slide {
    width: 85vw !important;
    max-width: 340px;
  }

  /* カード内レイアウト */
  .p-voices__card-inner {
    padding: 20px 72px 20px 20px; /* 右はキャラ分の余白 */
    min-height: 180px;
  }

  /* エリアテキスト: 緑太字（Figma準拠） */
  .p-voices__card-area {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: #339900;
    margin-bottom: 8px;
  }

  .p-voices__card-title {
    margin-bottom: 8px;
  }

  .p-voices__card-text {
    line-height: 1.7;
    margin-bottom: 10px;
  }

  /* キャラクター: 右側に固定（HTML固有の画像を維持） */
  .p-voices__card-char {
    right: 0;
    top: 16px;
    width: 62px;
  }

  /* ベネフィットボックス */
  .p-voices__card-benefit {
    padding: 10px 12px;
    gap: 8px;
  }

  .p-voices__benefit-icon {
    width: 16px;
    height: 16px;
  }

  .p-voices__benefit-label {
    font-size: 10px;
  }

  .p-voices__benefit-text {
    line-height: 1.5;
  }

  .p-voices__note {
    padding: 0 20px;
  }

  /* Fit */
  .p-fit {
    background: var(--color-white);
    padding: 48px 0 0;
  }

  .p-fit__inner {
    padding: 0 20px;
  }

  /* イントロ */
  .p-fit__intro {
    text-align: center;
    margin-bottom: 24px;
  }

  /* タイトル: SVG装飾付き、センター（Figma準拠） */
  .p-fit__intro-lead {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 16px;
    gap: 10px;
  }

  .p-fit__intro-lead::before {
    width: 14px;
    height: 48px;
  }

  .p-fit__intro-lead::after {
    width: 13px;
    height: 47px;
  }

  .p-fit__intro-desc {
    text-align: left;
    line-height: 1.7;
  }

  /* グリッド: 1カラム縦積み */
  .p-fit__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  /* PC版のSVG背景を非表示 */
  .p-fit__col--good::before,
  .p-fit__col--bad::before {
    display: none;
  }

  /* 「向いている方」: 緑背景ボックス */
  .p-fit__col--good {
    background: #f4fdec;
    padding: 24px;
  }

  /* PC版のmin-heightをリセット（下部余白の原因） */
  .p-fit__col {
    min-height: 0;
  }

  /* 「他のサービス」: flexboxで写真を最下部へ */
  .p-fit__col--bad {
    background: #f9fafb;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .p-fit__col--bad .p-fit__col-title {
    background: none;
    padding: 24px 24px 0;
  }

  .p-fit__col--bad .p-fit__list {
    background: none;
    padding: 8px 24px;
  }

  .p-fit__col--bad .p-fit__reassure {
    background: none;
    padding: 0 24px 24px;
    margin-top: 16px;
  }

  /* バッジ付きタイトル */
  .p-fit__col-title {
    font-size: 15px;
    gap: 10px;
    margin-bottom: 16px;
  }

  .p-fit__col-badge {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .p-fit__col-badge img {
    width: 20px;
    height: 20px;
  }

  /* リスト */
  .p-fit__list {
    gap: 8px;
  }

  .p-fit__col--good .p-fit__list li,
  .p-fit__col--bad .p-fit__list li {
  }

  .p-fit__reassure {
  }

  /* 写真A（向いている方の中）: 非表示 */
  .p-fit__photo--a {
    display: none;
  }

  /* 写真B: flexのorder最後に、フル幅で表示（Figma準拠） */
  .p-fit__photo--b {
    display: block;
    position: static;
    transform: none;
    order: 10;
    width: 100%;
    margin: 0;
  }

  .p-fit__photo--b img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Flow */
  .p-flow {
    padding: 48px 0 64px;
  }

  .p-flow__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .p-flow__step {
    max-width: 100%;
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .p-flow__step-card {
    aspect-ratio: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 8px;
    gap: 8px;
    width: 110px;
    height: 110px;
    flex-shrink: 0;
  }

  .p-flow__step-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
  }

  .p-flow__step-title {
    font-size: 11px;
    font-weight: 700;
    text-align: center;
  }

  .p-flow__step-text {
    flex: 1;
    text-align: left;
    align-self: center;
  }

  .p-flow__step-arrow {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    padding-top: 0;
    font-size: 22px;
    line-height: 1;
    color: var(--color-primary);
    transform: rotate(90deg);
    align-self: center;
  }

  /* FAQ */
  .p-faq {
    padding: 48px 0;
  }

  .p-faq__lead {
    margin-bottom: 24px;
    padding: 0;
  }

  .p-faq__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0;
  }

  .p-faq__q {
    height: auto;
    min-height: 44px;
    align-items: stretch;
    gap: 0;
  }

  .p-faq__q-icon {
    width: 44px;
    height: auto;
    align-self: stretch;
    font-size: 15px;
  }

  .p-faq__q p {
    font-size: 14px;
    padding: 10px 12px 10px 12px;
    line-height: 1.4;
  }

  .p-faq__a {
    padding: 10px 4px 0;
  }

  /* Office */
  .p-office {
    padding: 48px 0px 60px;
  }

  .p-office__card {
    margin-bottom: 40px;
  }

  .p-office__card-logo {
    margin-bottom: 24px;
  }

  .p-office__card-logo img {
    height: auto;
  }

  .p-office__info-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .p-office__dl {
    gap: 6px;
  }

  .p-office__dl-row {
    gap: 8px;
    padding-bottom: 6px;
  }

  .p-office__dl-row dt {
    width: 100px;
    padding: 3px 6px;
  }

  .p-office__dl-row dd {
    line-height: 1.7;
  }

  .p-office__ceo {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
  }

  .p-office__ceo-photo img {
    width: 180px;
  }

  .p-office__ceo-message-heading {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .p-office__ceo-message-catch {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .p-office__ceo-message-text {
  }

  .p-office__ceo-name-label {
    font-size: 11px;
  }

  .p-office__ceo-name {
    font-size: 16px;
  }

  .p-office__philosophy {
    padding: 24px 16px;
  }

  .p-office__philosophy-title-wrap {
    gap: 12px;
    margin-bottom: 16px;
  }

  .p-office__philosophy-deco {
    height: 48px;
  }

  .p-office__philosophy-title {
    font-size: var(--font-size-base);
  }

  .p-office__philosophy-inner {
    padding: 24px 16px;
    gap: 16px;
  }

  .p-office__philosophy-body {
    flex-direction: column;
    gap: 16px;
  }

  .p-office__philosophy-img img {
    width: 180px;
  }

  .p-office__philosophy-text {
    font-size: 16px;
    text-align: center;
  }

  /* Contact */
  .p-contact {
    padding: 48px 0px 60px;
  }

  .p-contact__lead {
    margin-bottom: 20px;
  }

  .p-contact__line-box {
    border-radius: 0;
    padding: 24px 20px;
    margin-bottom: 0;
    max-width: 100%;
  }

  .p-contact__line-header {
    justify-content: center;
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none;
  }

  .p-contact__line-logo {
    width: 36px;
  }

  .p-contact__line-title {
    font-size: 15px;
  }

  .p-contact__line-body {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .p-contact__line-steps {
  }

  .p-contact__line-steps p {
    margin-bottom: 6px;
  }

  .p-contact__line-steps ol {
    gap: 6px;
    font-size: var(--font-size-xs);
  }

  .p-contact__form-section {
    padding: 32px 0 0;
    border-radius: 0;
  }

  .p-contact__form-title {
    font-size: 16px;
    text-align: center;
    padding-bottom: 8px;
    margin-bottom: 20px;
  }

  .p-contact__form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
  }

  .p-contact__form-label {
    width: auto;
  }

  .p-contact__form-input-wrap,
  .p-contact__form-input-wrap--narrow {
    width: 100%;
    max-width: 100%;
  }

  .p-contact__privacy {
    margin: 16px 0;
  }

  .p-contact__privacy-title {
    padding-left: 0;
  }

  .p-contact__privacy-box {
    height: 160px;
    font-size: 11px;
  }

  .p-contact__submit-btn {
    width: 240px;
    padding: 14px 0;
  }

  /* Footer */
  .p-footer__nav-list {
    flex-direction: column;
    gap: 8px;
  }

  .p-footer__nav-list li::after { display: none; }
}
@media (min-width: 769px) {
  .is-sp {
    display: none !important;
  }
}

/* ハンバーガーボタン */
.p-header__menu-btn {
  display: none;
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 300;
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}

.p-header__menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all .3s;
}

.p-header__menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.p-header__menu-btn.is-open span:nth-child(2) { opacity: 0; }
.p-header__menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .p-header__menu-btn { display: flex; }
}

/* SP ドロワーナビ */
.p-nav__close {
  display: none;
}

.p-nav__contact {
  display: none;
}

@media (max-width: 768px) {
  /* ドロワー全体 */
  #gnav.is-open {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 200;
    background: var(--color-primary-light);
    overflow-y: auto;
    flex-direction: column;
  }

  #gnav.is-open .l-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 24px 48px;
    min-height: 40%;
    gap: 0;
  }

  /* メニューリスト */
  #gnav.is-open .p-nav__list {
    flex-direction: column !important;
    align-items: center;
    gap: 16px !important;
    height: auto !important;
    width: auto !important;
  }

  #gnav.is-open .p-nav__item::after { display: none; }

  #gnav.is-open .p-nav__link {
    color: var(--color-white) !important;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.04em;
    font-size: var(--font-size-ls);
    opacity: 1 !important;
  }

  #gnav.is-open .p-nav__link:hover,
  #gnav.is-open .p-nav__link.is-active {
    color: var(--color-white) !important;
    opacity: 0.7 !important;
  }

  /* 連絡先エリア */
  #gnav.is-open .p-nav__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    width: 100%;
  }

  .p-nav__contact-text {
    color: var(--color-white);
    font-size: 13px;
    text-align: center;
    line-height: 1.6;
  }

  .p-nav__contact-tel {
    color: var(--color-white);
    font-family: var(--font-lato);
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-decoration: none;
    line-height: 1.2;
  }

  .p-nav__contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    padding: 16px 24px;
    background: #ff9900;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
  }

  /* ×ボタン */
  .p-nav__close {
    display: none;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 300;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

  #gnav.is-open .p-nav__close {
    display: flex;
  }

  .p-nav__close span {
    display: block;
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
  }

  .p-nav__close span:nth-child(1) { transform: rotate(30deg); }
  .p-nav__close span:nth-child(2) { transform: rotate(-30deg); }
}

@media (max-width: 480px) {
  .p-hero__title-img { max-width: 240px; }

  .p-hero__badge-body {
    font-size: 12px;
    padding: 8px 6px;
    gap: 3px;
  }
  .p-hero__badge {
    margin-left: -18px;
    position: relative;
    font-size: 11px;
  }
  .p-hero__badge-icon {
    width: 18px;
    height: 18px;
  }

  .p-hero__badge-tail {
    height: 29px;
  }
}

/* ==========================================================================
   Credo Modal
   ========================================================================== */
.p-credo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.p-credo-modal.is-open {
  display: flex;
}

.p-credo-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.p-credo-modal__inner {
  position: relative;
  z-index: 1;
  width: 95vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.p-credo-swiper {
  width: 100%;
}

.p-credo-swiper .swiper-slide {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-credo-swiper .swiper-slide img {
  width: auto;
  height: 100%;
  display: block;
  object-fit: contain;
}

.p-credo-swiper .swiper-button-prev,
.p-credo-swiper .swiper-button-next {
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.p-credo-swiper .swiper-button-prev::after,
.p-credo-swiper .swiper-button-next::after {
  font-size: var(--font-size-base);
}

.p-credo-modal__close {
  background: #fff;
  border: 2px solid #333;
  padding: 8px 36px;
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}

.p-credo-modal__close:hover {
  background: #333;
  color: #fff;
}
