@charset "UTF-8";

/* ========== BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: #333;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.7;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

mark {
  background: linear-gradient(transparent 60%, rgba(18,157,149,0.25) 60%);
  padding: 0;
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}
.container.narrow {
  width: min(760px, calc(100% - 40px));
}

.section-title {
  margin: 0 0 12px;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #222;
}
.section-title.center { text-align: center; }
.section-title .accent { color: #129d95; }

.section-lead {
  margin: 0 0 60px;
  font-size: 17px;
  color: #555;
}
.section-lead.center { text-align: center; }

.accent { color: #129d95; }
.bold { font-weight: 900; }

.ul-teal {
  position: relative;
  text-decoration: none;
}
.ul-teal::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 6px;
  background: #f6d622;
  z-index: -1;
}

.pc-only { display: inline; }
.sp-only { display: none; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: transform .2s, opacity .2s;
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-sm { min-height: 42px; padding: 0 20px; font-size: 14px; }
.btn-wide { min-width: 240px; }
.btn-cta {
  width: 350px;
  height: 70px;
  min-width: unset;
  font-size: 24px;
  letter-spacing: 0.05em;
}
.btn-cta-icon { display: none; }
.btn-icon { font-size: 14px; }
.btn-icon img { display: block; }

.btn-orange { background: linear-gradient(180deg, #ff9b2f 0%, #ff7000 100%); color: #fff; }
.btn-yellow { background: linear-gradient(180deg, #ffe357 0%, #ffc900 100%); color: #333; }
.btn-teal   { background: linear-gradient(180deg, #2ecfb2 0%, #0fa39a 100%); color: #fff; }
.btn-blue   { background: linear-gradient(180deg, #1398e4 0%, #2773cd 100%); color: #fff; }

.cta-box-orange .btn-cta { background: linear-gradient(180deg, #f19b22 0%, #f66005 100%); }
.cta-box-yellow .btn-cta { background: linear-gradient(180deg, #feef44 0%, #ffcc00 100%); }

.cta-box-orange .cta-sub { font-size: 19px; color: #f66a0b; font-weight: 600; }
.cta-box-yellow .cta-sub { font-size: 16px; color: #231815; }
.cta-box-yellow .cta-sub strong { font-size: 18px; color: #dd0000; font-weight: 600; }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #e8e8e8;
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 16px;
}
.header-logo img { width: 140px; }
.header-actions { display: flex; gap: 10px; }
.header-btn { display: block; }
.header-btn img { height: auto; width: auto; }

/* ========== FV ========== */
.fv {
  width: 100%;
  overflow: visible;
  position: relative;
}
.fv img { width: 100%; height: auto; display: block; }

.fv-heading {
  position: absolute;
  top: 12%;
  left: 16%;
  font-size: 2.36vw;
  font-weight: 600;
  color: #1f1408;
  text-align: left;
  margin: 0;
  line-height: 1.6;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: 0.07em;
}
.fv-heading-accent {
  font-size: 3.05vw;
  color: #03817d;
  font-weight: 600;
  letter-spacing: 0.07em;
}
.fv-char {
  position: relative;
  display: inline-block;
}
.fv-char::before {
  content: "•";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  color: #e85377;
  font-size: 30px;
  line-height: 1;
}

/* FV CTA */
.fv-cta-wrap {
  position: relative;
  width: 100%;
  z-index: 2;
  background: linear-gradient(to right, #02a298, #03817d);
  padding: 60px 0 40px;
}
.fv-bottom-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  width: min(860px, calc(100% - 40px));
  margin: -90px auto 0;
}
.cta-box {
  width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 85px 24px 30px;
  background: #fff;
  border: 2px solid #c9c9c9;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform .2s;
  position: relative;
  justify-content: space-between;
}
.cta-box:hover { transform: translateY(-3px); }

