@charset "UTF-8";
.l-container {
  min-width: var(--min-device-width);
}

.l-section {
  --l-section-inner-width-default: var(--site-width);
  --l-section-space-inline-default: var(--space-inline);
  --l-section-space-inline: var(--l-section-space-inline-override, var(--l-section-space-inline-default));
  --l-section-inner-width: var(--l-section-inner-width-override, var(--l-section-inner-width-default));
  --l-section-outer: max(0px, calc((var(--vw100) - var(--l-section-inner-width)) / 2));
  --l-section-gutter: max(var(--l-section-outer), var(--l-section-space-inline));
}
.l-section:where(._gutter) {
  padding-inline: var(--l-section-space-inline);
}
.l-section__inner {
  width: 100%;
  max-width: var(--l-section-inner-width);
  margin-inline: auto;
  background-clip: content-box;
}
.l-section__inner:where(._gutter) {
  max-width: calc( 						var(--l-section-inner-width) + 						(var(--l-section-space-inline) * 2) 					);
  padding-inline: var(--l-section-space-inline);
}
.l-section__full {
  margin-inline: calc(var(--l-section-gutter) * -1);
}

.l-row-gap {
  --l-row-gap-default: 60px;
  --l-row-gap: var(--l-row-gap-override, var(--l-row-gap-default));
  display: flex;
  flex-direction: column;
  row-gap: var(--l-row-gap);
}

.l-spacer._section {
  height: var(--space-block-section);
}
.l-spacer._xl {
  height: var(--space-block-xl);
}
.l-spacer._lg {
  height: var(--space-block-lg);
}
.l-spacer._md {
  height: var(--space-block-md);
}
.l-spacer._sm {
  height: var(--space-block-sm);
}
.l-spacer._xs {
  height: var(--space-block-xs);
}
.l-spacer._section-trim {
  height: var(--space-block-section-trim);
}
.l-spacer._xl-trim {
  height: var(--space-block-xl-trim);
}
.l-spacer._lg-trim {
  height: var(--space-block-lg-trim);
}
.l-spacer._md-trim {
  height: var(--space-block-md-trim);
}
.l-spacer._sm-trim {
  height: var(--space-block-sm-trim);
}
.l-spacer._xs-trim {
  height: var(--space-block-xs-trim);
}

.l-column {
  --l-column-head-width-default: 410px;
  --l-column-columnGap-default: 20px;
  --l-column-rowGap-default: 0;
  --l-column-head-width: var(--l-column-head-width-override, var(--l-column-head-width-default));
  --l-column-columnGap: var(--l-column-columnGap-override, var(--l-column-columnGap-default));
  --l-column-rowGap: var(--l-column-rowGap-override, var(--l-column-rowGap-default));
  display: grid;
  grid-template-columns: var(--l-column-head-width) 1fr;
  column-gap: var(--l-column-columnGap);
  row-gap: var(--l-column-rowGap);
}
.l-column:where(._reverse) {
  grid-template-columns: 1fr var(--l-column-head-width);
  --l-column-head-area: 1/2/2/3;
}
.l-column__head {
  grid-area: var(--l-column-head-area, 1/1/2/2);
}
.l-column__head._sticky {
  position: sticky;
  top: calc(var(--header-size) + var(--space-block-xs));
  align-self: start;
}
.l-column__body {
  min-width: 0;
}
.l-column:where(:has(.l-column__foot)) {
  grid-template-rows: 1fr auto;
}
.l-column:where(:has(.l-column__foot)) .l-column__body {
  grid-row: span 2;
}
.l-column._head-width-auto {
  --l-column-head-width: auto;
}
.l-column._vertical {
  grid-template-columns: 1fr;
  --l-column-head-area: revert;
}
.l-column._vertical .l-column__head {
  position: revert;
}
.l-column._vertical .l-column__body {
  grid-row: span 1;
}
@media (width <= 1600px) {
  .l-column._vertical\@xl {
    grid-template-columns: 1fr;
    --l-column-head-area: revert;
  }
  .l-column._vertical\@xl .l-column__head {
    position: revert;
  }
  .l-column._vertical\@xl .l-column__body {
    grid-row: span 1;
  }
}
@media (width <= 1120px) {
  .l-column._vertical\@lg {
    grid-template-columns: 1fr;
    --l-column-head-area: revert;
  }
  .l-column._vertical\@lg .l-column__head {
    position: revert;
  }
  .l-column._vertical\@lg .l-column__body {
    grid-row: span 1;
  }
}
@media (width <= 800px) {
  .l-column._vertical\@md {
    grid-template-columns: 1fr;
    --l-column-head-area: revert;
  }
  .l-column._vertical\@md .l-column__head {
    position: revert;
  }
  .l-column._vertical\@md .l-column__body {
    grid-row: span 1;
  }
}
@media (width <= 768px) {
  .l-column._vertical\@sm {
    grid-template-columns: 1fr;
    --l-column-head-area: revert;
  }
  .l-column._vertical\@sm .l-column__head {
    position: revert;
  }
  .l-column._vertical\@sm .l-column__body {
    grid-row: span 1;
  }
}
@media (width <= 560px) {
  .l-column._vertical\@xs {
    grid-template-columns: 1fr;
    --l-column-head-area: revert;
  }
  .l-column._vertical\@xs .l-column__head {
    position: revert;
  }
  .l-column._vertical\@xs .l-column__body {
    grid-row: span 1;
  }
}

.mw_confirm-show {
  display: none;
}

body:has(.mw_wp_form.mw_wp_form_confirm) .mw_confirm-hidden {
  display: none;
}
body:has(.mw_wp_form.mw_wp_form_confirm) .mw_confirm-show {
  display: revert;
}

/* pagenavi */
.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: grid;
  place-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid #000;
  border-radius: 9999px;
  font-family: var(--typography-std_en_large_medium-font-family);
  font-weight: var(--typography-std_en_large_medium-font-weight);
  font-size: var(--typography-std_en_large_medium-font-size);
  line-height: var(--typography-std_en_large_medium-line-height);
  --letter-spacing: var(--typography-std_en_large_medium-letter-spacing);
  text-decoration: none;
  background-color: var(--color-light);
}
.wp-pagenavi .current {
  color: var(--color-light);
  background-color: var(--color-dark);
}
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  color: var(--color-light);
  background-color: var(--color-dark);
}
.wp-pagenavi .extend {
  width: auto;
  border: 0;
  padding-inline-end: 0.5em;
  letter-spacing: -0.5em;
}

:where(.wp-block-post-content, .wp-gutenberg) {
  font-family: var(--typography-std_jp_medium_tight-font-family);
  font-weight: var(--typography-std_jp_medium_tight-font-weight);
  font-size: var(--typography-std_jp_medium_tight-font-size);
  line-height: var(--typography-std_jp_medium_tight-line-height);
  --letter-spacing: var(--typography-std_jp_medium_tight-letter-spacing);
  --wp--preset--font-size--small: 0.875rem;
  --wp--preset--font-size--medium: 1rem;
  --wp--preset--font-size--large: 1.125rem;
  --wp--preset--font-size--x-large: 1.25rem;
}
:where(.wp-block-post-content, .wp-gutenberg) a:not([class]) {
  text-decoration: underline;
}
:where(.wp-block-post-content, .wp-gutenberg) a:not([class]):focus-visible {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  :where(.wp-block-post-content, .wp-gutenberg) a:not([class]):hover {
    text-decoration: none;
  }
}
:where(.wp-block-post-content, .wp-gutenberg) :where(p, ol, ul, table,
   [class*="wp-block"]):not(:last-child) {
  margin-bottom: var(--space-block-sm);
}

h2.wp-block-heading {
  margin-block-end: var(--space-block-sm);
  border-inline-start: 4px solid var(--color-border2);
  padding-block: var(--space-block-xs-trim);
  padding-inline-start: 15px;
  font-family: var(--typography-std_jp_xl_medium-font-family);
  font-weight: var(--typography-std_jp_xl_medium-font-weight);
  font-size: var(--typography-std_jp_xl_medium-font-size);
  line-height: var(--typography-std_jp_xl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xl_medium-letter-spacing);
}
h2.wp-block-heading:not(:first-child) {
  margin-block-start: var(--space-block-md);
}

h3.wp-block-heading {
  margin-block-end: var(--space-block-xs);
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
}
h3.wp-block-heading:not(:first-child) {
  margin-block-start: var(--space-block-sm);
}

:where(.wp-gutenberg :is(ul,ol):not([class])),
.wp-block-list {
  padding-left: 1.4em;
}

:where(.wp-gutenberg ul:not([class])),
ul.wp-block-list {
  list-style-type: disc;
}

:where(.wp-gutenberg ol:not([class])),
ol.wp-block-list {
  list-style-type: decimal;
}

:where(.wp-gutenberg li:not([class])),
.wp-block-list-item {
  list-style-type: inherit;
}

:where(.wp-block-post-content, .wp-gutenberg) :is(th, td) {
  padding: 5px;
  border: 1px solid;
  text-align: left;
}

.c-bread {
  padding-block-start: var(--space-block-md);
  font-family: var(--typography-std_jp_small_regular-font-family);
  font-weight: var(--typography-std_jp_small_regular-font-weight);
  font-size: var(--typography-std_jp_small_regular-font-size);
  line-height: var(--typography-std_jp_small_regular-line-height);
  --letter-spacing: var(--typography-std_jp_small_regular-letter-spacing);
}
.c-bread__list {
  word-break: break-all;
}
.c-bread__list > li {
  display: inline;
  margin-right: 0.1em;
}
.c-bread__list > li + li:before {
  content: ">";
}

.c-text p:not(:last-child) {
  margin-block-end: 2em;
}
.c-text._center {
  text-align: center;
}

.c-button {
  background-color: var(--color-bg-ash-dark);
  border-radius: 999px;
  position: relative;
  display: block;
  width: fit-content;
  margin: var(--space-block-md) auto 0 auto;
  padding: 18px 60px;
  color: var(--color-light);
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
  border: 1px solid var(--color-light);
  cursor: pointer;
}
@media (width <= 768px) {
  .c-button {
    padding: 18px 50px;
  }
}
@media (768px <= width) {
  .c-button._right {
    margin-inline-end: 0;
  }
}
@media (768px <= width) {
  .c-button._left {
    margin-inline-start: 0;
  }
}
.c-button__text {
  transition: var(--sec) ease;
  position: relative;
  padding-inline: 26px 0;
}
.c-button__text::before, .c-button__text::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-light);
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 50%;
  transition: var(--sec) ease;
}
.c-button__text::before {
  left: 0;
  transform: translate(0, -50%);
  opacity: 1;
}
.c-button__text::after {
  right: 0;
  opacity: 0;
}
.c-button._icon .c-button__text {
  padding-inline: 0;
  display: flex;
  align-items: center;
  gap: var(--space-block-sm);
}
.c-button._icon .c-button__text::before, .c-button._icon .c-button__text::after {
  content: none;
}
.c-button._icon .c-button__text .u-svg {
  min-width: 16px;
}
.c-button._icon:focus-visible .c-button__text {
  opacity: var(--opacity);
  padding-inline: 0;
}
@media (hover: hover) and (pointer: fine) {
  .c-button._icon:hover .c-button__text {
    opacity: var(--opacity);
    padding-inline: 0;
  }
}
.c-button:focus-visible .c-button__text {
  padding-inline: 0 26px;
}
.c-button:focus-visible .c-button__text::before {
  opacity: 0;
}
.c-button:focus-visible .c-button__text::after {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .c-button:hover .c-button__text {
    padding-inline: 0 26px;
  }
  .c-button:hover .c-button__text::before {
    opacity: 0;
  }
  .c-button:hover .c-button__text::after {
    opacity: 1;
  }
}

.c-heading2 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-block-sm) var(--space-block-md);
  align-items: center;
  flex-direction: row;
  margin-block-end: var(--space-block-md);
}
@media (width <= 768px) {
  .c-heading2 {
    flex-direction: column;
    align-items: flex-start;
  }
}
.c-heading2__title {
  font-family: var(--typography-std_jp_xxl_medium-font-family);
  font-weight: var(--typography-std_jp_xxl_medium-font-weight);
  font-size: var(--typography-std_jp_xxl_medium-font-size);
  line-height: var(--typography-std_jp_xxl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_medium-letter-spacing);
}
.c-heading2__en {
  font-family: var(--typography-std_en_xs_medium-font-family);
  font-weight: var(--typography-std_en_xs_medium-font-weight);
  font-size: var(--typography-std_en_xs_medium-font-size);
  line-height: var(--typography-std_en_xs_medium-line-height);
  --letter-spacing: var(--typography-std_en_xs_medium-letter-spacing);
  color: var(--color-primary);
}
.c-heading2._light {
  color: var(--color-light);
}

.c-heading3 {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 10px;
  margin-block-end: var(--space-block-md);
}
.c-heading3::before {
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background-color: var(--color-primary);
  translate: 0 -40%;
}
.c-heading3__title {
  font-family: var(--typography-std_jp_xl_medium-font-family);
  font-weight: var(--typography-std_jp_xl_medium-font-weight);
  font-size: var(--typography-std_jp_xl_medium-font-size);
  line-height: var(--typography-std_jp_xl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xl_medium-letter-spacing);
}

.c-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid var(--color-light);
  color: var(--color-light);
}
.c-arrow._dark {
  border-color: var(--color-dark);
  color: var(--color-dark);
}
.c-arrow__icon {
  position: relative;
  width: 12px;
  aspect-ratio: 12/10;
  overflow: hidden;
}
.c-arrow__svg {
  position: absolute;
  top: 0;
  right: 0;
  animation-duration: 0.6s;
  animation-fill-mode: both;
}
.c-arrow ._after {
  transform: translateX(-100%);
}
.c-arrow_trigger.is-hover .c-arrow ._before {
  animation-name: arrow-left-right;
}
.c-arrow_trigger.is-hover .c-arrow ._after {
  animation-name: arrow-right-left;
}
.c-arrow_trigger.is-hover:focus-visible .c-arrow ._before {
  animation-name: arrow-right-left;
  animation-delay: 0s;
}
.c-arrow_trigger.is-hover:focus-visible .c-arrow ._after {
  animation-name: arrow-left-right;
}
@media (hover: hover) and (pointer: fine) {
  .c-arrow_trigger.is-hover:hover .c-arrow ._before {
    animation-name: arrow-right-left;
    animation-delay: 0s;
  }
  .c-arrow_trigger.is-hover:hover .c-arrow ._after {
    animation-name: arrow-left-right;
  }
}

