@charset "UTF-8";
/*
FAQ モジュール
以下のように使ってください。

```page.html
<div class="faq-item-group">
  <details class="faq-item">
    <summary class="faq-item__que">質問1 ― ◯◯◯◯◯◯◯◯◯◯◯◯◯◯</summary>
    <div class="faq-item__ans">
      <p>【質問1の回答】この文章はダミーテキストとして作成されたもので、実際の内容や意味は特にありません。表示確認用にご利用ください。</p>
    </div>
  </details>
  <!-- 以下略 -->
</div>
```

```page.scss
@use "../module/faq";
```
*/
.faq-item-group {
  margin-inline: auto;
  max-width: 900px;
  display: grid;
  row-gap: 20px;
}
@media (width > 768px) {
  .faq-item-group {
    row-gap: 35px;
  }
}

details.faq-item {
  --faq-blue: #006cb4;
  --_duration: 0.3s;
  border: 2px solid var(--faq-blue);
  background-color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  --_col-gap: 16px;
  --_Q-font-size: 2em;
  --_Q-width: calc(var(--_Q-font-size) * 31 / 40);
  --_icon-size: 1.5em;
  --_padding-left: 1.5em;
  --_padding-right: 1.6em;
}
@media (width > 768px) {
  details.faq-item {
    font-size: 1.25rem;
    --_col-gap: 26px;
  }
}
details.faq-item summary.faq-item__que {
  padding-block: 1.1em;
  padding-left: var(--_padding-left);
  padding-right: var(--_padding-right);
  display: grid;
  grid-template-columns: var(--_Q-width) 1fr var(--_icon-size);
  align-items: center;
  column-gap: var(--_col-gap);
  color: var(--faq-blue);
}
details.faq-item summary.faq-item__que::before {
  content: "Q";
  display: block;
  margin-top: var(--half-leading);
  color: var(--faq-blue);
  font-weight: bold;
  font-size: var(--_Q-font-size);
}
details.faq-item summary.faq-item__que::after {
  --_thickness: 2px;
  --_position: calc((var(--_icon-size) - var(--_thickness)) / 2);
  content: "";
  display: block;
  aspect-ratio: 1;
  background: linear-gradient(currentColor var(--_thickness), transparent 0) center top var(--_position), linear-gradient(90deg, currentColor var(--_thickness), transparent 0) left var(--_position) center;
  transition-duration: var(--_duration);
  transition-property: rotate;
}
details.faq-item summary.faq-item__que:where(details[open] *)::after {
  rotate: 45deg;
}
details.faq-item .faq-item__ans {
  padding-left: calc(var(--_padding-left) + var(--_Q-width) + 0.9em);
  padding-right: var(--_padding-right);
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  padding-bottom: 0px;
  transition-duration: var(--_duration);
  transition-property: padding-bottom, grid-template-rows;
}
details.faq-item .faq-item__ans:where(details[open] *) {
  grid-template-rows: 1fr;
  padding-bottom: 2em;
}
details.faq-item .faq-item__ans p {
  margin-block: var(--half-leading);
}
details.faq-item::details-content {
  content-visibility: unset;
}

:root {
  --blue: #0d8bde;
  --blue-alt: #98d6ff;
}

.eyecatch {
  --_img-src: url("/image/touchless/touchless__eyecatch.png");
  --_img2x-src: url("/image/touchless/touchless__eyecatch@2x.png");
  --_eyecatch-fgcol: #333;
  max-width: min(100vw, 1920px) !important;
}

section#touchless-intro.section {
  position: relative;
}
section#touchless-intro.section .section__inner {
  padding-top: 50px;
  padding-bottom: 80px;
}
@media (width > 768px) {
  section#touchless-intro.section .section__inner {
    padding-top: 100px;
    margin-bottom: 300px;
  }
}
section#touchless-intro.section::after {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: min(var(--100vw), 1920px);
  height: calc(min(var(--100vw), 1920px) * 512 / 1920);
  background-color: #edf5fa;
  clip-path: polygon(0% 0%, 50% 30%, 100% 0%, 100% 70%, 50% 100%, 0% 70%);
}
section#touchless-intro.section .intro-title-group .intro-title {
  font-weight: bold;
  font-size: clamp(1.6875rem, 1.3893129771rem + 1.272264631vw, 2rem);
  line-height: 1.45;
}
@media (width > 768px) {
  section#touchless-intro.section .intro-title-group .intro-title {
    font-size: clamp(1.25rem, 1rem + 0.5208333333vw, 1.625rem);
  }
}
section#touchless-intro.section .intro-title {
  font-weight: bold;
  font-size: clamp(1.6875rem, 1.3893129771rem + 1.272264631vw, 2rem);
  line-height: 1.45;
}
@media (width > 768px) {
  section#touchless-intro.section .intro-title {
    font-size: clamp(2rem, 0.8333333333rem + 2.4305555556vw, 3.75rem);
  }
}
section#touchless-intro.section h2.intro-title {
  margin-bottom: clamp(3.75rem, 3.1432038835rem + 2.5889967638vw, 6.25rem);
}
section#touchless-intro.section .intro-body {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
}
@media (width > 768px) {
  section#touchless-intro.section .intro-body {
    font-size: 1.25rem;
  }
}
section#touchless-intro.section .img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#touchless-intro.section .scene-img {
  width: unset !important;
  height: unset !important;
}
section#touchless-intro.section .btn-area-group {
  margin-bottom: 80px;
  margin-inline: auto;
  width: fit-content;
}
@media (width > 1280px) {
  section#touchless-intro.section .btn-area-group {
    padding-inline: 40px;
  }
}
section#touchless-intro.section .btn-area-1,
section#touchless-intro.section .btn-area-2 {
  margin-bottom: 18px;
  width: fit-content;
  display: grid;
  grid-auto-columns: max-content;
  justify-content: center;
  gap: 18px;
}
@media (width > 768px) {
  section#touchless-intro.section .btn-area-1,
  section#touchless-intro.section .btn-area-2 {
    margin-bottom: 25px;
    column-gap: 25px;
  }
}
@media (width > 1280px) {
  section#touchless-intro.section .btn-area-1,
  section#touchless-intro.section .btn-area-2 {
    column-gap: 35px;
  }
}
section#touchless-intro.section .btn-area-1 .btn,
section#touchless-intro.section .btn-area-2 .btn {
  max-width: 300px;
  font-size: 0.875rem;
  --_shadow-col: var(--accent-col);
  display: inline-grid;
  grid-template-columns: 1fr auto;
  column-gap: 1.7em;
  align-items: center;
  align-content: center;
  padding-inline: 1.85em;
  padding-block: 1.05em;
  margin-right: 0.25em;
  margin-bottom: 0.25em;
  box-shadow: 0.25em 0.25em 0 0 var(--_shadow-col);
  background-color: #333;
  color: #fff;
  font-weight: 500;
  line-height: 1.45;
}
section#touchless-intro.section .btn-area-1 .btn:focus, section#touchless-intro.section .btn-area-1 .btn:hover,
section#touchless-intro.section .btn-area-2 .btn:focus,
section#touchless-intro.section .btn-area-2 .btn:hover {
  --_shadow-col: #333;
  background-color: var(--accent-col);
}
section#touchless-intro.section .btn-area-1 .btn::after,
section#touchless-intro.section .btn-area-2 .btn::after {
  content: "";
  width: 0.75em;
  aspect-ratio: 1;
  background: url("/image/chevron_down.svg") no-repeat center right/contain;
}
@media not (width > 768px) {
  section#touchless-intro.section .btn-area-1 .btn,
  section#touchless-intro.section .btn-area-2 .btn {
    width: 300px;
  }
}
@media (width > 768px) {
  section#touchless-intro.section .btn-area-1 .btn,
  section#touchless-intro.section .btn-area-2 .btn {
    font-size: 1.25rem;
  }
}
@media (width > 768px) {
  section#touchless-intro.section .btn-area-1 {
    grid-template-columns: max-content;
  }
}
@media (width > 1220px) {
  section#touchless-intro.section .btn-area-1 {
    grid-template-columns: repeat(2, minmax(max-content, 1fr));
  }
}
section#touchless-intro.section .btn-area-1 .btn {
  column-gap: 0.8em;
}
@media (width > 768px) {
  section#touchless-intro.section .btn-area-1 .btn {
    max-width: 650px;
    width: 100%;
    column-gap: 30px;
  }
}
@media (width > 768px) {
  section#touchless-intro.section .btn-area-2 {
    grid-template-columns: repeat(2, minmax(max-content, 1fr));
  }
}
@media (width > 1440px) {
  section#touchless-intro.section .btn-area-2 {
    grid-template-columns: repeat(4, minmax(max-content, 1fr));
  }
}
section#touchless-intro.section .btn-area-2 .btn {
  column-gap: 1.4675em;
}
@media not (width > 1024px) {
  section#touchless-intro.section .intro-group01,
  section#touchless-intro.section .intro-group02 {
    display: grid;
    row-gap: 1.5rem;
  }
  section#touchless-intro.section .text-area .intro-title.intro-title--secondary {
    margin-bottom: 1rem;
  }
}

