.space-top {
  margin-top: 1em !important;
}
.space-bottom {
  margin-bottom: 1em;
}

.yel {
  color: yellow;
}
.maker {
  background: #f9ffc1;
  padding: 2px 4px;
  color: #e53935;
  font-weight: bold;
}
.maker2 {
  padding: 2px 4px;
  color: #e53935;
  font-weight: bold;
  border-bottom: 1px solid #e53935;
}
.nega {
  color: #e53935 !important;
  font-size: 1.2em;
  border-bottom: #e53935 2px solid;
}
.red {
  color: #e53935 !important;
  font-size: 1.2em !important;
}
/*
.dot {
  background-image: radial-gradient(
    circle at center,
    #e53935 13%,
    transparent 13%
  );
  background-position: top left;
  background-repeat: repeat-x;
  background-size: 1em 0.5em;
  padding-top: 0.1em;
}*/

img {
  max-width: 100%;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #0f172a;
  font-family: 'Noto Sans JP', 'Inter', system-ui, -apple-system, Segoe UI,
    Roboto, Arial, 'Hiragino Sans', 'Yu Gothic UI', 'Meiryo', sans-serif;
  line-height: 1.9;
}
.mt- {
  margin-top: -3em !important;
}
.center {
  margin: auto;
  text-align: center;
}

.container {
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid #e2e8f0;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.brand {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  margin: 4px 0;
  border-radius: 2px;
}

.nav-list {
  display: flex;
  gap: 16px;
}

.nav-list a {
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  color: #0f172a;
}

.nav-list a:hover {
  background: #eef2ff;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid--2 {
  grid-template-columns: 1.2fr 0.8fr;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .nav-toggle {
    display: block;
  }
  .nav-list {
    display: none;
    position: absolute;
    right: 4vw;
    top: 56px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 10px 32px rgba(2, 6, 23, 0.06);
    flex-direction: column;
    padding: 10px;
  }
  .nav-list.show {
    display: flex;
  }
}

.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(2, 6, 23, 0.06);
  padding: 24px;
  width: 100%;
}

.flow > * + * {
  margin-top: 24px;
}

.h1 {
  font-size: clamp(22px, 2.3vw + 0.6rem, 36px);
  font-weight: 900;
  line-height: 1.35;
  margin: 0;
}

.bullets {
  border-radius: 12px;
  padding-top: 1em;
}

.badge {
  color: #0b5;
  text-align: center;
}

.btn {
  display: inline-block;
  border: 1px solid #e2e8f0;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 10px 32px rgba(2, 6, 23, 0.06);
  transition: transform 0.08s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--lg {
  font-size: 1.05rem;
}

.btn--xl {
  font-size: 1.1rem;
  padding: 1rem 1.4rem;
}

.cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.trust {
  border-left: 4px solid #2563eb;
}

.notice {
  margin-top: 24px;
  padding: 24px;
  border-left: 4px solid #2563eb;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 12px;
}

.testi-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

@media (max-width: 960px) {
  .testi-list {
    grid-template-columns: 1fr;
  }
}

.testi {
  position: relative;
  padding-top: 24px;
}

.testi-quote {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 32px;
  line-height: 1;
  color: #93c5fd;
}

.testi .testi-meta {
  color: #475569;
  border-top: 1px dashed #e2e8f0;
  padding-top: 16px;
  margin-top: 16px;
}

.qa-item {
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(2, 6, 23, 0.06);
  padding: 40px;
  margin-bottom: 16px;
}

.qa-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #2a8a84;
  list-style: none;
}

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

.site-footer {
  border-top: 1px solid #e2e8f0;
  padding: 24px 0;
  background: #fff;
  text-align: center;
}

li {
  list-style: none;
}

.credentials {
  max-width: 1000px;
  margin: auto;
  padding-top: 2em;
}
.most-top {
  max-width: 750px;
  text-align: center;
  margin: auto;
}
.credentials .years {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.credentials .panel {
  background: #ffffff;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.credentials .year {
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 18px);
  padding: 8px 10px;
  letter-spacing: 0.5px;
}

.credentials .headline {
  font-weight: 700;
  font-size: clamp(18px, 2.8vw, 32px);
  padding: 12px 18px;
  line-height: 1.2;
}

@media (max-width: 520px) {
  .credentials {
    grid-template-columns: 100px 1fr;
  }
}

