:root {
  /* ===============================
     ■ Width
  =============================== */
  --width-full: 100%;
  --width-md: 1100px;

  /* ===============================
     ■ Spacing / Gap
  =============================== */
  --padding-block: var(--scale-80);
  --padding-inline: var(--scale-20);
  --gap-row: var(--scale-56);
  --gap-column: var(--scale-40);

  /* ===============================
     ■ Chart Layout
  =============================== */
  --chart-th-group-width: 36px;
  --chart-th-sub-width: 160px;
  --chart-th-width: calc(
    var(--chart-th-group-width) + var(--chart-th-sub-width)
  );
  /*--chart-th-width: 112px;*/
  --chart-td-width: calc((1280px - var(--chart-th-width)) / 6);

  --chart-th-section-height: 36px;
  --chart-th-group-height: 36px;
  --chart-th-sub-height: 56px;
  --chart-th-height: calc(
    var(--chart-th-section-height) + var(--chart-th-sub-height) +
      var(--chart-th-group-height)
  );
  --chart-td-height: 118px;

  /* ===============================
     ■ Scale
  =============================== */
  --scale-2: min(2px, 100vw / 375 * 2);
  --scale-4: min(4px, 100vw / 375 * 3);
  --scale-8: min(8px, 100vw / 375 * 6);
  --scale-12: min(12px, 100vw / 375 * 10);
  --scale-14: min(14px, 100vw / 375 * 12);
  --scale-16: min(16px, 100vw / 375 * 13);
  --scale-18: min(18px, 100vw / 375 * 15);
  --scale-20: min(20px, 100vw / 375 * 16);
  --scale-24: min(24px, 100vw / 375 * 20);
  --scale-28: min(28px, 100vw / 375 * 22);
  --scale-32: min(32px, 100vw / 375 * 24);
  --scale-40: min(40px, 100vw / 375 * 28);
  --scale-48: min(48px, 100vw / 375 * 30);
  --scale-56: min(56px, 100vw / 375 * 32);
  /*--scale-64: min(64px, 100vw / 375 * 44);*/
  --scale-80: min(80px, 100vw / 375 * 40);
}
/* ===============================
     ■ Color
  =============================== */

:root {
  --surface: rgba(255, 255, 255, 1);
  --on-surface: rgba(42, 44, 49, 1);
  --on-surface-variant: rgba(113, 112, 115, 1);
  --surface-variant: rgba(245, 246, 247, 1);
  --surface-variant-dark: rgba(223, 223, 223, 1);

  --highlight: rgba(235, 92, 0, 1);
  --primary: rgba(62, 162, 55, 1);
  --primary-container: rgba(232, 244, 229, 1);
  --primary-variant: rgba(31, 106, 26, 1);

  --secondary: rgba(235, 92, 0, 1);
  --secondary-container: rgba(255, 253, 196, 1);

  --tertialry: rgba(0, 157, 162, 1);
  --tertiary-container: rgba(229, 250, 241, 1);

  --border: rgba(188, 191, 193, 1);

  --on-primary-highlight: rgba(247, 255, 0, 1);
}

