@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__inner:where(._wise) {
  max-width: 82.5rem;
  padding-inline: var(--l-section-space-inline);
}
.l-section__full {
  margin-inline: calc(var(--l-section-gutter) * -1);
}

.c-heading2 {
  margin-block-end: var(--space-block-sm);
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
}
.c-heading2__en {
  font-family: var(--typography-oxanium-80-56-font-family);
  font-weight: var(--typography-oxanium-80-56-font-weight);
  font-size: var(--typography-oxanium-80-56-font-size);
  line-height: var(--typography-oxanium-80-56-line-height);
  --letter-spacing: var(--typography-oxanium-80-56-letter-spacing);
  font-weight: 600;
}
@media (width <= 48rem) {
  .c-heading2__title {
    font-size: 1rem;
  }
}

.c-heading3 {
  margin-block-end: var(--space-block-sm);
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
}
.c-heading3__en {
  font-family: var(--typography-oxanium-80-56-font-family);
  font-weight: var(--typography-oxanium-80-56-font-weight);
  font-size: var(--typography-oxanium-80-56-font-size);
  line-height: var(--typography-oxanium-80-56-line-height);
  --letter-spacing: var(--typography-oxanium-80-56-letter-spacing);
  font-size: 3.5rem;
  font-weight: 600;
}
@media (width <= 48rem) {
  .c-heading3__en {
    font-size: 3rem;
  }
}
.c-heading3__title {
  color: var(--color-primary);
}

.c-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.c-bg img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.c-cta_button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0.3125rem 0.375rem 0.375rem rgba(var(--color-shadow-rgb), 0.3);
  width: 23rem;
  height: 5rem;
  border-radius: var(--radius);
  position: relative;
  background-color: var(--color-primary);
  color: var(--color-light);
  transition: color var(--sec) ease;
  overflow: hidden;
}
.c-cta_button._2 {
  background-color: var(--color-primary3);
  border: 0.0625rem solid var(--color-primary3);
  pointer-events: none;
  background-color: var(--color-border3);
  border: 0;
}
.c-cta_button._2:focus-visible {
  color: var(--color-primary3);
}
@media (hover: hover) and (pointer: fine) {
  .c-cta_button._2:hover {
    color: var(--color-primary3);
  }
}
@media (width <= 48rem) {
  .c-cta_button {
    width: 18.4375rem;
    height: 4rem;
  }
}
.c-cta_button::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: all var(--sec) ease;
  transition-property: transform;
}
.c-cta_button .text {
  position: relative;
  z-index: 1;
}
.c-cta_button .arrow {
  position: absolute;
  top: 50%;
  right: 1.875rem;
  transform: translateY(-50%);
  display: flex;
  width: 0.4375rem;
}
.c-cta_button:focus-visible {
  color: var(--color-primary);
}
.c-cta_button:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}
@media (hover: hover) and (pointer: fine) {
  .c-cta_button:hover {
    color: var(--color-primary);
  }
  .c-cta_button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.c-table {
  background-color: var(--color-light);
  padding: var(--space-block-lg) 10rem;
  border-radius: var(--radius);
}
@media (width <= 48rem) {
  .c-table {
    padding: var(--space-block-md) 1.25rem;
  }
}
.c-table__title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-block-end: var(--space-block-md);
  line-height: 1.2;
}
@media (width <= 48rem) {
  .c-table__title {
    font-size: 1.25rem;
  }
}
.c-table_tr {
  margin-inline: auto;
  display: grid;
  grid-template-columns: 9.375rem 1fr;
  column-gap: 0.625rem;
  border-block-start: 0.0625rem solid var(--color-border1);
  padding-block: 1.875rem;
}
@media (width <= 48rem) {
  .c-table_tr {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }
}
.c-table_tr:last-child {
  border-block-end: 0.0625rem solid var(--color-border1);
}
.c-table_th {
  color: var(--color-primary);
}
.c-table_td {
  max-width: 33.75rem;
}
.c-table_td .text {
  margin-block-end: var(--space-block-xxs);
}
@media (width <= 48rem) {
  .c-table_td .text {
    margin-block-end: 1rem;
  }
}
.c-table_td .text:last-child {
  margin-block-end: 0;
}
.c-table .annotation {
  font-family: var(--typography-txt-sm-font-family);
  font-weight: var(--typography-txt-sm-font-weight);
  font-size: var(--typography-txt-sm-font-size);
  line-height: var(--typography-txt-sm-line-height);
  --letter-spacing: var(--typography-txt-sm-letter-spacing);
  color: var(--color-border3);
}
.c-table .annotation p {
  margin-block-end: var(--space-block-xxs);
}
.c-table .annotation p:last-child {
  margin-block-end: 0;
}