.pricing-table {
  background: #fcf9f3;
  border: 2px solid #e0d6b8;
  overflow: hidden;
  width: 100%;
  font-family: sans-serif;
}

.pricing-table .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  border-bottom: 1px solid #e0d6b8;
}

.pricing-table .row:last-child {
  border-bottom: none;
}

.pricing-table .label {
  font-weight: 600;
  color: #4a412a;
}

.pricing-table .value {
  font-weight: 700;
  color: #2a4d66;
}

@media (max-width: 360px) {
  .pricing-table .row {
    flex-direction: column;
    align-items: flex-start;
  }
  .pricing-table .value {
    margin-top: 6px;
  }
}

.lstep-troubles {
  --ink: #2e2e2e;
  --bg: #2e2e2e;
  --accent-1: #f0f0f0;
  --accent-2: #f0f0f0;
  --bubble-radius: 16px;
}

.lstep-troubles {
  background: #333;
  background: url(../img/bg-nayami.png);
  background-position: bottom;
  background-size: 100%;
}
.lstep-troubles .container {
  margin-inline: auto;
  padding: 00px 20px 40px;
  text-align: center;
}
.stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1000px;
}
.lstep-troubles__title {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: clamp(22px, 4.2vw, 44px);
  text-align: center;
  margin: 0;
  color: #fff;
}
.lstep-troubles__title .em {
  font-size: 1.2em;
  display: inline-block;
  margin-inline: 0.08em;
}
.bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.bubble {
  position: relative;
  border-radius: var(--bubble-radius);
  padding: 20px 24px;
  line-height: 1.55;
  font-weight: 700;
  color: #1e293b;
  background: var(--accent-2);
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 45%;
}
.bubble--light {
  background: var(--accent-1);
  color: #1e293b;
}
.bubble:after,
.bubble:before {
  content: '';
  position: absolute;
  left: 22px;
  bottom: -10px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  opacity: 0.9;
  background: inherit;
}
.bubble:after {
  left: 6px;
  bottom: -22px;
  opacity: 0.6;
}
@media (max-width: 900px) {
  .lstep-troubles__title .em {
    font-size: 1.6em;
    line-height: 1.2;
  }
  .lstep-troubles {
    background-size: cover;
    padding: 20px !important;
  }
  .lstep-troubles .container {
    padding: 0 0px 2em;
  }
  .bubble {
    flex-basis: 100%;
    min-width: unset;
    padding: 10px 0;
    font-size: 1em;
    justify-content: center;
    align-items: center;
  }
}

/* PC時（901px以上）：偶数番目を右 */
@media (min-width: 901px) {
  .bubble:nth-child(1):before,
  .bubble:nth-child(1):after,
  .bubble:nth-child(even):before,
  .bubble:nth-child(even):after {
    right: 22px;
    left: auto;
  }
  .bubble:nth-child(1):after,
  .bubble:nth-child(even):after {
    right: 6px;
    left: auto;
  }
}

/* SP時（900px以下）：奇数番目を右 */
@media (max-width: 900px) {
  .bubble:nth-child(5):before,
  .bubble:nth-child(5):after,
  .bubble:nth-child(even):before,
  .bubble:nth-child(even):after {
    right: 22px;
    left: auto;
  }
  .bubble:nth-child(5):after,
  .bubble:nth-child(even):after {
    right: 6px;
    left: auto;
  }
}
.award {
  position: relative;
  background-image: url(../img/award-bg.png);
  background-size: 335px;
  text-align: center;
  padding: 40px;
  overflow: hidden;
  z-index: 0; /* ベースを下げる */
}

.award img {
  max-width: 750px;
  margin: auto;
}

.solution {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}
.width-item {
  max-width: 500px;
}
.pb0 {
  padding-bottom: 0 !important;
}
.steps-flex {
  counter-reset: step;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}
.steps-flex .container {
  margin: 0 auto;
}

.step-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 56px 0;
  counter-increment: step;
  flex-wrap: nowrap;
}
.step-row:nth-child(even) {
  flex-direction: row-reverse;
}

.step-media {
  flex: 0 0 50%;
  margin: 0;
}
.step-media img {
  width: 100%;
  height: auto;
  display: block;
}

.step-body {
  flex: 1;
  min-width: 0;
}

.step-title {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin: 0 0 16px;
}
.step-label {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  color: #2d2d2d;
}
.step-no {
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  background: linear-gradient(to bottom, #b5e61d, #006400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.step-no::before {
  content: counter(step, decimal-leading-zero);
}
.step-title::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 18px solid #d4ea98;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-right: 6px;
}