.intro-group01 {
  margin-top: clamp(1.6875rem, 0.0772900763rem + 6.8702290076vw, 3.375rem);
  margin-bottom: clamp(1.6875rem, 0.0772900763rem + 6.8702290076vw, 3.375rem);
}
.intro-group01 .img-area {
  max-width: 1030px;
  aspect-ratio: 1030/600;
}
.intro-group01 .intro-list {
  list-style: none;
  margin: 0;
}
.intro-group01 .intro-list li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.8;
}
.intro-group01 .intro-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
@media not (width > 1024px) {
  .intro-group01 .img-area {
    margin-left: auto;
    margin-right: calc(50% - var(--100vw) / 2);
  }
}
@media (width > 1024px) {
  .intro-group01 {
    margin-top: 0;
    margin-bottom: 150px;
    display: grid;
    grid-template-columns: [fill-start body-start] 570fr [body-end img-start] 1030fr [fill-end img-end];
  }
  .intro-group01 .text-area {
    grid-row: 1;
    grid-column: fill;
    display: grid;
    grid-template-columns: subgrid;
    grid-template-rows: 89fr [ttl-start] auto [ttl-end body-start] auto [body-end] 60fr;
  }
  .intro-group01 .text-area .intro-title-group {
    grid-column: fill;
    grid-row: ttl;
    z-index: 1;
    margin-bottom: 17px;
  }
  .intro-group01 .text-area .intro-title-group .intro-title:first-child {
    width: 100%;
    z-index: 10;
  }
  .intro-group01 .text-area .intro-body {
    grid-column: body;
    grid-row: body;
  }
  .intro-group01 .img-area {
    grid-row: 1;
    grid-column: img;
    margin-right: calc(50% - min(var(--100vw), 1920px) / 2);
  }
  .intro-group01 .img-area__filler {
    width: 100%;
    height: 200px;
  }
}

.intro-group02 .img-area {
  max-width: 719px;
  aspect-ratio: 719/404;
}
.intro-group02 .intro-list {
  list-style: none;
  margin: 0;
}
.intro-group02 .intro-list li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.8;
}
.intro-group02 .intro-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
@media (width > 1024px) {
  .intro-group02 {
    margin-right: -23px;
    display: grid;
    grid-template-columns: [img-start] 692fr [img-end text-start] 600fr [text-end];
    column-gap: 6.1971830986%;
  }
  .intro-group02 .text-area {
    grid-column: text;
    display: grid;
    grid-template-rows: 211fr [ttl-start] auto [ttl-end body-start] auto [body-end] 234fr;
  }
  .intro-group02 .text-area .intro-title {
    grid-row: ttl;
    margin-bottom: 26px;
  }
  .intro-group02 .text-area .intro-body {
    grid-row: body;
  }
  .intro-group02 .img-area {
    grid-column: img;
  }
}

section#case.section .section__inner {
  padding-top: 0px;
  padding-bottom: 60px;
}
@media (width > 768px) {
  section#case.section .section__inner {
    padding-top: 0px;
    padding-bottom: 200px;
  }
}
section#case.section .colored-box {
  position: relative;
  background-color: #f8f8f8;
  background-image: radial-gradient(circle farthest-side at 5% 5%, #f8f8f8, #f7f7f7, #f0f0f0 115%);
  border-radius: 10px;
  box-shadow: 0px 4.6px 0px #ccc, 0px 10px 10px rgb(from #000 r g b/0.16);
  padding-top: 42px;
  padding-bottom: 52px;
  padding-inline: 36px;
}
@media (width > 768px) {
  section#case.section .colored-box {
    padding-top: 85px;
    padding-bottom: 104px;
  }
}
@media (width > 1919px) {
  section#case.section .colored-box {
    --_padding-x: 90px;
    padding-inline: var(--_padding-x);
    margin-inline: calc(-1 * var(--_padding-x));
  }
}
section#case.section .colored-box::before {
  position: absolute;
  top: 52px;
  right: 0;
  translate: 50%;
  width: 118.5px;
  aspect-ratio: 118.5/37;
  clip-path: polygon(0% 50%, 100% 0%, 100% 50%, 0% 100%);
  background-image: linear-gradient(to bottom, var(--accent-col), var(--accent-col-alt));
}
@media (width > 768px) {
  section#case.section .colored-box::before {
    content: "";
  }
}
section#case.section .section__heading {
  margin-bottom: 35px;
}
@media (width > 768px) {
  section#case.section .section__heading {
    margin-bottom: 71px;
  }
}