@keyframes arrow-left-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes arrow-right-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.c-bnr_small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-block-sm);
  padding: var(--space-block-sm) var(--space-block-sm) var(--space-block-sm) var(--space-block-md);
  background-color: var(--color-bg-ash);
  min-height: 140px;
  transition: opacity var(--sec);
}
@media (width <= 768px) {
  .c-bnr_small {
    padding-inline-start: var(--space-block-xs);
  }
}
.c-bnr_small-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 1;
}
@media (width <= 768px) {
  .c-bnr_small-wrap {
    grid-template-columns: 1fr;
    margin-inline: -20px;
  }
}
.c-bnr_small .en {
  font-family: var(--typography-std_en_xxl_medium-font-family);
  font-weight: var(--typography-std_en_xxl_medium-font-weight);
  font-size: var(--typography-std_en_xxl_medium-font-size);
  line-height: var(--typography-std_en_xxl_medium-line-height);
  --letter-spacing: var(--typography-std_en_xxl_medium-letter-spacing);
  margin-block-end: var(--space-block-xs);
}
.c-bnr_small .jp {
  font-family: var(--typography-std_jp_small_bold-font-family);
  font-weight: var(--typography-std_jp_small_bold-font-weight);
  font-size: var(--typography-std_jp_small_bold-font-size);
  line-height: var(--typography-std_jp_small_bold-line-height);
  --letter-spacing: var(--typography-std_jp_small_bold-letter-spacing);
}
.c-bnr_small._base {
  transition: var(--sec);
}
.c-bnr_small._base .c-arrow {
  transition: var(--sec);
}
.c-bnr_small._base:focus-visible {
  background-color: var(--color-bg-primary);
  color: var(--color-light);
}
.c-bnr_small._base:focus-visible .c-arrow {
  color: var(--color-light);
  border-color: var(--color-light);
}
@media (hover: hover) and (pointer: fine) {
  .c-bnr_small._base:hover {
    background-color: var(--color-bg-primary);
    color: var(--color-light);
  }
  .c-bnr_small._base:hover .c-arrow {
    color: var(--color-light);
    border-color: var(--color-light);
  }
}
.c-bnr_small._dark {
  background-color: var(--color-bg-ash-dark);
  color: var(--color-light);
  transition: var(--sec);
}
.c-bnr_small._dark .c-arrow {
  transition: var(--sec);
}
.c-bnr_small._dark:focus-visible {
  background-color: var(--color-bg-primary);
  color: var(--color-light);
}
.c-bnr_small._dark:focus-visible .c-arrow {
  color: var(--color-light);
  border-color: var(--color-light);
}
@media (hover: hover) and (pointer: fine) {
  .c-bnr_small._dark:hover {
    background-color: var(--color-bg-primary);
    color: var(--color-light);
  }
  .c-bnr_small._dark:hover .c-arrow {
    color: var(--color-light);
    border-color: var(--color-light);
  }
}
.c-bnr_small._primary {
  background-color: var(--color-bg-primary);
  color: var(--color-light);
  transition: var(--sec);
}
.c-bnr_small._primary .c-arrow {
  transition: var(--sec);
}
.c-bnr_small._primary:focus-visible {
  background-color: var(--color-base);
  color: var(--color-light);
}
.c-bnr_small._primary:focus-visible .c-arrow {
  color: var(--color-light);
  border-color: var(--color-light);
}
@media (hover: hover) and (pointer: fine) {
  .c-bnr_small._primary:hover {
    background-color: var(--color-base);
    color: var(--color-light);
  }
  .c-bnr_small._primary:hover .c-arrow {
    color: var(--color-light);
    border-color: var(--color-light);
  }
}

.c-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 11px;
  font-family: var(--typography-std_jp_small_regular-font-family);
  font-weight: var(--typography-std_jp_small_regular-font-weight);
  font-size: var(--typography-std_jp_small_regular-font-size);
  line-height: var(--typography-std_jp_small_regular-line-height);
  --letter-spacing: var(--typography-std_jp_small_regular-letter-spacing);
}
.c-tags > li::before {
  content: "#";
  margin-inline-end: 2px;
}

.c-list-categories {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-block-xs) 40px;
  padding: var(--space-block-sm) 0 var(--space-block-sm) 38px;
  border-inline-start: 2px solid var(--color-primary);
}
.c-list-categories._mb {
  margin-block-end: var(--space-block-lg);
}
@media (width <= 768px) {
  .c-list-categories {
    grid-template-columns: 1fr;
  }
}
@media (1120px < width) {
  .c-list-categories._pc_vertical {
    grid-template-columns: 1fr;
    row-gap: calc(var(--space-block-sm) - 5px);
    padding-inline: 28px 0;
  }
  .c-list-categories._pc_vertical .c-list-categories__list {
    flex-direction: column;
  }
}
.c-list-categories__title {
  color: var(--color-primary);
  font-family: var(--typography-std_en_large_medium-font-family);
  font-weight: var(--typography-std_en_large_medium-font-weight);
  font-size: var(--typography-std_en_large_medium-font-size);
  line-height: var(--typography-std_en_large_medium-line-height);
  --letter-spacing: var(--typography-std_en_large_medium-letter-spacing);
}
.c-list-categories__list {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-block-xs-trim) 20px;
}
.c-list-categories__list > li {
  position: relative;
}
.c-list-categories__list > li::after {
  content: "";
  position: absolute;
  bottom: 0.125rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: transparent;
}
.c-list-categories__list > li.current-cat {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
}
.c-list-categories__list > li.current-cat::after {
  background-color: currentColor;
}

.c-pager {
  display: grid;
  grid-template: "prev back next"/1fr auto 1fr;
  row-gap: var(--space-block-xs);
  align-items: center;
  padding-block: var(--space-block-xs);
  border-block: 1px solid var(--color-border-light);
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
}
.c-pager._mt {
  margin-block-start: var(--space-block-lg);
}
.c-pager__item._prev {
  grid-area: prev;
  justify-self: start;
}
.c-pager__item._back {
  grid-area: back;
  text-align: center;
}
.c-pager__item._next {
  grid-area: next;
  justify-self: end;
}
@media (width <= 768px) {
  .c-pager {
    grid-template: "prev next" "back back"/1fr 1fr;
  }
}
.c-pager__arrow {
  display: grid;
  place-content: center;
  width: 54px;
  aspect-ratio: 1/1;
  border: 1px solid var(--color-bg-ash-dark);
  border-radius: 9999px;
  color: var(--c-pager-arrow-color, var(--color-light));
  font-family: var(--typography-std_en_large_medium-font-family);
  font-weight: var(--typography-std_en_large_medium-font-weight);
  font-size: var(--typography-std_en_large_medium-font-size);
  line-height: var(--typography-std_en_large_medium-line-height);
  --letter-spacing: var(--typography-std_en_large_medium-letter-spacing);
  background-color: var(--c-pager-arrow-backgroundColor, var(--color-bg-ash-dark));
  transition-property: background-color;
  transition-duration: var(--sec);
}
.c-pager__icon {
  translate: 0 1px;
}
.c-pager__item:is(._prev, ._next) a {
  display: flex;
  align-items: center;
  column-gap: 12px;
  text-decoration: none;
}
.c-pager__item:is(._prev, ._next) a:focus-visible {
  --c-pager-arrow-backgroundColor: var(--color-light);
  --c-pager-arrow-color: var(--color-bg-ash-dark);
}
@media (hover: hover) and (pointer: fine) {
  .c-pager__item:is(._prev, ._next) a:hover {
    --c-pager-arrow-backgroundColor: var(--color-light);
    --c-pager-arrow-color: var(--color-bg-ash-dark);
  }
}
.c-pager .c-pager__item._back a {
  display: inline-grid;
  place-content: center;
  max-width: 100%;
  width: 220px;
  min-height: 54px;
  border: 1px solid var(--color-bg-ash-dark);
  border-radius: 9999px;
  color: var(--color-light);
  background-color: var(--color-bg-ash-dark);
  text-align: center;
  transition-property: background-color;
  transition-duration: var(--sec);
}
.c-pager .c-pager__item._back a:focus-visible {
  background-color: var(--color-light);
  color: var(--color-bg-ash-dark);
}
@media (hover: hover) and (pointer: fine) {
  .c-pager .c-pager__item._back a:hover {
    background-color: var(--color-light);
    color: var(--color-bg-ash-dark);
  }
}

.c-stepbar {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  column-gap: 30px;
  width: fit-content;
}
@media (width <= 1120px) {
  .c-stepbar {
    margin-inline: auto;
  }
}
@media (width <= 768px) {
  .c-stepbar {
    column-gap: 20px;
  }
}
@media (width <= 560px) {
  .c-stepbar {
    column-gap: 15px;
  }
}
@media (width <= 800px) {
  .c-stepbar {
    margin-inline: auto;
  }
}
.c-stepbar::before {
  content: "";
  position: absolute;
  z-index: -10;
  top: 50%;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: var(--color-base-light);
}
.c-stepbar__item {
  display: grid;
  place-content: center;
  width: 100px;
  min-height: 40px;
  border: 1px solid var(--color-base-light);
  border-radius: 9999px;
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
  background-color: var(--color-light);
}
@media (width <= 768px) {
  .c-stepbar__item {
    width: 80px;
  }
}
.c-stepbar__item[aria-current=step] {
  color: var(--color-light);
  background-color: var(--color-base-light);
}