.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(2, 6, 23, 0.06);
  overflow: hidden;
  padding: 0;
}
.card-head {
  background: linear-gradient(to bottom, #b5e61d, #4caf50, #006400);
  padding: 24px 28px;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  margin: 0;
}
.card-head__eyebrow {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #1a73e8;
  margin: 0 0 6px 0;
}
.card-head__title {
  margin: 0;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.35;
  color: #ffffff;
}

.card-body {
  padding: 24px 28px 26px;
}
.copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #0f172a;
}

@media (max-width: 960px) {
  .flex {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .step-no {
    color: #fff;
    background: linear-gradient(to bottom, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .step-label {
    color: #fff;
  }
  .step-title::before {
    display: none;
  }
  .award {
    padding: 20px;
  }
  .solution {
    padding: 0;
  }
  .step-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 1em;
    margin-bottom: 1em;
  }
  .step-row:nth-child(even) {
    flex-direction: column;
  }
  .flow60__container {
    padding: 20px 0 !important;
  }
  .step-media,
  .step-body {
    flex: none;
    width: 100%;
  }
  .card-head {
    padding: 20px;
  }
  .card-body {
    padding: 20px;
  }
  .card-head__title {
    text-align: center;
    color: yellow;
    font-size: 1.6em;
  }
  .card-body img {
    width: 70%;
    text-align: center;
    margin: auto;
  }
  .card-head::after {
    width: 40px;
  }
  .step-no {
    font-size: clamp(36px, 12vw, 64px);
  }
}
.flow60 {
  background: #fff;
}
.flow60__container {
  width: min(800px, 92vw);
  margin: 0 auto;
  padding: 48px 0px;
}
.flow60__header {
  text-align: center;
  margin-bottom: 28px;
}
.flow60__h2 {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.25;
  color: #0f172a;
}
.flow60__h2 span {
  color: #15a027;
}
.flow60__note {
  margin: 0;
  color: #64748b;
  font-size: 16px;
}

.flow60__timeline {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: stretch;
}
.flow60__rail {
  flex: 0 0 80px;
  position: relative;
}
.flow60__rail::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 22px;
  width: 6px;
  background: #a7de2a;
  border-radius: 6px;
}
.flow60__rail::after {
  content: '';
  position: absolute;
  left: 24px;
  bottom: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 18px solid #a7de2a;
}
.flow60__phase-label {
  position: sticky;
  top: 20px;
  right: -2.5em;
  margin-right: 8px;
  margin-left: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 700;
  color: #0f766e;
  letter-spacing: 0.1em;
  text-align: left;
}

.flow60__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: grid;
  gap: 18px;
}
.flow60__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.flow60__num {
  display: none;
}

.flow60__card {
  background: #fff;
  border: 1px solid #d1e7e2;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.06);
  overflow: hidden;
}
.flow60__title {
  margin: 0;
  padding: 18px 22px;
  background: linear-gradient(180deg, #eefbe0, #c3ff6e);
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.35;
  color: #0f172a;
  font-weight: 900;
  position: relative;
}

.flow60__text {
  margin: 0;
  padding: 18px 22px 22px;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.9;
}

.flow60__notice {
  margin-top: 28px;
  border: 2px solid #22c65f;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.05);
  padding: 18px 18px 22px;
}
.flow60__notice-pill {
  display: table;
  background: #22c65f;
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  padding: 10px 16px;
  margin: -6px auto 10px;
  text-align: center;
}
.flow60__notice-body {
  padding: 0 6px;
}
.flow60__notice-body p {
  margin: 8px 0 0;
  font-weight: 700;
  color: #0f172a;
}

/* モバイルもPCと同じレイアウトを維持（左レール固定） */
@media (max-width: 960px) {
  .flow60__timeline {
    flex-direction: row;
    gap: 12px;
    align-items: stretch;
  }
  .flow60__rail {
    flex: 0 0 60px;
    height: auto;
  }
  .flow60__rail::before {
    left: 28px;
    top: 0;
    bottom: 20px;
    width: 6px;
  }
  .flow60__rail::after {
    left: 20px;
    bottom: 0;
  }
  .flow60__phase-label {
    top: 12px;
    right: 0;
    margin-right: 6px;
    margin-left: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-align: left;
  }
  .flow60__list {
    gap: 16px;
  }
  .flow60__item {
    grid-template-columns: 1fr;
  }
  .flow60__title {
    padding: 16px 18px;
  }
  .flow60__text {
    padding: 16px 18px 18px;
  }
}
.flow60 .flow60__phase-label {
  position: absolute !important;
  top: 0;
  left: 40px !important;
  right: auto !important;
  margin: 0 !important;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 700;
  color: #238725;
  letter-spacing: 0.1em;
  z-index: 1;
}

@media (max-width: 960px) {
  .flow60__note {
    text-align: left;
  }
  .flow60 .flow60__phase-label {
    top: 0;
    left: 35px !important;
  }
}
.comparison-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 20px 0;
}
.image-comparison-container {
  width: 100%;
  overflow-x: auto;
}