.c-table2 {
  border: 0.0625rem solid var(--color-border2);
  margin-block-end: var(--space-block-xs);
  width: 100%;
}
.c-table2_tr {
  border-block-end: 0.0625rem solid var(--color-border2);
  display: grid;
  grid-template-columns: 14.1875rem 1fr;
}
@media (width <= 48rem) {
  .c-table2_tr {
    grid-template-columns: 8rem 1fr;
  }
}
.c-table2_tr:last-child {
  border-block-end: 0;
}
.c-table2_tr._three {
  grid-template-columns: 9.875rem 1fr 1fr;
}
@media (width <= 48rem) {
  .c-table2_tr._three {
    grid-template-columns: 7rem 1fr 1fr;
  }
}
.c-table2_tr._three .table2_td {
  border-inline-end: 0.0625rem solid var(--color-border2);
}
.c-table2_tr._three .table2_td:last-child {
  border-inline-end: 0;
}
.c-table2_tr._three .c-table2_td {
  border-inline-end: 0.0625rem solid var(--color-border2);
}
.c-table2_tr._three .c-table2_td:last-child {
  border-inline-end: 0;
}
.c-table2_tr._three-fit {
  grid-template-columns: 9.875rem 1fr;
}
@media (width <= 48rem) {
  .c-table2_tr._three-fit {
    grid-template-columns: 7rem 1fr;
  }
}
.c-table2_tr._tight {
  grid-template-columns: 5.5rem 1fr;
}
@media (width <= 48rem) {
  .c-table2_tr._tight {
    grid-template-columns: 3.75rem 1fr;
  }
}
.c-table2_th {
  border-inline-end: 0.0625rem solid var(--color-border2);
  background-color: var(--color-bg-ash);
  padding: 0.9375rem 1.125rem;
}
@media (width <= 48rem) {
  .c-table2_th {
    padding: 1rem 0.5rem;
  }
}
.c-table2_th._th-center {
  display: flex;
  align-items: center;
}
.c-table2_td {
  padding: 0.9375rem var(--space-block-xs) 0.9375rem var(--space-block-sm);
}
@media (width <= 48rem) {
  .c-table2_td {
    padding-inline: 0.625rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
.c-table2 ._center {
  text-align: center;
  padding-inline: var(--space-block-xs);
}
@media (width <= 48rem) {
  .c-table2 ._center {
    padding-inline: 0.5rem;
  }
}
.c-table2 .c-table_annotation {
  font-size: 0.625rem;
  color: var(--color-border3);
  display: block;
  line-height: 1;
}

.p-cta {
  position: relative;
  padding-block: var(--space-block-lg);
}
.p-cta .content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-block-md);
}
@media (width <= 48rem) {
  .p-cta .content {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.p-cta .title {
  width: 43.25rem;
}
@media (width <= 48rem) {
  .p-cta .title {
    width: 18.4375rem;
  }
}
.p-cta .title img {
  width: 100%;
}
.p-cta .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-cta .bg img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

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

/*
   * 個別アニメーション
   */
[data-sa=fadeInUp] {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translate(0, 20px);
}
[data-sa=fadeInUp].is-show {
  opacity: 1;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate(0, 0);
}

[data-sa=fadeIn-infinite] {
  opacity: 0;
  transition-property: opacity;
  transition-duration: var(--sa-duration-override, var(--sec));
}
[data-sa=fadeIn-infinite].is-visible {
  opacity: 1;
}

/*
   * グループ
   */
[data-sa-trigger=fadeInUp].is-show {
  --sa-opacity: 1;
  --sa-translate: none;
}

[data-sa-group=fadeInUp] {
  --sa-translate-default: var(--sa-translate-override, 0 40px);
  opacity: var(--sa-opacity, 0);
  translate: var(--sa-translate, var(--sa-translate-default));
  transition-property: opacity, translate;
  transition-duration: var(--sa-duration-override, 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;
}

html {
  font-size: calc(100vw * 16 / 1440);
}
@media (width <= 48rem) {
  html {
    font-size: calc(100vw * 16 / 375);
  }
}

/*全画面*/
/*ヘッダー*/
.g-header {
  position: fixed;
  z-index: 98;
  width: 100%;
  left: 0;
  top: 0;
  height: 8rem;
}
@media (width <= 48rem) {
  .g-header {
    height: 4.375rem;
  }
}
.g-header .logo {
  background-color: var(--color-base);
  padding-block: var(--space-block-xs);
  text-align: center;
  height: 5rem;
}
@media (width <= 48rem) {
  .g-header .logo {
    height: 4.375rem;
  }
}
.g-header .logo img {
  width: 11.375rem;
}
@media (width <= 48rem) {
  .g-header .logo img {
    width: 8.6875rem;
  }
}
.g-header__menu {
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  padding-block: 0.625rem;
  height: 3rem;
}
.g-header__menu .menu {
  display: flex;
  align-items: center;
  gap: var(--space-block-xxs);
  color: var(--color-light);
}
.g-header__menu .u-svg {
  width: 0.75rem;
}
.g-header .g-header__open-nav {
  position: absolute;
  top: 1.0625rem;
  right: 0.75rem;
  cursor: pointer;
  width: 2.25rem;
  aspect-ratio: 1/1;
  background-color: var(--color-primary);
  border-radius: 0.3125rem;
}
.g-header .g-header__open-nav.active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.5625rem;
}
.g-header .g-header__open-nav.active span:nth-of-type(2) {
  opacity: 0;
}
.g-header .g-header__open-nav.active span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 0.5625rem;
}
.g-header .g-header__open-nav span {
  position: absolute;
  display: inline-block;
  transition: all var(--sec);
  height: 0.0625rem;
  width: 0.5625rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-light);
}
.g-header .g-header__open-nav span:nth-of-type(1) {
  top: 38%;
}
.g-header .g-header__open-nav span:nth-of-type(2) {
  top: 49%;
}
.g-header .g-header__open-nav span:nth-of-type(3) {
  top: 61%;
}
.g-header .open-nav {
  position: fixed;
  top: 4.375rem;
  right: -120%;
  width: 100%;
  height: calc(100svh - 4.375rem);
  transition: all var(--sec);
  z-index: 98;
  background-color: rgba(var(--color-base-rgb), 0.94);
  padding: 3.75rem 1.875rem 7.5rem;
  color: var(--color-light);
  overflow: auto;
}
.g-header .open-nav.panelactive {
  right: 0;
}
.g-header .open-nav .open-nav-list {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.g-header .open-nav .menu__list {
  border-block-end: 0.0625rem solid var(--color-border3);
}
.g-header .open-nav .menu__list:first-child {
  border-block-start: 0.0625rem solid var(--color-border3);
}
.g-header .open-nav .menu__list a {
  padding-block: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.g-header .open-nav .menu__list .u-svg {
  width: 0.3125rem;
}

/*フッター*/
.g-footer .footer_top {
  background-image: url(../img/cmn/footer-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
.g-footer .footer_width {
  max-width: 50rem;
  margin: 0 auto;
  padding-block: 7.5rem;
}
@media (width <= 48rem) {
  .g-footer .footer_width {
    padding-block: 3.75rem;
  }
}
.g-footer .footer_title {
  width: 43.25rem;
  margin-block-end: var(--space-block-sm);
}
@media (width <= 48rem) {
  .g-footer .footer_title {
    width: 18.4375rem;
  }
}
.g-footer .footer_text {
  color: var(--color-light);
  margin-block-end: 2.5rem;
}
@media (width <= 48rem) {
  .g-footer .footer_text {
    margin-block-end: 1.25rem;
  }
}
.g-footer .c-cta_button {
  margin: 0 auto 5rem;
}
@media (width <= 48rem) {
  .g-footer .c-cta_button {
    margin-block-end: 1.875rem;
  }
}
.g-footer .footer_subtitle {
  font-family: var(--typography-biz-15-14-font-family);
  font-weight: var(--typography-biz-15-14-font-weight);
  font-size: var(--typography-biz-15-14-font-size);
  line-height: var(--typography-biz-15-14-line-height);
  --letter-spacing: var(--typography-biz-15-14-letter-spacing);
  color: var(--color-light);
  margin-block-end: 1.25rem;
  padding-block-end: 0.875rem;
  border-bottom: 0.0625rem solid var(--color-primary-border1);
}
.g-footer .footer_sponsor {
  margin-block-end: 1.5625rem;
}
.g-footer .footer_sponsor:last-child {
  margin-block-end: 0;
}
.g-footer .sponsor-content {
  display: flex;
  justify-content: center;
  gap: 0.9375rem;
}
@media (width <= 48rem) {
  .g-footer .sponsor-content {
    flex-wrap: wrap;
    gap: 1.25rem 0.5625rem;
  }
}
@media (width <= 48rem) {
  .g-footer .sponsor__item:nth-child(3) {
    grid-column: span 2;
  }
}
.g-footer .sponsor__img {
  width: 15.75rem;
}
@media (width <= 48rem) {
  .g-footer .sponsor__img {
    width: 10.1875rem;
  }
}
.g-footer .footer_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.875rem;
  background-color: var(--color-bg-dark);
  padding-block: 1.875rem;
  margin-top: -0.0625rem;
}
@media (width <= 48rem) {
  .g-footer .footer_menu {
    gap: 1.25rem;
  }
}
.g-footer .footer_menu a {
  color: var(--color-light);
  position: relative;
}
@media (width <= 48rem) {
  .g-footer .footer_menu a {
    font-size: 0.75rem;
  }
}
.g-footer .footer_menu a::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--color-light);
  opacity: 0;
  transition: opacity var(--sec);
}
.g-footer .footer_menu a:focus-visible::after {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .g-footer .footer_menu a:hover::after {
    opacity: 1;
  }
}
.g-footer .footer_bottom {
  text-align: center;
  background-color: var(--color-base);
  padding-block: 1.875rem;
  margin-top: -0.0625rem;
}
@media (width <= 48rem) {
  .g-footer .footer_bottom {
    padding-block: 1.25rem;
  }
}
.g-footer .footer_bottom .copyright {
  font-family: var(--typography-txt-sm-font-family);
  font-weight: var(--typography-txt-sm-font-weight);
  font-size: var(--typography-txt-sm-font-size);
  line-height: var(--typography-txt-sm-line-height);
  --letter-spacing: var(--typography-txt-sm-letter-spacing);
  color: var(--color-light);
}

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

.follow-entry_wrapper {
  position: fixed;
  bottom: 1.875rem;
  right: 1.875rem;
  z-index: 99;
  transition: opacity var(--sec) ease;
}
.follow-entry_wrapper.is-visible {
  opacity: 0;
  pointer-events: none;
}
@media (width <= 48rem) {
  .follow-entry_wrapper {
    right: 2.5rem;
  }
}
.follow-entry_wrapper .follow-entry_pc {
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 50%;
  background: linear-gradient(to right bottom, var(--color-primary-grade2), var(--color-primary-grade3));
  text-align: center;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  position: relative;
  text-decoration: none;
  transition: all 0.5s ease;
  box-shadow: 0px 0px 16px rgba(118, 205, 255, 0.2);
}
.follow-entry_wrapper .follow-entry_pc::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  position: absolute;
  background-color: var(--color-light);
  transform: scale(0);
  transition: all 0.5s ease;
}
@media (width > 48rem) {
  .follow-entry_wrapper .follow-entry_pc:hover {
    color: var(--color-primary);
  }
  .follow-entry_wrapper .follow-entry_pc:hover::before {
    transform: scale(1);
  }
}
.follow-entry_wrapper .follow-entry_pc .en_text {
  font-family: var(--typography-oxanium-36-font-family);
  font-weight: var(--typography-oxanium-36-font-weight);
  font-size: var(--typography-oxanium-36-font-size);
  line-height: var(--typography-oxanium-36-line-height);
  --letter-spacing: var(--typography-oxanium-36-letter-spacing);
  font-weight: 600;
  position: relative;
}
.follow-entry_wrapper .follow-entry_pc .jp_text {
  font-family: var(--typography-biz-12-font-family);
  font-weight: var(--typography-biz-12-font-weight);
  font-size: var(--typography-biz-12-font-size);
  line-height: var(--typography-biz-12-line-height);
  --letter-spacing: var(--typography-biz-12-letter-spacing);
  position: relative;
}
.follow-entry_wrapper .c-cta_button {
  background: linear-gradient(to right bottom, var(--color-primary-grade2) 10%, var(--color-primary-grade3)) 100%;
}