.case-group {
  --_margin-bottom: 40px;
  margin-bottom: calc(-1 * var(--_margin-bottom));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), auto));
  grid-template-rows: auto;
  justify-content: center;
  column-gap: 45px;
}
@media (width > 768px) {
  .case-group {
    --_margin-bottom: 60px;
    column-gap: 70px;
  }
}
.case-group .case {
  max-width: 400px;
  grid-row: span 4;
  display: grid;
  grid-template-rows: subgrid;
  row-gap: 16px;
  margin-bottom: var(--_margin-bottom);
}
@media (width > 768px) {
  .case-group .case {
    row-gap: 20px;
  }
}

.case__img {
  aspect-ratio: 16/9;
  background-color: #999;
  color: #fff;
}
.case__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case__name,
.case__desc {
  line-height: calc(35 / 20);
  font-size: 0.875rem;
}
@media (width > 768px) {
  .case__name,
  .case__desc {
    font-size: 1.25rem;
  }
}

.case__name {
  margin-block: var(--half-leading);
  font-weight: 500;
}

.case__desc {
  font-weight: bold;
}

.case__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (width > 768px) {
  .case__categories {
    margin-top: 20px;
  }
}

.case__category {
  display: grid;
  align-items: center;
  min-width: fit-content;
  height: 2.125em;
  padding-inline: 1.71875em;
  border-radius: calc(infinity * 1px);
  background-color: #c6e9ff;
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 1.875;
}
@media (width > 768px) {
  .case__category {
    font-size: 1rem;
  }
}

