@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._xxs {
  height: var(--space-block-xxs);
}
.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-spacer._xxs-trim {
  height: var(--space-block-xxs-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: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 50px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: block;
  text-decoration: none;
  transition: var(--sec);
}
:where(.wp-block-post-content, .wp-gutenberg) {
  font-size: 1rem;
  line-height: 2;
  --wp--preset--font-size--small: rem(14);
  --wp--preset--font-size--medium: rem(16);
  --wp--preset--font-size--large: rem(18);
  --wp--preset--font-size--x-large: rem(20);
}
: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: 40px;
}

.wp-block-heading {
  margin-bottom: 40px;
  border-bottom: 2px solid;
  font-weight: 700;
}

h2.wp-block-heading {
  font-size: 1.5rem;
}

h3.wp-block-heading {
  font-size: 1.375rem;
}

h4.wp-block-heading {
  font-size: 1.25rem;
}

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

h6.wp-block-heading {
  font-size: 1rem;
}

: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__list {
  word-break: break-all;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-bread__list > li {
  display: inline;
  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-bread__list > li a {
  text-decoration: underline;
  position: relative;
  isolation: isolate;
  transition: var(--sec);
}
.c-bread__list > li a::before {
  content: "";
  position: absolute;
  inset: -12px -10px;
  z-index: -10;
}
@media (width > 768px) {
  .c-bread__list > li a:hover {
    opacity: var(--opacity);
  }
}
.c-bread__list > li + li:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  transform: translateY(-5px);
  border-radius: 50%;
  margin-inline: var(--space-block-xs);
  background-color: var(--color-base);
}

.c-pagetitle {
  color: var(--color-primary);
}
.c-pagetitle__name {
  font-family: var(--typography-std_jp_xxxl_bold-font-family);
  font-weight: var(--typography-std_jp_xxxl_bold-font-weight);
  font-size: var(--typography-std_jp_xxxl_bold-font-size);
  line-height: var(--typography-std_jp_xxxl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xxxl_bold-letter-spacing);
  text-align: center;
}
@media (width <= 768px) {
  .c-pagetitle__name {
    font-size: 46px;
    line-height: 64px;
    letter-spacing: 0;
  }
}
.c-pagetitle__catch {
  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);
  text-align: center;
}
@media (width <= 768px) {
  .c-pagetitle__catch {
    line-height: 42px;
  }
}
.c-pagetitle._white {
  color: var(--color-light);
}

.c-page-head {
  margin-block-start: 120px;
}
@media (width <= 1100px) {
  .c-page-head {
    margin-block-start: 60px;
  }
}
@media (width <= 768px) {
  .c-page-head {
    margin-block-start: 70px;
  }
}

.c-anime-feadin {
  --delay: 0.2s;
  opacity: 0;
  transform: translateY(24px);
  transition: var(--sec) ease-out var(--delay);
}
.c-anime-feadin._up-01 {
  --delay: 0.2s ;
}
.c-anime-feadin._up-02 {
  --delay: 0.4s ;
}
.c-anime-feadin._up-03 {
  --delay: 0.6s ;
}
.c-anime-feadin._up-04 {
  --delay: 0.8s ;
}
.c-anime-feadin._up-05 {
  --delay: 1s ;
}

.c-anime-feadin.on {
  opacity: 1;
  transform: translateY(0);
}

.c-anime__arc {
  width: fit-content;
  offset-distance: 0;
  offset-path: path("M 70 -80 C 30 -20, 10 0, 0 0");
  offset-rotate: 0deg;
  opacity: 0;
  transition: var(--sec);
}
.c-anime__arc.on {
  animation: arc 2.5s ease-out forwards;
  opacity: 1;
}
.c-anime__float {
  animation: float 2s ease-in-out infinite alternate;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-12px);
  }
}
@keyframes arc {
  to {
    offset-distance: 100%;
  }
}
.c-btn {
  width: 208px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  position: relative;
  transition: var(--sec);
  text-decoration: none;
}
.c-btn._corporate {
  padding-inline-start: 20px;
  background-color: var(--color-primary);
  color: var(--color-light);
  border: 1px solid var(--color-primary);
}
.c-btn._corporate svg {
  color: var(--color-light);
}
.c-btn._saiyo {
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  justify-content: center;
}
.c-btn svg {
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
  transition: var(--sec);
}
@media (width > 768px) {
  .c-btn:hover._corporate {
    opacity: var(--opacity);
  }
  .c-btn:hover._saiyo {
    opacity: var(--opacity);
  }
}

.c-btn-circle {
  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);
  display: flex;
  gap: var(--space-block-xs);
  align-items: center;
  text-decoration: none;
  width: fit-content;
}
.c-btn-circle__btn {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.c-btn-circle__arr {
  display: block;
  width: 20px;
  height: 18px;
  overflow: hidden;
  background-image: url(../img/cmn/c-icon_arr.svg);
  background-position: center;
  background-repeat: repeat-x;
  transition: var(--sec);
}
.c-btn-circle._green {
  color: var(--color-primary);
}
.c-btn-circle._green .c-btn-circle__btn {
  background-color: var(--color-primary);
}
.c-btn-circle._white {
  color: var(--color-light);
}
.c-btn-circle._white .c-btn-circle__btn {
  border: 1px solid var(--color-light);
}
.c-btn-circle._center {
  margin: 0 auto;
}
@media (width > 768px) {
  .c-btn-circle:hover .c-btn-circle__arr {
    background-position-x: 20px;
  }
}

.c-hover-card__zoom-img {
  overflow: hidden;
}
.c-hover-card__zoom-img img {
  transition: var(--sec);
}
.c-hover-card__color {
  transition: var(--sec);
}
.c-hover-card:hover {
  text-decoration: none;
}
.c-hover-card:hover .c-hover-card__zoom-img img {
  opacity: 1;
}
@media (width > 768px) {
  .c-hover-card:hover .c-hover-card__zoom-img img {
    scale: var(--zoom);
  }
}
@media (width > 768px) {
  .c-hover-card:hover .c-hover-card__color {
    color: var(--color-primary);
  }
}

.js-anchor-link {
  transition: var(--sec);
}
.js-anchor-link.is-active {
  color: var(--color-primary);
}

.c-h2 {
  font-family: var(--typography-std_jp_xxl_bold-font-family);
  font-weight: var(--typography-std_jp_xxl_bold-font-weight);
  font-size: var(--typography-std_jp_xxl_bold-font-size);
  line-height: var(--typography-std_jp_xxl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_bold-letter-spacing);
  margin-block-end: var(--space-block-md);
}

.c-head-h2 {
  margin-block-end: var(--space-block-md);
}
@media (width <= 768px) {
  .c-head-h2._sp-center {
    text-align: center;
  }
}
.c-head-h2__en {
  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);
  margin-block-end: var(--space-block-xxs);
  color: var(--color-primary);
}
.c-head-h2__jp {
  font-family: var(--typography-std_jp_xxl_bold-font-family);
  font-weight: var(--typography-std_jp_xxl_bold-font-weight);
  font-size: var(--typography-std_jp_xxl_bold-font-size);
  line-height: var(--typography-std_jp_xxl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_bold-letter-spacing);
}
.c-head-h2._white .c-head-h2__jp {
  color: var(--color-light);
}
.c-head-h2._white .c-head-h2__en {
  color: var(--color-light);
}
.c-head-h2._center {
  text-align: center;
}

