/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.8;
  overflow-x: hidden;
  background: #252525;
}

.site-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}

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

ul {
  list-style: none;
}

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

/* ========== UTILITIES ========== */
.text-red {
  color: #d42e2e;
  font-weight: 700;
}

.underline-text {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.text-orange {
  color: #ee5500;
  font-weight: 700;
}

.yellow-underline-thin {
  border-bottom: 2px solid #ffff00;
  padding-bottom: 1px;
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
}

.header__top {
  border-bottom: 1px solid #e5e5e5;
}

.header__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

.header__contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header__phone {
  font-family: "Oswald", sans-serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: #e60012;
  letter-spacing: 1px;
  line-height: 1.2;
}

.header__hours {
  font-size: 0.68rem;
  color: #0056b3;
  font-weight: 600;
  margin-top: 1px;
}

.header__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0056b3;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

.header__cta-btn:hover {
  background: #004494;
  color: #fff;
}

.header__nav {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.header__nav-list {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__nav-list li {
  position: relative;
}

.header__nav-list li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
}

.header__nav-list li a:hover {
  color: #2a5caa;
}

/* ========== HERO ========== */
.hero {
  --hero-width: 1200px;
  /* SWEET SPOT: change this one value to control the entire hero width */
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.hero__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--hero-width);
  background: url("../images/hero-bg.jpg") center center / cover no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--hero-width);
  background: rgba(255, 255, 255, 0.25);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 30px 80px;
  text-align: center;
}

/* --- Hero Title --- */
.hero__title {
  margin-bottom: 24px;
  line-height: 1;
  text-align: center;
}

.hero__title-line1 {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  transform: translateX(-200px);
}

.hero__title-line2 {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
  position: relative;
  transform: translateX(250px);
}

.hero__title-highlight {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  transform: rotate(-1deg);
}

.hero__title-highlight::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: -2%;
  width: 124%;
  height: 20px;
  background: url("../images/title-underline.svg") no-repeat center / 100% 100%;
  z-index: -1;
}

.hero__title-month {
  font-size: 2.1rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero__number {
  font-family: "Oswald", sans-serif;
  font-size: 7rem;
  font-weight: 700;
  color: #ffff00;
  line-height: 0.85;
  letter-spacing: -2px;
  text-shadow:
    -2px -2px 0 #0056b3,
    2px -2px 0 #0056b3,
    -2px 2px 0 #0056b3,
    2px 2px 0 #0056b3,
    0px 3px 6px rgba(0, 0, 0, 0.5);
  margin: 0 2px;
}

.hero__title-unit {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffff00;
  text-shadow:
    -2px -2px 0 #0056b3,
    2px -2px 0 #0056b3,
    -2px 2px 0 #0056b3,
    2px 2px 0 #0056b3,
    0px 3px 6px rgba(0, 0, 0, 0.5);
  margin: 0 2px;
}

.hero__title-achieve {
  display: inline-block;
  font-size: 6.2rem;
  font-weight: 900;
  color: #ffff00;
  letter-spacing: 4px;
  text-shadow:
    -2px -2px 0 #0056b3,
    2px -2px 0 #0056b3,
    -2px 2px 0 #0056b3,
    2px 2px 0 #0056b3,
    0px 3px 6px rgba(0, 0, 0, 0.5);
  margin-left: 2px;
  line-height: 0.85;
}

/* --- Hero Feature Cards --- */
.hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 822px;
  margin: 0 auto 36px;
}

.hero__feature-card {
  background: linear-gradient(135deg, #6c9fe2, #497bc1);
  padding: 16px 30px;
  text-align: left;
  line-height: 1.6;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  position: relative;
  min-height: 94px;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero__feature-card p {
  width: 100%;
}

.hero__feature-card .text-large {
  font-size: 1.25rem;
  font-weight: 700;
  color: #faf9bc;
}

.hero__feature-card .text-white {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

.hero__feature-card .text-small {
  font-size: 0.85rem;
  font-weight: 500;
}

.hero__feature-click {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #555;
  z-index: 3;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 2px 10px;
  line-height: 1.4;
}

/* --- Hero Bottom Text --- */
.hero__bottom-text {
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero__bottom-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--hero-width);
  background: rgba(0, 87, 176, 0.85);
  padding: 14px 0;
  text-align: center;
  z-index: 3;
}

.hero__bottom-cta {
  font-size: 1.8rem;
  /* Making this text huger! */
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin: 0;
}

.hero__yellow-underline {
  display: inline-block;
  border-bottom: 2.5px solid #ffff00;
  padding-bottom: 2px;
}

/* ========== SECTION TITLES ========== */
.section-title {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #004494;
  margin-bottom: 40px;
}

/* ========== CONCEPT ========== */
.concept {
  padding: 70px 20px 60px;
  background: #fff;
}

.concept__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.concept__content {
  background: #C5D3EC;
  padding: 40px 15px 15px 15px;
  margin-bottom: 40px;
  border-radius: 4px;
}

.concept__images {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  /* Establish stacking context so pseudo-element goes behind */
}

.concept__images::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: #C5D3EC;
  z-index: -1;
}

.concept__image-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background: #ccc;
}

.concept__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.concept__image-label {
  position: absolute;
  font-family: "Oswald", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px #333;
  color: #fff;
  z-index: 2;
  text-shadow:
    3px 3px 0 #fff,
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff,
    4px 4px 6px rgba(0, 0, 0, 0.4);
  letter-spacing: 1px;
  line-height: 1;
}

.concept__image-label--topleft {
  top: -30px;
  left: 20px;
}

.concept__image-label--bottomright {
  bottom: -32px;
  right: 20px;
  text-align: right;
}

.concept__text {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 25px;
}

.concept__line {
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 14px;
  line-height: 1.6;
}

.concept__line:last-child {
  margin-bottom: 0;
}

/* --- Concept Recommended --- */
.concept__recommended {
  margin-top: 60px;
  position: relative;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}

.concept__recommended-title {
  text-align: center;
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: #fff;
  padding: 0 30px;
  white-space: nowrap;
}

.concept__recommended-title .title-large {
  font-size: 2.5rem;
  color: #1e3464;
  letter-spacing: 2px;
}

.concept__recommended-box {
  border: 2.5px solid #1e3464;
  padding: 50px 40px 40px;
  border-radius: 6px;
}

.recommended-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
}

.recommended-list li h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  white-space: nowrap;
}

.recommended-list li p {
  font-size: 1.0rem;
  color: #4c7ec4;
  font-weight: 500;
  padding-left: 20px;
  white-space: nowrap;
}

/* ========== BUSINESS CHANCE ========== */
.business-chance {
  position: relative;
  /* 調整: background-size の横幅を変更することで青い背景の横幅を調整できます (Sweet spot for blue bg width) */
  background-color: #fff;
  background-image: url("../images/blue-ocean-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 1100px 100%;
  padding: 50px 20px 60px;
  color: #fff;
  overflow: hidden;
}

.business-chance__inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* White card with downward arrow cutout at bottom */
.business-chance__card-wrapper {
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  margin-bottom: 50px;
}

.business-chance__card {
  background: #fff;
  padding: 44px 40px 70px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 50% 100%, 0 calc(100% - 32px));
  color: #333;
}

.business-chance__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
  line-height: 1.5;
  color: #222;
}

.business-chance__highlight {
  font-weight: 900;
  font-size: 1.75rem;
  color: #222;
  background: linear-gradient(transparent 70%, #ffff00 70%);
  padding: 0 2px;
  display: inline;
}

.business-chance__points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 0;
}

.business-chance__point {
  padding-left: 0;
}