span {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media not screen and (max-width: 768px) {
  .sp {
    display: none;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.en {
  font-family: Inter, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/*========================
header
=========================*/

header.header {
  height: 80px;
  display: flex;
  width: 100%;
  padding: 0 var(--padding-inline, 20px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: sticky;
  left: 0;
  top: 0;
  background: var(--surface, #fff);
  box-shadow: 0 0 var(--scale-16, 16px) 0 rgba(0, 0, 0, 0.16);
  z-index: 10;
}

@media screen and (max-width: 768px) {
  header.header {
    height: 64px;
  }
}
header.header div.header__inner {
  width: 100%;
  display: flex;
  max-width: var(--width-md, 1100px);
  gap: var(--scale-16);
  align-items: center;
  flex: 1 0 0;
}
header.header div.header__inner h1.header__logo {
  color: var(--primary, #3ea237);
  font-family: Inter;
  font-size: var(--scale-32, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  flex: 1 0 0;
}

header.header div.header__inner div.header__tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--scale-4, 4px);
}
header.header div.header__inner div.header__tel a {
  display: flex;
  align-items: center;
  gap: var(--scale-8, 8px);
  font-size: var(--scale-32, 32px);
}
header.header div.header__inner div.header__tel a svg {
  width: calc(1em / 32 * 24);
  aspect-ratio: 1/1;
}
header.header div.header__inner div.header__tel a span {
  color: var(--primary, #3ea237);
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 32px */
}
header.header div.header__inner div.header__tel div.tel__hours {
  color: var(--on-surface, #2b2c31);
  font-family: "Noto Sans JP";
  font-size: var(--scale-12, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
header.header div.header__inner a.header__button {
  display: flex;
  padding: var(--scale-16, 16px) var(--scale-20, 20px);
  align-items: center;
  gap: var(--scale-8, 8px);
  border-radius: 10000px;
  background: var(--secondary, #eb5c00);
  box-shadow: 0 var(--scale-4, 4px) var(--scale-4, 4px) 0 rgba(0, 0, 0, 0.16);
  color: var(--surface, #fff);
  font-family: "Noto Sans JP";
  font-size: var(--scale-16, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
header.header div.header__inner a.header__button svg {
  width: calc(1em / 16 * 24);
  aspect-ratio: 1/1;
}
header.header div.header__inner a.header__button span {
}

@media screen and (max-width: 768px) {
  header.header div.header__inner div.header__tel {
    display: none;
  }
}

/*========================
mv
=========================*/
#mv {
  background: url(../images/mv-bg.jpg) center center / auto 100%;
  height: min(560px, 100vw / 1366 * 560);
}

@media screen and (max-width: 768px) {
  #mv {
    background: url(../images/mv-bg-sp.jpg) center center / auto 100%;
    height: calc(100vw / 375 * 580);
  }
}
/*========================
.cta
=========================*/
section.cta {
  background: url(../images/cta-bg.jpg) center center / cover no-repeat;
  padding: var(--scale-20, 20px) var(--padding-inline, 20px);
}
section.cta div.cta__body {
  display: flex;
  padding: var(--scale-20, 20px);
  flex-direction: column;
  align-items: center;
  flex: 1 0 0;
  border-radius: var(--scale-8, 8px);
  background: var(--surface, #fff);
  max-width: 1080px;
  margin-inline: auto;
}
section.cta div.cta__body a {
  display: flex;
  padding: 0 var(--scale-32, 32px) var(--scale-24, 24px);
  align-items: center;
  align-self: stretch;
  border-radius: 10000px;
  background: var(--secondary, #eb5c00);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  flex-direction: column;
  gap: var(--scale-16, 16px);
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: min(32px, 100vw / 375 * 23px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  flex: 1 0 0;
  max-width: 640px;
  margin-inline: auto;
  width: 100%;
}
section.cta div.cta__body a div.mini-copy {
  padding: var(--scale-4, 4px) var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  background: var(--tertialry, #009ca2);
  box-shadow: 0 var(--scale-4, 4px) var(--scale-4, 4px) 0 rgba(0, 0, 0, 0.16);
  margin-top: -1em;
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
section.cta div.cta__body a div.main-copy {
  display: flex;
  align-items: center;
  gap: var(--scale-8, 8px);
}
section.cta div.cta__body a div.main-copy span {
}

/*============================
#worries
============================*/
section#worries {
  display: flex;
  padding: var(--padding-block, 80px) var(--padding-inline);
  flex-direction: column;
  align-items: center;
  gap: var(--gap-row, 56px);
  align-self: stretch;
  background: var(--primary, #3ea237);
}
section#worries div.worries__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--scale-16, 16px);
}
section#worries div.worries__heading div.heading__sub-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#worries div.worries__heading div.heading__sub-title span {
  display: flex;
  padding: var(--scale-8, 8px) var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  background: var(--primary-variant, #206a1a);
  color: var(--surface-variant, #f5f6f6);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: min(32px, 100vw/ 375 * 21px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 38.4px */
}
section#worries div.worries__heading div.heading__sub-title svg {
  width: 48px;
  margin-top: -1px;
}
section#worries div.worries__heading h2 {
  color: var(--surface-variant, #f5f6f6);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-48, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 57.6px */
}
section#worries div.worries__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  max-width: var(--width-md, 1080px);
  justify-content: center;
  align-items: flex-start;
  gap: min(20px, 100vw / 375 * 8);
  align-self: stretch;
  margin-inline: auto;
  width: 100%;
}

section#worries div.worries__items div.items__item {
  background: url(../images/worries-bg.jpg) center center / cover;
  display: flex;
  padding: var(--scale-20, 20px) var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: var(--scale-8, 8px);
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: min(20px, 100vw / 375 * 15);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 26px */
}

@media screen and (max-width: 1080px) {
  section#worries div.worries__items {
    grid-template-columns: 1fr 1fr;
  }
}

/*============================
#solution
============================*/
section#solution {
  background: url(../images/solution-bg.jpg) center center / cover;
  display: flex;
  padding: var(--scale-40, 40px) var(--padding-inline);
  flex-direction: column;
  align-items: center;
  gap: var(--gap-row, 56px);
  align-self: stretch;
  position: relative;
}
section#solution svg {
  width: min(240px, 100vw / 375 * 144);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
section#solution div.solution__container {
  display: flex;
  max-width: var(--width-md, 1080px);
  padding: var(--scale-20, 20px);
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background: url(../images/solution-pattern.svg), var(--primary, #3ea237);
  margin-inline: auto;
  width: 100%;
}
section#solution div.solution__container div.solution__body {
  padding: var(--scale-40, 40px) var(--scale-8, 8px);
  justify-content: center;
  gap: var(--gap-column, 40px);
  align-self: stretch;
  background: var(--surface, #fff);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--scale-20, 20px);
  flex: 1 0 0;
}
section#solution
  div.solution__container
  div.solution__body
  div.body__sub-title {
  color: var(--on-surface, #2b2c31);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-32, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 38.4px */
  align-self: stretch;
}
section#solution div.solution__container div.solution__body h2 {
  color: var(--primary, #3ea237);
  text-align: center;
  font-family: Inter;
  font-size: var(--scale-80, 80px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 96px */
  align-self: stretch;
}
section#solution div.solution__container div.solution__body p {
  color: var(--on-surface, #2b2c31);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-32, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 38.4px */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 80%,
    var(--on-primary-highlight, #f6ff00) 80%
  );
}
section#solution div.solution__container div.solution__body p span.highlight {
  color: var(--highlight, #eb5c00);
  font-family: "Noto Sans JP";
  font-size: var(--scale-40, 40px);
}

/*============================
#features
============================*/
section#features {
  display: flex;
  padding: var(--padding-block, 80px) var(--padding-inline);
  flex-direction: column;
  align-items: center;
  gap: var(--gap-row, 56px);
  background: url(../images/features-corner.png) left top / 284px auto no-repeat,
    url(../images/features-bg.jpg) left top / 1366px auto;
}
.c-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--scale-20, 20px);
}
.c-heading div.heading__sub-title {
  color: var(--on-surface, #2b2c31);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-32, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 38.4px */
  border-bottom: var(--scale-8, 8px) solid var(--primary, #3ea237);
  padding-bottom: var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
}
.c-heading h2 {
  color: var(--on-surface, #2b2c31);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-48, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 57.6px */
  align-self: stretch;
}
section#features div.features__items {
  display: flex;
  max-width: var(--width-md, 1080px);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--scale-40, 40px);
  align-self: stretch;
  margin-inline: auto;
}
section#features div.features__items div.items__item {
  display: flex;
  padding: min(40px, 100vw / 375 * 16);
  align-items: flex-start;
  gap: var(--gap-column, 40px);
  align-self: stretch;
  border: var(--scale-16, 16px) solid var(--surface, #fff);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 var(--scale-40, 40px) 0 rgba(0, 0, 0, 0.08);
}
section#features div.features__items div.items__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
section#features div.features__items div.items__item div.item__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--scale-20, 20px);
  flex: 1 0 560px;
}
section#features
  div.features__items
  div.items__item
  div.item__text
  div.text__heading {
  display: flex;
  align-items: flex-start;
  gap: var(--scale-8, 8px);
}
section#features
  div.features__items
  div.items__item
  div.item__text
  div.text__heading
  div.heading__num {
  color: var(--primary, #3ea237);
  text-align: center;
  font-family: Inter;
  font-size: var(--scale-56, 56px);
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 56px */
}
section#features
  div.features__items
  div.items__item
  div.item__text
  div.text__heading
  h3 {
  padding-top: calc(1em / 32 * 8);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: min(32px, 100vw / 375 * 21);
}
section#features
  div.features__items
  div.items__item
  div.item__text
  div.text__heading
  h3
  span {
  display: flex;
  padding: var(--scale-8);
  align-items: center;
  background: var(--primary, #3ea237);
  color: var(--surface, #fff);
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 41.6px */
  justify-self: flex-start;
}
section#features div.features__items div.items__item div.item__text p {
  color: var(--on-surface, #2b2c31);
  font-family: "Noto Sans JP";
  font-size: var(--scale-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 40px */
}
section#features
  div.features__items
  div.items__item
  div.item__text
  p
  span.highlight {
  color: var(--highlight, #eb5c00);
  font-family: "Noto Sans JP";
  font-size: var(--scale-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
}
section#features div.features__items div.items__item figure {
  flex: 1 1 400px;
}
section#features div.features__items div.items__item figure img {
  width: 100%;
}
section#features
  div.features__items
  div.items__item
  div.item__text
  div.text__heading
  h3
  span
  span.asterisk {
  color: var(--surface, #fff);
  font-family: "Noto Sans JP";
  font-size: var(--scale-12, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-right: -0.5em;
}
section#features div.features__items div.items__item div.item__text div.note {
  color: var(--on-surface, #2b2c31);
  font-family: "Noto Sans JP";
  font-size: var(--scale-12, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
}

@media screen and (max-width: 960px) {
  section#features div.features__items div.items__item:nth-of-type(n) {
    flex-direction: column;
  }
  section#features div.features__items div.items__item div.item__text {
    flex: 1 0 0;
  }
  section#features div.features__items div.items__item figure {
    flex: 1 0 0;
  }
}

@media screen and (max-width: 640px) {
  section#features
    div.features__items
    div.items__item
    div.item__text
    div.text__heading {
    flex-direction: column;
  }
}

/*============================
#chart
============================*/
section#chart {
  display: flex;
  padding: var(--padding-block, 80px) var(--padding-inline);
  flex-direction: column;
  align-items: center;
  gap: var(--scale-56, 56px);
  align-self: stretch;
}
section#chart div.chart__heading.c-heading {
}
section#chart div.chart__heading.c-heading div.heading__sub-title {
}
section#chart div.chart__heading.c-heading h2 {
}
section#chart div.chart__body {
  display: flex;
  max-width: var(--width-md, 1080px);
  flex-direction: column;
  align-items: center;
  gap: var(--scale-20, 20px);
  align-self: stretch;
  margin-inline: auto;
}
section#chart div.chart__body table {
  width: 100%;
  table-layout: fixed;
}
section#chart div.chart__body table thead {
}
section#chart div.chart__body table thead tr {
}
section#chart div.chart__body table thead tr td.spacer {
  width: 400px;
}
section#chart div.chart__body table thead tr th {
  padding-top: var(--scale-16);
  font-size: min(14px, 100vw / 375 * 23);
}
section#chart div.chart__body table thead tr th:nth-of-type(1) {
  background: var(--primary, #3ea237);
  color: var(--surface, #fff);
  text-align: center;
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  border-right: var(--scale-8, 8px) solid var(--primary, #3ea237);
  border-left: var(--scale-8, 8px) solid var(--primary, #3ea237);
}
section#chart div.chart__body table thead tr th div {
  padding: var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  align-self: stretch;
  height: 100%;
  width: 100%;
  border-top: 1px solid var(--border, #bcbec1);
  border-right: 1px solid var(--border, #bcbec1);
  border-bottom: 1px solid var(--border, #bcbec1);
  color: var(--on-surface, #2b2c31);
  text-align: center;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
}
section#chart div.chart__body table tbody {
}
section#chart div.chart__body table tbody tr {
}
section#chart div.chart__body table tbody tr th[colspan] {
  display: none;
}

section#chart div.chart__body table tbody tr:nth-of-type(2) th {
  border-top: 1px solid var(--border, #bcbec1);
}
section#chart div.chart__body table tbody tr th {
  padding: var(--scale-8, 8px);
  border-right: 1px solid var(--border, #bcbec1);
  border-bottom: 1px solid var(--border, #bcbec1);
  border-left: 1px solid var(--border, #bcbec1);
  color: var(--on-surface, #2b2c31);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 24px */
  align-content: center;
}
section#chart div.chart__body table tbody tr td {
  padding: var(--scale-16, 16px) var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
  border-right: 1px solid var(--border, #bcbec1);
  border-bottom: 1px solid var(--border, #bcbec1);
}
section#chart div.chart__body table tbody tr td:nth-of-type(1) {
  border-right: var(--scale-8, 8px) solid var(--primary, #3ea237);
  border-bottom: 1px solid var(--primary, #3ea237);
  border-left: var(--scale-8, 8px) solid var(--primary, #3ea237);
  background: var(--secondary-container, #fffdc4);
}
section#chart
  div.chart__body
  table
  tbody
  tr:nth-last-of-type(1)
  td:nth-of-type(1) {
  border-bottom: var(--scale-8, 8px) solid var(--primary, #3ea237);
}
section#chart div.chart__body table tbody tr td img {
  width: var(--scale-40, 40px);
  height: 40px;
  margin-inline: auto;
  aspect-ratio: 1/1;
  display: block;
}
section#chart div.chart__body table tbody tr th span.asterisk {
  font-size: var(--scale-12, 12px);
}
section#chart div.chart__body div.body__note {
  align-self: stretch;
  color: var(--on-surface, #2b2c31);
  font-family: "Noto Sans JP";
  font-size: var(--scale-12, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 14.4px */
}
section#chart div.chart__others {
  display: flex;
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding: var(--scale-40, 40px) var(--scale-20, 20px);
  flex-direction: column;
  align-items: center;
  gap: var(--scale-40, 40px);
  background: var(--primary-container, #e8f4e5);
}

section#chart div.chart__others h3 {
  align-self: stretch;
  color: var(--on-surface, #2b2c31);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-32, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 38.4px */
}
section#chart div.chart__others div.others__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--scale-40);
}

section#chart div.chart__others div.others__list ul {
  flex: 1 0 630px;
  list-style: disc;
  margin-left: 2em;
}
section#chart div.chart__others div.others__list ul li {
  color: var(--on-surface, #2b2c31);
  font-family: "Noto Sans JP";
  font-size: var(--scale-18, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 36px */
  line-height: 1.2;
  margin-bottom: 0.5em;
}
section#chart div.chart__others div.others__list figure {
  flex: 1 1 267px;
}
section#chart div.chart__others div.others__list figure img {
  width: 100%;
}
@media screen and (max-width: 1280px) {
  section#chart div.chart__body table thead tr td.spacer {
    display: none;
  }
  section#chart div.chart__body table tbody tr th {
    display: none;
  }
  section#chart div.chart__body table tbody tr th[colspan] {
    display: table-cell;
    border-left-width: var(--scale-8);
    background: #eee;
  }
}
@media screen and (max-width: 920px) {
  section#chart div.chart__others div.others__list {
    flex-direction: column;
  }
  section#chart div.chart__others div.others__list ul {
    flex: 1 0 0;
  }
  section#chart div.chart__others div.others__list figure {
    flex: 1 0 0;
  }
  section#chart div.chart__body table thead tr th div {
    min-height: 3.4em;
  }
}

/*============================
#price
============================*/
section#price {
  display: flex;
  padding: var(--scale-40, 40px) var(--padding-inline);
  flex-direction: column;
  align-items: center;
  gap: var(--gap-row, 56px);
  align-self: stretch;
  background: url(../images/features-bg.jpg) left top / 1366px auto;
}
section#price div.price__container {
  display: flex;
  max-width: var(--width-md, 1080px);
  padding: var(--scale-20, 20px);
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background: url(../images/solution-pattern.svg), var(--primary, #3ea237);
  margin-inline: auto;
  width: 100%;
}
section#price div.price__container div.price__body {
  padding: var(--scale-40, 40px) var(--scale-8, 8px);
  justify-content: center;
  gap: var(--gap-column, 40px);
  align-self: stretch;
  background: var(--surface, #fff);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--scale-20, 20px);
  flex: 1 0 0;
}

section#price div.price__container div.price__body h2 {
  color: var(--on-surface, #2b2c31);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-48, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 57.6px */
}
section#price div.price__container div.price__body div.price__num {
  color: var(--primary, #3ea237);
  text-align: center;
  font-family: Inter;
  font-size: var(--scale-40, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 48px */
}
section#price div.price__container div.price__body div.price__num big {
  font-size: var(--scale-80, 80px);
}
section#price div.price__container div.price__body p {
  text-align: center;

  padding: var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  background: var(--primary-container, #e8f4e5);
  color: var(--on-surface, #2b2c31);
  font-family: "Noto Sans JP";
  font-size: var(--scale-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
section#price div.price__container div.price__body p span.highlight {
  color: var(--highlight, #eb5c00);
}
section#price div.price__container div.price__body div.price__note {
  color: var(--on-surface, #2b2c31);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-12, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 14.4px */
}

/*============================
#example
============================*/
section#example {
  display: flex;
  padding: var(--padding-block, 80px) var(--padding-inline);
  flex-direction: column;
  align-items: center;
  gap: var(--scale-56, 56px);
  align-self: stretch;
  background: url(../images/features-corner.png) left top / 284px auto no-repeat;
}
section#example div.example__heading.c-heading {
}
section#example div.example__heading.c-heading h2 {
}
section#example p {
  color: var(--on-surface, #2b2c31);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 34px */
}
section#example div.example__items {
  display: flex;
  width: 100%;
  max-width: var(--width-md, 1080px);
  justify-content: center;
  align-items: flex-start;
  gap: var(--scale-20, 20px);
}
@media screen and (max-width: 768px) {
  section#example div.example__items {
    flex-direction: column;
  }
}

section#example div.example__items div.items__item {
  display: flex;
  padding: var(--scale-8, 8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--scale-16, 16px);
  flex: 1 0 0;
  background: url(../images/example-bg.svg) left top / 60px auto no-repeat;
}
section#example div.example__items div.items__item figure.item__image {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  aspect-ratio: 330.67/248;
}
section#example div.example__items div.items__item figure.item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#example div.example__items div.items__item h3 {
  color: var(--on-surface, #2b2c31);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-24, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
}

