@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/wireless_module/wireless_eyecatch.png");
  --_eyecatch-fgcol: #fff;
  --_fgcol: #fff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), var(--_img-src);
}

section#wireless-intro.section {
  position: relative;
}
section#wireless-intro.section .section__inner {
  padding-top: 50px;
  padding-bottom: 57px;
}
@media (width > 768px) {
  section#wireless-intro.section .section__inner {
    padding-top: 100px;
    padding-bottom: 115px;
  }
}
section#wireless-intro.section .intro-title {
  word-break: keep-all;
  margin-bottom: 0.4333333333em;
  font-weight: bold;
  font-size: clamp(1.6875rem, 1.3893129771rem + 1.272264631vw, 2rem);
  line-height: 1.45;
}
@media (width > 768px) {
  section#wireless-intro.section .intro-title {
    font-size: clamp(2rem, 0.8333333333rem + 2.4305555556vw, 3.75rem);
  }
}
section#wireless-intro.section .intro-body {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
}
@media (width > 768px) {
  section#wireless-intro.section .intro-body {
    font-size: 1.25rem;
  }
}
section#wireless-intro.section .section__button-area {
  margin-inline: auto;
  width: fit-content;
  display: grid;
  grid-auto-columns: max-content;
  justify-content: center;
  gap: 25px;
  margin-bottom: 46px;
}
@media (width > 768px) {
  section#wireless-intro.section .section__button-area {
    grid-template-columns: repeat(2, minmax(max-content, 1fr));
    column-gap: 35px;
    margin-bottom: 92px;
  }
}
@media (width > 1380px) {
  section#wireless-intro.section .section__button-area {
    grid-template-columns: repeat(4, minmax(max-content, 1fr));
    column-gap: 35px;
  }
}
section#wireless-intro.section .section__button-area .btn {
  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;
  column-gap: 0;
}
section#wireless-intro.section .section__button-area .btn:focus, section#wireless-intro.section .section__button-area .btn:hover {
  --_shadow-col: #333;
  background-color: var(--accent-col);
}
section#wireless-intro.section .section__button-area .btn::after {
  content: "";
  width: 0.75em;
  aspect-ratio: 1;
  background: url("/image/chevron_down.svg") no-repeat center right/contain;
}
@media (width > 768px) {
  section#wireless-intro.section .section__button-area .btn {
    font-size: 1.25rem;
  }
}

