/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --c-primary:       #2f8ca3;
  --c-primary-light: #d5e7eb;
  --c-primary-pale:  #c3dadc;
  --c-primary-faint: #dbe9ea;
  --c-primary-muted: #9dc5cd;
  --c-primary-subtle:#b7d4da;
  --c-accent:        #ff6741;
  --c-accent-dark:   #ff383b;
  --c-accent-light:  #ff8567;
  --c-accent-pale:   #fdd4ca;
  --c-fv-bg:         #b6d7e0;
  --c-text:          #222;
  --c-white:         #fff;

  --f-ja:  'Zen Kaku Gothic New', sans-serif;
  --f-en:  'Brandon Grotesque', 'Arial Black', sans-serif;
  --f-qa:  'Belanosima', sans-serif;

  --grad-btn: linear-gradient(90deg, #ff383b 0%, #ff6741 100%);
  --grad-badge: linear-gradient(90deg, #ff6541 0%, #000 49.5%, #006e89 100%);

  --r-card-sp: 14px;
  --r-card-pc: 24px;

  --inner-max: 1080px;
  --pad-sp: 16px;
  --pad-pc: 100px;   /* 1440px side margin */
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-ja);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul, ol { list-style: none; }

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

/* ============================================================
   UTILITY
   ============================================================ */
.sp-only { display: block; }
.pc-only { display: none; }

@media (min-width: 768px) {
  .sp-only { display: none; }
  .pc-only { display: block; }
}

/* Inner container */
.fv-inner,
.experience-inner,
.nayami-inner,
.merit-inner,
.system-inner,
.flow-inner,
.request-inner,
.qa-inner,
.close-cta-inner,
.footer-inner {
  width: 100%;
  max-width: calc(var(--inner-max) + var(--pad-sp) * 2);
  margin: 0 auto;
  padding: 0 var(--pad-sp);
}

@media (min-width: 768px) {
  .fv-inner,
  .experience-inner,
  .nayami-inner,
  .merit-inner,
  .system-inner,
  .flow-inner,
  .request-inner,
  .qa-inner,
  .close-cta-inner,
  .footer-inner {
    max-width: 1440px;
    padding: 0 var(--pad-pc);
  }
}

@media (min-width: 1440px) {
  .fv-inner,
  .experience-inner,
  .nayami-inner,
  .merit-inner,
  .system-inner,
  .flow-inner,
  .request-inner,
  .qa-inner,
  .close-cta-inner,
  .footer-inner {
    max-width: 1920px;
    padding: 0;
  }

  /* At 1920px: content centred at 1080px via inner wrapper */
  .nayami-inner,
  .experience-inner,
  .merit-inner,
  .system-inner,
  .flow-inner,
  .request-inner,
  .qa-inner,
  .close-cta-inner {
    max-width: 1920px;
    padding: 0 calc((1920px - var(--inner-max)) / 5);
  }

  .footer-inner {
    max-width: 1920px;
    padding: 0 calc((1920px - var(--inner-max)) / 2);
  }

  .fv-inner {
    max-width: 1920px;
    padding: 0 calc((1920px - var(--inner-max)) / 4);
  }
}

/* ============================================================
   SECTION TITLE
   ============================================================ */
.section-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  position: relative;
  padding-bottom: 20px;
}

.section-title--white { color: var(--c-white); }

.title-line {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 93px; /* two 46.5px segments */
  height: 8px;
}

.title-line::before,
.title-line::after {
  content: '';
  position: absolute;
  top: 0;
  width: 46.5px;
  height: 8px;
}

.title-line::before {
  left: 0;
  background: var(--c-primary);
}

.title-line::after {
  right: 0;
  background: var(--c-accent);
}

/* Teal variant (for teal-bg sections) */
.title-line--teal-muted::before {
  background: var(--c-primary-muted);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
    padding-bottom: 30px;
  }

  .title-line {
    width: 120px;
    height: 12px;
  }

  .title-line::before,
  .title-line::after {
    width: 60px;
    height: 12px;
  }
}