section#touchless-solution.section {
  background-color: #f2f2f2;
  --_angle: 108.6339521375deg;
  --_stripe-col: rgb(from #999 r g b/0.27);
  background-image: repeating-linear-gradient(var(--_angle), var(--_stripe-col) 0 1px, transparent 0 20px);
}
section#touchless-solution.section .section__inner {
  padding-top: 51px;
  padding-bottom: 70px;
}
@media (width > 768px) {
  section#touchless-solution.section .section__inner {
    padding-top: 103px;
    padding-bottom: 140px;
  }
}
section#touchless-solution.section .colored-box {
  background-color: #fff;
  border-radius: 10px;
  padding-top: 35px;
  padding-bottom: 29px;
  padding-inline: clamp(24px, 18.2748091603px + 1.5267175573vw, 30px);
}
@media (width > 768px) {
  section#touchless-solution.section .colored-box {
    padding-top: 70px;
    padding-bottom: 58px;
    padding-inline: clamp(30px, 10px + 2.6041666667vw, 60px);
    margin-inline: 41px;
  }
}
section#touchless-solution.section .section__top-area {
  text-align: center;
  margin-bottom: 26px;
}
@media (width > 768px) {
  section#touchless-solution.section .section__top-area {
    margin-bottom: 53px;
  }
}
section#touchless-solution.section .section__title {
  margin-bottom: 0.4666666667em;
  font-weight: bold;
  font-size: clamp(1.6875rem, 1.3893129771rem + 1.272264631vw, 2rem);
}
@media (width > 768px) {
  section#touchless-solution.section .section__title {
    font-size: clamp(2rem, 0.8333333333rem + 2.4305555556vw, 3.75rem);
  }
}
section#touchless-solution.section .section__desc {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
}
@media (width > 768px) {
  section#touchless-solution.section .section__desc {
    font-size: 1.25rem;
  }
}
section#touchless-solution.section .bordered-box {
  border: 2px solid #707070;
  border-radius: 10px;
  overflow: clip;
  --_padding-x: clamp(16px, -6.9007633588px + 6.106870229vw, 40px);
  display: grid;
  grid-template-rows: max-content var(--_bottom-area-track-size);
  --_bottom-area-track-size: 0fr;
  transition: grid-template-rows 0.5s;
}
section#touchless-solution.section .bordered-box:has(.section__bottom-area.is-shown) {
  --_bottom-area-track-size: 1fr;
}
section#touchless-solution.section .bordered-box .section__main-area {
  grid-row: 1;
}
section#touchless-solution.section .bordered-box .section__bottom-area {
  grid-row: 2;
}
section#touchless-solution.section .section__main-area {
  background-color: #edf5fa;
  padding-top: 26px;
  padding-bottom: 23px;
  padding-inline: var(--_padding-x);
  display: grid;
  grid-auto-columns: 100%;
  justify-items: center;
  position: relative;
}
@media (width > 768px) {
  section#touchless-solution.section .section__main-area {
    padding-top: 53px;
    padding-bottom: 46px;
  }
}
section#touchless-solution.section .search-desc {
  font-weight: bold;
  font-size: 1.09375rem;
  line-height: 1.4;
}
@media (width > 768px) {
  section#touchless-solution.section .search-desc {
    font-size: 1.5625rem;
  }
}
section#touchless-solution.section .search-notice {
  margin-bottom: 1.72em;
  font-size: 0.875rem;
  line-height: 1.75;
}
@media (width > 768px) {
  section#touchless-solution.section .search-notice {
    font-size: 1rem;
  }
}
section#touchless-solution.section .search-btn-group {
  margin-bottom: 28px;
  width: 100%;
  max-width: 640px;
  --_btn-min-width: 110px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--_btn-min-width), 1fr));
  grid-auto-rows: 1fr;
  justify-items: center;
  gap: 16px;
}
@media (width > 768px) {
  section#touchless-solution.section .search-btn-group {
    margin-bottom: 57px;
    --_btn-min-width: 160px;
    column-gap: 12px;
    row-gap: 32px;
  }
}
section#touchless-solution.section label.search-input-btn {
  --_shadow-offset: 3px;
  margin-right: var(--_shadow-offset);
  margin-bottom: var(--_shadow-offset);
  max-width: 200px;
  min-width: var(--_btn-min-width);
  width: 100%;
  height: 50px;
  padding-block: 1em;
  padding-inline: 0.5em;
  display: grid;
  grid-auto-rows: min-content;
  align-content: center;
  justify-items: center;
  box-shadow: 0px 0px 0px 1px #707070 inset;
  background-color: #fff;
  color: #666;
  text-align: center;
  font-weight: bold;
  font-size: 0.875rem;
  cursor: pointer;
  position: relative;
  transition: margin 0.1s, translate 0.1s, color 0.3s, background-color 0.3s;
}
@media (width > 768px) {
  section#touchless-solution.section label.search-input-btn {
    --_shadow-offset: 5px;
    height: 80px;
    padding-inline: 1.25em;
    font-size: 1.25rem;
  }
}
section#touchless-solution.section label.search-input-btn::before, section#touchless-solution.section label.search-input-btn::after {
  content: "";
  position: absolute;
  background-color: #666;
  transition-duration: 0.1s;
}
section#touchless-solution.section label.search-input-btn::before {
  transition-property: width, translate;
  width: var(--_shadow-offset);
  height: 100%;
  top: 0;
  right: 0;
  translate: var(--_shadow-offset) calc(var(--_shadow-offset) * 0.5);
  transform: skewY(45deg);
}
section#touchless-solution.section label.search-input-btn::after {
  transition-property: height, translate;
  width: 100%;
  height: var(--_shadow-offset);
  bottom: 0;
  left: 0;
  translate: calc(var(--_shadow-offset) * 0.5) var(--_shadow-offset);
  transform: skewX(45deg);
}
section#touchless-solution.section label.search-input-btn:hover, section#touchless-solution.section label.search-input-btn:has(:checked) {
  color: #fff;
  box-shadow: none;
  background-color: var(--accent-col);
}
section#touchless-solution.section label.search-input-btn:has(:checked) {
  --_shadow-offset: 0px;
  translate: 2.5px 5px;
}
section#touchless-solution.section label.search-input-btn:has(:focus-visible) {
  outline: auto;
  outline: auto -webkit-focus-ring-color;
  outline-offset: -5px;
}
section#touchless-solution.section label.search-input-btn input[type=checkbox] {
  appearance: none;
  border-width: 0px;
  height: 0;
}
section#touchless-solution.section label.search-input-btn span {
  word-break: keep-all;
}
section#touchless-solution.section .search-submit-btn {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  align-content: center;
  column-gap: 1em;
  width: 200px;
  height: 50px;
  padding: 1em;
  box-shadow: 0px 0px 0px 1px #707070 inset;
  border: none;
  background-color: #fff;
  color: #333;
  font-weight: bold;
  font-size: 0.875rem;
  transition-duration: 0.3s;
  transition-property: background-color, color;
}
@media (width > 768px) {
  section#touchless-solution.section .search-submit-btn {
    width: 300px;
    height: 80px;
    font-size: 1.25rem;
  }
}
section#touchless-solution.section .search-submit-btn::before, section#touchless-solution.section .search-submit-btn::after {
  content: "";
}
section#touchless-solution.section .search-submit-btn::after {
  justify-self: end;
  width: 0.75em;
  aspect-ratio: 1;
  background-color: currentColor;
  mask: url("/image/chevron_down.svg") no-repeat center/contain;
}
section#touchless-solution.section .search-submit-btn:focus, section#touchless-solution.section .search-submit-btn:hover {
  box-shadow: none;
  background-color: var(--accent-col);
  color: #fff;
}
section#touchless-solution.section .section__bottom-area {
  padding-inline: var(--_padding-x);
  transition: padding-block 0.5s;
}
section#touchless-solution.section .section__bottom-area.is-shown {
  padding-top: 20px;
  padding-bottom: 25px;
}
@media (width > 768px) {
  section#touchless-solution.section .section__bottom-area.is-shown {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
section#touchless-solution.section .search-result__heading {
  margin-bottom: 0.25em;
  display: flex;
  justify-content: center;
  column-gap: 0.25em;
  font-weight: bold;
  font-size: clamp(1.375rem, 0.625rem + 1.5625vw, 2.5rem);
}
section#touchless-solution.section .search-result__heading::before, section#touchless-solution.section .search-result__heading::after {
  content: "―";
}
section#touchless-solution.section .search-result__notice {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.75;
  display: flex;
  justify-content: center;
}
section#touchless-solution.section .card-group {
  --_card-min-width: 240px;
  --_card-max-width: 300px;
  display: grid;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(var(--_card-min-width), 100%), max-content));
  justify-content: center;
  justify-items: center;
  gap: 20px;
}
@media (width > 768px) {
  section#touchless-solution.section .card-group {
    --_card-min-width: 280px;
    --_card-max-width: 350px;
    max-width: calc(var(--_card-max-width) * 3 + 70px);
    gap: 35px;
  }
}
section#touchless-solution.section .card-group .card {
  width: 100%;
  max-width: var(--_card-max-width);
}
section#touchless-solution.section .card {
  display: grid;
  grid-template: "img" 5fr "ttl" 2fr;
}
section#touchless-solution.section .card__img {
  grid-area: img;
  aspect-ratio: 7/4;
  overflow: clip;
}
section#touchless-solution.section .card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#touchless-solution.section .card__title {
  grid-area: ttl;
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.75;
}
@media (width > 768px) {
  section#touchless-solution.section .card__title {
    font-size: 1.25rem;
  }
}
section#touchless-solution.section .search-result:has([data-suggestion]) {
  margin-bottom: 44px;
}
@media (width > 768px) {
  section#touchless-solution.section .search-result:has([data-suggestion]) {
    margin-bottom: 88px;
  }
}
section#touchless-solution.section .card[data-suggestion] {
  box-shadow: 0 0 0 1px #707070;
}
section#touchless-solution.section .card[data-suggestion]:not(.is-shown) {
  display: none;
}
section#touchless-solution.section .card[data-suggestion] button.modal-pop__open-btn {
  grid-area: 1/1/-1/-1;
  z-index: 1;
  border: none;
}
section#touchless-solution.section .card[data-suggestion] .card__img {
  background-color: #edf5fa;
}
section#touchless-solution.section .card[data-suggestion] .card__img img {
  transition: scale 0.2s;
}
section#touchless-solution.section .card[data-suggestion] .card__img:has(~ button:hover, ~ button:focus) img {
  scale: 1.09;
}
section#touchless-solution.section .card[data-suggestion] .card__title {
  place-self: center;
}
section#touchless-solution.section .card[data-product] {
  position: relative;
  transition-property: translate, box-shadow;
  transition-duration: var(--_duration);
  --_duration: 0.2s;
}
section#touchless-solution.section .card[data-product]:not(.is-shown) {
  display: none;
}
section#touchless-solution.section .card[data-product] .card__img {
  transition: filter var(--_duration);
}
section#touchless-solution.section .card[data-product] .card__title {
  display: grid;
  place-items: center;
  background-color: #000;
  color: #fff;
  transition: background-color var(--_duration);
}
section#touchless-solution.section .card[data-product] .card__title a:any-link {
  display: inline-grid;
  grid-template: ". icon"/max-content 0.75em;
  column-gap: 0.75em;
  align-items: baseline;
}
section#touchless-solution.section .card[data-product] .card__title a:any-link::after {
  content: "";
  grid-area: icon;
  aspect-ratio: 1;
  width: 0.75em;
  background: url("/image/chevron_down.svg") no-repeat center/contain;
  transition: translate var(--_duration);
}
section#touchless-solution.section .card[data-product] .card__title a:any-link::before {
  content: "";
  position: absolute;
  inset: 0;
}
section#touchless-solution.section .card[data-product]:has(a:any-link:hover, a:any-link:focus) {
  translate: 0 4px;
  box-shadow: 0 -4px 12px 0.5px rgb(from #000 r g b/0.16);
}
section#touchless-solution.section .card[data-product]:has(a:any-link:hover, a:any-link:focus) .card__img {
  filter: brightness(1.08);
}
section#touchless-solution.section .card[data-product]:has(a:any-link:hover, a:any-link:focus) .card__title {
  background-color: oklch(from #000 calc(l + 0.4) c h);
}
section#touchless-solution.section .card[data-product]:has(a:any-link:hover, a:any-link:focus) .card__title a:any-link::after {
  translate: 0 4px;
}
section#touchless-solution.section .popup-icon::after {
  content: "";
  display: inline-block;
  background-image: url("/image/popup.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 15px;
  height: 15px;
  margin-left: 10px;
}