.q-mv {
  margin-block-start: 8rem;
}
@media (width <= 48rem) {
  .q-mv {
    margin-block-start: 4.375rem;
  }
}
.q-mv .mv_top {
  display: grid;
}
.q-mv .mv_top .mv_top_img {
  grid-area: 1/1/1/1;
}
.q-mv .mv_bottom {
  margin-top: -0.125rem;
  background-color: var(--color-base);
}

.q-about .about__head {
  position: relative;
  padding-block: var(--space-block-xl) 11.25rem;
}
@media (width <= 48rem) {
  .q-about .about__head {
    padding-block-end: 6.25rem;
  }
}
.q-about .about__table {
  background-color: var(--color-base);
  padding-block-end: var(--space-block-lg);
}
.q-about .about__table .table_title {
  margin-block-end: var(--space-block-md);
}
.q-about .about__table .table_title .sub1 {
  line-height: 1.2;
  margin-block-end: var(--space-block-xs);
}
.q-about .about__table .table_title .sub2 {
  font-size: 2.25rem;
}
@media (width <= 48rem) {
  .q-about .about__table .table_title .sub2 {
    font-size: 1.25rem;
    margin-block-end: 0.625rem;
  }
}
.q-about .about__table .table_title .title {
  width: 29rem;
  margin-inline: auto;
}
@media (width <= 48rem) {
  .q-about .about__table .table_title .title {
    width: 19.6875rem;
  }
}

