@charset "UTF-8";
*,
*::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: none;
  color-scheme: dark light;
  tab-size: 2;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

: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(a) {
  color: inherit;
  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, video) {
  max-inline-size: 100%;
  block-size: auto;
}

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

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

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

:where(dialog) {
  border: none;
  background: none;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open])) {
  display: none !important;
}

:where(:focus) {
  outline: none;
}

:where(:focus-visible) {
  outline: none;
}

:where(:focus-visible):is(button, a, input, textarea, [tabindex="0"]) {
  outline: 2px solid CanvasText;
  box-shadow: 0 0 0 2px Canvas;
  outline-offset: 2px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  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 {
  --vh: 1vh;
  --vw: 1vw;
  --white: #fff;
  --light-gray: #ebebe5;
  --gray: #959595;
  --dark-gray: #707070;
  --black: #454545;
  --primary: #0e58a1;
  --light-primary: #cdd6dd;
  --font-family-base: "Zen Kaku Gothic New", sans-serif;
  --font-family-en: "Roboto", sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 2;
  --container-width: 75rem;
  --side-padding: 5.1875rem;
  --side-padding-mobile: 1.25rem;
  --inter: "Inter", sans-serif;
  --trim: trim-both cap alphabetic;
}

html,
body {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-family: var(--font-family-base);
  color: var(--black);
  background: var(--white);
  overflow-x: clip;
}

html:has(.is-gnavi-open) {
  scrollbar-gutter: stable;
  overflow: clip;
}

.bg-gray {
  background: #ededed;
}

:where(a:not[class]) {
  color: var(--primary);
  text-decoration: none;
}
:where(a:not[class]):hover {
  text-decoration: underline;
}

.on-fade {
  transition: opacity 0.3s;
}
.on-fade:hover {
  opacity: 0.8;
}

p + p {
  margin-top: 2rem;
}

.layout-header {
  position: sticky;
  top: 0;
  z-index: 11;
  background-color: var(--white);
  overflow-x: clip;
  display: flex;
  align-items: center;
  column-gap: 40px;
  justify-content: space-between;
  padding-right: 36px;
}
.layout-header__inner {
  padding-left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}
.layout-header__logo {
  transition: 0.2s opacity ease-out;
}
.layout-header__logo:hover {
  opacity: 0.7;
}
.layout-header__logo img {
  width: 100%;
}
.layout-header__product-logo {
  text-align: center;
  display: grid;
  row-gap: 4px;
}
.layout-header__button {
  margin-left: 24px;
}

.header-button {
  width: 100px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
}
.header-button__icon {
  width: 60px;
  height: 23px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header-button[aria-expanded="true"] .header-button__icon {
  justify-content: center;
}
.header-button__icon span {
  display: block;
  top: 0;
  width: 100%;
  height: 1px;
  position: relative;
}
.header-button__icon span::before,
.header-button__icon span::after {
  content: "";
  display: block;
  top: 0;
  width: 100%;
  height: 1px;
  border-radius: 1px;
  background: var(--black);
  position: absolute;
  left: 0;
  transition: 0.2s rotate ease-out;
}
.header-button[aria-expanded="true"] .header-button__icon span::before {
  rotate: 30deg;
}
.header-button[aria-expanded="true"] .header-button__icon span::after {
  rotate: -30deg;
}
.header-button__icon::before,
.header-button__icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-radius: 1px;
  background: var(--black);
}
.header-button[aria-expanded="true"] .header-button__icon::before,
.header-button[aria-expanded="true"] .header-button__icon::after {
  display: none;
}
.header-menu__grid {
  display: flex;
  column-gap: 40px;
}
.header-menu__list li {
  position: relative;
}
.header-menu__list a {
  text-decoration: none;
  display: flex;
  column-gap: 7px;
  cursor: pointer;
}
.header-menu__list a::after {
  align-self: baseline;
  content: "";
  display: block;
  width: 1em;
  height: 1lh;
  background-color: currentColor;
  -webkit-mask: url(../images/ic_link.svg) no-repeat center center/contain;
  mask: url(../images/ic_link.svg) no-repeat center center/contain;
  -webkit-mask-size: 5px 8px;
  mask-size: 5px 8px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center calc(0.5lh - 2px);
  mask-position: center calc(0.5lh - 2px);
}
.header-menu__list--contact li a:after {
  display: none;
}
.header-menu__sub-list li:first-child {
  color: var(--primary);
  border-right: 2px solid currentColor;
  padding-right: 20px;
}
.header-menu__sub-list li:first-child a::after {
  display: none;
}
.header-menu__sub-list a {
  text-decoration: none;
  display: flex;
  column-gap: 7px;
}
.header-menu__sub-list a:hover {
  text-decoration: underline;
}
.header-menu__sub-list a::after {
  align-self: baseline;
  content: "";
  display: block;
  width: 1em;
  height: 1lh;
  background-color: currentColor;
  -webkit-mask: url(../images/ic_link.svg) no-repeat center center/contain;
  mask: url(../images/ic_link.svg) no-repeat center center/contain;
  -webkit-mask-size: 5px 8px;
  mask-size: 5px 8px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center calc(0.5lh - 2px);
  mask-position: center calc(0.5lh - 2px);
}
.header-menu__sub-area {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr minmax(0, 390px) minmax(0, 210px) 1fr;
  grid-template-rows: 1fr auto auto;
  column-gap: 32px;
}
.header-menu__links {
  display: flex;
  margin-bottom: 16px;
  justify-content: center;
}
.header-menu__links > li {
  position: relative;
}
.header-menu__links > li::after {
  content: "";
  margin-top: 2px;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  position: absolute;
  width: 1px;
  height: 1em;
  background: currentColor;
}
.header-menu__links > li:first-child a {
  padding-left: 0;
}
.header-menu__links > li:last-child::after {
  display: none;
}
.header-menu__links > li:last-child a {
  padding-right: 0;
}
.header-menu__links > li a {
  font-size: 0.875rem;
  text-decoration: none;
  padding: 0 0.7em;
  transition: color 0.2s ease-out;
}
.header-menu__links > li a:hover {
  color: var(--primary);
}
.header-menu__cta {
  grid-column: 2;
  align-self: end;
}
.header-menu__sub-links {
  margin-top: 16px;
  grid-column: 2;
}
.header-menu__copy {
  grid-column: 2;
  align-self: end;
  margin-top: 8px;
  font-size: 0.75rem;
  display: block;
}
.header-menu__logo {
  grid-column: 3/5;
  grid-row: 1/3;
  justify-self: end;
}

.layout-footer {
  padding-inline: var(--side-padding);
}
.layout-footer__inner {
  max-width: 1200px;
  margin-inline: auto;
  position: relative;
  padding-block: 96px 30px;
}
.layout-footer__back-to-top {
  text-decoration: none;
  text-transform: uppercase;
  position: absolute;
  top: 10px;
  right: 0;
  transition: color 0.2s ease-out;
}
.layout-footer__back-to-top::before {
  content: "";
  position: absolute;
  background-color: var(--white);
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 28px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transition:
    background-color 0.2s ease-out,
    transform 0.2s ease-out;
  transform-origin: center bottom;
}
.layout-footer__back-to-top:hover {
  color: var(--primary);
}
.layout-footer__back-to-top:hover::before {
  background-color: var(--primary);
  transform: scale(1.15);
}
.layout-footer__product-logo {
  width: fit-content;
  text-decoration: none;
  display: grid;
  row-gap: 4px;
  transition: opacity 0.2s ease-out;
}
.layout-footer__product-logo:hover {
  opacity: 0.6;
}
.layout-footer__grid {
  margin-top: 40px;
  display: grid;
  column-gap: 4.6852122987vw;
  row-gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}
.layout-footer__list {
  padding-left: 0;
  display: grid;
  row-gap: 15px;
}
.layout-footer__list a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.layout-footer__list a:hover {
  text-decoration: underline;
}
.layout-footer__list a::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: currentColor;
  -webkit-mask: url(../images/ic_link.svg);
  mask: url(../images/ic_link.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 5px 8px;
  mask-size: 5px 8px;
  -webkit-mask-position: center right;
  mask-position: center right;
}
.layout-footer__sub-list {
  margin-top: 8px;
  font-size: 0.875rem;
}
.layout-footer__sub-list li:not(:first-child) {
  margin-top: 8px;
}
.layout-footer__sub-list a {
  text-decoration: none;
  display: flex;
}
.layout-footer__sub-list a:hover {
  color: var(--primary);
}
.layout-footer__sub-list a:hover::after {
  transform: translateX(10px);
}
.layout-footer__sub-list a:hover span::after {
  width: 100%;
}
.layout-footer__sub-list a::before {
  content: "";
  display: block;
  height: 1px;
  width: 32px;
  background-color: currentColor;
  margin-top: 0.5lh;
  margin-right: 0.25em;
}
.layout-footer__sub-list a::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  align-self: center;
  margin-left: auto;
  background: currentColor;
  -webkit-mask: url(../images/ic_link.svg);
  mask: url(../images/ic_link.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 5px 8px;
  mask-size: 5px 8px;
  -webkit-mask-position: center right;
  mask-position: center right;
  transition: transform 0.2s ease-out;
}
.layout-footer__sub-list a span {
  display: inline-block;
  position: relative;
}
.layout-footer__sub-list a span::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.2s ease-out;
}
.layout-footer__sub-area {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  column-gap: 32px;
}
.layout-footer__links {
  display: flex;
  margin-top: 30px;
}
.layout-footer__links > li {
  position: relative;
}
.layout-footer__links > li::after {
  content: "";
  margin-top: 2px;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  position: absolute;
  width: 1px;
  height: 1em;
  background: currentColor;
}
.layout-footer__links > li:first-child a {
  padding-left: 0;
}
.layout-footer__links > li:last-child::after {
  display: none;
}
.layout-footer__links > li:last-child a {
  padding-right: 0;
}
.layout-footer__links > li a {
  font-size: 0.75rem;
  text-decoration: none;
  padding: 0 1em;
  transition: color 0.2s ease-out;
}
.layout-footer__links > li a:hover {
  color: var(--primary);
}
.layout-footer__notes {
  align-self: end;
  grid-row: 2;
}
.layout-footer__logo {
  grid-column: 2;
  justify-self: end;
  transition: opacity 0.2s ease-out;
}
.layout-footer__logo:hover {
  opacity: 0.6;
}
.layout-footer__sub-links {
  margin-top: 16px;
  grid-column: 2;
  font-size: 0.75rem;
}
.layout-footer__copy {
  font-size: 0.75rem;
  display: block;
}

.sidebar-layout-container {
  display: grid;
  grid-template-columns: 1fr minmax(0, 840px) 1fr;
  column-gap: 30px;
}

.sidebar-layout-container__nav {
  width: 230px;
  grid-row: 2;
}
.sidebar-layout-container--type-article .sidebar-layout-container__nav {
  grid-row: span 2;
}

.sidebar-layout-container__head {
  grid-column: span 3;
}
.sidebar-layout-container--type-article .sidebar-layout-container__head {
  grid-column: 2;
}

.sidebar-layout-container__body {
  grid-column: 2/4;
}