.image-comparison-content {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .image-comparison-content {
    width: 130%;
    max-width: none;
  }
}
.dnt95 {
  position: relative;
  width: clamp(220px, 40vw, 360px);
  height: clamp(220px, 40vw, 360px);
  border-radius: 50%;
  background: conic-gradient(#22c55e 0 95%, transparent 95% 100%);
  display: grid;
  place-items: center;
  margin: auto;
}

.dnt95::after {
  content: '';
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: #fff;
}

.dnt95-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dnt95-center-img {
  width: 70%;
  height: auto;
  object-fit: contain;
}

.dnt95-note {
  display: grid;
  gap: 0.35rem;
  max-width: 960px;
  margin: 1rem auto 0;
  text-align: center;
}

.dnt95-note__meta {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

.dnt95-note__highlight {
  color: #0ea5e9;
  font-weight: 800;
}

.dnt95-note__years {
  margin: 0;
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.7;
}

@media (max-width: 520px) {
  .dnt95-note__years {
    font-size: 0.8rem;
    text-align: left;
  }
}

.vcs-section {
  padding: 2rem 1rem;
}

.vcs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.vcs-card {
  position: relative;
  background: #eefbe0;
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(66, 153, 57, 0.12);
}

.vcs-badge {
  display: grid;
  place-items: center;
  align-content: center;
  justify-content: start;
  justify-items: start;
}

.vcs-badge__role {
  font-size: 0.8rem;
  color: #10a34a;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 0rem;
}

.vcs-badge__age {
  font-size: 12px;
  color: #065f46;
  text-align: center;
  line-height: 1.2;
}

.vcs-head {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 0.75rem;
}

.vcs-figure {
  margin: 0;
  width: 140px;
  height: 140px;
  border-radius: 100px;
  background: #ffffff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.vcs-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vcs-title {
  display: grid;
  gap: 0.45rem;
}

.vcs-income {
  margin: 0;
  display: flex;
  align-items: baseline;
  color: #e0b400;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.vcs-income__label {
  font-size: 1.4rem;
  padding-top: 0.5em;
}

.vcs-income__value {
  font-size: 1.35rem;
  font-weight: 800;
  padding-bottom: 0.2rem;
}

.vcs-h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  color: #08421d;
}

.vcs-body {
  margin-top: 1rem;
}

.vcs-copy {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #0f3e28;
}

.vcs-note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: #4a7a5f;
  opacity: 0.8;
}
.vcs-footer-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  text-align: left;
}

@media (max-width: 960px) {
  .vcs-h3 {
    margin: 0;
    font-size: 20px;
  }

  .vcs-figure {
    width: 100px;
    height: 100px;
  }
  .vcs-head {
    gap: 0;
    grid-template-columns: 105px 1fr;
  }

  .vcs-list {
    grid-template-columns: 1fr;
  }
}

.sc-section {
  position: relative;
  background: #8fd36d;
  padding: 84px 16px 140px;
  overflow: hidden;
}
.sc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    60deg,
    rgba(255, 255, 255, 0.16) 0,
    rgba(255, 255, 255, 0.16) 1px,
    transparent 1px,
    transparent 9px
  );
  opacity: 0.5;
  pointer-events: none;
}
.sc-section::after {
  content: '';
  position: absolute;
  left: -8vw;
  right: -8vw;
  bottom: -90px;
  height: 180px;
  background: #097b2d;
  transform: skewY(-4deg);
}
.sc-container {
  max-width: 1120px;
  margin: 0 auto;
}
.sc-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  padding: 40px;
  position: relative;
}
.sc-text {
  flex: 1 1 520px;
}
.sc-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.6;
  color: #0a7f28;
  margin: 0 0 18px;
}
.sc-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #2b2b2b;
  margin: 0 0 14px;
}
.sc-visual {
  flex: 0 0 420px;
  display: grid;
  place-items: center;
}
.sc-img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}
@media (max-width: 960px) {
  .sc-card {
    flex-direction: column;
    padding: 28px;
  }
  .sc-visual {
    width: 100%;
  }
  .sc-title {
    font-size: 22px;
  }
}