.cta-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #fff;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.cta-icon-orange { background: linear-gradient(to right, #f66005 0%, #f19b22 100%); }
.cta-icon-yellow  { background: linear-gradient(to right, #ffcc00 0%, #feef44 100%); color: #333; }
.cta-icon img { width: 45px; height: 45px; object-fit: contain; }

.cta-sub { margin: 0 0 16px; font-size: 14px; color: #231815; line-height: 1.7; }
.cta-sub.pc-only { display: block; }
.cta-sub strong { color: #dd0000; }
.cta-sub-wrap { display: none; }

/* ========== ACHIEVEMENT ========== */
.achievement-section {
  padding: 70px 0;
  background: url("../img/achievement-bg.png") center/cover no-repeat;
  overflow: hidden;
}
.achievement-title {
  background: url("../img/achievement-title.png") center/contain no-repeat;
  margin: 0 auto 36px;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #222;
  width: 671px;
  height: 73px;
  max-width: 100%;
  line-height: 73px;
}
.achievement-title .accent { color: #129d95; font-weight: 900; }
.achievement-title-sub  { font-size: 36px; }
.achievement-title-main { font-size: 50px; color: #03817d; }

.achievement-slider {
  overflow: visible; /* セクション側でクリップするのでslider自体はvisibleに */
  width: 100%;
  margin: 0 auto;
  padding-top: 40px;   /* ラベルと上部の影が切れないよう拡大 */
  padding-bottom: 16px; /* 下部の影も表示 */
  clip-path: none;
}
.achievement-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
/* hover・タップで止まらない無限スクロール */
.achievement-slider:hover .achievement-track,
.achievement-slider:focus .achievement-track {
  animation-play-state: running;
}

.achievement-card {
  position: relative;
  flex: 0 0 274px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow: visible;
  padding-bottom: 30px;
  margin-top: 20px;
}
.achievement-card__label {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  min-width: 120px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #f66a0b;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.achievement-card__visual {
  height: 200px;
  padding: 30px 20px 20px 16px;
  background: #a0efe1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 50% 14%;
  border-bottom-right-radius: 50% 14%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.achievement-card__visual img { max-width: 100px; max-height: 100px; }
.achievement-card__title {
  margin: 16px 20px;
  color: #f66a0b;
  text-align: center;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.4;
}
.achievement-card__title .num       { font-size: 28px; }
.achievement-card__title .num-saiyou { font-size: 24px; }
.achievement-card__text {
  margin: 0 14px;
  font-size: 14px;
  line-height: 1.8;
  color: #04080b;
  font-weight: 400;
}

/* ========== PROBLEM ========== */
.problem-section { padding: 0; }

.problem-upper {
  background: url("../img/problem-upper.png") center/cover no-repeat;
  padding: 80px 0 60px;
}
.problem-lower {
  position: relative;
  background-image: url("../img/problem-lower.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  overflow: visible;
}
.problem-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.problem-line__bar {
  display: block;
  width: 1px;
  height: 70px;
  background: #333;
}
.problem-line__dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #333;
  margin-top: -1px;
}

.problem-title {
  margin: 0 0 50px;
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  color: #fff;
  line-height: 1.4;
}
.problem-layout {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  gap: 16px;
  align-items: center;
}
.problem-side img { max-width: 130px; margin: 0 auto; }
.problem-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 15px;
}
.problem-list li {
  padding: 12px 24px;
  background: #fff;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-align: center;
  position: relative;
  z-index: 0;
}

.problem-message-inner {
  text-align: center;
  padding: 50px;
  max-width: 640px;
  margin: 0 auto;
}
.problem-message-sub {
  margin: 30px 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #444;
  letter-spacing: 0.1em;
}
.problem-message-title {
  margin: 0 0 30px;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  color: #1f1408;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
}
.problem-section .problem-message-title { font-weight: 700; line-height: 1.4; }
.problem-section .problem-small { font-size: 32px; }
.problem-section .problem-large { font-size: 44px; }

.problem-small,
.problem-large { letter-spacing: 0.05em; }
.problem-small:first-child::after { content: ""; display: block; width: 100%; }

.problem-tags { display: grid; gap: 12px; justify-items: center; }
.problem-tags span {
  display: inline-block;
  padding: 8px 18px;
  background: #17917c;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  border-radius: 2px;
  letter-spacing: 0.1em;
}
.problem-tags span .pro-highlight { color: #fce072; display: inline; padding: 0; }

/* ========== IMPORTANCE ========== */
.importance-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #64cba8 0%, #01a190 100%);
  color: #fff;
}
.importance-section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 168px solid transparent;
  border-right: 168px solid transparent;
  border-top: 76px solid #f5d419;
}

.importance-title {
  margin: 30px 0;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  color: #1f1408;
}
.importance-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0 0 36px;
  flex-wrap: wrap;
}
.importance-item {
  width: 190px;
  text-align: center;
  position: relative;
  padding-top: 15px;
}
.importance-icon-wrap {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  overflow: visible;
  padding: 0 16px 20px;
  position: relative;
}
.importance-icon-wrap img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  flex-shrink: 0;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.importance-icon-wrap p {
  margin: 100px 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  text-align: center;
}
.importance-icon-wrap p .ul-teal { color: #129d95; text-decoration: underline; text-decoration-color: #129d95; }
.icon-text-accent { color: #17917c; }
.importance-item > p { display: none; }

.importance-text  { margin: 0 0 30px; text-align: center; font-size: 18px; line-height: 2; color: #fff; }
.importance-lead  { margin: 0 0 32px; text-align: center; font-size: 26px; line-height: 1.5; font-weight: 900; color: #fff; }
.importance-lead-accent { color: #fdeba4; }

/* Download Banner */
.download-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "text image" "btn image";
  gap: 16px 24px;
  align-items: center;
  padding: 24px 28px;
  border-radius: 12px;
  background: linear-gradient(to bottom, #f6d622 60%, #ffffff 40%);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  max-width: 720px;
  margin: 0 auto;
}
.download-banner-text { grid-area: text; text-align: center; }
.download-small  { margin: 0 0 6px; font-size: 16px; color: #231815; line-height: 1.7; }
.download-title  { margin: 0 0 10px; font-size: 26px; font-weight: 900; color: #17917c; }
.btn-download {
  grid-area: btn;
  width: 250px;
  min-height: 50px;
  background: linear-gradient(180deg, #feef44 0%, #ffcc00 100%);
  color: #333;
  margin: 0 auto;
  gap: 25px;
}
.download-banner-image { grid-area: image; display: flex; align-items: center; }
.download-banner-image img { width: auto; border-radius: 8px; }

/* ========== RESULTS ========== */
.results-section {
  padding: 72px 0 80px;
  background: #eeefef;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.results-bg-text {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Avenir", "Century Gothic", sans-serif;
  font-weight: 900;
  color: rgba(0,0,0,0.06);
  font-size: 106px;
  white-space: nowrap;
  margin: 0;
  pointer-events: none;
  z-index: 0;
}
.results-section .section-title { color: #178a91; display: inline-block; font-size: 36px; }
.results-section .section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 8px;
  background-image: radial-gradient(circle, #404040 1px, transparent 2px);
  background-size: 6px 4px;
  background-repeat: repeat-x;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 850px;
  margin: 32px auto 0;
  gap: 14px;
}
.result-card {
  padding: 28px 20px;
  border-radius: 16px;
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.result-card-icon { width: 80px; height: 80px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; }
.result-card-icon img { width: 80px; height: 80px; object-fit: contain; }
.result-card > img { width: 80px; height: 80px; margin: 0 auto 16px; object-fit: contain; }
.result-label {
  display: block;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.result-label-teal { background: #01a190; }
.result-label-pink { background: #e75476; }
.result-label-blue { background: #1c84b5; }
.result-card p { margin: 0; font-size: 14px; color: #555; line-height: 1.9; text-align: left; }

/* ========== POINTS ========== */
.points-section { padding: 0; background: #fff; overflow: hidden; }
.points-section .container { max-width: 880px; }
.points-section h2 { margin: 0; padding-top: 80px; }

.points-heading { display: flex; align-items: baseline; justify-content: center; background: #d2e8e4; }
.points-heading-main { font-size: 36px; color: #1f1408; font-weight: 700; }
.points-heading-num  { font-size: 120px; color: #178a91; font-weight: 900; font-family: "Avenir", "Century Gothic", sans-serif; line-height: 1; }
.points-heading-sub  { font-size: 50px; color: #178a91; font-weight: 700; }
.points-heading-main,
.points-heading-num,
.points-heading-sub  { letter-spacing: 0.05em; }
.points-heading .accent { font-weight: 900; font-size: 1.1em; }

/* 斜めカット帯 */
.point-band { position: relative; }
.point-band mark { background: #29969d; color: #fff; padding: 4px; }

.point-band-green {
  background: #d2e8e4;
  padding: 60px 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 0 100%);
  margin-bottom: -50px;
}
.points-heading + .point-band-green {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 50px));
  margin-bottom: -50px;
}
.point-band-white {
  background: #fff;
  padding: 60px 0;
  clip-path: polygon(0 0, 100% 50px, 100% calc(100% - 50px), 0 100%);
  margin-bottom: -50px;
}
.point-band-green:last-child {
  margin-bottom: 0;
  clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
  padding-top: 60px;
}

.point-item {
  display: grid;
  grid-template-columns: 1fr 332px;
  gap: 30px;
  align-items: end;
  margin-bottom: 40px;
}
.point-item-reverse { grid-template-columns: auto 1fr; }
.point-band-white .point-number-wrap { justify-content: flex-end; }
.point-band-green .point-label,
.point-band-green .point-number { color: #fff; }
.point-band-white .point-label,
.point-band-white .point-number { color: #d2e8e4; }

.point-number-wrap { display: flex; align-items: baseline; gap: 4px; }
.point-label  { color: #129d95; font-size: 76px; font-weight: 300; font-family: "Avenir", "Century Gothic", sans-serif; letter-spacing: 0.12em; }
.point-number { color: #129d95; font-size: 130px; font-weight: 300; font-family: "Avenir", "Century Gothic", sans-serif; line-height: 1; letter-spacing: -0.02em; }

.point-title-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.point-title-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-shadow: none;
  border-radius: 0;
  background-color: transparent;
}
.point-title-box--01 { background-image: url("../img/bubble01.png"); width: 312px; height: 147px; padding: 10px 28px 30px; }
.point-title-box--02 { background-image: url("../img/bubble02.png"); width: 428px; height: 114px; padding: 10px 40px 20px; }
.point-title-box--03 { background-image: url("../img/bubble03.png"); width: 312px; height: 147px; padding: 10px 28px 30px; }
.point-title-box h3  { margin: 0; font-size: 36px; font-weight: 900; line-height: 1.4; color: #222; }

.point-icon { flex-shrink: 0; }
.point-icon img { width: 100%; object-fit: contain; }
.point-text p { margin: 0; font-size: 15px; color: #404040; line-height: 1.95; }
.point-image { width: 100%; }

/* ========== SERVICES ========== */
.services-section {
  position: relative;
  padding: 80px 0;
  background: #fff url("../img/services-bg.png") center/cover no-repeat;
}
.services-section .container { max-width: 952px; }
.services-section .section-title { color: #178a91; font-size: 50px; letter-spacing: 0.05em; margin-bottom: 32px; }
.services-section .section-lead  { font-size: 20px; font-weight: 600; letter-spacing: 0.15em; }

.services-title-line { width: 35px; height: 2px; background: #1f1408; margin: 20px auto 0; }
.services-heading-wrap { position: relative; text-align: center; margin-bottom: 36px; }
.services-bg-text {
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 240px;
  font-weight: 900;
  font-family: "Avenir", "Century Gothic", sans-serif;
  color: #e8e8e8;
  white-space: nowrap;
  margin: 0;
  pointer-events: none;
}
.services-ruby { margin: 0; font-size: 16px; font-weight: 600; line-height: 1; letter-spacing: 0.8em; color: #178a91; position: relative; left: -190px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.service-card.blue  { background: linear-gradient(to right, #36abd7, #2a6eb4); }
.service-card.sky   { background: linear-gradient(to right, #4ebfea, #3094ca); }
.service-card.green { background: linear-gradient(to right, #49dec4, #08c09f); }

.service-head { padding: 16px 20px; color: #fff; text-align: center; }
.service-card.blue  .service-head { background: linear-gradient(to right, #36abd7 0%, #2a6eb4 100%); }
.service-card.sky   .service-head { background: linear-gradient(to right, #4ebfea 0%, #3094ca 100%); }
.service-card.green .service-head { background: linear-gradient(to right, #49dec4 0%, #08c09f 100%); }

.service-step { display: block; font-size: 46px; font-weight: 400; font-family: "Avenir", "Century Gothic", sans-serif; line-height: 1; margin-bottom: 2px; }
.service-head h3 { margin: 0; font-size: 20px; font-weight: 400; letter-spacing: 0.1em; }

.service-body { padding: 20px 20px 30px; display: flex; flex-direction: column; flex: 1; background: #fff; border-radius: 16px; }
.service-image { margin-bottom: 16px; }
.service-image img { height: 110px; width: auto; margin: 0 auto; }

.service-card h4 { margin: 0 0 20px; font-size: 20px; font-weight: 700; text-align: center; }
.service-card.blue  h4 { color: #f47901; }
.service-card.sky   h4 { color: #f47901; }
.service-card.green h4 { color: #f47901; }
.service-card p { margin: 0 0 20px; font-size: 14px; color: #555; line-height: 1.85; }

.service-tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 6px; }
.service-tags span {
  flex: 1;
  min-width: 80px;
  padding: 8px 16px;
  border-radius: 3px;
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.service-card.blue  .service-tags span { background: linear-gradient(to right, #36abd7 0%, #2a6eb4 100%); }
.service-card.sky   .service-tags span { background: linear-gradient(to right, #4ebfea 0%, #3094ca 100%); }
.service-card.green .service-tags span { background: linear-gradient(to right, #49dec4 0%, #08c09f 100%); }

/* Section CTA Banner */
.section-cta-banner {
  padding: 50px 0;
  background: linear-gradient(180deg, #129d95 0%, #0d8880 100%);
  text-align: center;
}
.section-cta-banner .btn-orange { background: linear-gradient(180deg, #f19b22 0%, #f66005 100%); }
.section-cta-banner .btn-yellow { background: linear-gradient(180deg, #fed944 0%, #ffba00 100%); }
.section-cta-banner .btn-wide {
  width: 360px;
  height: 74px;
  min-width: unset;
  border-radius: 10px;
  font-size: 24px;
  gap: 24px;
  border: 2px solid #fff;
}
.section-cta-label {
  margin: 0 0 40px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.section-cta-row { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }

/* ========== PRICING ========== */
.pricing-section { padding: 72px 0 40px; background: #f0f0f0; }
.pricing-section .container { max-width: 900px; }
.pricing-main-title { margin: 0 0 80px; font-size: 36px; font-weight: 900; text-align: center; color: #222; letter-spacing: 0.1em; }

.pricing-block { margin: 0 auto 50px; max-width: 900px; }
.narrow-table { max-width: 760px; margin: 0 auto; }
.pricing-block-title {
  display: block;
  margin: 0 auto 40px;
  text-align: left;
  padding-bottom: 10px;
  border-bottom: 3px solid #1c84b5;
  font-size: 24px;
  font-weight: 700;
  color: #222;
}

.table-wrap { overflow-x: auto; }
.pricing-table {
  width: 100%;
  min-width: 560px;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.pricing-table thead th {
  padding: 12px 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
}
.pricing-table thead th:first-child { background: transparent; color: transparent; border: none; }
.pricing-table thead th:nth-child(2) { background: #18b687; border-right: 1px solid rgba(255,255,255,0.6); border-radius: 12px 0 0 0; }
.pricing-table thead th:nth-child(3) { background: #089ba4; border-right: 1px solid rgba(255,255,255,0.6); }
.pricing-table thead th:nth-child(4) { background: #018476; }

.pricing-table tbody th,
.pricing-table tbody td {
  padding: 0;
  text-align: center;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  font-size: 16px;
  color: #333;
  width: 190px;
  height: 62px;
}
.pricing-table tbody td[colspan="3"] { width: 572px; }
.pricing-table tbody td:last-child,
.pricing-table thead th:last-child { border-right: none; }

.pricing-table tbody th {
  background: #d8d8d8;
  color: #1f1408;
  font-weight: 600;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.pricing-table tbody tr:first-child th { border-radius: 12px 0 0 0; }

.td-num  { font-size: 28px; font-weight: 600; }
.td-unit { font-size: 18px; font-weight: 600; }

.pricing-note {
  margin: 10px 0 0;
  text-align: left;
  width: fit-content;
  margin-left: auto;
  font-size: 14px;
  color: #404040;
  line-height: 1.8;
  padding-top: 16px;
  position: relative;
}
.pricing-note::before {
  content: "";
  display: block;
  width: 900px;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
  background-image: repeating-linear-gradient(to right, #c9c9c9 0px, #c9c9c9 4px, transparent 8px, transparent 9px);
}

/* ========== FLOW ========== */
/*
 * 構造:
 * .flow-section > .flow-inner > picture（絶対配置・背景）
 *                             > .flow-overlay（relative・コンテンツ）
 *
 * カードが背景画像より高くなっても .flow-inner が追従するよう
 * picture を absolute、overlay を relative に設定する
 */
.flow-section {
  background: #f0f0f0;
}
.flow-inner {
  position: relative;
  width: 100%;
}
/* pictureを絶対配置にしてコンテンツ高さに追従させる */
.flow-inner picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
/* 背景画像をobject-fit:coverでコンテンツ高さに合わせて伸縮 */
.flow-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* overlayをrelativeにしてカード高さ分 .flow-inner を押し広げる */
.flow-overlay {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 60px 20px;
  box-sizing: border-box;
}
.flow-section .container {
  position: static;
  transform: none;
  width: min(1100px, calc(100% - 40px));
}
.flow-card { border-radius: 16px; max-width: 670px; width: 100%; margin: auto; }
.flow-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px 16px 0 0;
}
.flow-title {
  margin: 0 0 16px;
  line-height: 1;
  font-family: "Avenir", "Century Gothic", sans-serif;
  font-size: 76px;
  font-weight: 300;
  color: #fdeba4;
  letter-spacing: 0.1em;
}
.flow-sub { margin: 0; font-size: 24px; font-weight: 600; line-height: 1; color: rgba(255,255,255,0.9); }

.flow-list { padding: 100px 0 0; margin: 0; list-style: none; }
.flow-list li {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.flow-list li:first-child { border-top: none; }
.flow-list li:last-child  { border-bottom: 1px solid rgba(0,0,0,0.08); }

.flow-item-top { display: flex; align-items: center; gap: 32px; flex-shrink: 0; }
.flow-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #17917c;
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  font-family: "Avenir", "Century Gothic", sans-serif;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.flow-icon { width: 50px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.flow-icon img { width: auto; height: 40px; object-fit: contain; margin: 0 auto; }

.flow-content-title h3 { margin: 0; font-size: 18px; font-weight: 700; color: #17917c; white-space: nowrap; }
.flow-content-text { margin: 0; font-size: 16px; color: #555; line-height: 1.7; }

/* ========== FAQ ========== */
.faq-section { padding: 72px 0 60px; background: #fff; overflow: hidden; position: relative; }
.faq-section .container { width: min(840px, calc(100% - 40px)); }
.faq-heading-wrap { position: relative; text-align: center; margin-bottom: 36px; }
.faq-bg-text {
  position: absolute;
  top: -88px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Avenir", "Century Gothic", sans-serif;
  font-weight: 900;
  color: #ececec;
  font-size: 200px;
  white-space: nowrap;
  margin: 0;
  pointer-events: none;
  z-index: 0;
}
.faq-title {
  position: relative;
  margin: 0;
  font-size: 36px;
  font-weight: 900;
  color: #089ba4;
  padding-bottom: 12px;
  display: inline-block;
  line-height: 1.3;
}
.faq-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 8px;
  background-image: radial-gradient(circle, #404040 1px, transparent 2px);
  background-size: 6px 4px;
  background-repeat: repeat-x;
}
.faq-list { display: grid; gap: 40px; }
.faq-question {
  padding: 6px 40px;
  background: #089ba4;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}
.faq-item summary {
  position: relative;
  padding: 16px 56px 16px 20px;
  cursor: pointer;
  list-style: none;
  background: #089ba4;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after  { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }

.faq-q, .faq-a { font-family: "Futura", "Century Gothic", sans-serif; font-weight: 500; font-size: 28px; flex-shrink: 0; }
.faq-a { color: #01a190; line-height: 1; }
.faq-answer { padding: 0 40px; }
.faq-answer-inner { display: flex; align-items: flex-start; gap: 16px; }
.faq-answer p { margin: 0; font-size: 16px; line-height: 1.9; color: #444; letter-spacing: 0.05em; }
.faq-a-text { font-size: 16px; line-height: 1.9; color: #444; margin-top: 4px; }

/* ========== CONTACT ========== */
.contact-section {
  padding: 68px 0 80px;
  background-image: url("../img/contact-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-section .container { width: min(800px, calc(100% - 40px)); }
.contact-title { margin: 0 0 16px; font-size: 36px; font-weight: 900; text-align: center; color: #fff; letter-spacing: 0.05em; }
.contact-lead  { margin: 0 0 32px; font-size: 24px; text-align: center; color: rgba(255,255,255,0.9); font-weight: 400; letter-spacing: 0.08em; }

.contact-form {
  padding: 60px 50px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0,0,0,0.16);
  border: 3px solid #c9c9c9;
}
.wpcf7-form-control-wrap { display: contents; }

.form-row {
  display: grid;
  grid-template-columns: 140px 56px 1fr;
  gap: 0 20px;
  align-items: center;
  margin-bottom: 40px;
}
.form-row label { font-size: 18px; font-weight: 600; color: #333; }
.form-row-textarea { align-items: start; }
.form-row-textarea label { padding-top: 12px; }

.required {
  display: inline-block;
  padding: 0 10px;
  border-radius: 999px;
  background: #dd0000;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  justify-self: start;
  letter-spacing: 0.1em;
}
.required-empty { display: block; }

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 6px;
  background: #e5e5e5;
  color: #9a9a9a;
  font-size: 16px; /* 16px未満だとiOS Safariがフォーカス時に自動ズームするため16px固定 */
}
.form-row textarea { resize: vertical; min-height: 120px; }

/* フォーカス時：背景が白になったときにグレーborderを追加 */
.wpcf7-form-control:focus,
.wpcf7-form-control:focus-visible,
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border: 1px solid #cccccc !important;
  background-color: #ffffff;
  box-shadow: none;
}

.form-divider { height: 1px; background: #e0e0e0; margin: 16px 0; }
.form-submit  { text-align: center; padding-top: 60px; }
.btn-submit   { width: 300px; height: 64px; min-width: unset; font-size: 20px; border-radius: 32px; }

/* ========== COMPANY ========== */
.company-section { padding: 70px 0 100px; background: #f7f7f7; }
.company-section .container.narrow { width: min(1000px, calc(100% - 40px)); }
.company-title { display: flex; align-items: center; gap: 20px; margin: 0 0 28px; font-size: 36px; font-weight: 900; color: #03817d; }
.company-bar   { display: inline-block; width: 5px; height: 32px; background: #03817d; border-radius: 3px; flex-shrink: 0; }
.company-en    { font-size: 34px; font-family: "Avenir", "Century Gothic", sans-serif; font-weight: 400; color: #03817d; letter-spacing: 0.03em; padding-left: 20px; }

.company-table { width: 100%; border-collapse: collapse; }
.company-table th,
.company-table td { padding: 30px 0; border-bottom: 2px solid #c7c8c9; text-align: left; vertical-align: top; font-size: 18px; }
.company-table th { width: 140px; color: #03817d; font-weight: 700; padding-right: 20px; }
.company-table td { color: #404040; }

/* ========== FOOTER ========== */
.site-footer { padding: 50px 0; background: #03817d; }
.site-footer p { margin: 0; text-align: center; color: rgba(255,255,255,0.85); font-size: 13px; }

/* ========== 追従ボタン（SP） ========== */
.sp-fixed-cta { display: none; }

/* ========== ANIMATION ========== */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}
@media (prefers-reduced-motion: reduce) {
  .achievement-track { animation: none; }
}

/* ========== RESPONSIVE 1024px ========== */
@media (max-width: 1024px) {
  .section-title { font-size: 30px; }

  .point-item,
  .point-item-reverse { grid-template-columns: 1fr; gap: 24px; }
  .point-item-reverse .point-image { order: 2; }
  .point-item-reverse .point-text  { order: 1; }
  .point-number { font-size: 56px; }
  .point-icon   { display: none; }
  .point-title-box h3 { font-size: 25px; white-space: nowrap; }
  .point-title-box--01,
  .point-title-box--02,
  .point-title-box--03 { background-image: none; width: auto; height: auto; padding: 0; }

  .point-image-01 { content: url("../img/point01-sp.png"); }
  .point-image-02 { content: url("../img/point02-sp.png"); }
  .point-image-03 { content: url("../img/point03-sp.png"); }

  .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .services-ruby { font-size: 8px; left: -10px; }
  .services-section .section-lead { font-size: 14px; letter-spacing: 0.1em; margin-top: 15px; }
}

/* ========== RESPONSIVE 768px ========== */
@media (max-width: 768px) {
  .container,
  .container.narrow { width: calc(100% - 24px); }

  .pc-only { display: none; }
  .sp-only { display: block; }

  /* --- HEADER --- */
  .site-header { display: none; }

  /* --- FV --- */
  .fv {
    background-image: url("../img/fv-bg-sp.png");
    background-size: 100% 100%;
    background-position: top center;
    width: 100%;
    overflow: hidden;
  }
  .fv-heading { font-size: 18px; top: 7%; left: 12%; line-height: 1.4; }
  .fv-heading-accent { font-size: 25px; }
  .fv-char::before { font-size: 20px; top: -12px; }
  #accent2 .fv-char::before { display: none; }

  .fv-cta-wrap { position: static; transform: none; margin-top: 0; padding: 24px 0; }
  .fv-cta-wrap .container { width: 100%; padding: 0 15px; }
  .fv-bottom-cta { grid-template-columns: 1fr; gap: 20px; padding: 16px 0; margin-top: 0; width: 100%; }

  .btn-cta-icon { display: block; width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
  .cta-box { width: 100%; padding: 16px; justify-content: center; gap: 16px; }
  .cta-icon { display: none; }
  .cta-sub { display: none; }
  .cta-sub.pc-only { display: none; }
  .cta-sub-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }
  .cta-box-yellow .cta-sub strong { font-size: 15px; }
  .cta-slash-left,
  .cta-slash-right { width: 20px; height: 40px; }
  .cta-slash-left  { position: absolute; left: 0; }
  .cta-slash-right { position: absolute; right: 0; }
  .cta-sub-wrap .cta-sub { display: block; margin: 0; font-size: 15px; }
  /* SP CVボタン：アイコン＋テキストのセットをセンター配置 */
  .btn-cta {
    width: 100%;
    font-size: 20px;
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
    gap: 16px;
  }
  .btn-cta noscript { display: none !important; }
  .cta-box-orange .btn-cta { gap: 16px; }

  /* --- ACHIEVEMENT --- */
  .achievement-section {
    padding-top: 52px;
    background-image: url("../img/achievement-bg-sp.png");
    background-size: 100% 100%;
    background-position: top center;
  }
  .achievement-title {
    background: url("../img/achievement-title-sp.png") center/100% 100% no-repeat;
    width: 100%;
    height: auto;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 10px;
  }
  .achievement-title-sub  { font-size: 20px; }
  .achievement-title-main { font-size: 25px; color: #03817d; }
  .achievement-track { gap: 10px; animation-duration: 90s; }

  /* SP：タップ（hover扱い）でも止まらない */
  .achievement-slider:hover .achievement-track {
    animation-play-state: running;
  }
  .achievement-card { flex: 0 0 220px; padding-bottom: 15px; }
  .achievement-card__visual { height: 170px; }
  .achievement-card__title { font-size: 14px; margin: 16px 8px; }
  .achievement-card__title .num       { font-size: 20px; }
  .achievement-card__title .num-saiyou { font-size: 18px; }

  /* --- PROBLEM --- */
  .problem-upper {
    background-image: url("../img/problem-upper-sp.png");
    position: relative;
    padding-top: 40px;
    padding-bottom: 125px;
  }
  .problem-upper::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: url("../img/problem-people-sp.png") center bottom / contain no-repeat;
    z-index: 2;
  }
  .problem-list { position: relative; z-index: 1; }
  .problem-list li { font-size: 14px; padding: 24px; font-weight: 500; }
  .problem-layout { grid-template-columns: 1fr; }
  .problem-side { display: none; }
  .problem-title { font-size: 21px; letter-spacing: 0.1em; margin-bottom: 25px; }
  .problem-message-inner { clip-path: none; border-radius: 16px; padding: 32px 12px; margin: 0 12px; }
  .problem-message-title { font-size: 26px; margin-bottom: 10px; flex-direction: column; align-items: center; }
  .problem-large-wrap { display: flex; align-items: baseline; }
  .problem-lower {
    background-image: url("../img/problem-lower-sp.png");
    background-size: 100% 100%;
    background-position: center;
    aspect-ratio: 750 / 621;
  }
  .problem-message-sub { font-size: 14px; margin: 12px 0; }
  .problem-section .problem-small { font-size: 20px; }
  .problem-section .problem-large { font-size: 28px; }
  .problem-small, .problem-large { letter-spacing: 0.1em; }
  .problem-tags { gap: 10px; }
  .problem-tags span { font-size: 14px; padding: 8px 10px; letter-spacing: 0.03em; }

  /* --- IMPORTANCE --- */
  .importance-section { padding: 70px 0 40px; }
  .importance-section::before { border-left: 75px solid transparent; border-right: 75px solid transparent; border-top: 30px solid #f5d419; }
  .importance-title { font-size: 20px; margin: 0 0 12px; }
  .importance-lead  { font-size: 17px; }
  .importance-text  { font-size: 14px; }
  .importance-icons { display: grid; grid-template-columns: 1fr 1fr; justify-items: center; gap: 2px 16px; margin-bottom: 24px; }
  .importance-item:first-child { grid-column: 1 / -1; }
  .importance-item    { width: 150px; }
  .importance-icon-wrap { width: 150px; height: 150px; padding-bottom: 12px; }
  .importance-icon-wrap img { width: 110px; height: 110px; }

  /* --- RESULTS --- */
  .results-section { padding: 40px 0; }
  .results-section .section-title { font-size: 25px; }
  .results-bg-text { font-size: 80px; }
  .results-grid { grid-template-columns: 1fr; max-width: 420px; margin: 18px auto 0; gap: 15px; }
  .result-card { padding: 0; overflow: visible; background: transparent; box-shadow: none; }
  .result-card-icon {
    width: 165px !important; height: 68px !important;
    overflow: hidden !important; border-radius: 0 !important;
    background: transparent !important; padding: 0 !important;
    display: block !important; position: relative !important;
    margin: 0 auto -5px !important; z-index: 10 !important;
  }
  .result-card-icon-inner {
    width: 165px; height: 165px; border-radius: 50%;
    background: #fff; display: flex; align-items: flex-start;
    justify-content: center; padding-top: 20px; z-index: 10; position: relative;
  }
  .result-card-icon-inner img { width: 60px; height: 60px; object-fit: contain; margin: 0; }
  .result-card-icon img { width: 60px; height: 60px; margin-top: -14px; }
  .result-card-body { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); position: relative; z-index: 1; }
  .result-label { padding: 18px; font-weight: 600; font-size: 16px; }

  /* --- POINTS --- */
  .points-section h2 { padding-top: 40px; }
  .points-heading { flex-direction: column; align-items: center; }
  .points-heading-main { font-size: 18px; }
  .points-heading-bottom { display: flex; align-items: baseline; }
  .points-heading-num  { font-size: 60px; }
  .points-heading-sub  { font-size: 25px; }
  .point-label  { font-size: 38px; }
  .point-number { font-size: 65px; }
  .point-band { padding: 30px 0; }
  .point-band-white { padding-top: 50px; }
  .point-band-green:last-child { padding-top: 50px; padding-bottom: 40px; }
  .point-band-white .point-number-wrap { justify-content: flex-start; }
  .point-title-box h3 { font-size: 25px; }
  .point-text p { font-size: 14px; line-height: 2; }
  .point-band mark { padding: 3px 4px; }
  .point-band-green-last .point-item { margin-bottom: 0; }
  .point-item { gap: 20px; }

  /* --- SERVICES --- */
  .services-section { background-image: url("../img/services-bg-sp.png"); padding: 40px 0; }
  .services-bg-text { font-size: 95px; top: -40px; }
  .section-title { font-size: 25px; }
  .services-section .section-title { font-size: 25px; margin-bottom: 16px; }
  .service-step { font-size: 30px; }
  .service-card h4 { margin-bottom: 10px; }
  .section-lead { margin-bottom: 24px; }
  .services-heading-wrap { margin-bottom: 24px; }

  /* --- DOWNLOAD BANNER --- */
  .download-banner {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "image" "btn";
    text-align: center;
    background: linear-gradient(to bottom, #f6d622 72%, #ffffff 50%);
    gap: 0;
    padding: 24px 20px 28px;
  }
  .download-banner-image img { content: url("../img/download-docs-sp.png"); margin: 0 auto; }
  .download-title { margin-bottom: 0; }
  .download-small { margin-bottom: 4px; }
  .btn-download .btn-icon img { width: 26px; height: auto; }
  .download-banner-image { order: 1; margin: 4px 0 20px; }
  .download-banner-text  { background: #f6d622; border-radius: 12px 12px 0 0; order: 0; }
  .btn-download { width: 100%; height: 70px; font-size: 20px; margin: 24px auto 0; }

  /* --- PRICING --- */
  .pricing-section { padding-top: 40px; }
  .pricing-main-title { font-size: 26px; margin-bottom: 30px; }
  .pricing-block { margin-bottom: 30px; }
  .pricing-block-title { font-size: 18px; margin-bottom: 25px; }
  .pricing-table { min-width: unset; width: 100%; table-layout: fixed; }
  .pricing-table th, .pricing-table td { width: 25%; }
  .pricing-table tbody td[colspan="3"] { width: auto; }
  .pricing-table thead th { height: 33px; padding: 0; letter-spacing: 0; font-size: 13px; }
  .pricing-table tbody th,
  .pricing-table tbody td { height: 50px; padding: 0; font-size: 13px; }
  .pricing-table tbody th { letter-spacing: 0; white-space: nowrap; }
  .td-num  { font-size: 20px; }
  .td-unit { font-size: 13px; }
  .pricing-note { font-size: 12px; padding-top: 10px; }

  /* --- FLOW（SP） --- */
  .flow-section { padding: 0; margin: 0; background: #d2e8e4; }
  .flow-inner { margin: 0; padding: 0; display: block; }
  .flow-inner picture { position: static; display: block; margin: 0; padding: 0; }
  .flow-bg-img { display: block; position: static; width: calc(100% - 30px); height: auto; margin: 0 auto; object-fit: unset; }
  .flow-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding: 0; }
  .flow-title { font-size: 60px; margin-bottom: 8px; margin-top: 0; }
  .flow-sub { font-size: 18px; }
  .flow-header { margin-top: 40px; }
  .flow-card { width: 100%; margin: 0; }
  .flow-list {
    padding: 90px 0 24px;
  }
  .flow-list li {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 32px 40px 32px 120px;
    position: relative;
  }
  .flow-list li:last-child { border-bottom: none; }
  .flow-item-top { display: flex; align-items: center; gap: 12px; width: fit-content; }
  .flow-content-title h3 { font-size: 18px; }
  .flow-content-text { font-size: 14px; padding-left: 0; }
  .flow-icon img { width: auto; height: 40px; }
  .flow-num { width: 57px; height: 57px; font-size: 25px; position: absolute; left: 40px; top: 24px; }
  .flow-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 69px;
    top: 81px;
    width: 2px;
    bottom: -30px;
    background: #1f1408;
  }

  /* --- FAQ --- */
  .faq-section { padding-top: 40px; }
  .faq-bg-text { font-size: 95px; top: -40px; }
  .faq-heading-wrap { margin-bottom: 18px; }
  .faq-title { font-size: 26px; }
  .faq-list  { gap: 30px; }
  .faq-q { font-size: 20px; }
  .faq-a { font-size: 20px; }
  .faq-a-text  { font-size: 14px; margin-top: 0; }
  .faq-answer  { padding: 0 20px; }
  .faq-question { font-size: 16px; padding: 10px 20px; margin-bottom: 20px; }
  .faq-item summary { font-size: 15px; padding: 14px 48px 14px 16px; }

  /* --- CONTACT --- */
  .contact-section { background-image: url("../img/contact-bg-sp.png"); padding: 40px 0; }
  .contact-title { font-size: 26px; margin-bottom: 8px; }
  .contact-lead  { font-size: 14px; }
  .contact-form  { padding: 40px 25px; border: 2px solid #c9c9c9; }
  .form-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 6px 10px;
    margin-bottom: 24px;
  }
  .form-row label { grid-column: 1; grid-row: 1; font-size: 16px; justify-self: start; }
  .required,
  .required-empty { grid-column: 2; grid-row: 1; justify-self: end; align-self: center; font-size: 12px; }
  .form-row input,
  .form-row textarea { grid-column: 1 / -1; grid-row: 2; }
  .form-submit { padding-top: 24px; }

  /* --- COMPANY --- */
  .company-section { padding: 50px 0 25px; }
  .company-title { font-size: 22px; gap: 10px; margin-bottom: 20px; }
  .company-bar { width: 3px; height: 22px; }
  .company-en  { font-size: 24px; padding-left: 10px; }
  .company-table th,
  .company-table td { display: table-cell; width: auto; padding: 20px 16px; font-size: 14px; border-bottom: 2px solid #c7c8c9; }
  .company-table th { width: 80px; white-space: nowrap; }
  .company-table td { padding-top: 20px; }

  /* --- SECTION CTA --- */
  .section-cta-banner { padding: 30px 16px 40px; }
  .section-cta-banner .btn-wide { font-size: 21px; letter-spacing: 0.05em; width: 325px; height: 75px; max-width: 100%; justify-content: flex-start; padding-left: 35px; }
  .section-cta-label { font-size: 18px; gap: 10px; margin-bottom: 24px; }
  .slash-left,
  .slash-right { width: 35px; height: 55px; }
  .slash-left  { content: url("../img/icon-slash-left-sp.png"); }
  .slash-right { content: url("../img/icon-slash-right-sp.png"); }
  .section-cta-row { flex-direction: column; align-items: center; gap: 15px; }
  .btn-wide { min-width: 200px; width: 100%; max-width: 300px; }

  /* --- FOOTER --- */
  .site-footer { padding: 16px 0; }

  /* --- SP 追従ボタン --- */
  .sp-fixed-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255,255,255,0.9);
    padding: 10px 15px;
    gap: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  }
  .sp-fixed-btn { flex: 1; }
  .sp-fixed-btn img { width: 100%; height: auto; }
}