@charset "UTF-8";
/* ============================================ */
/* about/aftersupport 専用スタイル                      */
/* ============================================ */
/* ヒーローエリア（about/aftersupport: 固定高・背景画像＋パンくず） */
#fv-area {
  width: 100%;
  position: relative;
}

#fv-area picture {
  display: block;
  width: 100%;
}

#fv-area img {
  display: block;
  width: 100%;
  height: 260px;
     object-fit: cover;

  -o-object-fit: cover;
}

@media (min-width: 768px) {
  #fv-area img {
    height: 370px;
  }
}
@media (min-width: 1024px) {
  #fv-area img {
    height: 370px;
  }
}
/* =========================
  共通
========================= */

.container {
  max-width: unset;
}

/* =========================
  01 intro
========================= */
.intro {
  position: relative;
  z-index: 1;
  padding: 26px 0 42px;
}

.intro::after {
  content: "";
  width: 100vw;
  height: calc(100% + 2px);
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, 0);
  background: var(--bg_primary);
}

.intro h1 {
  position: absolute;
  bottom: calc(100% - .3em);
  z-index: 1;
}

.intro h1::before {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  height: 1.4em;
  width: 0.13em;
  background: linear-gradient(to bottom, var(--color-organoblue) 0%, var(--color-organoblue) 50%, var(--color-liteblue) 50%, var(--color-liteblue) 100%);
  margin-right: 0.8em;
  margin-top: 0.13em;
}

.intro h1::after {
  content: "";
  width: 100vw;
  height: calc(100% + .6em);
  position: absolute;
  right: -1.3em;
  bottom: 0;
  z-index: -1;
  background: var(--bg_primary);
}

.intro p {
  margin-top: 14px;
}

@media (min-width: 768px) {
  .intro {
    position: relative;
    z-index: 1;
    padding: 20px 0 84px;
  }
  .intro::after {
    content: "";
    width: 100vw;
    height: calc(100% + 64px);
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, 0);
    background: var(--bg_primary);
  }
  .intro h1 {
    position: absolute;
    bottom: calc(100% + 1em);
    z-index: 1;
  }
  .intro h1::before {
    margin-right: .5em;
  }
  .intro h1::after {
    height: calc(100% + 1em);
    right: -1.5em;
  }
}
@media (min-width: 1024px) {
  .intro::after {
    content: "";
    width: 100vw;
    height: calc(100% + 64px);
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, 0);
    background: var(--bg_primary);
  }
}
/* =========================
  02 aftersupport
========================= */
html {
  scroll-padding-top: 72px;
}
@media (min-width: 768px) {
  html {
    scroll-padding-top: 104px;
  }
}

.main-content {
  background: var(--bg_primary);
}

.segment-button-vertical-label {
  font-size: 14px;
}
@media (min-width: 768px) {
  .segment-button-vertical-label {
    font-size: 16px;
  }
}

.segment-button-vertical-label-note {
  font-size: 12px;
}
@media (min-width: 768px) {
  .segment-button-vertical-label-note {
    font-size: 14px;
  }
}

.accenet-underline {
  font-size: 18px;
}
@media (min-width: 768px) {
  .accenet-underline {
    font-size: 26px;
  }
}

.aftersupport {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 80px;
  margin-inline: auto;
  margin-block-end: 80px;
}
@media (min-width: 768px) {
  .aftersupport {
    row-gap: 120px;
    margin-block-end: 120px;
  }
}
.aftersupport-nav {
  margin-inline: -18px;
}
.aftersupport-nav .segment-button-vertical {
  border: 1px solid #044362;
}
@media (min-width: 768px) {
  .aftersupport-nav {
    margin-inline: auto;
  }
}
.aftersupport-nav .aftersupport-nav-global {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4px;
  padding-inline: 3px;
}
.aftersupport-nav .aftersupport-nav-global-link {
  display: grid;
  height: 66px;
  place-content: center;
  color: #fff;
  font-size: 12px;
}
.aftersupport-nav .aftersupport-nav-global-link::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-inline: auto;
  margin-block-end: 4px;
  background-size: cover;
}
.aftersupport-nav .aftersupport-nav-global-link.is-introduce {
  background-color: #1a4362;
}
.aftersupport-nav .aftersupport-nav-global-link.is-introduce::before {
  background-image: url(../../images/about/introduce/icon-link-introduce.svg);
}
.aftersupport-nav .aftersupport-nav-global-link.is-aftersupport {
  background-color: #0080ff;
}
.aftersupport-nav .aftersupport-nav-global-link.is-aftersupport::before {
  background-image: url(../../images/about/common/icon-link-aftersupport.svg);
}
@media (min-width: 768px) {
  .aftersupport-nav .aftersupport-nav-global-link {
    height: 68px;
    grid-template-columns: auto auto;
    column-gap: 14px;
    align-items: center;
    font-size: 16px;
  }
  .aftersupport-nav .aftersupport-nav-global-link::before {
    margin-block-end: 0;
  }
}
.aftersupport-nav .aftersupport-nav-list {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 10px;
  padding-inline: 18px;
  padding-block: 18px 50px;
  background-color: #fff;
}