.ls-sec {
  position: relative;
  background: #317d13;
  padding: 40px 16px 20px;
}

.ls-wrap {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.ls-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  padding: 48px;
}
.ls-title {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 800;
  line-height: 1.6;
  color: #0a7f28;
  margin: 0 0 20px;
  text-align: center;
}
.ls-card p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.9;
  color: #2b2b2b;
}

.ls-arrow {
  position: relative;
  background: url(../img/left.png) left 15% top / 220px auto no-repeat,
    url(../img/right.png) right 15% top / 220px auto no-repeat, #317d14;
  color: #fff;
  text-align: center;
  padding: 40px 20px 60px;
  margin-top: -1px;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 90px),
    50% 100%,
    0 calc(100% - 90px)
  );
}
.ls-arrow-title {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.7;
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 36px);
}
.ls-arrow-copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.95;
}

@media (max-width: 900px) {
  .ls-arrow {
    background: url(../img/left.png) left 20% bottom / 35% auto no-repeat,
      url(../img/right.png) right 20% bottom / 35% auto no-repeat, #317d14;
    padding: 0px 16px 70% !important;
  }
}
@media (max-width: 768px) {
  .ls-sec {
    padding: 20px;
  }
  .ls-card {
    padding: 20px;
  }

  .ls-arrow-title {
    padding: 0 20px;
    font-size: clamp(24px, 2.6vw, 36px);
  }
}
.apply-sec {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}
.apply-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.apply-title {
  text-align: center;
  font-weight: 800;
  margin-bottom: 50px;
  color: #0b3b42;
  font-size: clamp(24px, 2.6vw, 36px);
}
.apply-title span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-top: 6px;
  color: #2b8c86;
}
.apply-steps {
  position: relative;
}
.apply-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #2b8c86;
  left: 50%;
  transform: translateX(-50%);
}
.apply-step {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.apply-step:last-child {
  margin-bottom: 0;
}
.apply-step-marker {
  position: absolute;
  top: -14px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #2b8c86;
  background: #0f766e;
  width: 100px;
  color: #fff;
  padding: 0 5px;
  text-align: center;
  justify-content: center;
  border-radius: 3px;
  left: 50%;
  transform: translateX(-50%);
}

.apply-step-body {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 24px 28px;
  display: flex;
  flex-direction: row;
}
.apply-step-body div {
  padding: 20px;
}
.apply-step-head {
  font-size: 18px;
  font-weight: 700;
  color: #0b3b42;
  margin-bottom: 12px;
}
.apply-step p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
@media (max-width: 768px) {
  .apply-step-body div {
    padding: 0;
  }
  .apply-step-head {
    text-align: center;
  }
  .apply-step p {
    padding-bottom: 1em;
  }
  .apply-step-body div img {
    text-align: center;
    margin: auto;
    display: block;
  }
  .apply-sec {
    padding: 20px;
  }

  .apply-title span {
    font-size: 18px;
  }
  .apply-step-body {
    flex-direction: column-reverse;
  }

  .qa-item {
    padding: 20px;
  }
}
.section--alt {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}
.qa-item summary {
  position: relative;
  cursor: pointer;
  padding-right: 28px;
  list-style: none;
  line-height: 1.5;
  padding-bottom: 10px;
}
.qa-item summary::-webkit-details-marker {
  display: none;
}
.qa-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #2b8c86;
  transition: transform 0.3s, content 0.3s;
}
.qa-item[open] summary::after {
  content: '−';
}

