@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__narrow {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  background-clip: content-box;
}
.l-section__narrow: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._xxl {
  height: var(--space-block-xxl);
}
.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._mmd {
  height: var(--space-block-mmd);
}
.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._xxl-trim {
  height: var(--space-block-xxl-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._mmd-trim {
  height: var(--space-block-mmd-trim);
}
.l-spacer._sm-trim {
  height: var(--space-block-sm-trim);
}
.l-spacer._xs-trim {
  height: var(--space-block-xs-trim);
}

.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: grid;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  grid-template: "first prev pages next last" auto/40px 40px auto 40px 40px;
}
.wp-pagenavi__wrapper {
  margin-block-start: var(--space-block-lg);
}
.wp-pagenavi .pages {
  grid-area: pages;
  padding-inline: 10px;
}
.wp-pagenavi .first {
  grid-area: first;
}
.wp-pagenavi .previouspostslink {
  grid-area: prev;
}
.wp-pagenavi .nextpostslink {
  grid-area: next;
}
.wp-pagenavi .last {
  grid-area: last;
}
.wp-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .extend {
  display: none;
}
.wp-pagenavi .pages {
  display: inline-flex;
  column-gap: 2px;
  align-items: center;
  justify-content: center;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .first,
.wp-pagenavi .last {
  display: grid;
  place-content: center;
  width: 40px;
  aspect-ratio: 1/1;
  font-size: 0;
  color: transparent;
  text-decoration: none;
  background-color: var(--color-primary);
  background-repeat: no-repeat;
  background-position: center center;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  background-image: url("../img/cmn/wpnavi_arr.svg");
}
.wp-pagenavi .first,
.wp-pagenavi .last {
  background-image: url("../img/cmn/wpnavi_arr-more.svg");
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .first {
  scale: -1 1;
}

:where(.wp-block-post-content, .wp-gutenberg) {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-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: 60px;
}
:where(.wp-block-post-content, .wp-gutenberg) img {
  max-width: 860px;
  width: 100%;
  display: block;
  margin-inline: auto;
  margin-block-end: 60px;
}

.wp-block-heading {
  margin-bottom: 20px;
  font-weight: 700;
}

h2.wp-block-heading {
  font-family: var(--typography-text-lg-font-family);
  font-weight: var(--typography-text-lg-font-weight);
  font-size: var(--typography-text-lg-font-size);
  line-height: var(--typography-text-lg-line-height);
  --letter-spacing: var(--typography-text-lg-letter-spacing);
  margin-block-end: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 10px 10px 0;
  background-color: #444444;
}
@media (width <= 768px) {
  h2.wp-block-heading {
    gap: 12px;
  }
}
h2.wp-block-heading::before {
  content: "";
  width: 30px;
  height: 4px;
  display: block;
  border-radius: 0 3px 3px 3px;
  background-color: var(--color-light);
}
@media (width <= 768px) {
  h2.wp-block-heading::before {
    width: 20px;
  }
}

h3.wp-block-heading {
  font-family: var(--typography-text-xxmd-font-family);
  font-weight: var(--typography-text-xxmd-font-weight);
  font-size: var(--typography-text-xxmd-font-size);
  line-height: var(--typography-text-xxmd-line-height);
  --letter-spacing: var(--typography-text-xxmd-letter-spacing);
  padding-inline-start: 17px;
  min-height: 40px;
  border-left: 4px solid var(--color-primary);
  margin-block-end: 30px;
}
@media (width <= 768px) {
  h3.wp-block-heading {
    border-left: 2px solid var(--color-primary);
  }
}

h4.wp-block-heading {
  font-size: 1.125rem;
  border-bottom: 4px solid var(--color-primary);
}
@media (width <= 768px) {
  h4.wp-block-heading {
    border-bottom: 2px solid var(--color-primary);
  }
}

h5.wp-block-heading {
  font-size: 1.125rem;
}

h6.wp-block-heading {
  font-size: 1rem;
  padding: 8px;
  background-color: #444444;
}

: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: 90px;
  padding-inline: var(--space-block-xs);
}
@media (width <= 768px) {
  .c-bread {
    padding-block-start: 60px;
  }
}
.c-bread__list {
  word-break: break-all;
}
.c-bread__list a {
  position: relative;
  isolation: isolate;
  padding-inline-end: var(--space-block-xs);
  text-decoration: none;
  transition: var(--sec);
}
@media (width > 768px) {
  .c-bread__list a:hover {
    color: var(--color-primary);
  }
}
.c-bread__list a::before {
  content: "";
  position: absolute;
  inset: -10px -10px;
  z-index: -10;
}
.c-bread__list > li {
  font-family: var(--typography-text-sm-font-family);
  font-weight: var(--typography-text-sm-font-weight);
  font-size: var(--typography-text-sm-font-size);
  line-height: var(--typography-text-sm-line-height);
  --letter-spacing: var(--typography-text-sm-letter-spacing);
  display: inline;
}
.c-bread__list > li + li:before {
  /*	content: ">";*/
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--color-light);
  display: inline-block;
  margin-inline-end: var(--space-block-xs);
  transform: translateY(-4px);
}

.c-pagetitle__bg {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.84);
  position: relative;
  z-index: 1;
}
@media (width <= 768px) {
  .c-pagetitle__bg {
    height: 170px;
  }
}
.c-pagetitle__title {
  text-align: center;
  margin-block-start: -83px;
  position: relative;
  z-index: 2;
}
@media (width <= 768px) {
  .c-pagetitle__title {
    margin-block-start: -40px;
  }
}
.c-pagetitle__en-name {
  font-family: var(--typography-EN-text-xlg-font-family);
  font-weight: var(--typography-EN-text-xlg-font-weight);
  font-size: var(--typography-EN-text-xlg-font-size);
  line-height: var(--typography-EN-text-xlg-line-height);
  --letter-spacing: var(--typography-EN-text-xlg-letter-spacing);
}
.c-pagetitle__name {
  font-family: var(--typography-text-lg-font-family);
  font-weight: var(--typography-text-lg-font-weight);
  font-size: var(--typography-text-lg-font-size);
  line-height: var(--typography-text-lg-line-height);
  --letter-spacing: var(--typography-text-lg-letter-spacing);
  margin-block-start: -19px;
}
@media (width <= 768px) {
  .c-pagetitle__name {
    margin-block-end: -16px;
  }
}
.c-pagetitle._diff {
  background-image: url(../img/cmn/c-pagetitle_diff-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-block: 88px;
  padding-inline: var(--space-block-xs);
}
@media (width <= 768px) {
  .c-pagetitle._diff {
    padding-block: 56px 72px;
  }
}
.c-pagetitle._diff .c-pagetitle__title {
  text-align: center;
  margin-block-start: 0;
}
.c-pagetitle._diff .c-pagetitle__en-name {
  width: fit-content;
  font-size: 24px;
  line-height: 28px;
  padding-inline: 16px;
  border: 1px solid var(--color-light);
  margin: 0 auto;
}
@media (width <= 768px) {
  .c-pagetitle._diff .c-pagetitle__en-name {
    padding-inline: 26px;
  }
}
.c-pagetitle._diff .c-pagetitle__name {
  font-family: var(--typography-title-xxlg-font-family);
  font-weight: var(--typography-title-xxlg-font-weight);
  font-size: var(--typography-title-xxlg-font-size);
  line-height: var(--typography-title-xxlg-line-height);
  --letter-spacing: var(--typography-title-xxlg-letter-spacing);
  margin-block-start: 15px;
}
@media (width <= 768px) {
  .c-pagetitle._diff .c-pagetitle__name {
    margin-block-start: 5px;
  }
}

.animated-text-container {
  font-family: var(--typography-text-xxmd-font-family);
  font-weight: var(--typography-text-xxmd-font-weight);
  font-size: var(--typography-text-xxmd-font-size);
  line-height: var(--typography-text-xxmd-line-height);
  --letter-spacing: var(--typography-text-xxmd-letter-spacing);
  line-height: 2;
}
.animated-text-container .red-bg {
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: linear-gradient(to right, var(--color-primary), var(--color-primary));
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left center;
  padding: 5px 5px 4px 7px;
  transition: background-size 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (width <= 768px) {
  .animated-text-container .red-bg {
    padding: 2px 10px 1px 10px;
  }
}
.animated-text-container .text-reveal {
  color: transparent;
  background-image: linear-gradient(to right, #ffffff, #ffffff);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-size 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--sec);
}
.animated-text-container.is-animated .red-bg {
  background-size: 100% 100%;
}
.animated-text-container.is-animated .text-reveal {
  background-size: 100% 100%;
}

.c-anime_mv {
  width: fit-content;
  position: relative;
  overflow: hidden;
}
.c-anime_mv__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  background-color: var(--color-primary);
  z-index: 1;
  animation: mvWipe 1.2s ease-out forwards;
  animation-delay: 0;
}
.c-anime_mv__content {
  position: relative;
  z-index: 2;
  animation: mvOpacity 1.2s ease-out forwards;
  animation-delay: var(--sec);
  opacity: 0;
  transition: var(--sec);
}
.c-anime_mv .is-animated .c-anime_mv__bg {
  animation: mvWipe 1.2s ease-out forwards;
  animation-delay: 0;
}
.c-anime_mv .is-animated .c-anime_mv__content {
  animation: mvOpacity 1.2s ease-out forwards;
  animation-delay: 1.2s;
}

@keyframes mvWipe {
  0% {
    transform: translateX(-101%);
    /* 始点：左の外側 */
  }
  100% {
    transform: translateX(101%);
    /* 終点：右の外側 */
  }
}
@keyframes mvOpacity {
  0% {
    opacity: 0;
    /* 始点：左の外側 */
  }
  100% {
    opacity: 1;
    /* 終点：右の外側 */
  }
}
.c-text {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
}
@media (width > 768px) {
  .c-text._pc-textcenter {
    text-align: center;
  }
}

.c-heading-h2 {
  width: fit-content;
  display: block;
  margin-inline: auto;
  margin-block-end: var(--space-block-sm);
  text-align: center;
  color: var(--color-light);
}
.c-heading-h2__en {
  font-family: var(--typography-EN-text-lg-font-family);
  font-weight: var(--typography-EN-text-lg-font-weight);
  font-size: var(--typography-EN-text-lg-font-size);
  line-height: var(--typography-EN-text-lg-line-height);
  --letter-spacing: var(--typography-EN-text-lg-letter-spacing);
  line-height: 129px;
}
@media (width <= 768px) {
  .c-heading-h2__en {
    line-height: 81px;
  }
}
.c-heading-h2__jp {
  font-family: var(--typography-text-xmd-font-family);
  font-weight: var(--typography-text-xmd-font-weight);
  font-size: var(--typography-text-xmd-font-size);
  line-height: var(--typography-text-xmd-line-height);
  --letter-spacing: var(--typography-text-xmd-letter-spacing);
  width: fit-content;
  margin: 0 auto;
  margin-block-start: -27px;
  line-height: 27px;
  padding: 0 9px 1px 9px;
  background-color: var(--color-primary);
  display: block;
}
.c-heading-h2__jp._bg-none {
  background: none;
  padding: 0;
}
@media (width <= 768px) {
  .c-heading-h2__jp {
    margin-block-start: -10px;
    padding-inline: 10px;
  }
  .c-heading-h2__jp._bg-none {
    padding-inline: 0;
  }
}

.c-heading-low {
  margin-block-end: var(--space-block-md);
  text-align: center;
}
.c-heading-low .en {
  font-family: var(--typography-EN-text-xsm-font-family);
  font-weight: var(--typography-EN-text-xsm-font-weight);
  font-size: var(--typography-EN-text-xsm-font-size);
  line-height: var(--typography-EN-text-xsm-line-height);
  --letter-spacing: var(--typography-EN-text-xsm-letter-spacing);
  color: var(--color-primary);
  line-height: 29px;
}
.c-heading-low .jp {
  font-family: var(--typography-title-xlg-font-family);
  font-weight: var(--typography-title-xlg-font-weight);
  font-size: var(--typography-title-xlg-font-size);
  line-height: var(--typography-title-xlg-line-height);
  --letter-spacing: var(--typography-title-xlg-letter-spacing);
  line-height: 46px;
}

.c-btn {
  font-family: var(--typography-text-xmd-font-family);
  font-weight: var(--typography-text-xmd-font-weight);
  font-size: var(--typography-text-xmd-font-size);
  line-height: var(--typography-text-xmd-line-height);
  --letter-spacing: var(--typography-text-xmd-letter-spacing);
  line-height: 1;
  width: fit-content;
  min-width: 330px;
  height: 80px;
  padding-inline: var(--space-block-sm);
  background-color: var(--color-primary);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--sec) ease;
  text-decoration: none;
}
@media (width <= 768px) {
  .c-btn {
    min-width: 280px;
    height: 70px;
    text-align: justify;
    padding-inline: var(--space-block-sm) 20%;
  }
}
.c-btn__arr {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: var(--sec) ease;
}
@media (width <= 768px) {
  .c-btn__arr {
    right: 20px;
  }
}
@media (width > 768px) {
  .c-btn:hover {
    color: var(--color-primary);
    background-color: var(--color-light);
  }
  .c-btn:hover .c-btn__arr {
    color: var(--color-primary);
  }
}
.c-btn._small {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
  min-width: 250px;
  height: 50px;
  justify-content: unset;
}
.c-btn._center {
  margin: 0 auto;
}

.c-btn-arr {
  width: 33px;
  min-width: 33px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  transition: var(--sec);
}
@media (width <= 560px) {
  .c-btn-arr {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }
}
.c-btn-arr__arr {
  color: var(--color-light);
  transition: var(--sec);
}

@media (width > 768px) {
  .c-btn-arr_hov-target:hover .c-btn-arr {
    background-color: var(--color-light);
  }
  .c-btn-arr_hov-target:hover .c-btn-arr__arr {
    color: var(--color-primary);
  }
}
.c-card_product {
  text-decoration: none;
  border-radius: 15px;
  overflow: hidden;
  background-color: var(--color-light);
}
.c-card_product__img {
  overflow: hidden;
}
.c-card_product__img img {
  width: 100%;
  aspect-ratio: 265/260;
  object-fit: cover;
  object-position: center;
  transition: var(--sec);
}
.c-card_product__info {
  padding: var(--space-block-xs) 13px 13px var(--space-block-sm);
}
@media (width <= 768px) {
  .c-card_product__info {
    padding: var(--space-block-xs);
  }
}
.c-card_product__name {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
  transition: var(--sec);
  color: var(--color-dark);
}
@media (width <= 768px) {
  .c-card_product__name {
    line-height: 18px;
    margin-block-end: var(--space-block-xs);
  }
}
.c-card_product__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-block-xs);
}
.c-card_product__model {
  font-family: var(--typography-text-xs-font-family);
  font-weight: var(--typography-text-xs-font-weight);
  font-size: var(--typography-text-xs-font-size);
  line-height: var(--typography-text-xs-line-height);
  --letter-spacing: var(--typography-text-xs-letter-spacing);
  margin-block-end: 5px;
  color: var(--color-dark);
}
@media (width <= 768px) {
  .c-card_product__model {
    display: none;
  }
}
.c-card_product__model span {
  display: contents;
}
.c-card_product__model .model-title {
  margin-inline-end: 6px;
  padding-inline-end: 6px;
  display: inline-block;
  position: relative;
}
.c-card_product__model .model-title::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  display: block;
  background-color: var(--color-dark);
  top: 0;
  right: 0;
}
.c-card_product .category {
  font-family: var(--typography-text-xs-font-family);
  font-weight: var(--typography-text-xs-font-weight);
  font-size: var(--typography-text-xs-font-size);
  line-height: var(--typography-text-xs-line-height);
  --letter-spacing: var(--typography-text-xs-letter-spacing);
}
.c-card_product .category__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--color-primary);
}
.c-card_product:hover img {
  opacity: 1;
}
@media (width > 768px) {
  .c-card_product:hover .c-card_product__img img {
    scale: var(--zoom);
  }
  .c-card_product:hover .c-card_product__name {
    color: var(--color-primary);
  }
}