/* ============================================================
   BUTTON
   ============================================================ */
.btn-primary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--grad-btn);
  color: var(--c-white);
  font-family: var(--f-ja);
  font-weight: 700;
  border-radius: 47px;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
}

.btn-primary::before{
  position: absolute;
  content: "";
  background: url(./images/btn-arrow.svg) no-repeat;
  background-size: 100%;
  width: 27px;
  height: 27px;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

.btn-banner{
  transition: opacity 0.2s;
}

.btn-primary:hover,
.btn-banner:hover{ 
  opacity: 0.85; 
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--pad-sp);
  max-width: 1920px;
  margin: 0 auto;
}

.header-logo img {
  height: 28px;
  width: auto;
}

.btn-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 12px;
  background: var(--grad-btn);
  color: var(--c-white);
  font-family: var(--f-ja);
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

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

@media (min-width: 768px) {
  .header-inner {
    padding: 14px 4%;
  }

  .header-logo img {
    height: 52px;
  }

  .btn-header {
    height: 64px;
    padding: 0 24px;
    font-size: 20px;
    border-radius: 12px;
  }
}

@media (min-width: 1440px) {
  .header-inner {
    padding: 14px calc((1920px - var(--inner-max)) / 10);
  }
}

/* ============================================================
   FV
   ============================================================ */
.fv {
  position: relative;
  background-color: var(--c-fv-bg);
  background-image: url('./images/fv_bg_sp_01.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  min-height: 560px;
  padding-top: 76px; /* header height */
}

.fv-inner {
  padding-top: 110px;
  padding-bottom: 24px;
}

.fv-text {
  position: relative;
  z-index: 1;
}
.fv-text-content{
  display: contents;
}

.fv-headline {
  display: inline-block;
  background: var(--c-white);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  padding: 2px 4px;
  margin-bottom: 6px;
}

.fv-badge-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.fv-badge {
  display: inline-block;
  background: var(--grad-badge);
  color: var(--c-white);
  font-size: 30px;
  font-weight: 700;
  padding: 0px 8px;
  letter-spacing: 2px;
  line-height: 1.3;
}

.fv-badge-sub {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
}

.fv-subtext {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  margin-top: 6px;
  line-height: 1.6;
  max-width: 340px;
}

/* FV icons */
.fv-icons {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.fv-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.fv-icon-circle {
  padding-top: 10px;
  position: relative;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  gap: 6px;
}

.fv-icon-circle::before {
  position: absolute;
  content: "";
  background-image: url(./images/fv_icon_line.svg);
  background-size: 100% 100%;
  width: 95%;
  height: 95%;
  top: 2%;
}
.fv-icon-circle img {
  width: 28%;
  height: 28%;
  object-fit: contain;
}

.fv-icon-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-primary);
  text-align: center;
  line-height: 1.3;
}

/* FV button */
.btn-fv {
  width: 100%;
  height: 60px;
  font-size: 20px;
}

@media (min-width: 768px) {
  .fv {
    background-image: url('images/fv-bg-pc.jpg');
    min-height: 810px;
  }

  .fv-inner {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .fv-headline {
    font-size: 65px;
    padding: 4px 8px;
  }

  .fv-badge {
    font-size: 40px;
    padding: 6px 12px;
  }

  .fv-badge-sub {
    font-size: 24px;
  }

  .fv-subtext {
    font-size: 24px;
    max-width: 550px;
  }

  .fv-icons {
    gap: 0;
    max-width: 530px;
  }

  .fv-icon-circle {
    width: 140px;
    height: 140px;
    gap: 8px;
  }

  .fv-icon-label {
    font-size: 18px;
  }

  .btn-fv {
    height: 80px;
    font-size: 30px;
    max-width: 530px;
  }
}

@media (min-width: 1440px) {
  .fv {
    background-image: url('images/fv-bg-pc.jpg');
    background-size: cover;
  }

  /* PC1920: background extends but FV bg is positioned relative to content area */
  .fv::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--c-fv-bg);
    z-index: -2;
  }

  .fv-text-content{
    display: inline-flex;
    flex-direction: column;
  }
}