.business-chance__label {
  display: inline-block;
  background: linear-gradient(90deg, #1a5fb0, #2e7dd1);
  padding: 5px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  border-radius: 0;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
}

.business-chance__point p {
  font-size: 0.85rem;
  line-height: 1.75;
  font-weight: 400;
  color: #444;
  padding-left: 0;
  margin-top: 4px;
}

/* Bottom callout area (below card, on blue background) */
.business-chance__bottom {
  text-align: center;
  padding: 0 10px;
}

.business-chance__cta-text {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.9;
  letter-spacing: 0.5px;
  color: #fff;
  flex: 1;
  text-align: center;
  margin-bottom: 0;
}

.business-chance__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.business-chance__laurel {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.business-chance__laurel-img {
  width: 48px;
  height: auto;
  display: block;
}

.business-chance__blue-ocean {
  color: #7ee8ff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #7ee8ff;
}

.business-chance__sub-text {
  font-size: 0.88rem;
  line-height: 1.85;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 10px;
}

/* ========== BUSINESS MODEL ========== */
.business-model {
  padding: 70px 20px 60px;
  background: #fff;
}

.business-model__inner {
  max-width: 900px;
  margin: 0 auto;
}

.business-model__title {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.business-model__subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* --- Section heading with red left bar --- */
.business-model__section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 18px;
}

.business-model__heading-bar {
  display: inline-block;
  width: 6px;
  min-width: 6px;
  height: 1.4em;
  background: #e83828;
  border-radius: 2px;
}

.business-model__positioning-text {
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 40px;
}

.business-model__positioning-text p {
  margin: 0;
}

/* ---- Positioning Chart (Image) ---- */
.positioning-chart {
  margin: 0 auto 50px;
  /* 🎯 SWEET SPOT: Change this value to make the chart wider/narrower */
  width: 100vw;
  max-width: 1200px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.positioning-chart__img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ---- Feature Cards ---- */
.business-model__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-top: 10px;
}

.bm-card {
  background: linear-gradient(135deg, #6c9fe2, #497bc1);
  border-radius: 4px;
  padding: 18px 20px 14px;
  color: #fff;
  position: relative;
  min-height: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  box-shadow: 0 3px 10px rgba(42, 92, 170, 0.3);
  overflow: hidden;
}



.bm-card__text {
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
}

.bm-card__underline {
  color: #faf9bc;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.bm-card__bold {
  font-weight: 800;
  font-size: 1rem;
  color: #faf9bc;
}



/* ========== POINT SECTIONS ========== */
.point-section {
  background: #fff;
  padding: 70px 20px 60px;
}

.point-section__inner {
  max-width: 860px;
  margin: 0 auto;
}

/* Point header: "POINT 01" + heading text */
.point-header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 48px;
  border-bottom: 2px solid #6ba2e1;
  /* SWEET SPOT: --underline-gap controls space between text and the underline. Increase = more gap. */
  --underline-gap: 4px;
  padding-bottom: var(--underline-gap);
  /* SWEET SPOT: --underline-extend controls how far the underline stretches beyond the content on each side. Increase = longer line. */
  --underline-extend: 60px;
  padding-left: var(--underline-extend);
  padding-right: var(--underline-extend);
}

.point-header__label {
  display: flex;
  align-items: baseline;
  line-height: 1;
  flex-shrink: 0;
  margin-right: 24px;
  /* SWEET SPOT: --number-weight controls boldness of 01, 02, 03, 04. 400=normal, 500=medium, 600=semi-bold, 700=bold */
  --number-weight: 300;
}

.point-header__zero-wrap {
  display: flex;
  align-items: baseline;
}

.point-header__point {
  position: relative;
  font-family: 'Oswald', sans-serif;
  font-size: 2.3rem;
  /* SWEET SPOT: --point-weight controls how bold POINT is. 300=light, 400=normal, 500=medium, 600=semi-bold, 700=bold */
  --point-weight: 500;
  font-weight: var(--point-weight);
  color: #6ba2e1;
  letter-spacing: 5px;
  z-index: 2;
  /*
     SWEET SPOT: --point-overlap controls how far POINT slides under the 0.
     Increase negative value = POINT goes further right under the 0.
  */
  --point-overlap: -42px;
  margin-right: var(--point-overlap);
  /* SWEET SPOT: --point-lift moves POINT up into the 0's gap. Increase = higher. */
  --point-lift: 38px;
  transform: translateY(calc(-1 * var(--point-lift)));
  text-shadow:
    -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff,
    -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff,
    -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff, 3px 3px 0 #fff;
}

.point-header__zero {
  position: relative;
  font-family: 'Oswald', sans-serif;
  font-size: 7.5rem;
  font-weight: var(--number-weight);
  color: #6ba2e1;
  -webkit-text-stroke: 0;
  line-height: 1;
  letter-spacing: -2px;
  z-index: 1;
  text-shadow: none;

  /* 
     SWEET SPOT TUNING VARIABLES
     The 0 circles around POINT from both above and below.
     The cutout is a rectangular notch on the LEFT side of the 0 where the "NT" of POINT sits.
     
     --cutout-top:    where the notch starts (from top). Lower % = higher cut.
     --cutout-bottom: where the notch ends (from top). Higher % = lower cut.
     --cutout-depth:  how far right the notch goes into the 0. Higher % = deeper.
     
     The top curve of the 0 sits ABOVE the cutout-top.
     The bottom curve of the 0 sits BELOW the cutout-bottom.
     Between them is the gap where POINT text shows through.
  */
  --cutout-depth: 58%;
  --cutout-top: 30%;
  --cutout-bottom: 68%;

  clip-path: polygon(0% 0%,
      100% 0%,
      100% 100%,
      0% 100%,
      0% var(--cutout-bottom),
      var(--cutout-depth) var(--cutout-bottom),
      var(--cutout-depth) var(--cutout-top),
      0% var(--cutout-top));
}

.point-header__num {
  font-family: 'Oswald', sans-serif;
  font-size: 7.5rem;
  font-weight: var(--number-weight);
  color: #6ba2e1;
  line-height: 1;
  letter-spacing: -2px;
  margin-left: 2px;
}

.point-header__text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  /* SWEET SPOT: --text-offset-y fine-tunes the vertical position of the Japanese text.
     Positive = push down, negative = pull up. */
  --text-offset-y: 5px;
  margin-top: var(--text-offset-y);
}

.point-header__text p {
  margin: 0;
}

/* --- Point 01 visual area --- */
.point01-visual {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  max-width: 760px;
  margin: 0 auto 50px;
  padding-top: 20px;
}

/* Dashed background lines */
.point01-visual__dashed {
  position: absolute;
  border-top: 5px dashed #555;
  z-index: 0;
}

.point01-visual__dashed--top {
  /* TOP DASHED LINE TUNING */
  --top-y: 108px;
  /* Vertical position (up/down) */
  --top-left: 28%;
  /* Start position (left) */
  --top-right: 5%;
  /* End position (right) */

  top: var(--top-y);
  left: var(--top-left);
  right: var(--top-right);
}

.point01-visual__dashed--bottom {
  /* BOTTOM DASHED LINE TUNING */
  --bottom-y: 178px;
  /* Vertical position (up/down) */
  --bottom-left: 45%;
  /* Start position (left) */
  --bottom-right: 5%;
  /* End position (right) */

  top: var(--bottom-y);
  left: var(--bottom-left);
  right: var(--bottom-right);
}

/* Cylinder wrappers */
.cylinder-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  height: 400px;
  position: relative;
  z-index: 1;
}

/* Header texts */
.cylinder-header {
  text-align: center;
  /* SWEET SPOT: --header-height controls the space reserved above the cylinder for the text. Smaller = less gap between POINT heading and cylinders. */
  --header-height: 80px;
  height: var(--header-height);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  overflow: visible;
}

.cylinder-label {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 8px;
}

.cylinder-rate {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.cylinder-rate--red {
  color: #d9534f;
}

/* Red reduction arrow */
.point01-reduction {
  position: absolute;
  /* RED ARROW TUNING */
  --arrow-y: 102px;
  /* Move this value up or down */

  top: var(--arrow-y);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 140px;
}

.point01-reduction-arrow {
  width: 60px;
  height: 55px;
  background-color: #e5534e;
  /* Downward arrow shape */
  clip-path: polygon(25% 0%, 75% 0%, 75% 45%, 100% 45%, 50% 100%, 0% 45%, 25% 45%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 6px;
  color: #333;
  font-size: 1.1rem;
  font-weight: 700;
}

.point01-reduction-text {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-left: 5px;
}

/* 3D Cylinders */
.cylinder {
  width: 200px;
  position: relative;
  margin-top: auto;
}

.cylinder--left {
  height: 300px;
  /* Taller */
}

.cylinder--right {
  height: 220px;
  /* Shorter */
}

/* Ellipse top cap */
.cylinder__top {
  width: 100%;
  height: 34px;
  background: #f0f0f0;
  border-radius: 50%;
  position: absolute;
  top: -17px;
  left: 0;
  z-index: 6;
  /* Highest z-index */
  border: 1px solid #dcdcdc;
}

.cylinder__top--right {
  background: #fdf5d3;
  border-color: #f9db78;
}

/* Stacked segments container */
.cylinder__body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  /* Overall curved bottom */
  border-bottom-left-radius: 50% 17px;
  border-bottom-right-radius: 50% 17px;
  overflow: hidden;
  position: relative;
}

/* Individual Layer */
.cylinder__segment {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  text-align: center;
  flex: 1;
  position: relative;
}

/* Single curved boundary drawn at the BOTTOM of each segment to overlap the segment below it */
.cylinder__segment:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -17px;
  /* Half of height to draw the bottom half of the oval over the next layer */
  left: 0;
  width: 100%;
  height: 34px;
  /* Matches the top cap curvature exactly */
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  /* Goes behind this segment's text, but ON TOP of the segment below it because of parent z-index */
}

/* Keep text on top of the pseudo curve */
.cylinder__segment {
  /* need an inner span to be above pseudo element safely, handled implicitly by flex but let's be safe */
  z-index: 5;
}

.cylinder__segment:nth-child(1) {
  z-index: 4;
}

.cylinder__segment:nth-child(2) {
  z-index: 3;
}

.cylinder__segment:nth-child(3) {
  z-index: 2;
}

.cylinder__segment:nth-child(4) {
  z-index: 1;
}


/* Left cylinder: gray shades */
.cylinder__segment--s1 {
  background: #e0e0e0;
}

.cylinder__segment--s2 {
  background: #cccccc;
}

.cylinder__segment--s3 {
  background: #aaaaaa;
}

.cylinder__segment--s4 {
  background: #888888;
  color: #fff;
}

/* Right cylinder: warm orange gradient */
.cylinder__segment--r1 {
  background: #f9db78;
  color: #333;
}

.cylinder__segment--r2 {
  background: #f4b953;
  color: #333;
}