.q-place {
  background-color: var(--color-bg-dark);
  padding-block: var(--space-block-lg);
}
.q-place .content {
  display: grid;
  grid-template-columns: 37.5625rem 30rem;
  gap: var(--space-block-sm);
  align-items: flex-start;
  justify-content: center;
}
@media (width <= 48rem) {
  .q-place .content {
    grid-template-columns: 1fr;
    row-gap: 3.125rem;
  }
}
.q-place .content__head img {
  width: 100%;
}
@media (width <= 48rem) {
  .q-place .content__body {
    margin-inline: -0.3125rem;
  }
}
.q-place .content__body .place {
  margin-block-end: 1.875rem;
}
.q-place .content__body .place:last-child {
  margin-block-end: 0;
}
.q-place .content__body .place_title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-block-xxs);
  padding-block-end: 0.5rem;
  margin-block-end: 0.375rem;
  border-block-end: 0.0625rem solid var(--color-border3);
}
.q-place .content__body .place_title .en {
  font-family: var(--typography-oxanium-80-56-font-family);
  font-weight: var(--typography-oxanium-80-56-font-weight);
  font-size: var(--typography-oxanium-80-56-font-size);
  line-height: var(--typography-oxanium-80-56-line-height);
  --letter-spacing: var(--typography-oxanium-80-56-letter-spacing);
  font-size: 1.25rem;
  color: var(--color-primary);
  font-weight: 600;
}
.q-place .content__body .place_title .jp {
  font-family: var(--typography-txt-sm-font-family);
  font-weight: var(--typography-txt-sm-font-weight);
  font-size: var(--typography-txt-sm-font-size);
  line-height: var(--typography-txt-sm-line-height);
  --letter-spacing: var(--typography-txt-sm-letter-spacing);
  font-size: 0.75rem;
  color: var(--color-border3);
}
.q-place .place_info {
  max-width: 38.125rem;
  margin: 5.625rem auto 0 auto;
  display: grid;
  grid-template-columns: 12.375rem 1fr;
  color: var(--color-light);
}
@media (width <= 48rem) {
  .q-place .place_info {
    grid-template-columns: 1fr;
    margin-block-start: 3.125rem;
  }
}
.q-place .place_info-title {
  font-family: var(--typography-txt-lg-font-family);
  font-weight: var(--typography-txt-lg-font-weight);
  font-size: var(--typography-txt-lg-font-size);
  line-height: var(--typography-txt-lg-line-height);
  --letter-spacing: var(--typography-txt-lg-letter-spacing);
  background-color: var(--color-primary);
  border-radius: 0.75rem 0 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2777777778;
  padding: 0.625rem 1.25rem;
}
@media (width <= 48rem) {
  .q-place .place_info-title {
    border-radius: 0.5rem 0.5rem 0 0;
  }
}
.q-place .place_info-detail {
  font-family: var(--typography-txt-lg-font-family);
  font-weight: var(--typography-txt-lg-font-weight);
  font-size: var(--typography-txt-lg-font-size);
  line-height: var(--typography-txt-lg-line-height);
  --letter-spacing: var(--typography-txt-lg-letter-spacing);
  background-color: var(--color-primary);
  border-radius: 0 0.75rem 0.75rem 0;
  background-color: var(--color-border3);
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-direction: column;
  line-height: 1.8333333333;
  padding: 1.5625rem 2.5rem;
}
@media (width <= 48rem) {
  .q-place .place_info-detail {
    padding: 1.25rem 1.25rem;
    align-items: center;
    border-radius: 0 0 0.5rem 0.5rem;
    text-align: center;
  }
}
.q-place .place_info-detail a {
  font-family: var(--typography-txt-sm-font-family);
  font-weight: var(--typography-txt-sm-font-weight);
  font-size: var(--typography-txt-sm-font-size);
  line-height: var(--typography-txt-sm-line-height);
  --letter-spacing: var(--typography-txt-sm-letter-spacing);
  text-decoration: underline;
}