/*============================
#faq
============================*/
section#faq.faq {
  display: flex;
  padding: var(--padding-block, 80px) var(--padding-inline);
  flex-direction: column;
  align-items: center;
  gap: var(--scale-56, 56px);
  align-self: stretch;
  background: var(--primary, #3ea237);
}
section#faq.faq div.faq__heading {
}
section#faq.faq div.faq__heading h2 {
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-48, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 57.6px */
}
section#faq.faq div.faq__list {
  display: flex;
  max-width: 800px;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--scale-20, 20px);
  align-self: stretch;
  width: 100%;
  margin-inline: auto;
}
section#faq.faq div.faq__list dl.faq__item {
  display: flex;
  padding: var(--scale-20, 20px);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--scale-8, 8px);
  align-self: stretch;
  border-radius: var(--scale-8, 8px);
  background: var(--surface, #fff);
  box-shadow: 0 var(--scale-4, 4px) var(--scale-4, 4px) 0 rgba(0, 0, 0, 0.16);
}
section#faq.faq div.faq__list dl.faq__item dt.faq__question {
  display: flex;
  align-items: center;
  gap: var(--scale-16, 16px);
  align-self: stretch;
  color: var(--primary, #3ea237);
  font-family: Inter;
  font-size: var(--scale-28, 28px);
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 47.6px */
}
section#faq.faq div.faq__list dl.faq__item dt.faq__question div.faq__q-mark {
  color: var(--primary, #3ea237);
  text-align: center;
  font-family: Inter;
  font-size: var(--scale-28, 28px);
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 47.6px */
}
section#faq.faq
  div.faq__list
  dl.faq__item
  dt.faq__question.js-faq-toggle
  p.faq__q-text {
  flex: 1 0 0;
}
section#faq.faq
  div.faq__list
  dl.faq__item
  dt.faq__question.js-faq-toggle
  figure.faq__icon {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
}
section#faq.faq
  div.faq__list
  dl.faq__item
  dt.faq__question.js-faq-toggle
  figure.faq__icon
  img.faq__icon--add {
}
section#faq.faq
  div.faq__list
  dl.faq__item
  dt.faq__question.js-faq-toggle
  figure.faq__icon
  img.faq__icon--minus {
}
section#faq.faq div.faq__list dl.faq__item dd.faq__answer {
  display: none;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--scale-8, 8px);
  background: var(--surface-variant, #f5f6f6);
  padding: var(--scale-16, 16px);
  width: 100%;
}
section#faq.faq div.faq__list dl.faq__item dd.faq__answer div.faq__a-mark {
  color: var(--on-surface, #2b2c31);
  text-align: center;
  font-family: Inter;
  font-size: var(--scale-28, 28px);
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 28px */
}
section#faq.faq div.faq__list dl.faq__item dd.faq__answer p {
  color: var(--on-surface, #2b2c31);
  font-family: Roboto;
  font-size: var(--scale-16, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
  flex: 1 0 0;
}

/*============================
    FAQ base
============================*/
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq__item {
  border-bottom: 1px solid var(--surface-variant);
  padding-bottom: 16px;
}

/*============================
    質問部分
============================*/
.faq__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  gap: 12px;
}

