@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;
}

.eyecatch {
  --_img-src: url("/image/readonlymemory/readonlymemory__eyecatch.png");
  --_img2x-src: url("/image/readonlymemory/readonlymemory__eyecatch@2x.png");
  --_eyecatch-fgcol: #fff;
}

section.section.container-outer .section__inner.container-inner {
  max-width: 1220px;
  padding-inline: 0;
}

section#rom-intro.section .section__inner {
  padding-top: 50px;
  padding-bottom: 57px;
}
@media (width > 768px) {
  section#rom-intro.section .section__inner {
    padding-top: 100px;
    padding-bottom: 115px;
  }
}
section#rom-intro.section .intro-title {
  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#rom-intro.section .intro-title {
    font-size: clamp(2rem, 0.8333333333rem + 2.4305555556vw, 3.75rem);
  }
}
section#rom-intro.section .intro-body {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
}
@media (width > 768px) {
  section#rom-intro.section .intro-body {
    font-size: 1.25rem;
  }
}
section#rom-intro.section .btn-area {
  margin-inline: auto;
  width: fit-content;
  display: grid;
  grid-auto-columns: min(max-content, 100%);
  justify-content: center;
  gap: 25px;
  margin-bottom: 46px;
}
@media (width > 768px) {
  section#rom-intro.section .btn-area {
    grid-template-columns: repeat(2, minmax(max-content, 1fr));
    column-gap: 35px;
    margin-bottom: 92px;
  }
}
@media (width > 1220px) {
  section#rom-intro.section .btn-area {
    grid-template-columns: repeat(4, minmax(max-content, 1fr));
    column-gap: 35px;
  }
}
section#rom-intro.section .btn-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#rom-intro.section .btn-area .btn:focus, section#rom-intro.section .btn-area .btn:hover {
  --_shadow-col: #333;
  background-color: var(--accent-col);
}
section#rom-intro.section .btn-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#rom-intro.section .btn-area .btn {
    font-size: 1.25rem;
  }
}

.section-wrapper {
  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#reasons.section .section__inner {
  padding-top: 63px;
  padding-bottom: 77px;
}
@media (width > 768px) {
  section#reasons.section .section__inner {
    padding-top: 127px;
    padding-bottom: 155px;
  }
}
section#reasons.section .section__heading {
  text-align: center;
  margin-bottom: 28px;
}
@media (width > 768px) {
  section#reasons.section .section__heading {
    margin-bottom: 56px;
  }
}
section#reasons.section .section__heading .bubble {
  display: grid;
  justify-items: center;
}
section#reasons.section .section__heading .bubble p {
  padding-block: 0.15em;
  padding-inline: 1lh;
  background-color: #333;
  color: #fff;
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.45;
}
@media (width > 768px) {
  section#reasons.section .section__heading .bubble p {
    font-size: clamp(1.375rem, 0.625rem + 1.5625vw, 2.5rem);
  }
}
section#reasons.section .section__heading .bubble::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#reasons.section .section__heading .bubble::after {
    --_append-size: 30px;
  }
}
section#reasons.section .section__title {
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-weight: bold;
  font-size: clamp(1.6875rem, 1.3893129771rem + 1.272264631vw, 2rem);
  line-height: 1.45;
}
@media (width > 768px) {
  section#reasons.section .section__title {
    font-size: clamp(2rem, 0.8333333333rem + 2.4305555556vw, 3.75rem);
  }
}
section#reasons.section .section__body {
  container-type: inline-size;
}