.q-what .what__head {
  position: relative;
  padding-block: var(--space-block-xl) 11.25rem;
}
@media (width <= 48rem) {
  .q-what .what__head {
    padding-block-end: 6.25rem;
  }
}
.q-what .what__tour {
  background-color: var(--color-base);
  padding-block-end: var(--space-block-lg);
}
.q-what .what__tour .title {
  width: 50rem;
  margin-inline: auto;
  margin-block-end: 4.375rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .title {
    width: 20.9375rem;
  }
}
.q-what .what__tour .title__image {
  margin-block-end: var(--space-block-sm);
}
.q-what .what__tour .title__image img {
  width: 100%;
}
.q-what .what__tour .title .text {
  color: var(--color-light);
}
@media (width <= 48rem) {
  .q-what .what__tour .title .text {
    line-height: 1.75;
  }
}
.q-what .what__tour .content__item {
  background-color: var(--color-primary3);
  padding: var(--space-block-sm) var(--space-block-lg);
  border-radius: var(--radius);
  color: var(--color-light);
  margin-block-end: 1.875rem;
  position: relative;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__item {
    padding: 1.875rem var(--space-block-xxs);
    margin-block-end: 1.25rem;
  }
}
.q-what .what__tour .content__item .tag {
  background-color: var(--color-secondary);
  color: var(--color-light);
  padding: 0.375rem var(--space-block-xs);
  border-radius: var(--radius) 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__item .tag {
    padding-inline: 0.625rem;
  }
}
.q-what .what__tour .content__item:last-child {
  margin-block-end: 0;
}
.q-what .what__tour .content__item._grade {
  background: linear-gradient(to right bottom, var(--color-primary-grade), var(--color-primary3));
}
@media (width <= 48rem) {
  .q-what .what__tour .content__item._grade {
    padding-block: 3.75rem 2.5rem;
  }
}
.q-what .what__tour .content__item .annotation {
  font-size: 0.75rem;
  color: var(--color-annotation);
  position: absolute;
  right: 0;
  bottom: -2.5rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__item .annotation {
    bottom: -1.875rem;
  }
}
.q-what .what__tour .content__item._detail {
  padding: 0;
  background-color: var(--color-primary4);
}
.q-what .what__tour .content__item._detail .content__detail {
  justify-content: center;
  row-gap: var(--space-block-xs);
}
@media (width <= 48rem) {
  .q-what .what__tour .content__item._detail .content__detail {
    row-gap: var(--space-block-xxs);
  }
}
.q-what .what__tour .content__item._detail .content__title {
  margin-block-end: var(--space-block-xs);
}
.q-what .what__tour .content__item._detail .content__title._6 {
  margin-block-end: var(--space-block-sm);
}
.q-what .what__tour .content__item._detail .detail {
  flex-direction: column;
  gap: var(--space-block-xxs);
  align-items: center;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__item._detail .detail {
    flex-direction: row;
  }
}
.q-what .what__tour .content__item._detail .detail_title {
  font-size: 0.75rem;
}
.q-what .what__tour .content__item._detail2 {
  background-color: var(--color-primary4);
  padding-block: 0 var(--space-block-lg);
}
@media (width <= 48rem) {
  .q-what .what__tour .content__item._detail2 {
    margin-block-start: -5rem;
  }
}
.q-what .what__tour .content__item._detail2 .content__three {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-block-xs);
  margin-block-end: 3.125rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__item._detail2 .content__three {
    grid-template-columns: 1fr;
    gap: var(--space-block-xxs);
    max-width: 18.4375rem;
    margin-inline: auto;
  }
}
.q-what .what__tour .content__item._detail2 .content__item {
  padding: 0;
  background-color: transparent;
}
.q-what .what__tour .content__item._detail2 .content__item img {
  width: 100%;
}
.q-what .what__tour .content__item._8 {
  width: 65rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__item._8 {
    width: 100%;
    overflow-x: auto;
    /* スクロールバー全体 */
    /* 背景（スクロールトラック）を白に */
    /* 動く部分（スクロールサム）を水色に */
  }
  .q-what .what__tour .content__item._8::-webkit-scrollbar {
    width: 0;
    height: 0.125rem;
  }
  .q-what .what__tour .content__item._8::-webkit-scrollbar-track {
    background-color: var(--color-border4);
  }
  .q-what .what__tour .content__item._8::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
  }
  .q-what .what__tour .content__item._8 picture {
    width: 51.375rem;
    display: block;
    padding-block-end: var(--space-block-md);
  }
}
.q-what .what__tour .content__title {
  margin-inline: auto;
  padding-block-end: var(--space-block-xs);
  margin-block-end: var(--space-block-xs);
  border-block-end: 0.0625rem solid rgba(var(--color-light-rgb), 0.3);
}
.q-what .what__tour .content__title .image {
  margin-inline: auto;
  max-width: 100%;
}
.q-what .what__tour .content__title .image img {
  width: 100%;
}
.q-what .what__tour .content__title .image._1 {
  width: 50rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__title .image._1 {
    width: 18.4375rem;
  }
}
.q-what .what__tour .content__title .image._2 {
  width: 20.875rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__title .image._2 {
    width: 18.4375rem;
  }
}
.q-what .what__tour .content__title .image._3 {
  width: 25rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__title .image._3 {
    width: 18.4375rem;
  }
}
.q-what .what__tour .content__title .image._4 {
  width: 44.3125rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__title .image._4 {
    width: 18.4375rem;
  }
}
.q-what .what__tour .content__title .image._5 {
  width: 18.8125rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__title .image._5 {
    width: 17.25rem;
  }
}
.q-what .what__tour .content__title .image._7 {
  width: 25.0625rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__title .image._7 {
    width: 18.4375rem;
  }
}
.q-what .what__tour .content__title._6 {
  padding-block-end: 0;
  border: 0;
  position: relative;
  z-index: 1;
}
.q-what .what__tour .content__title._6 .image {
  width: 37.4375rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__title._6 .image {
    width: 20.9375rem;
    margin-inline: -0.625rem;
  }
}
.q-what .what__tour .content__detail {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: fit-content;
  margin-inline: auto;
  gap: var(--space-block-xxs) 1.875rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__detail {
    flex-direction: column;
  }
}
.q-what .what__tour .content__detail .detail {
  display: flex;
  align-items: flex-end;
  gap: var(--space-block-xxs);
}
@media (width <= 48rem) {
  .q-what .what__tour .content__detail .detail {
    gap: 0.5rem;
    align-items: center;
  }
}
.q-what .what__tour .content__detail .detail_title {
  font-family: var(--typography-biz-15-14-font-family);
  font-weight: var(--typography-biz-15-14-font-weight);
  font-size: var(--typography-biz-15-14-font-size);
  line-height: var(--typography-biz-15-14-line-height);
  --letter-spacing: var(--typography-biz-15-14-letter-spacing);
  border-radius: 6.1875rem;
  border: 0.0625rem solid rgba(var(--color-light-rgb), 0.3);
  min-width: 8.5rem;
  padding: 0.25rem;
  text-align: center;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__detail .detail_title {
    min-width: 6.25rem;
    font-size: 0.75rem;
  }
}
.q-what .what__tour .content__detail .detail_date {
  font-family: var(--typography-inter16-font-family);
  font-weight: var(--typography-inter16-font-weight);
  font-size: var(--typography-inter16-font-size);
  line-height: var(--typography-inter16-line-height);
  --letter-spacing: var(--typography-inter16-letter-spacing);
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__detail .detail_date {
    font-size: 0.75rem;
  }
}
.q-what .what__tour .content__detail .detail_date .big {
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__detail .detail_date .big {
    font-size: 1.375rem;
  }
}
.q-what .what__tour .content__arrow {
  text-align: center;
  margin-block-end: 1.875rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__arrow {
    margin-block-end: 1.25rem;
  }
}
.q-what .what__tour .content__arrow img {
  width: 5.75rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__arrow img {
    width: 4.375rem;
  }
}
.q-what .what__tour .content__text {
  color: var(--color-light);
  font-family: var(--typography-oxanium-36-font-family);
  font-weight: var(--typography-oxanium-36-font-weight);
  font-size: var(--typography-oxanium-36-font-size);
  line-height: var(--typography-oxanium-36-line-height);
  --letter-spacing: var(--typography-oxanium-36-letter-spacing);
  margin-block-end: 1.875rem;
  text-align: center;
  font-weight: 600;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__text {
    font-size: 1.75rem;
  }
}
.q-what .what__tour .content__column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-block-xs);
  margin-block-end: 1.875rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__column {
    grid-template-columns: 1fr;
    margin-block-end: 3.125rem;
  }
}
.q-what .what__tour .content__column .content__title {
  padding-block-end: var(--space-block-xxs);
}
@media (width <= 48rem) {
  .q-what .what__tour .content__column .content__title {
    padding-block-end: var(--space-block-xs);
  }
}
.q-what .what__tour .content__column .content__item {
  padding-inline: var(--space-block-md);
  margin-block-end: 0;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__column .content__item {
    padding-inline: var(--space-block-xxs);
  }
}
.q-what .what__tour .content__column .content__detail {
  flex-direction: column;
}
.q-what .what__tour .content__column .detail_date {
  font-size: 1rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__column .detail_date {
    font-size: 0.75rem;
  }
}
.q-what .what__tour .content__column .detail_date .big {
  font-size: 1.75rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__column .detail_date .big {
    font-size: 1.375rem;
  }
}
.q-what .what__tour .content__bg {
  position: relative;
  background-color: var(--color-primary3);
  padding: 3.125rem var(--space-block-lg) 0;
  border-radius: var(--radius) var(--radius) 0 0;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__bg {
    padding: 1.875rem var(--space-block-xxs);
    margin-block-end: 7.5rem;
  }
}
.q-what .what__tour .content__bg::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 7.5625rem;
  bottom: -7.5rem;
  left: 0;
  background-color: var(--color-primary3);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 1;
}
.q-what .what__tour .content__three {
  display: grid;
  grid-template-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
  align-items: center;
  gap: 0.8125rem;
  margin-block-end: 6.25rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__three {
    grid-template-columns: 1fr;
    margin-block-end: 0;
  }
}
@media (width <= 48rem) {
  .q-what .what__tour .content__three .detail_title {
    min-width: 6.4375rem;
  }
}
.q-what .what__tour .content__three .content__item {
  padding: 1.875rem var(--space-block-xs);
  background-color: var(--color-bg-primary);
  border-radius: var(--radius);
  margin-block-end: 0;
  height: 100%;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__three .content__item {
    padding-inline: var(--space-block-xxs);
  }
}
.q-what .what__tour .content__three .content__item .small {
  font-family: var(--typography-inter16-font-family);
  font-weight: var(--typography-inter16-font-weight);
  font-size: var(--typography-inter16-font-size);
  line-height: var(--typography-inter16-line-height);
  --letter-spacing: var(--typography-inter16-letter-spacing);
  text-align: center;
  color: var(--color-primary-border2);
  font-size: 0.75rem;
}
.q-what .what__tour .content__three .content__item .small:first-child {
  margin-block-end: var(--space-block-xs);
}
.q-what .what__tour .content__three .content__item .small:last-child {
  margin-block-start: var(--space-block-xs);
}
.q-what .what__tour .content__three .content__item .detail_date {
  font-size: 0.75rem;
}
.q-what .what__tour .content__three .content__item .detail_date .big {
  font-size: 1.25rem;
}
@media (width <= 48rem) {
  .q-what .what__tour .content__three .content__item .detail_date .big {
    font-size: 1.375rem;
  }
}
.q-what .what__tour .content__three .content__arrow {
  margin-block-end: 0;
}