.c-input input[type=text],
.c-input input[type=tel],
.c-input input[type=email],
.c-input select,
.c-input textarea {
  display: block;
  width: 100%;
  padding: 19px 15px;
  border: 1px solid var(--color-base-light);
  border-radius: 4px;
  color: var(--color-dark);
  font-family: var(--typography-base-font-family);
  font-weight: var(--typography-base-font-weight);
  font-size: var(--typography-base-font-size);
  line-height: var(--typography-base-line-height);
  --letter-spacing: var(--typography-base-letter-spacing);
  background-color: var(--color-light);
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media (width <= 768px) {
  .c-input input[type=text],
.c-input input[type=tel],
.c-input input[type=email],
.c-input select,
.c-input textarea {
    padding-block: 15px;
  }
}
.c-input select {
  padding-inline-end: 40px;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="10" viewBox="0 0 16 10"><defs><clipPath id="a"><rect width="16" height="10" transform="translate(702 2425)" fill="%23fff" stroke="%23707070" stroke-width="1"/></clipPath></defs><g transform="translate(-702 -2425)" clip-path="url(%23a)"><path d="M16731.822-10162h10v10" transform="translate(5362.709 -16590.805) rotate(135)" fill="none" stroke="%23000" stroke-width="1"/></g></svg>');
  background-position: right 10px center;
  cursor: pointer;
}
.c-input textarea {
  min-height: 380px;
  resize: vertical;
}
@media (width <= 768px) {
  .c-input textarea {
    min-height: 260px;
  }
}
.c-input._w1 input, .c-input._w1 select {
  max-width: 420px;
}
@media (width <= 800px) {
  .c-input._w1 input, .c-input._w1 select {
    max-width: 360px;
  }
}
.c-input._w2 input, .c-input._w2 select {
  max-width: 300px;
}
@media (width <= 800px) {
  .c-input._w2 input, .c-input._w2 select {
    max-width: 260px;
  }
}
.c-input:is(._radio, ._checkbox) {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 37px;
}
@media (width <= 560px) {
  .c-input:is(._radio, ._checkbox) {
    flex-direction: column;
  }
}
.c-input:is(._radio, ._checkbox) input {
  margin: 0;
}
.c-input:is(._radio, ._checkbox) label {
  display: inline-flex;
  align-items: center;
  column-gap: 5px;
  cursor: pointer;
}
.c-input .mwform-checkbox-field label {
  display: block;
  cursor: pointer;
}

.c-badge {
  display: inline-block;
  padding-block: 1px 3px;
  padding-inline: 9px;
  border-radius: 9999px;
  color: var(--color-light);
  font-family: var(--typography-std_jp_small_regular-font-family);
  font-weight: var(--typography-std_jp_small_regular-font-weight);
  font-size: var(--typography-std_jp_small_regular-font-size);
  line-height: var(--typography-std_jp_small_regular-line-height);
  --letter-spacing: var(--typography-std_jp_small_regular-letter-spacing);
  text-align: center;
  background-color: var(--color-light);
  line-height: 1;
}
.c-badge._required {
  background-color: var(--color-attention);
}
.c-badge._optional {
  background-color: var(--color-bg-ash-dark);
}

.p-pagetitle {
  position: relative;
  isolation: isolate;
  padding-block-start: var(--space-block-md);
  background-color: var(--color-light);
}
.p-pagetitle + .c-bread {
  padding-block-start: var(--space-block-sm);
}
.p-pagetitle__inner {
  position: relative;
}
.p-pagetitle__title {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
}
.p-pagetitle__sub {
  font-family: var(--typography-dsp_en_xxxl_light-font-family);
  font-weight: var(--typography-dsp_en_xxxl_light-font-weight);
  font-size: var(--typography-dsp_en_xxxl_light-font-size);
  line-height: var(--typography-dsp_en_xxxl_light-line-height);
  --letter-spacing: var(--typography-dsp_en_xxxl_light-letter-spacing);
  color: var(--color-light);
  mix-blend-mode: difference;
}
@media (width <= 1120px) {
  .p-pagetitle__sub {
    font-size: 3.75rem;
    --letter-spacing: 0.01em;
  }
}
.p-pagetitle__img {
  position: relative;
  z-index: -10;
  height: 440px;
}
@media (width <= 1120px) {
  .p-pagetitle__img {
    height: 400px;
  }
}
@media (width <= 768px) {
  .p-pagetitle__img {
    height: 300px;
  }
}
.p-pagetitle__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-bnr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (width <= 768px) {
  .p-bnr {
    grid-template-columns: 1fr;
  }
}
.p-bnr._small {
  --p-bnr-height: 396px;
  --p-bnr-height-lg: 340px;
  --p-bnr-height-sm: 268px;
}
.p-bnr__item {
  position: relative;
  z-index: 1;
  height: var(--p-bnr-height, 500px);
  overflow: hidden;
  padding: 100px var(--space-block-lg) var(--space-block-md) var(--space-block-lg);
  color: var(--color-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (width <= 1120px) {
  .p-bnr__item {
    padding: var(--space-block-md);
    gap: var(--space-block-md);
    height: var(--p-bnr-height-lg, 400px);
  }
}
@media (width <= 768px) {
  .p-bnr__item {
    height: var(--p-bnr-height-sm, 320px);
  }
}
.p-bnr__item:focus-visible .p-bnr__image {
  scale: var(--scale);
}
.p-bnr__item:focus-visible .p-bnr__image img {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .p-bnr__item:hover .p-bnr__image {
    scale: var(--scale);
  }
  .p-bnr__item:hover .p-bnr__image img {
    opacity: 1;
  }
}
.p-bnr__image {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  overflow: hidden;
  transition: scale var(--sec);
}
.p-bnr__image img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-bnr__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: color-mix(in srgb, var(--color-dark) 50%, transparent);
}
.p-bnr__title .en {
  font-family: var(--typography-std_en_xxl_medium-font-family);
  font-weight: var(--typography-std_en_xxl_medium-font-weight);
  font-size: var(--typography-std_en_xxl_medium-font-size);
  line-height: var(--typography-std_en_xxl_medium-line-height);
  --letter-spacing: var(--typography-std_en_xxl_medium-letter-spacing);
  mix-blend-mode: difference;
  margin-block-end: var(--space-block-sm);
  text-transform: capitalize;
}
.p-bnr__title .jp {
  font-family: var(--typography-std_jp_xl_medium-font-family);
  font-weight: var(--typography-std_jp_xl_medium-font-weight);
  font-size: var(--typography-std_jp_xl_medium-font-size);
  line-height: var(--typography-std_jp_xl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xl_medium-letter-spacing);
  display: grid;
  grid-template-columns: 10px auto;
  gap: var(--space-block-xs);
  align-items: center;
}
.p-bnr__title .jp::before {
  content: "";
  display: inline-block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.p-works {
  padding-block: var(--space-block-lg);
  background-color: var(--color-bg-ash-dark);
  color: var(--color-light);
  overflow: hidden;
}
@media (width <= 768px) {
  .p-works .c-heading2 {
    margin-block-end: var(--space-block-lg);
  }
}
.p-works__slide {
  position: relative;
}
.p-works__slide .slick-list {
  overflow: visible;
}
.p-works__image {
  margin-block-end: var(--space-block-xs);
  position: relative;
  display: block;
  aspect-ratio: 60/34;
  overflow: hidden;
}
.p-works__image:focus-visible img {
  opacity: 1;
  scale: var(--scale);
}
.p-works__image:focus-visible .p-works__icon {
  color: var(--color-light);
  background-color: var(--color-bg-ash-dark);
}
@media (hover: hover) and (pointer: fine) {
  .p-works__image:hover img {
    opacity: 1;
    scale: var(--scale);
  }
  .p-works__image:hover .p-works__icon {
    color: var(--color-light);
    background-color: var(--color-bg-ash-dark);
  }
}
.p-works__image img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: scale var(--sec);
  scale: 1;
}
.p-works__item {
  width: 600px;
  margin-inline-end: var(--space-block-sm);
}
@media (width <= 768px) {
  .p-works__item {
    width: 325px;
  }
}
.p-works__icon {
  position: absolute;
  right: var(--space-block-sm);
  bottom: var(--space-block-sm);
  background-color: var(--color-light);
  border-radius: 50%;
  width: 32px;
  aspect-ratio: 1/1;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-ash-dark);
  transition: var(--sec);
}
.p-works__area {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-block-xs);
  margin-block-end: var(--space-block-xs);
}
.p-works__area .area {
  font-family: var(--typography-std_jp_small_regular-font-family);
  font-weight: var(--typography-std_jp_small_regular-font-weight);
  font-size: var(--typography-std_jp_small_regular-font-size);
  line-height: var(--typography-std_jp_small_regular-line-height);
  --letter-spacing: var(--typography-std_jp_small_regular-letter-spacing);
  border: 1px solid var(--color-light);
  padding: 0 var(--space-block-xs);
  border-radius: 99px;
}
.p-works__title {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
  margin-block-end: var(--space-block-xs);
}
.p-works__category {
  font-family: var(--typography-std_jp_small_regular-font-family);
  font-weight: var(--typography-std_jp_small_regular-font-weight);
  font-size: var(--typography-std_jp_small_regular-font-size);
  line-height: var(--typography-std_jp_small_regular-line-height);
  --letter-spacing: var(--typography-std_jp_small_regular-letter-spacing);
  margin-block-end: var(--space-block-xs);
  display: flex;
  flex-wrap: wrap;
  gap: 2px var(--space-block-xs);
}
.p-works__category .category::before {
  content: "# ";
}
.p-works__award {
  font-family: var(--typography-std_jp_small_regular-font-family);
  font-weight: var(--typography-std_jp_small_regular-font-weight);
  font-size: var(--typography-std_jp_small_regular-font-size);
  line-height: var(--typography-std_jp_small_regular-line-height);
  --letter-spacing: var(--typography-std_jp_small_regular-letter-spacing);
  margin-block-start: var(--space-block-xs);
  padding-block-start: var(--space-block-xs);
  border-block-start: 1px solid var(--color-border);
}
.p-works .slick-arrow {
  position: absolute;
  top: -60px;
  font-size: 0;
  border: 0;
  outline: 0;
  width: 60px;
  height: 20px;
  z-index: 1;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
}
@media (width <= 768px) {
  .p-works .slick-arrow {
    top: -40px;
  }
}
.p-works .slick-prev {
  right: 66px;
}
.p-works .slick-prev::before {
  content: "";
  display: inline-block;
  background: url(../img/cmn/icon_arrow_left.png) no-repeat top left;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  opacity: 1;
  transition: opacity var(--sec);
}
.p-works .slick-prev::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/cmn/icon_arrow_left_hover.png) no-repeat top left;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.p-works .slick-prev:focus-visible::before {
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-works .slick-prev:hover::before {
    opacity: 0;
  }
}
.p-works .slick-next {
  right: 0;
}
.p-works .slick-next::before {
  content: "";
  display: inline-block;
  background: url(../img/cmn/icon_arrow_right.png) no-repeat top left;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  opacity: 1;
  transition: opacity var(--sec);
}
.p-works .slick-next::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/cmn/icon_arrow_right_hover.png) no-repeat top left;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.p-works .slick-next:focus-visible::before {
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-works .slick-next:hover::before {
    opacity: 0;
  }
}
.p-works .slick-dots {
  position: absolute;
  display: flex;
  gap: var(--space-block-sm);
  top: -54px;
  right: 156px;
}
@media (width <= 768px) {
  .p-works .slick-dots {
    top: -35px;
  }
}
.p-works .slick-dots li {
  display: inline-flex;
}
.p-works .slick-dots .slick-active button {
  border-width: 1px;
}
.p-works .slick-dots button {
  min-width: 0;
  font-size: 0;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  background-color: var(--color-bg-ash-dark);
  border: 3px solid var(--color-light);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  padding: 0;
  margin: 0;
}

.p-news__item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-block-sm);
  align-items: flex-start;
  transition: opacity var(--sec);
  max-width: 788px;
}
@media (width <= 560px) {
  .p-news__item {
    max-width: none;
    grid-template-columns: 1fr;
  }
}
.p-news__item:not(:last-child) {
  margin-block-end: var(--space-block-sm);
}
.p-news__item:focus-visible .p-news__title {
  color: var(--color-primary);
}
.p-news__item:focus-visible img {
  opacity: 1;
  scale: var(--scale);
}
@media (hover: hover) and (pointer: fine) {
  .p-news__item:hover .p-news__title {
    color: var(--color-primary);
  }
  .p-news__item:hover img {
    opacity: 1;
    scale: var(--scale);
  }
}
.p-news__image {
  position: relative;
  aspect-ratio: 24/17;
}
.p-news__image img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  scale: 1;
  transition: scale var(--sec);
}
.p-news .c-arrow {
  display: flex;
  position: absolute;
  bottom: var(--space-block-xs);
  right: var(--space-block-xs);
  width: 32px;
}
.p-news__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px;
  margin-block-end: var(--space-block-sm);
}
.p-news__date {
  color: var(--color-base-light);
  font-family: var(--typography-std_en_xs_bold-font-family);
  font-weight: var(--typography-std_en_xs_bold-font-weight);
  font-size: var(--typography-std_en_xs_bold-font-size);
  line-height: var(--typography-std_en_xs_bold-line-height);
  --letter-spacing: var(--typography-std_en_xs_bold-letter-spacing);
  width: max-content;
}
.p-news__category {
  display: flex;
  row-gap: 4px;
  flex-wrap: wrap;
}
.p-news__category .category {
  padding-inline-start: 6px;
  margin-inline-start: 6px;
  border-inline-start: 1px solid var(--color-base);
  font-family: var(--typography-std_jp_small_regular-font-family);
  font-weight: var(--typography-std_jp_small_regular-font-weight);
  font-size: var(--typography-std_jp_small_regular-font-size);
  line-height: var(--typography-std_jp_small_regular-line-height);
  --letter-spacing: var(--typography-std_jp_small_regular-letter-spacing);
}
.p-news__title {
  color: var(--color-base-light);
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
  transition: color var(--sec);
}

.p-kv {
  position: relative;
}
.p-kv__inner {
  display: grid;
  grid-template-columns: 50% 1fr;
  align-items: start;
  gap: var(--space-block-md) 60px;
}
@media (width <= 1120px) {
  .p-kv__inner {
    column-gap: 30px;
  }
}
@media (width <= 768px) {
  .p-kv__inner {
    grid-template-columns: 1fr;
  }
}
.p-kv__detail {
  padding-block-start: var(--space-block-md);
  padding-block-end: var(--space-block-xl);
}
@media (width <= 768px) {
  .p-kv__detail {
    padding-block: 0;
  }
}
.p-kv__copy {
  margin-block-end: var(--space-block-md-trim);
  font-family: var(--typography-std_jp_xxl_medium-font-family);
  font-weight: var(--typography-std_jp_xxl_medium-font-weight);
  font-size: var(--typography-std_jp_xxl_medium-font-size);
  line-height: var(--typography-std_jp_xxl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_medium-letter-spacing);
}
@media (width <= 768px) {
  .p-kv__image {
    max-width: 440px;
    margin-inline: auto;
  }
}
.p-kv__image img {
  width: 100%;
}
.p-kv__slide {
  position: absolute !important;
  left: 0;
  bottom: var(--space-block-md);
  width: 100%;
  font-family: var(--typography-dsp_en_xxxl_light-font-family);
  font-weight: var(--typography-dsp_en_xxxl_light-font-weight);
  font-size: var(--typography-dsp_en_xxxl_light-font-size);
  line-height: var(--typography-dsp_en_xxxl_light-line-height);
  --letter-spacing: var(--typography-dsp_en_xxxl_light-letter-spacing);
  line-height: 1;
  color: var(--color-light);
  mix-blend-mode: difference;
}

.p-media {
  display: flex;
  flex-direction: column;
}
.p-media_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-block-md) 40px;
}
@media (width <= 1120px) {
  .p-media_wrapper {
    column-gap: 20px;
  }
}
@media (width <= 768px) {
  .p-media_wrapper {
    grid-template-columns: 1fr;
  }
}
.p-media__image {
  order: -10;
  margin-block-end: var(--space-block-sm);
}
.p-media__image img {
  width: 100%;
}
.p-media__heading {
  margin-block-end: var(--space-block-sm-trim);
}

.p-data {
  position: relative;
  margin-block-end: -1px;
  padding-block: calc(var(--space-block-sm) - 1px);
  break-inside: avoid;
}
.p-data_wrapper {
  column-count: 2;
  column-gap: 40px;
  padding-block-end: 1px;
}
@media (width <= 1120px) {
  .p-data_wrapper {
    column-gap: 20px;
  }
}
@media (width <= 768px) {
  .p-data_wrapper {
    column-count: 1;
  }
}
.p-data::before, .p-data::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, var(--color-dark) 40px, color-mix(in srgb, var(--color-border2) 50%, transparent) 40px);
}
.p-data::before {
  top: 0;
}
.p-data::after {
  bottom: 0;
}
.p-data__title {
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
}
.p-data__title:not(:last-child) {
  margin-block-end: var(--space-block-sm-trim);
}
.p-data__list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--space-block-xs-trim) + 4px) 30px;
}
.p-data__list._vertical {
  flex-direction: column;
}
.p-data__list > li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 10px;
}
.p-data__list > li::before {
  content: "";
  width: 6px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background-color: var(--color-primary);
  translate: 0 -40%;
}

.p-column {
  --l-column-head-width-override: 220px;
  --l-column-columnGap-override: 80px;
  --l-column-rowGap-override: var(--space-block-md);
}
@media (width <= 1120px) {
  .p-column {
    --l-column-columnGap-override: 40px;
  }
}

.p-form-head {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 20px;
  margin-block-end: var(--space-block-md);
}
@media (width <= 1120px) {
  .p-form-head {
    grid-template-columns: 1fr;
    row-gap: var(--space-block-md);
  }
}
.p-form-head__head {
  translate: 0 5px;
}
@media (1120px < width) {
  .p-form-head__body {
    grid-area: 1/1/2/2;
  }
}