.c-card_case {
  width: 100%;
  display: block;
  text-decoration: none;
}
.c-card_case__img {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.c-card_case__img img {
  width: 100%;
  aspect-ratio: 350/415;
  object-fit: cover;
  object-position: center;
  transition: var(--sec);
}
@media (width <= 768px) {
  .c-card_case__img img {
    aspect-ratio: 260/308;
  }
}
.c-card_case__name {
  font-family: var(--typography-text-xxmd-font-family);
  font-weight: var(--typography-text-xxmd-font-weight);
  font-size: var(--typography-text-xxmd-font-size);
  line-height: var(--typography-text-xxmd-line-height);
  --letter-spacing: var(--typography-text-xxmd-letter-spacing);
  transition: var(--sec);
}
.c-card_case__detail {
  font-family: var(--typography-text-sm-font-family);
  font-weight: var(--typography-text-sm-font-weight);
  font-size: var(--typography-text-sm-font-size);
  line-height: var(--typography-text-sm-line-height);
  --letter-spacing: var(--typography-text-sm-letter-spacing);
  display: flex;
  align-items: center;
  transition: var(--sec);
}
.c-card_case__address {
  position: relative;
  margin-inline-end: 10px;
  padding-inline-end: 10px;
  transition: var(--sec);
  max-width: 50%;
}
.c-card_case__address::before {
  content: "";
  width: 1px;
  height: 18px;
  background-color: var(--color-light);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: var(--sec);
}
.c-card_case__category {
  transition: var(--sec);
  max-width: 50%;
}
.c-card_case__data {
  font-family: var(--typography-text-sm-font-family);
  font-weight: var(--typography-text-sm-font-weight);
  font-size: var(--typography-text-sm-font-size);
  line-height: var(--typography-text-sm-line-height);
  --letter-spacing: var(--typography-text-sm-letter-spacing);
  color: var(--color-primary);
}
.c-card_case:hover img {
  opacity: 1;
}
@media (width > 768px) {
  .c-card_case:hover .c-card_case__img img {
    scale: var(--zoom);
  }
  .c-card_case:hover .c-card_case__category, .c-card_case:hover .c-card_case__address, .c-card_case:hover .c-card_case__name {
    color: var(--color-primary);
  }
  .c-card_case:hover .c-card_case__address::before {
    background-color: var(--color-primary);
  }
}

.c-dropnav {
  margin-block-start: -10px;
  padding-block-end: var(--space-block-xs);
  border-bottom: 1px solid var(--color-light);
}
@media (width < 768px) {
  .c-dropnav__wrapper {
    display: none;
  }
  .c-dropnav__wrapper.is-show {
    display: block;
  }
}
.c-dropnav__group {
  margin-block-end: var(--space-block-mmd);
}
.c-dropnav__title {
  font-family: var(--typography-EN-text-md-font-family);
  font-weight: var(--typography-EN-text-md-font-weight);
  font-size: var(--typography-EN-text-md-font-size);
  line-height: var(--typography-EN-text-md-line-height);
  --letter-spacing: var(--typography-EN-text-md-letter-spacing);
}
.c-dropnav__search {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block-end: var(--space-block-xs);
}
.c-dropnav__search .icon {
  width: 16px;
  height: 16px;
  display: block;
  border: 1px solid var(--color-light);
  position: relative;
}
.c-dropnav__search .icon::before {
  content: "";
  width: 8px;
  height: 1px;
  display: block;
  background-color: var(--color-light);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.c-dropnav__search .icon::after {
  content: "";
  width: 1px;
  height: 8px;
  display: block;
  background-color: var(--color-light);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: var(--sec);
}
.c-dropnav__link {
  font-family: var(--typography-text-sm-font-family);
  font-weight: var(--typography-text-sm-font-weight);
  font-size: var(--typography-text-sm-font-size);
  line-height: var(--typography-text-sm-line-height);
  --letter-spacing: var(--typography-text-sm-letter-spacing);
  width: 100%;
  display: block;
  text-decoration: none;
  padding-block: 5px;
  transition: var(--sec);
  cursor: pointer;
  line-height: 20px;
}
@media (width <= 768px) {
  .c-dropnav__link {
    padding-block: 5px;
  }
}
@media (width > 768px) {
  .c-dropnav__link:hover {
    color: var(--color-primary);
  }
}
.c-dropnav__check {
  font-family: var(--typography-text-sm-font-family);
  font-weight: var(--typography-text-sm-font-weight);
  font-size: var(--typography-text-sm-font-size);
  line-height: var(--typography-text-sm-line-height);
  --letter-spacing: var(--typography-text-sm-letter-spacing);
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-block-end: 5px;
  cursor: pointer;
  transition: var(--sec);
  position: relative;
}
.c-dropnav__check:last-child {
  margin-block-end: 0;
}
@media (width > 768px) {
  .c-dropnav__check:hover {
    color: var(--color-primary);
  }
}
.c-dropnav__check::before {
  content: "";
  width: 20px;
  aspect-ratio: 1/1;
  display: inline-block;
  background-color: var(--color-light);
}
.c-dropnav__check::after {
  content: "";
  opacity: 0;
  width: 6px;
  height: 12px;
  border: solid var(--color-primary);
  border-width: 0 3px 3px 0;
  position: absolute;
  top: 6px;
  left: 7px;
  transform: rotate(45deg);
}
.c-dropnav__check:has(input:checked)::after {
  opacity: 1;
}
.c-dropnav__check input {
  -webkit-appearance: none;
  appearance: none;
  opacity: 0;
  position: absolute;
}
.c-dropnav__check input:checked .c-dropnav__check::after {
  opacity: 1;
}
.c-dropnav.is-open .c-dropnav__search .icon::after {
  opacity: 0;
}

.c-gallery-wrap .gallery-main {
  display: block;
}
.c-gallery-wrap .gallery-main img {
  opacity: 0;
  transition: var(--sec);
}
.c-gallery-wrap .gallery-main.is-show img {
  opacity: 1;
}
.c-gallery-wrap .gallery .gallery-img {
  filter: brightness(0.4);
  cursor: pointer;
}
.c-gallery-wrap .gallery .gallery-img.active {
  filter: brightness(1);
}

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

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

/*全画面*/
html {
  background-color: var(--color-bg-base);
}

.g-wrapper {
  background-color: var(--color-bg-base);
}

@keyframes loading-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes loading-fade-out-full {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/*ヘッダー*/
.g-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background-color: transparent;
  transition: var(--sec);
  /* X アニメ */
}
.g-header::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #111111;
  z-index: 998;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: var(--sec) ease;
}
.g-header.open-menu::before {
  opacity: 1;
  transform: translateY(0);
}
.g-header.scroll-in {
  background-color: var(--color-bg-base);
}
.g-header .header {
  max-width: 1400px;
  margin: 0 auto;
  height: 90px;
  padding-inline: var(--space-block-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 768px) {
  .g-header .header {
    height: 60px;
    padding-inline: var(--space-block-sm) 0;
  }
}
.g-header .logo {
  width: 189px;
  position: relative;
  z-index: 999;
}
@media (width <= 768px) {
  .g-header .logo {
    width: 147px;
  }
}
.g-header .header-nav {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media (width <= 900px) {
  .g-header .header-nav {
    gap: var(--space-block-md);
  }
}
.g-header .header-nav .pc-nav {
  text-align: center;
  display: flex;
  flex-flow: column;
  gap: 1px;
  font-family: var(--typography-text-xs-font-family);
  font-weight: var(--typography-text-xs-font-weight);
  font-size: var(--typography-text-xs-font-size);
  line-height: var(--typography-text-xs-line-height);
  --letter-spacing: var(--typography-text-xs-letter-spacing);
  padding-block: 5px;
  text-decoration: none;
  transition: var(--sec);
}
@media (width > 768px) {
  .g-header .header-nav .pc-nav:hover {
    color: var(--color-primary);
  }
}
.g-header .header-nav .pc-nav .en {
  font-family: var(--typography-EN-text-sm-font-family);
  font-weight: var(--typography-EN-text-sm-font-weight);
  font-size: var(--typography-EN-text-sm-font-size);
  line-height: var(--typography-EN-text-sm-line-height);
  --letter-spacing: var(--typography-EN-text-sm-letter-spacing);
  display: block;
}
.g-header .header-nav .pc-nav__wrapper {
  display: flex;
  position: relative;
  z-index: 999;
  gap: var(--space-block-md);
}
@media (width <= 900px) {
  .g-header .header-nav .pc-nav__wrapper {
    gap: var(--space-block-sm);
  }
}
.g-header .hamburger-menu {
  width: 100%;
  height: 100vh;
  padding-block: 200px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: scroll;
  scrollbar-width: none;
  overscroll-behavior: contain;
  transform: translateY(-10px);
  transition: var(--sec) ease-out;
  background-color: #111111;
  z-index: 997;
}
@media (width <= 768px) {
  .g-header .hamburger-menu {
    padding-block-start: 90px;
  }
}
.g-header .hamburger-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  overscroll-behavior: contain;
}
.g-header .hamburger-menu__content {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}
@media (width <= 560px) {
  .g-header .hamburger-menu__content {
    grid-template-columns: 1fr;
  }
}
.g-header .hamburger-menu__content a {
  transition: var(--sec);
  white-space: nowrap;
}
@media (width > 860px) {
  .g-header .hamburger-menu__content li:nth-child(even) {
    margin-inline-start: var(--space-block-sm);
  }
}
@media (width <= 768px) {
  .g-header .hamburger-menu__content li:nth-child(1) {
    order: 1;
  }
  .g-header .hamburger-menu__content li:nth-child(2) {
    order: 5;
  }
  .g-header .hamburger-menu__content li:nth-child(3) {
    order: 2;
  }
  .g-header .hamburger-menu__content li:nth-child(4) {
    order: 6;
  }
  .g-header .hamburger-menu__content li:nth-child(5) {
    order: 3;
  }
  .g-header .hamburger-menu__content li:nth-child(6) {
    order: 7;
  }
  .g-header .hamburger-menu__content li:nth-child(7) {
    order: 4;
  }
  .g-header .hamburger-menu__content li:nth-child(8) {
    order: 8;
    grid-column: span 2;
  }
}
@media (width <= 560px) {
  .g-header .hamburger-menu__content li {
    grid-column: 1;
  }
}
.g-header .hamburger-menu__nav {
  width: fit-content;
  padding-block: var(--space-block-sm);
  text-decoration: none;
  display: block;
}
@media (width <= 768px) {
  .g-header .hamburger-menu__nav {
    padding-block: var(--space-block-xs);
  }
}
@media (width > 768px) {
  .g-header .hamburger-menu__nav:hover {
    color: var(--color-primary);
  }
}
.g-header .hamburger-menu__nav .en {
  font-family: var(--typography-EN-text-md-font-family);
  font-weight: var(--typography-EN-text-md-font-weight);
  font-size: var(--typography-EN-text-md-font-size);
  line-height: var(--typography-EN-text-md-line-height);
  --letter-spacing: var(--typography-EN-text-md-letter-spacing);
}
@media (768px <= width <= 860px) {
  .g-header .hamburger-menu__nav .en {
    font-size: 42px;
  }
}
.g-header .hamburger-menu__nav .jp {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
  padding: 0 0 18px var(--space-block-sm);
}
@media (width <= 860px) {
  .g-header .hamburger-menu__nav .jp {
    padding: 0 0 18px var(--space-block-xs);
  }
}
@media (width <= 768px) {
  .g-header .hamburger-menu__nav .jp {
    padding: 0 0 var(--space-block-xs) var(--space-block-xs);
  }
}
.g-header .hamburger-menu__btn {
  width: 100%;
  max-width: 273px;
  height: 80px;
  display: flex;
  align-items: center;
  border: 1px solid var(--color-light);
  text-decoration: none;
  position: relative;
}
@media (width <= 768px) {
  .g-header .hamburger-menu__btn {
    margin-inline: auto;
    margin-block-start: var(--space-block-md);
  }
}
.g-header .hamburger-menu__btn .arr {
  position: absolute;
  width: 17px;
  height: 14px;
  display: block;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(-45deg);
  color: var(--color-light);
  transition: var(--sec);
}
.g-header .hamburger-menu__btn .text {
  font-family: var(--ff-en);
  font-size: 22px;
  line-height: 31px;
  white-space: nowrap;
  letter-spacing: 0.06em;
}
@media (width <= 768px) {
  .g-header .hamburger-menu__btn .text {
    font-size: 26px;
    line-height: 37px;
  }
}
.g-header .hamburger-menu__btn .icon {
  margin: var(--space-block-sm);
  width: 40px;
  height: 40px;
  transition: var(--sec);
  color: var(--color-light);
}
@media (width > 768px) {
  .g-header .hamburger-menu__btn:hover.hamburger-menu__btn {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
  }
  .g-header .hamburger-menu__btn:hover.hamburger-menu__btn .icon {
    color: var(--color-primary);
  }
  .g-header .hamburger-menu__btn:hover.hamburger-menu__btn .arr {
    color: var(--color-primary);
  }
}
.g-header .hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 60px;
  height: 60px;
  padding-inline: 12px;
  position: relative;
  z-index: 999;
}
.g-header .hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-light);
  transition: var(--sec) ease-out;
}
.g-header .hamburger.active span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
.g-header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.g-header .hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/*フッター上*/
.g-contact {
  background-image: url(../img/cmn/c-contact_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.g-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-base);
  opacity: 0.66;
  z-index: 1;
}
.g-contact__content {
  position: relative;
  z-index: 2;
}