.c-text_accent {
  font-family: var(--typography-std_jp_xl_bold-font-family);
  font-weight: var(--typography-std_jp_xl_bold-font-weight);
  font-size: var(--typography-std_jp_xl_bold-font-size);
  line-height: var(--typography-std_jp_xl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold-letter-spacing);
}
.c-text_accent._white {
  color: var(--color-light);
}
@media (width <= 768px) {
  .c-text_accent._sp-center {
    text-align: center;
  }
}

.c-text {
  font-family: var(--typography-std_jp_medium-font-family);
  font-weight: var(--typography-std_jp_medium-font-weight);
  font-size: var(--typography-std_jp_medium-font-size);
  line-height: var(--typography-std_jp_medium-line-height);
  --letter-spacing: var(--typography-std_jp_medium-letter-spacing);
}
.c-text._white {
  color: var(--color-light);
}
.c-text._center {
  text-align: center;
}

.c-bg__gry {
  background-color: var(--color-bg-ash);
}

.p-buds .buds {
  max-width: 1320px;
  padding-inline-end: 40px;
  margin: 0 auto;
  display: flex;
  gap: var(--space-block-md);
}
@media (width <= 768px) {
  .p-buds .buds {
    flex-flow: column;
    padding-inline-end: 0;
  }
}
.p-buds .buds__content {
  max-width: 480px;
  min-width: 350px;
}
@media (width > 768px) {
  .p-buds .buds__content {
    margin-block-start: var(--space-block-lg);
    margin-block-end: var(--space-block-xs);
  }
}
@media (width <= 768px) {
  .p-buds .buds__content {
    margin-block-end: var(--space-block-lg);
    padding-inline: 25px;
    max-width: 100%;
    min-width: 0;
  }
}
.p-buds .buds__main-illust {
  display: flex;
  justify-content: end;
  overflow: hidden;
}
.p-buds .buds__main-illust .illust {
  width: 704px;
}
@media (width <= 768px) {
  .p-buds .buds__main-illust .illust {
    min-width: 460px;
    width: 100%;
  }
}

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

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

[data-sa-trigger=fadeInUp].is-show {
  --sa-opacity: 1;
  --sa-transform: translate(0, 0);
}

[data-sa-group=fadeInUp] {
  opacity: var(--sa-opacity, 0);
  transform: var(--sa-transform, translate(0, 40px));
  transition-property: opacity, transform;
  transition-duration: var(--sec);
}

.u-Tdelay0 {
  transition-delay: 0s !important;
}

.u-Adelay0 {
  animation-delay: 0s !important;
}

.u-Tdelay1 {
  transition-delay: 0.1s !important;
}

.u-Adelay1 {
  animation-delay: 0.1s !important;
}

.u-Tdelay2 {
  transition-delay: 0.2s !important;
}

.u-Adelay2 {
  animation-delay: 0.2s !important;
}

.u-Tdelay3 {
  transition-delay: 0.3s !important;
}

.u-Adelay3 {
  animation-delay: 0.3s !important;
}

.u-Tdelay4 {
  transition-delay: 0.4s !important;
}

.u-Adelay4 {
  animation-delay: 0.4s !important;
}

.u-Tdelay5 {
  transition-delay: 0.5s !important;
}

.u-Adelay5 {
  animation-delay: 0.5s !important;
}

.u-Tdelay6 {
  transition-delay: 0.6s !important;
}

.u-Adelay6 {
  animation-delay: 0.6s !important;
}

.u-Tdelay7 {
  transition-delay: 0.7s !important;
}

.u-Adelay7 {
  animation-delay: 0.7s !important;
}

.u-Tdelay8 {
  transition-delay: 0.8s !important;
}

.u-Adelay8 {
  animation-delay: 0.8s !important;
}

.u-Tdelay9 {
  transition-delay: 0.9s !important;
}

.u-Adelay9 {
  animation-delay: 0.9s !important;
}

.u-Tdelay10 {
  transition-delay: 1s !important;
}

.u-Adelay10 {
  animation-delay: 1s !important;
}

.u-Tdelay11 {
  transition-delay: 1.1s !important;
}

.u-Adelay11 {
  animation-delay: 1.1s !important;
}

.u-Tdelay12 {
  transition-delay: 1.2s !important;
}

.u-Adelay12 {
  animation-delay: 1.2s !important;
}

.u-Tdelay13 {
  transition-delay: 1.3s !important;
}

.u-Adelay13 {
  animation-delay: 1.3s !important;
}

.u-Tdelay14 {
  transition-delay: 1.4s !important;
}

.u-Adelay14 {
  animation-delay: 1.4s !important;
}

.u-Tdelay15 {
  transition-delay: 1.5s !important;
}

.u-Adelay15 {
  animation-delay: 1.5s !important;
}

.u-Tdelay16 {
  transition-delay: 1.6s !important;
}

.u-Adelay16 {
  animation-delay: 1.6s !important;
}

.u-Tdelay17 {
  transition-delay: 1.7s !important;
}

.u-Adelay17 {
  animation-delay: 1.7s !important;
}

.u-Tdelay18 {
  transition-delay: 1.8s !important;
}

.u-Adelay18 {
  animation-delay: 1.8s !important;
}

.u-Tdelay19 {
  transition-delay: 1.9s !important;
}

.u-Adelay19 {
  animation-delay: 1.9s !important;
}

.u-Tdelay20 {
  transition-delay: 2s !important;
}

.u-Adelay20 {
  animation-delay: 2s !important;
}

.u-Tdelay21 {
  transition-delay: 2.1s !important;
}

.u-Adelay21 {
  animation-delay: 2.1s !important;
}

.u-Tdelay22 {
  transition-delay: 2.2s !important;
}

.u-Adelay22 {
  animation-delay: 2.2s !important;
}

.u-Tdelay23 {
  transition-delay: 2.3s !important;
}

.u-Adelay23 {
  animation-delay: 2.3s !important;
}

.u-Tdelay24 {
  transition-delay: 2.4s !important;
}

.u-Adelay24 {
  animation-delay: 2.4s !important;
}

.u-Tdelay25 {
  transition-delay: 2.5s !important;
}

.u-Adelay25 {
  animation-delay: 2.5s !important;
}

.u-Tdelay26 {
  transition-delay: 2.6s !important;
}

.u-Adelay26 {
  animation-delay: 2.6s !important;
}

.u-Tdelay27 {
  transition-delay: 2.7s !important;
}

.u-Adelay27 {
  animation-delay: 2.7s !important;
}

.u-Tdelay28 {
  transition-delay: 2.8s !important;
}

.u-Adelay28 {
  animation-delay: 2.8s !important;
}

.u-Tdelay29 {
  transition-delay: 2.9s !important;
}

.u-Adelay29 {
  animation-delay: 2.9s !important;
}

.u-Tdelay30 {
  transition-delay: 3s !important;
}

.u-Adelay30 {
  animation-delay: 3s !important;
}

.u-Tdelay31 {
  transition-delay: 3.1s !important;
}

.u-Adelay31 {
  animation-delay: 3.1s !important;
}

.u-Tdelay32 {
  transition-delay: 3.2s !important;
}

.u-Adelay32 {
  animation-delay: 3.2s !important;
}

.u-Tdelay33 {
  transition-delay: 3.3s !important;
}

.u-Adelay33 {
  animation-delay: 3.3s !important;
}

.u-Tdelay34 {
  transition-delay: 3.4s !important;
}

.u-Adelay34 {
  animation-delay: 3.4s !important;
}

.u-Tdelay35 {
  transition-delay: 3.5s !important;
}

.u-Adelay35 {
  animation-delay: 3.5s !important;
}

