@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;
}

.nvprom-main-visual {
  position: relative;
  max-width: 100%;
  height: clamp(18.75rem, 18.125rem + 3.125vw, 21.875rem);
  --_img-src: url("/image/nvprom/nvprom__eyecatch.png");
  --_img2x-src: url("/image/nvprom/nvprom__eyecatch@2x.png");
  background-image: var(--_img-src);
  background-image: -webkit-image-set(var(--_img-src) 1x, var(--_img2x-src) 2x);
  background-image: image-set(var(--_img-src) 1x, var(--_img2x-src) 2x);
  background-position: center;
  background-size: cover;
}
.nvprom-main-visual::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  display: block;
  width: 100%;
  margin: auto;
  background-image: url("/image/company/bg_company-main-visual-semi-circle.png");
  background-size: cover;
  content: "";
  aspect-ratio: 1920/60;
}
.nvprom-main-visual .container-inner {
  display: flex;
  padding-top: clamp(1.375rem, 1.163rem + 0.906vw, 2.25rem);
  justify-content: center;
  align-items: center;
}
.nvprom-main-visual .section__heading::after {
  transform: translateY(calc(-1 * clamp(0.188rem, 0.157rem + 0.129vw, 0.313rem)));
}
.nvprom-main-visual .section__title-en {
  color: #fff;
  letter-spacing: 0.02em;
}
.nvprom-main-visual .section__title-ja {
  color: #fff;
  transform: translateY(calc(-1 * clamp(0.188rem, 0.157rem + 0.129vw, 0.313rem)));
}

.eyecatch {
  --_img-src: url("/image/nvprom/nvprom__eyecatch.png");
  --_img2x-src: url("/image/nvprom/nvprom__eyecatch@2x.png");
  --_eyecatch-fgcol: #fff;
}

section#nav-area.section .container-inner {
  max-width: 1260px;
  padding-top: 50px;
  padding-bottom: 80px;
}
@media (width > 768px) {
  section#nav-area.section .container-inner {
    padding-top: 100px;
  }
}
section#nav-area.section .btn-area {
  margin-inline: auto;
  width: fit-content;
  display: grid;
  grid-auto-columns: max-content;
  justify-content: center;
  gap: 25px;
}
@media (width > 768px) {
  section#nav-area.section .btn-area {
    grid-template-columns: repeat(4, minmax(max-content, 1fr));
    column-gap: 35px;
  }
}
section#nav-area.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#nav-area.section .btn-area .btn:focus, section#nav-area.section .btn-area .btn:hover {
  --_shadow-col: #333;
  background-color: var(--accent-col);
}
section#nav-area.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#nav-area.section .btn-area .btn {
    font-size: 1.25rem;
  }
}