.dt-section {
  background: #fff;
  padding: 40px 16px;
}
.dt-inner {
  max-width: 920px;
  margin: 0 auto;
}
.dt-title {
  text-align: center;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 800;
  margin: 0 0 20px;
  color: #111;
}
.dt-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border: 1px solid #e5e5e5;
  border-top: none;
}
.dt-row:first-of-type {
  border-top: 1px solid #e5e5e5;
}
.dt-head {
  background: #2b8c86;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
}
.dt-body {
  background: #fff;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1.8;
  color: #222;
}
.dt-price {
  color: #e53935;
  font-weight: 700;
}
.dt-note {
  color: #777;
  font-size: 12px;
}
@media (max-width: 768px) {
  .dt-row {
    grid-template-columns: 1fr;
  }
  .dt-head {
    justify-content: flex-start;
    text-align: left;
    font-size: 13px;
    padding: 10px 12px;
  }
  .dt-body {
    font-size: 13px;
    padding: 12px 14px;
  }
}

#footer {
  margin: 0;
  padding: 30px 20px;
  font-size: 80%;
  line-height: 150%;
  text-align: center;
  color: #fff;
  background: #00031f;
}

@media screen and (min-width: 769px) {
  #footer {
    margin: 0px 0 0 0;
    padding: 30px 20px;
    font-size: 12px;
  }
}

.fsl-section {
  background: #eef6e6;
  padding: 48px 16px 64px;
}
.fsl-wrap {
  max-width: 1080px;
  margin: 0 auto;
}
.fsl-title {
  text-align: center;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 800;
  color: #1f2d27;
  margin: 0 0 24px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 28px;
  line-height: 1.2;
}
.fsl-title::before,
.fsl-title::after {
  content: '//';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: #6bc17e;
  letter-spacing: 2px;
}
.fsl-title::before {
  left: -6px;
  content: '\\\\';
}
.fsl-title::after {
  right: -6px;
}

.fsl-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fsl-item {
  margin: 0;
}

.fsl-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(180deg, #fff 0%, #f6fbf2 100%);
  border-radius: 16px;
  padding: 18px 18px 18px 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-direction: column;
}

.fsl-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.fsl-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #7ad17e;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.fsl-media {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.fsl-media img {
  max-width: 100px;
  max-height: 100px;
  display: block;
}

.fsl-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fsl-name {
  font-size: 16px;
  font-weight: 800;
  color: #2f9e5d;
  text-align: center;
}
.fsl-cta {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: #2f9e5d;
  border-radius: 20px;
  text-align: center;
  width: 200px;
  padding: 5px 10px;
}

@media (max-width: 900px) {
  .fsl-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .fsl-link {
    padding: 16px;
  }
  .fsl-media {
    flex-basis: 64px;
    width: auto;
    height: 64px;
  }
  .fsl-name {
    font-size: 15px;
  }
  .fsl-cta {
    font-size: 13px;
  }
}

.bh3-header * {
  box-sizing: border-box;
}
.bh3-header {
  overflow-x: hidden;
}

.bh3-site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.bh3-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.bh3-brand img {
  display: block;
  height: auto;
}

.bh3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.bh3-btn--orange {
  background: #ff7300;
  color: #fff !important;
  box-shadow: 0 8px 16px rgba(255, 115, 0, 0.25);
  width: 150px;
  border-radius: 40px;
}
.bh3-btn--blue {
  color: #fff;
  box-shadow: 0 5px 2px rgba(255, 106, 0, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.35);
  background: linear-gradient(180deg, #ff8a2b 0%, #ff6a00 100%);
}

.bh3-mobile-cta {
  display: none;
}

.bh3-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.bh3-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 44px;
  border: 0;
  background: transparent;
}
.bh3-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: 0.25s;
}
.bh3-toggle span:nth-child(1) {
  top: 12px;
}
.bh3-toggle span:nth-child(2) {
  top: 21px;
}
.bh3-toggle span:nth-child(3) {
  top: 30px;
}
.bh3-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.bh3-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.bh3-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.bh3-panel {
  display: flex;
  align-items: center;
  gap: 28px;
}
.bh3-drawer-head,
.bh3-drawer-ctas {
  display: none;
}

.bh3-list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.bh3-list > li > a {
  color: #162636;
  text-decoration: none;
  font-weight: 700;
  padding: 8px 0;
}
.bh3-list > li > a:hover {
  opacity: 0.75;
}
.bh3-li-cta {
  margin-left: 8px;
}

/* overlay */
.bh3-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  z-index: 59;
}