/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience {
  background: var(--c-white);
  padding: 24px 0;
  position: relative;
}

.experience-inner {
  position: relative;
}

.experience-deco {
  width: 100%;
  overflow: hidden;
}

.experience-deco-img {
  width: 100%;
  height: auto;
}

.experience-box {
  border-radius: var(--r-card-sp);
  padding: 16px 16px;
  background: var(--c-white);
  position: relative;
}

.experience-box::before {
  position: absolute;
  content: "";
  background: url(./images/experience-box_wrap.svg)no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  top: 0;
  right: 50%;
  transform: translateX(50%);
}

  .experience-text {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  color: var(--c-text);
}

.experience-record {
  width: 100%;
  margin-top: 6px;
}

.experience-record img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .experience {
    padding: 80px 0;
  }

  .experience-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .experience-deco {
    width: 100%;
    align-self: end;
    margin-top: -10px;
  }

  .experience-box-warp{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .experience-box {
    border-radius: 20px;
    padding: 24px 16px;
    width: 100%;
    align-self: flex-end;
    margin-right: 0;
    position: relative;
    z-index: 1;
  }

  .experience-text {
    font-size: clamp(14px, 2vw, 51px);
    line-height: 1.5;
  }

  .experience-record {
    width: 100%;
    align-self: flex-end;
  }
}

/* ============================================================
   NAYAMI
   ============================================================ */
.nayami {
  background: var(--c-primary-light);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.nayami-card {
  background: var(--c-white);
  border-radius: var(--r-card-sp);
  padding: 24px 16px 32px;
}

.nayami-card .section-title {
  text-align: center;
  margin-bottom: 32px;
}

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

@media (min-width: 768px) {
  .nayami {
    padding: 60px 0;
    background: url(./images/nayami-bg-pc.svg)no-repeat;
    background-size: 100% 100%;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
  }

  .nayami-card {
    border-radius: var(--r-card-pc);
    padding: 48px 80px 60px;
  }

  .nayami-card .section-title {
    margin-bottom: 50px;
  }
}

/* ============================================================
   MERIT
   ============================================================ */
.merit {
  background: var(--c-primary);
  padding: 40px 0;
}

.merit-inner .section-title {
  margin-bottom: 48px;
}

.merit-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.merit-card {
  background: var(--c-white);
  border-radius: var(--r-card-sp);
  padding: 40px 19px 24px;
  position: relative;
  text-align: center;
}

.merit-num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -60%);
  font-family: var(--f-ja);
  font-weight: 700;
  font-size: 64px;
  color: var(--c-primary-subtle);
  line-height: 1;
  pointer-events: none;
}

.merit-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-text);
}

.merit-card-img {
  width: 230px;
  margin: 10px auto 16px;
}

.merit-card-img img {
  width: 100%;
  height: auto;
}

.merit-card-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.75;
  text-align: left;
}

@media (min-width: 768px) {
  .merit {
    padding: 80px 0 100px;
  }

  .merit-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto 1fr;
    gap: 0px 20px;
  }

  .merit-item {
    grid-row: span 3;
    display: grid;
    grid-template-rows: subgrid;
  }

  .merit-card {
    grid-row: span 3;
    display: grid;
    grid-template-rows: subgrid;
    border-radius: var(--r-card-pc);
    padding: 34px 24px 30px;
  }

  .merit-card-title {
    font-size: 24px;
  }

  .merit-card-img {
    width: 100%;
    margin-bottom: 20px;
  }

  .merit-card-img img { height: 120px; object-fit: contain; }

  .merit-card-text {
    font-size: 18px;
    line-height: 1.78;
  }
}

/* ============================================================
   SYSTEM
   ============================================================ */
.system {
  padding: 40px 0;
  background: var(--c-white);
}