/*フッター*/
.g-footer {
  padding-block: 90px;
}
.g-footer .footer {
  display: grid;
  grid-template-columns: 1fr 1fr 20px;
  gap: var(--space-block-md);
}
@media (width <= 1120px) {
  .g-footer .footer {
    grid-template-columns: 420px 1fr 20px;
  }
}
@media (width <= 900px) {
  .g-footer .footer {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
}
@media (width <= 768px) {
  .g-footer .footer {
    gap: var(--space-block-xs);
  }
}
.g-footer .footer__nav {
  height: fit-content;
  margin-block-start: var(--space-block-md);
  display: grid;
  grid-template-columns: 66px 66px 117px 66px;
  column-gap: 60px;
  transform: translateY(-20px);
}
@media (width <= 1120px) {
  .g-footer .footer__nav {
    width: fit-content;
    grid-template-columns: repeat(2, auto);
    column-gap: var(--space-block-sm);
    margin-inline: auto;
  }
}
@media (width <= 900px) {
  .g-footer .footer__nav {
    margin: 0;
    order: 3;
  }
}
@media (width > 1120px) {
  .g-footer .footer__nav li:last-child {
    grid-column: span 2;
  }
}
.g-footer .footer__nav a {
  display: block;
  white-space: nowrap;
  padding-block: var(--space-block-sm);
  text-decoration: none;
  transition: var(--sec);
}
@media (width > 768px) {
  .g-footer .footer__nav a:hover {
    color: var(--color-primary);
  }
}
.g-footer .footer-content__logo {
  display: block;
  max-width: 420px;
}
.g-footer .footer-content__logo img {
  width: 100%;
}
.g-footer .footer-content__info {
  font-family: var(--typography-text-sm-font-family);
  font-weight: var(--typography-text-sm-font-weight);
  font-size: var(--typography-text-sm-font-size);
  line-height: var(--typography-text-sm-line-height);
  --letter-spacing: var(--typography-text-sm-letter-spacing);
}
.g-footer .footer-content__info span {
  display: block;
}
.g-footer .footer-content__copy {
  font-family: var(--typography-text-sm-font-family);
  font-weight: var(--typography-text-sm-font-weight);
  font-size: var(--typography-text-sm-font-size);
  line-height: var(--typography-text-sm-line-height);
  --letter-spacing: var(--typography-text-sm-letter-spacing);
}
.g-footer .instagram-btn {
  max-width: 320px;
  width: 100%;
  display: flex;
  align-items: center;
  text-decoration: none;
  background: linear-gradient(100deg, #7638FA, #D300C5, #FF0069, #FF7A00, #FFD600);
  transition: var(--sec);
}
@media (width <= 768px) {
  .g-footer .instagram-btn {
    width: 290px;
    min-width: 290px;
    padding-inline-end: 5px;
  }
}
.g-footer .instagram-btn__icon {
  margin: var(--space-block-sm);
  color: var(--color-light);
}
.g-footer .instagram-btn__text {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
  margin-inline-end: var(--space-block-sm);
  line-height: 24px;
}
.g-footer .instagram-btn__arr {
  transform: rotate(-45deg);
}
@media (width > 768px) {
  .g-footer .instagram-btn:hover {
    opacity: var(--opacity);
  }
}
.g-footer .page-top {
  width: fit-content;
  height: fit-content;
  margin-inline-end: var(--space-block-md);
  font-family: var(--ff-en);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  writing-mode: sideways-lr;
  text-decoration: none;
  display: flex;
  gap: var(--space-block-xs);
  align-items: center;
}
.g-footer .page-top__border {
  display: block;
  width: 2px;
  height: 100px;
  background-color: #414141;
  position: relative;
  transform: translateX(-2px);
}
.g-footer .page-top__border::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 20%;
  background-color: var(--color-light);
  display: block;
  transition: var(--sec);
}
@media (width > 768px) {
  .g-footer .page-top:hover .page-top__border::before {
    height: 100%;
  }
}

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

.q-case_detail .case_detail__head data {
  font-family: var(--typography-text-sm-font-family);
  font-weight: var(--typography-text-sm-font-weight);
  font-size: var(--typography-text-sm-font-size);
  line-height: var(--typography-text-sm-line-height);
  --letter-spacing: var(--typography-text-sm-letter-spacing);
  margin-block-end: var(--space-block-mmd);
  display: block;
}
.q-case_detail .case_detail__head h1 {
  font-family: var(--typography-title-xlg-font-family);
  font-weight: var(--typography-title-xlg-font-weight);
  font-size: var(--typography-title-xlg-font-size);
  line-height: var(--typography-title-xlg-line-height);
  --letter-spacing: var(--typography-title-xlg-letter-spacing);
  margin-block-end: var(--space-block-mmd);
}
.q-case_detail .case_detail__head .info {
  font-family: var(--typography-text-sm-font-family);
  font-weight: var(--typography-text-sm-font-weight);
  font-size: var(--typography-text-sm-font-size);
  line-height: var(--typography-text-sm-line-height);
  --letter-spacing: var(--typography-text-sm-letter-spacing);
  margin-block-end: var(--space-block-md);
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  align-items: center;
}
.q-case_detail .case_detail__head .category {
  padding: 4px 10px 3px 10px;
  background-color: var(--color-light);
  border-radius: 999px;
  color: var(--color-dark);
  line-height: 20px;
}
.q-case_detail .case_detail__others .head {
  text-align: center;
}
.q-case_detail .case_detail__others .head .en {
  font-family: var(--typography-EN-text-md-font-family);
  font-weight: var(--typography-EN-text-md-font-weight);
  font-size: var(--typography-EN-text-md-font-size);
  line-height: var(--typography-EN-text-md-line-height);
  --letter-spacing: var(--typography-EN-text-md-letter-spacing);
  line-height: 69px;
}
.q-case_detail .case_detail__others .head .jp {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
  line-height: 24px;
  margin-block-start: -10px;
}
.q-case_detail .case_detail__others-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (width <= 768px) {
  .q-case_detail .case_detail__others-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}

.q-cose .case-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 35px;
}
@media (width <= 900px) {
  .q-cose .case-content {
    gap: 60px 20px;
  }
}
@media (width <= 768px) {
  .q-cose .case-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width <= 560px) {
  .q-cose .case-content {
    grid-template-columns: 1fr;
  }
}