@property --_to-px {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
.reason-box-group {
  --_col: 2;
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: repeat(var(--_col), 1fr);
  justify-content: center;
  justify-items: center;
  gap: 30px 16px;
  zoom: var(--_zoom-value);
  -webkit-text-size-adjust: initial;
  --_to-px: clamp(335px, 100cqi, 1220px);
  --_col-width: calc((var(--_to-px) - 16px * (var(--_col) - 1)) / var(--_col));
  --_zoom-value: calc(tan(atan2(var(--_col-width), 396px)));
}
@media (width > 600px) {
  .reason-box-group {
    --_col: 3;
  }
}
.reason-box-group .reason-box {
  width: 100%;
  max-width: min(391px, 100% - 5px);
  margin-right: 5px;
  margin-bottom: 5px;
  position: relative;
  border: 3px solid;
  border-image: linear-gradient(315deg, transparent 45px, var(--accent-col) 45px) 1;
  --_shape-bg-layer: linear-gradient(315deg, transparent 45px, #fff 45px) no-repeat center / 100% 100%;
}
.reason-box-group .reason-box::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: var(--accent-col);
  width: calc(100% + 3px);
  height: calc(100% + 3px);
  mask: var(--_shape-bg-layer);
}
.reason-box-group .reason-box ._inner {
  position: relative;
  background: var(--_shape-bg-layer);
  width: 100%;
  height: 100%;
  padding-inline: 16px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: grid;
  align-content: space-between;
}
@media not (width > 600px) {
  .reason-box-group .reason-box ._inner:is(.reason-box:nth-child(3) *) {
    align-content: center;
    row-gap: 20px;
  }
}
.reason-box-group .reason-box ._inner:is(.reason-box:nth-child(4) *) {
  row-gap: 20px;
}

.reason-box__title {
  text-align: center;
  font-weight: bold;
  font-size: 31px;
  line-height: 1.2580645161;
}
.reason-box__title:is(.reason-box:nth-child(-n+3) *) {
  margin-bottom: 20px;
}
.reason-box__title:is(.reason-box:nth-child(n+5) *) {
  margin-bottom: 10px;
}

.reason-box__body {
  display: contents;
}
.reason-box__body ._typography {
  font-weight: bold;
  display: grid;
  grid-template-areas: "num pre " "num unit";
  align-items: center;
  justify-content: center;
  justify-items: center;
  column-gap: 5px;
}
.reason-box__body ._typography .number {
  grid-area: num;
  margin-block: calc((1cap - 1lh) / 2);
  font-family: var(--roboto-font-family);
  font-size: 138px;
}
.reason-box__body ._typography .number:is(.reason-box:nth-child(3) *) {
  font-size: 223px;
}
.reason-box__body ._typography .number:is(.reason-box:nth-child(5) *) {
  font-size: 180px;
}
.reason-box__body ._typography .number,
.reason-box__body ._typography .unit {
  color: #CB4040;
}
.reason-box__body ._typography .prepend,
.reason-box__body ._typography .unit {
  margin-block: var(--half-leading);
  font-weight: bold;
  font-size: 40px;
}
.reason-box__body ._typography .unit {
  grid-area: unit;
}
.reason-box__body ._typography .unit:is(.reason-box:nth-child(2) *) {
  font-size: 60px;
}
.reason-box__body ._typography .unit:is(.reason-box:nth-child(3) *) {
  font-size: 65px;
}
.reason-box__body ._typography .unit:is(.reason-box:nth-child(5) *) {
  font-size: 65px;
}
.reason-box__body ._desc:is(.reason-box:nth-child(-n+2) *) {
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 25px;
  line-height: 1.4;
}
.reason-box__body ._desc:is(.reason-box:nth-child(5) *) {
  margin-top: 20px;
  font-size: 14px !important;
  line-height: 1.4 !important;
  letter-spacing: 0.01em !important;
  word-break: break-word !important;
}
.reason-box__body ._img {
  width: 100%;
}
.reason-box__body ._img figcaption {
  margin-top: 11px;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
}
.reason-box__body ._img img {
  width: 100%;
}
.reason-box__body ._img:is(.reason-box:nth-child(n+5) *) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.reason-box__body ._img:is(.reason-box:nth-child(n+5) *) img {
  width: unset !important;
  object-fit: unset !important;
}
.reason-box__body ._subtitle {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 20px;
}
.reason-box__body ._desc:is(.reason-box:nth-child(n+4) *) {
  font-size: 16px;
  line-height: 1.5625;
}
@media (width > 768px) {
  .reason-box__body ._desc:is(.reason-box:nth-child(n+4) *) {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}
.reason-box__body ._desc:is(.reason-box:nth-child(n+5) *) {
  font-weight: 500;
}

section#equip.section .section__inner {
  padding-bottom: 55px;
}
section#equip.section .section__title {
  margin-bottom: 1em;
  text-align: center;
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.45;
}
@media (width > 768px) {
  section#equip.section .section__title {
    margin-bottom: 26px;
    font-size: clamp(1.375rem, 0.625rem + 1.5625vw, 2.5rem);
  }
}
section#equip.section .img-group {
  --_min-width: 240px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(var(--_min-width), 100%), 1fr));
  justify-content: center;
  justify-items: center;
}
@media not (width > 768px) {
  section#equip.section .img-group {
    margin-inline: auto;
    max-width: 610px;
  }
}
@media (width > 768px) {
  section#equip.section .img-group {
    --_min-width: 280px;
  }
}
section#equip.section .img-item {
  width: 100%;
  aspect-ratio: 305/278;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #333;
  background: transparent linear-gradient(132deg, #F7FBFD 0%, #E4E8EB 100%) 0% 0% no-repeat padding-box;
}
@media not (width > 768px) {
  section#equip.section .img-item {
    max-width: 305px;
  }
}
section#equip.section .img-item .img-item__caption {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5em 0.75em;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.4285714286;
}
@media (width > 768px) {
  section#equip.section .img-item .img-item__caption {
    font-size: 1.3125rem;
  }
}
section#equip.section .img-item img {
  display: block;
  justify-self: center;
  align-self: center;
}