.system-inner .section-title {
  margin-bottom: 24px;
}

/* Cards */
.system-card {
  border-radius: var(--r-card-sp);
  overflow: hidden;
}
.system-card:first-of-type{
  margin-bottom: 40px;
}

.system-card--board {
  background: var(--c-primary);
}

.system-card--employee {
  background: var(--c-primary-pale);
}

.system-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 20px;
}

.system-card-header--employee {
  flex-wrap: wrap;
}

.system-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.system-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-white);
}

.system-card-title--dark {
  color: var(--c-text);
}

.system-badge-optional {
  display: inline-block;
  background: var(--c-white);
  color: var(--c-primary);
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  padding: 2px 10px;
}

.system-card-body {
  background: var(--c-white);
  padding: 16px 16px 24px;
  margin: 0 8px 8px;
  border-radius: 0 0 10px 10px;
}

.system-card--employee .system-card-body {
  background: var(--c-white);
}

.system-description{
  text-align: center;
}

.system-description-text {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--c-text);
  margin-bottom: 16px;
}

.system-description-text::before {
  position: absolute;
  content: "";
  border-left: solid var(--c-primary) 3px;
  bottom: 0;
  left: -8%;
  width: 3px;
  height: 100%;
  transform: rotate(-30deg);
}

.system-description-text.employee::before {
  left: -10%;
  height: 70%;
  transform: rotate(-20deg);
}

.system-description-text::after {
  position: absolute;
  content: "";
  border-right: solid var(--c-primary) 3px;
  bottom: 0;
  right: -8%;
  width: 3px;
  height: 100%;
  transform: rotate(30deg);
}

.system-description-text.employee::after {
  right: -13%;
  height: 70%;
  transform: rotate(20deg);
}

.system-description--dark {
  color: var(--c-text);
}
@media (min-width: 768px) {
  .system-description-text.employee{
    display: inline-block;
  }

  .system-description-text.employee::before {
    left: -2%;
    height: 100%;
  }
  .system-description-text.employee::after {
    right: -2%;
    height: 100%;
  }
}

/* Example label */
.system-example-label {
  position: relative;
  background: var(--c-primary-faint);
  border-radius: 36px;
  padding: 10px 20px;
  margin: 8px auto 20px;
}

.system-example-label::before {
  content: '';
  position: absolute;
  bottom: -20px; 
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 20px 16px 0 16px; 
  border-color: #d6e8ef transparent transparent transparent;
}

.system-example-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-primary);
  text-align: center;
  line-height: 1.6;
}

.system-example-text--dark {
  color: var(--c-primary);
}

/* Chart */
.system-chart-wrap {
  display: grid;
  grid-template-columns: 1fr 34%;
  margin-top: 28px;
}

.system-chart-img{
  width: 100%;
  height: auto;
}

.chart-notes {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  gap: 11%;
  flex: 1;
}

.chart-notes.em {
  gap: 0;
}

.chart-note {
  font-size: 14px;
  line-height: 1.6;
  position: relative;
}

.chart-note::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chart-note--orange {
  color: var(--c-accent);
  font-weight: 700;
}

.chart-note--gray {
  color: var(--c-text);
  font-weight: 500;
}

.chart-note-sub {
  display: block;
  font-weight: 500;
  font-size: 13px;
}

/* Point badge */
.system-point-badge {
  background: var(--c-accent-light);
  border-radius: 56px;
  padding: 14px 20px;
  margin-top: 20px;
  text-align: center;
}