.u-Tdelay36 {
  transition-delay: 3.6s !important;
}

.u-Adelay36 {
  animation-delay: 3.6s !important;
}

.u-Tdelay37 {
  transition-delay: 3.7s !important;
}

.u-Adelay37 {
  animation-delay: 3.7s !important;
}

.u-Tdelay38 {
  transition-delay: 3.8s !important;
}

.u-Adelay38 {
  animation-delay: 3.8s !important;
}

.u-Tdelay39 {
  transition-delay: 3.9s !important;
}

.u-Adelay39 {
  animation-delay: 3.9s !important;
}

.u-Tdelay40 {
  transition-delay: 4s !important;
}

.u-Adelay40 {
  animation-delay: 4s !important;
}

.u-Tdelay41 {
  transition-delay: 4.1s !important;
}

.u-Adelay41 {
  animation-delay: 4.1s !important;
}

.u-Tdelay42 {
  transition-delay: 4.2s !important;
}

.u-Adelay42 {
  animation-delay: 4.2s !important;
}

.u-Tdelay43 {
  transition-delay: 4.3s !important;
}

.u-Adelay43 {
  animation-delay: 4.3s !important;
}

.u-Tdelay44 {
  transition-delay: 4.4s !important;
}

.u-Adelay44 {
  animation-delay: 4.4s !important;
}

.u-Tdelay45 {
  transition-delay: 4.5s !important;
}

.u-Adelay45 {
  animation-delay: 4.5s !important;
}

.u-Tdelay46 {
  transition-delay: 4.6s !important;
}

.u-Adelay46 {
  animation-delay: 4.6s !important;
}

.u-Tdelay47 {
  transition-delay: 4.7s !important;
}

.u-Adelay47 {
  animation-delay: 4.7s !important;
}

.u-Tdelay48 {
  transition-delay: 4.8s !important;
}

.u-Adelay48 {
  animation-delay: 4.8s !important;
}

.u-Tdelay49 {
  transition-delay: 4.9s !important;
}

.u-Adelay49 {
  animation-delay: 4.9s !important;
}

.u-Tdelay50 {
  transition-delay: 5s !important;
}

.u-Adelay50 {
  animation-delay: 5s !important;
}

/*全画面*/
.g-wrapper.no-scroll {
  height: 100vh;
  overflow: hidden;
  /* スクロールを禁止 */
}

/*ヘッダー*/
.g-header {
  position: absolute;
  width: 100%;
  padding-inline: 40px;
  display: flex;
  justify-content: space-between;
  top: 0;
  left: 0;
  z-index: 100;
}
@media (width > 768px) {
  .g-header {
    overflow: hidden;
  }
}
.g-header .haeder_logo {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9999;
  gap: 19px;
  text-decoration: none;
}
.g-header .haeder_logo__bottom img {
  width: 222px;
}
.g-header .haeder_logo__bottom-text {
  font-family: var(--ff-accent-jp);
  margin-block-start: var(--space-block-xxs);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  white-space: nowrap;
  transition: var(--sec);
  white-space: nowrap;
  display: block;
}
@media (width > 768px) {
  .g-header .haeder_logo:hover .haeder_logo__bottom-text {
    opacity: var(--opacity);
  }
}
.g-header .header-menu {
  padding-block-start: var(--space-block-md);
  transition: var(--sec);
}
.g-header .header-menu__list {
  display: flex;
  flex-flow: column;
  gap: var(--space-block-xs);
}
.g-header .header-menu__list a {
  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-decoration: none;
}
.g-header .header-menu__link {
  transition: var(--sec);
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  isolation: isolate;
}
.g-header .header-menu__link::after {
  content: "";
  position: absolute;
  inset: -9px 0;
  z-index: -10;
}
.g-header .header-menu__link::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
}
@media (width > 768px) {
  .g-header .header-menu__link:hover {
    color: var(--color-primary);
  }
}

.g-header.scroll-in {
  position: fixed;
  animation: headerSlideDown 1s ease forwards;
  transition: var(--sec) ease-in-out;
  padding-inline-start: 0;
  align-items: center;
  background-color: var(--color-light);
}
@media (width <= 1100px) {
  .g-header.scroll-in {
    padding-inline-end: 20px;
  }
}
.g-header.scroll-in .haeder_logo {
  gap: 30px;
  flex-flow: row;
}
@media (width <= 1100px) {
  .g-header.scroll-in .haeder_logo {
    gap: 10px;
  }
}
.g-header.scroll-in .haeder_logo__icon {
  width: 120px;
}
@media (width <= 1100px) {
  .g-header.scroll-in .haeder_logo__icon {
    width: 60px;
  }
}
.g-header.scroll-in .haeder_logo__bottom {
  display: grid;
}
.g-header.scroll-in .haeder_logo__bottom img {
  width: 240px;
}
@media (width <= 1100px) {
  .g-header.scroll-in .haeder_logo__bottom img {
    width: 120px;
  }
}
.g-header.scroll-in .haeder_logo__bottom-text {
  font-size: 16px;
  white-space: nowrap;
}
@media (width <= 1100px) {
  .g-header.scroll-in .haeder_logo__bottom-text {
    font-size: 10px;
    margin-block-start: 4px;
  }
}
.g-header.scroll-in .header-menu {
  padding-block-start: 0;
}
.g-header.scroll-in .header-menu__list {
  flex-flow: row;
  align-items: center;
}
@media (width <= 1100px) {
  .g-header.scroll-in .header-menu__list {
    gap: var(--space-block-xxs);
  }
  .g-header.scroll-in .header-menu__list a {
    font-size: 14px;
    gap: 3px;
    line-height: 1;
  }
  .g-header.scroll-in .header-menu__list .c-btn {
    width: 175px;
    padding-inline-start: 10px;
  }
}

.g-header._kasou {
  position: fixed;
  padding-inline-start: 0;
  align-items: center;
  background-color: var(--color-light);
}
@media (width <= 1100px) {
  .g-header._kasou {
    padding-inline-end: 20px;
  }
}
@media (width <= 768px) {
  .g-header._kasou {
    padding-inline-end: 0;
  }
}
.g-header._kasou .haeder_logo {
  flex-direction: row;
  gap: 30px;
}
@media (width <= 1100px) {
  .g-header._kasou .haeder_logo {
    gap: 10px;
  }
}
.g-header._kasou .haeder_logo__icon {
  width: 120px;
}
@media (width <= 1100px) {
  .g-header._kasou .haeder_logo__icon {
    width: 60px;
  }
}
.g-header._kasou .haeder_logo__bottom {
  display: grid;
}
.g-header._kasou .haeder_logo__bottom img {
  width: 240px;
}
@media (width <= 1100px) {
  .g-header._kasou .haeder_logo__bottom img {
    width: 120px;
  }
}
.g-header._kasou .haeder_logo__bottom-text {
  font-size: 16px;
  white-space: nowrap;
}
@media (width <= 1100px) {
  .g-header._kasou .haeder_logo__bottom-text {
    font-size: 10px;
    margin-block-start: 4px;
  }
}
.g-header._kasou .header-menu {
  padding-block-start: 0;
}
.g-header._kasou .header-menu__list {
  flex-flow: row;
  align-items: center;
}
@media (width <= 1100px) {
  .g-header._kasou .header-menu__list {
    gap: var(--space-block-xxs);
  }
  .g-header._kasou .header-menu__list a {
    font-size: 14px;
    gap: 3px;
    line-height: 1;
  }
  .g-header._kasou .header-menu__list .c-btn {
    width: 175px;
    padding-inline-start: 10px;
  }
}