.layout-sidebar {
  position: sticky;
  top: 130px;
}
.layout-sidebar__list {
  display: grid;
  row-gap: 4px;
}
.layout-sidebar__item {
  display: grid;
}
.layout-sidebar__link {
  min-height: 50px;
  font-size: 0.875rem;
  text-decoration: none;
  padding: 16px 10px 16px 20px;
  background-color: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.layout-sidebar__link::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: currentColor;
  -webkit-mask: url(../images/ic_link.svg);
  mask: url(../images/ic_link.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 5px 8px;
  mask-size: 5px 8px;
  -webkit-mask-position: center right;
  mask-position: center right;
}
.layout-sidebar__link.is-current {
  background-color: var(--light-gray);
  color: var(--black);
}
.layout-sidebar__sub-list {
  background-color: var(--light-gray);
  padding-bottom: 12px;
}
.layout-sidebar__sub-link {
  font-size: 12px;
  text-decoration: none;
  display: flex;
  padding: 4px 10px 4px 20px;
}
.layout-sidebar__sub-link:hover {
  text-decoration: underline;
}
.layout-sidebar__sub-link::before {
  content: "";
  display: block;
  height: 1px;
  width: 28px;
  background-color: currentColor;
  margin-top: 0.5lh;
  margin-right: 0.5em;
}
.layout-sidebar__sub-link::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  align-self: center;
  margin-left: auto;
  background: currentColor;
  -webkit-mask: url(../images/ic_link.svg);
  mask: url(../images/ic_link.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 5px 8px;
  mask-size: 5px 8px;
  -webkit-mask-position: center right;
  mask-position: center right;
}

.breadcrumb-wrapper {
  padding: 0 var(--side-padding);
  margin-inline: auto;
}

.breadcrumb {
  margin-bottom: 20px;
  margin-top: 8px;
  padding-left: 10px;
}
.breadcrumb__list {
  display: flex;
  column-gap: 8px;
  flex-wrap: wrap;
  font-size: 0.75rem;
}
.breadcrumb__list-item {
  display: flex;
  column-gap: inherit;
}
.breadcrumb__list-item:has(a)::after {
  content: "";
  display: block;
  width: 1em;
  height: 1lh;
  margin-top: 1px;
  background: currentColor;
  -webkit-mask: url(../images/ic_link.svg);
  mask: url(../images/ic_link.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 7px 11px;
  mask-size: 7px 11px;
  -webkit-mask-position: center center;
  mask-position: center center;
}
.breadcrumb__list-item span {
  color: var(--primary);
}
.breadcrumb__list-link {
  text-decoration: none;
}
.breadcrumb__list-link:hover {
  text-decoration: underline;
}

.container {
  max-width: calc(var(--container-width) + var(--side-padding) * 2);
  padding-inline: var(--side-padding);
  margin-inline: auto;
}
.container--mx-zero {
  margin-inline: 0;
}
.container--pt-lg {
  padding-top: 60px;
}
.container--pb-lg {
  padding-bottom: 144px;
}
.container--pl-zero {
  padding-left: 0;
}
.container--w-xs {
  max-width: 700px;
}
.container--w-sm {
  max-width: 1023px;
}
.container--w-lg {
  max-width: 1366px;
}
.container--bs-cb {
  box-sizing: content-box;
}

.fv {
  position: relative;
}
.fv__image img {
  transition: opacity 0.3s ease-in-out;
}
.fv__text {
  position: absolute;
  inset: 0;
  color: var(--white);
  text-align: left;
  font-size: 2.5rem;
  letter-spacing: 0.03em;
}
.fv__text__logo img {
  position: unset !important;
  width: 20.125rem !important;
  height: auto !important;
}
._fv01 .fv__text__logo {
  position: absolute;
  bottom: 7%;
  left: 5.84%;
  width: 86.8%;
}
._fv01 .fv__text__logo img {
  width: 100% !important;
}
.fv__text-inner {
  position: absolute;
  font-size: 1.5rem;
  line-height: 2.08;
}
.fv__link {
  position: absolute;
}
._fv03 .fv__link {
  transform: translateY(-50%);
}
.fv__link-button {
  font-family: var(--font-family-en);
  text-decoration: none;
  display: block;
  border-bottom: 1px solid var(--white);
  position: relative;
  text-align: left;
  font-size: 1rem;
  width: fit-content;
  padding-bottom: 10px;
  padding-right: 100px;
  transition: 0.2s ease-out;
  margin-right: 16px;
  margin-top: 22px;
}
a:hover .fv__link-button {
  letter-spacing: 0.1em;
  padding-right: 105px;
  padding-left: 0.3em;
  margin-right: 0;
}
.fv__link-button::after {
  content: "";
  width: 40px;
  border-bottom: 1px solid var(--white);
  position: absolute;
  right: 0;
  bottom: -1px;
  rotate: 40deg;
  transform-origin: right bottom;
}
.fv .container {
  padding-top: 32px;
  padding-bottom: 32px;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
  pointer-events: none;
}
.fv .swiper img {
  width: 100%;
}

.swiper-pagination-wrapper {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  width: 100%;
  padding-inline: 16px;
}
.swiper-pagination-wrapper .swiper-pagination {
  --swiper-pagination-bullet-horizontal-gap: 6px;
  --swiper-theme-color: var(--primary);
  --swiper-pagination-bullet-inactive-color: var(--white);
  --swiper-pagination-bullet-width: 42px;
  --swiper-pagination-bullet-height: 3px;
  position: static;
  display: flex;
  justify-content: center;
}
.swiper-pagination-wrapper .swiper-pagination-bullet {
  border-radius: 0;
  opacity: 1;
}
.is-single .swiper-pagination-wrapper {
  display: none;
}

.is-single .swiper-wrapper {
  justify-content: center;
}

.fv-fadein {
  visibility: hidden;
  transition:
    opacity 0.7s,
    visibility 0.7s,
    transform 0.7s;
  opacity: 0;
}

.is-fadein {
  visibility: visible;
  transform: translateX(0);
  opacity: 1;
}

.fadein {
  visibility: hidden;
  transition:
    opacity 0.7s,
    visibility 0.7s,
    transform 0.7s;
  transform: translateY(110px);
  opacity: 0;
}

.is-fadein {
  visibility: visible;
  transform: translateX(0);
  opacity: 1;
}

.page-header {
  padding-inline: var(--side-padding);
  margin-block: 56px;
}
.page-header__inner {
  max-width: var(--container-width);
  margin-inline: auto;
}
.page-header:has(.page-header__bg) .page-header__inner {
  position: relative;
  z-index: 1;
}
.page-header__title {
  display: grid;
  text-align: center;
}
.page-header__en-title {
  font-family: var(--font-family-en);
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: normal;
}
.page-header__ja-title {
  font-size: 1rem;
  font-weight: normal;
}
.page-header__ja-title--lg {
  font-size: 2rem;
}
.page-header__lead {
  text-align: center;
  margin-top: 48px;
  margin-inline: calc(var(--side-padding) * -1);
}
.page-header:has(.page-header__bg) {
  position: relative;
  aspect-ratio: 1366/294;
  color: var(--white);
  display: flex;
  align-items: center;
  margin-bottom: 100px;
}
.page-header__bg {
  position: absolute;
  inset: 0;
}
.page-header__bg img {
  width: 100%;
}

.section-heading {
  text-align: center;
  margin-top: 136px;
  margin-bottom: 56px;
  display: grid;
}

.section-heading__en {
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading__ja {
  font-size: 1rem;
  font-weight: 400;
}

.secondary-heading {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 112px;
  margin-bottom: 24px;
}
.section-heading + .secondary-heading {
  margin-top: 56px;
}

.common-heading-hasImageHeader {
  font-size: 1.75rem;
  font-weight: normal;
  margin-bottom: 40px;
}

.common-section-heading {
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--dark-gray);
}

.heading-sub-text {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 400;
  vertical-align: middle;
}
.heading-sub-text .tag {
  margin-inline: 6px;
}

.common-section-heading__contact {
  font-size: 1.25rem;
  font-weight: normal;
  margin-bottom: 18px;
}

.common-secondary-heading {
  font-size: 1.25rem;
  font-weight: normal;
  margin-top: 64px;
  margin-bottom: 32px;
  display: flex;
  align-items: start;
  column-gap: 12px;
}
.common-secondary-heading::before {
  content: "";
  height: 1lh;
  width: 5px;
  background-color: currentColor;
}

.common-tertiary-heading {
  font-size: 1.25rem;
  margin-top: 80px;
  margin-bottom: 8px;
}

.card__media img {
  width: 100%;
}

.card__content {
  margin-top: 8px;
}

.card__lead {
  font-weight: bold;
  font-size: 1.25rem;
}

.card__text {
  margin-top: 0;
}

.card__button {
  margin-top: 8px;
  margin-inline: auto;
}

.link-card {
  text-decoration: none;
}
.link-card:hover .link-card__media img {
  transform: scale(1.05);
}

.link-card__media {
  overflow: hidden;
}
.link-card__media img {
  width: 100%;
  transition: transform 0.3s ease;
}

.link-card__content {
  margin-top: 14px;
}

.link-card__text {
  font-size: 1.25rem;
}
.button-reaction .link-card__text {
  transition: color 0.2s ease-out;
}
.button-reaction:hover .link-card__text {
  color: var(--primary);
}

.link-card__button {
  margin-top: 8px;
}

.case-card {
  display: block;
  text-decoration: none;
}
.case-card.button-reaction .case-card__text {
  transition: color 0.2s ease-out;
}
.case-card.button-reaction .case-card__media img {
  transition: transform 0.2s ease-out;
}
.case-card.button-reaction .case-card__text::after {
  transition: transform 0.2s ease-out;
}
.case-card.button-reaction:hover .case-card__text {
  color: var(--primary);
}
.case-card.button-reaction:hover .case-card__media img {
  transform: scale(1.1);
}
.case-card.button-reaction:hover .case-card__text::after {
  transform: translateX(10px);
}

.case-card__media {
  overflow: hidden;
}
.case-card__media img {
  width: 100%;
}

.case-card__content {
  margin-top: 14px;
  padding-inline: 20px;
}
.case-card__content--no-indent {
  padding-inline: 0;
}
.case-card__content--no-indent .case-card__text::after {
  margin-right: 10px;
}

.case-card__text {
  font-size: 1.25rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.case-card__text::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 1em;
  background: currentColor;
  -webkit-mask: url(../images/ic_link.svg);
  mask: url(../images/ic_link.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center right;
  mask-position: center right;
}

.case-card__tags {
  margin-top: 16px;
  margin-inline: auto;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 16px;
}

.product-card__media img {
  width: 100%;
}

.product-card__media-main {
  aspect-ratio: 500/310;
  position: relative;
}
.product-card__media-main img {
  position: absolute;
  inset: 0;
  transition: opacity 0.2s ease-out;
  opacity: 0;
}
.product-card__media-main img.is-selected {
  opacity: 1;
}

.product-card__media-sub {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 12px;
}
.product-card__media-sub button {
  transition: opacity 0.2s ease-out;
}
.product-card__media-sub button:hover {
  opacity: 0.7;
}
.product-card__media-sub button.is-selected {
  position: relative;
}
.product-card__media-sub button.is-selected::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid var(--primary);
}

.product-card__media--multiple .product-card__media-item--lg {
  grid-column: span 2;
}

.product-card__model {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.product-card__list {
  margin-top: 16px;
}

.product-card__docs {
  margin-top: 16px;
}

.link-text {
  color: var(--black);
  text-decoration: none;
}
.link-text:hover {
  text-decoration: underline;
}
.link-text--map::after {
  content: "";
  display: inline-block;
  height: 1.5em;
  width: 1em;
  background-image: url(../images/ic_pin.svg);
  background-repeat: no-repeat;
  background-position: center center;
  vertical-align: bottom;
  margin-left: 0.5em;
}
.link-text[target="_blank"]::after {
  content: "";
  display: inline-block;
  height: 1.5em;
  width: 1em;
  background-image: url(../images/ic_external.svg);
  background-repeat: no-repeat;
  background-position: center center;
  vertical-align: bottom;
  margin-left: 0.5em;
}
.link-text[href$=".pdf"]::after {
  content: "";
  display: inline-block;
  height: 1lh;
  width: 1.1em;
  background-image: url(../images/ic_pdf.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  vertical-align: top;
  margin-left: 0.5em;
}
.link-text[href$=".zip"]::after {
  content: "";
  display: inline-block;
  height: 1lh;
  width: 1.1em;
  background-image: url(../images/ic_zip.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  vertical-align: top;
  margin-left: 0.5em;
}
.link-text[href$=".ies"]::after {
  content: "";
  display: inline-block;
  height: 1lh;
  width: 1.1em;
  background-image: url(../images/ic_ies.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  vertical-align: top;
  margin-left: 0.5em;
}

.link-group {
  background-color: #ebebe5;
  margin-top: 86px;
}
.link-group__inner {
  padding: 64px 20px 85px;
}
.link-group__heading {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
}
.link-group__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin-inline: auto;
  gap: 36px;
}
.link-group__list > li {
  min-width: calc(33.3333333333% - 72px);
}
.link-group__list > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  font-size: clamp(1rem, 1.5625vw, 1.125rem);
  text-decoration: none;
  height: 100%;
  padding: 30px;
  position: relative;
  transition:
    0.2s opacity ease-out,
    color 0.2s ease-out,
    background-color 0.2s ease-out;
}
.link-group__list > li > a::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: currentColor;
  -webkit-mask: url(../images/ic_link.svg);
  mask: url(../images/ic_link.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 5px 8px;
  mask-size: 5px 8px;
  -webkit-mask-position: center right;
  mask-position: center right;
}
.link-group__list > li > a:hover {
  background-color: var(--primary);
  color: var(--white);
}
.link-group__list > li > a > span {
  padding-right: 4px;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.button-reaction {
  text-decoration: none;
}

.link-button {
  font-family: var(--font-family-en);
  text-decoration: none;
  display: block;
  border-bottom: 1px solid var(--black);
  position: relative;
  text-align: right;
  width: 100%;
  max-width: calc(100% - 16px);
  padding-bottom: 10px;
  padding-right: 80px;
  transition: 0.2s ease-out;
  margin-right: 16px;
}
.link-button.size-half {
  max-width: 520px;
}
.button-reaction:hover .link-button {
  max-width: 100%;
  border-bottom-color: var(--primary);
  color: var(--primary);
  letter-spacing: 0.1em;
  padding-right: 64px;
  margin-right: 0;
}
.button-reaction:hover .link-button.size-half {
  max-width: 536px;
}
.button-reaction:hover .link-button::after {
  border-bottom-color: var(--primary);
}
.link-button::after {
  content: "";
  width: 40px;
  border-bottom: 1px solid var(--black);
  position: absolute;
  right: 0;
  bottom: -1px;
  rotate: 40deg;
  transform-origin: right bottom;
}

.button {
  box-sizing: border-box;
  text-decoration: none;
  color: var(--white);
  background-color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  padding: 0.5em 20px;
  min-height: 70px;
  transition: 0.2s opacity ease-out;
}
.button:hover {
  opacity: 0.7;
}
.button--type-link {
  justify-content: space-between;
}
.button--type-link::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: currentColor;
  -webkit-mask: url(../images/ic_link.svg);
  mask: url(../images/ic_link.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 5px 8px;
  mask-size: 5px 8px;
  -webkit-mask-position: center right;
  mask-position: center right;
}
.button--type-cancel {
  background-color: var(--gray);
}
.button--sm {
  font-size: 0.875rem;
  max-width: 230px;
  min-height: 50px;
}

.cta-button {
  text-decoration: none;
  color: var(--white);
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 320px;
  padding: 1.5em;
  transition: 0.2s background-color ease-out;
}
.cta-button:hover {
  background-color: var(--black);
}
.cta-button:hover::after {
  transform: translateX(2px);
}
.cta-button::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: currentColor;
  -webkit-mask: url(../images/ic_link.svg);
  mask: url(../images/ic_link.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 5px 8px;
  mask-size: 5px 8px;
  -webkit-mask-position: center right;
  mask-position: center right;
  transform: translateX(-8px);
  transition: 0.2s transform ease-out;
}

.box--bg {
  background: var(--white);
}
.box--border {
  border: 1px solid var(--dark-gray);
  padding: 40px;
}
.box--thick-border {
  border: 10px solid var(--light-gray);
  padding: 40px;
}
.box--padding-sm {
  padding: 12px 30px;
}

.news-list {
  display: grid;
  grid-template-columns: auto 1fr;
}
.news-list__item {
  text-decoration: none;
  grid-column: span 2;
  display: grid;
  grid-template-columns: subgrid;
  align-items: baseline;
  gap: 16px;
  padding: 24px 16px;
  border-bottom: 1px solid var(--dark-gray);
}
.news-list__item:hover {
  border-bottom: 1px solid var(--primary);
}
.news-list__item:hover .news-list__link {
  color: var(--primary);
}
.news-list__item:hover .news-list__link::after {
  transform: translateX(10px);
}
.news-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1em;
  padding-left: 40px;
  position: relative;
}
.news-list__link::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: currentColor;
  -webkit-mask: url(../images/ic_link.svg);
  mask: url(../images/ic_link.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 7px 10px;
  mask-size: 7px 10px;
  -webkit-mask-position: center right;
  mask-position: center right;
  transition: transform 0.2s ease-out;
}

.num-list {
  list-style: decimal;
  margin-left: 1.4em;
}
.disc-list {
  list-style: none;
  color: currentColor;
}
.disc-list li {
  position: relative;
  padding-left: 1.25em;
}
.disc-list li + li {
  margin-top: 4px;
}
.disc-list li::before {
  content: "";
  position: absolute;
  left: calc((1em - 2px) / 2);
  top: calc((1lh - 2px) / 2);
  width: 2px;
  height: 2px;
  background-color: currentColor;
  border-radius: 100vmax;
}
.disc-list--disc-lg li::before {
  left: 0;
  top: calc((1lh - 1em) / 2);
  width: 1em;
  height: 1em;
}
.disc-list--text-sm {
  font-size: 0.75rem;
}

.link-list--horizontal {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1em;
}

.link-list__item > a {
  text-decoration: none;
  transition: color 0.2s ease-out;
}
.link-list__item > a[target="_blank"]::after {
  content: "";
  display: inline-block;
  height: 1lh;
  width: 0.75em;
  background: currentColor;
  -webkit-mask: url(../images/ic_external.svg);
  mask: url(../images/ic_external.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 0.75em 0.75em;
  mask-size: 0.75em 0.75em;
  -webkit-mask-position: center right;
  mask-position: center right;
  vertical-align: bottom;
  margin-left: 0.25em;
}
.link-list__item > a:hover {
  color: var(--primary);
}

.description-list {
  display: grid;
  grid-template-columns: auto 1fr;
}
.description-list dt {
  display: flex;
}
.description-list dt::before {
  content: "・";
}
.description-list dt::after {
  content: "：";
  margin-left: auto;
}
.description-list dd {
  grid-column: 2;
}

.note-list--horizontal {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5em;
}

.note-list__item {
  display: flex;
  column-gap: 1ch;
  font-size: 0.75rem;
}
.note-list__item::before {
  content: attr(data-marker);
  flex-shrink: 0;
}

.list-caption {
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.simple-table {
  border-collapse: collapse;
  width: 100%;
  border-style: solid;
  border-color: var(--dark-gray);
  border-width: 1px 0 1px;
}
.simple-table tbody tr + tr {
  border-top: 1px solid var(--dark-gray);
}
.simple-table tbody th,
.simple-table tbody td {
  padding-block: 12px;
}
.simple-table tbody th {
  font-weight: normal;
  text-align: left;
  padding-inline: 14px;
  position: relative;
  font-weight: bold;
}
.simple-table tbody th::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  bottom: 12px;
  display: block;
  width: 1px;
  background-color: var(--dark-gray);
}
.simple-table tbody td {
  padding-left: 30px;
}

.data-table {
  border-collapse: collapse;
  width: 100%;
  border-style: solid;
  border-color: var(--dark-gray);
  border-width: 1px 0 1px;
}
.data-table tbody tr + tr {
  border-top: 1px solid var(--dark-gray);
}
.data-table tbody tr:nth-child(odd) {
  background-color: var(--light-gray);
}
.data-table tbody th,
.data-table tbody td {
  padding-block: 2px;
}
.data-table tbody th {
  font-weight: normal;
  text-align: left;
  padding-inline: 0.5em;
  white-space: nowrap;
  font-size: 0.75rem;
}
.data-table tbody td {
  padding-inline: 0.5em;
  text-align: center;
  border-left: 1px solid var(--dark-gray);
  font-size: 0.875rem;
}

.media-block {
  display: grid;
  row-gap: 32px;
}
.media-block + .media-block {
  margin-top: 144px;
}

.media-block__content {
  padding-inline: var(--side-padding);
}

.media-block__text {
  font-size: 1rem;
}
.media-block__text--lg {
  font-size: 1.5rem;
}
.media-block__text--xl {
  font-size: 2rem;
}
.media-block__text + .media-block__text {
  margin-top: 24px;
}

.media-block__button {
  margin-top: 64px;
}

.tag-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 0.75rem;
  line-height: 1;
  padding: 6px 1em;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  background-color: var(--light-gray);
  text-align: center;
}
.tag--light-primary {
  background-color: var(--light-primary);
}
.tag--gray {
  color: var(--white);
  background-color: var(--gray);
}
.tag--download {
  margin-left: 4px;
}
.tag--download::before {
  content: "";
  display: inline-block;
  height: 1lh;
  width: 1em;
  background-image: url(../images/ic_download.svg);
  background-repeat: no-repeat;
  background-position: center center;
  vertical-align: bottom;
  margin-right: 0.75em;
}
.tag--lg {
  font-size: 0.875rem;
}
.tag--sm {
  font-size: 0.625rem;
}
.tag[href] {
  transition: 0.2s opacity ease-out;
}
.tag[href]:hover {
  opacity: 0.7;
}

.cta {
  margin-top: 136px;
  color: var(--white);
  background-color: var(--black);
  padding-block: 96px;
  padding-inline: var(--side-padding);
}
.link-group + .cta {
  margin-top: 0;
}

.cta__inner {
  max-width: 540px;
  margin-inline: auto;
}

.cta__heading {
  text-align: center;
  margin-bottom: 32px;
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta__text {
  text-align: center;
  font-size: 1.25rem;
}

.cta__button {
  text-decoration: none;
  margin-top: 38px;
  color: var(--black);
  background-color: var(--white);
  display: block;
  padding-block: 40px;
  padding-inline: 40px;
  transition:
    0.2s opacity ease-out,
    color 0.2s ease-out,
    background-color 0.2s ease-out;
}
.cta__button:hover {
  background-color: var(--primary);
  color: var(--white);
}
.cta__button:hover .cta__button-inner {
  margin-right: -8px;
  border-bottom: 1px solid var(--white);
}
.cta__button:hover .cta__button-inner::after {
  border-bottom: 1px solid var(--white);
}

.cta__button-inner {
  display: block;
  border-bottom: 1px solid var(--black);
  position: relative;
  padding-bottom: 10px;
  padding-right: 64px;
  margin-right: 16px;
  transition:
    0.2s margin-right ease-out,
    border-color 0.2s ease-out;
}
.cta__button-inner::after {
  content: "";
  width: 40px;
  border-bottom: 1px solid var(--black);
  position: absolute;
  right: 0;
  bottom: -1px;
  rotate: 40deg;
  transform-origin: right bottom;
  transition: border-color 0.2s ease-out;
}

.features-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 24px;
  position: relative;
  z-index: 0;
}

.features-section__head {
  position: relative;
  padding-block: 48px;
  padding-left: 60px;
}
.features-section__head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: calc(200% + 24px);
  height: 100%;
  background-color: var(--light-gray);
}

.features-section__media {
  grid-column: 2;
  grid-row: span 2;
  padding-top: 40px;
}
.features-section__media img {
  width: 100%;
}

.features-section__body {
  margin-top: 32px;
}

.features-section__heading {
  font-size: 2rem;
  font-weight: normal;
  line-height: 2;
}

.features-section__num {
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  font-size: 2.5rem;
  display: block;
}

.features-section__lead {
  font-size: 1.5rem;
}

.features-section__text {
  margin-top: 28px;
}

.figure {
  display: grid;
  row-gap: 8px;
}

.figure__caption {
  font-size: 0.875rem;
}
.figure__caption--sl {
  font-size: 1rem;
}
.figure__caption--lg {
  font-size: 1.25rem;
}

.article-header {
  padding-right: var(--side-padding);
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 16px;
}

.article-header__title {
  font-size: 1.5rem;
  font-weight: normal;
  width: 100%;
}

.news-container {
  display: grid;
  grid-template-columns: 1fr minmax(0, 1023px) minmax(80px, 1fr);
  column-gap: 32px;
}

.news-container__nav {
  width: 230px;
  grid-row: 1;
  padding-top: 24px;
}

.news-container__tab {
  grid-column: 2;
  position: relative;
}
.news-container__tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 200vw;
  background-color: var(--black);
  translate: -50%;
}

.news-container__tab-panel {
  grid-column: 2;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
}

.tabs__item {
  flex-grow: 1;
}

.tabs__button {
  width: 100%;
  border-radius: 10px 10px 0 0;
  padding: 16px;
  background-color: var(--light-gray);
  text-align: center;
  min-height: 70px;
  box-sizing: border-box;
}
.tabs__button--light-primary {
  background-color: var(--light-primary);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination__list {
  display: flex;
  column-gap: 40px;
}

.pagination__link {
  font-family: var(--font-family-en);
  font-weight: bold;
  text-decoration: none;
  padding: 4px 2px;
}

.pagination__link--current {
  position: relative;
}
.pagination__link--current::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: currentColor;
}

.pager {
  display: flex;
  column-gap: 48px;
}

.pager__nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  column-gap: 40px;
}

.pager__back,
.pager__prev,
.pager__next {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-block: 8px;
  width: 100%;
  max-width: 130px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}
.pager__back::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: currentColor;
  -webkit-mask: url(../images/ic_link.svg);
  mask: url(../images/ic_link.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 5px 8px;
  mask-size: 5px 8px;
  -webkit-mask-position: center right;
  mask-position: center right;
  rotate: 180deg;
}

.pager__prev::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: currentColor;
  -webkit-mask: url(../images/ic_link.svg);
  mask: url(../images/ic_link.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 5px 8px;
  mask-size: 5px 8px;
  -webkit-mask-position: center right;
  mask-position: center right;
  rotate: 180deg;
}

.pager__next::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: currentColor;
  -webkit-mask: url(../images/ic_link.svg);
  mask: url(../images/ic_link.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 5px 8px;
  mask-size: 5px 8px;
  -webkit-mask-position: center right;
  mask-position: center right;
}

span.pager__prev {
  color: var(--gray);
  pointer-events: none;
  justify-content: flex-end;
}
span.pager__prev::before {
  display: none;
}

span.pager__next {
  color: var(--gray);
  pointer-events: none;
}
span.pager__next::after {
  display: none;
}

.filter-widget {
  background-color: var(--light-gray);
  border-radius: 35px;
}

.filter-widget__head {
  box-sizing: border-box;
  padding: 16px 36px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-widget__accordion-icon {
  position: relative;
  width: 8px;
  aspect-ratio: 1;
}
.filter-widget__accordion-icon::before,
.filter-widget__accordion-icon::after {
  content: "";
  height: 1px;
  width: 7px;
  background-color: var(--black);
  position: absolute;
  bottom: 0;
  transition: all 0.2s ease-in-out;
}
.filter-widget__head[aria-expanded="true"]
  .filter-widget__accordion-icon::before,
.filter-widget__head[aria-expanded="true"]
  .filter-widget__accordion-icon::after {
  width: 11px;
  bottom: 50%;
}
.filter-widget__accordion-icon::before {
  right: 50%;
  rotate: 45deg;
  transform-origin: right bottom;
}
.filter-widget__head[aria-expanded="true"]
  .filter-widget__accordion-icon::before {
  translate: 50% 1px;
  transform-origin: center center;
}
.filter-widget__accordion-icon::after {
  left: 50%;
  rotate: -45deg;
  transform-origin: left bottom;
}
.filter-widget__head[aria-expanded="true"]
  .filter-widget__accordion-icon::after {
  translate: -50% 1px;
  transform-origin: center center;
}

.filter-widget__body {
  padding: 8px 36px 40px;
}

.filter-widget__button {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.fieldset {
  display: block;
  border: none;
}
.fieldset + .fieldset {
  margin-top: 32px;
}

.fieldset__legend {
  width: 100%;
  margin-bottom: 4px;
  border-top: 1px solid var(--black);
}

.checkbox-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.checkbox {
  display: inline-flex;
  align-items: start;
  column-gap: 8px;
  position: relative;
}
.checkbox input {
  -webkit-appearance: none;
  appearance: none;
  background: var(--white);
  border: 1px solid var(--black);
  width: 1em;
  aspect-ratio: 1;
  padding: 0;
  margin: calc((1lh - 1em) / 2 + 1px) 0 0;
  cursor: pointer;
}
.checkbox:has(:checked)::before {
  content: "";
  position: absolute;
  left: 0.375em;
  top: calc((1lh - 1em) / 2 + 0.25em);
  width: 0.25em;
  height: 0.5em;
  border: solid var(--black);
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.accordion {
  border-style: solid;
  border-color: var(--dark-gray);
  border-width: 1px 0 1px;
}

.accordion__head {
  padding: 24px 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.accordion__category {
  font-family: var(--font-family-en);
  font-size: 1.25rem;
  color: var(--primary);
  border-right: 3px solid currentColor;
  line-height: 1;
  padding-right: 20px;
}

.accordion__heading {
  font-weight: bold;
  font-size: 1.25rem;
  flex-grow: 1;
}

.accordion__icon {
  width: 40px;
  aspect-ratio: 1;
  position: relative;
}
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: var(--black);
  position: absolute;
  top: 50%;
  left: calc(50% - 15px);
}
.accordion__icon::after {
  transition: 0.2s rotate ease-in-out;
  rotate: 90deg;
}
.accordion[aria-expanded="true"] .accordion__icon::after {
  transform-origin: center center;
  rotate: 0deg;
}

.accordion__inner {
  padding: 12px 60px 40px;
}

/**************************\
  Basic Modal Styles
\**************************/
.modal__overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(69, 69, 69, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  max-width: 1000px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
  position: relative;
  width: 60px;
  height: 30px;
  margin-left: auto;
}
.modal__close:before,
.modal__close:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--white);
}
.modal__close:before {
  rotate: -30deg;
}
.modal__close:after {
  rotate: 30deg;
}

.modal__content {
  margin-top: 20px;
}

.modal-thumb {
  --_icon-size: 105px;
  position: relative;
}
.modal-thumb::after {
  content: "";
  position: absolute;
  top: calc(50% - var(--_icon-size) / 2);
  left: calc(50% - var(--_icon-size) / 2);
  background-image: url(../images/ic_play.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: var(--_icon-size);
  aspect-ratio: 1;
}
.modal-thumb--icon-small {
  --_icon-size: 80px;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.profile-block {
  display: grid;
  grid-template-columns: 1fr 210px;
  grid-template-rows: 1fr auto;
  column-gap: 24px;
  row-gap: 24px;
  margin-bottom: 104px;
  max-width: 744px;
  margin-inline: auto;
}

.profile-block__copy {
  grid-column: 1;
  font-size: 2rem;
}

.profile-block__data {
  grid-column: 1;
}

.profile-block__ja-name {
  font-size: 1.5rem;
}

.profile-block__en-name {
  font-size: 0.875rem;
  font-family: var(--font-family-en);
  text-transform: uppercase;
}

.profile-block__media {
  grid-column: 2;
  grid-row: 1/3;
}

.faq-block {
  border-bottom: 1px solid var(--black);
}
.faq-block:first-child {
  border-top: 1px solid var(--black);
}

.faq-block__head {
  width: 100%;
  display: flex;
  column-gap: 16px;
  padding-block: 24px;
}
.faq-block__head::before {
  content: "Q";
  font-family: var(--font-family-en);
  font-size: 1.875rem;
  line-height: 1;
}

.faq-block__accordion-icon {
  flex-shrink: 0;
  position: relative;
  margin-left: auto;
  width: 32px;
}
.faq-block__accordion-icon::before,
.faq-block__accordion-icon::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--black);
  position: absolute;
  top: 50%;
  left: 0;
}
.faq-block__accordion-icon::after {
  transition: 0.2s rotate ease-in-out;
  rotate: 90deg;
}
.faq-block[aria-expanded="true"] .faq-block__accordion-icon::after {
  transform-origin: center center;
  rotate: 0deg;
}

.faq-block__body {
  display: flex;
  column-gap: 16px;
  padding-left: 40px;
}
.faq-block__body::before {
  content: "A";
  font-family: var(--font-family-en);
  font-size: 1.875rem;
  line-height: 1;
}

.faq-block__a {
  padding-bottom: 24px;
}

.rounded-0 {
  border-radius: 0 !important;
}
.rounded-sm {
  border-radius: 8px !important;
}
.rounded-md {
  border-radius: 16px !important;
}
.rounded-lg {
  border-radius: 32px !important;
}
.rounded-full {
  border-radius: 100vmax !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-grid {
  display: grid !important;
}
.d-inline-grid {
  display: inline-grid !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-none {
  display: none !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.justify-content-evenly {
  justify-content: space-evenly !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
.fz-xs {
  font-size: 0.75rem !important;
}
.fz-sm {
  font-size: 0.875rem !important;
}
.fz-base {
  font-size: 1rem !important;
}
.fz-lg {
  font-size: 1.125rem !important;
}
.fz-xl {
  font-size: 1.25rem !important;
}
.fz-xxl {
  font-size: 1.5rem !important;
}
.fz-xxxl {
  font-size: 1.625rem !important;
}
.fz-xxxxl {
  font-size: 1.75rem !important;
}
.fz-xxxxxl {
  font-size: 1.875rem !important;
}
.fw-normal {
  font-weight: normal !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: bold !important;
}
.lh-1 {
  line-height: 1 !important;
}
.lh-sm {
  line-height: 1.3 !important;
}
.lh-md {
  line-height: 1.5 !important;
}
.lh-base {
  line-height: 2 !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
.color-gray {
  color: #888888 !important;
}

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

.uppercase {
  text-transform: uppercase;
}

.grid {
  display: grid !important;
}
.grid--ai-center {
  align-items: center;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.gap-0 {
  gap: 0 !important;
}
.gap-xs {
  gap: 0.25rem !important;
}
.gap-sm {
  gap: 0.5rem !important;
}
.gap-md {
  gap: 1rem !important;
}
.gap-lg {
  gap: 1.5rem !important;
}
.gap-xl {
  gap: 2rem !important;
}
.gap-xxl {
  gap: 2.5rem !important;
}
.gap-xxxl {
  gap: 3rem !important;
}
.gap-4xl {
  gap: 4rem !important;
}
.gap-5xl {
  gap: 5rem !important;
}
.gap-6xl {
  gap: 6rem !important;
}
.gap-7xl {
  gap: 7rem !important;
}
.gap-8xl {
  gap: 8rem !important;
}
.gap-9xl {
  gap: 9rem !important;
}
.gap-10xl {
  gap: 10rem !important;
}
.gap-x-0 {
  column-gap: 0;
}
.gap-x-xs {
  column-gap: 0.25rem;
}
.gap-x-sm {
  column-gap: 0.5rem;
}
.gap-x-md {
  column-gap: 1rem;
}
.gap-x-lg {
  column-gap: 1.5rem;
}
.gap-x-xl {
  column-gap: 2rem;
}
.gap-x-xxl {
  column-gap: 2.5rem;
}
.gap-x-xxxl {
  column-gap: 3rem;
}
.gap-x-4xl {
  column-gap: 4rem;
}
.gap-x-5xl {
  column-gap: 5rem;
}
.gap-x-6xl {
  column-gap: 6rem;
}
.gap-x-7xl {
  column-gap: 7rem;
}
.gap-x-8xl {
  column-gap: 8rem;
}
.gap-x-9xl {
  column-gap: 9rem;
}
.gap-x-10xl {
  column-gap: 10rem;
}
.gap-y-0 {
  row-gap: 0;
}
.gap-y-xs {
  row-gap: 0.25rem;
}
.gap-y-sm {
  row-gap: 0.5rem;
}
.gap-y-md {
  row-gap: 1rem;
}
.gap-y-lg {
  row-gap: 1.5rem;
}
.gap-y-xl {
  row-gap: 2rem;
}
.gap-y-xxl {
  row-gap: 2.5rem;
}
.gap-y-xxxl {
  row-gap: 3rem;
}
.gap-y-4xl {
  row-gap: 4rem;
}
.gap-y-5xl {
  row-gap: 5rem;
}
.gap-y-6xl {
  row-gap: 6rem;
}
.gap-y-7xl {
  row-gap: 7rem;
}
.gap-y-8xl {
  row-gap: 8rem;
}
.gap-y-9xl {
  row-gap: 9rem;
}
.gap-y-10xl {
  row-gap: 10rem;
}
.h-25 {
  height: 25% !important;
}
.h-50 {
  height: 50% !important;
}
.h-75 {
  height: 75% !important;
}
.h-100 {
  height: 100% !important;
}
.h-auto {
  height: auto !important;
}
.mh-100 {
  max-height: 100% !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}
.mb-xs {
  margin-bottom: 0.25rem !important;
}

.mt-xs {
  margin-top: 0.25rem !important;
}
.mb-sm {
  margin-bottom: 0.5rem !important;
}

.mt-sm {
  margin-top: 0.5rem !important;
}
.mb-md {
  margin-bottom: 1rem !important;
}

.mt-md {
  margin-top: 1rem !important;
}
.mb-lg {
  margin-bottom: 1.5rem !important;
}

.mt-lg {
  margin-top: 1.5rem !important;
}
.mb-xl {
  margin-bottom: 2rem !important;
}

.mt-xl {
  margin-top: 2rem !important;
}
.mb-xxl {
  margin-bottom: 2.5rem !important;
}

.mt-xxl {
  margin-top: 2.5rem !important;
}
.mb-xxxl {
  margin-bottom: 3rem !important;
}

.mt-xxxl {
  margin-top: 3rem !important;
}
.mb-4xl {
  margin-bottom: 4rem !important;
}

.mt-4xl {
  margin-top: 4rem !important;
}
.mb-5xl {
  margin-bottom: 5rem !important;
}

.mt-5xl {
  margin-top: 5rem !important;
}
.mb-6xl {
  margin-bottom: 6rem !important;
}

.mt-6xl {
  margin-top: 6rem !important;
}
.mb-7xl {
  margin-bottom: 7rem !important;
}

.mt-7xl {
  margin-top: 7rem !important;
}
.mb-8xl {
  margin-bottom: 8rem !important;
}

.mt-8xl {
  margin-top: 8rem !important;
}
.mb-9xl {
  margin-bottom: 9rem !important;
}

.mt-9xl {
  margin-top: 9rem !important;
}
.mb-10xl {
  margin-bottom: 10rem !important;
}

.mt-10xl {
  margin-top: 10rem !important;
}
.ml-md {
  margin-left: 16px !important;
}

.ml-0 {
  margin-left: 0 !important;
}
.m-inline-auto {
  margin-inline: auto !important;
}

.m-inline-inherit {
  margin-inline: inherit !important;
}

.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: sticky !important;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
.w-25 {
  width: 25% !important;
}
.w-50 {
  width: 50% !important;
}
.w-66 {
  width: 66% !important;
}
.w-75 {
  width: 75% !important;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.mw-100 {
  max-width: 100% !important;
}

.w-fit {
  width: fit-content !important;
}
.minh-unset {
  min-height: unset !important;
}

.no-break {
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media (min-width: 576px) {
  .rounded-sm-0 {
    border-radius: 0 !important;
  }
  .rounded-sm-sm {
    border-radius: 8px !important;
  }
  .rounded-sm-md {
    border-radius: 16px !important;
  }
  .rounded-sm-lg {
    border-radius: 32px !important;
  }
  .rounded-sm-full {
    border-radius: 100vmax !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-grow-sm-1 {
    flex-grow: 1 !important;
  }
  .flex-shrinksm--0 {
    flex-shrink: 0 !important;
  }
  .flex-shrink-sm-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .fz-sm-xs {
    font-size: 0.75rem !important;
  }
  .fz-sm-sm {
    font-size: 0.875rem !important;
  }
  .fz-sm-base {
    font-size: 1rem !important;
  }
  .fz-sm-lg {
    font-size: 1.125rem !important;
  }
  .fz-sm-xl {
    font-size: 1.25rem !important;
  }
  .fz-sm-xxl {
    font-size: 1.5rem !important;
  }
  .fz-sm-xxxl {
    font-size: 1.625rem !important;
  }
  .fz-sm-xxxxl {
    font-size: 1.75rem !important;
  }
  .fz-sm-xxxxxl {
    font-size: 1.875rem !important;
  }
  .fw-sm-bold {
    font-weight: bold !important;
  }
  .lh-sm-1 {
    line-height: 1 !important;
  }
  .lh-sm-sm {
    line-height: 1.3 !important;
  }
  .lh-sm-md {
    line-height: 1.5 !important;
  }
  .lh-sm-base {
    line-height: 2 !important;
  }
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .text-sm-nowrap {
    white-space: nowrap !important;
  }
  .grid .grid-sm {
    display: grid !important;
  }
  .grid-cols-sm-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-sm-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-sm-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-sm-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-sm-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-sm-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-sm-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid-cols-sm-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-sm-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid-cols-sm-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid-cols-sm-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid-cols-sm-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-xs {
    gap: 0.25rem !important;
  }
  .gap-sm-sm {
    gap: 0.5rem !important;
  }
  .gap-sm-md {
    gap: 1rem !important;
  }
  .gap-sm-lg {
    gap: 1.5rem !important;
  }
  .gap-sm-xl {
    gap: 2rem !important;
  }
  .gap-sm-xxl {
    gap: 2.5rem !important;
  }
  .gap-sm-xxxl {
    gap: 3rem !important;
  }
  .gap-sm-4xl {
    gap: 4rem !important;
  }
  .gap-sm-5xl {
    gap: 5rem !important;
  }
  .gap-sm-6xl {
    gap: 6rem !important;
  }
  .gap-sm-7xl {
    gap: 7rem !important;
  }
  .gap-sm-8xl {
    gap: 8rem !important;
  }
  .gap-sm-9xl {
    gap: 9rem !important;
  }
  .gap-sm-10xl {
    gap: 10rem !important;
  }
  .gap-x-sm-0 {
    column-gap: 0 !important;
  }
  .gap-x-sm-xs {
    column-gap: 0.25rem !important;
  }
  .gap-x-sm-sm {
    column-gap: 0.5rem !important;
  }
  .gap-x-sm-md {
    column-gap: 1rem !important;
  }
  .gap-x-sm-lg {
    column-gap: 1.5rem !important;
  }
  .gap-x-sm-xl {
    column-gap: 2rem !important;
  }
  .gap-x-sm-xxl {
    column-gap: 2.5rem !important;
  }
  .gap-x-sm-xxxl {
    column-gap: 3rem !important;
  }
  .gap-x-sm-4xl {
    column-gap: 4rem !important;
  }
  .gap-x-sm-5xl {
    column-gap: 5rem !important;
  }
  .gap-x-sm-6xl {
    column-gap: 6rem !important;
  }
  .gap-x-sm-7xl {
    column-gap: 7rem !important;
  }
  .gap-x-sm-8xl {
    column-gap: 8rem !important;
  }
  .gap-x-sm-9xl {
    column-gap: 9rem !important;
  }
  .gap-x-sm-10xl {
    column-gap: 10rem !important;
  }
  .gap-y-sm-0 {
    row-gap: 0 !important;
  }
  .gap-y-sm-xs {
    row-gap: 0.25rem !important;
  }
  .gap-y-sm-sm {
    row-gap: 0.5rem !important;
  }
  .gap-y-sm-md {
    row-gap: 1rem !important;
  }
  .gap-y-sm-lg {
    row-gap: 1.5rem !important;
  }
  .gap-y-sm-xl {
    row-gap: 2rem !important;
  }
  .gap-y-sm-xxl {
    row-gap: 2.5rem !important;
  }
  .gap-y-sm-xxxl {
    row-gap: 3rem !important;
  }
  .gap-y-sm-4xl {
    row-gap: 4rem !important;
  }
  .gap-y-sm-5xl {
    row-gap: 5rem !important;
  }
  .gap-y-sm-6xl {
    row-gap: 6rem !important;
  }
  .gap-y-sm-7xl {
    row-gap: 7rem !important;
  }
  .gap-y-sm-8xl {
    row-gap: 8rem !important;
  }
  .gap-y-sm-9xl {
    row-gap: 9rem !important;
  }
  .gap-y-sm-10xl {
    row-gap: 10rem !important;
  }
  .h-sm-25 {
    height: 25% !important;
  }
  .h-sm-50 {
    height: 50% !important;
  }
  .h-sm-75 {
    height: 75% !important;
  }
  .h-sm-100 {
    height: 100% !important;
  }
  .h-sm-auto {
    height: auto !important;
  }
  .mh-sm-100 {
    max-height: 100% !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mb-sm-xs {
    margin-bottom: 0.25rem !important;
  }
  .mt-sm-xs {
    margin-top: 0.25rem !important;
  }
  .mb-sm-sm {
    margin-bottom: 0.5rem !important;
  }
  .mt-sm-sm {
    margin-top: 0.5rem !important;
  }
  .mb-sm-md {
    margin-bottom: 1rem !important;
  }
  .mt-sm-md {
    margin-top: 1rem !important;
  }
  .mb-sm-lg {
    margin-bottom: 1.5rem !important;
  }
  .mt-sm-lg {
    margin-top: 1.5rem !important;
  }
  .mb-sm-xl {
    margin-bottom: 2rem !important;
  }
  .mt-sm-xl {
    margin-top: 2rem !important;
  }
  .mb-sm-xxl {
    margin-bottom: 2.5rem !important;
  }
  .mt-sm-xxl {
    margin-top: 2.5rem !important;
  }
  .mb-sm-xxxl {
    margin-bottom: 3rem !important;
  }
  .mt-sm-xxxl {
    margin-top: 3rem !important;
  }
  .mb-sm-4xl {
    margin-bottom: 4rem !important;
  }
  .mt-sm-4xl {
    margin-top: 4rem !important;
  }
  .mb-sm-5xl {
    margin-bottom: 5rem !important;
  }
  .mt-sm-5xl {
    margin-top: 5rem !important;
  }
  .mb-sm-6xl {
    margin-bottom: 6rem !important;
  }
  .mt-sm-6xl {
    margin-top: 6rem !important;
  }
  .mb-sm-7xl {
    margin-bottom: 7rem !important;
  }
  .mt-sm-7xl {
    margin-top: 7rem !important;
  }
  .mb-sm-8xl {
    margin-bottom: 8rem !important;
  }
  .mt-sm-8xl {
    margin-top: 8rem !important;
  }
  .mb-sm-9xl {
    margin-bottom: 9rem !important;
  }
  .mt-sm-9xl {
    margin-top: 9rem !important;
  }
  .mb-sm-10xl {
    margin-bottom: 10rem !important;
  }
  .mt-sm-10xl {
    margin-top: 10rem !important;
  }
  .m-inline-sm-auto {
    margin-inline: auto !important;
  }
  .m-inline-sm-inherit {
    margin-inline: inherit !important;
  }
  .position-sm-static {
    position: static !important;
  }
  .position-sm-relative {
    position: relative !important;
  }
  .position-sm-absolute {
    position: absolute !important;
  }
  .position-sm-fixed {
    position: fixed !important;
  }
  .position-sm-sticky {
    position: sticky !important;
  }
  .sm-visible {
    visibility: visible !important;
  }
  .sm-invisible {
    visibility: hidden !important;
  }
  .w-sm-25 {
    width: 25% !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-66 {
    width: 66% !important;
  }
  .w-sm-75 {
    width: 75% !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
  .w-sm-auto {
    width: auto !important;
  }
  .mw-sm-100 {
    max-width: 100% !important;
  }
}

@media (min-width: 768px) {
  .sidebar-layout-container__head.__inMain {
    grid-column: 2/4;
  }
  .container--pt-md-xl {
    padding-top: 144px;
  }
  .fv__image {
    aspect-ratio: 1186/688;
    position: relative;
    width: 100%;
    max-width: 1600px;
    height: calc(100vh - 80px);
  }
  .fv__image img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
  }
  .fv__text-inner {
    top: 41.8%;
    left: 70.58%;
    transform: translate(-50%, -50%);
  }
  .fv__link {
    padding-inline: 3.75rem;
  }
  ._fv02 .fv__link {
    bottom: 10%;
    right: 0;
    padding-inline: 4.125rem;
  }
  ._fv03 .fv__link {
    top: 60.5%;
  }
  .card__media.card__media--pc-img-half {
    max-width: 500px;
  }
  .link-group__list > li > a {
    min-height: 124px;
  }
  .disc-list.__type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    column-gap: 1em;
    row-gap: 0.5em;
  }
  .disc-list.__type-grid li {
    grid-column: span 2;
  }
  .disc-list.__type-grid li.__w-half {
    grid-column: span 1;
  }
  .media-block {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    margin-inline: calc(var(--side-padding) * -1);
  }
  .media-block--media-right .media-block__media {
    order: 2;
  }
  .media-block--media-right .media-block__content {
    order: 1;
  }
  .rounded-md-0 {
    border-radius: 0 !important;
  }
  .rounded-md-sm {
    border-radius: 8px !important;
  }
  .rounded-md-md {
    border-radius: 16px !important;
  }
  .rounded-md-lg {
    border-radius: 32px !important;
  }
  .rounded-md-full {
    border-radius: 100vmax !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-grow-md-1 {
    flex-grow: 1 !important;
  }
  .flex-shrinkmd--0 {
    flex-shrink: 0 !important;
  }
  .flex-shrink-md-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .fz-md-xs {
    font-size: 0.75rem !important;
  }
  .fz-md-sm {
    font-size: 0.875rem !important;
  }
  .fz-md-base {
    font-size: 1rem !important;
  }
  .fz-md-lg {
    font-size: 1.125rem !important;
  }
  .fz-md-xl {
    font-size: 1.25rem !important;
  }
  .fz-md-xxl {
    font-size: 1.5rem !important;
  }
  .fz-md-xxxl {
    font-size: 1.625rem !important;
  }
  .fz-md-xxxxl {
    font-size: 1.75rem !important;
  }
  .fz-md-xxxxxl {
    font-size: 1.875rem !important;
  }
  .fw-md-bold {
    font-weight: bold !important;
  }
  .lh-md-1 {
    line-height: 1 !important;
  }
  .lh-md-sm {
    line-height: 1.3 !important;
  }
  .lh-md-md {
    line-height: 1.5 !important;
  }
  .lh-md-base {
    line-height: 2 !important;
  }
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .text-md-nowrap {
    white-space: nowrap !important;
  }
  .grid .grid-md {
    display: grid !important;
  }
  .grid-cols-md-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-md-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-md-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-md-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-md-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid-cols-md-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-md-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid-cols-md-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid-cols-md-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid-cols-md-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-xs {
    gap: 0.25rem !important;
  }
  .gap-md-sm {
    gap: 0.5rem !important;
  }
  .gap-md-md {
    gap: 1rem !important;
  }
  .gap-md-lg {
    gap: 1.5rem !important;
  }
  .gap-md-xl {
    gap: 2rem !important;
  }
  .gap-md-xxl {
    gap: 2.5rem !important;
  }
  .gap-md-xxxl {
    gap: 3rem !important;
  }
  .gap-md-4xl {
    gap: 4rem !important;
  }
  .gap-md-5xl {
    gap: 5rem !important;
  }
  .gap-md-6xl {
    gap: 6rem !important;
  }
  .gap-md-7xl {
    gap: 7rem !important;
  }
  .gap-md-8xl {
    gap: 8rem !important;
  }
  .gap-md-9xl {
    gap: 9rem !important;
  }
  .gap-md-10xl {
    gap: 10rem !important;
  }
  .gap-x-md-0 {
    column-gap: 0 !important;
  }
  .gap-x-md-xs {
    column-gap: 0.25rem !important;
  }
  .gap-x-md-sm {
    column-gap: 0.5rem !important;
  }
  .gap-x-md-md {
    column-gap: 1rem !important;
  }
  .gap-x-md-lg {
    column-gap: 1.5rem !important;
  }
  .gap-x-md-xl {
    column-gap: 2rem !important;
  }
  .gap-x-md-xxl {
    column-gap: 2.5rem !important;
  }
  .gap-x-md-xxxl {
    column-gap: 3rem !important;
  }
  .gap-x-md-4xl {
    column-gap: 4rem !important;
  }
  .gap-x-md-5xl {
    column-gap: 5rem !important;
  }
  .gap-x-md-6xl {
    column-gap: 6rem !important;
  }
  .gap-x-md-7xl {
    column-gap: 7rem !important;
  }
  .gap-x-md-8xl {
    column-gap: 8rem !important;
  }
  .gap-x-md-9xl {
    column-gap: 9rem !important;
  }
  .gap-x-md-10xl {
    column-gap: 10rem !important;
  }
  .gap-y-md-0 {
    row-gap: 0 !important;
  }
  .gap-y-md-xs {
    row-gap: 0.25rem !important;
  }
  .gap-y-md-sm {
    row-gap: 0.5rem !important;
  }
  .gap-y-md-md {
    row-gap: 1rem !important;
  }
  .gap-y-md-lg {
    row-gap: 1.5rem !important;
  }
  .gap-y-md-xl {
    row-gap: 2rem !important;
  }
  .gap-y-md-xxl {
    row-gap: 2.5rem !important;
  }
  .gap-y-md-xxxl {
    row-gap: 3rem !important;
  }
  .gap-y-md-4xl {
    row-gap: 4rem !important;
  }
  .gap-y-md-5xl {
    row-gap: 5rem !important;
  }
  .gap-y-md-6xl {
    row-gap: 6rem !important;
  }
  .gap-y-md-7xl {
    row-gap: 7rem !important;
  }
  .gap-y-md-8xl {
    row-gap: 8rem !important;
  }
  .gap-y-md-9xl {
    row-gap: 9rem !important;
  }
  .gap-y-md-10xl {
    row-gap: 10rem !important;
  }
  .h-md-25 {
    height: 25% !important;
  }
  .h-md-50 {
    height: 50% !important;
  }
  .h-md-75 {
    height: 75% !important;
  }
  .h-md-100 {
    height: 100% !important;
  }
  .h-md-auto {
    height: auto !important;
  }
  .mh-md-100 {
    max-height: 100% !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mb-md-xs {
    margin-bottom: 0.25rem !important;
  }
  .mt-md-xs {
    margin-top: 0.25rem !important;
  }
  .mb-md-sm {
    margin-bottom: 0.5rem !important;
  }
  .mt-md-sm {
    margin-top: 0.5rem !important;
  }
  .mb-md-md {
    margin-bottom: 1rem !important;
  }
  .mt-md-md {
    margin-top: 1rem !important;
  }
  .mb-md-lg {
    margin-bottom: 1.5rem !important;
  }
  .mt-md-lg {
    margin-top: 1.5rem !important;
  }
  .mb-md-xl {
    margin-bottom: 2rem !important;
  }
  .mt-md-xl {
    margin-top: 2rem !important;
  }
  .mb-md-xxl {
    margin-bottom: 2.5rem !important;
  }
  .mt-md-xxl {
    margin-top: 2.5rem !important;
  }
  .mb-md-xxxl {
    margin-bottom: 3rem !important;
  }
  .mt-md-xxxl {
    margin-top: 3rem !important;
  }
  .mb-md-4xl {
    margin-bottom: 4rem !important;
  }
  .mt-md-4xl {
    margin-top: 4rem !important;
  }
  .mb-md-5xl {
    margin-bottom: 5rem !important;
  }
  .mt-md-5xl {
    margin-top: 5rem !important;
  }
  .mb-md-6xl {
    margin-bottom: 6rem !important;
  }
  .mt-md-6xl {
    margin-top: 6rem !important;
  }
  .mb-md-7xl {
    margin-bottom: 7rem !important;
  }
  .mt-md-7xl {
    margin-top: 7rem !important;
  }
  .mb-md-8xl {
    margin-bottom: 8rem !important;
  }
  .mt-md-8xl {
    margin-top: 8rem !important;
  }
  .mb-md-9xl {
    margin-bottom: 9rem !important;
  }
  .mt-md-9xl {
    margin-top: 9rem !important;
  }
  .mb-md-10xl {
    margin-bottom: 10rem !important;
  }
  .mt-md-10xl {
    margin-top: 10rem !important;
  }
  .ml-md-0 {
    margin-left: 0 !important;
  }
  .m-inline-md-auto {
    margin-inline: auto !important;
  }
  .m-inline-md-inherit {
    margin-inline: inherit !important;
  }
  .position-md-static {
    position: static !important;
  }
  .position-md-relative {
    position: relative !important;
  }
  .position-md-absolute {
    position: absolute !important;
  }
  .position-md-fixed {
    position: fixed !important;
  }
  .position-md-sticky {
    position: sticky !important;
  }
  .md-visible {
    visibility: visible !important;
  }
  .md-invisible {
    visibility: hidden !important;
  }
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-66 {
    width: 66% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .w-md-auto {
    width: auto !important;
  }
  .mw-md-100 {
    max-width: 100% !important;
  }
}

@media (min-width: 992px) {
  .layout-header__button {
    display: none;
  }
  .header-menu__grid-item:first-child a::after {
    display: none;
  }
  .header-menu__list li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 2px solid var(--primary);
    transition: scale 0.3s ease-out;
    transform-origin: left;
    scale: 0 1;
  }
  .header-menu__list li:has(.js-mega-menu-trigger)::before {
    width: calc(100% - 1em - 4px);
  }
  .header-menu__list li:has(a:hover)::before {
    scale: 1 1;
  }
  .header-menu__list a::before {
    content: "";
    width: 5px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: currentColor;
    position: absolute;
    right: calc(100% + 8px);
    top: calc(50% - 2px);
    transition: scale 0.3s ease-out;
    scale: 0;
  }
  .header-menu__list a::after {
    rotate: 90deg;
  }
  .header-menu__list a[aria-expanded="true"] {
    color: var(--primary);
    position: relative;
  }
  .header-menu__list a[aria-expanded="true"]::before {
    scale: 1;
  }
  .header-menu__list--contact li::before {
    width: 100% !important;
  }
  .header-menu__sub-list {
    position: absolute;
    left: 0;
    top: 100%;
    right: 0;
    background-color: var(--white);
    min-height: 80px;
    overflow: clip;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
    transition: opacity 0.2s ease-out;
    opacity: 0;
    border-top: 1px solid var(--gray);
    visibility: hidden;
  }
  .header-menu__sub-list.is-open {
    opacity: 1;
    z-index: 10;
    visibility: visible;
  }
  .header-menu__sub-area {
    display: none;
  }
  .news-list__link::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 0.28em;
    bottom: 0.25em;
    display: block;
    width: 1px;
    background-color: var(--dark-gray);
  }
  .rounded-lg-0 {
    border-radius: 0 !important;
  }
  .rounded-lg-sm {
    border-radius: 8px !important;
  }
  .rounded-lg-md {
    border-radius: 16px !important;
  }
  .rounded-lg-lg {
    border-radius: 32px !important;
  }
  .rounded-lg-full {
    border-radius: 100vmax !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-grow-lg-1 {
    flex-grow: 1 !important;
  }
  .flex-shrinklg--0 {
    flex-shrink: 0 !important;
  }
  .flex-shrink-lg-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .fz-lg-xs {
    font-size: 0.75rem !important;
  }
  .fz-lg-sm {
    font-size: 0.875rem !important;
  }
  .fz-lg-base {
    font-size: 1rem !important;
  }
  .fz-lg-lg {
    font-size: 1.125rem !important;
  }
  .fz-lg-xl {
    font-size: 1.25rem !important;
  }
  .fz-lg-xxl {
    font-size: 1.5rem !important;
  }
  .fz-lg-xxxl {
    font-size: 1.625rem !important;
  }
  .fz-lg-xxxxl {
    font-size: 1.75rem !important;
  }
  .fz-lg-xxxxxl {
    font-size: 1.875rem !important;
  }
  .fw-lg-bold {
    font-weight: bold !important;
  }
  .lh-lg-1 {
    line-height: 1 !important;
  }
  .lh-lg-sm {
    line-height: 1.3 !important;
  }
  .lh-lg-md {
    line-height: 1.5 !important;
  }
  .lh-lg-base {
    line-height: 2 !important;
  }
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .text-lg-nowrap {
    white-space: nowrap !important;
  }
  .grid .grid-lg {
    display: grid !important;
  }
  .grid-cols-lg-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-lg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-lg-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-lg-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-lg-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid-cols-lg-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-lg-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid-cols-lg-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid-cols-lg-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid-cols-lg-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-xs {
    gap: 0.25rem !important;
  }
  .gap-lg-sm {
    gap: 0.5rem !important;
  }
  .gap-lg-md {
    gap: 1rem !important;
  }
  .gap-lg-lg {
    gap: 1.5rem !important;
  }
  .gap-lg-xl {
    gap: 2rem !important;
  }
  .gap-lg-xxl {
    gap: 2.5rem !important;
  }
  .gap-lg-xxxl {
    gap: 3rem !important;
  }
  .gap-lg-4xl {
    gap: 4rem !important;
  }
  .gap-lg-5xl {
    gap: 5rem !important;
  }
  .gap-lg-6xl {
    gap: 6rem !important;
  }
  .gap-lg-7xl {
    gap: 7rem !important;
  }
  .gap-lg-8xl {
    gap: 8rem !important;
  }
  .gap-lg-9xl {
    gap: 9rem !important;
  }
  .gap-lg-10xl {
    gap: 10rem !important;
  }
  .gap-x-lg-0 {
    column-gap: 0 !important;
  }
  .gap-x-lg-xs {
    column-gap: 0.25rem !important;
  }
  .gap-x-lg-sm {
    column-gap: 0.5rem !important;
  }
  .gap-x-lg-md {
    column-gap: 1rem !important;
  }
  .gap-x-lg-lg {
    column-gap: 1.5rem !important;
  }
  .gap-x-lg-xl {
    column-gap: 2rem !important;
  }
  .gap-x-lg-xxl {
    column-gap: 2.5rem !important;
  }
  .gap-x-lg-xxxl {
    column-gap: 3rem !important;
  }
  .gap-x-lg-4xl {
    column-gap: 4rem !important;
  }
  .gap-x-lg-5xl {
    column-gap: 5rem !important;
  }
  .gap-x-lg-6xl {
    column-gap: 6rem !important;
  }
  .gap-x-lg-7xl {
    column-gap: 7rem !important;
  }
  .gap-x-lg-8xl {
    column-gap: 8rem !important;
  }
  .gap-x-lg-9xl {
    column-gap: 9rem !important;
  }
  .gap-x-lg-10xl {
    column-gap: 10rem !important;
  }
  .gap-y-lg-0 {
    row-gap: 0 !important;
  }
  .gap-y-lg-xs {
    row-gap: 0.25rem !important;
  }
  .gap-y-lg-sm {
    row-gap: 0.5rem !important;
  }
  .gap-y-lg-md {
    row-gap: 1rem !important;
  }
  .gap-y-lg-lg {
    row-gap: 1.5rem !important;
  }
  .gap-y-lg-xl {
    row-gap: 2rem !important;
  }
  .gap-y-lg-xxl {
    row-gap: 2.5rem !important;
  }
  .gap-y-lg-xxxl {
    row-gap: 3rem !important;
  }
  .gap-y-lg-4xl {
    row-gap: 4rem !important;
  }
  .gap-y-lg-5xl {
    row-gap: 5rem !important;
  }
  .gap-y-lg-6xl {
    row-gap: 6rem !important;
  }
  .gap-y-lg-7xl {
    row-gap: 7rem !important;
  }
  .gap-y-lg-8xl {
    row-gap: 8rem !important;
  }
  .gap-y-lg-9xl {
    row-gap: 9rem !important;
  }
  .gap-y-lg-10xl {
    row-gap: 10rem !important;
  }
  .h-lg-25 {
    height: 25% !important;
  }
  .h-lg-50 {
    height: 50% !important;
  }
  .h-lg-75 {
    height: 75% !important;
  }
  .h-lg-100 {
    height: 100% !important;
  }
  .h-lg-auto {
    height: auto !important;
  }
  .mh-lg-100 {
    max-height: 100% !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mb-lg-xs {
    margin-bottom: 0.25rem !important;
  }
  .mt-lg-xs {
    margin-top: 0.25rem !important;
  }
  .mb-lg-sm {
    margin-bottom: 0.5rem !important;
  }
  .mt-lg-sm {
    margin-top: 0.5rem !important;
  }
  .mb-lg-md {
    margin-bottom: 1rem !important;
  }
  .mt-lg-md {
    margin-top: 1rem !important;
  }
  .mb-lg-lg {
    margin-bottom: 1.5rem !important;
  }
  .mt-lg-lg {
    margin-top: 1.5rem !important;
  }
  .mb-lg-xl {
    margin-bottom: 2rem !important;
  }
  .mt-lg-xl {
    margin-top: 2rem !important;
  }
  .mb-lg-xxl {
    margin-bottom: 2.5rem !important;
  }
  .mt-lg-xxl {
    margin-top: 2.5rem !important;
  }
  .mb-lg-xxxl {
    margin-bottom: 3rem !important;
  }
  .mt-lg-xxxl {
    margin-top: 3rem !important;
  }
  .mb-lg-4xl {
    margin-bottom: 4rem !important;
  }
  .mt-lg-4xl {
    margin-top: 4rem !important;
  }
  .mb-lg-5xl {
    margin-bottom: 5rem !important;
  }
  .mt-lg-5xl {
    margin-top: 5rem !important;
  }
  .mb-lg-6xl {
    margin-bottom: 6rem !important;
  }
  .mt-lg-6xl {
    margin-top: 6rem !important;
  }
  .mb-lg-7xl {
    margin-bottom: 7rem !important;
  }
  .mt-lg-7xl {
    margin-top: 7rem !important;
  }
  .mb-lg-8xl {
    margin-bottom: 8rem !important;
  }
  .mt-lg-8xl {
    margin-top: 8rem !important;
  }
  .mb-lg-9xl {
    margin-bottom: 9rem !important;
  }
  .mt-lg-9xl {
    margin-top: 9rem !important;
  }
  .mb-lg-10xl {
    margin-bottom: 10rem !important;
  }
  .mt-lg-10xl {
    margin-top: 10rem !important;
  }
  .ml-lg-0 {
    margin-left: 0 !important;
  }
  .m-inline-lg-auto {
    margin-inline: auto !important;
  }
  .m-inline-lg-inherit {
    margin-inline: inherit !important;
  }
  .position-lg-static {
    position: static !important;
  }
  .position-lg-relative {
    position: relative !important;
  }
  .position-lg-absolute {
    position: absolute !important;
  }
  .position-lg-fixed {
    position: fixed !important;
  }
  .position-lg-sticky {
    position: sticky !important;
  }
  .lg-visible {
    visibility: visible !important;
  }
  .lg-invisible {
    visibility: hidden !important;
  }
  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-66 {
    width: 66% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
  .w-lg-auto {
    width: auto !important;
  }
  .mw-lg-100 {
    max-width: 100% !important;
  }
}

@media (min-width: 1200px) {
  .common-section-indent {
    padding-left: 70px;
  }
  .common-section-indent__contact {
    padding-left: 49px;
  }
  .rounded-xl-0 {
    border-radius: 0 !important;
  }
  .rounded-xl-sm {
    border-radius: 8px !important;
  }
  .rounded-xl-md {
    border-radius: 16px !important;
  }
  .rounded-xl-lg {
    border-radius: 32px !important;
  }
  .rounded-xl-full {
    border-radius: 100vmax !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-grow-xl-1 {
    flex-grow: 1 !important;
  }
  .flex-shrinkxl--0 {
    flex-shrink: 0 !important;
  }
  .flex-shrink-xl-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .fz-xl-xs {
    font-size: 0.75rem !important;
  }
  .fz-xl-sm {
    font-size: 0.875rem !important;
  }
  .fz-xl-base {
    font-size: 1rem !important;
  }
  .fz-xl-lg {
    font-size: 1.125rem !important;
  }
  .fz-xl-xl {
    font-size: 1.25rem !important;
  }
  .fz-xl-xxl {
    font-size: 1.5rem !important;
  }
  .fz-xl-xxxl {
    font-size: 1.625rem !important;
  }
  .fz-xl-xxxxl {
    font-size: 1.75rem !important;
  }
  .fz-xl-xxxxxl {
    font-size: 1.875rem !important;
  }
  .fw-xl-bold {
    font-weight: bold !important;
  }
  .lh-xl-1 {
    line-height: 1 !important;
  }
  .lh-xl-sm {
    line-height: 1.3 !important;
  }
  .lh-xl-md {
    line-height: 1.5 !important;
  }
  .lh-xl-base {
    line-height: 2 !important;
  }
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
  .text-xl-nowrap {
    white-space: nowrap !important;
  }
  .grid .grid-xl {
    display: grid !important;
  }
  .grid-cols-xl-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-xl-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-xl-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-xl-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-xl-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-xl-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-xl-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid-cols-xl-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-xl-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid-cols-xl-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid-cols-xl-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid-cols-xl-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-xs {
    gap: 0.25rem !important;
  }
  .gap-xl-sm {
    gap: 0.5rem !important;
  }
  .gap-xl-md {
    gap: 1rem !important;
  }
  .gap-xl-lg {
    gap: 1.5rem !important;
  }
  .gap-xl-xl {
    gap: 2rem !important;
  }
  .gap-xl-xxl {
    gap: 2.5rem !important;
  }
  .gap-xl-xxxl {
    gap: 3rem !important;
  }
  .gap-xl-4xl {
    gap: 4rem !important;
  }
  .gap-xl-5xl {
    gap: 5rem !important;
  }
  .gap-xl-6xl {
    gap: 6rem !important;
  }
  .gap-xl-7xl {
    gap: 7rem !important;
  }
  .gap-xl-8xl {
    gap: 8rem !important;
  }
  .gap-xl-9xl {
    gap: 9rem !important;
  }
  .gap-xl-10xl {
    gap: 10rem !important;
  }
  .gap-x-xl-0 {
    column-gap: 0 !important;
  }
  .gap-x-xl-xs {
    column-gap: 0.25rem !important;
  }
  .gap-x-xl-sm {
    column-gap: 0.5rem !important;
  }
  .gap-x-xl-md {
    column-gap: 1rem !important;
  }
  .gap-x-xl-lg {
    column-gap: 1.5rem !important;
  }
  .gap-x-xl-xl {
    column-gap: 2rem !important;
  }
  .gap-x-xl-xxl {
    column-gap: 2.5rem !important;
  }
  .gap-x-xl-xxxl {
    column-gap: 3rem !important;
  }
  .gap-x-xl-4xl {
    column-gap: 4rem !important;
  }
  .gap-x-xl-5xl {
    column-gap: 5rem !important;
  }
  .gap-x-xl-6xl {
    column-gap: 6rem !important;
  }
  .gap-x-xl-7xl {
    column-gap: 7rem !important;
  }
  .gap-x-xl-8xl {
    column-gap: 8rem !important;
  }
  .gap-x-xl-9xl {
    column-gap: 9rem !important;
  }
  .gap-x-xl-10xl {
    column-gap: 10rem !important;
  }
  .gap-y-xl-0 {
    row-gap: 0 !important;
  }
  .gap-y-xl-xs {
    row-gap: 0.25rem !important;
  }
  .gap-y-xl-sm {
    row-gap: 0.5rem !important;
  }
  .gap-y-xl-md {
    row-gap: 1rem !important;
  }
  .gap-y-xl-lg {
    row-gap: 1.5rem !important;
  }
  .gap-y-xl-xl {
    row-gap: 2rem !important;
  }
  .gap-y-xl-xxl {
    row-gap: 2.5rem !important;
  }
  .gap-y-xl-xxxl {
    row-gap: 3rem !important;
  }
  .gap-y-xl-4xl {
    row-gap: 4rem !important;
  }
  .gap-y-xl-5xl {
    row-gap: 5rem !important;
  }
  .gap-y-xl-6xl {
    row-gap: 6rem !important;
  }
  .gap-y-xl-7xl {
    row-gap: 7rem !important;
  }
  .gap-y-xl-8xl {
    row-gap: 8rem !important;
  }
  .gap-y-xl-9xl {
    row-gap: 9rem !important;
  }
  .gap-y-xl-10xl {
    row-gap: 10rem !important;
  }
  .h-xl-25 {
    height: 25% !important;
  }
  .h-xl-50 {
    height: 50% !important;
  }
  .h-xl-75 {
    height: 75% !important;
  }
  .h-xl-100 {
    height: 100% !important;
  }
  .h-xl-auto {
    height: auto !important;
  }
  .mh-xl-100 {
    max-height: 100% !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mb-xl-xs {
    margin-bottom: 0.25rem !important;
  }
  .mt-xl-xs {
    margin-top: 0.25rem !important;
  }
  .mb-xl-sm {
    margin-bottom: 0.5rem !important;
  }
  .mt-xl-sm {
    margin-top: 0.5rem !important;
  }
  .mb-xl-md {
    margin-bottom: 1rem !important;
  }
  .mt-xl-md {
    margin-top: 1rem !important;
  }
  .mb-xl-lg {
    margin-bottom: 1.5rem !important;
  }
  .mt-xl-lg {
    margin-top: 1.5rem !important;
  }
  .mb-xl-xl {
    margin-bottom: 2rem !important;
  }
  .mt-xl-xl {
    margin-top: 2rem !important;
  }
  .mb-xl-xxl {
    margin-bottom: 2.5rem !important;
  }
  .mt-xl-xxl {
    margin-top: 2.5rem !important;
  }
  .mb-xl-xxxl {
    margin-bottom: 3rem !important;
  }
  .mt-xl-xxxl {
    margin-top: 3rem !important;
  }
  .mb-xl-4xl {
    margin-bottom: 4rem !important;
  }
  .mt-xl-4xl {
    margin-top: 4rem !important;
  }
  .mb-xl-5xl {
    margin-bottom: 5rem !important;
  }
  .mt-xl-5xl {
    margin-top: 5rem !important;
  }
  .mb-xl-6xl {
    margin-bottom: 6rem !important;
  }
  .mt-xl-6xl {
    margin-top: 6rem !important;
  }
  .mb-xl-7xl {
    margin-bottom: 7rem !important;
  }
  .mt-xl-7xl {
    margin-top: 7rem !important;
  }
  .mb-xl-8xl {
    margin-bottom: 8rem !important;
  }
  .mt-xl-8xl {
    margin-top: 8rem !important;
  }
  .mb-xl-9xl {
    margin-bottom: 9rem !important;
  }
  .mt-xl-9xl {
    margin-top: 9rem !important;
  }
  .mb-xl-10xl {
    margin-bottom: 10rem !important;
  }
  .mt-xl-10xl {
    margin-top: 10rem !important;
  }
  .m-inline-xl-auto {
    margin-inline: auto !important;
  }
  .m-inline-xl-inherit {
    margin-inline: inherit !important;
  }
  .position-xl-static {
    position: static !important;
  }
  .position-xl-relative {
    position: relative !important;
  }
  .position-xl-absolute {
    position: absolute !important;
  }
  .position-xl-fixed {
    position: fixed !important;
  }
  .position-xl-sticky {
    position: sticky !important;
  }
  .xl-visible {
    visibility: visible !important;
  }
  .xl-invisible {
    visibility: hidden !important;
  }
  .w-xl-25 {
    width: 25% !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-66 {
    width: 66% !important;
  }
  .w-xl-75 {
    width: 75% !important;
  }
  .w-xl-100 {
    width: 100% !important;
  }
  .w-xl-auto {
    width: auto !important;
  }
  .mw-xl-100 {
    max-width: 100% !important;
  }
}

@media (max-width: 1199.98px) {
  .features-section {
    grid-template-columns: auto;
    grid-template-rows: auto;
  }
  .features-section__head {
    padding-block: 24px 80px;
    padding-left: 30px;
  }
  .features-section__head::before {
    width: 100%;
  }
  .features-section__media {
    grid-column: auto;
    grid-row: auto;
    padding-top: 0;
    padding-inline: 30px;
    margin-top: -50px;
  }
  .features-section__body {
    padding-inline: 30px;
  }
  .features-section__heading {
    font-size: 1.375rem;
  }
  .features-section__num {
    font-size: 1.875rem;
  }
  .features-section__lead {
    font-size: 1.25rem;
  }
  .features-section__text {
    margin-top: 12px;
  }
}

@media (max-width: 991.98px) {
  .layout-header {
    display: block;
    padding-right: 0;
  }
  .layout-header__inner {
    padding-left: 20px;
    min-height: 60px;
  }
  .layout-header__logo {
    width: 4.6875rem;
    position: relative;
    z-index: 11;
  }
  .layout-header__product-logo {
    text-align: center;
    justify-self: center;
    max-width: 222px;
  }
  .header-button {
    width: 80px;
    height: 60px;
  }
  .header-button__icon {
    width: 40px;
    height: 15px;
  }
  .header-menu {
    background: var(--white);
    width: 100%;
    max-width: 1000px;
    padding: 80px 3rem 20px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    height: 100dvh;
    overflow: auto;
    visibility: hidden;
    transform: translateX(100%);
    transition:
      transform 300ms ease-in-out,
      visibility 300ms;
  }
  .is-gnavi-open .header-menu {
    transform: translateX(0);
    visibility: visible;
  }
  .header-menu__inner {
    padding-top: 64px;
  }
  .header-menu__grid {
    max-width: 600px;
    margin-inline: auto;
    display: grid;
    row-gap: 20px;
  }
  .header-menu__grid-item:first-child {
    display: none;
  }
  .header-menu__list {
    padding-left: 0;
    display: grid;
    row-gap: 15px;
  }
  .header-menu__list a::after {
    margin-left: auto;
  }
  .header-menu__sub-list {
    margin-top: 16px;
  }
  .header-menu__sub-list li:first-child {
    display: none;
  }
  .header-menu__sub-list a::before {
    content: "";
    display: block;
    height: 1px;
    width: 32px;
    background-color: currentColor;
    margin-top: 0.5lh;
  }
  .header-menu__sub-list a::after {
    margin-left: auto;
  }
  .header-menu__sub-area {
    grid-template-columns: auto;
  }
  .header-menu__cta {
    grid-column: auto;
    display: flex;
    justify-content: center;
  }
  .header-menu__sub-links {
    grid-column: auto;
    justify-self: center;
  }
  .header-menu__copy {
    grid-column: auto;
    text-align: center;
    order: 99;
    margin-top: 40px;
  }
  .header-menu__logo {
    margin-top: 60px;
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
  }
  .layout-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fv__image {
    aspect-ratio: 1186/688;
    position: relative;
    width: 100%;
    max-width: 1600px;
    height: calc(100vh - 60px);
    height: calc(var(--swiper-vh, 1vh) * 100 - 60px);
  }
  .fv__image img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .fv .container {
    display: none;
  }
  .box--border {
    padding: 40px 30px;
  }
  .box--thick-border {
    padding: 20px;
  }
  .box--padding-sm {
    padding: 30px;
  }
  .news-list__item {
    grid-template-columns: auto auto 1fr;
    padding: 24px 20px;
    row-gap: 8px;
  }
  .news-list__link {
    grid-column: span 3;
    padding-left: 0;
  }
  .figure__caption--lg {
    font-size: 1.125rem;
  }
  .profile-block {
    row-gap: 32px;
    margin-bottom: 40px;
  }
  .profile-block.profile-block--sp-column {
    grid-template-columns: auto;
    grid-template-rows: auto;
  }
  .profile-block__copy {
    grid-column: span 2;
  }
  .profile-block--sp-column .profile-block__copy {
    grid-column: auto;
  }
  .profile-block__data {
    align-self: center;
  }
  .profile-block--sp-column .profile-block__data {
    order: 3;
  }
  .profile-block__media {
    grid-row: auto;
  }
  .profile-block--sp-column .profile-block__media {
    grid-column: auto;
    grid-row: auto;
    order: 2;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .layout-footer {
    padding-inline: var(--side-padding-mobile);
  }
  .layout-footer__inner {
    padding-block: 64px 30px;
  }
  .layout-footer__back-to-top {
    font-size: 0.875rem;
  }
  .layout-footer__product-logo {
    font-size: 0.875rem;
    text-align: center;
    justify-self: center;
    max-width: 222px;
  }
  .layout-footer__grid {
    margin-top: 72px;
    grid-template-columns: repeat(1, 1fr);
    border-right: none;
    gap: 15px 8px;
    margin-bottom: 20px;
    padding-left: 16px;
  }
  .layout-footer__list {
    max-width: 350px;
    margin-inline: auto;
  }
  .layout-footer__list a br {
    display: none;
  }
  .layout-footer__sub-list {
    max-width: 350px;
    margin-inline: auto;
  }
  .layout-footer__sub-area {
    grid-template-columns: auto;
    grid-template-rows: auto;
  }
  .layout-footer__cta {
    display: flex;
    justify-content: center;
  }
  .layout-footer__links {
    justify-content: center;
    margin-top: 56px;
  }
  .layout-footer__notes {
    grid-row: auto;
    margin-top: 16px;
    justify-self: center;
  }
  .layout-footer__logo {
    grid-column: auto;
    grid-row: auto;
    margin-top: 48px;
    justify-self: center;
  }
  .layout-footer__sub-links {
    margin-top: 24px;
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
  }
  .layout-footer__copy {
    margin-top: 32px;
    text-align: center;
  }
  .sidebar-layout-container {
    grid-template-columns: auto;
  }
  .sidebar-layout-container__nav {
    width: auto;
    grid-row: auto;
    padding-inline: var(--side-padding-mobile);
    padding-block: 24px 32px;
  }
  .sidebar-layout-container--type-article .sidebar-layout-container__nav {
    grid-row: auto;
  }
  .sidebar-layout-container__head {
    grid-column: auto;
  }
  .sidebar-layout-container--type-article .sidebar-layout-container__head {
    grid-column: auto;
  }
  .sidebar-layout-container__body {
    grid-column: auto;
  }
  .layout-sidebar {
    position: static;
  }
  .layout-sidebar--toc {
    position: static;
  }
  .layout-sidebar__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .layout-sidebar__link {
    font-size: 0.75rem;
    padding: 8px 15px;
  }
  .layout-sidebar__sub-list {
    display: none;
  }
  .breadcrumb-wrapper {
    padding: 0 var(--side-padding-mobile);
  }
  .container {
    padding-inline: var(--side-padding-mobile);
  }
  .sm-full-bleed {
    margin-inline: calc(var(--side-padding-mobile) * -1);
  }
  .fv__image {
    min-height: unset;
    aspect-ratio: 390/500;
  }
  .fv__text {
    font-size: 7.2vw;
  }
  .fv__text__logo img {
    width: 44vw !important;
  }
  ._fv01 .fv__text__logo {
    display: none;
  }
  .fv__text-inner {
    top: 9%;
    line-height: 1.98;
    font-size: 5vw;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
  }
  .fv__link {
    padding-inline: 8vw;
  }
  ._fv02 .fv__link {
    bottom: 5.7%;
    left: 0;
    padding-inline: 6vw;
  }
  ._fv03 .fv__link {
    top: 54.2%;
  }
  .fv__link-button {
    padding-right: 81px;
    margin-top: 34px;
    padding-bottom: 8px;
  }
  a:hover .fv__link-button {
    padding-right: 95px;
  }
  .fv__link-button::after {
    width: 24px;
  }
  .swiper-pagination-wrapper {
    bottom: 20px;
  }
  .page-header {
    padding-inline: var(--side-padding-mobile);
  }
  .page-header__en-title {
    font-size: 1.875rem;
  }
  .page-header__ja-title--lg {
    font-size: 1.375rem;
  }
  .page-header__lead {
    text-align: left;
    margin-top: 16px;
    margin-inline: 0;
  }
  .page-header:has(.page-header__bg) {
    aspect-ratio: 390/336;
    margin-top: 28px;
    margin-bottom: 60px;
  }
  .section-heading {
    margin-top: 112px;
    margin-bottom: 48px;
  }
  .section-heading__en {
    font-size: 1.875rem;
  }
  .secondary-heading {
    font-size: 1.25rem;
    margin-top: 96px;
  }
  .section-heading + .secondary-heading {
    margin-top: 40px;
  }
  .common-heading-hasImageHeader {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .common-section-heading {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-top: 30px;
  }
  .heading-sub-text {
    font-size: 0.625rem;
  }
  .common-section-heading__contact {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }
  .card__lead {
    font-size: 1.125rem;
  }
  .link-card__text {
    font-size: 1.125rem;
  }
  .link-card__button {
    margin-top: 0;
  }
  .case-card__text {
    font-size: 1.125rem;
  }
  .link-group__heading {
    font-size: 1.125rem;
  }
  .link-group__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .link-group__list > li {
    width: 100%;
    max-width: 350px;
    margin-inline: auto;
  }
  .link-button {
    padding-bottom: 8px;
    padding-right: 40px;
  }
  .link-button::after {
    width: 24px;
  }
  .button {
    max-width: 360px;
    min-height: 50px;
  }
  .button--sm {
    min-height: 40px;
  }
  .simple-table tbody th {
    padding-inline: 10px;
  }
  .simple-table tbody td {
    padding-left: 20px;
    text-align: center;
  }
  .media-block + .media-block {
    margin-top: 64px;
  }
  .media-block__content {
    padding-inline: 0;
  }
  .media-block__text--lg {
    font-size: 1rem;
  }
  .media-block__text--xl {
    font-size: 1.375rem;
  }
  .media-block__button {
    margin-top: 32px;
  }
  .cta {
    padding-inline: var(--side-padding-mobile);
  }
  .cta__heading {
    font-size: 1.875rem;
  }
  .cta__text {
    font-size: 1rem;
  }
  .cta__button {
    max-width: 350px;
    margin-inline: auto;
    padding-block: 35px;
  }
  .figure__caption--lg {
    font-size: 1rem;
  }
  .article-header {
    padding-inline: var(--side-padding-mobile);
  }
  .article-header__title {
    font-size: 1.25rem;
  }
  .news-container {
    grid-template-columns: auto;
  }
  .news-container__nav {
    width: auto;
    grid-row: auto;
    padding-inline: var(--side-padding-mobile);
    padding-top: 0;
    margin-bottom: 20px;
  }
  .news-container__tab {
    grid-column: auto;
    padding-inline: var(--side-padding-mobile);
  }
  .news-container__tab-panel {
    grid-column: auto;
    padding-inline: var(--side-padding-mobile);
  }
  .tabs {
    column-gap: 12px;
  }
  .tabs__button {
    padding: 8px;
    min-height: 50px;
  }
  .pager {
    flex-direction: column-reverse;
    row-gap: 16px;
    max-width: 360px;
    margin-inline: auto;
  }
  .pager__nav {
    justify-content: space-between;
  }
  .pager__back {
    max-width: none;
  }
  .filter-widget__head {
    padding: 16px 24px;
  }
  .filter-widget__body {
    padding: 8px 24px 24px;
  }
  .fieldset__legend {
    padding-top: 8px;
  }
  .accordion__head {
    padding: 24px 12px;
  }
  .accordion__heading {
    grid-row: 2;
    grid-column: span 3;
  }
  .accordion__icon {
    grid-column: 3;
  }
  .accordion__icon::before,
  .accordion__icon::after {
    width: 20px;
    left: calc(50% - 10px);
  }
  .accordion__inner {
    padding: 12px 15px 40px;
  }
  .profile-block__copy {
    font-size: 1.375rem;
  }
  .profile-block__ja-name {
    font-size: 1.25rem;
  }
  .faq-block__head {
    padding-block: 16px;
  }
  .faq-block__head::before {
    font-size: 1.625rem;
  }
  .faq-block__accordion-icon {
    width: 22px;
  }
  .faq-block__body {
    padding-left: 0;
  }
  .faq-block__body::before {
    font-size: 1.625rem;
  }
  .faq-block__a {
    padding-bottom: 16px;
  }
  .px-sm-md {
    padding-inline: 1rem !important;
  }
}