#touchless-solution .modal-pop[popover] {
  --modal-padding: 16px;
  --modal-max-height: 80vh;
  --modal-close-btn-size: 50px;
  position: fixed;
  inset: 0;
  margin: auto;
  width: 80vw;
  max-width: 830px;
  height: fit-content;
  max-height: var(--modal-max-height);
  border-radius: 20px;
  border: 1px solid #707070;
  background-color: #fff;
  padding-block: var(--modal-padding);
}
#touchless-solution .modal-pop[popover]::backdrop {
  background-color: rgb(from #fff r g b/0.8);
}
#touchless-solution .modal-pop[popover] ._scroll-container {
  width: 100%;
  max-height: calc(var(--modal-max-height) - var(--modal-padding) * 2);
  overflow-y: auto;
  mask-image: linear-gradient(transparent, #000 1.5rem calc(100% - 1.5rem), transparent);
}
#touchless-solution .modal-pop[popover] button.modal-pop__close-btn {
  position: sticky;
  top: 0;
  margin-left: auto;
  margin-right: var(--modal-padding);
  z-index: 1;
  width: var(--modal-close-btn-size);
  height: var(--modal-close-btn-size);
  aspect-ratio: 1;
  padding: 15px;
  border-radius: 50%;
  border: none;
  background-color: rgb(from #fff r g b/0.8);
  display: grid;
  grid-template-areas: "icon";
  place-items: center;
}
#touchless-solution .modal-pop[popover] button.modal-pop__close-btn:focus, #touchless-solution .modal-pop[popover] button.modal-pop__close-btn:hover {
  background-color: rgb(from #ccc r g b/0.8);
}
#touchless-solution .modal-pop[popover] button.modal-pop__close-btn::before, #touchless-solution .modal-pop[popover] button.modal-pop__close-btn::after {
  grid-area: icon;
  content: "";
  display: block;
  width: 17.5px;
  height: 2px;
  background-color: #666;
}
#touchless-solution .modal-pop[popover] button.modal-pop__close-btn::before {
  rotate: 45deg;
}
#touchless-solution .modal-pop[popover] button.modal-pop__close-btn::after {
  rotate: -45deg;
}
#touchless-solution .modal-pop[popover] ._ctt-wrapper {
  margin-top: calc(-1 * var(--modal-close-btn-size));
  --_padding-top: 30px;
  --_padding-bottom: 30px;
  padding-top: calc(var(--_padding-top) - var(--modal-padding));
  padding-bottom: calc(var(--_padding-bottom) - var(--modal-padding));
  padding-inline: 20px;
}
@media (width > 768px) {
  #touchless-solution .modal-pop[popover] ._ctt-wrapper {
    --_padding-top: 50px;
    --_padding-bottom: 35px;
    padding-inline: 35px;
  }
}
#touchless-solution .modal-pop[popover] ._heading {
  padding-bottom: 0.5em;
  padding-right: var(--modal-close-btn-size);
  border-bottom: 2px solid #707070;
  font-weight: bold;
  font-size: 1.375rem;
}
@media (width > 768px) {
  #touchless-solution .modal-pop[popover] ._heading {
    font-size: clamp(1.375rem, 0.625rem + 1.5625vw, 2.5rem);
  }
}
#touchless-solution .modal-pop[popover] ._img {
  background-color: #edf5fa;
  margin-bottom: 20px;
}
#touchless-solution .modal-pop[popover] ._img img {
  width: 100%;
  object-fit: contain;
}
@media not (width > 768px) {
  #touchless-solution .modal-pop[popover] ._img img:is(#modal-pop03 *, #modal-pop04 *) {
    aspect-ratio: 3/2;
    object-fit: cover;
  }
}
#touchless-solution .modal-pop[popover] ._body {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
}
@media (width > 768px) {
  #touchless-solution .modal-pop[popover] ._body {
    font-size: 1.25rem;
  }
}
#touchless-solution .modal-pop[popover] ._body .fw-bold {
  font-weight: bold;
}
#touchless-solution .modal-pop[popover] ._body ol.ordered-list li {
  padding-left: 1em;
}
#touchless-solution .modal-pop[popover] ._body ol.ordered-list li:not(:last-child) {
  margin-bottom: 1em;
}
@media (width > 768px) {
  #touchless-solution .modal-pop[popover] ._body ol.ordered-list li:not(:last-child) {
    margin-bottom: 2em;
  }
}
#touchless-solution .modal-pop[popover] ._body ol.ordered-list li > p:first-child {
  text-indent: -1em;
}
@media (width > 1024px) {
  #touchless-solution .modal-pop[popover] ._body ol.ordered-list li p:not(:first-child) {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}

section#lineup.section {
  background-color: #fff;
  position: relative;
  /*
    &::before {
      content: "";
      position: absolute;
      top: 0;
      width: 117px;
      height: 49px;
      background-color: #f2f2f2;
      clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    }
  */
}
section#lineup.section .section__inner {
  padding-top: 92px;
  padding-bottom: 81px;
}
@media (width > 768px) {
  section#lineup.section .section__inner {
    padding-top: 185px;
    padding-bottom: 163px;
  }
}
section#lineup.section .section__heading {
  margin-bottom: 60px;
}
@media (width > 768px) {
  section#lineup.section .section__heading {
    margin-bottom: 121px;
  }
}
section#lineup.section .section__body {
  container-type: inline-size;
}
section#lineup.section .note {
  margin-top: 42px;
  margin-inline: auto;
  width: fit-content;
  font-size: 0.75rem;
}
@media (width > 768px) {
  section#lineup.section .note {
    font-size: 1rem;
  }
}