@media (width <= 768px) {
  .g-header, .g-header._kasou {
    padding-inline: 0;
    min-width: 320px;
    position: fixed;
    background-color: var(--color-light);
  }
  .g-header .haeder_logo, .g-header._kasou .haeder_logo {
    flex-flow: row;
    gap: 10px;
  }
  .g-header .haeder_logo__icon, .g-header._kasou .haeder_logo__icon {
    width: 70px;
  }
  .g-header .haeder_logo__bottom, .g-header._kasou .haeder_logo__bottom {
    width: 120px;
    display: grid;
  }
  .g-header .haeder_logo__bottom-text, .g-header._kasou .haeder_logo__bottom-text {
    margin-block-start: 4px;
    font-size: 10px;
    white-space: nowrap;
  }
  .g-header .header-menu, .g-header._kasou .header-menu {
    width: 100%;
    height: 100vh;
    padding-block-start: 0;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    top: 0;
    left: 0;
    opacity: 0;
    transition: var(--sec);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    gap: var(--space-block-md);
  }
  .g-header .header-menu__list, .g-header._kasou .header-menu__list {
    flex-direction: column;
    display: flex;
    flex-flow: column;
    gap: 0;
  }
  .g-header .header-menu__list a, .g-header._kasou .header-menu__list a {
    text-decoration: none;
  }
  .g-header .header-menu__link, .g-header._kasou .header-menu__link {
    margin-block-end: var(--space-block-xs);
  }
  .g-header .header-menu__btn, .g-header._kasou .header-menu__btn {
    margin-block-end: var(--space-block-xxs);
  }
  .g-header .header-menu__sns-sp, .g-header._kasou .header-menu__sns-sp {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .g-header .header-menu.is-open, .g-header._kasou .header-menu.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .g-header .hamburger, .g-header._kasou .hamburger {
    width: 70px;
    height: 70px;
    padding-block-start: 21px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background-color: var(--color-primary);
    position: relative;
    z-index: 120;
  }
  .g-header .hamburger span, .g-header._kasou .hamburger span {
    display: block;
    width: 41px;
    height: 1px;
    background: var(--color-light);
    transition: var(--sec);
  }
  .g-header .hamburger .hamburger__label, .g-header._kasou .hamburger .hamburger__label {
    font-size: 12px;
    color: var(--color-light);
    transition: var(--sec);
  }
  .g-header .hamburger .hamburger__label::after, .g-header._kasou .hamburger .hamburger__label::after {
    content: "Menu";
    font-family: var(--typography-std_en_small_bold-font-family);
    font-weight: var(--typography-std_en_small_bold-font-weight);
    font-size: var(--typography-std_en_small_bold-font-size);
    line-height: var(--typography-std_en_small_bold-line-height);
    --letter-spacing: var(--typography-std_en_small_bold-letter-spacing);
    position: absolute;
    font-size: 12px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    transition: var(--sec);
  }
  .g-header .hamburger.active span:nth-child(1), .g-header._kasou .hamburger.active span:nth-child(1) {
    transform: translateY(3px) rotate(10deg);
  }
  .g-header .hamburger.active span:nth-child(2), .g-header._kasou .hamburger.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-10deg);
  }
  .g-header .hamburger.active .hamburger__label::after, .g-header._kasou .hamburger.active .hamburger__label::after {
    content: "Close";
    z-index: 1000;
  }
}
@keyframes headerSlideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  50% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*フッター*/
.g-footer .footer {
  display: flex;
  justify-content: space-between;
  gap: var(--space-block-xs);
}
@media (width <= 768px) {
  .g-footer .footer {
    flex-direction: column;
  }
}
.g-footer .footer__content-wrapper {
  padding-inline: var(--space-block-md);
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}
@media (width <= 768px) {
  .g-footer .footer__content-wrapper {
    padding-inline: 0;
  }
}
.g-footer .footer__content {
  width: 222px;
  min-width: 222px;
}
@media (530px < width <= 768px) {
  .g-footer .footer__content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-inline: var(--space-block-md);
    gap: var(--space-block-xxs);
  }
}
@media (width <= 530px) {
  .g-footer .footer__content {
    width: 222px;
    margin: 0 auto;
  }
}
.g-footer .footer__logo {
  display: block;
  width: fit-content;
  text-decoration: none;
  transition: var(--sec);
}
.g-footer .footer__logo .icon {
  width: 222px;
  margin-block-end: 19px;
}
.g-footer .footer__logo .info {
  width: fit-content;
}
.g-footer .footer__logo .logo-text {
  width: 222px;
  margin-block-end: 14px;
}
.g-footer .footer__logo .text {
  font-family: var(--ff-accent-jp);
  font-weight: 700;
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  white-space: nowrap;
}
.g-footer .footer__logo:hover img {
  opacity: 1;
}
@media (width > 768px) {
  .g-footer .footer__logo:hover {
    opacity: var(--opacity);
  }
}
@media (530px < width <= 768px) {
  .g-footer .footer__nav {
    margin-block-start: var(--space-block-md);
  }
}
.g-footer .footer__nav ul.text-link {
  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-decoration: underline;
  text-align: center;
}
.g-footer .footer__nav ul.text-link a {
  transition: var(--sec);
}
@media (width > 768px) {
  .g-footer .footer__nav ul.text-link a:hover {
    color: var(--color-primary);
  }
}
.g-footer .footer__nav ul.btn-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-block-xxs);
}
.g-footer .footer__nav ul.btn-link a {
  margin: 0 auto;
}
.g-footer .footer__nav ul.sns-link {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (width <= 768px) {
  .g-footer .footer__nav ul.sns-link {
    gap: 32px;
  }
}
.g-footer .footer__nav ul.sns-link img {
  width: 30px;
}
@media (width <= 768px) {
  .g-footer .footer__nav ul.sns-link img {
    width: 52px;
  }
}
.g-footer .footer__copy {
  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);
  text-align: center;
}
.g-footer .footer__illust {
  margin-block-start: var(--space-block-xs);
}
@media (width <= 768px) {
  .g-footer .footer__illust {
    width: 100%;
    padding-inline: 5px;
  }
  .g-footer .footer__illust img {
    width: 100%;
  }
}
.g-footer .pagetop {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  position: absolute;
  top: 313px;
  right: 40px;
}
@media (width <= 768px) {
  .g-footer .pagetop {
    position: static;
    margin: 0 auto;
    margin-block-start: var(--space-block-xs);
  }
}
.g-footer .pagetop__arr {
  display: block;
  width: 20px;
  height: 18px;
  overflow: hidden;
  background-image: url(../img/cmn/c-icon_arr_black.svg);
  background-position: center;
  background-repeat: repeat-y;
  transition: var(--sec);
  color: var(--color-dark);
}
@media (width > 768px) {
  .g-footer .pagetop:hover .pagetop__arr {
    background-position-y: -20px;
  }
}
.g-footer .footer-bottom-text {
  padding-inline: var(--space-block-md);
  margin-block-start: var(--space-block-xs);
  font-family: var(--ff-accent-jp);
  font-size: 62px;
  line-height: 124px;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-align: center;
  color: var(--color-primary);
}
@media (width <= 768px) {
  .g-footer .footer-bottom-text {
    margin-block-start: 16px;
    padding-inline: 5px;
    font-size: 30px;
    line-height: 49px;
  }
}

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

