/* @acab/reset.css */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.15;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  background: transparent;
  appearance: none;
  vertical-align: middle;
}

:where([type=checkbox]) {
  appearance: checkbox;
}

:where([type=radio]) {
  appearance: radio;
}

:where([type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button) {
  height: auto;
}

:where([type=search]) {
  outline-offset: -2px;
}

:where([type=search]::-webkit-search-decoration) {
  -webkit-appearance: none;
}

:where(::-webkit-file-upload-button) {
  -webkit-appearance: button;
  font: inherit;
}

:where(textarea) {
  resize: vertical;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border: none;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  font-size: inherit;
  font-weight: inherit;
  overflow-wrap: break-word;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(pre, code, kbd, samp) {
  font-family: monospace, monospace;
  font-size: inherit;
}

:where(address) {
  font-style: inherit;
}

:where(abbr[title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --color-primary: #0db074;
  --color-secondary: #dbf3ea;
  --color-accent: #e89a42;
  --color-black: #031a11;
  --color-white: #fff;
  --font-jp: Noto Sans, Noto Sans JP, sans-serif;
  --font-en: Outfit, sans-serif;
}

body {
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--color-black);
  background-color: var(--color-primary);
}
@media screen and (max-width: 1023px) {
  body {
    font-size: 14px;
  }
}

:where(p, li, dt, dd, address, h2, h3, h4) {
  letter-spacing: 0.05em;
  line-height: 1.5;
}

:where(a) {
  color: inherit;
  text-decoration: none;
}

:where(ul) {
  padding: 0;
}

:where(li) {
  list-style: none;
}

:where(img, video) {
  vertical-align: bottom;
}

:where(img) {
  max-width: 100%;
  width: 100%;
  height: auto;
}

:where(address) {
  font-style: normal;
}

:where(button) {
  cursor: pointer;
}

::selection {
  color: #fff;
  background-color: rgba(13, 176, 116, 0.5);
}

.font-en {
  font-family: var(--font-en);
}

.mt {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .mt {
    margin-top: 70px;
  }
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--color-white);
  overflow-x: clip;
}

.container main {
  flex-grow: 1;
}

.content {
  max-width: 1100px;
  width: 100%;
  padding-inline: 20px;
  margin-inline: auto;
}
.content.-pdNone {
  max-width: 1060px;
  padding-inline: 0;
}

.cover {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  width: fit-content;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  padding: 14px 24px;
}
@media (hover: hover) {
  .button {
    transition-property: color, background-color;
    transition-duration: 0.3s;
  }
  .button .button_arrow {
    transition: background-color 0.3s;
  }
  .button .button_arrow img {
    transition: filter 0.3s;
  }
  .button:hover {
    color: var(--color-primary);
    background-color: var(--color-white);
  }
  .button:hover .button_arrow {
    background-color: var(--color-primary);
  }
  .button:hover .button_arrow img {
    filter: brightness(0) invert(1);
  }
}
.button.-center {
  margin-inline: auto;
}

.button_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border-radius: 100px;
  min-height: 12px;
  min-width: 30px;
  padding: 1px 5px;
}
.button_arrow img {
  max-width: 9px;
}

.heading {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1023px) {
  .heading {
    font-size: 16px;
  }
}
.heading.-center {
  text-align: center;
}
.heading::before {
  display: block;
  content: attr(data-en);
  font-family: var(--font-en);
  font-size: 60px;
  letter-spacing: 0.1em;
  line-height: 1.25;
  margin-bottom: 5px;
}
@media screen and (max-width: 1023px) {
  .heading::before {
    font-size: 40px;
  }
}

.buttonL {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 2px;
  color: var(--color-white);
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 700;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  max-width: 470px;
  width: 100%;
  min-height: 74px;
  padding: 5px 70px;
}
@media screen and (max-width: 767px) {
  .buttonL {
    row-gap: 0;
    font-size: 14px;
    min-height: 58px;
    max-width: 335px;
    padding-inline: 40px;
  }
}
.buttonL.-disable {
  pointer-events: none;
  background-color: #c8c8c8;
  border-color: #c8c8c8;
}
.buttonL span.-small {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .buttonL span.-small {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .buttonL {
    transition-property: color, background-color;
    transition-duration: 0.3s;
  }
  .buttonL::after {
    transition: filter 0.3s;
  }
  .buttonL:hover {
    color: var(--color-primary);
    background-color: var(--color-white);
  }
  .buttonL:hover::after {
    filter: none;
  }
}
.buttonL::after {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background-image: url("../img/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
  .buttonL::after {
    right: 13px;
    width: 16px;
  }
}

.buttonL_textS {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .buttonL_textS {
    font-size: 12px;
  }
}

/* buttonLクラス用のセンタリング */
.buttonL.-center {
  margin-inline: auto;
}