.lineup-item-group {
  margin-inline: calc(50% - min(var(--100vw, 100vw), 1920px) / 2);
  display: grid;
  grid-auto-rows: auto;
  row-gap: 85px;
}
@media (width > 768px) {
  .lineup-item-group {
    grid-auto-rows: 1fr;
    row-gap: 170px;
  }
}
@media (width > 1024px) {
  .lineup-item-group {
    grid-auto-rows: 1fr;
  }
}

.lineup-item {
  --_gutter: calc((min(var(--100vw, 100vw), 1920px) - 100cqi) / 2);
  display: grid;
  grid-template-columns: [left-start] var(--_gutter) [lctt-start right-start] 18cqi [rctt-start] 1fr [lctt-end] 15cqi [left-end rctt-end] var(--_gutter) [right-end];
  grid-template-rows: [left-start] 14fr [right-start] 3fr [left-end] 16fr [right-end];
}
@media (width > 768px) {
  .lineup-item {
    grid-template-columns: [left-start] calc(var(--_gutter) - 40px) [lctt-start] 170fr [right-start] 644fr [left-end lctt-end rctt-start] 607fr [rctt-end] var(--_gutter) [right-end];
    grid-template-rows: [left-start] 7fr [right-start] 53fr [left-end] 7fr [right-end];
  }
}
.lineup-item ._left {
  grid-column: left;
  grid-row: left;
  z-index: 5;
  display: grid;
  grid-template-columns: subgrid;
  grid-template-rows: 1fr auto;
  align-content: space-between;
  width: 100%;
  --_bg-layer: url("/image/touchless/touchless__lineup_bg01.png") no-repeat center / 100% 100%;
  background: var(--_bg-layer);
  mask: var(--_bg-layer);
  padding-block: 21px 29px;
  color: #fff;
}
@media (width > 768px) {
  .lineup-item ._left {
    padding-block: 43px 59px;
  }
}
.lineup-item .lineup-item__text {
  grid-column: lctt;
  margin-bottom: 31px;
}
.lineup-item .lineup-item__name {
  font-weight: bold;
  font-size: 1.75rem;
}
@media (width > 768px) {
  .lineup-item .lineup-item__name {
    font-size: clamp(1.75rem, 1.25rem + 1.0416666667vw, 2.5rem);
    padding-right: 45px;
  }
}
.lineup-item .lineup-item__name span.fw-normal {
  font-weight: normal;
  font-feature-settings: "halt";
}
.lineup-item .lineup-item__name::after {
  content: "";
  margin-block: 12px 23px;
  display: block;
  width: 143px;
  height: 5px;
  background-image: var(--accent-gradient);
}
.lineup-item .lineup-item__desc {
  margin-block: var(--half-leading);
  font-size: 0.875rem;
  line-height: 1.75;
}
@media (width > 768px) {
  .lineup-item .lineup-item__desc {
    font-size: 1.25rem;
    padding-right: 80px;
  }
}
.lineup-item .lineup-item__desc ul.marked-list {
  margin-top: 1lh;
  list-style-type: "・";
  padding-left: 1em;
}
@media (width > 768px) {
  .lineup-item .lineup-item__desc ul.marked-list {
    padding-right: 40px;
  }
}
.lineup-item .lineup-item__img {
  grid-column: left;
  width: 100%;
  max-height: 270px;
  aspect-ratio: 975/270;
  background-color: #999;
  background: var(--_bg-layer);
}
.lineup-item .lineup-item__img img {
  object-fit: cover;
  object-position: right;
  transform: translateX(-20px) translateY(0);
}
@media (width < 1860px) {
  .lineup-item .lineup-item__img img {
    transform: translateX(calc(clamp(2.875rem, 2.6626213592rem + 0.9061488673vw, 3.75rem) * -1)) translateY(0);
  }
}
.lineup-item ._right {
  grid-column: right;
  grid-row: right;
  z-index: 4;
  display: grid;
  grid-template-columns: subgrid;
  grid-template-rows: subgrid;
  width: 100%;
  --_bg-layer: url("/image/touchless/touchless__lineup_bg02.png") no-repeat center / 100% 100%;
  background: var(--_bg-layer);
}
@media (width > 768px) {
  .lineup-item ._right {
    grid-template-rows: unset;
  }
}
.lineup-item ._right ._inner {
  grid-column: rctt;
  grid-row: span 1/-1;
  display: grid;
  align-content: space-evenly;
  row-gap: 24px;
  padding-bottom: 32px;
}
@media (width > 768px) {
  .lineup-item ._right ._inner {
    padding-bottom: 64px;
    padding-top: 0px;
  }
}
.lineup-item .lineup-item__btn-area {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-evenly;
  gap: 16px;
}
@media (width > 768px) {
  .lineup-item .lineup-item__btn-area {
    gap: 24px;
  }
}
@media (width > 1919px) {
  .lineup-item .lineup-item__btn-area {
    column-gap: 58px;
  }
}
.lineup-item .lineup-item__btn-area .btn {
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 0.4em;
  align-items: center;
  align-content: center;
  border-radius: calc(infinity * 1px);
  padding-inline: 0.7em;
  padding-block: 0.85em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-size: 200% 100%;
  background-position: 100% 0;
  background-color: var(--accent-col);
  background-image: linear-gradient(90deg, transparent, var(--accent-col-alt), transparent);
  transition-duration: 0.3s;
  transition-property: background-position;
  width: 175px;
  min-width: fit-content;
  font-size: 0.875rem;
}
.lineup-item .lineup-item__btn-area .btn:focus, .lineup-item .lineup-item__btn-area .btn:hover {
  background-position: 0;
}
.lineup-item .lineup-item__btn-area .btn::before, .lineup-item .lineup-item__btn-area .btn::after {
  content: "";
}
@media (width > 768px) {
  .lineup-item .lineup-item__btn-area .btn {
    width: 250px;
    font-size: 1.25rem;
  }
}
.lineup-item .lineup-item__btn-area .btn--blue {
  --accent-col: var(--blue);
  --accent-col-alt: var(--blue-alt);
}
.lineup-item .lineup-item__btn-area .btn--open-in-new {
  grid-template-columns: auto auto;
  justify-content: center;
  column-gap: 0.5em;
}
.lineup-item .lineup-item__btn-area .btn--open-in-new::after {
  justify-self: end;
  width: 0.75em;
  aspect-ratio: 1;
  background: url("/image/open_in_new.svg") no-repeat center right/contain;
}
.lineup-item .lineup-item__btn-area .btn--open-in-new::before {
  content: none;
}
.lineup-item .lineup-item__btn-area .btn--forward::after {
  justify-self: end;
  width: 0.75em;
  aspect-ratio: 1;
  background: url("/image/chevron_right.svg") no-repeat center right/contain;
}
.lineup-item ._inner .img {
  justify-self: center;
  width: 100%;
  height: 300px;
}
.lineup-item ._inner .img img {
  width: clamp(18.75rem, 9.6480582524rem + 38.8349514563vw, 56.25rem) !important;
  transform: scale(1.4) translateX(-20px) translateY(clamp(2.5rem, 2.1421755725rem + 1.5267175573vw, 2.875rem));
  z-index: 100;
}
@media (width > 768px) and (width < 1024px) {
  .lineup-item ._inner .img img {
    transform: scale(1.5) translateX(10px) translateY(clamp(2.5rem, 2.5rem + 0vw, 2.5rem));
  }
}
@media (width >= 1024px) and (width < 1440px) {
  .lineup-item ._inner .img img {
    transform: scale(1.5) translateX(clamp(0.875rem, 0.7211538462rem + 0.2403846154vw, 0.9375rem)) translateY(clamp(1.25rem, -3.3653846154rem + 7.2115384615vw, 3.125rem));
  }
}
@media (width >= 1440px) {
  .lineup-item ._inner .img img {
    transform: scale(1.4) translateX(30px) translateY(calc(clamp(3.125rem, -6.875rem + 12.5vw, 4.375rem) * -1));
  }
}
.lineup-item ._inner .text-area {
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-weight: bold;
  font-size: 1.09375rem;
  line-height: 1.4;
}
@media (width > 768px) {
  .lineup-item ._inner .text-area {
    font-size: 1.5625rem;
    padding-left: 48px;
  }
}
.lineup-item ._inner ol.ordered-list {
  margin-top: 15px;
  --_maker-size: 36px;
  display: grid;
  grid-template-columns: var(--_maker-size) 1fr;
  column-gap: 10px;
  row-gap: 11px;
}
@media (width > 768px) {
  .lineup-item ._inner ol.ordered-list {
    --_maker-size: 52px;
    column-gap: 15px;
  }
}
.lineup-item ._inner ol.ordered-list li {
  grid-column: span 2;
  display: grid;
  grid-template-columns: subgrid;
  align-items: center;
  counter-increment: dx;
}
.lineup-item ._inner ol.ordered-list li::before {
  content: counter(dx);
  display: inline-grid;
  place-content: center;
  width: var(--_maker-size);
  height: var(--_maker-size);
  border-radius: 50%;
  border: 1px solid #707070;
  background-color: #fff;
  font-family: var(--roboto-font-family);
  font-size: calc(var(--_maker-size) - 10px);
}