.system-point-badge p {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .system {
    padding: 80px 0 100px;
  }

  .system-chart-wrap{
    display: contents;
  }
  .system-card {
    border-radius: var(--r-card-pc);
    margin-bottom: 60px;
  }

  .system-card-header {
    padding: 24px 40px;
    gap: 16px;
  }

  .system-icon {
    width: 48px;
    height: 48px;
  }

  .system-card-title {
    font-size: 28px;
  }

  .system-badge-optional {
    font-size: 20px;
    padding: 4px 16px;
  }

  .system-card-body {
    padding: 32px 34px 40px;
    margin: 0 16px 16px;
    border-radius: 0 0 16px 16px;
    display: flex;
    flex-direction: column;
    column-gap: 0px;
    row-gap: 16px;
  }

  .system-description,
  .system-example-label {
    grid-column: 1 / -1;
  }

  .system-card--board .system-chart {
    grid-row: span 2;
  }

  .system-description {
    font-size: 16px;
  }

  .system-example-label {
    padding: 10px 40px;
    width: 100%;
  }

  .system-example-text {
    font-size: 20px;
  }

  .chart-notes{
    display: none;
  }

}

/* ============================================================
   FLOW
   ============================================================ */
.flow {
  background: var(--c-primary);
  padding: 60px 0 40px;
}

.flow-inner .section-title {
  margin-bottom: 48px;
}

.flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  position: relative;
}

/* Arrow between items (SP) */
.flow-item:not(.flow-item--last)::after {
  content: '';
  display: block;
  width: 23px;
  height: 46px;
  background: url("./images/flow-next-step.svg") center/contain no-repeat;
  margin: 8px auto;
  opacity: 0.6;
}

.flow-icon {
  width: 199px;
  height: 199px;
  border-radius: 50%;
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  margin-bottom: 16px;
}

.flow-icon img {
  width: 111px;
  height: 111px;
  object-fit: contain;
}

.flow-card {
  border: 1px solid var(--c-white);
  border-radius: 18px;
  padding: 12px 20px 20px;
  width: 100%;
  max-width: 343px;
}

.flow-card-flex{
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.flow-step {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.flow-step-label {
  font-family: var(--f-ja);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-white);
  letter-spacing: 0.05em;
}

.flow-step-num {
  font-family: var(--f-ja);
  font-weight: 700;
  font-size: 36px;
  color: var(--c-white);
  line-height: 1;
}

.flow-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-white);
}

.flow-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.flow-card-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .flow {
    padding: 80px 0 100px;
  }

  .flow-list {
    gap: 20px;
  }

  .flow-item {
    position: relative;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-bottom: 0;
  }
    
  .flow-item::before {
    content: '';
    position: absolute;
    bottom: 50%;
    left: 161px;
    transform: translateY(36%) rotate(-90deg);
    border-style: solid;
    border-width: 24px 14px 0 14px;
    border-color: #fff transparent transparent transparent;
  }

  .flow-list .flow-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    bottom: 50%;
    left: 211px;
    margin: 0;
    opacity: 1;
    transform: translateY(32%);
  }

  /* .flow-item:not(.flow-item--last)::after {
    display: none;
  } */

  .flow-icon {
    width: 170px;
    height: 170px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .flow-icon img {
    width: 96px;
    height: 96px;
  }

  .flow-card {
    max-width: unset;
    flex: 1;
    padding: 28px 40px;
  }

  .flow-step-label {
    font-size: 24px;
  }

  .flow-step-num {
    font-size: 50px;
  }

  .flow-card-title {
    font-size: 24px;
  }

  .flow-card-text {
    font-size: 18px;
  }

  /* Vertical line on left side (PC) */
  .flow-list {
    position: relative;
    padding-left: 0;
  }

  .flow-list::before {
    content: '';
    position: absolute;
    left: 212px; 
    top: 0;
    bottom: 0;
    width: 18px;
    background: rgb(255 255 255 / 46%);
    z-index: 0;
  }

  .flow-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    position: relative;
    z-index: 1;
  }
}

/* ============================================================
   REQUEST
   ============================================================ */
.request {
  background: var(--c-white);
  padding: 40px 0;
}

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

.request-img-01{
  margin-top: 18px;
}

.request-img-02{
  margin-top: 10px;
}

@media (min-width: 768px) {
  .request-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
  }

  .request {
    padding: 60px 0;
  }
  
  .request-bnr{
    display: block;
    margin-inline: auto;
    max-width: 700px;
  }

  .request-img-01,
  .request-img-02{
    margin-top: 0;
  }
}