.faq__q-mark {
  color: var(--primary);
  font-weight: 700;
}

.faq__icon {
  width: 24px;
  height: 24px;
  position: relative;
}

/* addはデフォルト表示／minusは非表示 */
.faq__icon--minus {
  display: none;
}

/*============================
    回答エリア（閉じた状態は非表示）
============================*/

@keyframes faqFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*============================
    開いた時の状態（.is-open を付与）
============================*/
.faq__item.is-open .faq__answer {
  max-height: 500px; /* 中身より大きければOK(調整可能) */
  opacity: 1;
}

.faq__item.is-open .faq__icon--add {
  display: none;
}

.faq__item.is-open .faq__icon--minus {
  display: block;
}

/*============================
#company
============================*/
section#company {
  display: flex;
  padding: 200px var(--padding-inline, 20px) var(--padding-block, 80px)
    var(--padding-inline, 20px);
  flex-direction: column;
  align-items: center;
  gap: var(--scale-56, 56px);
  align-self: stretch;
  background: url(../images/company-bg.jpg) center top / 100% auto no-repeat,
    var(--surface-variant, #f5f6f6);
}
section#company div.company__container {
  display: flex;
  max-width: 960px;
  padding: var(--scale-40, 40px);
  flex-direction: column;
  align-items: center;
  gap: var(--gap-row, 56px);
  align-self: stretch;
  border-radius: var(--scale-8, 8px);
  background: #fff;
  box-shadow: 0 0 var(--scale-40, 40px) 0 rgba(0, 0, 0, 0.08);
  margin-inline: auto;
}
section#company div.company__container figure.company__banner {
}
section#company div.company__container figure.company__banner img {
  max-width: 100%;
}
section#company div.company__container div.company__heading.c-heading {
}
section#company
  div.company__container
  div.company__heading.c-heading
  div.heading__sub-title {
}
section#company div.company__container div.company__heading.c-heading h2 {
}
section#company
  div.company__container
  div.company__heading.c-heading
  h2
  span.highlight {
  color: var(--primary, #3ea237);
}
section#company div.company__container div.company__tags {
  display: flex;
  max-width: 880px;
  justify-content: center;
  align-items: flex-start;
  gap: var(--scale-8, 8px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  section#company div.company__container div.company__tags {
    flex-direction: column;
  }
}