.p-form {
  position: relative;
  isolation: isolate;
}
@media (width <= 560px) {
  .p-form {
    margin-inline: var(--space-inline-negative);
  }
}
.p-form__item {
  display: grid;
  grid-template-columns: 228px 1fr;
  gap: var(--space-block-sm) 20px;
  padding: calc(var(--space-block-md) - 2px) 40px;
}
@media (width <= 1120px) {
  .p-form__item {
    grid-template-columns: 1fr;
  }
}
@media (width <= 768px) {
  .p-form__item {
    padding-inline: var(--space-inline);
  }
}
.p-form__item:nth-child(odd) {
  background-color: color-mix(in srgb, var(--color-bg-ash) 20%, transparent);
}
.p-form__item:nth-child(even) {
  background-color: var(--color-light);
}
.p-form__label {
  display: contents;
}
.p-form__label-in {
  position: relative;
  display: flex;
  align-items: baseline;
  column-gap: 6px;
}
@media (width <= 800px) {
  .p-form__label-in {
    justify-content: stretch;
  }
}
.p-form__badge {
  order: -10;
}
.p-form__title {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
}
.p-form__exp {
  display: block;
  margin-block-end: 5px;
}
.p-form__group-item:not(:last-child) {
  margin-block-end: 18px;
}
.p-form__group-title {
  display: block;
  margin-block-end: 8px;
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
}
.p-form__group-title span {
  font-family: var(--typography-std_jp_medium_tight-font-family);
  font-weight: var(--typography-std_jp_medium_tight-font-weight);
  font-size: var(--typography-std_jp_medium_tight-font-size);
  line-height: var(--typography-std_jp_medium_tight-line-height);
  --letter-spacing: var(--typography-std_jp_medium_tight-letter-spacing);
}
.p-form__zip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 10px;
}
@media (width <= 768px) {
  .p-form__zip {
    grid-template-columns: 1fr;
    row-gap: var(--space-block-xs);
  }
}
.p-form__sending {
  display: flex;
  flex-direction: column;
  font-family: var(--typography-std_jp_small_regular-font-family);
  font-weight: var(--typography-std_jp_small_regular-font-weight);
  font-size: var(--typography-std_jp_small_regular-font-size);
  line-height: var(--typography-std_jp_small_regular-line-height);
  --letter-spacing: var(--typography-std_jp_small_regular-letter-spacing);
}
.p-form__sending .mwform-radio-field:nth-child(1) {
  order: -40;
}
.p-form__file {
  order: -30;
}

.p-form__sending .mwform-radio-field:nth-child(2) {
  order: -20;
}
.p-form__destination {
  order: -10;
}

.p-form__sending .mwform-radio-field {
  display: block;
  margin-block-end: 10px;
}
.p-form__file {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-block-sm) 14px;
  margin-block-end: var(--space-block-sm);
  padding-inline-start: 20px;
}
.p-form__file-head {
  display: flex;
  align-items: baseline;
  column-gap: 10px;
  margin-block-end: 10px;
}
.p-form__destination {
  padding-inline-start: 20px;
}
.p-form__agree {
  width: fit-content;
  margin-inline: auto;
  margin-block-start: var(--space-block-md);
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
  text-align: center;
}
.p-form__agree a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-form__agree a:focus-visible {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-form__agree a:hover {
    text-decoration: none;
  }
}
.p-form__submit {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-block-start: var(--space-block-md);
  gap: 20px 20px;
}
@media (width <= 768px) {
  .p-form__submit {
    flex-direction: column-reverse;
  }
}
.p-form__submit button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 263px;
  min-height: 60px;
  padding-block: 5px;
  padding-inline: 20px;
  border: 2px solid var(--color-base-light);
  border-radius: 9999px;
  color: var(--color-light);
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
  text-align: center;
  text-decoration: none;
  background-color: var(--color-base-light);
  appearance: none;
  cursor: pointer;
  transition-property: background-color, border-color;
  transition-duration: var(--sec);
}
@media (width <= 768px) {
  .p-form__submit button {
    width: 324px;
  }
}
.p-form__submit button[name=submitBack] {
  color: var(--color-base-light);
  background-color: var(--color-light);
}
.p-form__address {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  column-gap: 11px;
  row-gap: var(--space-block-xxs);
  margin-block-end: var(--space-block-xxs);
  padding-inline-start: 2px;
}
.p-form__address-exp {
  grid-column: span 2;
}

.mw_wp_form.mw_wp_form_confirm .p-form__group-item {
  margin-block-end: 0;
  display: inline;
}
.mw_wp_form.mw_wp_form_confirm .p-form__group-item .c-input {
  display: inline;
}
.mw_wp_form.mw_wp_form_confirm .p-form__group-item:nth-child(1) {
  display: block;
}
.mw_wp_form.mw_wp_form_confirm .p-form__sending {
  display: block;
}
.mw_wp_form.mw_wp_form_confirm .p-form__file {
  margin-block-start: 10px;
  padding-inline-start: 0;
}

.p-modal {
  max-height: none !important;
  display: grid;
  grid-template-columns: min(calc(50% + 36px), 536px) 1fr;
  color: var(--color-light);
  background-color: var(--color-bg-primary);
}
@media (width <= 1120px) {
  .p-modal {
    grid-template-columns: 1fr;
  }
}
.p-modal__detail {
  padding: var(--space-block-lg) 25px var(--space-block-lg) 40px;
  font-family: var(--typography-std_jp_medium_tight-font-family);
  font-weight: var(--typography-std_jp_medium_tight-font-weight);
  font-size: var(--typography-std_jp_medium_tight-font-size);
  line-height: var(--typography-std_jp_medium_tight-line-height);
  --letter-spacing: var(--typography-std_jp_medium_tight-letter-spacing);
}
@media (width <= 1120px) {
  .p-modal__detail {
    padding: var(--space-block-md) 20px;
  }
}
.p-modal__image {
  grid-area: 1/1/2/2;
}
@media (width <= 1120px) {
  .p-modal__image {
    position: relative;
    height: 400px;
  }
}
@media (width <= 768px) {
  .p-modal__image {
    height: 325px;
  }
}
.p-modal__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (width <= 1120px) {
  .p-modal__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }
}
.p-modal__foot {
  margin-block-start: var(--space-block-sm-trim);
  padding-inline-end: 8px;
  text-align: right;
}
.p-modal .c-heading2__en {
  color: var(--color-light);
}

[data-tel] a {
  color: inherit;
  text-decoration: underline;
}

[data-details] summary {
  cursor: pointer;
}
[data-details-panel] {
  overflow: hidden;
}

.simpleParallax {
  height: 100%;
}

.lity {
  z-index: 500 !important;
  background: color-mix(in srgb, var(--color-dark) 50%, transparent) !important;
}

.lity-wrap {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.lity-wrap::-webkit-scrollbar {
  display: none;
}

.lity-close {
  position: absolute !important;
  text-shadow: none !important;
  font-family: var(--ff-sans-serif) !important;
  font-weight: 300;
  color: var(--color-base) !important;
  background-color: var(--color-light) !important;
  border-radius: 50%;
  width: 32px !important;
  height: 32px !important;
  font-size: 1.375rem !important;
  top: -16px !important;
  right: -16px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.lity-container {
  max-width: 1000px !important;
  margin-block: calc(var(--header-size) + var(--space-block-sm)) calc(var(--space-block-sm) * 2);
  margin-inline: var(--space-inline);
}
.lity-container:has(.p-modal) {
  max-height: none !important;
}

.lity-content:has(> img:only-child) {
  padding: 1px;
  background-color: var(--color-light);
}

.lity-image img {
  max-height: calc(100svh - var(--space-block-sm) * 2 - var(--header-size)) !important;
}

html {
  scrollbar-gutter: stable;
}
html.lity-active {
  overflow: hidden;
}

body.panelactive {
  overflow: hidden;
}

/*全画面*/
.g-wrapper {
  padding-block-start: var(--header-size);
}
.g-wrapper:has(.q-mv) {
  padding-block-start: 0;
}

/*ヘッダー*/
.g-header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: var(--color-light);
  padding-inline: var(--space-block-md) 0;
}
@media (width <= 1090px) {
  .g-header {
    padding-inline: var(--space-block-xs) 0;
  }
}
@media (width <= 1090px) {
  .g-header.panelactive .header__menu-cta {
    display: none;
  }
}
@media (width <= 768px) {
  .g-header .header__logo {
    width: 54%;
  }
}
.g-header .header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-inline-end: 170px;
  padding-block: 30px;
  z-index: 995;
  width: 100%;
}
@media (width <= 1090px) {
  .g-header .header__content {
    padding-inline-end: 0;
    padding-block: 0;
    height: 82px;
  }
}
@media (width <= 1090px) {
  .g-header .header__menu-pc {
    display: none;
  }
}
.g-header .header__menu-list {
  display: flex;
  align-items: center;
  gap: var(--space-block-sm);
}
@media (width <= 1120px) {
  .g-header .header__menu-list {
    gap: 15px;
  }
}
.g-header .header__menu-list .list {
  font-family: var(--typography-std_jp_medium_tight-font-family);
  font-weight: var(--typography-std_jp_medium_tight-font-weight);
  font-size: var(--typography-std_jp_medium_tight-font-size);
  line-height: var(--typography-std_jp_medium_tight-line-height);
  --letter-spacing: var(--typography-std_jp_medium_tight-letter-spacing);
  transition: color var(--sec);
}
.g-header .header__menu-list .list:focus-visible {
  color: var(--color-primary);
}
@media (hover: hover) and (pointer: fine) {
  .g-header .header__menu-list .list:hover {
    color: var(--color-primary);
  }
}
html:has([data-belong-to=about]) .g-header .header__menu-list .list._about, html:has([data-belong-to=business]) .g-header .header__menu-list .list._business, html:has([data-belong-to=works]) .g-header .header__menu-list .list._works, html:has([data-belong-to=company]) .g-header .header__menu-list .list._company, html:has([data-belong-to=news]) .g-header .header__menu-list .list._news, html:has([data-belong-to=recruit]) .g-header .header__menu-list .list._recruit {
  color: var(--color-primary);
}

.g-header .header__menu-list .list svg {
  color: var(--color-dark);
}
.g-header .header__menu-list .list-child-wrap {
  position: relative;
}
.g-header .header__menu-list .list-child-wrap.is-open .list .u-svg {
  transform: rotate(180deg);
}
.g-header .header__menu-list .list-child-wrap:last-child .list-child {
  right: 0px;
  left: auto;
}
.g-header .header__menu-list .list-child-wrap .list {
  cursor: pointer;
}
.g-header .header__menu-list .list-child-wrap .list-child {
  position: absolute;
  left: -40px;
  top: 76px;
  z-index: 999;
  display: none;
  background-color: var(--color-light);
  border-radius: 999px;
  width: max-content;
  padding: var(--space-block-sm) var(--space-block-md);
}
.g-header .header__menu-list .list-child-wrap .list-child a {
  transition: color var(--sec);
  display: inline-flex;
  align-items: center;
  gap: var(--space-block-xs);
}
.g-header .header__menu-list .list-child-wrap .list-child a:not(:last-child) {
  margin-inline-end: var(--space-block-sm);
}
.g-header .header__menu-list .list-child-wrap .list-child a:focus-visible {
  color: var(--color-primary);
}
.g-header .header__menu-list .list-child-wrap .list-child a:focus-visible .svg {
  border-color: var(--color-primary);
  color: var(--color-primary);
  left: 4px;
}
@media (hover: hover) and (pointer: fine) {
  .g-header .header__menu-list .list-child-wrap .list-child a:hover {
    color: var(--color-primary);
  }
  .g-header .header__menu-list .list-child-wrap .list-child a:hover .svg {
    border-color: var(--color-primary);
    color: var(--color-primary);
    left: 4px;
  }
}
.g-header .header__menu-list .list-child-wrap .list-child a .svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-bg-ash-dark);
  width: 12px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: relative;
  left: 0;
  transition: var(--sec);
  color: var(--color-bg-ash-dark);
}
.g-header .header__menu-sp {
  display: flex;
  align-items: center;
  display: none;
}
@media (width <= 1090px) {
  .g-header .header__menu-sp {
    display: flex;
    align-items: center;
  }
}
.g-header .header__menu-hamburger {
  position: relative;
  cursor: pointer;
  z-index: 1000;
  width: calc(var(--space-block-sm) * 2 + 30px);
  height: 82px;
  aspect-ratio: 1/1;
  padding-inline: var(--space-block-sm);
}
.g-header .header__menu-hamburger .line {
  display: inline-block;
  transition: all var(--sec);
  position: absolute;
  left: var(--space-block-sm);
  height: 1px;
  width: 30px;
  border-radius: 10px;
  background-color: var(--color-base);
}
.g-header .header__menu-hamburger .line:nth-of-type(1) {
  top: 36px;
}
.g-header .header__menu-hamburger .line:nth-of-type(2) {
  top: 46px;
}
.g-header .header__menu-hamburger.is-open {
  background-color: var(--color-light);
}
.g-header .header__menu-hamburger.is-open .line:nth-of-type(1) {
  transform-origin: top left;
  transform: rotate(19deg);
}
.g-header .header__menu-hamburger.is-open .line:nth-of-type(2) {
  transform-origin: top left;
  transform: rotate(-19deg);
}
.g-header .header__menu-hamburger.is-open .text {
  color: var(--color-base);
}
.g-header .header__menu-hamburger.is-open .text._open {
  display: none;
}
.g-header .header__menu-hamburger.is-open .text._close {
  display: block;
}
.g-header .header__menu-hamburger .text {
  position: absolute;
  bottom: 34%;
  left: 50%;
  transform: translate(-50%, 50%);
  color: var(--color-light);
  font-size: var(--ff-size14);
  font-family: var(--ff-en);
  font-weight: 700;
  text-transform: capitalize;
}
@media (width <= 1120px) {
  .g-header .header__menu-hamburger .text {
    font-size: 10px;
  }
}
.g-header .header__menu-hamburger .text._close {
  display: none;
}
.g-header .header__menu-nav {
  position: fixed;
  z-index: 999;
  top: 70px;
  left: 0;
  opacity: 0;
  min-width: 100%;
  transition: all var(--sec);
  display: none;
  background-color: color-mix(in srgb, var(--color-light) 90%, transparent);
  height: 100svh;
}
.g-header .header__menu-nav.panelactive {
  opacity: 1;
  display: block;
}
.g-header .header__menu-nav .nav-list-wrap {
  z-index: 999;
  width: 100%;
  overflow: auto;
  max-height: calc(100svh - 90px);
  padding: var(--space-block-md);
}
.g-header .header__menu-nav .nav-list {
  display: flex;
  gap: var(--space-block-md);
  justify-content: center;
  max-width: 270px;
  margin-inline: auto;
}
.g-header .header__menu-nav .nav-list .nav-list-group .menu {
  font-family: var(--typography-std_jp_medium_tight-font-family);
  font-weight: var(--typography-std_jp_medium_tight-font-weight);
  font-size: var(--typography-std_jp_medium_tight-font-size);
  line-height: var(--typography-std_jp_medium_tight-line-height);
  --letter-spacing: var(--typography-std_jp_medium_tight-letter-spacing);
  display: block;
}
.g-header .header__menu-nav .nav-list .nav-list-group .menu:not(:last-child) {
  margin-block-end: var(--space-block-sm);
}
.g-header .header__menu-nav .nav-list .nav-list-group .menu._child {
  font-family: var(--typography-std_jp_small_regular-font-family);
  font-weight: var(--typography-std_jp_small_regular-font-weight);
  font-size: var(--typography-std_jp_small_regular-font-size);
  line-height: var(--typography-std_jp_small_regular-line-height);
  --letter-spacing: var(--typography-std_jp_small_regular-letter-spacing);
  display: flex;
  align-items: center;
  gap: 4px;
}
.g-header .header__menu-nav .nav-list .nav-list-group .menu._child::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: var(--color-base);
}
.g-header .header__menu-nav .nav-list .nav-list-group .group .menu:not(:last-child) {
  margin-block-end: var(--space-block-xs);
}
.g-header .header__menu-mail {
  border-radius: var(--radius);
  background-color: var(--color-bg-primary);
  width: 270px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-block-xs);
  font-family: var(--typography-std_jp_small_bold-font-family);
  font-weight: var(--typography-std_jp_small_bold-font-weight);
  font-size: var(--typography-std_jp_small_bold-font-size);
  line-height: var(--typography-std_jp_small_bold-line-height);
  --letter-spacing: var(--typography-std_jp_small_bold-letter-spacing);
  color: var(--color-light);
  margin: var(--space-block-md) auto 0 auto;
}
.g-header .header__menu-cta a {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-bg-primary);
  width: 150px;
  aspect-ratio: 150/142;
  color: var(--color-light);
  font-family: var(--typography-std_jp_small_bold-font-family);
  font-weight: var(--typography-std_jp_small_bold-font-weight);
  font-size: var(--typography-std_jp_small_bold-font-size);
  line-height: var(--typography-std_jp_small_bold-line-height);
  --letter-spacing: var(--typography-std_jp_small_bold-letter-spacing);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--sec);
}
.g-header .header__menu-cta a:focus-visible {
  background-color: var(--color-primary);
}
@media (hover: hover) and (pointer: fine) {
  .g-header .header__menu-cta a:hover {
    background-color: var(--color-primary);
  }
}
@media (width <= 1090px) {
  .g-header .header__menu-cta a {
    position: inherit;
    width: 76px;
    aspect-ratio: 76/82;
  }
}