section#steps.section {
  background-color: #f2f2f2;
  --_angle: 108.6339521375deg;
  --_stripe-col: rgb(from #999 r g b/0.27);
  background-image: repeating-linear-gradient(var(--_angle), var(--_stripe-col) 0 1px, transparent 0 20px);
  position: relative;
  margin-bottom: 97px;
}
@media (width > 768px) {
  section#steps.section {
    margin-bottom: 195px;
  }
}
section#steps.section::before, section#steps.section::after {
  content: "";
  position: absolute;
  width: 117px;
  height: 49px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
section#steps.section::before {
  top: 0;
  background-color: #fff;
}
section#steps.section::after {
  bottom: -49px;
  background-color: #f2f2f2;
}
section#steps.section .section__inner {
  padding-top: 61px;
  padding-bottom: 73px;
}
@media (width > 768px) {
  section#steps.section .section__inner {
    padding-top: 123px;
    padding-bottom: 146px;
  }
}
section#steps.section .section__title {
  margin-bottom: 38px;
  text-align: center;
  font-weight: bold;
  font-size: clamp(1.6875rem, 1.3893129771rem + 1.272264631vw, 2rem);
}
@media (width > 768px) {
  section#steps.section .section__title {
    margin-bottom: 76px;
    font-size: clamp(2rem, 0.8333333333rem + 2.4305555556vw, 3.75rem);
  }
}

ol.step-list {
  width: 100%;
  max-width: 976px;
  margin-inline: auto;
  --_arrow-size: 15px;
  display: grid;
  row-gap: var(--_arrow-size);
}
@media (width > 768px) {
  ol.step-list {
    --_arrow-size: 30px;
  }
}
ol.step-list .step-list-item {
  display: grid;
  grid-template-rows: subgrid;
  justify-items: center;
  width: 100%;
}
ol.step-list .step-list-item:not(:last-child) {
  grid-row: span 2;
}
ol.step-list .step-list-item:not(:last-child)::after {
  content: "";
  display: block;
  background-image: linear-gradient(to top, var(--accent-col), var(--accent-col-alt));
  width: calc(var(--_arrow-size) * 68.86 / 30);
  height: var(--_arrow-size);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.step-list-item {
  counter-increment: step;
  --_counter-width: 40px;
  --_counter-bgcol: #666;
  --_box-bgcol: #fff;
}
.step-list-item.featured {
  --_counter-bgcol: #006cb4;
  --_box-bgcol: #e5f5ff;
}
@media (width > 768px) {
  .step-list-item {
    --_counter-width: clamp(40px, 16px + 3.125vw, 61px);
  }
}
.step-list-item ._box {
  display: grid;
  grid-template-columns: var(--_counter-width) 1fr;
  row-gap: 10px;
  width: 100%;
  background-color: var(--_box-bgcol);
  --_child-length: 3;
}
.step-list-item ._box:not(:has(> *:nth-child(3))) {
  --_child-length: 2;
}
@media (width > 768px) {
  .step-list-item ._box {
    min-height: 150px;
  }
}
@media (width > 1919px) {
  .step-list-item ._box {
    min-height: 183px;
  }
}
.step-list-item ._box::before {
  grid-column: 1;
  grid-row: 1/span var(--_child-length);
  content: counter(step);
  display: inline-grid;
  place-content: center;
  background-color: var(--_counter-bgcol);
  color: #fff;
  font-family: var(--roboto-font-family);
  font-weight: bold;
  font-size: calc(var(--_counter-width) + 2px);
}
.step-list-item ._box > * {
  grid-column: 2;
  grid-row: span 1;
  padding-inline: 25px;
}
.step-list-item ._box > *:first-child {
  padding-top: 18px;
}
.step-list-item ._box > *:last-child {
  padding-bottom: 24px;
}
@media (width > 768px) {
  .step-list-item ._box > * {
    padding-inline: 50px;
  }
  .step-list-item ._box > *:last-child {
    padding-bottom: 29px;
  }
}
.step-list-item ._title {
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.45;
}
@media (width > 768px) {
  .step-list-item ._title {
    font-size: clamp(1.375rem, 0.625rem + 1.5625vw, 2.5rem);
  }
}
.step-list-item ._desc {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
}
@media (width > 768px) {
  .step-list-item ._desc {
    font-size: 1.25rem;
  }
}
.step-list-item ._note {
  font-size: 0.75rem;
}
@media (width > 768px) {
  .step-list-item ._note {
    font-size: 1rem;
  }
}
.step-list-item .fw-bold {
  font-weight: bold;
  font-size: 1.09375rem;
  line-height: 1.4;
}
@media (width > 768px) {
  .step-list-item .fw-bold {
    font-size: 1.5625rem;
  }
}
.step-list-item .nowrap {
  white-space: nowrap;
}

section#support.section {
  min-height: 611px;
  background: url("/image/touchless/touchless__support01.png") no-repeat left/auto 100%, url("/image/touchless/touchless__support02.png") no-repeat right/auto 100%;
}
section#support.section .content-wrapper {
  background-color: rgb(from #fff r g b/0.65);
  max-width: 760px;
  height: 100%;
  margin-inline: auto;
  padding-block: 59px 19px;
  padding-inline: 30px;
}
@media (width > 768px) {
  section#support.section .content-wrapper {
    padding-block: 119px 38px;
    padding-inline: 37.5px;
  }
}
section#support.section .section__heading {
  margin-bottom: 15px;
}
@media (width > 768px) {
  section#support.section .section__heading {
    margin-bottom: 30px;
  }
}
section#support.section .section__desc {
  margin-bottom: 21px;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
}
@media (width > 768px) {
  section#support.section .section__desc {
    margin-bottom: 42px;
    font-size: 1.25rem;
  }
}
section#support.section .list-box {
  background-color: #fff;
  padding: 20px 16px;
}
@media (width > 768px) {
  section#support.section .list-box {
    padding-block: 40px;
    padding-inline: 34px 20px;
  }
}
section#support.section .list-label {
  margin-bottom: 3px;
  font-weight: bold;
  font-size: 1.09375rem;
}
@media (width > 768px) {
  section#support.section .list-label {
    margin-bottom: 6px;
    font-size: 1.5625rem;
  }
}
section#support.section ul.inlined-list {
  display: flex;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
}
@media (width > 768px) {
  section#support.section ul.inlined-list {
    font-size: 1.25rem;
  }
}
section#support.section ul.inlined-list li:not(:last-child)::after {
  content: "、";
}