.q-company_info .about-table {
  width: 100%;
}
.q-company_info .about-table tr {
  margin-block-end: 2px;
  padding: 10px 20px;
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
  display: grid;
  grid-template-columns: 190px 1fr;
  background-color: #444444;
  align-items: center;
}
@media (width <= 768px) {
  .q-company_info .about-table tr {
    padding-block: 0;
    padding-inline: 10px;
    grid-template-columns: 1fr;
  }
}
.q-company_info .about-table tr:last-child {
  margin-block-end: 0;
}
.q-company_info .about-table td {
  padding-inline-start: 28px;
  border-left: 1px solid var(--color-light);
}
@media (width <= 768px) {
  .q-company_info .about-table td {
    border-left: none;
    border-top: 1px solid var(--color-light);
    padding-inline-start: 0;
    padding: 12px 13px;
  }
}
.q-company_info .about-table th {
  height: 100%;
}
@media (width <= 768px) {
  .q-company_info .about-table th {
    padding: 10px;
  }
}
.q-company_info .about-table__list li {
  display: block;
  margin-block-end: 20px;
}
.q-company_info .about-table__list .office-name {
  display: block;
  margin-block-end: 8px;
}
.q-company_info .about-table__list .office-tel {
  text-decoration: none;
  display: inline-block;
}
@media (width > 768px) {
  .q-company_info .about-table__list .office-tel {
    pointer-events: none;
  }
}
.q-company_info .about-table__link {
  text-decoration: underline;
  color: var(--color-link);
}