/*お問い合せ*/
.g-contact {
  border-block: 1px solid var(--color-border);
}
.g-contact .c-heading2 {
  column-gap: var(--space-block-sm);
}
.g-contact .column {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-block-md) var(--space-block-sm);
  flex-wrap: wrap;
}
.g-contact .column__body {
  display: flex;
  gap: var(--space-block-md);
}
@media (width <= 1120px) {
  .g-contact .column__body {
    column-gap: var(--space-block-xs);
  }
}
@media (width <= 768px) {
  .g-contact .column__body {
    flex-direction: column;
    width: 100%;
  }
}
.g-contact .column__body .line {
  width: 1px;
  background-color: var(--color-border);
}
@media (width <= 768px) {
  .g-contact .column__body .line {
    width: 100%;
    height: 1px;
  }
}
.g-contact .column__body .c-button {
  margin-inline-start: 0;
  padding-block: 22px;
}
.g-contact .column__title {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
  margin-block-end: var(--space-block-sm);
  color: var(--color-primary);
  display: grid;
  grid-template-columns: 6px auto;
  gap: var(--space-block-xs);
  align-items: center;
}
.g-contact .column__title::before {
  content: "";
  display: inline-block;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: var(--color-primary);
  border-radius: 50%;
}
.g-contact .column__item .tel {
  font-family: var(--typography-std_en_xxl_medium-font-family);
  font-weight: var(--typography-std_en_xxl_medium-font-weight);
  font-size: var(--typography-std_en_xxl_medium-font-size);
  line-height: var(--typography-std_en_xxl_medium-line-height);
  --letter-spacing: var(--typography-std_en_xxl_medium-letter-spacing);
  margin-block-end: var(--space-block-xs);
  pointer-events: none;
}
@media (width <= 768px) {
  .g-contact .column__item .tel {
    pointer-events: all;
    font-size: 1.875rem;
  }
}
.g-contact .column__item .time {
  font-family: var(--typography-std_jp_medium_tight-font-family);
  font-weight: var(--typography-std_jp_medium_tight-font-weight);
  font-size: var(--typography-std_jp_medium_tight-font-size);
  line-height: var(--typography-std_jp_medium_tight-line-height);
  --letter-spacing: var(--typography-std_jp_medium_tight-letter-spacing);
}
.g-contact .column__item .c-button {
  margin-block-start: 0;
  border-radius: 6px;
}

/*フッター*/
.g-footer .footer {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: var(--space-block-md);
}
@media (width <= 768px) {
  .g-footer .footer {
    grid-template-columns: 1fr;
  }
}
.g-footer .footer__logo {
  grid-area: 1/1/2/3;
}
@media (width <= 768px) {
  .g-footer .footer__logo {
    width: 300px;
    grid-area: auto;
  }
}
.g-footer .footer__head {
  font-family: var(--typography-std_jp_medium_tight-font-family);
  font-weight: var(--typography-std_jp_medium_tight-font-weight);
  font-size: var(--typography-std_jp_medium_tight-font-size);
  line-height: var(--typography-std_jp_medium_tight-line-height);
  --letter-spacing: var(--typography-std_jp_medium_tight-letter-spacing);
}
.g-footer .footer__head .address {
  margin-block-end: var(--space-block-xs);
  width: fit-content;
}
.g-footer .footer__head a {
  transition: opacity var(--sec);
}
.g-footer .footer__head a:focus-visible {
  opacity: var(--opacity);
}
@media (hover: hover) and (pointer: fine) {
  .g-footer .footer__head a:hover {
    opacity: var(--opacity);
  }
}
.g-footer .footer__head .map {
  text-align: right;
}
.g-footer .footer__head .map a {
  font-family: var(--typography-std_en_xs_medium-font-family);
  font-weight: var(--typography-std_en_xs_medium-font-weight);
  font-size: var(--typography-std_en_xs_medium-font-size);
  line-height: var(--typography-std_en_xs_medium-line-height);
  --letter-spacing: var(--typography-std_en_xs_medium-letter-spacing);
  border-block-end: 1px solid var(--color-border);
  padding-block-end: 4px;
}
.g-footer .footer__head .map .u-svg {
  width: 12px;
}
.g-footer .footer__head .contact a {
  pointer-events: none;
}
@media (width <= 768px) {
  .g-footer .footer__head .contact a {
    pointer-events: all;
  }
}
.g-footer .footer__body {
  display: flex;
  gap: var(--space-block-xs) var(--space-block-md);
  justify-content: end;
  flex-wrap: wrap;
}
@media (width <= 1120px) {
  .g-footer .footer__body {
    display: grid;
    justify-content: end;
  }
}
@media (width <= 768px) {
  .g-footer .footer__body {
    justify-content: start;
  }
}
@media (width <= 1120px) {
  .g-footer .footer__menu:nth-child(1) {
    grid-area: 1/1/3/2;
  }
}
@media (width <= 1120px) {
  .g-footer .footer__menu:nth-child(2) {
    grid-area: 2/1/4/2;
    margin-block-start: var(--space-block-sm);
  }
}
@media (width <= 1120px) {
  .g-footer .footer__menu:nth-child(3) {
    grid-area: 1/2/2/3;
  }
}
.g-footer .footer__menu .menu {
  display: block;
  transition: color var(--sec);
}
.g-footer .footer__menu .menu:focus-visible {
  color: var(--color-primary);
}
@media (hover: hover) and (pointer: fine) {
  .g-footer .footer__menu .menu:hover {
    color: var(--color-primary);
  }
}
.g-footer .footer__menu .menu:not(:last-child) {
  margin-block-end: var(--space-block-xs);
}
.g-footer .footer__menu .menu._child {
  margin-block-end: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.g-footer .footer__menu .menu._child:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: var(--color-base);
}
.g-footer .footer__foot {
  grid-area: 3/1/3/3;
  margin-block-start: var(--space-block-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-block-sm);
}
@media (width <= 768px) {
  .g-footer .footer__foot {
    grid-area: auto;
    align-items: flex-start;
    flex-direction: column;
  }
}
.g-footer .footer__foot .copy {
  font-family: var(--typography-std_jp_small_regular-font-family);
  font-weight: var(--typography-std_jp_small_regular-font-weight);
  font-size: var(--typography-std_jp_small_regular-font-size);
  line-height: var(--typography-std_jp_small_regular-line-height);
  --letter-spacing: var(--typography-std_jp_small_regular-letter-spacing);
  margin-inline-end: var(--space-block-sm);
}
.g-footer .footer__foot .privacy {
  font-family: var(--typography-std_en_xs_medium-font-family);
  font-weight: var(--typography-std_en_xs_medium-font-weight);
  font-size: var(--typography-std_en_xs_medium-font-size);
  line-height: var(--typography-std_en_xs_medium-line-height);
  --letter-spacing: var(--typography-std_en_xs_medium-letter-spacing);
  border-block-end: 1px solid var(--color-border);
  padding-block-end: 4px;
  transition: var(--sec);
}
.g-footer .footer__foot .privacy:focus-visible {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
@media (hover: hover) and (pointer: fine) {
  .g-footer .footer__foot .privacy:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
  }
}
.g-footer .footer__foot .pagetop {
  display: flex;
  align-items: center;
  gap: var(--space-block-xs);
  font-family: var(--typography-std_en_xs_medium-font-family);
  font-weight: var(--typography-std_en_xs_medium-font-weight);
  font-size: var(--typography-std_en_xs_medium-font-size);
  line-height: var(--typography-std_en_xs_medium-line-height);
  --letter-spacing: var(--typography-std_en_xs_medium-letter-spacing);
}
@media (width <= 768px) {
  .g-footer .footer__foot .pagetop {
    align-self: flex-end;
  }
}
.g-footer .footer__foot .pagetop:focus-visible .c-arrow__svg {
  margin-block-start: -10px;
}
@media (hover: hover) and (pointer: fine) {
  .g-footer .footer__foot .pagetop:hover .c-arrow__svg {
    margin-block-start: -10px;
  }
}
.g-footer .footer__foot .pagetop .c-arrow__svg {
  position: inherit;
  transform: rotate(-90deg);
  transition: margin-block-start var(--sec);
}

/*メイン*/
.g-main {
  display: block;
}
.g-main:after {
  content: " ";
  display: block;
  clear: both;
}

.g-recruit {
  position: relative;
  overflow: hidden;
}
@media (width <= 768px) {
  .g-recruit .recruit {
    margin-inline: -10px;
  }
}
.g-recruit .recruit__info {
  margin-block-end: var(--space-block-lg);
}
.g-recruit .recruit__title {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin-block-end: var(--space-block-lg);
}
@media (width <= 768px) {
  .g-recruit .recruit__title {
    margin-block-end: var(--space-block-xl);
  }
}
.g-recruit .recruit__title .title {
  font-family: var(--ff-serif);
  font-size: 4rem;
  text-align: center;
  color: var(--color-light);
  mix-blend-mode: difference;
  line-height: 1.1904761905;
}
@media (width <= 768px) {
  .g-recruit .recruit__title .title {
    font-size: clamp(1.625rem, calc(var(--vw) * 5.7142857143), 2.625rem);
  }
}
.g-recruit .recruit__title .en {
  font-family: var(--typography-std_en_xs_medium-font-family);
  font-weight: var(--typography-std_en_xs_medium-font-weight);
  font-size: var(--typography-std_en_xs_medium-font-size);
  line-height: var(--typography-std_en_xs_medium-line-height);
  --letter-spacing: var(--typography-std_en_xs_medium-letter-spacing);
  color: var(--color-primary);
  margin-block-end: var(--space-block-sm);
}
.g-recruit .recruit .c-text {
  color: var(--color-light);
  position: relative;
  z-index: 1;
}
@media (width <= 768px) {
  .g-recruit .recruit__text {
    max-width: 368px;
    margin-inline: auto;
  }
}
.g-recruit .recruit__image {
  position: absolute;
  left: 0;
  top: 198px;
  width: 100%;
  height: calc(100% - 240px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}
@media (width <= 768px) {
  .g-recruit .recruit__image {
    top: 142px;
    height: 46%;
    grid-template-columns: 1fr;
  }
}
@media (width <= 560px) {
  .g-recruit .recruit__image {
    top: 110px;
  }
}
@media (width <= 768px) {
  .g-recruit .recruit__image .image {
    height: calc(490px/2);
  }
}
.g-recruit .recruit__image img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.q-about-reason .about {
  display: grid;
  grid-template-columns: 1fr 436px;
  column-gap: 40px;
  border-block-start: 1px solid var(--color-border2);
  padding-block-start: var(--space-block-sm);
}
.q-about-reason .about_wrapper {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-block-md);
}
@media (width <= 1120px) {
  .q-about-reason .about {
    grid-template-columns: 1fr;
    row-gap: var(--space-block-md);
  }
}
.q-about-reason .about__image {
  grid-area: 1/1/2/2;
}
@media (width <= 1120px) {
  .q-about-reason .about__image {
    grid-area: revert;
    max-width: 644px;
    margin-inline: auto;
  }
}
.q-about-reason .about__image img {
  width: 1000px;
}
.q-about-reason .about__detail {
  display: flex;
  flex-direction: column;
}
.q-about-reason .about__head {
  order: -10;
  display: flex;
  justify-content: space-between;
  margin-block-end: var(--space-block-lg);
  color: var(--color-base-light);
  font-family: var(--typography-std_en_xs_medium-font-family);
  font-weight: var(--typography-std_en_xs_medium-font-weight);
  font-size: var(--typography-std_en_xs_medium-font-size);
  line-height: var(--typography-std_en_xs_medium-line-height);
  --letter-spacing: var(--typography-std_en_xs_medium-letter-spacing);
}
.q-about-reason .about__index {
  order: -10;
}
.q-about-reason .about__index span {
  font-family: var(--typography-std_en_xxl_medium-font-family);
  font-weight: var(--typography-std_en_xxl_medium-font-weight);
  font-size: var(--typography-std_en_xxl_medium-font-size);
  line-height: var(--typography-std_en_xxl_medium-line-height);
  --letter-spacing: var(--typography-std_en_xxl_medium-letter-spacing);
}
.q-about-reason .about__title {
  margin-block-end: var(--space-block-md);
  font-family: var(--typography-std_jp_xl_medium-font-family);
  font-weight: var(--typography-std_jp_xl_medium-font-weight);
  font-size: var(--typography-std_jp_xl_medium-font-size);
  line-height: var(--typography-std_jp_xl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xl_medium-letter-spacing);
}