.nvprom-about-nvprom {
  margin-top: clamp(1.25rem, 0.6432038835rem + 2.5889967638vw, 3.75rem);
}
.nvprom-about-nvprom .content {
  display: flex;
  width: 100%;
}
@media (max-width: 767px) {
  .nvprom-about-nvprom .content {
    flex-direction: column;
    align-items: center;
  }
}
.nvprom-about-nvprom__text {
  width: clamp(20.3125rem, 16.140776699rem + 17.7993527508vw, 37.5rem);
  margin-top: clamp(1.875rem, -1.417rem + 6.858vw, 6.813rem);
  margin-left: auto;
  margin-right: clamp(1rem, 0.0291262136rem + 4.142394822vw, 5rem);
  padding-left: clamp(0.375rem, 0.314rem + 0.259vw, 0.625rem);
}
@media (max-width: 767px) {
  .nvprom-about-nvprom__text {
    width: fit-content;
    margin-left: clamp(0.5rem, -3.7938931298rem + 18.320610687vw, 5rem);
  }
}
.nvprom-about-nvprom__text h3 {
  font-size: clamp(1.875rem, 1.42rem + 1.942vw, 3.75rem);
  font-weight: bold;
  color: #333;
}
.nvprom-about-nvprom__text p {
  margin-top: clamp(0.625rem, 0.473rem + 0.647vw, 1.25rem);
  font-size: clamp(0.75rem, 0.629rem + 0.518vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
  color: #333;
}
.nvprom-about-nvprom__img {
  width: 53.6%;
}
@media (max-width: 767px) {
  .nvprom-about-nvprom__img {
    display: flex;
    width: 100%;
    margin-top: 5%;
    justify-content: flex-end;
  }
  .nvprom-about-nvprom__img img {
    width: 75%;
  }
}

.nvprom-activity-examples {
  position: relative;
  z-index: 5;
  overflow-x: hidden;
  margin-top: clamp(1.25rem, 1.22rem + 0.129vw, 1.375rem);
}
.nvprom-activity-examples .content {
  display: flex;
  width: 100%;
  align-items: center;
}
@media (max-width: 767px) {
  .nvprom-activity-examples .content {
    flex-direction: column;
    align-items: center;
  }
}
.nvprom-activity-examples__text {
  width: clamp(26.563rem, 19.271rem + 15.191vw, 37.5rem);
  margin-left: clamp(0.625rem, -2.708rem + 6.944vw, 5.625rem);
  transform: translateY(-4%);
  order: 2;
}
@media (max-width: 767px) {
  .nvprom-activity-examples__text {
    width: fit-content;
    margin-left: clamp(1rem, -2.8167938931rem + 16.2849872774vw, 5rem);
    margin-right: clamp(1rem, -2.8167938931rem + 16.2849872774vw, 5rem);
    order: 1;
  }
}
.nvprom-activity-examples__text h3 {
  font-size: clamp(1.875rem, 1.42rem + 1.942vw, 3.75rem);
  font-weight: bold;
  color: #333;
}
.nvprom-activity-examples__text p {
  margin-top: clamp(0.625rem, 0.473rem + 0.647vw, 1.25rem);
  font-size: clamp(0.75rem, 0.629rem + 0.518vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
  color: #333;
}
.nvprom-activity-examples__img {
  display: flex;
  width: clamp(18.75rem, -9.5833333333rem + 59.0277777778vw, 61.25rem);
  order: 1;
  justify-content: flex-end;
}
.nvprom-activity-examples__img img {
  height: clamp(19.8125rem, -0.4017857143rem + 31.5848214286vw, 37.5rem);
  width: auto;
}
@media (max-width: 1024px) {
  .nvprom-activity-examples__img img {
    height: clamp(12.5rem, -9.5522058824rem + 45.8823529412vw, 19.8125rem);
    width: auto;
  }
}
@media (max-width: 767px) {
  .nvprom-activity-examples__img {
    width: clamp(18.75rem, 12.771rem + 25.51vw, 25rem);
    margin-top: 5%;
    justify-content: center;
    order: 2;
  }
  .nvprom-activity-examples__img img {
    height: clamp(11.625rem, -0.008797654rem + 43.6950146628vw, 20.9375rem);
    width: auto;
  }
}
@media (max-width: 425px) {
  .nvprom-activity-examples__img img {
    height: clamp(10.1875rem, -0.59375rem + 46vw, 11.625rem);
    width: auto;
  }
}

.nvprom-key-features {
  position: relative;
  overflow-x: hidden;
  margin-top: clamp(1.25rem, 1.22rem + 0.129vw, 1.375rem);
  margin-bottom: -110px;
  padding-top: 110px;
  transform: translateY(-110px);
}
@media (min-width: 768px) {
  .nvprom-key-features {
    margin-bottom: calc(-1 * clamp(6.875rem, 0rem + 14.323vw, 17.188rem));
    padding-top: clamp(6.875rem, 0rem + 14.323vw, 17.188rem);
    transform: translateY(calc(-1 * clamp(6.875rem, 0rem + 14.323vw, 17.188rem)));
  }
}
.nvprom-key-features::before {
  position: absolute;
  z-index: -1;
  top: 0;
  width: min(var(--100vw), 1920px);
  height: calc(min(var(--100vw), 1920px) * 512 / 1920);
  background-color: #edf5fa;
  content: "";
  translate: 0px 0%;
  clip-path: polygon(0% 0%, 50% 30%, 100% 0%, 100% 70%, 50% 100%, 0% 70%);
}
.nvprom-key-features .content {
  display: flex;
  width: 100%;
  align-items: center;
  min-height: calc(min(var(--100vw), 1920px) * 250 / 1920);
}
@media (max-width: 767px) {
  .nvprom-key-features .content {
    flex-direction: column;
    align-items: center;
  }
}
.nvprom-key-features__text {
  width: clamp(26.563rem, 19.271rem + 15.191vw, 37.5rem);
  margin-left: auto;
  transform: translateX(92px) translateY(2%);
  order: 1;
}
@media (max-width: 767px) {
  .nvprom-key-features__text {
    width: fit-content;
    margin-left: unset;
    transform: translateX(0) translateY(2%);
  }
}
.nvprom-key-features__text h3 {
  font-size: clamp(1.875rem, 1.42rem + 1.942vw, 3.75rem);
  font-weight: bold;
  color: #333;
}
.nvprom-key-features__text p {
  margin-top: clamp(0.625rem, 0.473rem + 0.647vw, 1.25rem);
  font-size: clamp(0.75rem, 0.629rem + 0.518vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
  color: #333;
}
.nvprom-key-features__img {
  display: flex;
  width: clamp(18.75rem, -11.375rem + 62.76vw, 63.938rem);
  order: 2;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .nvprom-key-features__img {
    padding-left: 1%;
  }
}
@media (max-width: 767px) {
  .nvprom-key-features__img {
    width: clamp(18.75rem, 12.771rem + 25.51vw, 25rem);
    margin-top: 5%;
    justify-content: center;
  }
}

.nvprom-product-nvprom-flga {
  margin-top: clamp(3.156rem, 2.39rem + 3.269vw, 6.313rem);
}
.nvprom-product-nvprom-flga .content {
  display: flex;
  width: 100%;
  max-width: min(90vw, 1200px);
  padding-top: 18px;
  padding-bottom: clamp(3rem, 1rem + 4.167vw, 6rem);
  padding-left: clamp(0.969rem, 0.323rem + 1.345vw, 1.938rem);
  background-color: #F2F2F2;
  align-items: center;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .nvprom-product-nvprom-flga .content {
    flex-direction: column;
    padding-left: 0;
    align-items: center;
  }
}
.nvprom-product-nvprom-flga__text {
  padding-right: 1%;
}
@media (max-width: 767px) {
  .nvprom-product-nvprom-flga__text {
    padding-inline: 3%;
  }
}
.nvprom-product-nvprom-flga__text h3 {
  font-size: clamp(1.5rem, 1.257rem + 1.036vw, 2.5rem);
  font-weight: bold;
  line-height: 1.375;
  color: #333;
}
@media (max-width: 767px) {
  .nvprom-product-nvprom-flga__text h3 {
    text-align: center;
  }
}
.nvprom-product-nvprom-flga__text p {
  position: relative;
  padding-left: 1em;
  font-size: clamp(0.75rem, 0.689rem + 0.259vw, 1rem);
  font-weight: normal;
  line-height: 1.875;
  color: #333;
  transform: translateX(-0.5em);
}
@media (max-width: 767px) {
  .nvprom-product-nvprom-flga__text p {
    font-size: 10px;
    transform: translateX(0);
  }
}
.nvprom-product-nvprom-flga__text p::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "※";
}
.nvprom-product-nvprom-flga__table {
  margin-top: 11px;
  margin-bottom: clamp(1.75rem, 1.295rem + 1.942vw, 3.625rem);
  border-spacing: 0;
}
@media (max-width: 767px) {
  .nvprom-product-nvprom-flga__table {
    margin-bottom: 10px;
    margin-inline: auto;
  }
}
.nvprom-product-nvprom-flga__table thead {
  background-color: #999999;
}
.nvprom-product-nvprom-flga__table thead tr th {
  border: none;
  font-size: clamp(0.75rem, 0.689rem + 0.259vw, 1rem);
  font-weight: bold;
  line-height: 1.75;
  color: #fff;
  text-align: center;
  padding-block: clamp(0.125rem, 0.11rem + 0.065vw, 0.188rem);
}
.nvprom-product-nvprom-flga__table tbody {
  background-color: #fff;
}
.nvprom-product-nvprom-flga__table tbody tr td {
  border: none;
  font-size: clamp(0.75rem, 0.689rem + 0.259vw, 1rem);
  line-height: 1.75;
  color: #333;
  text-align: center;
  padding-block: 3.5px;
}
.nvprom-product-nvprom-flga__table tbody tr td:nth-child(1) {
  padding-inline: clamp(0.406rem, 0.308rem + 0.421vw, 0.813rem);
}
.nvprom-product-nvprom-flga__table tbody tr td:nth-child(2) {
  padding-inline: clamp(0.406rem, 0.308rem + 0.421vw, 0.813rem);
}
.nvprom-product-nvprom-flga__table tbody tr td:nth-child(3) {
  padding-inline: clamp(0.313rem, 0.237rem + 0.324vw, 0.625rem);
}
.nvprom-product-nvprom-flga__table tbody tr td:nth-child(4) {
  padding-inline: clamp(0.594rem, 0.45rem + 0.615vw, 1.188rem);
}
.nvprom-product-nvprom-flga__table tbody tr td:nth-child(5) {
  padding-inline: clamp(0.75rem, 0.568rem + 0.777vw, 1.5rem);
}
.nvprom-product-nvprom-flga__table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #999999;
}
.nvprom-product-nvprom-flga__img {
  width: clamp(18.75rem, 10.4583333333rem + 17.2743055556vw, 31.1875rem);
  transform: translateY(clamp(0.625rem, 0.473rem + 0.647vw, 1.25rem));
  aspect-ratio: 499/364;
  flex-shrink: 0;
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .nvprom-product-nvprom-flga__img {
    transform: translateY(clamp(0.625rem, 0.473rem + 0.647vw, 1.25rem));
  }
}

section#faq.section {
  margin-top: clamp(4.25rem, 3.218rem + 4.401vw, 8.5rem);
}
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;
  margin-bottom: 35px;
  text-wrap-style: balance;
}
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 {
  position: absolute;
  z-index: -1;
  top: 0;
  width: min(var(--100vw), 1920px);
  height: calc(min(var(--100vw), 1920px) * 512 / 1920);
  background-color: #edf5fa;
  content: "";
  translate: 0px -50%;
  clip-path: polygon(0% 0%, 50% 30%, 100% 0%, 100% 70%, 50% 100%, 0% 70%);
}
section#faq.section .btn-area {
  width: fit-content;
  margin-top: 30px;
  margin-inline: auto;
}
@media (width > 768px) {
  section#faq.section .btn-area {
    margin-top: 60px;
  }
}
section#faq.section .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: clamp(11.25rem, 6.7216057441rem + 19.3211488251vw, 15.875rem);
  font-size: 0.875rem;
}
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 {
    width: 334px;
    font-size: 1.25rem;
  }
}

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;
  }
}