/* 1カラム時のみ：カード→Details のブロック間 */
.aftersupport-nav .aftersupport-nav-details-cell + .aftersupport-nav-card {
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .aftersupport-nav .aftersupport-nav-details-cell + .aftersupport-nav-card {
    margin-top: 0;
  }
}

/* カード：PC と同じ縦型（画像上・ラベル下）を全ブレークポイントで共通（introduce-nav-list と同一仕様） */
.aftersupport-nav .aftersupport-nav-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: auto;
  align-self: stretch;
}

.aftersupport-nav .aftersupport-nav-card .segment-button-vertical {
  flex-direction: column;
  flex: 1 1 auto;
  height: auto;
  min-height: 0;
}

.aftersupport-nav .aftersupport-nav-details-cell {
  width: 100%;
  min-width: 0;
  align-self: start;
}

/* 画像: 640px 未満は 9:5・高さ auto、640px 以上は 16:13 */
.aftersupport-nav .segment-button-vertical-image {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 9 / 5;
  height: auto;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .aftersupport-nav .segment-button-vertical-image {
    aspect-ratio: 16 / 13;
  }
}

.aftersupport-nav .segment-button-vertical-image picture {
  position: absolute;
  inset: 0;
  display: block;
}

.aftersupport-nav .segment-button-vertical-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aftersupport-nav .segment-button-vertical-label-area {
  flex: 1 1 auto;
  min-height: 120px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px 20px 56px 20px;
}
@media (min-width: 640px) {
  .aftersupport-nav .segment-button-vertical-label-area {
    min-height: 0;
  }
}

.aftersupport-nav .segment-button-vertical-label {
  position: static;
  flex: 0 1 auto;
  width: 100%;
  max-width: none;
}

.aftersupport-nav .segment-button-vertical-arrow-wrap {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/* 640px～1023px：2カラム（各列でカード＋詳細を縦積み） */
@media (min-width: 640px) and (max-width: 1023px) {
  .aftersupport-nav .aftersupport-nav-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    padding: 40px;
    align-items: stretch;
  }

  .aftersupport-nav .aftersupport-nav-list > *:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .aftersupport-nav .aftersupport-nav-list > *:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 20px;
  }

  .aftersupport-nav .aftersupport-nav-list > *:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }

  .aftersupport-nav .aftersupport-nav-list > *:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 20px;
  }

  .aftersupport-nav .aftersupport-nav-list > *:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
  }

  .aftersupport-nav .aftersupport-nav-list > *:nth-child(6) {
    grid-column: 1;
    grid-row: 4;
  }

  .aftersupport-nav .aftersupport-nav-list > *:nth-child(7) {
    grid-column: 2;
    grid-row: 3;
  }

  .aftersupport-nav .aftersupport-nav-list > *:nth-child(8) {
    grid-column: 2;
    grid-row: 4;
  }

  .aftersupport-nav .aftersupport-nav-card {
    height: 100%;
  }
}