.q-about_head {
  padding-block-end: 13px;
  background-color: var(--color-primary);
  position: relative;
  z-index: 1;
}
@media (width <= 768px) {
  .q-about_head {
    overflow: hidden;
    padding-block-end: 22px;
  }
}
.q-about_head::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80px;
  background-color: #31804E;
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media (width <= 768px) {
  .q-about_head h1 {
    white-space: nowrap;
  }
}
.q-about_head .c-bread__list {
  color: var(--color-light);
}
.q-about_head .c-bread__list > li + li:before {
  background-color: var(--color-light);
}
.q-about_head .head-illust._01 {
  width: 600px;
}
@media (width <= 768px) {
  .q-about_head .head-illust._01 {
    min-width: 265px;
  }
}
.q-about_head .head-illust._02 {
  width: 560px;
}
@media (width <= 768px) {
  .q-about_head .head-illust._02 {
    min-width: 247px;
  }
}
.q-about_head .head-illust__group {
  display: flex;
  max-width: 1320px;
  margin: 0 auto;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
@media (width <= 768px) {
  .q-about_head .head-illust__group {
    min-width: 512px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

.q-about_tree {
  overflow: hidden;
}
.q-about_tree .history-tree {
  padding-block: var(--space-block-xl) 130px;
  position: relative;
}
@media (width <= 768px) {
  .q-about_tree .history-tree {
    padding-block: var(--space-block-md) 0;
  }
}
.q-about_tree .history-tree__illust {
  position: absolute;
  min-width: 1488px;
  width: 1488px;
  top: 0;
  right: 212px;
}
@media (width <= 1120px) {
  .q-about_tree .history-tree__illust {
    right: 0;
  }
}
@media (width <= 768px) {
  .q-about_tree .history-tree__illust {
    min-width: 914px;
    top: -7px;
    right: auto;
    left: 50%;
    transform: translateX(-64%);
  }
}
.q-about_tree .history-tree__list {
  list-style: none;
}
@media (width <= 768px) {
  .q-about_tree .history-tree__list {
    width: fit-content;
    margin: 0 auto;
    margin-block-end: 90px;
  }
}
.q-about_tree .history-tree__list li {
  width: fit-content;
  margin: 0 0 0 auto;
}
@media (width <= 768px) {
  .q-about_tree .history-tree__list li {
    margin: 0;
    margin-block-end: 12px;
  }
}
.q-about_tree .history-tree__list li:nth-child(1) {
  margin-inline-end: 150px;
}
@media (width <= 768px) {
  .q-about_tree .history-tree__list li:nth-child(1) {
    margin-inline-end: 0;
  }
}
.q-about_tree .history-tree__list li:nth-child(2) {
  margin-inline-end: 100px;
}
@media (width <= 768px) {
  .q-about_tree .history-tree__list li:nth-child(2) {
    margin-inline-end: 0;
    margin-inline-start: 50px;
  }
}
.q-about_tree .history-tree__list li:nth-child(3) {
  margin-inline-end: 50px;
}
@media (width <= 768px) {
  .q-about_tree .history-tree__list li:nth-child(3) {
    margin-inline-end: 0;
    margin-inline-start: 100px;
  }
}
.q-about_tree .history-tree__list li:nth-child(4) {
  margin-inline-end: 0;
}
@media (width <= 768px) {
  .q-about_tree .history-tree__list li:nth-child(4) {
    margin-inline-end: 0;
    margin-inline-start: 150px;
  }
}
@media (width <= 768px) {
  .q-about_tree .history-tree__list-diff_sp li {
    margin-block-end: 34px;
  }
  .q-about_tree .history-tree__list-diff_sp li:last-child {
    margin-block-end: 0;
  }
}
.q-about_tree .history-tree__link {
  max-width: 780px;
  display: flex;
  align-items: center;
  margin-block-end: 20px;
  position: relative;
  text-decoration: none;
  transition: var(--sec);
}
@media (width <= 1120px) {
  .q-about_tree .history-tree__link {
    max-width: 550px;
  }
}
@media (width <= 768px) {
  .q-about_tree .history-tree__link {
    max-width: 100%;
    margin-block-end: 14px;
  }
  .q-about_tree .history-tree__link:last-child {
    margin-block-end: 0;
  }
}
.q-about_tree .history-tree__link:hover img {
  opacity: 1;
}
@media (width > 768px) {
  .q-about_tree .history-tree__link:hover {
    opacity: var(--opacity);
  }
}
.q-about_tree .history-tree__link::after {
  content: "";
  position: absolute;
  left: 0;
  width: 220px;
  height: 4px;
  background-color: var(--color-light);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
@media (width <= 1120px) {
  .q-about_tree .history-tree__link::after {
    width: 180px;
  }
}
@media (width <= 768px) {
  .q-about_tree .history-tree__link::after {
    display: none;
  }
}
.q-about_tree .history-tree__period {
  font-family: var(--typography-std_jp_xl_bold-font-family);
  font-weight: var(--typography-std_jp_xl_bold-font-weight);
  font-size: var(--typography-std_jp_xl_bold-font-size);
  line-height: var(--typography-std_jp_xl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold-letter-spacing);
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: var(--color-light);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
@media (width <= 768px) {
  .q-about_tree .history-tree__period {
    width: 100px;
    height: 100px;
  }
  .q-about_tree .history-tree__period._diff {
    position: absolute;
    z-index: 3;
    top: -14px;
    left: 0;
  }
}
.q-about_tree .history-tree__card {
  flex-grow: 1;
  background-color: var(--color-light);
  border-radius: 10px;
  margin-inline-start: var(--space-block-lg);
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
@media (width <= 1120px) {
  .q-about_tree .history-tree__card {
    margin-inline-start: var(--space-block-xs);
  }
}
@media (width <= 768px) {
  .q-about_tree .history-tree__card {
    flex-direction: column;
    margin-inline-start: 0;
  }
}
.q-about_tree .history-tree__card .text-group {
  padding: var(--space-block-xs) var(--space-block-xs) var(--space-block-xs) var(--space-block-md);
  flex: 1;
}
@media (width <= 768px) {
  .q-about_tree .history-tree__card .text-group {
    padding: 19px 32px 11px 0;
  }
}
.q-about_tree .history-tree__card .titile {
  color: var(--color-primary);
  font-family: var(--typography-std_jp_xl_bold-font-family);
  font-weight: var(--typography-std_jp_xl_bold-font-weight);
  font-size: var(--typography-std_jp_xl_bold-font-size);
  line-height: var(--typography-std_jp_xl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold-letter-spacing);
}
@media (width <= 768px) {
  .q-about_tree .history-tree__card .titile {
    padding-inline-start: 112px;
    margin-block-end: 42px;
  }
}
.q-about_tree .history-tree__card .text {
  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 <= 768px) {
  .q-about_tree .history-tree__card .text {
    padding-inline-start: 32px;
  }
}
.q-about_tree .history-tree__card img {
  flex-shrink: 0;
  width: 240px;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (width <= 1120px) {
  .q-about_tree .history-tree__card img {
    width: 120px;
  }
}
@media (width <= 768px) {
  .q-about_tree .history-tree__card img {
    width: 100%;
    aspect-ratio: 324/194;
  }
}

.q-about_history {
  position: relative;
}
.q-about_history::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 130px);
  background-color: var(--color-bg-ash);
  z-index: -2;
  bottom: 0;
  left: 0;
}
@media (width <= 768px) {
  .q-about_history::before {
    height: calc(100% - 50px);
  }
}
.q-about_history .about-history-head {
  position: relative;
  overflow: hidden;
}
.q-about_history .about-history-head::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 112px;
  background-image: url(../img/about/history_bg-curve.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  top: 43px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
}
@media (width <= 768px) {
  .q-about_history .about-history-head::before {
    min-width: 562px;
    height: 44px;
    top: 15px;
  }
}
.q-about_history .about-history-head__illust-group {
  max-width: 1400px;
  margin: 0 auto;
}
.q-about_history .about-history-head__front {
  margin-block-start: -92px;
  padding-inline: var(--space-block-md);
}
@media (width <= 768px) {
  .q-about_history .about-history-head__front {
    margin-block-start: -35px;
    padding-inline: 25px;
  }
}
.q-about_history .about-history-head__front-illust {
  max-width: 800px;
  margin: 0 auto;
}
@media (width <= 768px) {
  .q-about_history .about-history-head__front-illust {
    width: 322px;
  }
}
.q-about_history .about-history-head__back {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-block-md);
  padding-inline: 99px 143px;
  z-index: -4;
}
@media (width <= 1120px) {
  .q-about_history .about-history-head__back {
    min-width: 1000px;
    padding-inline: 0;
    transform: translateX(-50%);
    margin-inline-start: 50%;
  }
}
@media (width <= 768px) {
  .q-about_history .about-history-head__back {
    min-width: 466px;
    width: 100%;
    justify-content: center;
    gap: 127px;
    margin-inline-start: 48%;
  }
}
.q-about_history .about-history-head__back-illust._01 {
  max-width: 411px;
}
@media (width <= 768px) {
  .q-about_history .about-history-head__back-illust._01 {
    width: 166px;
  }
}
.q-about_history .about-history-head__back-illust._02 {
  max-width: 430px;
}
@media (width <= 768px) {
  .q-about_history .about-history-head__back-illust._02 {
    width: 173px;
  }
}
.q-about_history .about-history {
  display: grid;
  grid-template-columns: 200px 1fr;
  position: relative;
}
@media (width <= 768px) {
  .q-about_history .about-history {
    grid-template-columns: 1fr;
  }
}
.q-about_history .about-history__content {
  position: relative;
  max-width: 770.5px;
  width: 100%;
  margin: 0 0 0 auto;
  padding-block-end: 60px;
}
.q-about_history .about-history__content::before {
  content: "";
  position: absolute;
  width: 2px;
  height: calc(100% - 140px);
  background-color: var(--color-base);
  top: 140px;
  left: 130px;
  z-index: -1;
}
@media (width <= 768px) {
  .q-about_history .about-history__content::before {
    height: calc(100% - 180px);
    top: 180px;
    left: 4px;
  }
}
.q-about_history .about-history__nav {
  transform: translateY(-10px);
  position: sticky;
  top: 140px;
  height: fit-content;
}
@media (width > 768px) {
  .q-about_history .about-history__nav {
    padding-block-end: var(--space-block-xl);
  }
}
@media (width <= 768px) {
  .q-about_history .about-history__nav {
    position: static;
    transform: translateY(-20px);
  }
}
.q-about_history .about-history__nav ul a {
  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);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--sec);
  text-decoration: underline;
  padding-block: var(--space-block-xxs);
}
@media (width <= 768px) {
  .q-about_history .about-history__nav ul a {
    gap: var(--space-block-xxs);
  }
}
.q-about_history .about-history__nav ul a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-base);
  transition: var(--sec);
}
@media (width <= 768px) {
  .q-about_history .about-history__nav ul a::before {
    width: 24px;
    height: 24px;
    background-image: url(../img/about/icon_anchor-link.svg);
    background-size: cover;
    background-position: center;
  }
}
.q-about_history .about-history__nav ul a.js-anchor-link.is-active::before {
  background-color: var(--color-primary);
}
@media (width > 768px) {
  .q-about_history .about-history__nav ul a:hover {
    color: var(--color-primary);
  }
}
@media (width > 768px) {
  .q-about_history .about-history__nav ul a:hover::before {
    background-color: var(--color-primary);
  }
}
.q-about_history .history__title {
  font-family: var(--typography-std_jp_xl_bold-font-family);
  font-weight: var(--typography-std_jp_xl_bold-font-weight);
  font-size: var(--typography-std_jp_xl_bold-font-size);
  line-height: var(--typography-std_jp_xl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold-letter-spacing);
  margin-block-end: var(--space-block-md);
  padding: 22px 0 23px var(--space-block-xs);
  color: var(--color-primary);
  background-color: var(--color-light);
  border-top: 1px solid #A7A7A7;
  border-bottom: 1px solid #A7A7A7;
}
@media (width <= 768px) {
  .q-about_history .history__title {
    width: 100vw;
    padding-inline-start: 25px;
    transform: translateX(-25px);
  }
}
.q-about_history .history__list {
  display: grid;
  grid-template-columns: 126px 1fr;
  margin-block-end: var(--space-block-md);
}
@media (width <= 768px) {
  .q-about_history .history__list {
    grid-template-columns: 1fr;
  }
}
.q-about_history .history__data {
  font-family: var(--typography-std_jp_xl_bold-font-family);
  font-weight: var(--typography-std_jp_xl_bold-font-weight);
  font-size: var(--typography-std_jp_xl_bold-font-size);
  line-height: var(--typography-std_jp_xl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold-letter-spacing);
  color: var(--color-primary);
}
@media (width <= 768px) {
  .q-about_history .history__data {
    padding-inline-start: 30px;
  }
}
.q-about_history .history__event {
  padding-block-start: 3px;
  display: grid;
  grid-template-columns: 85px 1fr;
}
@media (width <= 768px) {
  .q-about_history .history__event {
    grid-template-columns: 1fr;
    padding-block-start: var(--space-block-xxs);
  }
}
.q-about_history .history__event .month {
  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);
  height: fit-content;
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (width <= 768px) {
  .q-about_history .history__event .month {
    line-height: 29px;
  }
}
.q-about_history .history__event .month::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-base);
}
.q-about_history .history__event .article {
  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);
  padding-block-start: 3px;
}
@media (width <= 768px) {
  .q-about_history .history__event .article {
    padding-block-start: 0;
    padding-inline-start: 30px;
  }
}
.q-about_history .history__event img {
  margin-block-start: 12px;
  border-radius: 10px;
}
@media (width <= 768px) {
  .q-about_history .history__event img {
    margin-block-start: 8px;
    width: 242px;
  }
}