section#company div.company__container div.company__tags div.tags__tag {
  display: flex;
  padding: var(--scale-16, 16px) var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: var(--scale-2, 2px);
  background: var(--primary, #3ea237);
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 24px */
}
section#company div.company__container div.company__copy {
  color: var(--on-surface, #2b2c31);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: min(40px, 100vw / 375 * 26);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 52px */
}

section#company div.company__container div.company__copy span.highlight {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-color: var(--on-primary-highlight, #f6ff00);
  text-decoration-thickness: 15%; /* 6px */
  text-underline-offset: auto;
  text-underline-position: from-font;
}
section#company div.company__container div.company__past {
  display: flex;
  padding: var(--scale-16, 16px);
  flex-direction: column;
  align-items: center;
  gap: var(--scale-20, 20px);
  align-self: stretch;
  border-radius: var(--scale-8, 8px);
  border: 1px solid var(--border, #bcbec1);
}
section#company div.company__container div.company__past h3 {
  color: var(--primary, #3ea237);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-32, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 38.4px */
}
section#company div.company__container div.company__past h4 {
  color: var(--on-surface, #2b2c31);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-24, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  background: var(--primary-container, #e8f4e5);
  padding: var(--scale-2, 2px) 0;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
section#company div.company__container div.company__past p {
  color: var(--on-surface, #2b2c31);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 40px */
}
section#company div.company__container table {
  width: 100%;
}
section#company div.company__container table tbody {
}
section#company div.company__container table tbody tr {
}
section#company div.company__container table tbody tr th {
  width: 160px;
  padding: var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--border, #bcbec1);
  background: var(--surface-variant-dark, #dfdfdf);
  color: var(--primary-variant, #206a1a);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-18, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
}
section#company div.company__container table tbody tr td {
  padding: var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  color: var(--on-surface, #2b2c31);
  font-family: "Noto Sans JP";
  font-size: var(--scale-18, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 170%; /* 30.6px */
  border-bottom: 1px solid var(--border, #bcbec1);
}
section#company div.company__container table tbody tr:nth-of-type(1) td {
  border-top: 1px solid var(--border, #bcbec1);
}
section#company div.company__container table tbody tr th small {
  color: var(--primary-variant, #206a1a);
  font-family: "Noto Sans JP";
  font-size: var(--scale-12, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

/*============================
#contact
============================*/
section#contact {
  display: flex;
  padding: var(--padding-block, 80px) var(--padding-inline, 24px);
  flex-direction: column;
  align-items: center;
  gap: var(--gap-row, 56px);
  align-self: stretch;
}
section#contact div.contact__heading.c-heading {
}
section#contact div.contact__heading.c-heading h2 {
}
section#contact div.contact__body {
}
section#contact div.contact__body form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--scale-32, 32px);
}
section#contact div.contact__body form div.input-groupt {
  display: flex;
  width: 100%;
  max-width: 640px;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--scale-16, 16px);
}
section#contact div.contact__body form div.input-groupt label {
  flex: 1 0 0;
  display: flex;
  align-items: center;
  gap: var(--scale-8, 8px);
  align-self: stretch;
}
section#contact div.contact__body form div.input-groupt label span.required {
  display: flex;
  padding: var(--scale-4, 4px);
  justify-content: center;
  align-items: center;
  background: var(--primary, #3ea237);
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-14, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
}
section#contact div.contact__body form div.input-groupt label span {
}
section#contact div.contact__body form div.input-groupt textarea {
}
section#contact div.contact__body form div.input-groupt p {
}
section#contact div.contact__body form div.input-groupt p a {
  color: #009ba4;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