section#marking.section .section__inner {
  padding-bottom: 62px;
}
@media (width > 768px) {
  section#marking.section .section__inner {
    padding-bottom: 125px;
  }
}
section#marking.section .colored-box {
  background-color: #fff;
  border-radius: 10px;
  padding-top: 19px;
  padding-bottom: 28px;
  padding-inline: 32px;
}
@media (width > 768px) {
  section#marking.section .colored-box {
    padding-top: 38px;
    padding-bottom: 56px;
    padding-inline: clamp(32px, 20px + 1.5625vw, 50px);
  }
}
section#marking.section .section__title {
  margin-bottom: 1em;
  text-align: center;
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.45;
}
@media (width > 768px) {
  section#marking.section .section__title {
    margin-bottom: 32px;
    font-size: clamp(1.375rem, 0.625rem + 1.5625vw, 2.5rem);
  }
}

.marking-item-group {
  margin-inline: auto;
  max-width: 635px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  justify-content: center;
  justify-items: center;
  gap: 30px 35px;
}
@media (width > 768px) {
  .marking-item-group {
    max-width: 1120px;
    gap: 35px;
  }
}
.marking-item-group .marking-item {
  grid-row: span 3;
  width: 100%;
  max-width: 300px;
  display: grid;
  grid-template-rows: subgrid;
  row-gap: 8px;
}
@media (width > 768px) {
  .marking-item-group .marking-item {
    max-width: 350px;
    row-gap: 13.5px;
  }
}