.q-company_features .feature-block {
  margin-block-end: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (width <= 768px) {
  .q-company_features .feature-block {
    grid-template-columns: 1fr;
    row-gap: var(--space-block-mmd);
  }
}
.q-company_features .feature-block:last-child {
  margin-block-end: 0;
}
.q-company_features .feature-block__title {
  font-family: var(--typography-text-xxmd-font-family);
  font-weight: var(--typography-text-xxmd-font-weight);
  font-size: var(--typography-text-xxmd-font-size);
  line-height: var(--typography-text-xxmd-line-height);
  --letter-spacing: var(--typography-text-xxmd-letter-spacing);
  line-height: 2;
}
@media (width <= 768px) {
  .q-company_features .feature-block__title {
    font-size: 22px;
    line-height: 41px;
  }
}
.q-company_features .feature-block__img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center;
}
@media (width <= 768px) {
  .q-company_features .feature-block__img {
    aspect-ratio: 320/200;
    min-height: 0;
    height: auto;
  }
}
.q-company_features .feature-block__content {
  max-width: 460px;
  padding-block-start: var(--space-block-md);
  padding-inline-start: var(--space-block-md);
}
@media (width <= 768px) {
  .q-company_features .feature-block__content {
    max-width: 100%;
    padding: 0;
    grid-area: 1;
  }
}
.q-company_features .feature-block__text {
  margin-block-start: var(--space-block-mmd);
}
.q-company_features .feature-block._receive .feature-block {
  margin-inline: 0 auto;
}
.q-company_features .feature-block._receive .feature-block__content {
  grid-area: 1;
  padding-inline-end: var(--space-block-md);
  padding-inline-start: 0;
  margin: 0 0 0 auto;
}
@media (width <= 768px) {
  .q-company_features .feature-block._receive .feature-block__content {
    padding: 0;
  }
}

.q-company_showroom .showroom-gallery__main {
  display: block;
  width: 100%;
  aspect-ratio: 1000/620;
}
@media (width <= 768px) {
  .q-company_showroom .showroom-gallery__main {
    aspect-ratio: 320/198;
  }
}
.q-company_showroom .showroom-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.q-company_showroom .showroom-gallery__list {
  margin-block-start: var(--space-block-sm);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-block-sm);
}
@media (width <= 768px) {
  .q-company_showroom .showroom-gallery__list {
    margin-block-start: var(--space-block-xs);
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-block-xs);
  }
}
.q-company_showroom .showroom-gallery__list img {
  width: 100%;
  aspect-ratio: 184/114;
  display: block;
  object-fit: cover;
  object-position: center;
}
@media (width <= 768px) {
  .q-company_showroom .showroom-gallery__list img {
    aspect-ratio: 100/62;
  }
}

.q-contact_phone .common {
  max-width: 720px;
  margin-inline: auto;
  margin-block-end: var(--space-block-lg);
  padding-block: 19px 18px;
  display: grid;
  grid-template-columns: 275px 1fr;
  border: 1px solid var(--color-light);
  align-items: center;
}
@media (width <= 768px) {
  .q-contact_phone .common {
    justify-content: center;
    grid-template-columns: 1fr;
    padding-block: 0;
  }
}
.q-contact_phone .common__heading {
  font-family: var(--typography-text-xxmd-font-family);
  font-weight: var(--typography-text-xxmd-font-weight);
  font-size: var(--typography-text-xxmd-font-size);
  line-height: var(--typography-text-xxmd-line-height);
  --letter-spacing: var(--typography-text-xxmd-letter-spacing);
  display: block;
  border-right: 1px solid var(--color-light);
  padding-inline-start: 60px;
}
@media (width <= 768px) {
  .q-contact_phone .common__heading {
    width: 100%;
    max-width: 241px;
    margin-inline: auto;
    padding-inline-start: 0;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--color-light);
    text-align: center;
  }
}
.q-contact_phone .common__info {
  padding-inline-start: 48px;
}
@media (width <= 768px) {
  .q-contact_phone .common__info {
    text-align: center;
    padding: 18px 15px 29px 15px;
  }
}
.q-contact_phone .common__number {
  display: block;
  text-decoration: none;
  font-family: var(--ff-en);
  font-size: 40px;
  font-weight: 500;
  line-height: 69px;
  letter-spacing: 0.04em;
}
@media (width > 768px) {
  .q-contact_phone .common__number {
    pointer-events: none;
  }
}
@media (width <= 768px) {
  .q-contact_phone .common__number {
    font-size: 30px;
    line-height: 51px;
  }
}
.q-contact_phone .common__number .number {
  font-size: 48px;
}
@media (width <= 768px) {
  .q-contact_phone .common__number .number {
    font-size: 36px;
  }
}
.q-contact_phone .notes {
  font-family: var(--typography-text-xxmd-font-family);
  font-weight: var(--typography-text-xxmd-font-weight);
  font-size: var(--typography-text-xxmd-font-size);
  line-height: var(--typography-text-xxmd-line-height);
  --letter-spacing: var(--typography-text-xxmd-letter-spacing);
  padding-inline-start: 14px;
  border-left: 2px solid var(--color-light);
}
.q-contact_phone .office-contact {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 2px;
}
@media (width <= 860px) {
  .q-contact_phone .office-contact {
    grid-template-columns: 1fr;
  }
}
.q-contact_phone .office-contact__head {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
  width: 100%;
  background-color: #444444;
}
@media (width <= 860px) {
  .q-contact_phone .office-contact__head {
    padding: 15px;
  }
}
.q-contact_phone .office-contact__info {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
  margin-block-end: 2px;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 165px 1fr 145px;
  background-color: #444444;
}
@media (width <= 768px) {
  .q-contact_phone .office-contact__info {
    grid-template-columns: 1fr;
    line-height: 24px;
    padding: 10px;
  }
}
.q-contact_phone .office-contact__info:last-child {
  margin-block-end: 0;
}
.q-contact_phone .office-contact__info td {
  border-left: 1px solid var(--color-light);
}
@media (width <= 768px) {
  .q-contact_phone .office-contact__info td {
    border-left: none;
  }
}
@media (width <= 768px) {
  .q-contact_phone .office-contact__info .name {
    padding-inline: 10px;
    padding-block-end: 10px;
    text-align: center;
  }
}
.q-contact_phone .office-contact__info .address {
  padding-inline: 20px;
}
@media (width <= 768px) {
  .q-contact_phone .office-contact__info .address {
    padding-inline: 10px;
    padding-block-start: 10px;
    border-top: 1px solid var(--color-light);
  }
}
.q-contact_phone .office-contact__info .number {
  padding-inline: 14px;
}
@media (width <= 768px) {
  .q-contact_phone .office-contact__info .number {
    padding-inline: 0;
    text-decoration: none;
    display: inline-block;
  }
}