.cylinder__segment--r3 {
  background: #ef9232;
  color: #fff;
}

.cylinder__segment--r4 {
  background: #eb5e10;
  color: #fff;
}

/* We don't need cylinder__bottom div because border-radius overflow solves it */
.cylinder__bottom {
  display: none;
}

/* ---- Center area ---- */
.point01-center-circle {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #0059b3;
  /* Flat Dark Blue like Image 1 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.point01-center-circle__text {
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 1px;
}

/* Old classes removed to keep stylesheet clean */

/* Description text */
.point01-description {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
  margin-top: 10px;
}

/* ---- Point 02 Food Grid ---- */
.point02-inner {
  max-width: 900px;
}

.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.food-card {
  display: flex;
  background: #fff;
  border: 1px solid #f6e6cd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.food-card__image {
  width: 45%;
  flex-shrink: 0;
  position: relative;
}

.food-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.food-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.food-card__title {
  padding: 10px 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.food-card__desc {
  padding: 12px;
  font-size: 0.75rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
  flex: 1;
}

/* Row 1 Colors */
.food-grid .food-card:nth-child(1) .food-card__title,
.food-grid .food-card:nth-child(2) .food-card__title {
  background: #fde846;
  /* Light yellow top */
}

.food-grid .food-card:nth-child(1) .food-card__desc,
.food-grid .food-card:nth-child(2) .food-card__desc {
  background: #fffbe4;
  /* Lighter yellow bottom */
}

/* Row 2 Colors */
.food-grid .food-card:nth-child(3) .food-card__title,
.food-grid .food-card:nth-child(4) .food-card__title {
  background: #f7b727;
  /* Med orange top */
}

.food-grid .food-card:nth-child(3) .food-card__desc,
.food-grid .food-card:nth-child(4) .food-card__desc {
  background: #fff9e8;
  /* Lighter orange bottom */
}

/* Row 3 Colors */
.food-grid .food-card:nth-child(5) .food-card__title,
.food-grid .food-card:nth-child(6) .food-card__title {
  background: #f5a623;
  /* Dark orange top */
}

.food-grid .food-card:nth-child(5) .food-card__desc,
.food-grid .food-card:nth-child(6) .food-card__desc {
  background: #fff2dd;
  /* Light orange bottom */
}

/* ---- Point 03 Target Table ---- */
.point03-inner {
  max-width: 760px;
}

.target-table-wrap {
  margin: 0 auto;
}

.target-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.target-table th,
.target-table td {
  border: 1px solid #fff;
  padding: 14px 18px;
  vertical-align: middle;
  font-size: 0.95rem;
  color: #333;
}

.target-table th {
  background: #0256a9;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 1px;
}

.target-table tbody tr:nth-child(odd) td {
  background: #f9fbfd;
}

/* First column gets slightly darker shade to distinguish target group */
.target-table tbody tr:nth-child(odd) td:first-child {
  background: #eff5fa;
}

.target-table tbody tr:nth-child(even) td {
  background: #f0f6fb;
}

.target-table tbody tr:nth-child(even) td:first-child {
  background: #e4eff8;
}

/* Large Blue Arrow (CSS Shape) */
.point03-arrow-wrap {
  display: flex;
  justify-content: center;
  margin-top: -1px;
  /* Ensure no gap with table */
  margin-bottom: 30px;
}

.point03-arrow-wrap__inner {
  width: 0;
  height: 0;
  border-left: 140px solid transparent;
  border-right: 140px solid transparent;
  border-top: 35px solid #0256a9;
}

.point03-summary {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.7;
  color: #222;
}

.point03-summary p {
  margin: 0;
}

/* ========== POINT 04 ========== */
.point04-inner {
  max-width: 900px;
}

.point04-overview {
  text-align: center;
  margin-bottom: 40px;
}

.point04-overview__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.point04-overview__desc {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
}

.point04-funnel {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
}

.funnel-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #e6fdff;
  border: 1px solid #c7e9ef;
}

.funnel-col__header {
  padding: 15px 10px;
  text-align: center;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header colors */
.funnel-col__header--step1 {
  background: #68c0dd;
}

.funnel-col__header--step2 {
  background: #57bcd7;
}

.funnel-col__header--step3 {
  background: #5bbbd2;
}

.funnel-col__header--step4 {
  background: #60c1d9;
}

.funnel-col__num {
  position: absolute;
  top: 6px;
  left: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.funnel-col__icon {
  margin-bottom: 6px;
  margin-top: 10px;
}

.funnel-col__icon-img {
  height: 36px;
  width: auto;
  display: block;
}

.funnel-col__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  color: #2a3f5d;
}

.funnel-col__title span {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 4px;
  color: #04147d;
}

.funnel-col__content {
  flex: 1;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
}

.funnel-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.funnel-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 18px;
}

.funnel-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.6rem;
  color: #333;
}

.funnel-list__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
  line-height: 1.3;
}

.funnel-list__exp {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.4;
}

.funnel-arrow {
  display: flex;
  align-items: center;
  color: #ccc;
  padding-top: 50px;
}

.funnel-col--culture .funnel-col__content {
  position: relative;
  padding-bottom: 40px;
}

.funnel-col__goal {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: transparent;
  border: 1px solid #60c1d9;
  color: #60c1d9;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  padding: 2px 10px;
  border-radius: 14px;
  font-weight: 600;
}

/* ========== INVESTMENT ========== */
.investment {
  padding: 60px 20px 50px;
  background: #fff;
}

.investment__inner {
  max-width: 860px;
  margin: 0 auto;
}

.investment__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
}

.investment__desc {
  text-align: center;
  margin-bottom: 40px;
}

.investment__desc p {
  font-size: 0.95rem;
  color: #444;
  margin: 0 0 6px 0;
  line-height: 1.8;
}

.investment-table-wrap {
  overflow-x: auto;
}

.investment-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.95rem;
  border-top: 3px solid #0056b3;
}

.investment-table th,
.investment-table td {
  border: 1px solid #9fc4e7;
  padding: 14px 20px;
  vertical-align: middle;
}

.investment-table th {
  background: #0056b3;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.investment-table tbody tr {
  background: #fff;
}

.investment-table td {
  color: #333;
}

.investment-table .cell-money {
  text-align: right;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 1.05rem;
}

.investment-table .cell-note {
  font-size: 0.85rem;
  color: #666;
}

.investment-table .cell-center {
  text-align: center;
}

.investment-table .text-red {
  color: #e60012;
}

.investment-table .row-total {
  background: #eaf3fa;
}

.investment-table .row-total td {
  font-weight: 700;
}

/* ========== REVENUE MODEL ========== */
.revenue-model {
  padding: 60px 20px 60px;
  background: #fff;
}

.revenue-model__inner {
  max-width: 860px;
  margin: 0 auto;
}

.revenue-model__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.revenue-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
}

.revenue-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.95rem;
  border: 1px solid #ccc;
}

.revenue-table th,
.revenue-table td {
  border: 1px solid #ccc;
  padding: 12px 16px;
  vertical-align: middle;
}

.revenue-table th {
  background: #eaeaea;
  color: #333;
  font-weight: 600;
  text-align: center;
}

.revenue-table .col-group {
  letter-spacing: 2px;
}

.revenue-table .col-val,
.revenue-table .col-ratio {
  width: 25%;
}

.revenue-table .cell-money,
.revenue-table .cell-ratio {
  text-align: right;
  letter-spacing: 1px;
}

.revenue-table .indent-1 {
  padding-left: 2em;
  color: #555;
  font-size: 0.9rem;
}

/* Blur effect for placeholder numbers */
.revenue-table .is-blurred {
  color: transparent;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  user-select: none;
}

.revenue-model__highlight {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-top: 10px;
}

.revenue-model__highlight .yellow-marker {
  background: linear-gradient(transparent 65%, #fff000 65%);
  padding: 0 4px;
}

/* ========== SUPPORT & FRANCHISE PLAN ========== */
.support-plan {
  padding: 60px 20px 80px;
  background: #fff;
}

.support-plan__inner {
  max-width: 900px;
  margin: 0 auto;
}

.support-plan__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.support-table-wrap {
  overflow-x: auto;
  margin-bottom: 30px;
}

.support-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #c7e0f4;
}

.support-table th,
.support-table td {
  border: 1px solid #c7e0f4;
  vertical-align: top;
  padding: 14px 16px;
  line-height: 1.5;
  font-size: 0.9rem;
  color: #333;
}

.support-table th {
  background: #0056b3;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 16px;
  font-size: 1.05rem;
}

.support-table .col-theme {
  width: 35%;
}

.support-table .col-content {
  width: 65%;
}

.support-table .cell-num {
  width: 5%;
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
}

.support-table .cell-theme {
  width: 15%;
  vertical-align: middle;
  text-align: center;
}

.support-table .cell-theme-sub {
  width: 30%;
}

.support-table .cell-theme-sub p {
  margin: 0 0 10px 0;
}

.support-table .cell-theme-sub p:last-child {
  margin-bottom: 0;
}

.support-table .cell-content p {
  margin: 0 0 10px 0;
  position: relative;
  padding-left: 1.2em;
}

.support-table .cell-content p:last-child {
  margin-bottom: 0;
}

.support-table .check::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #444;
}

.franchise-plan-box {
  display: flex;
  background: #d9edf7;
  overflow: hidden;
  margin-top: 20px;
}