section#faq.section .section__inner {
  padding-top: 137px;
  padding-bottom: 69px;
}
@media (width > 768px) {
  section#faq.section .section__inner {
    padding-top: 275px;
    padding-bottom: 138px;
  }
}
section#faq.section .section__heading {
  position: relative;
  text-wrap-style: balance;
  margin-bottom: 35px;
}
section#faq.section .section__heading .section__title-ja {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
section#faq.section .section__heading .section__title-ja .nowrap {
  white-space: nowrap;
}
section#faq.section .section__heading::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  translate: 0px -50%;
  width: min(var(--100vw), 1920px);
  height: calc(min(var(--100vw), 1920px) * 512 / 1920);
  background-color: #edf5fa;
  clip-path: polygon(0% 0%, 50% 30%, 100% 0%, 100% 70%, 50% 100%, 0% 70%);
}
section#faq.section .btn-area {
  margin-top: 30px;
  margin-inline: auto;
  width: fit-content;
}
@media (width > 768px) {
  section#faq.section .btn-area {
    margin-top: 60px;
  }
}
section#faq.section .btn-area .btn {
  font-size: 0.875rem;
  width: clamp(11.25rem, 6.7216057441rem + 19.3211488251vw, 15.875rem);
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 0.4em;
  align-items: center;
  align-content: center;
  border-radius: calc(infinity * 1px);
  padding-inline: 0.7em;
  padding-block: 0.85em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-size: 200% 100%;
  background-position: 100% 0;
  background-color: var(--accent-col);
  background-image: linear-gradient(90deg, transparent, var(--accent-col-alt), transparent);
  transition-duration: 0.3s;
  transition-property: background-position;
}
section#faq.section .btn-area .btn:focus, section#faq.section .btn-area .btn:hover {
  background-position: 0;
}
section#faq.section .btn-area .btn::before, section#faq.section .btn-area .btn::after {
  content: "";
}
section#faq.section .btn-area .btn::after {
  justify-self: end;
  width: 0.75em;
  aspect-ratio: 1;
  background: url("/image/chevron_right.svg") no-repeat center right/contain;
}
@media (width > 768px) {
  section#faq.section .btn-area .btn {
    font-size: 1.25rem;
    width: 334px;
  }
}

section#prod.section .section__inner {
  padding-bottom: 60px;
}
@media (width > 768px) {
  section#prod.section .section__inner {
    padding-bottom: 120px;
  }
}
section#prod.section .section__heading {
  margin-bottom: 26px;
}
@media (width > 768px) {
  section#prod.section .section__heading {
    margin-bottom: 52px;
  }
}
section#prod.section .btn-group {
  margin-inline: auto;
  max-width: 915px;
  display: grid;
  grid-template-columns: min(max-content, 100%);
  justify-content: center;
  gap: 18px;
}
@media (width > 768px) {
  section#prod.section .btn-group {
    grid-template-columns: repeat(2, minmax(max-content, 1fr));
    gap: 26px 25px;
  }
}
section#prod.section .btn-group .btn {
  font-size: 0.875rem;
  --_shadow-col: var(--accent-col);
  display: inline-grid;
  grid-template-columns: 1fr auto;
  column-gap: 1.7em;
  align-items: center;
  align-content: center;
  padding-inline: 1.85em;
  padding-block: 1.05em;
  margin-right: 0.25em;
  margin-bottom: 0.25em;
  box-shadow: 0.25em 0.25em 0 0 var(--_shadow-col);
  background-color: #333;
  color: #fff;
  font-weight: 500;
  line-height: 1.45;
}
section#prod.section .btn-group .btn:focus, section#prod.section .btn-group .btn:hover {
  --_shadow-col: #333;
  background-color: var(--accent-col);
}
section#prod.section .btn-group .btn::after {
  content: "";
  width: 0.75em;
  aspect-ratio: 1;
  background: url("/image/chevron_right.svg") no-repeat center right/contain;
}
@media (width > 768px) {
  section#prod.section .btn-group .btn {
    font-size: 1.25rem;
  }
}

main.main > section.section:last-child {
  margin-bottom: 76px;
}
@media (width > 768px) {
  main.main > section.section:last-child {
    margin-bottom: 96px;
  }
}