.q-apply .apply__head {
  position: relative;
  height: 100%;
}
.q-apply .apply__head .c-bg {
  position: static;
}
.q-apply .content {
  position: absolute;
  right: 15rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (width <= 48rem) {
  .q-apply .content {
    width: 18.4375rem;
    margin-inline: auto;
    right: 2.5rem;
    top: auto;
    transform: none;
    bottom: 6.25rem;
  }
}
.q-apply .content .title {
  font-family: var(--typography-ttl-serif-font-family);
  font-weight: var(--typography-ttl-serif-font-weight);
  font-size: var(--typography-ttl-serif-font-size);
  line-height: var(--typography-ttl-serif-line-height);
  --letter-spacing: var(--typography-ttl-serif-letter-spacing);
  margin-block-end: var(--space-block-sm);
}
.q-apply .content .title .en {
  font-family: var(--typography-oxanium-80-56-font-family);
  font-weight: var(--typography-oxanium-80-56-font-weight);
  font-size: var(--typography-oxanium-80-56-font-size);
  line-height: var(--typography-oxanium-80-56-line-height);
  --letter-spacing: var(--typography-oxanium-80-56-letter-spacing);
  font-size: 0.8125rem;
  display: block;
  margin-block-start: var(--space-block-xxs);
}
.q-apply .apply__table {
  background-color: var(--color-base);
  padding-block-end: var(--space-block-lg);
}
.q-apply .apply__table .table_title {
  margin-block-end: 3.125rem;
}
.q-apply .apply__table .table_title .title {
  width: 33.75rem;
  margin: 0 auto var(--space-block-sm);
}
@media (width <= 48rem) {
  .q-apply .apply__table .table_title .title {
    width: 20.9375rem;
  }
}
.q-apply .c-cta_button {
  margin: var(--space-block-md) auto 0 auto;
}

.q-news {
  background: var(--color-bg-dark);
  padding-block: 5rem;
}
.q-news .news-width {
  max-width: 52.625rem;
  margin: 0 auto;
}
@media (width <= 48rem) {
  .q-news .news-width {
    max-width: 100%;
  }
}
.q-news .news_box {
  max-height: 21.6875rem;
  padding-inline-end: 2.5rem;
  overflow-y: auto;
  /* スクロールバー全体 */
  /* 背景（スクロールトラック）を白に */
  /* 動く部分（スクロールサム）を水色に */
}
@media (width <= 48rem) {
  .q-news .news_box {
    max-height: 24.1875rem;
    padding-inline-end: 0.5rem;
  }
}
.q-news .news_box::-webkit-scrollbar {
  width: 0.125rem;
  height: 0;
}
.q-news .news_box::-webkit-scrollbar-track {
  background-color: var(--color-border2);
}
.q-news .news_box::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
}
.q-news .news_item {
  padding-block: 1.625rem;
  padding-inline-end: 0.625rem;
  border-bottom: 0.0625rem solid var(--color-border3);
}
@media (width <= 48rem) {
  .q-news .news_item {
    padding-block: 1.25rem;
  }
}
.q-news .news_item:first-child {
  border-top: 0.0625rem solid var(--color-border3);
}
.q-news .news._link {
  display: flex;
  justify-content: space-between;
}
.q-news .news__main {
  display: grid;
  grid-template-columns: 5.9375rem 1fr;
  gap: 3.75rem;
}
@media (width <= 48rem) {
  .q-news .news__main {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.q-news .news__data {
  color: var(--color-border3);
  font-family: var(--typography-inter16-font-family);
  font-weight: var(--typography-inter16-font-weight);
  font-size: var(--typography-inter16-font-size);
  line-height: var(--typography-inter16-line-height);
  --letter-spacing: var(--typography-inter16-letter-spacing);
}
@media (width <= 48rem) {
  .q-news .news__data {
    font-size: 1rem;
  }
}
.q-news .news__title {
  color: var(--color-light);
}
@media (width <= 48rem) {
  .q-news .news__title {
    font-size: 0.875rem;
  }
}
.q-news .news__link-icon-wrapper {
  display: flex;
  align-items: center;
  width: 0.875rem;
  min-width: 0.875rem;
  margin-inline-start: 0.3125rem;
}
@media (width <= 48rem) {
  .q-news .news__link-icon-wrapper {
    align-items: end;
    padding-bottom: 0.3125rem;
  }
}
.q-news .news__pdf {
  font-family: var(--typography-biz-12-font-family);
  font-weight: var(--typography-biz-12-font-weight);
  font-size: var(--typography-biz-12-font-size);
  line-height: var(--typography-biz-12-line-height);
  --letter-spacing: var(--typography-biz-12-letter-spacing);
  display: flex;
  gap: 0.25rem;
  align-items: center;
  color: var(--color-border3);
  text-decoration: none;
}
.q-news .news__pdf:hover img {
  opacity: 1;
}
.q-news .news__dl-link-icon {
  width: 0.875rem;
}
::placeholder {
  color: #aaa;       /* 薄いグレー文字 */
  opacity: 1;        /* ブラウザによる薄すぎ防止 */
}

/* Safari対応 */
::-webkit-input-placeholder {
  color: #aaa;
}

/* Firefox対応 */
::-moz-placeholder {
  color: #aaa;
}

/* Edge/IE対応 */
:-ms-input-placeholder {
  color: #aaa;
}

.block-btn {
  display: inline-block;
  background: gray;
  color: white;
  padding: 15px 0;
  border: none;
  border-radius: 6px;
  margin: 6px;
  cursor: pointer;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  width: 280px; /* ← 横幅を広く */
  max-width: 90%;
}

.block-btn {
  background-color: #ccc; /* グレー（非アクティブ） */
  color: #333;
  border-radius: 8px;
  padding: 10px 18px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.block-btn.active {
  background-color: #007bff; /* ブルー（アクティブ） */
  color: #fff;
}

.block-btn {
  display: inline-block;
  width: 400px; 
  max-width: 95%;
  margin: 8px;
  padding: 12px 16px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  background-color: gray;
}


.block-btn.active:hover {
  background-color: #0066cc;
}