.franchise-plan-box__left {
  background: #c4e3f3;
  padding: 24px 20px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35%;
  text-align: center;
}

.franchise-plan-box__right {
  padding: 24px 30px;
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.franchise-plan-box__right p {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.franchise-plan-box__right p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .support-plan__title {
    font-size: var(--sp-support-title-size) !important;
  }

  /* ========== SUPPORT TABLE MOBILE (100% WRAP & 50/50 SPLIT) ========== */
  .support-table-wrap {
    width: 100%;
    margin-bottom: 30px;
    overflow-x: hidden;
  }

  /* Use the colgroup to control column widths (DON'T hide it!) */
  .support-table colgroup col:nth-child(1) {
    width: var(--col-number-width) !important;
  }

  .support-table colgroup col:nth-child(2) {
    width: var(--col-theme-width) !important;
  }

  .support-table colgroup col:nth-child(3) {
    width: var(--col-subtheme-width) !important;
  }

  .support-table colgroup col:nth-child(4) {
    width: 50% !important;
  }

  .support-table {
    /* 🎯 調整用変数 (TUNE THESE COLUMN WIDTHS!) */
    /* The first 3 values must add up to 50% (the サポートテーマ half) */
    --col-number-width: 6%;
    /* Number column (1, 2, 3...) – make smaller to save space */
    --col-theme-width: 12%;
    /* Theme column (出店支援 etc.) */
    --col-subtheme-width: 32%;
    /* Sub-theme column (▶ 立地・物件診断 etc.) – needs most space */
    /* The サポート内容 column automatically gets the remaining 50% */

    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    position: relative;
    transform: none;
    left: 0;
    table-layout: fixed !important;
  }

  /* Force exact 50% / 50% split for the two header cells */
  .support-table th.col-theme {
    width: 50% !important;
  }

  .support-table th.col-content {
    width: 50% !important;
  }

  /* Tighten padding on the left-side cells */
  .support-table .cell-num {
    padding: 10px 2px !important;
    font-size: 0.85rem !important;
  }

  .support-table .cell-theme {
    padding: 10px 4px !important;
    font-size: 0.8rem !important;
  }

  .support-table .cell-theme-sub {
    padding: 10px 6px !important;
    font-size: 0.82rem !important;
  }

  /* The content column: padding-left creates room for the ✓ checkmark */
  .support-table .cell-content {
    padding: 10px 8px 10px 24px !important;
    font-size: 0.85rem !important;
    word-wrap: break-word;
  }

  /* Fix checkmark: it uses position:absolute + left:0, 
     but padding-left:1.2em on the <p> puts it inside the padding zone.
     We override left to 0 so it sits at the start of the padding area. */
  .support-table .cell-content p {
    padding-left: 1.2em !important;
  }

  .support-table .check::before {
    left: 0 !important;
  }

  /* ---- Support Table LIGHTBOX Styling ---- */
  .cylinder-lightbox__inner .support-table colgroup col:nth-child(1) {
    width: var(--col-number-width) !important;
  }

  .cylinder-lightbox__inner .support-table colgroup col:nth-child(2) {
    width: var(--col-theme-width) !important;
  }

  .cylinder-lightbox__inner .support-table colgroup col:nth-child(3) {
    width: var(--col-subtheme-width) !important;
  }

  .cylinder-lightbox__inner .support-table colgroup col:nth-child(4) {
    width: 50% !important;
  }

  .cylinder-lightbox__inner .support-table {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    position: relative !important;
    left: 0 !important;
    transform: none !important;
    margin-bottom: 0 !important;
    table-layout: fixed !important;
  }

  /* Make sure checkmarks in the lightbox also inherit the safe padding */
  .cylinder-lightbox__inner .support-table .cell-content {
    padding: 10px 8px 10px 24px !important;
  }

  .cylinder-lightbox__inner .support-table .cell-content p {
    padding-left: 1.2em !important;
  }

  .cylinder-lightbox__inner .support-table .check::before {
    left: 0 !important;
  }

  /* Reset the modal width back to normal to have that nice border */
  #supportLightbox .cylinder-lightbox__wrapper {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding: 15px 10px;
  }

  #supportLightbox .cylinder-lightbox__content {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding: 15px 10px;
  }

  .franchise-plan-box__left {
    flex: 0 0 42%;
    width: 42%;
    font-size: var(--sp-franchise-left-font) !important;
    padding: 12px 2px !important;
    letter-spacing: -0.5px !important;

  }

  .franchise-plan-box__right {
    flex: 0 0 58%;
    width: 58%;
    padding: 12px 8px !important;
  }

  .franchise-plan-box__right .plan-text {
    font-size: var(--sp-franchise-right-font) !important;
  }
}

/* ========== OPENING FLOW ========== */
.flow-section {
  padding: 60px 20px 80px;
  background: #fff;
}

.flow-section__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.flow-section__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.flow-section__intro {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.flow-section__intro ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow-section__intro li {
  position: relative;
  padding-left: 14px;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.flow-section__intro li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.flow-chart-image {
  /* 調整: この max-width の数値を変更することで画像の横幅を調整できます (Sweet spot for chart width) */
  max-width: 1040px;
  margin: 0 auto 20px;
}

.flow-chart-image img {
  width: 100%;
  height: auto;
  display: block;
}

.flow-table {
  width: 100%;
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 2px;
}

/* Timeline headers */
.time-phase {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 4px;
  text-align: center;
  position: relative;
}

.phase-1 {
  background: #00aef0;
}

.phase-2 {
  background: #3ebff2;
  color: #333;
}

.phase-3 {
  background: #9bd7ef;
  color: #333;
}

.phase-4 {
  background: #c5e6f5;
  color: #333;
}

.phase-5 {
  background: #d9eff7;
  color: #333;
}

.arrow-right {
  display: inline-block;
  margin-left: 10px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #fff;
  vertical-align: middle;
}

.phase-2 .arrow-right,
.phase-3 .arrow-right,
.phase-4 .arrow-right {
  border-left-color: #333;
}

.arrow-head {
  display: inline-block;
  margin-left: 10px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #333;
  vertical-align: middle;
}

/* Vertical bars */
.v-bar {
  vertical-align: middle;
  text-align: center;
  padding: 10px 4px;
  width: 32px;
}

.bar-dark {
  background: #0d76bc;
  color: #fff;
  font-weight: bold;
}

.bar-light {
  background: #00a2e8;
  color: #fff;
  font-weight: bold;
}

.bg-lightgray {
  background: #e4eef6;
  color: #333;
  font-weight: bold;
}

.v-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 2px;
  display: inline-block;
  font-size: 0.9rem;
}

/* Swimlane headers */
.swim-head {
  color: #fff;
  padding: 10px 4px;
  text-align: center;
  vertical-align: middle;
  width: 38px;
}

.head-1 {
  background: #0972b9;
}

.head-2 {
  background: #0b61a3;
}

.head-3 {
  background: #185189;
}

.head-4 {
  background: #174771;
}

.swim-head .v-text {
  font-size: 0.85rem;
  letter-spacing: 4px;
}

/* Swimlane contents */
.flow-table td:not(.v-bar) {
  background: #eef6fa;
  padding: 6px;
  vertical-align: middle;
  text-align: center;
  position: relative;
  min-width: 100px;
}

.flow-table td.td-flex {
  padding: 2px 4px;
}

.flow-box {
  background: #fff;
  border-radius: 4px;
  padding: 8px 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  position: relative;
  z-index: 2;
  border: 1px solid #d4e8f1;
}

.flow-box.small {
  padding: 4px;
  font-size: 0.65rem;
  min-height: 36px;
}

.flow-box.narrow {
  padding: 4px;
}

.td-flex,
.box-stack {
  display: flex;
  align-items: stretch;
  gap: 4px;
}

.td-flex {
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}

.box-stack .flow-box {
  flex: 1;
}

/* Arrow logic */
.has-arrow-right::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #888;
  z-index: 10;
}

.cell-line {
  position: relative;
}

.cell-line::before,
.has-arrow-right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 1px;
  background: #aaa;
  z-index: 1;
}

/* Specific tooltips at bottom */
.flow-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.flow-footer-left {
  width: max-content;
}

.flow-footer-right {
  width: max-content;
}

.flow-footer-left,
.flow-footer-right {
  border: 1px solid #777;
  border-radius: 6px;
  padding: 14px 20px;
  background: #fff;
}

.flow-footer p {
  margin: 0;
  font-size: 1.05rem;
  /* Font size increased per request */
  letter-spacing: -0.015em;
  /* Tighter tracking to fit the exact line width */
  color: #333;
  line-height: 1.8;
  position: relative;
  padding-left: 1.5em;
  /* indent for checkmark */
}

.flow-footer .check {
  position: absolute;
  left: 0;
  top: 0;
  /* Align perfectly with top row */
}

@media (max-width: 768px) {
  .flow-footer {
    flex-direction: column;
  }

  .flow-footer-left,
  .flow-footer-right {
    width: 100%;
  }
}