.q-contact_form .notes {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
}
.q-contact_form .notes .emp {
  color: var(--color-primary);
}

.q-contact_form .p-form {
  margin-block-end: var(--space-block-md);
  display: grid;
  grid-template-columns: 300px 1fr;
}
@media (width <= 768px) {
  .q-contact_form .p-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.q-contact_form .p-form__label .title {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
}
.q-contact_form .p-form__label .tag {
  font-family: var(--typography-text-sm-font-family);
  font-weight: var(--typography-text-sm-font-weight);
  font-size: var(--typography-text-sm-font-size);
  line-height: var(--typography-text-sm-line-height);
  --letter-spacing: var(--typography-text-sm-letter-spacing);
  margin-inline-start: 10px;
  padding: 2px 5px;
  color: var(--color-light);
  line-height: 20px;
}
.q-contact_form .p-form__label .tag._hissu {
  background-color: var(--color-primary);
}
.q-contact_form .p-form__label .tag._ninni {
  background-color: #444444;
}
.q-contact_form .p-form__radio-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
@media (width <= 768px) {
  .q-contact_form .p-form__radio-wrapper {
    flex-flow: column;
    gap: 20px;
    align-items: start;
  }
}
.q-contact_form .p-form__radio {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.q-contact_form .p-form__radio input {
  appearance: none;
  display: grid;
  width: 24px;
  height: 24px;
  margin: 0;
  cursor: inherit;
  translate: 0 1px;
}
.q-contact_form .p-form__radio input::before {
  content: "";
  display: block;
  background-color: var(--color-light);
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  grid-area: 1/1/2/2;
}
.q-contact_form .p-form__radio input::after {
  content: "";
  padding: 6px;
  display: block;
  background-color: #222222;
  border-radius: 50%;
  grid-area: 1/1/2/2;
  background-clip: content-box;
  opacity: 0;
}
.q-contact_form .p-form__radio input:checked::after {
  opacity: 1;
}
.q-contact_form .p-form__input {
  width: 100%;
}
.q-contact_form .p-form__input input {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
  display: block;
  width: 100%;
  height: 40px;
  padding-inline: 10px;
  border-radius: 4px;
  background-color: #AAAAAA;
  border: none;
  -webkit-appearance: none;
}
.q-contact_form .p-form__input._short input {
  max-width: 200px;
}
.q-contact_form .p-form__examp {
  font-family: var(--typography-text-xs-font-family);
  font-weight: var(--typography-text-xs-font-weight);
  font-size: var(--typography-text-xs-font-size);
  line-height: var(--typography-text-xs-line-height);
  --letter-spacing: var(--typography-text-xs-letter-spacing);
  margin-block-end: var(--space-block-xs);
  color: #AAAAAA;
}
.q-contact_form .p-form__notes {
  font-family: var(--typography-text-sm-font-family);
  font-weight: var(--typography-text-sm-font-weight);
  font-size: var(--typography-text-sm-font-size);
  line-height: var(--typography-text-sm-line-height);
  --letter-spacing: var(--typography-text-sm-letter-spacing);
}
.q-contact_form .p-form__select select {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
  display: block;
  width: 200px;
  height: 40px;
  padding-inline: 10px;
  border-radius: 4px;
  background-color: #AAAAAA;
  border: none;
  color: var(--color-dark);
  -webkit-appearance: none;
}
.q-contact_form .p-form__select .select {
  width: fit-content;
  position: relative;
  width: fit-content;
}
.q-contact_form .p-form__select .select::before {
  content: "⌄";
  position: absolute;
  font-size: 18px;
  line-height: 1;
  top: 10%;
  right: 8px;
  z-index: 11;
  color: var(--color-dark);
  display: block;
}
.q-contact_form .p-form__textarea textarea {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
  display: block;
  width: 100%;
  min-height: 150px;
  height: 170px;
  max-height: 700px;
  padding: 10px;
  resize: vertical;
  border: none;
  border-radius: 4px;
  background-color: #AAAAAA;
  -webkit-appearance: none;
}
.q-contact_form .p-form__privacy {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
  margin-block-end: 40px;
  border: 1px solid #AAAAAA;
  border-radius: 4px;
  display: flex;
  justify-content: center;
}
.q-contact_form .p-form__privacy label {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
  translate: 0 1px;
  padding-block: 24px;
}
.q-contact_form .p-form__privacy a {
  text-decoration: underline;
  color: var(--color-link);
}
.q-contact_form .p-form__input-item input {
  appearance: none;
  display: grid;
  width: 24px;
  height: 24px;
  margin: 0;
  cursor: inherit;
}
.q-contact_form .p-form__input-item input::before {
  content: "";
  display: block;
  background-color: var(--color-light);
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  grid-area: 1/1/2/2;
}
.q-contact_form .p-form__input-item input::after {
  content: "";
  display: block;
  grid-area: 1/1/2/2;
  background-image: url(../img/cmn/icon_check.svg);
  opacity: 0;
}
.q-contact_form .p-form__input-item input:checked::after {
  opacity: 1;
}
.q-contact_form .p-form__submit .form-btn {
  border: none;
  color: var(--color-light);
  -webkit-appearance: none;
}
@media (width <= 768px) {
  .q-contact_form .p-form__submit .form-btn {
    padding-inline: var(--space-block-sm) 17%;
  }
}
@media (width > 768px) {
  .q-contact_form .p-form__submit .form-btn:hover {
    color: var(--color-primary);
  }
}
.q-contact_form .p-form__submit .form-btn._back {
  background-color: var(--color-light);
  color: var(--color-primary);
}
@media (width <= 768px) {
  .q-contact_form .p-form__submit .form-btn._back {
    padding-inline: 17% var(--space-block-sm);
  }
}
.q-contact_form .p-form__submit .form-btn._back .c-btn__arr {
  right: auto;
  left: 30px;
  transform: translateY(-50%) scale(-1, 1);
  color: var(--color-primary);
}
@media (width > 768px) {
  .q-contact_form .p-form__submit .form-btn._back:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
  }
  .q-contact_form .p-form__submit .form-btn._back:hover .c-btn__arr {
    color: var(--color-light);
  }
}

.q-flow_intro .flow-item {
  margin-block-end: var(--space-block-lg);
  display: grid;
  grid-template-columns: 175px 1fr;
}
@media (width <= 768px) {
  .q-flow_intro .flow-item {
    grid-template-columns: 1fr;
    gap: var(--space-block-xs);
  }
}
.q-flow_intro .flow-item:last-child {
  margin-block-end: 0;
  position: relative;
  overflow: hidden;
}
.q-flow_intro .flow-item:last-child::before {
  content: "";
  width: 10px;
  height: 100%;
  background-color: var(--color-bg-base);
  position: absolute;
  top: 20px;
  left: 136px;
}
@media (width <= 768px) {
  .q-flow_intro .flow-item:last-child::before {
    display: none;
  }
}
.q-flow_intro .flow-item__wrapper {
  position: relative;
}
.q-flow_intro .flow-item__wrapper::before {
  content: "";
  display: block;
  width: 2px;
  background-image: repeating-linear-gradient(to bottom, var(--color-primary), 11px, transparent 11px, transparent 22px);
  background-size: 2px 100%;
  background-repeat: repeat-y;
  position: absolute;
  top: 15px;
  bottom: 5%;
  left: 140px;
}
@media (width <= 768px) {
  .q-flow_intro .flow-item__wrapper::before {
    display: none;
  }
}
.q-flow_intro .flow-item__content {
  padding-inline-end: var(--space-block-lg);
  padding-block-end: var(--space-block-mmd);
  border-right: 1px solid #888888;
  border-bottom: 1px solid #888888;
}
@media (width <= 768px) {
  .q-flow_intro .flow-item__content {
    border-right: none;
    padding-inline-end: 0;
  }
}
.q-flow_intro .flow-item__step-label {
  display: block;
  width: 116px;
  height: 50px;
  padding-inline-start: 14px;
  padding-block-start: 4px;
  background-image: url(../img/flow/mark_step.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  font-family: var(--ff-en);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 46px;
  position: relative;
}
.q-flow_intro .flow-item__step-label .number {
  font-size: 32px;
}
.q-flow_intro .flow-item__step-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--color-light);
  border: 5px solid var(--color-primary);
  border-radius: 999px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -35px;
}
@media (width <= 768px) {
  .q-flow_intro .flow-item__step-label::before {
    display: none;
  }
}
.q-flow_intro .flow-item__title {
  font-family: var(--typography-text-lg-font-family);
  font-weight: var(--typography-text-lg-font-weight);
  font-size: var(--typography-text-lg-font-size);
  line-height: var(--typography-text-lg-line-height);
  --letter-spacing: var(--typography-text-lg-letter-spacing);
  line-height: 2;
  margin-block-end: 20px;
}
.q-flow_intro .flow-item__title .red-bg {
  padding: 5px 20px;
}
@media (width <= 768px) {
  .q-flow_intro .flow-item__title .red-bg {
    padding: 4px 10px;
  }
}
.q-flow_intro .flow-item__text-l {
  font-family: var(--typography-text-xmd-font-family);
  font-weight: var(--typography-text-xmd-font-weight);
  font-size: var(--typography-text-xmd-font-size);
  line-height: var(--typography-text-xmd-line-height);
  --letter-spacing: var(--typography-text-xmd-letter-spacing);
  margin-block-end: 20px;
}
.q-flow_intro .flow-item__text {
  margin-block-end: 30px;
}
.q-flow_intro .flow-item__sub-title {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
  width: fit-content;
  margin-block-end: 10px;
  padding: 4px 18px;
  background-color: #444444;
}
@media (width <= 768px) {
  .q-flow_intro .flow-item__sub-title {
    padding: 6px 15px 6px 10px;
  }
}
.q-flow_intro .flow-item a {
  text-decoration: underline;
  color: var(--color-link);
  display: inline-block;
  cursor: pointer;
}
.q-flow_intro .flow-item a.tel {
  text-decoration: none;
}
@media (width > 768px) {
  .q-flow_intro .flow-item a.tel {
    pointer-events: none;
  }
}
.q-flow_intro .flow-item p:last-child {
  margin-block-end: 0;
}