.marking-item__img {
  width: 100%;
  aspect-ratio: 350/252;
  background: transparent linear-gradient(126deg, #F7FBFD 0%, #E4E8EB 100%) 0% 0% no-repeat padding-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marking-item__img img {
  display: block;
  object-fit: cover;
  color: #fff;
}

.marking-item__name {
  font-weight: bold;
  font-size: 0.875rem;
}
@media (width > 768px) {
  .marking-item__name {
    font-size: 1.25rem;
  }
}

.marking-item__desc {
  margin-top: var(--half-leading);
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.5625;
}
@media (width > 768px) {
  .marking-item__desc {
    font-size: 1rem;
  }
}

section.section:is(#flow1, #flow2) {
  margin-bottom: 101px;
}
@media (width > 768px) {
  section.section:is(#flow1, #flow2) {
    margin-bottom: 202px;
  }
}
section.section:is(#flow1, #flow2) .section__title {
  margin-bottom: 0.95em;
  text-align: center;
  font-weight: bold;
  font-size: clamp(1.6875rem, 1.3893129771rem + 1.272264631vw, 2rem);
  line-height: 1.45;
}
@media (width > 768px) {
  section.section:is(#flow1, #flow2) .section__title {
    font-size: clamp(2rem, 0.8333333333rem + 2.4305555556vw, 3.75rem);
  }
}

.step-list-wrapper {
  width: 100%;
  max-width: 976px;
  margin-inline: auto;
}

ol.step-list {
  --_arrow-size: 15px;
  display: grid;
  row-gap: var(--_arrow-size);
}
@media (width > 768px) {
  ol.step-list {
    --_arrow-size: 30px;
  }
}
ol.step-list:has(+ .step-list-item) {
  margin-bottom: calc(var(--_arrow-size) * 55 / 30);
}
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;
  --_counter-content: counter(step);
}
.step-list-item:not(ol.step-list > .step-list-item) {
  --_counter-content: attr(data-counter, "OP");
}
.step-list-item.featured {
  --_counter-bgcol: #006cb4;
  --_box-bgcol: #fff;
}
@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);
  box-shadow: 0px 3px 6px rgb(from #000 r g b/0.16);
  --_box-padding-x: 25px;
  --_child-length: 3;
}
.step-list-item ._box:not(:has(> *:nth-child(3))) {
  --_child-length: 2;
}
.step-list-item ._box:not(:has(> *:nth-child(2))) {
  --_child-length: 1;
}
@media (width > 768px) {
  .step-list-item ._box {
    --_box-padding-x: 50px;
    min-height: 100px;
  }
}
@media (width > 1919px) {
  .step-list-item ._box {
    min-height: 133px;
  }
}
.step-list-item ._box::before {
  grid-column: 1;
  grid-row: 1/span var(--_child-length);
  content: var(--_counter-content);
  display: inline-grid;
  place-content: center;
  background-color: var(--_counter-bgcol);
  color: #fff;
  text-align: center;
  font-family: var(--roboto-font-family);
  font-weight: bold;
  font-size: calc(var(--_counter-width) + 2px);
}
.step-list-item ._box:not(ol.step-list > .step-list-item ._box)::before {
  font-size: calc(var(--_counter-width) * 50 / 61);
  line-height: 1;
  overflow-wrap: anywhere;
}
.step-list-item ._box > * {
  grid-column: 2;
  grid-row: span 1;
  padding-inline: var(--_box-padding-x);
}
.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 > *: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 ._title:only-child {
  align-self: center;
}
.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 .fw-bold {
  font-weight: bold;
}
.step-list-item .red {
  color: #ff0000;
}
.step-list-item .nowrap {
  white-space: nowrap;
}
.step-list-item:has(ol._list) ._box > * {
  --_box-padding-left: 16px;
  padding-inline: var(--_box-padding-left) var(--_box-padding-x);
}
.step-list-item:has(ol._list) ol._list {
  --_maker-size: 32px;
  display: grid;
  grid-template-columns: var(--_maker-size) 1fr;
  column-gap: 7px;
  row-gap: 25px;
}
@media (width > 768px) {
  .step-list-item:has(ol._list) ol._list {
    --_maker-size: 54px;
    column-gap: 13px;
    row-gap: 50px;
  }
}
@media (width > 1919px) {
  .step-list-item:has(ol._list) ol._list {
    row-gap: 100px;
  }
}
.step-list-item:has(ol._list) ol._list li {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  grid-template-columns: subgrid;
  grid-template-rows: subgrid;
  align-items: center;
  row-gap: 14px;
  counter-increment: step-nested;
}
.step-list-item:has(ol._list) ol._list li::before {
  content: counter(step-nested);
  display: inline-grid;
  place-content: center;
  width: var(--_maker-size);
  height: var(--_maker-size);
  border-radius: 50%;
  background-color: #707070;
  color: #fff;
  font-family: var(--roboto-font-family);
  font-weight: bold;
  font-size: calc(var(--_maker-size) * 40 / 54);
  line-height: 1.45;
}
@media not (width > 768px) {
  .step-list-item:has(ol._list) ol._list li > ._desc {
    grid-column: span 2;
    padding-left: calc(var(--_box-padding-x) - var(--_box-padding-left));
  }
}
@media (width > 768px) {
  .step-list-item:has(ol._list) ol._list li > * {
    grid-column: 2;
  }
}
.step-list-item:has(ol._list) ol._list ._title:has(span.nowrap) {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.25em;
}
.step-list-item:has(ol._list) ol._list ._title:has(span.nowrap) .small {
  font-size: 0.75em;
}
.step-list-item:has(ol._list) ol._list ._title:has(span.nowrap) span.small.nowrap {
  font-feature-settings: "halt";
}
.step-list-item:has(ol._list) ol._list .link-to-step {
  margin-inline: 0.25em;
  padding-inline: 0.25em;
  background-color: var(--_counter-bgcol);
  color: #fff;
  font-family: var(--roboto-font-family);
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}
.step-list-item:has(ol._list) ol._list .on-filled-circle {
  margin-right: 0.25em;
  display: inline-grid;
  align-content: center;
  width: 1.35em;
  height: 1.35em;
  border-radius: 50%;
  background-color: var(--_counter-bgcol);
  color: #fff;
  text-align: center;
  font-family: var(--roboto-font-family);
  font-weight: bold;
}

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;
  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#enviroment.section {
  padding-bottom: 80px;
  background-color: #FFF;
}
section#enviroment.section .content-wrapper {
  max-width: 760px;
  height: 100%;
  margin-inline: auto;
  padding-block: 40px 19px;
}
@media (width > 768px) {
  section#enviroment.section .content-wrapper {
    padding-block: 100px 20px;
    padding-inline: 37.5px;
  }
}
section#enviroment.section .section__heading {
  color: #333;
  margin-bottom: 15px;
}
@media (width > 768px) {
  section#enviroment.section .section__heading {
    margin-bottom: 60px;
  }
}
section#enviroment.section .section__desc {
  color: #333;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
}
@media (width > 768px) {
  section#enviroment.section .section__desc {
    font-size: 1.25rem;
  }
}
section#enviroment.section dl.section__desc {
  display: grid;
  grid-template-columns: 10em 1fr;
  /* 左カラム幅はお好みで */
  row-gap: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
}
section#enviroment.section dl.section__desc dt {
  font-weight: bold;
  margin: 0;
}
section#enviroment.section dl.section__desc dd {
  margin: 0;
  /* デフォのインデントを消す */
  word-break: break-word;
}
@media (width > 768px) {
  section#enviroment.section dl.section__desc {
    font-size: 1.25rem;
  }
}
section#enviroment.section .text-area {
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4285714286;
}
@media (width > 768px) {
  section#enviroment.section .text-area {
    font-size: 1.3125rem;
  }
}

/* ====================
   Compatibility
   ==================== */
section#compatibility.section {
  position: relative;
  background-color: #FFF;
}
section#compatibility.section .section__inner {
  padding-bottom: 69px;
}
@media (width > 768px) {
  section#compatibility.section .section__inner {
    padding-bottom: 138px;
  }
}
section#compatibility.section .faq-item-group--noQ details.faq-item {
  --_Q-width: 0;
}
section#compatibility.section .faq-item-group--noQ summary.faq-item__que {
  grid-template-columns: 1fr var(--_icon-size);
}
section#compatibility.section .faq-item-group--noQ summary.faq-item__que::before {
  content: none;
}
section#compatibility.section .faq-item-group--noQ .faq-item__ans {
  padding-left: var(--_padding-left);
}

section#faq.section {
  position: relative;
  /*
    &::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(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#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: 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: 4/3;
  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__desc-list {
  display: grid;
  grid-template-columns: 10em 1fr;
  row-gap: 0.5rem;
}

.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: 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: max-content;
  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;
  }
}

main.main > section.section:last-child {
  margin-bottom: 76px;
}
@media (width > 768px) {
  main.main > section.section:last-child {
    margin-bottom: 96px;
  }
}