.q-future_head {
  overflow: hidden;
  background-image: url(../img/future/head-bg_curve.png);
  background-position: center calc(100% - 55px);
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}
@media (width <= 768px) {
  .q-future_head {
    background-position: center calc(100% - 30px);
    background-size: 100% 15px;
  }
}
@media (width <= 768px) {
  .q-future_head .c-pagetitle__name {
    margin: 0 auto;
  }
}
.q-future_head::before {
  content: "";
  position: absolute;
  background-color: var(--color-bg-ash);
  width: 100%;
  height: 56px;
  bottom: 0;
  left: 0;
}
@media (width <= 768px) {
  .q-future_head::before {
    height: 30px;
  }
}
.q-future_head .head-illust {
  max-width: 1050px;
  width: 100%;
  margin-block-start: var(--space-block-md);
  margin-inline-start: 50%;
  transform: translateX(-50%);
  min-width: 512px;
}

.q-vision {
  padding-block-end: 200px;
}
.q-vision .vision-head__content {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-block-xl) var(--space-block-md);
  padding-inline: var(--space-block-md);
}
@media (width <= 768px) {
  .q-vision .vision-head__content {
    padding-block: 45px 84px;
    padding-inline: 25px;
  }
}
.q-vision .vision-head__illust-group {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1120px;
  min-width: 860px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (width <= 768px) {
  .q-vision .vision-head__illust-group {
    min-width: 0;
  }
}
.q-vision .vision-head__illust-group .illust {
  position: absolute;
}
.q-vision .vision-head__illust-group .illust._01 {
  width: 50px;
  top: 170px;
  right: 105px;
}
@media (width <= 768px) {
  .q-vision .vision-head__illust-group .illust._01 {
    top: 80px;
    right: 0;
  }
}
.q-vision .vision-head__illust-group .illust._02 {
  width: 96px;
  top: 165px;
  left: 70px;
}
@media (width <= 768px) {
  .q-vision .vision-head__illust-group .illust._02 {
    top: 53px;
    left: 5px;
  }
}
.q-vision .vision-head__illust-group .illust._03 {
  width: 158px;
  bottom: 75px;
  right: 0;
}
@media (width <= 768px) {
  .q-vision .vision-head__illust-group .illust._03 {
    bottom: 45px;
    right: 5px;
  }
}
.q-vision .vision__item {
  margin-block-end: var(--space-block-xs);
  padding-block-start: 34px;
  position: relative;
}
.q-vision .vision__item:last-child {
  margin-block-end: 0;
}
.q-vision .vision__item .tag {
  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);
  width: 372px;
  height: 70px;
  padding-block-start: 21px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-light);
  background-color: var(--color-primary);
  border-radius: 999px;
}
@media (width <= 768px) {
  .q-vision .vision__item .tag {
    width: 326px;
  }
}
.q-vision .vision__card {
  padding: 63px var(--space-block-md) var(--space-block-md);
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 40px;
  background-color: var(--color-light);
  border-radius: 30px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
@media (width <= 1120px) {
  .q-vision .vision__card {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}
@media (width <= 768px) {
  .q-vision .vision__card {
    grid-template-columns: 1fr;
    padding: 63px 25px var(--space-block-md);
  }
}
.q-vision .vision__card .content {
  padding-block-start: var(--space-block-md);
}
@media (width <= 768px) {
  .q-vision .vision__card .content {
    padding-block-start: var(--space-block-xs);
  }
}
.q-vision .vision__card .title {
  font-family: var(--typography-std_jp_xl_bold-font-family);
  font-weight: var(--typography-std_jp_xl_bold-font-weight);
  font-size: var(--typography-std_jp_xl_bold-font-size);
  line-height: var(--typography-std_jp_xl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold-letter-spacing);
}
@media (width <= 768px) {
  .q-vision .vision__card .title {
    text-align: center;
  }
}
@media (width <= 768px) {
  .q-vision .vision__card .illust {
    width: fit-content;
    margin: 0 auto;
  }
}

.q-future_buds {
  margin-block-start: -100px;
}
@media (width <= 768px) {
  .q-future_buds .buds {
    gap: 0;
  }
}
.q-future_buds .buds__content {
  margin-block: 180px 0;
}
@media (width <= 768px) {
  .q-future_buds .buds__content {
    margin-block-start: var(--space-block-md);
  }
}
@media (width <= 768px) {
  .q-future_buds .buds__main-illust .illust {
    min-width: 0;
    padding-inline: 5px;
  }
}

.q-future_syain .future-syain {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}
@media (width <= 800px) {
  .q-future_syain .future-syain {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-block-xxs) 5px;
  }
}
@media (width <= 560px) {
  .q-future_syain .future-syain {
    grid-template-columns: 1fr;
    gap: var(--space-block-xxs);
  }
}
.q-future_syain .future-syain__card {
  border-radius: 30px;
  background-image: url(../img/future/future_syain-card_bg.jpg);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: var(--space-block-xxs);
  min-height: 447px;
}
@media (width <= 768px) {
  .q-future_syain .future-syain__card {
    min-height: 0;
  }
}
.q-future_syain .future-syain__card .photo {
  width: 100%;
  aspect-ratio: 350/271;
  object-fit: cover;
  border-radius: 20px;
}
@media (width <= 768px) {
  .q-future_syain .future-syain__card .photo {
    aspect-ratio: 306/238;
  }
}
.q-future_syain .future-syain__card .comment {
  margin-block-start: var(--space-block-xs);
  padding-inline: var(--space-block-xs);
}
@media (width <= 768px) {
  .q-future_syain .future-syain__card .comment {
    padding-inline: 17px;
    padding-block-end: 16px;
  }
}

@media (width > 1120px) {
  .q-future_link-bnr .u-lg {
    display: none;
  }
}
.q-future_link-bnr .link-bnr {
  padding: 135px var(--space-block-md);
  text-decoration: none;
  position: relative;
}
@media (width <= 768px) {
  .q-future_link-bnr .link-bnr {
    padding: 130px 25px 135px 25px;
    min-height: 373px;
    display: flex;
    align-items: center;
  }
}
.q-future_link-bnr .link-bnr::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark);
  opacity: 0.4;
  top: 0;
  left: 0;
  z-index: 1;
}
.q-future_link-bnr .link-bnr__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (width <= 768px) {
  .q-future_link-bnr .link-bnr__wrapper {
    grid-template-columns: 1fr;
  }
}
.q-future_link-bnr .link-bnr__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.q-future_link-bnr .link-bnr__inner {
  font-family: var(--typography-std_jp_xxl_bold-font-family);
  font-weight: var(--typography-std_jp_xxl_bold-font-weight);
  font-size: var(--typography-std_jp_xxl_bold-font-size);
  line-height: var(--typography-std_jp_xxl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_bold-letter-spacing);
  max-width: 520px;
  width: 100%;
  color: var(--color-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.q-future_link-bnr .link-bnr__inner._right {
  margin: 0 0 0 auto;
}
@media (width <= 768px) {
  .q-future_link-bnr .link-bnr__inner._right {
    margin: 0;
  }
}
.q-future_link-bnr .link-bnr__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-light);
}
.q-future_link-bnr .link-bnr__icon svg {
  width: 16px;
  height: 16px;
  color: var(--color-light);
}
@media (width > 768px) {
  .q-future_link-bnr a.link-bnr {
    transition: var(--sec);
  }
  .q-future_link-bnr a.link-bnr:hover {
    opacity: var(--opacity);
  }
  .q-future_link-bnr a.link-bnr:hover img {
    opacity: 1;
  }
}