.q-flow_payment .pay__wrapper {
  background-color: #444444;
  padding: var(--space-block-md);
}
@media (width <= 768px) {
  .q-flow_payment .pay__wrapper {
    padding: var(--space-block-sm);
  }
}
.q-flow_payment .pay__title {
  font-family: var(--typography-text-xxmd-font-family);
  font-weight: var(--typography-text-xxmd-font-weight);
  font-size: var(--typography-text-xxmd-font-size);
  line-height: var(--typography-text-xxmd-line-height);
  --letter-spacing: var(--typography-text-xxmd-letter-spacing);
  padding-inline: 20px;
  border: 1px solid var(--color-light);
  display: inline-block;
}

.q-privacy p {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
}
.q-privacy .privacy {
  margin-block-end: var(--space-block-md);
}
.q-privacy .privacy:last-child {
  margin-block-end: 0;
}
.q-privacy .privacy__title {
  font-family: var(--typography-text-xxmd-font-family);
  font-weight: var(--typography-text-xxmd-font-weight);
  font-size: var(--typography-text-xxmd-font-size);
  line-height: var(--typography-text-xxmd-line-height);
  --letter-spacing: var(--typography-text-xxmd-letter-spacing);
  margin-block-end: var(--space-block-xs);
  display: block;
  width: fit-content;
}
.q-privacy .privacy__title._contact {
  padding: 2px 5px;
  border: 1px solid var(--color-light);
  margin-block-end: var(--space-block-sm);
}
.q-privacy .privacy_contact {
  background-color: #444444;
  padding: var(--space-block-sm) var(--space-block-md);
}
@media (width <= 768px) {
  .q-privacy .privacy_contact {
    padding: var(--space-block-xs);
  }
}
.q-privacy .privacy_contact p {
  line-height: 24px;
  margin-block-end: var(--space-block-xs);
}
.q-privacy .privacy_contact p:last-child {
  margin-block-end: 0;
}