/* ============================================================
   QA
   ============================================================ */
.qa {
  background: var(--c-primary-light);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.qa-inner .section-title {
  margin-bottom: 24px;
}

.qa-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qa-item {
  background: var(--c-white);
  border-radius: var(--r-card-sp);
  padding: 24px 24px 24px;
}

.qa-question,
.qa-answer {
  display: flex;
  gap: 16px;
}

.qa-question {
  margin-bottom: 16px;
  align-items: center;
}

.qa-answer {
  align-items: center;
}

.qa-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: var(--f-qa);
  font-size: 26px;
  flex-shrink: 0;
  color: var(--c-white);
}

.qa-badge--q {
  background: var(--c-primary);
}

.qa-badge--a {
  background: var(--c-accent);
}

.qa-question-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.6;
  padding-top: 4px;
}

.qa-answer-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text);
  line-height: unset;
}

@media (min-width: 768px) {
  .qa {
    padding: 80px 0 100px;
    background: url(./images/qa-bg-pc.svg) no-repeat;
    background-size: 100% 100%;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
  }

  .qa-item {
    border-radius: var(--r-card-pc);
    padding: 36px 40px;
  }

  .qa-question {
    margin-bottom: 24px;
  }

  .qa-badge {
    width: 66px;
    height: 66px;
    font-size: 39px;
  }

  .qa-question-text {
    font-size: 24px;
  }

  .qa-answer-text {
    font-size: 18px;
  }
}

/* ============================================================
   CLOSE CTA
   ============================================================ */
.close-cta {
  background: var(--c-white);
  padding: 0 0 60px;
}

.close-cta-inner {
  text-align: center;
  padding-top: 40px;
}

.close-chars {
  display: flex;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.close-char {
  width: 140px;
  height: auto;
}

.close-title {
  position: relative;
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.4;
  padding: 0 4px;
  margin: 16px auto;
  background-color: var(--c-accent-pale);
}

.close-title-underline {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 34px;
  background: var(--c-accent-pale);
  z-index: -1;
}

.close-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 16px;
  line-height: 2;
}

.btn-close {
  width: 100%;
  max-width: 343px;
  height: 60px;
  font-size: 20px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .close-cta {
    padding: 0 0 80px;
  }
  .close-cta-inner {
    display: grid;
    grid-template-columns: 22% 1fr 22%;
    align-items: end;
    column-gap: 7px;
  }

  .close-chars {
    display: contents;
  }

  .close-chars .close-char:first-child {
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: end;
  }

  .close-chars .close-char:last-child {
    grid-column: 3;
    grid-row: 1 / 4;
    align-self: end;
  }

  .close-char {
    width: 255px;
  }

  .close-title {
    grid-column: 2;
    grid-row: 1;
    font-size: clamp(36px, 3vw, 56px);
  }
  
  .close-subtitle {
    grid-column: 2;
    grid-row: 2;
    font-size: clamp(22px, 2vw, 44px);
  }
  
  .btn-close {
    grid-column: 2;
    grid-row: 3;
    max-width: unset;
    height: 94px;
    font-size: clamp(26px, 2vw, 44px);
    justify-self: center;
    width: 100%;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-primary);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.footer-logo img {
  height: 37px;
  width: auto;
}

.footer-copy {
  font-size: 13px;
  color: var(--c-white);
  text-align: center;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 40px 0;
  }

  .footer-logo img {
    height: 50px;
  }
}

/* ============================================================
   MAIN padding-top (fixed header compensation)
   ============================================================ */
main {
  padding-top: 60px; /* SP header height */
}

.fv {
  margin-top: -60px; /* cancel main padding so FV goes under header */
  padding-top: 60px;
}

@media (min-width: 768px) {
  main {
    padding-top: 92px;
  }

  .fv {
    margin-top: -92px;
    padding-top: 92px;
  }
}