.q-top_mv {
  max-width: 1400px;
  margin: 0 auto;
}
.q-top_mv .mv {
  position: relative;
}
@media (width <= 1200px) {
  .q-top_mv .mv {
    padding-block-start: 350px;
    display: flex;
    flex-direction: column-reverse;
    gap: var(--space-block-xs);
  }
}
@media (width <= 768px) {
  .q-top_mv .mv {
    padding-block-start: 90px;
  }
}
.q-top_mv .mv__illust {
  max-width: 804px;
  margin: 0 auto;
  aspect-ratio: 804/743;
}
@media (width <= 768px) {
  .q-top_mv .mv__illust {
    width: 100%;
    padding-inline: 5px;
  }
}
.q-top_mv .mv__text-group {
  padding-inline-start: var(--space-block-md);
  position: absolute;
  bottom: -22px;
  left: 0;
}
@media (width <= 1200px) {
  .q-top_mv .mv__text-group {
    padding-inline-start: 25px;
    position: static;
  }
}
@media (768px < width <= 1200px) {
  .q-top_mv .mv__text-group .lg-none {
    display: none !important;
  }
}
.q-top_mv .mv__text-group .catch {
  font-family: var(--ff-accent-jp);
  font-size: 56px;
  line-height: 82px;
  font-weight: 700;
  margin-block-end: var(--space-block-xs);
}
@media (width <= 768px) {
  .q-top_mv .mv__text-group .catch {
    font-size: 36px;
    line-height: 52px;
    margin-block-end: var(--space-block-xxs);
  }
}
.q-top_mv .mv__text-group .text {
  font-family: var(--ff-accent-jp);
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 48px;
}
@media (width <= 768px) {
  .q-top_mv .mv__text-group .text {
    font-size: 16px;
    line-height: 32px;
  }
}