.editor_product h2 {
  font-family: var(--typography-text-xxmd-font-family);
  font-weight: var(--typography-text-xxmd-font-weight);
  font-size: var(--typography-text-xxmd-font-size);
  line-height: var(--typography-text-xxmd-line-height);
  --letter-spacing: var(--typography-text-xxmd-letter-spacing);
  padding-inline-start: 14px;
  border-left: 1px solid var(--color-light);
  margin-block-end: 20px;
}
.editor_product p {
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
  margin-block-end: 30px;
}
.editor_product small {
  font-family: var(--typography-text-xs-font-family);
  font-weight: var(--typography-text-xs-font-weight);
  font-size: var(--typography-text-xs-font-size);
  line-height: var(--typography-text-xs-line-height);
  --letter-spacing: var(--typography-text-xs-letter-spacing);
  margin-block-start: 10px;
  display: block;
}
.editor_product a {
  color: var(--color-link);
  text-decoration: underline;
}
.editor_product table {
  width: 100%;
}
.editor_product table tr {
  margin-block-end: 2px;
  padding-block: 12px;
  padding-inline: 17px 15px;
  font-family: var(--typography-text-md-font-family);
  font-weight: var(--typography-text-md-font-weight);
  font-size: var(--typography-text-md-font-size);
  line-height: var(--typography-text-md-line-height);
  --letter-spacing: var(--typography-text-md-letter-spacing);
  display: grid;
  grid-template-columns: 137px 1fr;
  align-items: center;
  background-color: #444444;
}
@media (width <= 768px) {
  .editor_product table tr {
    padding-block: 0;
    padding-inline: 10px;
    grid-template-columns: 1fr;
  }
}
.editor_product table tr:last-child {
  margin-block-end: 0;
}
.editor_product table td {
  padding-inline-start: 15px;
  border-left: 1px solid var(--color-light);
}
@media (width <= 768px) {
  .editor_product table td {
    border-left: none;
    border-top: 1px solid var(--color-light);
    padding-inline-start: 0;
    padding: 10px 12px;
  }
}
.editor_product table th {
  height: 100%;
}
@media (width <= 768px) {
  .editor_product table th {
    padding: 10px;
  }
}
.editor_product iframe {
  width: 100%;
  aspect-ratio: 1120/630;
}
.editor_product .gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-block-start: 20px;
}
@media (width <= 768px) {
  .editor_product .gallery {
    margin-block-start: 10px;
    gap: 10px;
  }
}
.editor_product .gallery__list {
  display: block;
  width: 100%;
  aspect-ratio: 125/122;
}
.editor_product .gallery .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editor_product .btn-group {
  display: flex;
  gap: 12px 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.editor_product .btn-group .c-btn {
  text-decoration: none;
  color: var(--color-light);
}
@media (width > 768px) {
  .editor_product .btn-group .c-btn:hover {
    color: var(--color-primary);
  }
}

.q-product_detail .product_detail .gallery-main {
  width: 100%;
  aspect-ratio: 560/550;
}
.q-product_detail .product_detail .gallery-main img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.q-product_detail .product_detail h1 {
  font-family: var(--typography-text-lg-font-family);
  font-weight: var(--typography-text-lg-font-weight);
  font-size: var(--typography-text-lg-font-size);
  line-height: var(--typography-text-lg-line-height);
  --letter-spacing: var(--typography-text-lg-letter-spacing);
  padding-block-end: 10px;
  border-bottom: 1px solid var(--color-light);
  margin-block-end: 30px;
}
.q-product_detail .product_detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (width <= 768px) {
  .q-product_detail .product_detail__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.q-product_detail .product_detail__content {
  padding-inline-start: var(--space-block-md);
  width: 100%;
}
@media (width <= 768px) {
  .q-product_detail .product_detail__content {
    padding-inline-start: 0;
  }
}
.q-product_detail .product_detail .category {
  font-family: var(--typography-text-sm-font-family);
  font-weight: var(--typography-text-sm-font-weight);
  font-size: var(--typography-text-sm-font-size);
  line-height: var(--typography-text-sm-line-height);
  --letter-spacing: var(--typography-text-sm-letter-spacing);
  min-width: 50px;
  text-align: center;
  line-height: 20px;
  padding: 4px 10px 3px 10px;
  color: var(--color-dark);
  background-color: var(--color-light);
  border-radius: 999px;
}
.q-product_detail .product_detail .category__wrapper {
  margin-block-end: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.q-product_detail h2 {
  font-family: var(--typography-text-xxmd-font-family);
  font-weight: var(--typography-text-xxmd-font-weight);
  font-size: var(--typography-text-xxmd-font-size);
  line-height: var(--typography-text-xxmd-line-height);
  --letter-spacing: var(--typography-text-xxmd-letter-spacing);
  padding-inline-start: 14px;
  border-left: 1px solid var(--color-light);
  margin-block-end: 20px;
}
.q-product_detail .others_product__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (width <= 768px) {
  .q-product_detail .others_product__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}

.q-product .product {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: var(--space-block-md);
}
@media (width <= 768px) {
  .q-product .product {
    grid-template-columns: 1fr;
    gap: var(--space-block-lg);
  }
}
.q-product .product__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}
@media (width <= 1120px) {
  .q-product .product__content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-block-sm) var(--space-block-xs);
  }
}
.q-product .filter-btn {
  font-family: var(--typography-text-xmd-font-family);
  font-weight: var(--typography-text-xmd-font-weight);
  font-size: var(--typography-text-xmd-font-size);
  line-height: var(--typography-text-xmd-line-height);
  --letter-spacing: var(--typography-text-xmd-letter-spacing);
  -webkit-appearance: none;
  width: 100%;
  height: 60px;
  margin-block-end: var(--space-block-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  border: none;
  line-height: 1;
  position: relative;
  color: var(--color-light);
}
.q-product .filter-btn::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/cmn/c-arr_filter-btn.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.q-product .filter-btn.is-show::before {
  transform: translateY(-50%) scale(1, -1);
}
.q-product .c-card_product__name {
  margin-block-end: var(--space-block-xs);
}

.q-top_mv .mv {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.q-top_mv .mv__bg video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}
.q-top_mv .mv__catch {
  padding-inline: var(--space-block-md);
  position: absolute;
  width: 100%;
  top: 43%;
  left: 50%;
  transform: translateX(-50%);
}
.q-top_mv .mv__catch .catch_l {
  max-width: 1030px;
  width: 100%;
  margin-inline: auto;
  margin-block-end: 28px;
  display: block;
}
@media (width <= 768px) {
  .q-top_mv .mv__catch .catch_l {
    max-width: 320px;
    margin-block-end: 16px;
  }
}
.q-top_mv .mv__catch .catch_m {
  max-width: 675px;
  width: 100%;
  margin-inline: auto;
  margin-block-end: 34px;
  display: block;
}
@media (width <= 768px) {
  .q-top_mv .mv__catch .catch_m {
    max-width: 240px;
    margin-block-end: 14px;
  }
}
.q-top_mv .mv__catch .catch_s {
  display: block;
  width: fit-content;
  margin-inline: auto;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4em;
  line-height: 24px;
  white-space: nowrap;
}
@media (width <= 768px) {
  .q-top_mv .mv__catch .catch_s {
    font-size: 13px;
    line-height: 19px;
  }
}

.q-top_about {
  position: relative;
  overflow: hidden;
}
.q-top_about .top-about-bg {
  width: 60%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media (width <= 768px) {
  .q-top_about .top-about-bg {
    top: 0;
    left: auto;
    right: 0;
    min-width: 380px;
  }
}
.q-top_about .top-about__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-inline-start: var(--space-block-sm);
  position: relative;
  z-index: 1;
}
@media (width <= 1120px) {
  .q-top_about .top-about__wrapper {
    grid-template-columns: 1.5fr 1fr;
  }
}
@media (width <= 768px) {
  .q-top_about .top-about__wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-block-md);
    padding-inline-start: 0;
  }
}
.q-top_about .top-about__content {
  width: 100%;
  max-width: 560px;
  margin: 0 0 0 auto;
  padding-inline-end: var(--space-block-sm);
}
@media (width <= 768px) {
  .q-top_about .top-about__content {
    max-width: 100%;
    padding-inline: var(--space-block-sm) 8px;
  }
}
.q-top_about .top-about__content .head {
  padding-block-start: var(--space-block-lg);
}
@media (width <= 768px) {
  .q-top_about .top-about__content .head {
    padding-block-start: var(--space-block-mmd);
  }
}
.q-top_about .top-about__content .head .en {
  font-family: var(--typography-EN-text-lg-font-family);
  font-weight: var(--typography-EN-text-lg-font-weight);
  font-size: var(--typography-EN-text-lg-font-size);
  line-height: var(--typography-EN-text-lg-line-height);
  --letter-spacing: var(--typography-EN-text-lg-letter-spacing);
}
.q-top_about .top-about__content .head .jp {
  font-family: var(--typography-text-sm-font-family);
  font-weight: var(--typography-text-sm-font-weight);
  font-size: var(--typography-text-sm-font-size);
  line-height: var(--typography-text-sm-line-height);
  --letter-spacing: var(--typography-text-sm-letter-spacing);
  margin-block-start: 7px;
  display: flex;
  gap: 7px;
  align-items: center;
}
.q-top_about .top-about__content .head .jp::after {
  content: "";
  width: 32px;
  height: 1px;
  background-color: var(--color-light);
}
.q-top_about .top-about__content .catch {
  font-family: var(--typography-text-lg-font-family);
  font-weight: var(--typography-text-lg-font-weight);
  font-size: var(--typography-text-lg-font-size);
  line-height: var(--typography-text-lg-line-height);
  --letter-spacing: var(--typography-text-lg-letter-spacing);
  line-height: 2;
}
@media (width <= 768px) {
  .q-top_about .top-about__content .catch {
    white-space: nowrap;
  }
}
.q-top_about .top-about__content .catch .red-bg {
  padding: 3px 9px;
}
@media (width <= 768px) {
  .q-top_about .top-about__content .catch .red-bg {
    padding: 3px 0px 3px 8px;
  }
}
.q-top_about .top-about__content .sentence {
  max-width: 510px;
}
.q-top_about .top-about__img {
  width: 100%;
  min-height: 710px;
}
@media (width <= 768px) {
  .q-top_about .top-about__img {
    padding-inline-start: var(--space-block-sm);
    min-height: 0;
  }
}
.q-top_about .top-about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  aspect-ratio: 340/309;
}

.q-top_product {
  background-image: url(../img/top/top_product-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.q-top_product .content_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-block-sm);
}
@media (width <= 1120px) {
  .q-top_product .content_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width <= 768px) {
  .q-top_product .content_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-block-sm) var(--space-block-xs);
  }
}

.q-top_case {
  position: relative;
}
.q-top_case .top-case__head {
  padding-inline: var(--space-block-sm);
}
.q-top_case .c-card_case {
  max-width: 350px;
  margin-inline: var(--space-block-sm);
}
@media (width <= 768px) {
  .q-top_case .c-card_case {
    max-width: 260px;
    margin-inline: 5px;
  }
}
.q-top_case .text-scroll {
  margin-block-start: var(--space-block-xl);
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  transform: translateY(57px);
}
@media (width <= 768px) {
  .q-top_case .text-scroll {
    margin-block-start: 47px;
  }
}
.q-top_case .text-scroll__content {
  display: inline-flex;
  gap: 0;
  animation: text-loop 60s linear infinite;
}
@media (width <= 768px) {
  .q-top_case .text-scroll__content {
    animation: text-loop 100s linear infinite;
  }
}
.q-top_case .text-scroll__content p {
  flex-shrink: 0;
  display: inline-block;
  font-family: var(--ff-en);
  font-size: 276px;
  line-height: 220px;
  font-weight: 500;
  letter-spacing: 0;
}
@media (width <= 768px) {
  .q-top_case .text-scroll__content p {
    font-size: 131px;
    line-height: 97px;
  }
}

@keyframes text-loop {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
.q-top_page-link {
  background-image: url(../img/top/top_page-linkbnr-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 52px 61px;
}
@media (width <= 768px) {
  .q-top_page-link {
    padding-block: 73px 61px;
  }
}
.q-top_page-link .top-page-link {
  width: 100%;
  max-width: 536px;
  height: 360px;
  display: flex;
  justify-content: center;
  padding-block-start: 96px;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  text-decoration: none;
  transition: background-size var(--sec);
}
@media (width <= 768px) {
  .q-top_page-link .top-page-link {
    max-width: 100%;
    height: auto;
    padding-block-start: var(--space-block-xs);
    aspect-ratio: 320/215;
    align-items: center;
  }
}
.q-top_page-link .top-page-link::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: var(--color-dark);
  opacity: 0.65;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: var(--sec);
}
.q-top_page-link .top-page-link__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  transition: var(--sec);
}
.q-top_page-link .top-page-link__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (width <= 900px) {
  .q-top_page-link .top-page-link__wrapper {
    gap: var(--space-block-xs);
  }
}
@media (width <= 768px) {
  .q-top_page-link .top-page-link__wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-block-sm);
  }
}
.q-top_page-link .top-page-link__arr {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 2;
}
@media (width <= 768px) {
  .q-top_page-link .top-page-link__arr {
    width: 33px;
    height: 33px;
    bottom: 15px;
    right: 15px;
  }
}
.q-top_page-link .top-page-link__head {
  position: relative;
  z-index: 2;
}
.q-top_page-link .top-page-link:hover img {
  opacity: 1;
}
@media (width > 768px) {
  .q-top_page-link .top-page-link:hover::before {
    opacity: 0.2;
  }
  .q-top_page-link .top-page-link:hover .top-page-link__img {
    scale: var(--zoom);
  }
}