.q-about-number {
  display: flex;
  flex-direction: column;
}
.q-about-number .copy {
  order: -10;
  position: relative;
  z-index: 10;
  margin-block-end: -0.5lh;
  font-family: var(--typography-std_en_xxl_medium-font-family);
  font-weight: var(--typography-std_en_xxl_medium-font-weight);
  font-size: var(--typography-std_en_xxl_medium-font-size);
  line-height: var(--typography-std_en_xxl_medium-line-height);
  --letter-spacing: var(--typography-std_en_xxl_medium-letter-spacing);
  color: var(--color-light);
  text-align: center;
  mix-blend-mode: difference;
}
.q-about-number .number {
  display: grid;
  align-items: center;
  color: var(--color-light);
}
.q-about-number .number__slide {
  position: relative;
  grid-area: 1/1/2/2;
}
.q-about-number .number__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: color-mix(in srgb, var(--color-dark) 50%, transparent);
}
.q-about-number .number__detail {
  grid-area: 1/1/2/2;
  position: relative;
  z-index: 10;
  padding-block-end: var(--space-block-md);
}
.q-about-number .slide {
  display: flex;
  overflow: hidden;
}
.q-about-number .slide__group {
  flex-shrink: 0;
  display: flex;
  animation-name: top-business-slide;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes top-business-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.q-about-number .slide__item {
  width: 566px;
}
@media (width <= 768px) {
  .q-about-number .slide__item {
    width: 402px;
  }
}
.q-about-number .slide__item img {
  width: 100%;
}
.q-about-number .heading {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.q-about-number .result {
  width: fit-content;
  margin-inline: auto;
}
.q-about-number .result__data {
  margin-block-end: var(--space-block-xs);
  text-align: center;
}
.q-about-number .result__title {
  font-family: var(--typography-std_jp_xxl_medium-font-family);
  font-weight: var(--typography-std_jp_xxl_medium-font-weight);
  font-size: var(--typography-std_jp_xxl_medium-font-size);
  line-height: var(--typography-std_jp_xxl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_medium-letter-spacing);
  line-height: 1;
}
.q-about-number .result__amount {
  font-family: var(--typography-dsp_en_xxxl_light-font-family);
  font-weight: var(--typography-dsp_en_xxxl_light-font-weight);
  font-size: var(--typography-dsp_en_xxxl_light-font-size);
  line-height: var(--typography-dsp_en_xxxl_light-line-height);
  --letter-spacing: var(--typography-dsp_en_xxxl_light-letter-spacing);
  line-height: 1;
  display: inline-block;
}
.q-about-number .result__unit {
  font-family: var(--typography-std_jp_xl_medium-font-family);
  font-weight: var(--typography-std_jp_xl_medium-font-weight);
  font-size: var(--typography-std_jp_xl_medium-font-size);
  line-height: var(--typography-std_jp_xl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xl_medium-letter-spacing);
  display: inline-block;
}
.q-about-number .result__date {
  font-family: var(--typography-std_jp_medium_tight-font-family);
  font-weight: var(--typography-std_jp_medium_tight-font-weight);
  font-size: var(--typography-std_jp_medium_tight-font-size);
  line-height: var(--typography-std_jp_medium_tight-line-height);
  --letter-spacing: var(--typography-std_jp_medium_tight-letter-spacing);
  text-align: right;
}
.q-about-number .data {
  container: q-data/inline-size;
  position: relative;
  isolation: isolate;
  padding: 40px 40px 50px;
  background-color: var(--color-light);
}
.q-about-number .data_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
@media (width <= 800px) {
  .q-about-number .data_wrapper {
    grid-template-columns: 1fr;
  }
}
@media (width <= 1120px) {
  .q-about-number .data {
    padding-inline: 20px;
  }
}
.q-about-number .data__title {
  margin-block-end: var(--space-block-sm);
  color: var(--color-primary);
  font-family: var(--typography-std_jp_xxl_medium-font-family);
  font-weight: var(--typography-std_jp_xxl_medium-font-weight);
  font-size: var(--typography-std_jp_xxl_medium-font-size);
  line-height: var(--typography-std_jp_xxl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_medium-letter-spacing);
}
@media (width <= 1120px) {
  .q-about-number .data__title {
    font-size: clamp(1.5rem, 11.25cqi, 2.25rem);
  }
}
.q-about-number .data__icon {
  position: absolute;
  z-index: -10;
  top: 40px;
  right: 40px;
}
@media (width <= 1120px) {
  .q-about-number .data__icon {
    width: clamp(60px, 28.125cqi, 90px);
    top: 20px;
    right: 20px;
  }
}
.q-about-number .data__result {
  font-family: var(--typography-std_jp_xl_medium-font-family);
  font-weight: var(--typography-std_jp_xl_medium-font-weight);
  font-size: var(--typography-std_jp_xl_medium-font-size);
  line-height: var(--typography-std_jp_xl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xl_medium-letter-spacing);
}
.q-about-number .data__amount {
  font-family: var(--typography-dsp_en_xxxl_light-font-family);
  font-weight: var(--typography-dsp_en_xxxl_light-font-weight);
  font-size: var(--typography-dsp_en_xxxl_light-font-size);
  line-height: var(--typography-dsp_en_xxxl_light-line-height);
  --letter-spacing: var(--typography-dsp_en_xxxl_light-letter-spacing);
  line-height: 1;
}
@media (width <= 1120px) {
  .q-about-number .data__amount {
    font-size: clamp(3rem, 22.5cqi, 4.5rem);
  }
}

.q-business-group .group {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 50%;
  align-items: center;
  gap: var(--space-block-md) 40px;
  padding-block: var(--space-block-sm) var(--space-block-md);
}
@media (width <= 1120px) {
  .q-business-group .group {
    column-gap: 20px;
  }
}
@media (width <= 768px) {
  .q-business-group .group {
    grid-template-columns: 1fr;
    padding-block-end: var(--space-block-md);
  }
}
.q-business-group .group:last-child {
  padding-block-end: 0;
}
.q-business-group .group::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, var(--color-dark) 40px, color-mix(in srgb, var(--color-border2) 50%, transparent) 40px);
}
.q-business-group .group__image {
  position: relative;
}
@media (width <= 768px) {
  .q-business-group .group__image {
    max-width: 560px;
    margin-inline: auto;
  }
}
.q-business-group .group__pic img {
  width: 100%;
}
.q-business-group .group__copy {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-family: var(--typography-std_en_xxl_medium-font-family);
  font-weight: var(--typography-std_en_xxl_medium-font-weight);
  font-size: var(--typography-std_en_xxl_medium-font-size);
  line-height: var(--typography-std_en_xxl_medium-line-height);
  --letter-spacing: var(--typography-std_en_xxl_medium-letter-spacing);
  text-align: right;
  color: var(--color-light);
  mix-blend-mode: difference;
}

.q-company-message {
  --l-column-head-width-override: 330px;
}
.q-company-message .message:not(:last-child) {
  margin-block-end: var(--space-block-sm);
  border-block-end: 1px solid var(--color-border2);
  padding-block-end: var(--space-block-md-trim);
}
@media (width <= 1120px) {
  .q-company-message .message:first-child {
    border-block-start: 1px solid var(--color-border2);
    padding-block-start: var(--space-block-md-trim);
  }
}
.q-company-message .title {
  margin-block-end: var(--space-block-sm);
  font-family: var(--typography-std_jp_xl_medium-font-family);
  font-weight: var(--typography-std_jp_xl_medium-font-weight);
  font-size: var(--typography-std_jp_xl_medium-font-size);
  line-height: var(--typography-std_jp_xl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xl_medium-letter-spacing);
}
.q-company-message .signature {
  margin-block-start: var(--space-block-md-trim);
  font-family: var(--typography-std_jp_medium_tight-font-family);
  font-weight: var(--typography-std_jp_medium_tight-font-weight);
  font-size: var(--typography-std_jp_medium_tight-font-size);
  line-height: var(--typography-std_jp_medium_tight-line-height);
  --letter-spacing: var(--typography-std_jp_medium_tight-letter-spacing);
  text-align: right;
}
.q-company-message .signature__name {
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
}
.q-company-message .mv {
  position: relative;
  height: 520px;
}
@media (width <= 1120px) {
  .q-company-message .mv {
    height: 400px;
  }
}
@media (width <= 768px) {
  .q-company-message .mv {
    height: 300px;
  }
}
@media (width <= 560px) {
  .q-company-message .mv {
    height: 220px;
  }
}
.q-company-message .mv img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.q-company-philosophy .philosophy {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  column-gap: 40px;
  row-gap: var(--space-block-sm);
  border: 1px solid var(--color-border2);
  padding: 38px 40px;
  background-color: var(--color-light);
}
.q-company-philosophy .philosophy_wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: var(--space-block-xs);
}
@media (width <= 1120px) {
  .q-company-philosophy .philosophy_wrapper {
    grid-template-columns: 1fr;
  }
}
@media (width <= 1120px) {
  .q-company-philosophy .philosophy {
    grid-column: span 1;
    padding-inline: 38px;
  }
}
.q-company-philosophy .title {
  position: relative;
  padding-inline-start: 20px;
  font-family: var(--typography-std_jp_xl_medium-font-family);
  font-weight: var(--typography-std_jp_xl_medium-font-weight);
  font-size: var(--typography-std_jp_xl_medium-font-size);
  line-height: var(--typography-std_jp_xl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xl_medium-letter-spacing);
}
@media (width <= 1120px) {
  .q-company-philosophy .title {
    margin-inline-end: -10px;
  }
}
.q-company-philosophy .title::before {
  content: "";
  position: absolute;
  width: 10px;
  aspect-ratio: 1/1;
  top: 0.5lh;
  translate: 0 -45%;
  left: 0;
  border-radius: 9999px;
  background-color: var(--color-primary);
}

.q-company-outline {
  --l-column-head-width-override: 330px;
}
.q-company-outline .table {
  width: 100%;
  font-family: var(--typography-std_jp_medium_tight-font-family);
  font-weight: var(--typography-std_jp_medium_tight-font-weight);
  font-size: var(--typography-std_jp_medium_tight-font-size);
  line-height: var(--typography-std_jp_medium_tight-line-height);
  --letter-spacing: var(--typography-std_jp_medium_tight-letter-spacing);
}
.q-company-outline .table :is(th,td) {
  border-block: 1px solid;
  padding-block: calc(var(--space-block-sm) - 2px) calc(var(--space-block-sm) - 1px);
}
.q-company-outline .table tr:first-child :is(th,td) {
  border-block-start: 0;
  padding-block-start: 0;
}
.q-company-outline .table th {
  width: 160px;
  padding-inline-end: 10px;
  border-color: var(--color-dark);
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
}
.q-company-outline .table td {
  padding-inline-start: 40px;
  border-color: color-mix(in srgb, var(--color-border2) 50%, transparent);
}
@media (width <= 768px) {
  .q-company-outline .table {
    position: relative;
  }
  .q-company-outline .table, .q-company-outline .table tbody, .q-company-outline .table tr, .q-company-outline .table th, .q-company-outline .table td {
    display: block;
    border: 0;
    padding: 0;
  }
  .q-company-outline .table::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, var(--color-dark) 140px, color-mix(in srgb, var(--color-border2) 50%, transparent) 140px);
  }
  .q-company-outline .table tr {
    position: relative;
    padding-block: var(--space-block-sm);
  }
  .q-company-outline .table tr::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, var(--color-dark) 140px, color-mix(in srgb, var(--color-border2) 50%, transparent) 140px);
  }
}

.q-company-history .history {
  --q-outline-space: 88px;
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  align-items: baseline;
  column-gap: var(--q-outline-space);
  padding-block-end: calc(var(--space-block-md-trim) - 2px);
}
@media (width <= 768px) {
  .q-company-history .history {
    --q-outline-space: 30px;
  }
}
.q-company-history .history_wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  font-family: var(--typography-std_jp_medium_tight-font-family);
  font-weight: var(--typography-std_jp_medium_tight-font-weight);
  font-size: var(--typography-std_jp_medium_tight-font-size);
  line-height: var(--typography-std_jp_medium_tight-line-height);
  --letter-spacing: var(--typography-std_jp_medium_tight-letter-spacing);
  overflow: hidden;
}
.q-company-history .history:last-child {
  padding-block-end: var(--space-block-lg);
}
.q-company-history .history__title {
  position: relative;
  color: var(--color-primary);
  font-family: var(--typography-std_en_large_bold-font-family);
  font-weight: var(--typography-std_en_large_bold-font-weight);
  font-size: var(--typography-std_en_large_bold-font-size);
  line-height: var(--typography-std_en_large_bold-line-height);
  --letter-spacing: var(--typography-std_en_large_bold-letter-spacing);
}
.q-company-history .history__title::before {
  content: "";
  position: absolute;
  top: 0.5lh;
  right: calc(var(--q-outline-space) / -2);
  width: 1px;
  height: 10000px;
  background-color: var(--color-light);
}
.q-company-history .history__title::after {
  content: "";
  position: absolute;
  top: 0.5lh;
  right: calc(var(--q-outline-space) / -2);
  width: 10px;
  aspect-ratio: 1/1;
  translate: 50% 0;
  border-radius: 9999px;
  background-color: var(--color-primary);
}