/* ========== FAQ (Q&A) ========== */
.faq-section {
  padding: 80px 20px 100px;
  background-color: #fff;
  /* White for the remaining wide area */
  background-image: linear-gradient(#173f72, #173f72);
  background-position: center;
  background-repeat: no-repeat;
  /* 調整: ここの 1100px の数値を変更することで青い背景の横幅を調整できます (Sweet spot for blue width) */
  background-size: 1100px 100%;
}

.faq-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section__header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-section__title {
  font-family: 'Times New Roman', Times, serif;
  font-size: 6rem;
  font-weight: 500;
  color: #aecdeb;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.faq-q,
.faq-a {
  font-size: 8rem;
}

.faq-amp {
  font-size: 4rem;
  /* 調整: 3番目の値(margin-bottom)を変更することで「&」の縦位置を調整できます (Sweet spot for '&' vertical position) */
  margin: 0 5px -5px 5px;
}

.faq-section__subtitle {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  padding: 30px 40px;
}

.faq-item__q,
.faq-item__a {
  display: flex;
  align-items: flex-start;
}

.faq-item__q {
  margin-bottom: 20px;
}

.faq-icon-q,
.faq-icon-a {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  width: 60px;
  flex-shrink: 0;
}

.faq-icon-q {
  color: #0b3469;
}

.faq-icon-a {
  color: #638eb6;
}

.faq-text-q {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b3469;
  margin: 8px 0 0 0;
  line-height: 1.4;
}

.faq-text-a {
  font-size: 0.95rem;
  color: #444;
  margin: 5px 0 0 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 15px 60px;
  }

  .faq-q,
  .faq-a {
    font-size: 5rem;
  }

  .faq-amp {
    font-size: 2.5rem;
    margin: 0 5px 10px 5px;
  }

  .faq-section__subtitle {
    font-size: 1.3rem;
  }

  .faq-item {
    padding: 24px 20px;
  }

  .faq-icon-q,
  .faq-icon-a {
    font-size: 2rem;
    width: 40px;
  }

  .faq-text-q {
    font-size: 1.1rem;
    margin-top: 5px;
  }
}

/* ========== INVESTMENT ========== */
.investment {
  padding: 80px 20px;
  background: #fff;
}

.investment__inner {
  max-width: 900px;
  margin: 0 auto;
}

.investment__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
}

.investment__desc {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: left;
}

.investment__desc p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin: 0 0 5px 0;
  /* 🎯 SWEET SPOT: Change this value to make the text thicker/thinner (e.g., normal, 300, 400, 500) */
  font-weight: normal;
}

.investment-table-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.investment-table {
  width: 100%;
  border-collapse: collapse;
}

.investment-table th,
.investment-table td {
  border: 1px solid #dcdcdc;
  padding: 12px 15px;
  font-size: 0.95rem;
}

.investment-table th {
  background: #0059b3;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.investment-table td.cell-money {
  text-align: right;
  font-weight: bold;
}

.investment-table td.cell-note {
  font-size: 0.85rem;
  color: #666;
}

.investment-table .text-red {
  color: #e60000;
  font-weight: bold;
}

.investment-table .row-total {
  background: #eef6fa;
  font-weight: bold;
}

.investment-table .cell-center {
  text-align: center;
}

/* ========== FINAL CTA & FOOTER ========== */
.final-cta {
  padding: 80px 0 0;
  /* Removed horizontal and bottom padding on the wrapper */
  background: #fff;
  text-align: center;
}

.final-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  /* moved horizontal padding here */
}

.final-cta__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #173f72;
  margin-bottom: 40px;
}