/* 1024px～：4カラム */
@media (min-width: 1024px) {
  .aftersupport-nav .aftersupport-nav-list {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    padding: 40px;
    align-items: stretch;
  }

  .aftersupport-nav .aftersupport-nav-list > *:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .aftersupport-nav .aftersupport-nav-list > *:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .aftersupport-nav .aftersupport-nav-list > *:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }

  .aftersupport-nav .aftersupport-nav-list > *:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .aftersupport-nav .aftersupport-nav-list > *:nth-child(5) {
    grid-column: 3;
    grid-row: 1;
  }

  .aftersupport-nav .aftersupport-nav-list > *:nth-child(6) {
    grid-column: 3;
    grid-row: 2;
  }

  .aftersupport-nav .aftersupport-nav-list > *:nth-child(7) {
    grid-column: 4;
    grid-row: 1;
  }

  .aftersupport-nav .aftersupport-nav-list > *:nth-child(8) {
    grid-column: 4;
    grid-row: 2;
  }

  .aftersupport-nav .aftersupport-nav-card {
    height: 100%;
  }
}
.aftersupport-nav .aftersupport-nav-details[open] .aftersupport-nav-summary::after {
  transform: translateY(-50%) rotate(0deg);
}
.aftersupport-nav .aftersupport-nav-details[open] .aftersupport-nav-body {
  grid-template-rows: 1fr;
}
.aftersupport-nav .aftersupport-nav-summary {
  list-style: none;
  position: relative;
  padding-block: 8px 6px;
  border-bottom: 1px solid var(--color-darkblue);
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
}
.aftersupport-nav .aftersupport-nav-summary::-webkit-details-marker {
  display: none;
}
.aftersupport-nav .aftersupport-nav-summary::before, .aftersupport-nav .aftersupport-nav-summary::after {
  content: "";
  width: 16px;
  height: 1px;
  position: absolute;
  top: 58%;
  right: 10px;
  transform-origin: center;
  background-color: var(--color-darkblue);
  transition: transform .2s ease;
}
.aftersupport-nav .aftersupport-nav-summary::before {
  transform: translateY(-50%);
}
.aftersupport-nav .aftersupport-nav-summary::after {
  transform: translateY(-50%) rotate(90deg);
}
@media (min-width: 768px) {
  .aftersupport-nav .aftersupport-nav-summary {
    padding-inline-end: 36px;
    padding-block: 17px 6px;
    font-size: 16px;
  }
}
.aftersupport-nav .aftersupport-nav-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease-in-out;
}
.aftersupport-nav .aftersupport-nav-products {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-block-start: 8px;
  overflow: hidden; /* grid子要素に必須 */
}
.aftersupport-nav .aftersupport-nav-products li {
  margin-inline-start: 1em;
  font-size: 14px;
  text-indent: -1em;
}
.aftersupport-nav .aftersupport-nav-products li::before {
  content: "・";
}
.aftersupport-section {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}
@media (min-width: 768px) {
  .aftersupport-section {
    row-gap: 64px;
  }
}
.aftersupport-section .aftersupport-section-description {
  font-size: 14px;
}
@media (min-width: 768px) {
  .aftersupport-section .aftersupport-section-description {
    font-size: 16px;
  }
}

/* aftersupport-step フェードインアニメーション（js-fade-steps 付与時） */
.aftersupport-steps.js-fade-steps .aftersupport-step {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
  will-change: opacity, transform;
}
.aftersupport-steps.js-fade-steps .aftersupport-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.aftersupport-steps {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 20px;
  row-gap: 34px;
}
@media (min-width: 768px) {
  .aftersupport-steps {
    row-gap: 44px;
    margin-top: 0px;
    width: min(100%, 1166px);
    margin-inline: auto;
  }
}