/* ====== mobile ====== */
@media (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
  }
  .bh3-inner {
    justify-content: space-between;
    padding: 0px 5px;
    gap: 5px;
  }
  .bh3-mobile-cta {
    display: inline-flex;
    max-width: 200px;
    width: 33%;
  }
  .bh3-nav {
    margin-left: 0;
  }
  .bh3-toggle {
    display: inline-block;
  }

  /* drawer */
  .bh3-panel {
    position: fixed;
    top: 12px;
    right: 12px;
    bottom: 12px;
    width: min(92vw, 520px);
    background: #b5d9d7;
    border-radius: 22px;
    padding: 18px;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateX(calc(100% + 12px));
    transition: transform 0.25s ease;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  }
  .bh3-nav.is-open .bh3-panel {
    transform: translateX(0);
  }
  .bh3-nav.is-open ~ .bh3-overlay,
  .bh3-nav.is-open .bh3-overlay {
    opacity: 1;
    visibility: visible;
  }

  .bh3-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 4px;
  }
  .bh3-close {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    font-size: 24px;
    line-height: 44px;
  }

  .bh3-list {
    flex-direction: column;
    gap: 14px;
  }
  .bh3-list > li {
    width: 100%;
  }
  .bh3-list > li > a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #eef5fa;
    border-radius: 16px;
    padding: 18px 16px;
    font-weight: 800;
    color: #0b233a;
  }
  .bh3-list > li > a::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    opacity: 0.65;
  }
  .bh3-li-cta {
    display: none;
  }

  .bh3-drawer-ctas {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .bh3-drawer-ctas .bh3-btn {
    border-radius: 14px;
    padding: 18px;
    width: 100%;
  }
}

/* 追従（固定）化 */
.bh3-site-header,
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  width: 100%;
}

/* コンテンツのズレ防止（ヘッダー高さに合わせて調整） */
html,
body {
  overflow-x: hidden;
}
body {
  padding-top: 64px;
}

/* モバイルのドロワーをヘッダー下から表示 */
@media (max-width: 1024px) {
  .bh3-panel {
    top: calc(64px + 12px);
    bottom: 12px;
  }
}

.cjp-fv-section {
  padding: 0 20px 20px;
  background-color: #fff;
}

.cjp-fv-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 64px);
  margin-left: -4em;
}

.cjp-fv-left {
  flex: 1 130%;
  padding: 0 40px;
}

.cjp-fv-right {
  flex: 1 1 520px;
}

.cjp-fv-titleimg {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 16px 0;
}

.cjp-fv-textimg {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 28px 0;
}

.cjp-fv-button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  background-color: #111827;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.18);
}

.cjp-fv-visual {
  display: block;
}

@media (max-width: 1024px) {
  .cjp-fv-container {
    flex-direction: column;
  }
  .cjp-fv-left,
  .cjp-fv-right {
    max-width: 100%;
  }
  .cjp-fv-right {
    width: 100%;
  }
}

.top-bg {
  background-image: url(../img/top_bg.png);
  background-size: 100% 100%;
}

.btn-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 16px 40px;
}

.cta-stack {
  text-align: center;
  position: relative;
}