.final-cta__title .yellow-marker {
  background: linear-gradient(transparent 70%, #fff000 70%);
  padding: 0 4px;
}

.final-cta__buttons {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.final-cta__buttons a {
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 320px;
  height: 80px;
}

.final-cta__buttons a:hover {
  transform: translateY(4px);
}

.btn-tel {
  background: #396CB8;
  color: #fff;
  gap: 12px;
  border: 1px solid #173f72;
  box-shadow: 0px 6px 0px #173f72;
}

.btn-tel:hover {
  box-shadow: 0px 2px 0px #173f72;
}

.btn-tel__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-tel__text .days {
  font-size: 16px;
  font-weight: 400;
}

.btn-tel__text .time {
  font-size: 32px;
}

.btn-mail {
  background: #dfe000;
  color: #247CFF;
  font-size: 32px;
  border: 1px solid #a3a400;
  box-shadow: 0px 6px 0px #a3a400;
}

.btn-mail:hover {
  box-shadow: 0px 2px 0px #a3a400;
}

.final-cta__buttons .contacts-parts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.final-cta__buttons .contacts-parts .contacts-parts-bottom {
  border-radius: 0 0 30px 30px;
  padding: 4px 8px;
  width: 284px;
  height: 104px;
  font-size: 14px;
  color: #001C45;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.final-cta__buttons .contacts-parts .phone-bottom {
  background-color: #C1DAEF;
  border: 1px solid #396CB8;
}

.final-cta__buttons .contacts-parts .requ-bottom {
  background-color: #EDED00;
  opacity: 0.64;
  border: 1px solid #CFCF00;
  letter-spacing: -1.8px;
}

@media (max-width: 768px) {
  .final-cta {
    padding: 60px 15px 50px;
  }

  .final-cta__title {
    font-size: 1.25rem;
  }

  .final-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-tel__text .days {
    font-size: 0.9rem;
  }

  .btn-tel__text .time {
    font-size: 1.4rem;
  }

  .btn-mail {
    font-size: 1.3rem;
  }

  .final-cta__buttons .contacts-parts .requ-bottom {
    text-align: left;
    font-size: 12px;
    letter-spacing: -2px;
  }
}

/* ========== FLOATING CTA ========== */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2a5caa;
  color: #fff;
  padding: 14px 24px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(42, 92, 170, 0.45);
  z-index: 999;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.floating-cta:hover {
  background: #1a3a6e;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(42, 92, 170, 0.55);
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__feature-card.fade-in:nth-child(2) {
  transition-delay: 0.1s;
}

.hero__feature-card.fade-in:nth-child(3) {
  transition-delay: 0.2s;
}

.hero__feature-card.fade-in:nth-child(4) {
  transition-delay: 0.3s;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .header__inner {
    flex-direction: column;
    gap: 10px;
    padding: 10px 16px;
  }

  .header__right {
    width: 100%;
    justify-content: space-between;
  }

  .header__nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header__nav-list li a {
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 420px;
  }

  .hero__inner {
    padding: 36px 16px 30px;
  }

  .hero__title-line1 {
    font-size: 1.4rem;
    transform: none;
  }

  .hero__title-line2 {
    transform: none;
  }

  .hero__title-month,
  .hero__title-unit {
    font-size: 1.5rem;
  }

  .hero__number {
    font-size: 4.5rem;
  }

  .hero__title-achieve {
    font-size: 4rem;
  }

  .hero__features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__feature-card {
    font-size: 0.78rem;
  }

  .concept__images {
    flex-direction: column;
  }

  .concept__image-wrapper {
    min-height: 220px;
  }

  .concept__image-label {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  /* Recommended Section responsive */
  .concept__recommended-title {
    font-size: 1.4rem;
  }

  .concept__recommended-title .title-large {
    font-size: 2rem;
  }

  .concept__recommended-title::before,
  .concept__recommended-title::after {
    width: 20px;
  }

  .recommended-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .concept__recommended-box {
    padding: 40px 20px 30px;
  }

  /* Business Chance Section responsive */
  .business-chance__title {
    font-size: 1.3rem;
  }

  .business-chance__highlight {
    font-size: 1.5rem;
  }

  .business-chance__cta-text {
    font-size: 1.05rem;
  }
}

/* ========== REVENUE MODEL ========== */
.revenue-model {
  padding: 80px 20px 60px;
  background: #fff;
}

.revenue-model__inner {
  max-width: 900px;
  margin: 0 auto;
}

.revenue-model__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
}

/* --- Revenue Table --- */
.revenue-table-wrap {
  max-width: 800px;
  margin: 0 auto 35px;
}

.revenue-table {
  width: 100%;
  border-collapse: collapse;
  border: 4px double #b3b3b3;
  /* Double border to match Figma */
  table-layout: fixed;
}

.revenue-table th,
.revenue-table td {
  border: 1px solid #b3b3b3;
  /* Darker grey lines */
  padding: 0px 15px;
  /* Reduced vertical padding for compactness */
  vertical-align: middle;
  font-size: 1.25rem;
  /* Increased font size */
  color: #333;
}

/* Header Cells */
.revenue-table th {
  background: #ebebeb;
  font-weight: 500;
  text-align: center;
  color: #333;
}

/* Specific column widths */
.revenue-table th.col-item {
  width: 45%;
}

.revenue-table th.col-val {
  width: 32%;
}

.revenue-table th.col-ratio {
  width: 23%;
}

/* Data Cells */
.revenue-table td:first-child {
  background: #ebebeb;
}

.revenue-table td:first-child:not(.indent-1) {
  text-align: left;
  padding-left: 10px;
  /* Reduced to match the tighter left alignment in the reference */
}

.revenue-table td.cell-money,
.revenue-table td.cell-ratio {
  text-align: right;
  letter-spacing: 0.5px;
}


/* Indented items (with gray block) */
.revenue-table td.indent-1 {
  position: relative;
  /* TO ADJUST TEXT INDENTATION: Change this padding-left value */
  padding-left: 60px;
  font-weight: 500;
  /* Toned down from 700 to match the optical weight of the other rows */
  font-size: 1.25rem !important;
  /* Explicitly matching the main td size */
}

/* Adjust last row parenthesis alignment to visually match straight text */
.revenue-table tr:last-child td:first-child {
  padding-left: 0;
}

.revenue-table td.indent-1::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: -1px;
  /* Setting bottom to -1px hides the internal bottom border, but leaves top visible */
  left: 0px;
  /* Setting left to 0 restores the table's left double-boundary */
  /* TO ADJUST EMPTY GRAY WIDTH: Change this width value (but keep it smaller than the padding-left above) */
  width: 50px;
  /* Increased width of the gray indentation block matches Figma rendering */
  background: #ebebeb;
  border-right: 1px solid #b3b3b3;
  z-index: 1;
}

/* Fix for the last indented item to NOT hide the border below it */
.revenue-table tr:nth-last-child(2) td.indent-1::before {
  bottom: 0px;
}

/* Blurred effect for values */
.revenue-table .is-blurred {
  color: transparent !important;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
  user-select: none;
}

/* Highlight at bottom */
.revenue-model__highlight {
  text-align: center;
  margin-top: 15px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.revenue-model__highlight .yellow-marker {
  display: inline-block;
  background: linear-gradient(transparent 70%, #fff000 70%);
  padding: 0 8px;
}

@media (max-width: 768px) {
  .revenue-model__title {
    font-size: 1.4rem;
  }

  /* Header cells */
  .revenue-table th {
    font-size: var(--sp-revenue-header-size) !important;
    padding: 8px 10px;
  }

  /* Main point labels (売上, 食材原価, 粗利, 販売管理費) */
  .revenue-table td:first-child:not(.indent-1) {
    font-size: var(--sp-revenue-main-point-size) !important;
  }

  /* Subpoint labels (人件費, 家賃, etc.) */
  .revenue-table td.indent-1 {
    font-size: var(--sp-revenue-sub-point-size) !important;
    padding-left: 36px;
  }

  /* Money values */
  .revenue-table td.cell-money {
    font-size: var(--sp-revenue-money-size) !important;
    padding: 8px 10px;
  }

  /* Percentage values */
  .revenue-table td.cell-ratio {
    font-size: var(--sp-revenue-ratio-size) !important;
    padding: 8px 10px;
  }

  /* General td padding */
  .revenue-table td {
    padding: 8px 10px;
  }

  .revenue-table td.indent-1::before {
    width: 26px;
  }

  .revenue-model__highlight {
    font-size: 1.1rem;
  }
}

/* ========== SUPPORT & FRANCHISE PLAN ========== */
.support-plan {
  padding: 80px 20px 70px;
  background: #fff;
}

.support-plan__inner {
  max-width: 900px;
  margin: 0 auto;
}

.support-plan__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
}

/* --- Support Table --- */
.support-table-wrap {
  margin-bottom: 24px;
}

.support-table {
  /* --- SWEET SPOT CONFIGURATION --- */
  --table-font-size: 1.1rem;
  /* <-- Adjust this value to increase/decrease ALL text sizes in the table */
  --table-padding-y: 6px;
  /* <-- Adjust this value to increase/decrease the gap between points */
  --table-padding-x: 14px;
  /* <-- Adjust this for side padding inside cells */

  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 3px double #9ebddf;
}

/* Header */
.support-table th {
  background: #0b55a0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 14px 20px;
  text-align: center;
  letter-spacing: 3px;
  border-bottom: 2px solid #fff;
}

/* Gap between headers */
.support-table th.col-theme {
  border-right: 4px solid #fff;
}

/* Body Cells */
.support-table td {
  border: 3px double #9ebddf;
  padding: var(--table-padding-y) var(--table-padding-x);
  vertical-align: top;
  color: #333;
  font-size: var(--table-font-size);
  line-height: 1.6;
}

/* Hide internal borders where rows are split using rowspan */
.support-table .no-border-bottom td {
  border-bottom: none;
}

.support-table .no-border-top td {
  border-top: none;
}

/* Column Overrides */
.support-table .cell-num {
  text-align: center;
  font-size: 1.1em;
  /* Scales automatically with --table-font-size */
  vertical-align: middle;
}

.support-table .cell-theme {
  text-align: left;
  padding: var(--table-padding-y) 10px var(--table-padding-y) 10px;
  vertical-align: middle;
}

.support-table .cell-theme-sub {
  text-align: left;
  padding: var(--table-padding-y) 10px var(--table-padding-y) 24px;
}

.support-table .cell-theme-sub p {
  margin: 0;
  font-size: 0.95em;
  /* Scales automatically with --table-font-size */
  line-height: 1.6;
}

/* Content Column (Checkmarks) */
.support-table .cell-content {
  padding-left: 32px;
  /* Pad cell globally instead of just pushing text */
}

.support-table .cell-content p {
  margin: 0 0 16px 0;
  position: relative;
}

.support-table .cell-content p:last-child {
  margin: 0;
}

.support-table .check {
  display: block;
  position: absolute;
  left: -20px;
  top: 0;
}

.support-table .check::before {
  content: "✓";
  color: #555;
  font-size: 1.1em;
  font-weight: bold;
}

/* --- Franchise Plan Summary Box --- */
.franchise-plan-box {
  display: flex;
  width: 100%;
}

.franchise-plan-box__left {
  flex: 0 0 35%;
  width: 35%;
  background: #d0e6f5;
  color: #333;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  border-right: 2px solid #fff;
}

.franchise-plan-box__right {
  flex: 0 0 65%;
  width: 65%;
  background: #e6f0f7;
  padding: 25px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  border-left: 2px solid #fff;
}

.franchise-plan-box__right .plan-text {
  font-size: 1.25rem;
  color: #444;
  margin: 0;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ========== OPENING FLOW ========== */
.flow-section {
  padding: 80px 20px 70px;
  background: #fff;
}

.flow-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.flow-section__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
}

.flow-section__intro {
  max-width: 800px;
  margin: 0 auto 40px;
}

.flow-section__intro ul {
  list-style: none;
  padding: 0;
}

.flow-section__intro li {
  /* 🎯 SWEET SPOT: Change --flow-intro-weight to control boldness on desktop (100=thin, 400=normal, 700=bold) */
  --flow-intro-weight: 400;
  font-size: 1.15rem;
  font-weight: var(--flow-intro-weight);
  line-height: 1.8;
  color: #444;
  position: relative;
  padding-left: 1.2em;
}

.flow-section__intro li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.flow-chart-image {
  /* 🎯 SWEET SPOT: Change these to make the chart wider/narrower on desktop */
  --flow-chart-desktop-width: 100vw;
  --flow-chart-desktop-max: 1200px;
  width: var(--flow-chart-desktop-width);
  max-width: var(--flow-chart-desktop-max);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto 40px;
  text-align: center;
}

.flow-chart-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* --- Flow Footer (two boxes below the chart) --- */
.flow-footer {
  /* 🎯 SWEET SPOT: Change these to control the footer boxes on desktop */
  --flow-footer-font-size: 1rem;
  --flow-footer-border-color: #666;
  /* Darkened from #aaa, tweak to find sweet spot */
  --flow-footer-padding: 6px 16px;
  /* Adjust this to pack text tighter (e.g., "12px 16px") */

  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.flow-footer-left,
.flow-footer-right {
  border: 1px solid var(--flow-footer-border-color);
  padding: var(--flow-footer-padding);
  font-size: var(--flow-footer-font-size);
  line-height: 1.7;
  color: #333;
  /* Vertically center the text to remove empty space at the bottom */
  display: flex;
  align-items: center;
}

.flow-footer-left {
  flex-shrink: 0;
}

.flow-footer-right {
  flex-shrink: 0;
}

.flow-footer-left p,
.flow-footer-right p {
  margin: 0;
  /* Prevent automatic wrapping so the <br> tags control EXACTLY where breaks happen */
  white-space: nowrap;
}

.flow-footer .check {
  font-weight: bold;
  margin-right: 4px;
}

/* ========== MOBILE HERO TITLE VARIABLES (SWEET SPOT AREA) ========== */
/* 
 * You can configure these values to find the sweet spot for the mobile display!
 */
:root {
  --sp-hero-line1-size: 1.5rem;
  /* "地方・小商圏立地で" size -> Change this to make it bigger/smaller */
  --sp-hero-line1-mb: 22px;
  /* Gap between line1 and line2 -> Change this to reduce/increase gap */
  --sp-hero-line1-shift: -35px;
  /* Left/Right shift for line1, 0 means centered */
  --sp-hero-line2-shift: 35px;
  /* Left/Right shift for line2, 0 means centered */

  --sp-hero-bottom-text-size: 1.1rem;
  /* "現地メキシコに20年間..." size */
  --sp-hero-bottom-cta-size: 1.2rem;
  /* "地域づくりをしたい企業様をサポート" size */
  --sp-hero-pb: 60px;
  /* Bottom padding -> Decrease this (e.g., 60px) to move text down */

  /* --- Concept Recommended Box Mobile Variables --- */
  --sp-recommend-title-size: 0.9rem;
  /* Title "このような方に" size */
  --sp-recommend-title-large: 0.9rem;
  /* "おすすめ" size */
  --sp-recommend-title-px: 5px;
  /* Title left/right padding (controls width of horizontal lines) */
  --sp-recommend-box-px: 15px;
  /* Box left/right padding */
  --sp-recommend-item-title: 1.05rem;
  /* List item title size */
  --sp-recommend-item-text: 0.9rem;
  /* List item description size */

  /* --- Business Model Mobile Variables --- */
  --sp-business-title-size: 1.8rem;
  --sp-business-subtitle-size: 1rem;
  --sp-business-chart-width: 110%;
  /* Chart width on mobile -> increase to make it overflow more */
  /* [COMMENTED OUT - HORIZONTAL SCROLL VERSION] --sp-positioning-chart-width: 800px; */
  /* Positioning chart image width on mobile — increase for bigger, scrollable */

  /* --- Point Sections Mobile Variables --- */
  --sp-point-header-text: 1.15rem;
  /* "商品開発機能を保有し、本格タコスや多品目メニューの提供が可能" size */
  --sp-point-underline-extend: 40px;
  /* Controls how far the bottom line stretches on mobile left & right */

  /* --- POINT 01 Cylinders Mobile Variables --- */
  /* [COMMENTED OUT - HORIZONTAL SCROLL VERSION]
  --sp-point01-scroll-width: 100vw;
  --sp-point01-inner-width: 720px;
  --sp-point01-padding-x: 20px;
  */

  /* --- POINT 02 Food Grid Mobile Variables --- */
  --sp-food-arrow-color: #f5a623;
  /* Color of the arrows between food cards */
  --sp-food-arrow-size: 16px;
  /* Size of the arrow triangles */
  --sp-food-card-gap: 40px;
  /* Gap between food cards (must be > arrow size * 2) */

  /* --- POINT 04 Funnel Mobile Variables --- */
  --sp-funnel-card-width: 280px;
  /* Max width of funnel cards — decrease to make narrower */
  --sp-funnel-title-size: 1.1rem;
  /* Title text size (e.g. "コラボタコス") */
  --sp-funnel-desc-size: 0.95rem;
  /* Description text size (e.g. "他店の名物をタコス化") */
  --sp-funnel-arrow-color: #68c0dd;
  /* Color of the arrows between funnel steps */
  --sp-funnel-arrow-size: 18px;
  /* Size of the arrow triangles */
  --sp-funnel-gap: 40px;
  /* Gap between funnel cards */
  --sp-funnel-header-num: 2.2rem;
  /* Step number size ("01", "02", etc.) */
  --sp-funnel-header-title: 1.3rem;
  /* Header title size ("HOOK", "EXPERIENCE", etc.) */
  --sp-funnel-header-sub: 0.95rem;
  /* Header subtitle size ("話題性・認知", "体験・感動", etc.) */

  /* --- Mobile Site Padding (prevents content overlapping phone edges) --- */
  --sp-site-padding-x: 30px;
  /* Left & right padding on mobile -> Increase to push content away from edges */
  --sp-site-padding-y: 0px;
  /* Top & bottom padding on mobile -> Usually 0, increase if needed */

  /* --- Revenue Model Table Mobile Variables --- */
  --sp-revenue-header-size: 0.9em;
  /* Header cells (モデル月商, 値, 構成比) */
  --sp-revenue-main-point-size: 0.95em;
  /* Main row labels (売上, 食材原価, 粗利, 販売管理費) */
  --sp-revenue-sub-point-size: 0.85rem;
  /* Subpoint labels (人件費, 家賃, 減価償却, etc.) */
  --sp-revenue-money-size: 0.85rem;
  /* Money values (¥5,000,000 etc.) */
  --sp-revenue-ratio-size: 0.9rem;
  /* Percentage values (100%, 30% etc.) */

  /* --- Support Plan Mobile Variables --- */
  --sp-support-title-size: 1.15rem;
  /* 本部サポート内容・加盟プラン title size */
  --sp-support-table-font: 0.75rem;
  /* Table body text size */
  --sp-support-header-font: 0.85rem;
  /* Table header text size (サポートテーマ, サポート内容) */

  /* --- Franchise Plan Box Mobile Variables --- */
  --sp-franchise-left-font: 0.72rem;
  /* Left box (加盟金・ロイヤルティ) font size */
  --sp-franchise-right-font: 0.8rem;
  /* Right box (plan text: 加盟金 = ¥2,000,000 etc.) font size */

  /* --- Opening Flow Section Mobile Variables --- */
  --sp-flow-title-size: 1.4rem;
  /* 開業までの流れとサポート内容 title size on mobile */
  --sp-flow-intro-size: 1rem;
  /* Bullet point intro text size on mobile */
  --sp-flow-intro-weight: 400;
  /* Bullet point intro text boldness on mobile (100=thin, 400=normal, 700=bold) */
  --sp-flow-chart-width: 800px;
  /* Flow chart image width on mobile — increase to make it bigger (scrollable) */
  --sp-flow-footer-font-size: 0.85rem;
  /* Flow footer boxes text size on mobile */
  --sp-flow-footer-padding: 16px;
  /* Flow footer boxes padding on mobile */
  --sp-flow-footer-width: 90%;
  /* Flow footer boxes width on mobile (e.g. 90%, 85%, or max-width) */
}

/* Helper to break lines ONLY on mobile */
.sp-br {
  display: none;
}

@media (max-width: 768px) {

  /* Mobile investment section padding — prevents content overlapping with phone edges */
  .investment {
    padding-left: var(--sp-site-padding-x) !important;
    padding-right: var(--sp-site-padding-x) !important;
  }


  /* Reset extreme transforms for mobile */
  .hero__title-line1 {
    transform: translateX(var(--sp-hero-line1-shift));
    display: block;
    margin-bottom: var(--sp-hero-line1-mb);
    font-size: var(--sp-hero-line1-size);
  }

  .hero__title-line2 {
    transform: translateX(var(--sp-hero-line2-shift));
  }

  /* Prevent bottom text from being covered by the blue banner */
  .hero__inner {
    padding-bottom: var(--sp-hero-pb);
  }

  .hero__bottom-text {
    font-size: var(--sp-hero-bottom-text-size);
  }

  .hero__bottom-cta {
    font-size: var(--sp-hero-bottom-cta-size);
  }

  /* Other mobile adjustments */
  .header__phone {
    font-size: 1.2rem;
  }

  .header__cta-btn {
    padding: 6px 14px;
    font-size: 0.72rem;
  }

  .hero__number {
    font-size: 4rem;
    /* Adjusted for tablet/mobile */
  }

  .hero__title-achieve {
    font-size: 3.2rem;
    letter-spacing: 2px;
  }

  .hero__features {
    grid-template-columns: 1fr;
  }

  /* --- Concept Recommended Box Mobile Styles --- */
  .concept__recommended-title {
    font-size: var(--sp-recommend-title-size);
    padding: 0 var(--sp-recommend-title-px);
    /* Reduces horizontal line gap */
    white-space: nowrap;
    /* Forces title to stay on one line */
    text-align: center;
  }

  .concept__recommended-title .title-large {
    font-size: var(--sp-recommend-title-large);
  }

  .concept__recommended-box {
    padding: 40px var(--sp-recommend-box-px) 30px;
  }

  .recommended-list {
    grid-template-columns: 1fr;
    /* Stacks list items in 1 column */
    gap: 20px;
  }

  .recommended-list li h4 {
    font-size: var(--sp-recommend-item-title);
    white-space: normal;
    /* Fixes overflow */
  }

  .recommended-list li p {
    font-size: var(--sp-recommend-item-text);
    white-space: normal;
    /* Fixes overflow */
    padding-left: 0;
    margin-top: 4px;
  }

  .floating-cta {
    bottom: 12px;
    /* Instead of anchoring to the right, we will anchor it to the right with a safe bounded width */
    right: 12px;
    padding: 10px 18px;
    font-size: 0.75rem;
    max-width: calc(100vw - 24px);
    /* ensure it never pushes past the screen */
    box-sizing: border-box;
    /* Adding word-break in case the text itself is too long for very narrow screens */
    word-break: keep-all;
    white-space: nowrap;
  }

  /* --- Business Model Mobile Styles --- */
  .business-model__title {
    font-size: var(--sp-business-title-size);
    text-align: center;
  }

  .business-model__subtitle {
    font-size: var(--sp-business-subtitle-size);
    text-align: center;
    white-space: nowrap;
    /* Forces subtitle to stay on one line */
  }

  /* ===== [COMMENTED OUT - HORIZONTAL SCROLL VERSION] =====
  .positioning-chart {
    width: 100%;
    max-width: none;
    left: 0;
    transform: none;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }

  .positioning-chart__img {
    width: var(--sp-positioning-chart-width);
    max-width: none;
    height: auto;
  }
  ===== [END COMMENTED OUT] ===== */

  /* Fit-to-screen version: image scaled down to fit within viewport */
  .positioning-chart {
    width: 100%;
    max-width: none;
    left: 0;
    transform: none;
    overflow: hidden;
    padding-bottom: 12px;
  }

  .positioning-chart__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .positioning-chart__img:active {
    opacity: 0.85;
  }

  .sp-br {
    display: block;
    /* Turns the BR on for mobile */
  }

  /* --- Point Sections Mobile Styles --- */
  .point-header {
    flex-direction: column;
    align-items: center;
    --underline-extend: var(--sp-point-underline-extend);
    margin-bottom: 30px;
  }

  .point-header__label {
    margin-right: 0;
    margin-bottom: 12px;
  }

  .point-header__text {
    text-align: center;
    font-size: var(--sp-point-header-text);
  }

  /* POINT 01 Cylinders Horizontal Scroll Approach */
  .point-section {
    overflow-x: hidden;
    /* Prevent the scroll wrapper from causing page-level horizontal scroll */
  }

  /* ===== [COMMENTED OUT - HORIZONTAL SCROLL VERSION] =====
  .point01-scroll-wrapper {
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }

  .point01-visual {
    width: var(--sp-point01-inner-width);
    max-width: none;
    margin: 0;
  }
  ===== [END COMMENTED OUT] ===== */

  /* Fit-to-screen version: cylinders scaled down to fit within viewport */
  .point01-scroll-wrapper {
    width: calc(100vw - 20px);
    box-sizing: border-box;
    overflow: hidden;
    margin-bottom: 30px;
    margin-left: -5px;
    padding: 0 5px;
    cursor: pointer;
  }

  .point01-visual {
    width: 760px;
    max-width: none;
    position: relative;
    /* Center the scaled content: left = 50% - (760 * scaleFactor / 2) */
    left: calc(50% - 180px);
    transform: scale(0.48);
    transform-origin: top left;
    /* Compensate for empty space left by scale */
    margin-bottom: -175px;
  }

  .point01-scroll-wrapper:active {
    opacity: 0.85;
  }

  /* Left-align point 01 description on mobile and remove line breaks */
  .point01-description {
    text-align: left;
  }

  .point01-description br {
    display: none;
  }

  /* POINT 02 Food Grid — single column on mobile */
  .food-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-food-card-gap);
  }

  /* Remove line breaks in first food card description only on mobile */
  .food-card:nth-child(1) .food-card__desc br {
    display: none;
  }

  /* Downward arrows between food cards (mobile only) */
  .food-card {
    position: relative;
    overflow: visible;
    /* Override the default overflow:hidden so arrows show */
  }

  .food-card:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: calc(-1 * (var(--sp-food-card-gap) / 2) - (var(--sp-food-arrow-size) / 2));
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: var(--sp-food-arrow-size) solid transparent;
    border-right: var(--sp-food-arrow-size) solid transparent;
    border-top: var(--sp-food-arrow-size) solid var(--sp-food-arrow-color);
  }

  /* POINT 04 Funnel — vertical stack on mobile */
  .point04-funnel {
    flex-direction: column;
    gap: var(--sp-funnel-gap);
    align-items: center;
  }

  .funnel-col {
    width: var(--sp-funnel-card-width);
    max-width: var(--sp-funnel-card-width);
  }

  /* Increase text sizes inside funnel cards on mobile */
  .funnel-list__title {
    font-size: var(--sp-funnel-title-size) !important;
  }

  .funnel-list__exp {
    font-size: var(--sp-funnel-desc-size) !important;
  }

  /* Funnel header text sizes on mobile */
  .funnel-col__num {
    font-size: var(--sp-funnel-header-num);
  }

  .funnel-col__title {
    font-size: var(--sp-funnel-header-title);
  }

  .funnel-col__title span {
    font-size: var(--sp-funnel-header-sub);
  }

  /* Hide horizontal arrows on mobile */
  .funnel-arrow {
    display: none;
  }

  /* Add downward arrows between funnel columns (mobile only) */
  .funnel-col {
    position: relative;
  }

  .funnel-col:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: calc(-1 * (var(--sp-funnel-gap) / 2) - (var(--sp-funnel-arrow-size) / 2));
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: var(--sp-funnel-arrow-size) solid transparent;
    border-right: var(--sp-funnel-arrow-size) solid transparent;
    border-top: var(--sp-funnel-arrow-size) solid var(--sp-funnel-arrow-color);
  }

  /* --- Opening Flow Section Mobile Styles --- */
  .flow-section__title {
    font-size: var(--sp-flow-title-size) !important;
  }

  .flow-section__intro li {
    font-size: var(--sp-flow-intro-size) !important;
    font-weight: var(--sp-flow-intro-weight) !important;
  }

  /* ===== [COMMENTED OUT - HORIZONTAL SCROLL VERSION] =====
  .flow-chart-image {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }

  .flow-chart-image img {
    width: var(--sp-flow-chart-width);
    max-width: none;
    height: auto;
  }
  ===== [END COMMENTED OUT] ===== */

  /* Fit-to-screen version: image scaled down to fit within viewport */
  .flow-chart-image {
    width: 100%;
    max-width: none;
    left: 0;
    transform: none;
    overflow: hidden;
    padding-bottom: 12px;
  }

  .flow-chart-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .flow-chart-image img:active {
    opacity: 0.85;
  }

  /* Flow Footer — Stack boxes on mobile and use mobile font size */
  .flow-footer {
    flex-direction: column;
    gap: 12px;
    width: var(--sp-flow-footer-width);
    margin-left: auto;
    margin-right: auto;
  }

  .flow-footer-left,
  .flow-footer-right {
    width: 100%;
    padding: var(--sp-flow-footer-padding);
    font-size: var(--sp-flow-footer-font-size) !important;
    box-sizing: border-box;
  }

  .flow-footer-left p,
  .flow-footer-right p {
    white-space: normal;
  }
}