.q-contact-thanks .thanks {
  color: var(--color-primary);
  font-family: var(--typography-dsp_en_xxxl_light-font-family);
  font-weight: var(--typography-dsp_en_xxxl_light-font-weight);
  font-size: var(--typography-dsp_en_xxxl_light-font-size);
  line-height: var(--typography-dsp_en_xxxl_light-line-height);
  --letter-spacing: var(--typography-dsp_en_xxxl_light-letter-spacing);
}
@media (width <= 560px) {
  .q-contact-thanks .thanks {
    font-size: clamp(3.125rem,calc(var(--vw) * 12.8571428571),4.5rem);
    text-align: center;
  }
}
.q-contact-thanks .title {
  margin-block-end: var(--space-block-md);
  font-family: var(--typography-std_jp_xxl_medium-font-family);
  font-weight: var(--typography-std_jp_xxl_medium-font-weight);
  font-size: var(--typography-std_jp_xxl_medium-font-size);
  line-height: var(--typography-std_jp_xxl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_medium-letter-spacing);
}
@media (width <= 560px) {
  .q-contact-thanks .title {
    font-size: clamp(1.5rem,calc(var(--vw) * 6.4285714286),2.25rem);
    text-align: center;
  }
}
.q-contact-thanks .text {
  border: 1px solid var(--color-border3);
  padding: 16px 20px;
}
.q-contact-thanks .c-button {
  width: 263px;
  text-align: center;
}

.q-news-detail .head {
  margin-block-end: var(--space-block-lg);
}
.q-news-detail .heading {
  margin-block-end: var(--space-block-sm);
  font-family: var(--typography-std_jp_xxl_medium-font-family);
  font-weight: var(--typography-std_jp_xxl_medium-font-weight);
  font-size: var(--typography-std_jp_xxl_medium-font-size);
  line-height: var(--typography-std_jp_xxl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_medium-letter-spacing);
}
.q-news-detail .info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px;
  margin-block-end: var(--space-block-sm);
}
.q-news-detail .info__date {
  font-family: var(--typography-std_en_xs_bold-font-family);
  font-weight: var(--typography-std_en_xs_bold-font-weight);
  font-size: var(--typography-std_en_xs_bold-font-size);
  line-height: var(--typography-std_en_xs_bold-line-height);
  --letter-spacing: var(--typography-std_en_xs_bold-letter-spacing);
  width: max-content;
}
.q-news-detail .info__category {
  display: flex;
  row-gap: 4px;
  flex-wrap: wrap;
}
.q-news-detail .info__category p {
  padding-inline-start: 6px;
  margin-inline-start: 6px;
  border-inline-start: 1px solid var(--color-base);
  font-family: var(--typography-std_jp_small_regular-font-family);
  font-weight: var(--typography-std_jp_small_regular-font-weight);
  font-size: var(--typography-std_jp_small_regular-font-size);
  line-height: var(--typography-std_jp_small_regular-line-height);
  --letter-spacing: var(--typography-std_jp_small_regular-letter-spacing);
}

.q-privacy .privacy_wrapper {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-block-md);
}
.q-privacy .privacy__title {
  margin-block-end: var(--space-block-sm);
  font-family: var(--typography-std_jp_xl_medium-font-family);
  font-weight: var(--typography-std_jp_xl_medium-font-weight);
  font-size: var(--typography-std_jp_xl_medium-font-size);
  line-height: var(--typography-std_jp_xl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xl_medium-letter-spacing);
}
.q-privacy .privacy__desc > :not(:last-child) {
  margin-block-end: var(--space-block-sm);
}
.q-privacy .signature {
  margin-block-start: var(--space-block-md);
  text-align: right;
}

.q-recruit-mission {
  --q-bg-top: 156px;
  position: relative;
}
.q-recruit-mission .p-pagetitle {
  background-color: transparent;
}
.q-recruit-mission .p-pagetitle::before {
  content: none;
}
.q-recruit-mission .c-bread {
  margin-block-end: var(--space-block-lg);
  padding-block-start: var(--space-block-sm);
  color: var(--color-light);
}
.q-recruit-mission::after {
  content: "";
  position: absolute;
  z-index: -10;
  inset: var(--q-bg-top) 0 0;
  background-color: color-mix(in srgb, var(--color-dark) 50%, transparent);
}
.q-recruit-mission .bg img {
  position: absolute;
  z-index: -20;
  top: var(--q-bg-top);
  left: 0;
  width: 100%;
  height: calc(100% - var(--q-bg-top));
  object-fit: cover;
}
.q-recruit-mission .content {
  max-width: 480px;
  margin-inline: auto;
  color: var(--color-light);
}
.q-recruit-mission .heading {
  justify-content: center;
  align-items: center;
  color: var(--color-light);
}

.q-recruit-value .value {
  position: sticky;
  top: calc(var(--header-size) - 28px);
  padding-block: var(--space-block-lg);
  background-color: var(--color-light);
}
@media (width <= 768px) {
  .q-recruit-value .value_wrapper {
    margin-inline: var(--space-inline-negative);
  }
}
@media (width <= 900px) {
  .q-recruit-value .value {
    position: static;
  }
}
.q-recruit-value .value:nth-child(even) {
  background-color: var(--color-bg-ash);
}
.q-recruit-value .value__inner {
  display: grid;
  grid-template-columns: 1fr 470px;
  column-gap: 50px;
}
@media (width <= 1120px) {
  .q-recruit-value .value__inner {
    column-gap: 25px;
  }
}
@media (width <= 900px) {
  .q-recruit-value .value__inner {
    grid-template-columns: 1fr;
    row-gap: var(--space-block-sm);
  }
}
.q-recruit-value .value__image {
  grid-area: 1/1/2/2;
}
@media (width <= 900px) {
  .q-recruit-value .value__image {
    max-width: 325px;
    margin-inline: auto;
  }
}
.q-recruit-value .value__image img {
  width: 1000px;
}
.q-recruit-value .value__detail {
  display: flex;
  flex-direction: column;
}
.q-recruit-value .value__index {
  order: -10;
}
.q-recruit-value .value__title {
  margin-block-end: var(--space-block-md);
  font-family: var(--typography-std_jp_xl_medium-font-family);
  font-weight: var(--typography-std_jp_xl_medium-font-weight);
  font-size: var(--typography-std_jp_xl_medium-font-size);
  line-height: var(--typography-std_jp_xl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xl_medium-letter-spacing);
}
.q-recruit-value .index {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-block-end: var(--space-block-lg);
  color: var(--color-primary);
  font-family: var(--typography-std_en_xs_medium-font-family);
  font-weight: var(--typography-std_en_xs_medium-font-weight);
  font-size: var(--typography-std_en_xs_medium-font-size);
  line-height: var(--typography-std_en_xs_medium-line-height);
  --letter-spacing: var(--typography-std_en_xs_medium-letter-spacing);
}
@media (width <= 1120px) {
  .q-recruit-value .index {
    margin-block-end: var(--space-block-sm);
  }
}
.q-recruit-value .index__number {
  display: grid;
  place-content: center;
  width: 40px;
  aspect-ratio: 1/1;
  border: 1px solid;
  border-radius: 9999px;
  background-color: var(--color-light);
}

.q-recruit-staff {
  --l-column-head-width-override: auto;
  --l-column-columnGap-override: 100px;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-ash);
}
.q-recruit-staff::before {
  content: "";
  position: absolute;
  z-index: -10;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--space-block-md);
  background-color: var(--color-bg-ash-dark);
}
.q-recruit-staff .copy {
  order: -10;
  position: relative;
  z-index: 10;
  margin-block-end: -0.5lh;
  color: var(--color-light);
  font-family: var(--typography-std_en_xxl_medium-font-family);
  font-weight: var(--typography-std_en_xxl_medium-font-weight);
  font-size: var(--typography-std_en_xxl_medium-font-size);
  line-height: var(--typography-std_en_xxl_medium-line-height);
  --letter-spacing: var(--typography-std_en_xxl_medium-letter-spacing);
  mix-blend-mode: difference;
  text-align: center;
}
@media (width <= 768px) {
  .q-recruit-staff .copy {
    margin-block-end: -1.5lh;
  }
}
.q-recruit-staff .image {
  position: relative;
  height: 580px;
  margin-block-end: var(--space-block-md);
}
@media (width <= 1120px) {
  .q-recruit-staff .image {
    height: 400px;
  }
}
@media (width <= 768px) {
  .q-recruit-staff .image {
    height: 340px;
  }
}
.q-recruit-staff .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.q-recruit-staff .button {
  margin-block-start: var(--space-block-sm-trim);
}

.q-recruit-job {
  --q-columnGap: 80px;
  --q-rowGap: var(--space-block-md);
  --l-column-head-width-override: 406px;
  --l-column-columnGap-override: var(--q-columnGap);
  --l-column-rowGap-override: var(--q-rowGap);
}
.q-recruit-job .job {
  display: flex;
  flex-direction: column;
}
.q-recruit-job .job_wrapper {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-block-lg);
}
.q-recruit-job .job__image {
  order: -10;
  position: relative;
  margin-block-end: var(--space-block-sm);
}
.q-recruit-job .job__image img {
  width: 100%;
}
.q-recruit-job .job__copy {
  position: absolute;
  bottom: 0;
  right: 0;
  color: var(--color-light);
  font-family: var(--typography-std_en_xxl_medium-font-family);
  font-weight: var(--typography-std_en_xxl_medium-font-weight);
  font-size: var(--typography-std_en_xxl_medium-font-size);
  line-height: var(--typography-std_en_xxl_medium-line-height);
  --letter-spacing: var(--typography-std_en_xxl_medium-letter-spacing);
  mix-blend-mode: difference;
}
.q-recruit-job .job__heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 10px;
  margin-block-end: var(--space-block-sm);
  font-family: var(--typography-std_jp_xl_medium-font-family);
  font-weight: var(--typography-std_jp_xl_medium-font-weight);
  font-size: var(--typography-std_jp_xl_medium-font-size);
  line-height: var(--typography-std_jp_xl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xl_medium-letter-spacing);
}
.q-recruit-job .job__heading::before {
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background-color: var(--color-primary);
  translate: 0 -40%;
}
.q-recruit-job .job__head:not(:root) {
  position: relative;
}
.q-recruit-job .job__head::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(var(--q-columnGap) * -0.5);
  height: 100%;
  width: 1px;
  background-color: var(--color-border3);
}
@media (width <= 1120px) {
  .q-recruit-job .job__head::before {
    top: auto;
    bottom: calc(var(--q-rowGap) * -0.5);
    right: auto;
    left: 0;
    width: 100%;
    height: 1px;
  }
}
.q-recruit-job .description {
  font-family: var(--typography-std_jp_medium_tight-font-family);
  font-weight: var(--typography-std_jp_medium_tight-font-weight);
  font-size: var(--typography-std_jp_medium_tight-font-size);
  line-height: var(--typography-std_jp_medium_tight-line-height);
  --letter-spacing: var(--typography-std_jp_medium_tight-letter-spacing);
}
.q-recruit-job .description__heading {
  color: var(--color-primary);
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
}
.q-recruit-job .description__heading:not(:last-child) {
  margin-block-end: var(--space-block-xs);
}
.q-recruit-job .description__list {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-block-xs);
}
.q-recruit-job .suited {
  margin-block-start: var(--space-block-sm);
  font-family: var(--typography-std_jp_medium_tight-font-family);
  font-weight: var(--typography-std_jp_medium_tight-font-weight);
  font-size: var(--typography-std_jp_medium_tight-font-size);
  line-height: var(--typography-std_jp_medium_tight-line-height);
  --letter-spacing: var(--typography-std_jp_medium_tight-letter-spacing);
}
.q-recruit-job .suited__heading {
  position: relative;
  z-index: 10;
  margin-block-end: var(--space-block-sm-negative);
  padding-inline-start: 20px;
}
.q-recruit-job .suited__body {
  padding: 30px 20px 20px;
  background-color: color-mix(in srgb, var(--color-bg-ash) 50%, transparent);
}

.q-recruitment .table {
  width: 100%;
  font-family: var(--typography-std_jp_medium_tight-font-family);
  font-weight: var(--typography-std_jp_medium_tight-font-weight);
  font-size: var(--typography-std_jp_medium_tight-font-size);
  line-height: var(--typography-std_jp_medium_tight-line-height);
  --letter-spacing: var(--typography-std_jp_medium_tight-letter-spacing);
}
.q-recruitment .table :is(th,td) {
  padding-block: calc(var(--space-block-sm) - 2px) calc(var(--space-block-sm) - 2px);
  padding-inline: 20px;
  border: 1px solid var(--color-border3);
}
.q-recruitment .table th {
  width: 240px;
  color: var(--color-light);
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
  background-color: var(--color-bg-ash-dark);
}
@media (width <= 1120px) {
  .q-recruitment .table th {
    width: 160px;
  }
}
.q-recruitment .table p:not(:last-child) {
  margin-block-end: var(--space-block-sm);
}
@media (width <= 768px) {
  .q-recruitment .table, .q-recruitment .table tbody, .q-recruitment .table tr, .q-recruitment .table th, .q-recruitment .table td {
    display: block;
    width: auto;
    border: 0;
  }
  .q-recruitment .table:not(:root) {
    border: 1px solid var(--color-border3);
  }
  .q-recruitment .table th {
    border-block-end: 1px solid var(--color-border3);
  }
}