.btn {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  min-height: 88px;
  padding: 28px 72px 22px 24px;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  overflow: visible;
  background: linear-gradient(180deg, #ff8a2b 0%, #ff6a00 100%);
  color: #fff;
  box-shadow: 0 5px 5px rgba(255, 106, 0, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.35);
}

.btn::after {
  content: '';
  position: absolute;
  right: 24px;
  width: 12px;
  height: 12px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}

.btn-pill {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0px 16px;
  background: #ffffff;
  border: 2px solid #ff6a00;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  color: #2f2f2f;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 80%;
}

.btn-label {
  font-size: clamp(18px, 3.2vw, 28px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: #fff;
}

.note-spotcons-section {
  padding-top: 8px;
}

.note-spotcons-text {
  margin: 6px 0 0;
  font-size: clamp(10px, 1.2vw, 12px);
  line-height: 1.6;
  color: #64748b;
  letter-spacing: 0.02em;
  text-align: center;
}
.cjp-fv-right {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cjp-fv-right .cjp-fv-visual {
  width: 260%;
  max-width: 600px;
  margin-left: -5em;
}
.lpb-bubble-block {
  width: 80%;
  max-width: 600px;
  margin: 0px auto 15px;
}

.lpb-bubble-table {
  width: 100%;
  border-collapse: collapse;
  background: #fffef4;
  border: 2px solid #80c61b;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  margin: 0;
}

.lpb-bubble-table::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #80c61b;
}

.lpb-bubble-table::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #80c61b;
}

.lpb-bubble-table th,
.lpb-bubble-table td {
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.lpb-bubble-table th {
  font-weight: 700;
  color: #18521b;
  white-space: nowrap;
  width: 50%;
  border-right: 1px dotted #80c61b;
}

.lpb-bubble-table tr + tr th,
.lpb-bubble-table tr + tr td {
  border-top: 1px dotted #86c2be;
}

.lpb-bubble-table td {
  font-weight: 800;
  color: #31aa34;
  font-size: 1.2em;
}

.lpb-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 600px) {
  .lpb-bubble-block {
    max-width: 96%;
    margin-top: 0;
  }
  .lpb-bubble-table th,
  .lpb-bubble-table td {
    font-size: 16px;
    padding: 10px 12px;
  }
  .lpb-cta-wrap {
    margin-top: 24px;
  }
}
.lpb-bubble-table th {
  background: #e3ecd6;
  color: #444444;
}

.bgg {
  background: #edf6e6;
}

.rating {
  margin-top: 2em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    sans-serif;
  justify-content: center;
  background: #eefbe0;
  color: #e0b421;
  font-weight: bold;
  border-radius: 34px;
}
.score {
  font-weight: 700;
}
.stars {
  --value: 4.8;
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.stars::before {
  content: '★★★★★';
  color: #eaf7dc;
}
.stars::after {
  content: '★★★★★';
  position: absolute;
  inset: 0;
  width: calc(var(--value) / 5.1 * 100%);
  background: linear-gradient(to bottom, #e0b421, #e0b421);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  overflow: hidden;
}
.ls-spp {
  display: flex;
}
.ls-spp div {
  width: 50%;
}
@media (max-width: 600px) {
  .ls-spp {
    flex-direction: column;
  }
  .ls-spp div {
    width: 100%;
  }
}
.top-pcnone {
  display: none;
}
.pcnone {
  display: none !important;
}
.spnone {
  display: block !important;
}
.spbr {
  display: none;
}
@media (max-width: 960px) {
  .pcnone {
    display: block !important;
  }
  .spnone {
    display: none !important;
  }
  .spbr {
    display: block !important;
  }
}
@media (max-width: 1250px) {
  .credentials {
    padding-top: 4em;
  }
  .cjp-fv-titleimg {
    margin: 0;
  }
  .top-bg {
    width: 100%;
    height: auto;
    background-image: url('../img/top_bg_top-sp.png'),
      url('../img/top_bg_bottom-sp.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top center, bottom center;
    background-size: 100% auto, 100% auto;
  }
  .cjp-fv-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 5vw, 64px);
    margin-left: 0;
    flex-direction: column;
  }
  .cjp-fv-left {
    flex: 1 100%;
    padding: 0;
  }
  .cjp-fv-right {
    display: none;
  }
  .top-pcnone {
    display: block !important;
  }
  .cjp-fv-visual-sp {
    width: 80%;
    margin: auto;
    text-align: center;
  }
  .cjp-fv-visual-sp {
    background-image: url(../img/bg-ch.png);
    background-size: 100%;
    background-repeat: none;
  }
  .btn-container {
    padding: 20px 0;
  }
  .btn {
    width: 95%;
  }
}

.timeline {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d1e7e2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 24px;
  margin-bottom: 40px;
}

.timeline-body {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-direction: row-reverse;
}

.timeline-left {
  flex: 1;
  width: 100%;
}

.timeline-right {
  flex: 0 0 240px; /* 右は固定幅イメージ */
}
.timeline-right img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-width: 200px;
  margin: auto;
}

/* アイコン・時間 */
.timeline-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-time {
  font-size: 15px;
  font-weight: 700;
  color: #22c65f;
}

.timeline-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  background: linear-gradient(90deg, #e8ffe2, #c8ffc2);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  width: 100%;
}

.timeline-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
}

.timeline-arrow {
  text-align: center;
  font-size: 20px;
  color: #22c65f;
  margin: -12px 0 28px;
}

@media (max-width: 768px) {
  .timeline-body {
    flex-direction: column-reverse;
    gap: 0 !important;
  }
  .timeline-right {
    flex: unset;
    text-align: center;
    margin: auto;
  }
}

.first {
  color: gold;
}

.second {
  color: silver;
}

.third {
  color: #cd7f32;
}

.info_ad {
  line-height: 1;
}