/* Mobile-only line breaks: hidden on desktop, shown on sp */
.sp-br {
  display: none;
}

@media (max-width: 480px) {
  .sp-br {
    display: block;
  }

  /* 🎯 SWEET SPOT: adjust --sp-outline to control blue outline thickness on mobile */
  /* --sp-outline = blue border around characters (this is what you see!) */

  .hero__number {
    --sp-outline: 1px;
    font-size: 3.2rem;
    text-shadow:
      calc(-1 * var(--sp-outline)) calc(-1 * var(--sp-outline)) 0 #0056b3,
      var(--sp-outline) calc(-1 * var(--sp-outline)) 0 #0056b3,
      calc(-1 * var(--sp-outline)) var(--sp-outline) 0 #0056b3,
      var(--sp-outline) var(--sp-outline) 0 #0056b3,
      0px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero__title-unit {
    --sp-outline: 1px;
    text-shadow:
      calc(-1 * var(--sp-outline)) calc(-1 * var(--sp-outline)) 0 #0056b3,
      var(--sp-outline) calc(-1 * var(--sp-outline)) 0 #0056b3,
      calc(-1 * var(--sp-outline)) var(--sp-outline) 0 #0056b3,
      var(--sp-outline) var(--sp-outline) 0 #0056b3,
      0px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero__title-achieve {
    --sp-outline: 1px;
    font-size: 2.8rem;
    letter-spacing: 3px;
    text-shadow:
      calc(-1 * var(--sp-outline)) calc(-1 * var(--sp-outline)) 0 #0056b3,
      var(--sp-outline) calc(-1 * var(--sp-outline)) 0 #0056b3,
      calc(-1 * var(--sp-outline)) var(--sp-outline) 0 #0056b3,
      var(--sp-outline) var(--sp-outline) 0 #0056b3,
      0px 2px 4px rgba(0, 0, 0, 0.5);
  }
}

/* ========== CHART LIGHTBOX (Click-to-expand for positioning chart) ========== */
.chart-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.chart-lightbox.is-active {
  display: flex;
}

.chart-lightbox__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  animation: lightboxFadeIn 0.25s ease;
}

.chart-lightbox__content {
  position: relative;
  z-index: 1;
  width: 95%;
  max-width: 900px;
  max-height: 90vh;
  animation: lightboxZoomIn 0.3s ease;
}

.chart-lightbox__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  touch-action: pinch-zoom;
}