.q-recruitment-flow {
  position: relative;
  isolation: isolate;
}
.q-recruitment-flow::before {
  content: "";
  position: absolute;
  z-index: -10;
  inset-inline: 0;
  bottom: 0;
  height: 217px;
  background-color: var(--color-light);
}
@media (width <= 768px) {
  .q-recruitment-flow::before {
    height: 122px;
  }
}
.q-recruitment-flow .flow {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 20px;
  padding-block-end: var(--space-block-md);
  overflow: hidden;
}
.q-recruitment-flow .flow_wrapper {
  font-family: var(--typography-std_jp_medium_tight-font-family);
  font-weight: var(--typography-std_jp_medium_tight-font-weight);
  font-size: var(--typography-std_jp_medium_tight-font-size);
  line-height: var(--typography-std_jp_medium_tight-line-height);
  --letter-spacing: var(--typography-std_jp_medium_tight-letter-spacing);
}
.q-recruitment-flow .flow::before {
  position: absolute;
  z-index: -10;
  content: "";
  left: 29px;
  top: 2px;
  width: 2px;
  height: 100%;
  background-image: radial-gradient(circle, var(--color-light) 1px, transparent 1px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 2px 6px;
}
.q-recruitment-flow .flow:last-child {
  padding-block-end: var(--space-block-lg);
}
.q-recruitment-flow .flow:last-child::before {
  content: none;
}
.q-recruitment-flow .flow__index {
  grid-area: 1/1/3/2;
  display: grid;
  place-content: center;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  color: var(--color-light);
  font-family: var(--typography-std_en_xs_medium-font-family);
  font-weight: var(--typography-std_en_xs_medium-font-weight);
  font-size: var(--typography-std_en_xs_medium-font-size);
  line-height: var(--typography-std_en_xs_medium-line-height);
  --letter-spacing: var(--typography-std_en_xs_medium-letter-spacing);
  background-color: var(--color-primary);
}
.q-recruitment-flow .flow__title {
  padding-block-start: var(--space-block-xs);
  margin-block-end: var(--space-block-xs);
  font-family: var(--typography-std_jp_xl_medium-font-family);
  font-weight: var(--typography-std_jp_xl_medium-font-weight);
  font-size: var(--typography-std_jp_xl_medium-font-size);
  line-height: var(--typography-std_jp_xl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xl_medium-letter-spacing);
}
.q-recruitment-flow .entry {
  position: relative;
}
@media (width <= 768px) {
  .q-recruitment-flow .entry {
    margin-inline: -20px;
  }
}
.q-recruitment-flow .entry__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 237px;
  padding: 20px;
  color: var(--color-light);
  text-align: center;
  background-color: var(--color-bg-primary);
  transition-property: background-color;
  transition-duration: var(--sec);
}
@media (width <= 768px) {
  .q-recruitment-flow .entry__button {
    min-height: 140px;
    align-items: start;
  }
}
.q-recruitment-flow .entry__button:focus-visible {
  background-color: var(--color-primary);
}
@media (hover: hover) and (pointer: fine) {
  .q-recruitment-flow .entry__button:hover {
    background-color: var(--color-primary);
  }
}
.q-recruitment-flow .entry__sub {
  order: -10;
  font-family: var(--typography-std_en_xxl_medium-font-family);
  font-weight: var(--typography-std_en_xxl_medium-font-weight);
  font-size: var(--typography-std_en_xxl_medium-font-size);
  line-height: var(--typography-std_en_xxl_medium-line-height);
  --letter-spacing: var(--typography-std_en_xxl_medium-letter-spacing);
}
.q-recruitment-flow .entry__title {
  font-family: var(--typography-std_jp_small_bold-font-family);
  font-weight: var(--typography-std_jp_small_bold-font-weight);
  font-size: var(--typography-std_jp_small_bold-font-size);
  line-height: var(--typography-std_jp_small_bold-line-height);
  --letter-spacing: var(--typography-std_jp_small_bold-letter-spacing);
}
.q-recruitment-flow .entry__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
}

.q-staff {
  position: relative;
}
.q-staff::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: var(--color-bg-ash);
}
.q-staff .staff {
  position: relative;
  isolation: isolate;
  padding-block-end: var(--space-block-lg);
  font-family: var(--typography-std_jp_medium_tight-font-family);
  font-weight: var(--typography-std_jp_medium_tight-font-weight);
  font-size: var(--typography-std_jp_medium_tight-font-size);
  line-height: var(--typography-std_jp_medium_tight-line-height);
  --letter-spacing: var(--typography-std_jp_medium_tight-letter-spacing);
}
.q-staff .staff:not(:first-child)::before {
  content: "";
  position: absolute;
  z-index: -10;
  top: 0;
  inset-inline: 0;
  height: var(--space-block-lg);
  background-color: var(--q-staff-bgColor, var(--color-light));
}
.q-staff .staff:nth-child(odd)::before {
  --q-staff-bgColor: var(--color-bg-ash);
}
.q-staff .staff:nth-child(even) {
  background-color: var(--color-bg-ash);
}
.q-staff .staff__inner {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.q-staff .staff__image {
  order: -10;
}
@media (width <= 768px) {
  .q-staff .staff__image {
    position: relative;
    height: 250px;
    overflow: hidden;
  }
}
.q-staff .staff__image img {
  width: 100%;
}
@media (width <= 768px) {
  .q-staff .staff__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.q-staff .staff__detail {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: start;
  column-gap: 40px;
}
@media (width <= 1120px) {
  .q-staff .staff__detail {
    column-gap: 20px;
  }
}
@media (width <= 1000px) {
  .q-staff .staff__detail {
    grid-template-columns: 1fr;
    row-gap: var(--space-block-sm);
  }
}
.q-staff .staff__head {
  padding: 20px;
  color: var(--color-light);
  background-color: var(--color-bg-ash-dark);
}
@media (width <= 1000px) {
  .q-staff .staff__head {
    width: fit-content;
    margin-inline-start: var(--space-inline-negative);
  }
}
@media (width <= 1000px) and (768px < width) {
  .q-staff .staff__head {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    column-gap: 20px;
  }
  .q-staff .staff__head .staff__name {
    margin-block-end: 0;
  }
  .q-staff .staff__head .staff__data {
    padding-block-start: 5px;
  }
}
.q-staff .staff__name {
  margin-block-end: var(--space-block-xs);
  font-family: var(--typography-std_jp_xxl_medium-font-family);
  font-weight: var(--typography-std_jp_xxl_medium-font-weight);
  font-size: var(--typography-std_jp_xxl_medium-font-size);
  line-height: var(--typography-std_jp_xxl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_medium-letter-spacing);
}
.q-staff .staff__button {
  display: flex;
  justify-content: end;
}
.q-staff .staff__button .c-button {
  width: 256px;
  margin-block-start: 0;
  margin-inline: 0;
  text-align: center;
}
.q-staff .interview {
  border-block-end: 1px solid var(--color-border2);
  padding-block-end: var(--space-block-md);
}
.q-staff .interview:not(:last-child) {
  margin-block-end: var(--space-block-md);
}
.q-staff .interview__index {
  width: fit-content;
  margin-block-end: var(--space-block-xs);
  border-radius: 9999px;
  padding-block: 1px;
  padding-inline: 23px;
  color: var(--color-light);
  font-family: var(--typography-std_en_xs_medium-font-family);
  font-weight: var(--typography-std_en_xs_medium-font-weight);
  font-size: var(--typography-std_en_xs_medium-font-size);
  line-height: var(--typography-std_en_xs_medium-line-height);
  --letter-spacing: var(--typography-std_en_xs_medium-letter-spacing);
  background-color: var(--color-primary);
}
.q-staff .interview__question {
  margin-block-end: var(--space-block-xs);
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
}

.q-mv {
  margin-block-start: 196px;
}
@media (width <= 768px) {
  .q-mv {
    margin-block-start: 122px;
  }
}
.q-mv .mv__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--space-block-sm);
}
@media (width <= 768px) {
  .q-mv .mv__head {
    flex-direction: column-reverse;
    gap: var(--space-block-md);
  }
}
.q-mv .mv__title {
  font-family: var(--ff-serif);
  font-size: clamp(80px,9.2vw,132px);
  letter-spacing: 0.05em;
  mix-blend-mode: difference;
  line-height: 1;
  color: var(--color-light);
}
@media (width <= 768px) {
  .q-mv .mv__title {
    font-size: clamp(70px,20vw,80px);
  }
}
.q-mv .mv__sub {
  font-family: var(--typography-std_en_xs_medium-font-family);
  font-weight: var(--typography-std_en_xs_medium-font-weight);
  font-size: var(--typography-std_en_xs_medium-font-size);
  line-height: var(--typography-std_en_xs_medium-line-height);
  --letter-spacing: var(--typography-std_en_xs_medium-letter-spacing);
}
.q-mv .mv__body {
  margin-block-start: 20px;
  margin-inline: calc(-1 * var(--l-section-space-inline));
  overflow: hidden;
  display: flex;
  aspect-ratio: 1000/500;
}
@media (width <= 768px) {
  .q-mv .mv__body {
    aspect-ratio: 375/300;
  }
}
@media (width <= 560px) {
  .q-mv .mv__body {
    aspect-ratio: 375/410;
  }
}
.q-mv .mv__movie {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.q-top-business .column {
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: var(--space-block-md) var(--space-block-lg);
  align-items: flex-start;
}
@media (width <= 768px) {
  .q-top-business .column {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.q-top-business .column__head {
  margin-block-start: -200px;
}
@media (width <= 768px) {
  .q-top-business .column__head {
    margin-block-start: -40px;
    width: 240px;
  }
}
.q-top-business .column__head img {
  width: 100%;
}
.q-top-business .column__body {
  margin-block-start: var(--space-block-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-block-sm) var(--space-block-md);
}
@media (width <= 768px) {
  .q-top-business .column__body {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-block-start: 0;
  }
}
.q-top-business .column__en {
  font-family: var(--typography-std_en_xs_medium-font-family);
  font-weight: var(--typography-std_en_xs_medium-font-weight);
  font-size: var(--typography-std_en_xs_medium-font-size);
  line-height: var(--typography-std_en_xs_medium-line-height);
  --letter-spacing: var(--typography-std_en_xs_medium-letter-spacing);
  color: var(--color-primary);
  margin-block-start: var(--space-block-xs);
}
.q-top-business .column__title {
  margin-block-end: var(--space-block-md);
  font-family: var(--typography-std_jp_xl_medium-font-family);
  font-weight: var(--typography-std_jp_xl_medium-font-weight);
  font-size: var(--typography-std_jp_xl_medium-font-size);
  line-height: var(--typography-std_jp_xl_medium-line-height);
  --letter-spacing: var(--typography-std_jp_xl_medium-letter-spacing);
}

.q-top-works .works__image {
  max-height: 450px;
  overflow: hidden;
}
.q-top-works .works__image img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.q-top-company {
  position: relative;
  overflow: hidden;
}
.q-top-company::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 175px;
  top: 0;
  left: 0;
  background-color: var(--color-bg-ash-dark);
  z-index: -1;
}
.q-top-company .company__image {
  position: relative;
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (width <= 768px) {
  .q-top-company .company__image {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-inline: calc(-1 * var(--space-block-sm));
  }
}
.q-top-company .company__image .image:first-child, .q-top-company .company__image .image:nth-child(3) {
  margin-block-start: var(--space-block-md);
}
.q-top-company .company__image img {
  width: 100%;
}
.q-top-company .company__slide {
  position: absolute;
  bottom: -4px;
  left: 0;
  font-family: var(--typography-dsp_en_xxxl_light-font-family);
  font-weight: var(--typography-dsp_en_xxxl_light-font-weight);
  font-size: var(--typography-dsp_en_xxxl_light-font-size);
  line-height: var(--typography-dsp_en_xxxl_light-line-height);
  --letter-spacing: var(--typography-dsp_en_xxxl_light-letter-spacing);
  color: var(--color-light);
  mix-blend-mode: difference;
  font-weight: 300;
}
.q-top-company .company__slide .slick-list {
  overflow: visible;
}
.q-top-company .column {
  display: grid;
  grid-template-columns: auto auto;
  align-items: flex-start;
  gap: 0 50px;
}
@media (width <= 768px) {
  .q-top-company .column {
    grid-template-columns: 1fr;
  }
}
.q-top-company .column__body {
  margin-block-start: var(--space-block-sm);
}
@media (width <= 768px) {
  .q-top-company .column__body {
    margin-block-start: 0;
  }
}
.q-top-company .column__body .title {
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
  margin-block-end: var(--space-block-sm);
}

.q-top-news .column {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: min-content min-content;
  justify-content: space-between;
  align-items: start;
  gap: 0 var(--space-block-sm);
}
@media (width <= 800px) {
  .q-top-news .column {
    grid-template-columns: 1fr;
  }
}
.q-top-news .column__body {
  grid-area: 1/2/6/3;
}
@media (width <= 800px) {
  .q-top-news .column__body {
    grid-area: auto;
  }
}
@media (800px <= width) {
  .q-top-news .column__foot .c-button {
    margin-block-start: 0;
  }
}

.q-top-instagram .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-block-sm);
  align-items: flex-start;
}
@media (width <= 800px) {
  .q-top-instagram .content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 560px) {
  .q-top-instagram .content {
    grid-template-columns: 1fr;
  }
}
.q-top-instagram .content__item {
  border: 1px solid #dbdbdb;
  border-radius: 3px;
}
.q-top-instagram .content__item iframe, .q-top-instagram .content__item blockquote {
  overflow: hidden;
  border: none !important;
  min-width: auto !important;
}
.q-top-instagram .content__item iframe {
  width: 100% !important;
}

.q-works .works {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.q-works .works_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-block-md) 20px;
}
@media (width <= 1120px) {
  .q-works .works_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 768px) {
  .q-works .works_wrapper {
    grid-template-columns: 1fr;
  }
}
.q-works .works__image {
  order: -10;
  position: relative;
}
.q-works .works__pic {
  position: relative;
  aspect-ratio: 360/204;
}
.q-works .works__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.q-works .works__icon {
  position: absolute;
  z-index: 10;
  right: 20px;
  bottom: 20px;
  display: grid;
  place-content: center;
  width: 32px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background-color: var(--color-light);
}
.q-works .works__detail {
  display: flex;
  flex-direction: column;
}
.q-works .works__area {
  order: -10;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-block-end: var(--space-block-xs);
}
.q-works .works__area > li {
  border: 1px solid var(--color-border2);
  border-radius: 9999px;
  padding: 2px 12px 3px;
  font-family: var(--typography-std_jp_small_regular-font-family);
  font-weight: var(--typography-std_jp_small_regular-font-weight);
  font-size: var(--typography-std_jp_small_regular-font-size);
  line-height: var(--typography-std_jp_small_regular-line-height);
  --letter-spacing: var(--typography-std_jp_small_regular-letter-spacing);
  line-height: 1;
}
.q-works .works__title {
  margin-block-end: var(--space-block-xs);
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
}
.q-works .works__award {
  margin-block-start: var(--space-block-xs);
  border-block-start: 1px solid var(--color-border2);
  padding-block-start: var(--space-block-xs);
  font-family: var(--typography-std_jp_small_regular-font-family);
  font-weight: var(--typography-std_jp_small_regular-font-weight);
  font-size: var(--typography-std_jp_small_regular-font-size);
  line-height: var(--typography-std_jp_small_regular-line-height);
  --letter-spacing: var(--typography-std_jp_small_regular-letter-spacing);
}