.q-top_ayumi {
  max-width: 1400px;
  margin: -100px auto 0 auto;
  overflow: hidden;
}
@media (width <= 768px) {
  .q-top_ayumi {
    margin-block-start: -13%;
    width: fit-content;
  }
}
.q-top_ayumi .top-ayumi {
  position: relative;
  padding-block: 297px 152px;
}
@media (width <= 768px) {
  .q-top_ayumi .top-ayumi {
    padding-block: 0 var(--space-block-xl);
  }
}
.q-top_ayumi .top-ayumi__content {
  text-align: center;
}
@media (width <= 768px) {
  .q-top_ayumi .top-ayumi__content {
    padding-inline: 24px 25px;
  }
}
.q-top_ayumi .top-ayumi__illust-wrapper {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  height: 110%;
}
@media (width <= 768px) {
  .q-top_ayumi .top-ayumi__illust-wrapper {
    margin-block-end: 50px;
    padding-inline: 25px;
    position: relative;
    top: 0;
    left: 0;
    transform: translateX(0);
    overflow: visible;
  }
}
@media (width > 768px) {
  .q-top_ayumi .top-ayumi__illust-nekko {
    min-width: 932px;
    margin-inline-start: 50%;
    transform: translateX(-50%);
  }
}
@media (width <= 768px) {
  .q-top_ayumi .top-ayumi__illust-nekko {
    min-width: 0;
    width: 100%;
  }
}
.q-top_ayumi .top-ayumi__illust {
  position: absolute;
  z-index: 1;
}
.q-top_ayumi .top-ayumi__illust._01 {
  width: 387px;
  top: 156px;
  left: -135px;
}
@media (width <= 768px) {
  .q-top_ayumi .top-ayumi__illust._01 {
    width: 53%;
    top: 7%;
    left: 0;
  }
}
.q-top_ayumi .top-ayumi__illust._02 {
  width: 266px;
  top: 149px;
  right: -35px;
}
@media (width <= 768px) {
  .q-top_ayumi .top-ayumi__illust._02 {
    width: 37%;
    top: 16%;
    right: 2%;
  }
}
.q-top_ayumi .top-ayumi__illust._03 {
  width: 282.5px;
  top: 565px;
  left: -60px;
}
@media (width <= 768px) {
  .q-top_ayumi .top-ayumi__illust._03 {
    width: 40%;
    top: 64%;
    left: 0;
  }
}
.q-top_ayumi .top-ayumi__illust._04 {
  width: 377px;
  top: 492px;
  right: -130px;
}
@media (width <= 768px) {
  .q-top_ayumi .top-ayumi__illust._04 {
    width: 52%;
    top: 57%;
    right: 0;
  }
}
.q-top_ayumi .top-ayumi__text {
  font-family: var(--typography-std_jp_medium-font-family);
  font-weight: var(--typography-std_jp_medium-font-weight);
  font-size: var(--typography-std_jp_medium-font-size);
  line-height: var(--typography-std_jp_medium-line-height);
  --letter-spacing: var(--typography-std_jp_medium-letter-spacing);
}

.q-top_mirai {
  background-image: url(../img/top/top-mirai_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-block: 80px 200px;
}
@media (width <= 1300px) {
  .q-top_mirai {
    background-size: 120% 100%;
  }
}
@media (width <= 768px) {
  .q-top_mirai {
    background-image: url(../img/top/top-mirai_bg_sp.png);
    background-size: 100% 100%;
    overflow: hidden;
  }
}
.q-top_mirai .top-mirai {
  max-width: 1320px;
  padding-inline-start: 40px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  justify-content: end;
  align-items: end;
}
@media (width <= 768px) {
  .q-top_mirai .top-mirai {
    gap: var(--space-block-md);
    flex-direction: column-reverse;
    align-items: start;
    padding-inline-start: 25px;
  }
}
.q-top_mirai .top-mirai__content {
  min-width: 300px;
}
@media (width > 768px) {
  .q-top_mirai .top-mirai__content {
    padding-block-end: 9px;
  }
}
.q-top_mirai .top-mirai__main-illust {
  width: 790px;
}
@media (width <= 768px) {
  .q-top_mirai .top-mirai__main-illust {
    width: auto;
    min-width: 460px;
    transform: translateX(-20px);
  }
}
.q-top_mirai .top-mirai-bottm {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
@media (width <= 850px) {
  .q-top_mirai .top-mirai-bottm {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (width <= 768px) {
  .q-top_mirai .top-mirai-bottm {
    flex-flow: column;
    gap: var(--space-block-md);
  }
}
.q-top_mirai .top-mirai-bottm .illust-set {
  text-align: center;
}
.q-top_mirai .top-mirai-bottm .illust-set .illust {
  max-width: 354px;
  margin: 0 auto;
}

.q-top_syain-slide {
  position: relative;
}
.q-top_syain-slide::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: var(--space-block-xl);
  bottom: 0;
  left: 0;
  background-color: var(--color-bg-ash);
}
.q-top_syain-slide .top-syain {
  position: relative;
  z-index: 50;
}
.q-top_syain-slide .top-syain.swiper-wrapper {
  transition-timing-function: linear;
}
.q-top_syain-slide .top-syain__card {
  width: 292px;
  min-height: 479px;
  margin-inline-end: var(--space-block-xxs);
  padding: 10px;
  background-image: url(../img/top/top-syain_bg.jpg);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
}
.q-top_syain-slide .top-syain__card .photo {
  display: block;
  width: 272px;
  height: 271px;
  margin-block-end: var(--space-block-xs);
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.q-top_syain-slide .top-syain__card .comment {
  padding-inline: var(--space-block-xs);
}

.q-top_activity .head {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.q-top_activity .content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (width <= 768px) {
  .q-top_activity .content {
    flex-flow: column;
    gap: var(--space-block-md);
    justify-content: center;
    align-items: center;
  }
}
.q-top_activity .top-activity-card {
  max-width: 354px;
}
@media (width <= 768px) {
  .q-top_activity .top-activity-card {
    max-width: 100%;
  }
}
.q-top_activity .top-activity-card__img-wrapper {
  border-radius: 20px;
}
.q-top_activity .top-activity-card__img-wrapper img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 354/262;
}
.q-top_activity .top-activity-card__bottom {
  margin-block-start: -15px;
  position: relative;
  z-index: 1;
}
.q-top_activity .top-activity-card__data {
  font-family: var(--typography-std_en_bold-font-family);
  font-weight: var(--typography-std_en_bold-font-weight);
  font-size: var(--typography-std_en_bold-font-size);
  line-height: var(--typography-std_en_bold-line-height);
  --letter-spacing: var(--typography-std_en_bold-letter-spacing);
  width: fit-content;
  height: 31px;
  display: block;
  margin: 0 auto;
  padding: 5px 20px 4px 20px;
  background-color: var(--color-light);
  border: 1px solid;
  border-radius: 99px;
  margin-block-end: var(--space-block-xxs);
}