.background {
  overflow: hidden;
  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.module-service .module-service__comment {
  display: grid;
  justify-items: center;
}
section.module-service .module-service__comment p {
  padding-block: 0.15em;
  padding-inline: 1lh;
  background-color: #333;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.45;
}
@media (width > 768px) {
  section.module-service .module-service__comment p {
    font-size: clamp(1.125rem, 0.2083333333rem + 1.9097222222vw, 2.5rem);
  }
}
section.module-service .module-service__comment::after {
  --_append-size: 15px;
  content: "";
  display: block;
  background-color: #333;
  width: calc(var(--_append-size) * 68.86 / 30);
  height: var(--_append-size);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
@media (width > 768px) {
  section.module-service .module-service__comment::after {
    --_append-size: 30px;
  }
}
section.module-service .module-service__title {
  position: absolute;
  z-index: 10;
  top: clamp(7.5rem, 6.3072519084rem + 5.0890585242vw, 8.75rem);
  left: clamp(1.25rem, -2.6941747573rem + 16.8284789644vw, 17.5rem);
  width: 100%;
  height: 100%;
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-weight: bold;
  font-size: clamp(1.25rem, 0.7729007634rem + 2.0356234097vw, 1.75rem);
  line-height: 1.8;
  padding-inline: 10px;
}
@media (width > 768px) {
  section.module-service .module-service__title {
    width: 50%;
    top: clamp(9.375rem, 5.6168549088rem + 7.819287576vw, 15rem);
    font-size: clamp(1.75rem, 1.25rem + 1.0416666667vw, 2.5rem);
  }
}
section.module-service .thumb {
  position: absolute;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 10;
  top: 230px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  padding-inline: 10px;
  height: auto;
}
@media (width > 768px) {
  section.module-service .thumb {
    padding-inline: 0px;
    top: clamp(15rem, 15rem + 0vw, 15rem);
    left: 62%;
    transform: translateX(-49%);
    width: clamp(37.5rem, 16.2610619469rem + 44.2477876106vw, 50rem);
  }
}
@media (width > 1220px) {
  section.module-service .thumb {
    padding-inline: 0px;
    top: clamp(10rem, 0.46875rem + 12.5vw, 11.25rem);
    width: clamp(50rem, 6.4285714286rem + 57.1428571429vw, 75rem);
  }
}
@media (width > 1380px) {
  section.module-service .thumb {
    top: clamp(8.75rem, 8.75rem + 0vw, 8.75rem);
  }
}
section.module-service .modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}
section.module-service .modal-bg {
  position: fixed;
  inset: 0;
}
section.module-service .modal-inner {
  position: relative;
  z-index: 10;
}
section.module-service .img-zoom-area {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pinch-zoom;
  background: #fff;
  border-radius: 0;
  max-width: 100vw;
  max-height: 90vh;
}
section.module-service .zoomable-img {
  width: 1000px;
  /* 画像の実サイズ以上推奨 */
  max-width: none;
  height: auto;
  display: block;
}
section.module-service .section-inner {
  position: relative;
  padding: 60px 20px;
  height: clamp(32.5rem, 16.9942748092rem + 66.1577608142vw, 48.75rem);
}
@media (width > 768px) {
  section.module-service .section-inner {
    height: clamp(43.75rem, 28.8827433628rem + 30.9734513274vw, 52.5rem);
    padding: 100px 40px 40px 40px;
  }
}
@media (width > 1220px) {
  section.module-service .section-inner {
    height: clamp(46.25rem, 17.9285714286rem + 37.1428571429vw, 62.5rem);
  }
}
section.module-service .feature-card {
  position: relative;
  margin: 0 auto 90px auto;
  max-width: 31.25rem;
  background: #fff;
  padding-inline: 0.875rem;
  padding-block: 40px 20px;
  text-align: left;
  box-sizing: border-box;
}
@media (width > 768px) {
  section.module-service .feature-card {
    max-width: clamp(31.25rem, 1.4312977099rem + 127.2264631043vw, 62.5rem);
    padding-inline: clamp(0.875rem, -1.8683206107rem + 11.7048346056vw, 3.75rem);
  }
}
section.module-service .feature-card__comment {
  margin-top: -60px;
  display: grid;
  justify-items: center;
}
section.module-service .feature-card__comment p {
  padding-block: 0.15em;
  text-align: center;
  width: 8em;
  background-color: #f00;
  color: #fff;
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.45;
}
@media (width > 768px) {
  section.module-service .feature-card__comment p {
    font-size: clamp(1.375rem, 0.625rem + 1.5625vw, 2.5rem);
  }
}
section.module-service .feature-card__comment::after {
  --_append-size: 15px;
  content: "";
  display: block;
  background-color: #f00;
  width: calc(var(--_append-size) * 68.86 / 30);
  height: var(--_append-size);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
@media (width > 768px) {
  section.module-service .feature-card__comment::after {
    --_append-size: 30px;
  }
}
section.module-service .feature-card__list li {
  display: flex;
  align-items: flex-start;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 20px;
}
section.module-service .feature-card__list li .feature-card__checkbox {
  width: 1.5em;
  height: 1.25em;
  margin-right: 0.4em;
  margin-top: 0.2em;
  display: inline;
}
@media (width > 768px) {
  section.module-service .feature-card__list li {
    font-size: clamp(1.25rem, 0.8333333333rem + 0.8680555556vw, 1.875rem);
  }
}

section#steps.section {
  position: relative;
  margin-bottom: 60px;
}
@media (width > 768px) {
  section#steps.section {
    margin-bottom: 100px;
  }
}
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.shipping ._box {
  min-height: 6.875rem;
  grid-template-rows: 1fr;
}
.step-list-item.shipping ._box > ._title {
  align-self: center;
  padding-top: 0;
  padding-bottom: 0;
}
@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#factory.section .section__inner {
  padding-bottom: 66px;
}
@media (width > 768px) {
  section#factory.section .section__inner {
    padding-bottom: 132px;
  }
}
section#factory.section .colored-box:is(.section__inner > *) {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgb(from #000 r g b/0.16);
  padding-top: 31px;
  padding-bottom: 27px;
  padding-inline: 36px;
}
@media (width > 768px) {
  section#factory.section .colored-box:is(.section__inner > *) {
    padding-bottom: 55px;
    padding-inline: clamp(36px, 23.3333333333px + 1.6493055556vw, 55px);
    margin-inline: 10px;
  }
}
section#factory.section .section__title {
  margin-bottom: 1em;
  text-align: center;
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.45;
}
@media (width > 768px) {
  section#factory.section .section__title {
    margin-bottom: 29px;
    font-size: clamp(1.375rem, 0.625rem + 1.5625vw, 2.5rem);
  }
}
section#factory.section .grid-area {
  margin-bottom: 30px;
  display: grid;
}
@media (width > 768px) {
  section#factory.section .grid-area {
    margin-bottom: 60px;
  }
}
@media not (width > 1024px) {
  section#factory.section .grid-area .tour-img {
    order: -1;
    justify-self: center;
    margin-bottom: 24px;
  }
}
@media (width > 1024px) {
  section#factory.section .grid-area {
    grid-template-areas: "desc   img" "notice img";
    column-gap: 45px;
  }
  section#factory.section .grid-area .tour-desc {
    grid-area: desc;
  }
  section#factory.section .grid-area .tour-notice {
    grid-area: notice;
  }
  section#factory.section .grid-area .tour-img {
    grid-area: img;
  }
}
section#factory.section .grid-area .colored-box {
  background-color: #edf5fa;
}
section#factory.section .tour-desc,
section#factory.section .tour-notice {
  padding: 1.2em 1.4em;
  font-size: 0.875rem;
}
@media (width > 768px) {
  section#factory.section .tour-desc,
  section#factory.section .tour-notice {
    font-size: 1.25rem;
  }
}
@media (width > 1024px) {
  section#factory.section .tour-desc,
  section#factory.section .tour-notice {
    max-width: 481px;
  }
}
section#factory.section .tour-desc ._label,
section#factory.section .tour-notice ._label {
  margin-bottom: 0.6em;
  margin-left: -5px;
  font-weight: bold;
}
section#factory.section .tour-desc ._body,
section#factory.section .tour-notice ._body {
  margin-block: var(--half-leading);
  font-weight: 500;
  line-height: 1.75;
}
section#factory.section .tour-desc dl._body,
section#factory.section .tour-notice dl._body {
  display: grid;
  grid-template-columns: 6em 1fr;
  /* 左カラム幅はお好みで */
  row-gap: 0.5rem;
}
section#factory.section .tour-desc dl._body dt,
section#factory.section .tour-notice dl._body dt {
  font-weight: bold;
  margin: 0;
}
section#factory.section .tour-desc dl._body dd,
section#factory.section .tour-notice dl._body dd {
  margin: 0;
  /* デフォのインデントを消す */
  word-break: break-word;
}
section#factory.section .tour-img {
  max-width: 545px;
  width: 100%;
}
section#factory.section .tour-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#factory.section .btn-area {
  margin-inline: auto;
  width: fit-content;
}
section#factory.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#factory.section .btn-area .btn:focus, section#factory.section .btn-area .btn:hover {
  background-position: 0;
}
section#factory.section .btn-area .btn::before, section#factory.section .btn-area .btn::after {
  content: "";
}
section#factory.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#factory.section .btn-area .btn {
    font-size: 1.25rem;
    width: 334px;
  }
}

section#faq.section {
  position: relative;
}
section#faq.section::after {
  content: "";
  top: 0;
  position: absolute;
  width: 117px;
  height: 49px;
  background-color: #f2f2f2;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
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(15.625rem, 15.3802219321rem + 1.044386423vw, 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: 470px;
  }
}

section#case.section .section__inner {
  padding-top: 34px;
  padding-bottom: 60px;
}
@media (width > 768px) {
  section#case.section .section__inner {
    padding-top: 68px;
    padding-bottom: 121px;
  }
}
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: 450px;
  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: 440/433;
  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#prod.section .section__inner {
  padding-bottom: 100px;
}
@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;
  }
}
section#prod.section .btn-group .syncform {
  font-size: 0.875rem;
  letter-spacing: -0.05em;
}
@media (width > 768px) {
  section#prod.section .btn-group .syncform {
    font-size: 1rem;
  }
}