.aftersupport-step {
  display: grid;
  grid-template-columns: 1fr;
}
.aftersupport-step:not(:last-of-type) {
  position: relative;
}
.aftersupport-step:not(:last-of-type)::after {
  content: "";
  width: 20px;
  height: 14px;
  position: absolute;
  bottom: -24px;
  left: 50%;
  translate: -50% 0;
  background-image: url(../../images/about/common/icon-step-arrow.svg);
  background-size: cover;
}
@media (min-width: 768px) {
  .aftersupport-step {
    grid-template-columns: 110px auto;
  }
  .aftersupport-step:not(:last-of-type)::after {
    bottom: -29px;
    left: 55px;
  }
}
.aftersupport-step .aftersupport-step-number {
  display: grid;
  height: 70px;
  grid-template-columns: auto 1fr;
  grid-template-areas: "step-before step-label" "step-before step-title";
  column-gap: 5px;
  align-content: center;
  padding-inline-start: 5px;
  background-color: var(--color-liteblue);
}
.aftersupport-step .aftersupport-step-number::before {
  content: "";
  display: block;
  width: 70px;
  height: 50px;
  grid-area: step-before;
  margin-inline: auto;
  background-size: cover;
}
@media (min-width: 768px) {
  .aftersupport-step .aftersupport-step-number {
    height: 100%;
    grid-template-columns: 1fr;
    grid-template-areas: "step-label" "step-before";
    padding-inline-start: 0;
  }
}
.aftersupport-step .aftersupport-step-label {
  display: block;
  grid-area: step-label;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .aftersupport-step .aftersupport-step-label {
    font-size: 18px;
    text-align: center;
  }
}
.aftersupport-step .aftersupport-step-title {
  grid-area: step-title;
  color: #fff;
  font-weight: var(--font-weight-bold);
  font-size: 18px;
}
@media (min-width: 768px) {
  .aftersupport-step .aftersupport-step-title {
    display: none;
  }
}
.aftersupport-step .aftersupport-step-content {
  padding-inline: 15px;
  padding-block: 10px;
  background-color: #fff;
}
.aftersupport-step .aftersupport-step-content:has(.aftersupport-step-action) {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .aftersupport-step .aftersupport-step-content {
    padding-inline: 40px;
    padding-block: 20px;
  }
  .aftersupport-step .aftersupport-step-content:has(.aftersupport-step-action) {
    column-gap: 20px;
    padding-inline: 40px 0;
  }
}
@media (min-width: 1024px) {
  .aftersupport-step .aftersupport-step-content:has(.aftersupport-step-action) {
    grid-template-columns: auto 298px;
  }
}
.aftersupport-step .aftersupport-step-body .aftersupport-step-title {
  display: none;
}
@media (min-width: 768px) {
  .aftersupport-step .aftersupport-step-body .aftersupport-step-title {
    display: block;
    grid-area: step-title;
    color: var(--color-liteblue);
    font-weight: 500;
    font-size: 26px;
  }
}
.aftersupport-step .aftersupport-step-description {
  font-size: 14px;
  line-height: 1.8571428571;
}
@media (min-width: 768px) {
  .aftersupport-step .aftersupport-step-description {
    font-size: 16px;
    line-height: 2;
  }
}
.aftersupport-step .aftersupport-step-action {
  display: grid;
  justify-content: start;
  align-content: center;
  margin-block-start: 10px;
}
.aftersupport-step .aftersupport-step-action > div:has(a) {
  width: calc(100% + 30px);
}
.aftersupport #section01 .aftersupport-step:nth-of-type(1) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-contact.svg");
}
.aftersupport #section01 .aftersupport-step:nth-of-type(2) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-hearing.svg");
}
.aftersupport #section01 .aftersupport-step:nth-of-type(3) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-proposal.svg");
}
.aftersupport #section01 .aftersupport-step:nth-of-type(4) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-survey.svg");
}
.aftersupport #section01 .aftersupport-step:nth-of-type(5) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-solution.svg");
}
.aftersupport #section01 .aftersupport-step:nth-of-type(6) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-contract.svg");
}
.aftersupport #section02 .aftersupport-step:nth-of-type(1) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-check.svg");
}
.aftersupport #section02 .aftersupport-step:nth-of-type(2) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-contact.svg");
}
.aftersupport #section02 .aftersupport-step:nth-of-type(3) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-followup.svg");
}
.aftersupport #section02 .aftersupport-step:nth-of-type(4) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-solution.svg");
}
.aftersupport #section02 .aftersupport-step:nth-of-type(5) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-contract.svg");
}
.aftersupport #section03 .aftersupport-step:nth-of-type(1) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-check.svg");
}
.aftersupport #section03 .aftersupport-step:nth-of-type(2) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-followup.svg");
}
.aftersupport #section03 .aftersupport-step:nth-of-type(3) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-solution.svg");
}
.aftersupport #section03 .aftersupport-step:nth-of-type(4) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-contract.svg");
}
.aftersupport #section03 .aftersupport-step:nth-of-type(5) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-ec.svg");
}
.aftersupport #section04 .aftersupport-step:nth-of-type(1) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-select.svg");
}
.aftersupport #section04 .aftersupport-step:nth-of-type(2) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-ec.svg");
}
.aftersupport #section04 .aftersupport-step:nth-of-type(3) .aftersupport-step-number::before {
  background-image: url("../../images/about/common/icon-step-maintenance.svg");
}