.chart-lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.chart-lightbox__close:hover,
.chart-lightbox__close:active {
  background: rgba(255, 255, 255, 0.3);
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes lightboxZoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========== CYLINDER LIGHTBOX (Click-to-expand for Point 01 cylinders) ========== */
.cylinder-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.cylinder-lightbox.is-active {
  display: flex;
}

.cylinder-lightbox__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 92%;
  max-height: 90vh;
  animation: lightboxZoomIn 0.3s ease;
}

.cylinder-lightbox__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  animation: lightboxFadeIn 0.25s ease;
}

.cylinder-lightbox__content {
  position: relative;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
  padding: 15px 10px;
  touch-action: pinch-zoom;
}

.cylinder-lightbox__inner .point01-visual {
  transform: none !important;
  width: 780px !important;
  max-width: none !important;
  /* Scale down to fit inside the modal: ~390px modal inner / 760px = ~0.51 */
  transform: scale(0.45) !important;
  transform-origin: top left !important;
  margin-bottom: -210px;
  position: relative !important;
  /* Center the scaled content: left = 50% - (760 * 0.52 / 2 = 197.6px) */
  left: calc(50% - 175.6px) !important;
}

.cylinder-lightbox__close {
  flex-shrink: 0;
  /* Prevent flexbox from squishing the button into an oval */
  position: relative;
  z-index: 100000;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-bottom: 8px;
  transition: background 0.2s ease;
}

.cylinder-lightbox__close:hover,
.cylinder-lightbox__close:active {
  background: rgba(255, 255, 255, 0.4);
}