section#contact div.contact__body form div.input-groupt :is(input, textarea) {
  display: flex;
  padding: var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: var(--scale-4, 4px);
  border: 1px solid var(--border, #bcbec1);
  background: var(--surface-variant, #f5f6f6);
}
section#contact div.contact__body form button {
  display: flex;
  max-width: 400px;
  padding: var(--scale-20, 20px) var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 1000px;
  background: var(--secondary, #eb5c00);
  box-shadow: 0 var(--scale-4, 4px) var(--scale-8, 8px) 0 rgba(0, 0, 0, 0.16);
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-24, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-inline: auto;
  width: 100%;
}
footer.footer {
  display: flex;
  padding: var(--scale-40, 40px) var(--padding-inline, 24px);
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--primary, #3ea237);
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-14, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}





section#contact #contact_policy {
  cursor: pointer;
  position: relative;
  background-color: #F8CDB3;
}
section#contact #contact_policy:checked {
  background: var(--secondary, #eb5c00);
}
#contact_policy::before {
  content: '';
  display: block;
  position: absolute;
  left: 11px;
  top: 3px;
  width: 12px;
  height: 20px;
  border: solid white;
  border-width: 0 5px 5px 0;
  transform: rotate(45deg);
  opacity: 0;
}
#contact_policy:checked::before {
  opacity: 1;
}

section#contact div.contact__body form button {
  cursor: pointer;
}
section#contact div.contact__body form button:disabled {
  cursor: not-allowed;
  background-color: #F8CDB3;
}
