@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  background: #000000;
  color: #d7dce3;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 400;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

a {
  color: #2a5ba6;
  text-decoration: none;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
a:focus-visible {
  outline: 2px solid rgba(42, 91, 166, 0.5);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h1 {
  font-size: 35px;
  font-size: 3.5rem;
}

h2 {
  font-size: 28px;
  font-size: 2.8rem;
}

h3 {
  font-size: 22px;
  font-size: 2.2rem;
}

h4 {
  font-size: 18px;
  font-size: 1.8rem;
}

h5 {
  font-size: 15px;
  font-size: 1.5rem;
}

.smaller {
  font-size: 0.7em;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

hr {
  border: none;
  border-top: 1px solid #d7dce3;
  margin: 0;
  opacity: 0.4;
}

#header {
  position: relative;
  z-index: 100;
}
#header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 40px;
}
#header #logo {
  width: 120px;
}

.head-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

#header_nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
#header_nav a {
  display: inline-block;
  padding: 8px 10px;
  color: #d7dce3;
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s;
}
#header_nav a:hover {
  opacity: 0.85;
}
#header_nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
#header_nav a:hover::after, #header_nav a.active::after {
  transform: scaleX(1);
}
#header_nav.hover-circle a::after {
  display: none;
}
#header_nav.hover-circle a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #d7dce3;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  opacity: 0;
  transition: all 0.5s ease;
}
#header_nav.hover-circle a:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0.1;
}
#header_nav.hover-circle a.active::before {
  opacity: 0.1;
}

.sp-btn {
  display: none;
}

#nav-toggle,
#sp-nav {
  display: none;
}

#footer {
  position: relative;
  border-top: 10px solid #ffffff;
}
#footer .inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
#footer .inner .footer-left {
  width: 55%;
  padding-right: 5%;
}
#footer .inner .footer-right {
  width: 45%;
}

.flogo {
  margin-bottom: 20px;
  width: 140px;
}

.footer_navi {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d7dce3;
}
.footer_navi ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin-inline: auto;
}
.footer_navi ul li {
  width: 20%;
  text-align: center;
}
.footer_navi ul li a {
  position: relative;
  display: inline-block;
  color: #d7dce3;
  padding: 4px 0;
  font-size: 1.4rem;
}
.footer_navi ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #2a5ba6;
  transform: translateX(-50%) scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
  opacity: 0.9;
}
.footer_navi ul li a:hover::after, .footer_navi ul li a:focus-visible::after, .footer_navi ul li a.is-current::after, .footer_navi ul li a[aria-current=page]::after {
  transform: translateX(-50%) scaleX(1);
}
.footer_navi ul li a:hover {
  opacity: 0.95;
}

#page-title .inner {
  max-width: 80%;
  margin: auto;
  padding: 100px 0;
}
#page-title .inner .title,
#page-title .inner .text {
  width: 50%;
  margin-bottom: 0;
}
#page-title .inner .title span,
#page-title .inner .text span {
  display: block;
}
#page-title .inner .title .ja::before,
#page-title .inner .text .ja::before {
  display: none;
}

.contact_btn {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact_btn a {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: #2a5ba6;
  color: #ffffff;
  border-radius: 90px;
  padding: 8px 24px;
  font-weight: 700;
  min-width: 220px;
}
.contact_btn a:hover {
  opacity: 0.6;
}
.contact_btn a.icon_link {
  min-width: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: 8px;
}
.contact_btn a.reserve {
  border-radius: 60px;
  aspect-ratio: initial;
  background: #d7dce3;
  padding: 8px 24px;
  font-size: 0.9em;
}
.contact_btn img {
  inline-size: 24px;
  block-size: 24px;
  object-fit: contain;
}
.contact_btn p:nth-child(2) a {
  background: #2a5ba6;
}
.contact_btn.column {
  flex-direction: column;
  align-items: flex-start;
}
.contact_btn.big {
  gap: 16px;
}
.contact_btn.big a {
  padding: 32px 24px;
  min-width: 320px;
  font-size: 1.3em;
}
.contact_btn.dark a,
.contact_btn.dark p:nth-child(2) a {
  background: #ffffff;
  border: 1px solid #d7dce3;
  color: #d7dce3;
}
.contact_btn.dark a img,
.contact_btn.dark p:nth-child(2) a img {
  filter: invert(1);
}

.contact_icon {
  width: 30px;
}

#form .form-contents {
  padding: 0px !important;
}
#form dl {
  margin-bottom: 0 !important;
}
#form dl dt:not(.pattern-exclusion) span.required::before {
  background: #2a5ba6 !important;
}
#form dl dd:not(.pattern-exclusion) {
  border-bottom: none !important;
  padding-bottom: 10px !important;
}
#form dl dd:not(.pattern-exclusion) input.textarea {
  height: 45px !important;
}
#form .submit-btn {
  background: #2a5ba6 !important;
  color: #ffffff !important;
  border: 1px solid #2a5ba6 !important;
  border-radius: 999px !important;
}
#form .submit-btn:hover {
  opacity: 0.8 !important;
}

.container {
  --container-max: 1320px;
  --container-pb: 80px;
  --container-pi: 60px;
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-block: var(--container-pb);
  padding-inline: var(--container-pi);
}
.container--base {
  --container-max: 1320px;
}
.container--wide {
  --container-max: 1500px;
}
.container--full {
  --container-max: 100vw;
}
.container--p-xl {
  --container-pb: 120px;
  --container-pi: 0;
}
.container--p-l {
  --container-pb: 80px;
  --container-pi: 0;
}
.container--p-m {
  --container-pb: 60px;
  --container-pi: 0;
}
.container--p-s {
  --container-pb: 40px;
  --container-pi: 0;
}
.container--full {
  padding-left: 0;
  padding-right: 0;
}
.container--top-only {
  padding-block-end: 0 !important;
}
.container--btm-only {
  padding-block-start: 0 !important;
}

.box {
  position: relative;
  margin-inline: auto;
  z-index: 3;
  padding: clamp(16px, 4vw, 30px);
}
.box--bwidth {
  max-width: 1320px;
  margin-inline: auto;
}
.box--small {
  max-width: 1100px;
  margin-inline: auto;
}
.box--small2 {
  max-width: 1000px;
  margin-inline: auto;
}
.box--small3 {
  max-width: 900px;
  margin-inline: auto;
}
.box--small4 {
  max-width: 800px;
  margin-inline: auto;
}
.box--small5 {
  max-width: 700px;
  margin-inline: auto;
}
.box--content-fit {
  display: grid;
  place-items: center;
}
.box--content-fit > * {
  inline-size: min(100%, var(--inner-max, max-content));
}
.box--content-fit img {
  max-inline-size: 100%;
}
.box--pd60 {
  padding: clamp(30px, 4vw, 60px);
}
.box--pd-30-60 {
  padding: 30px 60px;
}
.box--bd {
  border: 1px solid #2a5ba6;
}
.box--more {
  --more-closed: 350px;
}
.box--more .more-content {
  max-height: var(--more-closed);
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.box--more.is-open .more-content {
  max-height: 2000px;
}
.box--more .more-btn {
  display: block;
  width: fit-content;
  margin: 16px 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #2a5ba6;
  background: rgba(42, 91, 166, 0.06);
  color: #2a5ba6;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.box--more .more-btn:hover {
  background: rgba(42, 91, 166, 0.12);
}
.box--more .more-btn:focus-visible {
  outline: 2px solid rgb(95.3846153846, 142.5, 214.6153846154);
  outline-offset: 2px;
}

.l-column {
  --gap: 40px;
  --cols: 3;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: stretch;
  justify-content: flex-start;
}
.l-column > li,
.l-column .col-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 0 0 calc((100% - var(--gap) * (var(--cols) - 1)) / var(--cols));
}
.l-column > li > *:first-child,
.l-column .col-item > *:first-child {
  margin-top: 0;
}
.l-column > li > .card,
.l-column .col-item > .card {
  inline-size: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
}
.l-column.col2 {
  --cols: 2;
}
.l-column.col3 {
  --cols: 3;
}
.l-column.col4 {
  --cols: 4;
}
.l-column.col5 {
  --cols: 5;
}

.hero--marquee {
  -webkit-transform: translateZ(0);
}
.hero--marquee .hero__viewport {
  position: relative;
  overflow: hidden;
  padding-block: 12px;
}
.hero--marquee .hero__track {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: var(--gap, 22px);
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: hero-marquee var(--duration, 60s) linear infinite;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.hero--marquee .hero__slide {
  flex: 0 0 auto;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  line-height: 0;
  width: clamp(320px, 55vw, 1180px);
}
.hero--marquee .hero__slide img {
  display: block;
  inline-size: 100%;
  block-size: clamp(340px, 56vw, 700px);
  object-fit: cover;
}
.hero--marquee .hero__overlay {
  padding: 40px 40px 20px;
}
.hero--marquee .hero__overlay h2 {
  font-size: 35px;
  font-size: 3.5rem;
  margin: 0 0 8px;
  font-weight: 700;
}
.hero--marquee .hero__overlay p {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0;
  line-height: 1.8;
}
.hero--marquee {
  /* クローンを1回（=2セット分）にするので距離は -50% でOK */
}
@keyframes hero-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--marquee .hero__track {
    animation: none !important;
    transform: none !important;
  }
}
.title {
  margin: 0 auto 60px;
  position: relative;
}
.title .en {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  display: block;
  color: #2a5ba6;
  font-size: 0.6em;
}
.title .ja {
  position: relative;
}
.title .ja::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3em;
  height: 3em;
  background: url(../img/hone.png) no-repeat center/contain;
  opacity: 0.1;
}
.title--m0 {
  margin-bottom: 0;
}
.title--m20 {
  margin-bottom: 20px;
}
.title--slim {
  margin: 0 auto 20px;
}
.title--left {
  margin-left: 0;
}
.title--slash {
  display: flex;
  justify-content: center;
  align-items: center;
}
.title--slash::before, .title--slash::after {
  width: 2px;
  height: 30px;
  background-color: #2a5ba6;
  content: "";
}
.title--slash::before {
  transform: rotate(-35deg);
  margin-right: 30px;
}
.title--slash::after {
  transform: rotate(35deg);
  margin-left: 30px;
}
.title--bgbar {
  display: flex;
  align-items: center;
  padding: 0.3em 0.7em;
  background-color: #f2f2f2;
  margin-bottom: 10px;
  font-size: 2rem;
}
.title--bgbar::before {
  display: inline-block;
  width: 5px;
  height: 1.5em;
  margin-right: 0.5em;
  background-color: #2a5ba6;
  content: "";
}
.title--num {
  position: relative;
  padding-top: 1.5em;
  padding-left: 1em;
}
.title--num::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  color: #2a5ba6;
  font-size: 3em;
  line-height: 1;
  content: attr(data-number);
  pointer-events: none;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  opacity: 0.5;
}
.title--border {
  border-top: 1px solid #d7dce3;
  border-bottom: 1px solid #d7dce3;
  padding: 10px;
  width: 100%;
}

.ttl-wave {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}
.ttl-wave::before, .ttl-wave::after {
  content: "〜";
  flex-shrink: 0;
}

.btn {
  text-align: center;
  margin-top: 40px;
}
.btn a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  color: #0a1019;
  border: 1px solid #0a1019;
  border-radius: 30px;
  transition: 0.3s;
  font-weight: 600;
  min-width: 240px;
  font-size: 0.9em;
  text-align: center;
  justify-content: center;
}
.btn a::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2a5ba6;
  transition: all 0.2s ease;
}
.btn a:hover {
  opacity: 0.6;
}
.btn a:hover::before {
  transform: translate(5px, -50%);
}
.btn.slim {
  margin-top: 20px;
}
.btn--left {
  text-align: left;
}
.btn--primary a {
  background: #2a5ba6;
  color: #ffffff;
  border-color: #2a5ba6;
}
.btn--outline a {
  background: #ffffff;
  color: #2a5ba6;
  border-color: #2a5ba6;
}
.btn--ghost a {
  background: transparent;
  border-color: transparent;
  color: #2a5ba6;
}

.card {
  height: 100%;
  display: flex;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  gap: 20px;
  padding: 32px;
}
.card__img {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
  width: 200px;
}
.card__img::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.card__img img,
.card__img picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.card__body {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card__body .btn {
  text-align: left;
}
.card__title {
  font-size: 2rem;
}
.card__text {
  font-size: 0.9em;
}
.card--ratio-4x3 .card__img::before {
  padding-top: 75%;
}
.card--ratio-3x2 .card__img::before {
  padding-top: 66.6667%;
}
.card--ratio-1x1 .card__img::before {
  padding-top: 100%;
}
.card--ratio-21x9 .card__img::before {
  padding-top: 42.8571%;
}

.l-column > li,
.l-column .col-item {
  display: flex;
}
.l-column > li > .card,
.l-column .col-item > .card {
  inline-size: 100%;
}

.news-list {
  display: grid;
  gap: 10px;
  max-width: 800px;
  margin-inline: auto;
}
.news-list li:first-child {
  border-top: 1px solid #eee;
}
.news-list li {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #eee;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}
.news-list time {
  color: #666;
  font-size: 1.3rem;
}
.news-list .cat {
  color: #2a5ba6;
  font-weight: 700;
  font-size: 1.3rem;
}
.news-list .ttl {
  font-size: 1.5rem;
}

.blog {
  padding-inline: clamp(16px, 4vw, 40px);
}
.blog .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.blog .blog-card {
  width: calc((100% - 40px) / 3);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #ddd;
}
.blog .blog-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.blog .blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.blog .blog-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f3f4f6;
}
.blog .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.blog .blog-img {
  /* ホバーで軽くズーム */
}
.blog-card:hover .blog .blog-img img {
  transform: scale(1.04);
}
.blog .blog-title {
  font-weight: 600;
  padding: 14px;
  font-size: 1.6rem;
}

.blog-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.blog-pager > div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  border: 1px solid #d9dde3;
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  user-select: none;
  transition: transform 0.12s ease, filter 0.12s ease, box-shadow 0.12s ease;
  font-size: 14px;
}
.blog-pager > div:hover {
  filter: brightness(0.98);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.blog-pager > div:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.blog-pager > div:first-child {
  background: #f7f8fa;
}
.blog-pager > div:last-child {
  background: #2a5ba6;
  color: #fff;
  border-color: #cfd6e0;
}
.blog-pager > div:last-child:hover {
  filter: brightness(1.05);
}
.blog-pager > div:only-child {
  background: #2a5ba6;
  color: #fff;
  border-color: #cfd6e0;
}

.blog-detail {
  background: #fefefe;
  border-radius: 20px;
  padding: 2em;
}
.blog-detail .post__title {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 24px;
  color: #333;
}
.blog-detail .post__date {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: rgba(61, 61, 61, 0.6);
}
.blog-detail .post__body {
  margin-top: 20px;
}

.media {
  display: grid;
  grid-template-columns: var(--media-img, 120px) 1fr;
  gap: var(--media-gap, 100px);
}
.media__img {
  inline-size: 100%;
  block-size: 100%;
}
.media__img img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  display: block;
}
.media__body {
  line-height: 1.8;
}
.media--sm {
  --media-img: 80px;
}
.media--md {
  --media-img: 120px;
}
.media--lg {
  --media-img: 180px;
}
.media--xl {
  --media-img: 240px;
}
.media--2xl {
  --media-img: 360px;
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #2a5ba6;
}
.alert--success {
  background: #f0faf2;
  border-color: #c9e7ce;
  color: #1a7f3a;
}
.alert--warning {
  background: #fff8e6;
  border-color: #ffe1a5;
  color: #8a5b00;
}
.alert--danger {
  background: #fff1f1;
  border-color: #ffc7c7;
  color: #a52b2b;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
}

.badge--accent {
  background: #2a5ba6;
  color: #ffffff;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: m #2a5ba6;
}

.tabs__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.tabs__btn {
  width: 48%;
  padding: 16px 24px;
  border-radius: 8px 8px 0 0;
  background: #2a5ba6;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}
.tabs__btn.is-active {
  background: #ffffff;
  color: #2a5ba6;
  border: 2px solid #2a5ba6;
  border-bottom: none;
}
.tabs__panel {
  display: none;
  background: #ffffff;
  border-radius: 8px;
}
.tabs__panel.is-active {
  display: block;
  padding: 40px;
}

.contents-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 120px;
}
.contents-nav > li a {
  background: #2a5ba6;
  color: #ffffff;
  border-radius: 60px;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 1.2em;
  min-width: 240px;
  display: block;
  text-align: center;
  border: 1px solid #2a5ba6;
}
.contents-nav > li a:hover {
  color: #2a5ba6;
  background: #ffffff;
}
.contents-nav > li:nth-child(2) a {
  background: #2a5ba6;
  border: 1px solid #2a5ba6;
}
.contents-nav > li:nth-child(2) a:hover {
  color: #2a5ba6;
  background: #ffffff;
}

.breadcrumb {
  max-width: 90%;
  margin: auto;
  padding: 30px;
  font-size: 12px;
}
.breadcrumb a {
  color: #0a1019;
  opacity: 0.6;
  text-decoration: underline;
}
.breadcrumb .kigou {
  font-size: 0.6em;
  padding: 0 0.5em;
}

.list--disc li {
  position: relative;
}
.list--disc li:not(:last-of-type) {
  margin-bottom: 5px;
}
.list--disc li::before {
  content: "●";
  color: #2a5ba6;
  font-size: 9px;
  margin-right: 5px;
}
.list--disc.sbc li::before {
  color: #2a5ba6;
}
.list--inline li {
  display: inline-block;
}
.list--inline li:not(:last-of-type) {
  margin-right: 5px;
}
.list--check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list--check li {
  position: relative;
  padding-left: 26px;
  line-height: 1.8;
}
.list--check li:not(:last-of-type) {
  margin-bottom: 6px;
}
.list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 8px;
  border-left: 2px solid #2a5ba6;
  border-bottom: 2px solid #2a5ba6;
  transform: rotate(-45deg);
}
.list--check.sbc li::before {
  border-color: #2a5ba6;
}
.list--num li figure {
  position: relative;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.list--num li figure::before {
  content: "";
  position: absolute;
  right: -1em;
  top: -1.5em;
  width: 5em;
  height: 5em;
}
.list--num li:nth-child(1) figure::before {
  background: url(../img/01.png) no-repeat center/contain;
}
.list--num li:nth-child(2) figure::before {
  background: url(../img/02.png) no-repeat center/contain;
}
.list--num li:nth-child(3) figure::before {
  background: url(../img/03.png) no-repeat center/contain;
}
.list li {
  text-indent: -1em;
  padding-left: 1em;
}

.tbl {
  width: 100%;
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 4px 2px;
}
.tbl tr th,
.tbl tr td {
  padding: 10px 15px;
}
.tbl tr th {
  font-weight: 600;
  width: 30%;
  text-align: center;
  background: #2a5ba6;
  color: #ffffff;
}
.tbl tr td {
  background: #ffffff;
}
.tbl:not(.tbl--hours) tr > th {
  width: 30%;
}
.tbl--alternating {
  border-collapse: collapse;
}
.tbl--alternating tr {
  background: #2a5ba6;
}
.tbl--alternating tr:nth-child(odd) {
  background: #ffffff;
}
.tbl--alternating tr th,
.tbl--alternating tr td {
  background: transparent;
  color: #d7dce3;
}
.tbl {
  /* ボーダー */
}
.tbl--border {
  border-collapse: collapse;
}
.tbl--border tr th,
.tbl--border tr td {
  border-bottom: 2px solid #ddd;
  background: transparent;
}
.tbl--border tr th {
  border-bottom: 2px solid #2a5ba6;
  color: #d7dce3;
}
.tbl--bubble {
  border-collapse: separate;
  border-spacing: 0 4px;
}
.tbl--bubble tr th,
.tbl--bubble tr td {
  background: #ffffff;
  border-radius: 0 8px 8px 0;
}
.tbl--bubble tr td {
  padding-left: 24px;
}
.tbl--bubble tr th {
  background-color: #2a5ba6;
  color: #fff;
  border-radius: 8px 0 0 8px;
  position: relative;
  vertical-align: middle;
}
.tbl--bubble tr th::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left: 10px solid #2a5ba6;
  z-index: 2;
}
.tbl--hours {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}
.tbl--hours col.col-time {
  width: 11.5rem;
}
@media (max-width: 600px) {
  .tbl--hours col.col-time {
    width: 9.5rem;
  }
}
.tbl--hours tr th,
.tbl--hours tr td {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 14px 10px;
  text-align: center;
  vertical-align: middle;
  background: #fff;
}
.tbl--hours tr th {
  width: auto;
}
.tbl--hours thead th {
  background: #2a5ba6;
  font-weight: 700;
  color: #fff;
}
.tbl--hours thead th:first-child {
  text-align: center;
}
.tbl--hours .nowrap {
  white-space: nowrap;
}
.tbl--hours tbody th {
  text-align: center;
  white-space: nowrap;
  background: #fff;
  font-weight: 700;
  color: #d7dce3;
  width: auto;
}
.tbl--hours tbody td {
  position: relative;
}
.tbl--hours tbody td .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tbl--hours tbody td[data-open=true]::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: #2a5ba6;
}
.tbl--hours tbody td[data-open=false]::before {
  content: "—";
  font-size: 14px;
  line-height: 1;
  opacity: 0.45;
}
.tbl--price tr td {
  border-bottom: 1px solid #ddd;
}
.tbl--price tr th,
.tbl--price tr td {
  vertical-align: middle;
}
.tbl--price tr th {
  width: 40% !important;
}

/* モバイルで詰まりそうなら */
@media (max-width: 480px) {
  .hours__row {
    grid-template-columns: 6em 1fr;
    gap: 8px;
  }
  .tbl--hours th,
  .tbl--hours td {
    padding: 12px 8px;
  }
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.accordion {
  position: relative;
  overflow: hidden;
}
.accordion > .ttl {
  position: relative;
  font-size: 1.6rem;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}
.accordion > .inner {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.accordion.is-open > .inner {
  max-height: 2000px;
  opacity: 1;
  padding: 12px 16px;
}
.accordion.faq {
  border-color: #2a5ba6;
}
.accordion.faq > .ttl {
  padding: 16px;
  padding-left: 4em;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #efefef;
}
.accordion.faq > .ttl::before {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  inline-size: 36px;
  block-size: 36px;
  border-radius: 50%;
  background: #2a5ba6;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.accordion.faq > .ttl::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  inline-size: 10px;
  block-size: 10px;
  border-right: 2px solid #2a5ba6;
  border-bottom: 2px solid #2a5ba6;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.25s ease;
}
.accordion.faq > .ttl:hover {
  background: rgb(184.9288461538, 205.6125, 237.2711538462);
}
.accordion.faq > .inner {
  position: relative;
  margin-top: 4px;
}
.accordion.faq > .inner::before {
  content: "A";
  position: absolute;
  left: 16px;
  top: 1em;
  inline-size: 32px;
  block-size: 32px;
  border-radius: 50%;
  background: #2a5ba6;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.accordion.faq > .inner p {
  margin: 0;
  padding-left: 3em;
  padding-right: 2em;
  line-height: 1.8;
}
.accordion.faq.is-open > .ttl::after {
  transform: translateY(-50%) rotate(-135deg);
}
.accordion.faq.is-open > .inner {
  padding: 8px 16px;
}
.accordion.faq.is-open > .inner::before {
  opacity: 1;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.gallery img {
  display: inline-block;
  width: calc((100% - 30px) / 3);
  border-radius: 8px;
  object-fit: cover;
  height: 350px;
}
.gallery--picture picture {
  display: inline-block;
  width: calc((100% - 30px) / 3);
}
.gallery--picture picture img {
  width: 100%;
}

.pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  padding: 0 10px;
  border: 1px solid #ddd;
  background: #fff;
  color: #0a1019;
  font-weight: 700;
}
.pagination .is-current {
  background: #2a5ba6;
  color: #ffffff;
  border-color: #2a5ba6;
}

/* Swiper base fix */
.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
}
.swiper-slide img,
.swiper-slide picture {
  display: block;
  width: 100%;
  height: clamp(340px, 56vw, 700px);
  object-fit: cover;
}

.ggmap iframe {
  height: 350px;
  width: 100%;
}

/* ==============================
  Voice（お客様の声）
============================== */
.voice {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #ddd;
}
.voice:hover {
  transform: translateY(-3px);
}
.voice__img {
  width: 300px;
  text-align: center;
}
.voice__img img {
  margin: auto;
  width: 80%;
  height: auto;
  object-fit: cover;
}
.voice__body {
  width: calc(100% - 340px);
  padding: 20px;
  line-height: 1.8;
}
.voice__name {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: #2a5ba6;
}
.voice__comment {
  font-size: clamp(14px, 1.6vw, 16px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none !important;
}

.flex {
  display: flex;
}
.flex.fd-row {
  flex-direction: row;
}
.flex.fd-col {
  flex-direction: column;
}

.ai-start {
  align-items: flex-start;
}

.ai-center {
  align-items: center;
}

.ai-end {
  align-items: flex-end;
}

.ai-stretch {
  align-items: stretch;
}

.jc-start {
  justify-content: flex-start;
}

.jc-center {
  justify-content: center;
}

.jc-end {
  justify-content: flex-end;
}

.jc-between {
  justify-content: space-between;
}

.fw-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid--cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-40 {
  gap: 40px;
}

.gap-60 {
  gap: 60px;
}

.gap-80 {
  gap: 80px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.pt-8 {
  padding-top: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pl-8 {
  padding-left: 8px;
}

.pr-8 {
  padding-right: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mb-12 {
  margin-bottom: 12px;
}

.ml-12 {
  margin-left: 12px;
}

.mr-12 {
  margin-right: 12px;
}

.pt-12 {
  padding-top: 12px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pl-12 {
  padding-left: 12px;
}

.pr-12 {
  padding-right: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.pr-16 {
  padding-right: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.ml-24 {
  margin-left: 24px;
}

.mr-24 {
  margin-right: 24px;
}

.pt-24 {
  padding-top: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pl-24 {
  padding-left: 24px;
}

.pr-24 {
  padding-right: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.ml-32 {
  margin-left: 32px;
}

.mr-32 {
  margin-right: 32px;
}

.pt-32 {
  padding-top: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pl-32 {
  padding-left: 32px;
}

.pr-32 {
  padding-right: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.b-m5 {
  margin-bottom: 5px;
}

.b-m10 {
  margin-bottom: 10px;
}

.b-m20 {
  margin-bottom: 20px;
}

.b-m30 {
  margin-bottom: 30px;
}

.b-m40 {
  margin-bottom: 40px;
}

.b-m60 {
  margin-bottom: 60px;
}

.b-m80 {
  margin-bottom: 80px;
}

.t-m10 {
  margin-top: 10px;
}

.t-m20 {
  margin-top: 20px;
}

.t-m40 {
  margin-top: 40px;
}

.w-100pe {
  width: 100%;
}

.h-100pe {
  height: 100%;
}

.asp-1-1 {
  aspect-ratio: 1/1;
}

.img-cover {
  object-fit: cover;
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-8 {
  border-radius: 8px;
}

.rounded-12 {
  border-radius: 12px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-24 {
  border-radius: 24px;
}

.rounded-32 {
  border-radius: 32px;
}

.b-r8 {
  border-radius: 8px;
}

.b-r16 {
  border-radius: 16px;
}

.b-r24 {
  border-radius: 24px;
}

.b-r50pe {
  border-radius: 50%;
}

.line-h200 {
  line-height: 2;
}

.text-center,
.tcenter,
.tcenter_pc {
  text-align: center;
}

.text-right,
.tright {
  text-align: right;
}

.bold {
  font-weight: 700;
}

.bold2 {
  font-weight: 900;
}

.bigger {
  font-size: 1.2em;
  line-height: 2;
}

.smaller {
  font-size: 0.65em;
  letter-spacing: 0;
}

.en {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.color01 {
  color: #2a5ba6;
}

.color02 {
  color: #2a5ba6;
}

.color-w {
  color: #ffffff !important;
}

.bg_line {
  background: rgba(255, 255, 255, 0.12) !important;
}

.bg_instagram {
  background: #e4405f !important;
}

.bg_line {
  background: rgba(255, 255, 255, 0.12) !important;
}

.bg_youtube {
  background: #ff0000 !important;
}

.para-gap p + p {
  margin-top: 20px;
}
.para-gap--large p + p {
  margin-top: 30px;
}
.para-gap--mini p + p {
  margin-top: 12px;
}

.bg {
  position: relative;
}
.bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg--img01::after {
  background: url(../img/bg-01.png) no-repeat center/contain;
  opacity: 0.6;
}
.bg--img02 {
  margin-top: 100px;
}
.bg--img02::after {
  background: url(../img/wave3.svg) no-repeat center bottom/100%;
  top: -150px;
  height: 190px;
}
.bg--img03::after {
  background: url(../img/wave4.svg) no-repeat center bottom/100%;
  top: -150px;
  height: 190px;
  z-index: 1;
}
.bg--img04::after {
  background: url(../img/bg-04-1.png) no-repeat top left/100%;
  width: 60%;
  left: -20%;
  opacity: 0.6;
}
.bg--img04::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 100%;
  background: url(../img/bg-04-2.png) no-repeat bottom left/100%;
  transform: scale(-1, 1);
  opacity: 0.6;
}
.bg--round {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 60px;
  overflow: hidden;
}

.bg--w {
  background: #fff;
}

.bg--w2 {
  background: rgba(255, 255, 255, 0.5);
}

.bg--cream {
  background: #101013;
}

.bg--main {
  background: #2a5ba6;
}

.bg--sub {
  background: #2a5ba6;
}

.bg--sub2 {
  background: #2a5ba6;
}

.bg--gray {
  background: #f5f5f5;
}

.u-decor {
  position: absolute;
  bottom: 10%;
  inline-size: min(28vw, 320px);
  opacity: 0.9;
  pointer-events: none;
  width: fit-content;
}
.u-decor img {
  display: block;
  inline-size: 100%;
  height: auto;
}
.u-decor--left {
  left: clamp(8px, 4vw, 40px);
  top: 20%;
}
.u-decor--right {
  right: clamp(8px, 4vw, 40px);
  bottom: 20%;
}
.u-decor.w150 img {
  width: 150px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z--1 {
  z-index: -1;
}

.z-1 {
  z-index: 1;
}

.z-5 {
  z-index: 5;
}

.z-10 {
  z-index: 10;
}

.spbr {
  display: none;
}

.hidden {
  overflow: hidden;
}

.marker {
  background: linear-gradient(transparent 70%, rgba(255, 147, 109, 0.3) 0%);
  display: inline;
  border-radius: 2px;
  padding: 0 0.1em;
}

.text-link a {
  color: #2a5ba6;
  text-decoration: underline;
}
.text-link.white a {
  color: #ffffff;
}

.shadow {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.4);
}

.shadow-md {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.shadow-lg {
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.6);
}

.tcenter_sp {
  text-align: center;
}

[data-ani] {
  --a-duration: 3.8s;
  --a-delay: 0s;
  --a-distance: 24px;
  --a-ease: cubic-bezier(.2, .7, .2, 1);
  --a-blur: 0px;
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity var(--a-duration) var(--a-ease) var(--a-delay), transform var(--a-duration) var(--a-ease) var(--a-delay), filter var(--a-duration) var(--a-ease) var(--a-delay);
  will-change: opacity, transform, filter;
}
[data-ani].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* フェード（指定がある時だけ透明スタート） */
[data-ani*=fade]:not(.is-visible) {
  opacity: 0;
}

[data-ani*=up]:not(.is-visible) {
  transform: translate3d(0, var(--a-distance), 0);
}

[data-ani*=down]:not(.is-visible) {
  transform: translate3d(0, calc(var(--a-distance) * -1), 0);
}

[data-ani*=left]:not(.is-visible) {
  transform: translate3d(var(--a-distance), 0, 0);
}

[data-ani*=right]:not(.is-visible) {
  transform: translate3d(calc(var(--a-distance) * -1), 0, 0);
}

[data-ani*=zoom-in]:not(.is-visible) {
  transform: scale(0.94);
}

[data-ani*=zoom-out]:not(.is-visible) {
  transform: scale(1.06);
}

[data-ani*=blur]:not(.is-visible) {
  filter: blur(var(--a-blur, 8px));
}

[data-ani*=rotate]:not(.is-visible) {
  transform: rotate(2.5deg);
}

.ani-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}
.ani-stagger > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--a-ease) var(--a-delay), transform 0.6s var(--a-ease) var(--a-delay);
}

.ani-stagger.is-visible > *:nth-child(1) {
  transition-delay: calc(var(--a-delay, 0s) + 0s);
}

.ani-stagger.is-visible > *:nth-child(2) {
  transition-delay: calc(var(--a-delay, 0s) + 0.06s);
}

.ani-stagger.is-visible > *:nth-child(3) {
  transition-delay: calc(var(--a-delay, 0s) + 0.12s);
}

.ani-stagger.is-visible > *:nth-child(4) {
  transition-delay: calc(var(--a-delay, 0s) + 0.18s);
}

.ani-stagger.is-visible > *:nth-child(5) {
  transition-delay: calc(var(--a-delay, 0s) + 0.24s);
}

.ani-stagger.is-visible > *:nth-child(6) {
  transition-delay: calc(var(--a-delay, 0s) + 0.3s);
}

.ani-stagger.is-visible > *:nth-child(7) {
  transition-delay: calc(var(--a-delay, 0s) + 0.36s);
}

.ani-stagger.is-visible > *:nth-child(8) {
  transition-delay: calc(var(--a-delay, 0s) + 0.42s);
}

.ani-stagger.is-visible > *:nth-child(9) {
  transition-delay: calc(var(--a-delay, 0s) + 0.48s);
}

.ani-stagger.is-visible > *:nth-child(10) {
  transition-delay: calc(var(--a-delay, 0s) + 0.54s);
}

@media (prefers-reduced-motion: reduce) {
  [data-ani],
  .ani-stagger > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
[data-fx] {
  --fx-duration: 6s;
  --fx-delay: 0s;
  --fx-amp: 8px;
  /* 振幅(px) */
  --fx-rot: 3deg;
  /* 回転幅 */
  --fx-ease: ease-in-out;
  --fx-iter: infinite;
  --fx-dir: normal;
  --fx-fill: both;
  display: inline-block;
  will-change: transform, filter;
  animation-delay: var(--fx-delay);
  animation-iteration-count: var(--fx-iter);
  animation-direction: var(--fx-dir);
  animation-fill-mode: var(--fx-fill);
  animation-timing-function: var(--fx-ease);
}

/* ふわふわ(上下) */
[data-fx*=float] {
  animation-name: fx-float-y;
  animation-duration: var(--fx-duration);
}

@keyframes fx-float-y {
  0% {
    transform: translateY(calc(var(--fx-amp) * -1));
  }
  100% {
    transform: translateY(var(--fx-amp));
  }
}
/* 横ゆらゆら */
[data-fx*=float][data-fx*=x],
[data-fx*=sway][data-fx*=x] {
  animation-name: fx-float-x;
}

@keyframes fx-float-x {
  0% {
    transform: translateX(calc(var(--fx-amp) * -1));
  }
  100% {
    transform: translateX(var(--fx-amp));
  }
}
/* なめらかスウェイ（回転＋上下少し） */
[data-fx*=sway] {
  animation-name: fx-sway;
  transform-origin: center;
  animation-duration: var(--fx-duration);
}

@keyframes fx-sway {
  0% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(var(--fx-rot));
  }
  100% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
}
/* なめらかスウェイ反転（回転＋上下少し） */
[data-fx*=sway-rev] {
  animation-name: fx-sway-rev;
}

@keyframes fx-sway-rev {
  0% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
  50% {
    transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  100% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
}
/* 振り子（支点を上に） */
[data-fx*=pendulum] {
  transform-origin: top center;
  animation-name: fx-pendulum;
}

@keyframes fx-pendulum {
  0% {
    transform: rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    transform: rotate(var(--fx-rot));
  }
  100% {
    transform: rotate(calc(var(--fx-rot) * -1));
  }
}
/* くるくる（連続回転） */
[data-fx*=spin] {
  animation-name: fx-spin;
  animation-duration: calc(var(--fx-duration) * 1.2);
  animation-timing-function: linear;
}

@keyframes fx-spin {
  to {
    transform: rotate(360deg);
  }
}
/* ぷかぷか + ちょい拡縮 */
[data-fx*=float][data-fx*=soft],
[data-fx*=float][data-fx*=gentle] {
  animation-name: fx-float-soft;
}

@keyframes fx-float-soft {
  0% {
    transform: translateY(calc(var(--fx-amp) * -1)) scale(0.995);
  }
  100% {
    transform: translateY(var(--fx-amp)) scale(1.005);
  }
}
/* 小刻みゆれ（やわらか） */
[data-fx*=wiggle] {
  animation-name: fx-wiggle;
  animation-duration: calc(var(--fx-duration) * 0.6);
}

@keyframes fx-wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(calc(var(--fx-rot) * 0.6));
  }
  50% {
    transform: rotate(calc(var(--fx-rot) * -0.6));
  }
  75% {
    transform: rotate(calc(var(--fx-rot) * 0.4));
  }
  100% {
    transform: rotate(0deg);
  }
}
/* 速さ */
[data-fx*=fast] {
  animation-duration: calc(var(--fx-duration) * 0.3);
}

[data-fx*=slow] {
  animation-duration: calc(var(--fx-duration) * 1.6);
}

[data-fx*=slower] {
  animation-duration: calc(var(--fx-duration) * 2.2);
}

/* 振幅 */
[data-fx*=sm] {
  --fx-amp: 6px;
  --fx-rot: 2deg;
}

[data-fx*=md] {
  --fx-amp: 10px;
  --fx-rot: 3deg;
}

[data-fx*=lg] {
  --fx-amp: 16px;
  --fx-rot: 5deg;
}

/* 方向／挙動 */
[data-fx*=alternate] {
  animation-direction: alternate;
}

/* デフォの往復を明示したい時 */
[data-fx*=reverse] {
  --fx-dir: reverse;
}

/* 回転の反転などに */
[data-fx*=pause-hover]:hover {
  animation-play-state: paused;
}

/* 親が見えたら動かす（入場後に発動させたい場合） */
.is-visible [data-fx-start=visible] {
  animation-play-state: running;
}

[data-fx-start=visible] {
  animation-play-state: paused;
}

/* アクセシビリティ：動きを抑制 */
@media (prefers-reduced-motion: reduce) {
  [data-fx] {
    animation: none !important;
    transform: none !important;
  }
}
/* ============================================================
   _custom.scss — 案件固有（株式会社正鴻 / BGT TOP）
   ※承認済みデザインを移植。テンプレ共通で再現できないBGT専用のみ記述。
   ============================================================ */
/* テンプレ#wrapperのoverflow:hiddenを解除（PHILOSOPHYのsticky動作のため） */
#wrapper {
  overflow: visible;
}

:root {
  --black: #000;
  --bg: #050506;
  --panel: #0b0b0d;
  --panel-2: #101013;
  --line: rgba(255, 255, 255, .10);
  --line-2: rgba(255, 255, 255, .20);
  --white: #fff;
  --text: rgba(255, 255, 255, .70);
  --muted: rgba(255, 255, 255, .46);
  --blue: #2a5ba6;
  /* BGTブルー（差し色） */
  --blue-soft: rgba(42, 91, 166, .16);
  --maxw: 1320px;
  --ease: cubic-bezier(.22, .7, .26, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--black);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 56px;
}

.en {
  font-family: "Orbitron", sans-serif;
}

::selection {
  background: var(--blue);
  color: #fff;
}

/* ============================================================
   アニメーション（自前・外部ライブラリ非依存）
   既定は表示。JSが動く時のみ html.anim を付与して初期非表示にする
   ============================================================ */
/* 1) フェードアップ */
.reveal {
  opacity: 1;
  transform: none;
}

.anim .reveal {
  opacity: 0;
  transform: translateY(56px);
  filter: blur(7px);
  transition: opacity 1.2s var(--ease), transform 1.3s var(--ease), filter 1.2s var(--ease);
}

.anim .reveal.in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* 2) 見出し英字：マスクの下からせり上がる（details.co.jp風） */
.anim .sec-en {
  overflow: hidden;
  padding-bottom: 0.06em;
}

.anim .sec-en > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.3s var(--ease);
}

.anim .sec-en.in > span {
  transform: translateY(0);
}

/* 3) 画像：マスクが開いて現れ、ズームバックして落ち着く（editorial風） */
.anim .clip {
  clip-path: inset(100% 0 0 0);
}

.anim .clip.in {
  clip-path: inset(0% 0 0 0);
  transition: clip-path 1.5s var(--ease);
}

.anim .clip > img,
.anim .clip > video {
  transform: scale(1.4);
  transition: transform 2s var(--ease);
}

.anim .clip.in > img,
.anim .clip.in > video {
  transform: scale(1);
}

/* 4) スタガー（子要素を時間差で立ち上げる） */
.anim .stagger > * {
  opacity: 0;
  transform: translateY(64px);
  filter: blur(7px);
  transition: opacity 1.15s var(--ease), transform 1.25s var(--ease), filter 1.15s var(--ease);
}

.anim .stagger.in > * {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.anim .stagger.in > *:nth-child(1) {
  transition-delay: 0s;
}

.anim .stagger.in > *:nth-child(2) {
  transition-delay: 0.14s;
}

.anim .stagger.in > *:nth-child(3) {
  transition-delay: 0.28s;
}

.anim .stagger.in > *:nth-child(4) {
  transition-delay: 0.42s;
}

/* 5) 画像のマスク表示（セレクタ指定・マークアップ不要）。.in で開く＋ズームバック */
.anim .brand-tile .ph,
.anim .news-card .ph,
.anim .player-card .ph,
.anim .mp-media {
  clip-path: inset(100% 0 0 0);
}

.anim .brand-tile .ph.in,
.anim .news-card .ph.in,
.anim .player-card .ph.in,
.anim .mp-media.in {
  clip-path: inset(0% 0 0 0);
  transition: clip-path 1.5s var(--ease);
}

.anim .brand-tile .ph > img,
.anim .news-card .ph > img,
.anim .player-card .ph > img,
.anim .mp-media > video,
.anim .mp-media > img {
  transform: scale(1.4);
}

.anim .brand-tile .ph.in > img,
.anim .news-card .ph.in > img,
.anim .player-card .ph.in > img,
.anim .mp-media.in > video,
.anim .mp-media.in > img {
  transform: scale(1);
  transition: transform 2.1s var(--ease);
}

/* 6) FORTAバンドの画像：ゆっくりズームイン */
.anim .pickup-band .pb-img img {
  transform: scale(1.28);
  opacity: 0.3;
  transition: transform 2.4s var(--ease), opacity 1.8s var(--ease);
}

.anim .pickup-band.in .pb-img img {
  transform: scale(1);
  opacity: 1;
}

/* ===== プリローダー ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition: opacity 1s var(--ease), visibility 1s;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pl-ring {
  position: relative;
  width: 120px;
  height: 120px;
}

.pl-ring svg {
  transform: rotate(-90deg);
  width: 120px;
  height: 120px;
}

.pl-ring circle {
  fill: none;
  stroke-width: 1.5;
}

.pl-track {
  stroke: rgba(255, 255, 255, 0.12);
}

.pl-bar {
  stroke: var(--blue);
  stroke-dasharray: 364;
  stroke-dashoffset: 364;
  transition: stroke-dashoffset 0.2s linear;
}

.pl-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pl-logo img {
  width: 62px;
  height: auto;
  opacity: 0.95;
}

.pl-num {
  font-family: "Orbitron";
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- section heads ---------- */
.sec {
  padding: 150px 0;
  position: relative;
}

#news {
  scroll-margin-top: 96px;
}

/* 固定ヘッダー分のアンカー位置調整（TOPのお知らせへ） */
/* 見出し：英語を大きく、日本語を小さく */
.sec-head {
  margin-bottom: 70px;
}

.sec-en {
  font-family: "Orbitron";
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.12;
}

.sec-jp {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.26em;
  color: var(--blue);
}

.sec-jp::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--blue);
}

/* ---------- header ---------- */
.gnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 56px;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.gnav-logo {
  display: block;
  z-index: 2;
}

.gnav-logo img {
  height: 34px;
  width: auto;
  transition: height 0.4s var(--ease);
}

.gnav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gnav-item {
  position: relative;
}

.gnav-item > a {
  display: block;
  padding: 16px 15px;
  font-family: "Orbitron";
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.3s;
}

.gnav-item > a:hover {
  color: #fff;
}

.gnav-item > a::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 10px;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.gnav-item:hover > a::after {
  transform: scaleX(1);
}

.gnav-cta {
  margin-left: 14px;
  padding: 13px 24px;
  border: 1px solid var(--line-2);
  color: #fff;
  font-family: "Orbitron";
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.gnav-cta span {
  position: relative;
  z-index: 2;
}

.gnav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease);
  z-index: 1;
}

.gnav-cta:hover {
  border-color: var(--blue);
}

.gnav-cta:hover::before {
  transform: translateY(0);
}

.is-soon {
  opacity: 0.62;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
}

/* dropdown */
.gnav-sub {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(8, 8, 10, 0.97);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px;
  min-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.gnav-sub::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.gnav-item:hover .gnav-sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.gnav-sub a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  border-radius: 3px;
  transition: background 0.25s;
}

.gnav-sub a .sname {
  font-family: "Orbitron";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #fff;
}

.gnav-sub a .scat {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.gnav-sub a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.gnav-sub a:hover .sname {
  color: var(--blue);
}

.gnav.is-stuck {
  background: rgba(4, 4, 6, 0.86);
  backdrop-filter: blur(16px);
  padding: 16px 56px;
  border-color: var(--line);
}

.gnav.is-stuck .gnav-logo img {
  height: 28px;
}

/* ---------- hero (FV：固定して背景に残し、コンテンツが上にせり上がる nssg風) ---------- */
.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: #000;
  z-index: 0;
  will-change: transform;
}

.hero-spacer {
  height: 100vh;
  min-height: 680px;
}

.below {
  position: relative;
  z-index: 2;
  background: #000;
  box-shadow: 0 -40px 80px rgba(0, 0, 0, 0.6);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s var(--ease);
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.is-active .hero-media img {
  animation: kb 14s var(--ease) forwards;
}

@keyframes kb {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.12);
  }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.25) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent 50%);
}

.hero-copy {
  position: relative;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.hero-copy .wrap {
  width: 100%;
}

/* キャッチを上、サブを下に振り分け（参考キャプチャの構図） */
.hero-cols {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 24vh;
  padding-bottom: 20vh;
}

/* サブは左半分に収め、右下の英語と重ならないように幅を制限 */
.hero-cols .hero-sub {
  margin-top: auto;
  margin-bottom: 0;
  max-width: min(520px, 40vw);
}

/* 2枚目：左下のFORTAロゴ＋カテゴリ */
.hero-cols .hero-brand {
  margin-top: auto;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.8s var(--ease) 0.95s, transform 1.8s var(--ease) 0.95s;
}

.hero-slide.is-active .hero-brand {
  opacity: 1;
  transform: none;
}

.hero-brand img {
  height: 30px;
  width: auto;
  display: block;
}

.hero-brand span {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.1em;
}

.hero-kicker {
  font-family: "Orbitron";
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.9s var(--ease) 0.25s;
}

.hero-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--blue);
}

.hero-title {
  font-size: 62px;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: 0.04em;
  color: #fff;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.8s var(--ease) 0.5s, transform 1.8s var(--ease) 0.5s;
}

.hero-en {
  font-family: "Orbitron";
  font-size: 74px;
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0.03em;
  color: #fff;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.8s var(--ease) 0.5s, transform 1.8s var(--ease) 0.5s;
}

.hero-en .hl {
  color: var(--blue);
  font-weight: 400;
}

.hero-sub {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 300;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.8s var(--ease) 0.95s, transform 1.8s var(--ease) 0.95s;
}

.hero-slide.is-active .hero-kicker,
.hero-slide.is-active .hero-title,
.hero-slide.is-active .hero-en,
.hero-slide.is-active .hero-sub {
  opacity: 1;
  transform: none;
}

/* 英語ロゴコピーは右下に固定（全スライド共通） */
.hero-en-fixed {
  position: absolute;
  right: 56px;
  bottom: 130px;
  z-index: 6;
  margin: 0;
  text-align: right;
  pointer-events: none;
  font-family: "Orbitron";
  font-size: clamp(44px, 4.9vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 2px 34px rgba(0, 0, 0, 0.55);
  transition: opacity 0.6s var(--ease);
}

.hero-en-fixed .hl {
  color: var(--blue);
}

.hero-scroll {
  position: absolute;
  left: 56px;
  bottom: 42px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-scroll span {
  font-family: "Orbitron";
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: rgba(255, 255, 255, 0.7);
}

.hero-scroll i {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-scroll i::after {
  content: "";
  position: absolute;
  left: -60px;
  top: 0;
  width: 60px;
  height: 1px;
  background: var(--blue);
  animation: scr 2.2s var(--ease) infinite;
}

@keyframes scr {
  0% {
    left: -60px;
  }
  60%, 100% {
    left: 60px;
  }
}
.hero-dots {
  position: absolute;
  right: 56px;
  bottom: 42px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-dot {
  width: 38px;
  height: 2px;
  background: rgba(255, 255, 255, 0.26);
  cursor: pointer;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.hero-dot.is-active {
  background: rgba(255, 255, 255, 0.5);
}

.hero-dot.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  animation: fill 6s linear forwards;
}

@keyframes fill {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
/* ---------- philosophy ---------- */
.mp-media {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  background: #000;
}

.mp-media video,
.mp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.mp-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #000, transparent 60%), linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 40%);
}

/* PHILOSOPHY ピン留めステップ（HKT OUR STRENGTHS風） */
.phil-pin {
  position: relative;
  background: #000;
}

.phil-stage {
  position: relative;
}

.phil-fixed {
  padding: 96px 0 0;
}

.phil-fixed-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.phil-head .sec-en {
  font-size: 34px;
}

.phil-head .sec-jp {
  margin-top: 10px;
}

.phil-count {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Orbitron";
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.phil-count #philNum {
  color: #fff;
  font-size: 20px;
}

.phil-count i {
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.phil-panel {
  padding: 48px 0;
}

.phil-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.phil-row .pv {
  position: relative;
  margin: 0;
  overflow: hidden;
}

/* 暗さは画像ファイルではなくCSSで適用（元画像は一切書き換えない） */
.phil-row .pv img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: brightness(0.66) saturate(0.9);
}

.phil-row .pv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 100px 28px rgba(0, 0, 0, 0.9);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 35%, transparent 70%, rgba(0, 0, 0, 0.45));
}

.phil-row .pc .pc-en {
  font-family: "Orbitron";
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--blue);
  letter-spacing: 0.02em;
}

.phil-row .pc h4 {
  font-size: 23px;
  font-weight: 500;
  margin: 18px 0 18px;
  color: #fff;
  letter-spacing: 0.04em;
}

.phil-row .pc p {
  font-size: 15.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 2;
  max-width: 460px;
}

.phil-note-wrap {
  padding: 100px 0 56px;
  background: #000;
}

.phil-note {
  text-align: center;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
}

/* === JS有効時：ピン留めステップ（各パネルをinset:0でフルサイズにするので崩れない） === */
.anim .phil-pin {
  height: 220vh;
}

.anim .phil-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.anim .phil-fixed {
  position: absolute;
  top: 15vh;
  left: 0;
  width: 100%;
  z-index: 5;
  padding: 0;
  pointer-events: none;
}

/* 見出し OUR PHILOSOPHY はピンUIなので常時表示（reveal依存で消えないように） */
.anim .phil-head .sec-en {
  overflow: visible;
}

.anim .phil-head .sec-en > span {
  transform: none;
}

.anim .phil-panel {
  position: absolute;
  inset: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}

.anim .phil-panel.is-active {
  opacity: 1;
  visibility: visible;
}

.anim .phil-row {
  height: 100%;
  align-content: start;
  padding-top: 30vh;
}

.anim .phil-row .pv {
  clip-path: inset(100% 0 0 0);
}

.anim .phil-panel.is-active .pv {
  clip-path: inset(0% 0 0 0);
  transition: clip-path 1.1s var(--ease) 0.1s;
}

.anim .phil-row .pv img {
  transform: scale(1.2);
}

.anim .phil-panel.is-active .pv img {
  transform: scale(1);
  transition: transform 1.5s var(--ease) 0.1s;
}

.anim .phil-row .pc {
  transform: translateY(48px);
}

.anim .phil-panel.is-active .pc {
  transform: none;
  transition: transform 1s var(--ease) 0.15s;
}

.anim .phil-row .pc .pc-en {
  font-size: 34px;
}

.anim .phil-row .pc h4 {
  font-size: 26px;
}

/* ---------- FORTA pickup band ---------- */
.pickup-band {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.pickup-band .pb-img {
  position: absolute;
  inset: 0;
  display: block;
}

.pickup-band .pb-img {
  z-index: 0;
}

.pickup-band .pb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pickup-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15) 75%);
}

.pickup-copy {
  position: relative;
  z-index: 2;
  width: 100%;
}

.pickup-copy .en {
  display: block;
  font-family: "Orbitron";
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 20px;
}

.pickup-copy p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Orbitron";
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: #fff;
  transition: gap 0.35s var(--ease), color 0.3s;
}

.card-link::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  transition: width 0.4s var(--ease);
}

.card-link:hover {
  color: var(--blue);
}

.card-link:hover::after {
  width: 52px;
}

/* ---------- brand line up（タイトルなし・全幅2列バナー） ---------- */
.brand-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #000;
}

.brand-tile {
  position: relative;
  display: block;
  height: 46vh;
  min-height: 360px;
  overflow: hidden;
  background: #000;
}

.bt-bg {
  position: absolute;
  inset: 0;
  display: block;
}

.bt-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.brand-tile:hover .bt-bg img {
  transform: scale(1.05);
}

.brand-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, transparent 30%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.82) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 30%);
}

.bt-head {
  position: absolute;
  top: 34px;
  left: 46px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ロゴは4ブランドで横幅を統一（高さは比率に応じて自動） */
.bt-head img {
  width: 190px;
  height: auto;
  display: block;
  flex: none;
}

.bt-head .en {
  font-family: "Orbitron";
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}

.bt-head .cat {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.bt-copy {
  position: absolute;
  right: 46px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

.bt-copy .tag {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.bt-copy .jp {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.1em;
}

/* VIEW MORE はタイル右下端に固定（キャッチの行数に依存しない） */
.bt-more {
  position: absolute;
  right: 46px;
  bottom: 36px;
  z-index: 2;
}

/* ---------- players（横スクロールのスライドショー：マーキー） ---------- */
.sec--players {
  overflow: hidden;
}

.players-slider {
  width: 100%;
  overflow: hidden;
}

/* マーキー時のみ左右をフェード（JSが .is-marq-on を付与） */
.players-slider.is-marq-on {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

/* 既定：左端から並ぶ折り返しグリッド（コンテンツ基準で56px内側から） */
.players-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  padding: 0 56px;
}

/* カードが画面幅を超える場合のみ JS が .is-marq を付与してマーキー化（端から流す） */
.players-track.is-marq {
  flex-wrap: nowrap;
  width: max-content;
  padding: 0;
  animation: playscroll var(--play-dur, 48s) linear infinite;
}

.players-slider:hover .players-track.is-marq {
  animation-play-state: paused;
}

@keyframes playscroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.player-card {
  flex: 0 0 300px;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s;
}

.player-card:hover {
  border-color: var(--line-2);
}

.player-card .ph {
  position: relative;
  aspect-ratio: 3/4;
  background: #0a0a0c;
  overflow: hidden;
}

/* 画像はラッパー(<p>等)に関係なく枠いっぱいにcover */
.player-card .ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-card .ph p {
  margin: 0;
  height: 100%;
}

.pc-body {
  padding: 26px 28px 30px;
  border-top: 1px solid var(--line);
}

.pc-name {
  font-size: 19px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
}

.pc-tour {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ---------- news ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
}

.news-card .ph {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #000;
}

.news-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.news-card:hover .ph img {
  transform: scale(1.06);
}

.card-body {
  padding: 26px 28px 30px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.news-date {
  font-family: "Orbitron";
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
}

.news-cat {
  font-family: "Orbitron";
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--blue);
  border: 1px solid rgba(42, 91, 166, 0.5);
  padding: 3px 12px;
  border-radius: 30px;
}

.news-title {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.8;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ---------- footer ---------- */
.footer {
  position: relative;
  z-index: 2;
  background: #000;
  border-top: 1px solid var(--line);
  padding: 90px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.footer-brand img {
  height: 46px;
  margin-bottom: 26px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 2.1;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.footer-col h5 {
  font-family: "Orbitron";
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 300;
}

.footer-col a {
  color: var(--text);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.footer-bottom .en {
  font-family: "Orbitron";
}

/* ============================================================
   レスポンシブ（_vars のブレイクポイント：1440 / 920 / 720 / 440）
   ============================================================ */
/* ---- pc：〜1440（大きめノートPC） ---- */
@media (max-width: 1440px) {
  .wrap {
    padding-left: 40px;
    padding-right: 40px;
  }
  .gnav {
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero-en-fixed {
    right: 40px;
  }
  .hero-scroll {
    left: 40px;
  }
  .hero-dots {
    right: 40px;
  }
  .phil-row {
    gap: 48px;
  }
  .sec {
    padding: 120px 0;
  }
}
/* ---- pc-slim：〜920（タブレット）。ナビをハンバーガー化／PHILOSOPHYのピン留め解除 ---- */
@media (max-width: 920px) {
  .gnav-menu {
    display: none;
  }
  .gnav {
    padding: 18px 24px;
  }
  .gnav-logo img {
    height: 30px;
  }
  /* FV：高さを抑える */
  .hero,
  .hero-spacer {
    height: 88vh;
    min-height: 560px;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-cols {
    padding-top: 20vh;
    padding-bottom: 22vh;
  }
  .hero-cols .hero-sub {
    max-width: 62vw;
  }
  .hero-en-fixed {
    font-size: clamp(32px, 6vw, 52px);
    bottom: 110px;
  }
  /* フッターのリンク列はハンバーガーと役割が重複するため非表示 */
  .footer-col {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 40px;
  }
  /* PHILOSOPHY：ピン留めを解除して縦積み＋スクロール出現アニメ */
  .anim .phil-pin {
    height: auto;
  }
  .anim .phil-stage {
    position: static;
    height: auto;
    overflow: visible;
    padding: 0 0 40px;
  }
  .anim .phil-fixed {
    position: static;
    width: auto;
    padding: 56px 0 8px;
  }
  .anim .phil-panel {
    position: static;
    visibility: visible;
    padding: 44px 0;
    border-top: 1px solid var(--line);
    opacity: 0;
    transform: translateY(48px);
    filter: blur(6px);
    transition: opacity 1s var(--ease), transform 1.1s var(--ease), filter 1s var(--ease);
  }
  .anim .phil-panel.in {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
  .anim .phil-row {
    height: auto;
    padding-top: 0;
  }
  .anim .phil-row .pv {
    clip-path: none;
  }
  .anim .phil-row .pv img,
  .anim .phil-panel.is-active .pv img {
    transform: none;
  }
  .anim .phil-row .pc {
    transform: none;
  }
  .anim .phil-row .pc .pc-en {
    font-size: 24px;
  }
  .anim .phil-row .pc h3 {
    font-size: 22px;
  }
}
/* ---- sp：〜720（スマホ） ---- */
@media (max-width: 720px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .gnav {
    padding: 14px 20px;
  }
  .gnav-logo img {
    height: 26px;
  }
  .sec {
    padding: 80px 0;
  }
  .sec-en {
    font-size: 30px;
  }
  .sec-head {
    margin-bottom: 48px;
  }
  /* FV：縦いっぱいは高すぎるので抑える */
  .hero,
  .hero-spacer {
    height: 100vh;
    height: 100svh;
    min-height: 560px;
  }
  .hero-title {
    font-size: 27px;
    line-height: 1.5;
  }
  /* SPは「日本語＝上／英字＝下」で上下に分離（左右で被らせない） */
  .hero-cols {
    padding-top: 15vh;
    padding-bottom: 0;
  }
  .hero-cols .hero-sub {
    margin-top: 24px;
    margin-bottom: auto;
    max-width: 82vw;
    font-size: 14px;
    line-height: 1.95;
  }
  .hero-cols .hero-brand {
    margin-top: 24px;
    margin-bottom: auto;
    max-width: 82vw;
  }
  .hero-en-fixed {
    font-size: 26px;
    right: 20px;
    bottom: 92px;
    line-height: 1.28;
    max-width: 82vw;
  }
  .hero-brand img {
    height: 24px;
  }
  .hero-scroll {
    left: 20px;
    bottom: 24px;
  }
  .hero-dots {
    right: 20px;
    bottom: 24px;
  }
  /* PHILOSOPHY */
  .phil-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .mp-media {
    aspect-ratio: 16/10;
  }
  .phil-note {
    font-size: 15px;
  }
  .phil-note-wrap {
    padding: 72px 0 40px;
  }
  /* FORTAバンド */
  .pickup-band {
    min-height: 300px;
  }
  .pickup-copy .en {
    font-size: 25px;
  }
  /* ブランド：1列・テキストは左下に */
  .brand-tiles {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .brand-tile {
    height: auto;
    min-height: 280px;
  }
  .brand-tile::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2) 38%, rgba(0, 0, 0, 0.88));
  }
  .bt-head {
    top: 24px;
    left: 24px;
    gap: 12px;
  }
  .bt-head img {
    width: 140px;
  }
  .bt-head .cat {
    font-size: 11px;
    padding-left: 12px;
  }
  .bt-copy {
    right: 24px;
    left: 24px;
    top: auto;
    bottom: 72px;
    transform: none;
    text-align: left;
    align-items: flex-start;
  }
  .bt-copy .tag {
    font-size: 18px;
  }
  .bt-more {
    right: auto;
    left: 24px;
    bottom: 28px;
  }
  /* 選手 */
  .players-track {
    gap: 16px;
    padding: 0 20px;
  }
  .player-card {
    flex-basis: 240px;
  }
  /* NEWS：左画像＋右テキストの横並びカードでスッキリ */
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .news-card {
    display: flex;
    align-items: stretch;
  }
  .news-card .ph {
    width: 40%;
    flex: none;
    aspect-ratio: 1/1;
  }
  .news-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 18px;
  }
  .news-card .news-meta {
    margin-bottom: 10px;
  }
  .news-card .news-title {
    font-size: 14px;
    line-height: 1.7;
  }
  /* フッター */
  .footer {
    padding: 64px 0 30px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
/* ---- sp-mini：〜440（小型スマホ） ---- */
@media (max-width: 440px) {
  .player-card .ph {
    aspect-ratio: 1/1;
  }
  .pc-body {
    padding: 12px;
  }
  .player-card {
    flex-basis: 150px;
  }
  .pc-name {
    font-size: 16px;
  }
  .pc-tour {
    font-size: 11px;
  }
  .hero,
  .hero-spacer {
    height: 100vh;
    height: 100svh;
    min-height: 480px;
  }
  .hero-title {
    font-size: 23px;
  }
  .hero-cols {
    padding-top: 13vh;
    padding-bottom: 0;
  }
  .hero-en-fixed {
    bottom: 88px;
    max-width: 84vw;
  }
  .sec-en {
    font-size: 24px;
  }
  .bt-copy .tag {
    font-size: 16px;
  }
  .pickup-copy .en {
    font-size: 21px;
  }
  .phil-fixed-row {
    flex-direction: column;
    gap: 10px;
  }
}
/* ---------- SP（モバイル）ナビ：ハンバーガー（〜920） ---------- */
/* ハンバーガーボタン（白い三本線・FVと同化しないよう枠＋影） */
#nav-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 200;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  box-shadow: none;
  cursor: pointer;
}

#nav-toggle .bars {
  position: relative;
  width: 26px;
  height: 16px;
  display: block;
}

#nav-toggle .bars i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff !important;
  border-radius: 2px;
  transition: 0.3s var(--ease);
}

#nav-toggle .bars i:nth-child(1) {
  top: 0;
}

#nav-toggle .bars i:nth-child(2) {
  top: 7px;
}

#nav-toggle .bars i:nth-child(3) {
  top: 14px;
}

#nav-toggle.is-active .bars i {
  background: #fff !important;
}

#nav-toggle.is-active .bars i:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

#nav-toggle.is-active .bars i:nth-child(2) {
  opacity: 0;
}

#nav-toggle.is-active .bars i:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

/* オーバーレイ／ドロワー（テンプレの display:none を上書き） */
#nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s var(--ease);
  z-index: 150;
}

#sp-nav {
  display: none;
}

@media (max-width: 920px) {
  #nav-toggle {
    display: flex;
  }
  #nav-overlay {
    display: block;
  }
  body.fixed {
    overflow: hidden;
  }
  body.fixed #nav-overlay {
    opacity: 1;
    visibility: visible;
  }
  #sp-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 360px);
    height: 100%;
    z-index: 180;
    background: #0a0a0d;
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    padding: 92px 24px 40px;
    overflow-y: auto;
  }
  #sp-nav.open {
    transform: translateX(0);
  }
  #sp-nav ul {
    list-style: none;
  }
  #sp-nav > nav > ul > li {
    border-bottom: 1px solid var(--line);
  }
  #sp-nav .sp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #sp-nav .sp-row > a,
  #sp-nav > nav > ul > li > a {
    display: block;
    flex: 1;
    padding: 16px 4px;
    min-height: 44px;
    font-family: "Orbitron";
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #fff;
  }
  #sp-nav a {
    color: #fff;
  }
  #sp-nav a:active {
    color: var(--blue);
  }
  /* サブメニュー開閉ボタン（＋／×） */
  #sp-nav .sp-toggle {
    width: 44px;
    height: 44px;
    flex: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
  }
  #sp-nav .sp-toggle::before,
  #sp-nav .sp-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 2px;
    background: #fff;
    transform: translate(-50%, -50%);
    transition: 0.3s var(--ease);
  }
  #sp-nav .sp-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  #sp-nav .has-sub.open .sp-toggle::after {
    opacity: 0;
  }
  /* サブメニュー：クリックで開く（既定は閉） */
  #sp-nav .sp-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
  }
  #sp-nav .has-sub.open .sp-sub {
    max-height: 320px;
  }
  #sp-nav .sp-sub li {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  #sp-nav .sp-sub a {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--muted);
    padding: 16px 4px 16px 18px;
    min-height: 52px;
    font-family: "Noto Sans JP";
  }
  #sp-nav .has-sub.open .sp-sub {
    max-height: 420px;
  }
  /* 余裕を持たせる */
}
/* ハンバーガーをロゴと縦位置合わせ／固定ヘッダーのスクロール時余白も調整 */
@media (max-width: 920px) {
  #nav-toggle {
    top: 12px;
    right: 18px;
  }
  /* ロゴ中心(≈33px)に合わせる */
  .gnav.is-stuck {
    padding: 18px 24px;
  }
}
@media (max-width: 720px) {
  #nav-toggle {
    top: 6px;
    right: 14px;
  }
  /* ロゴ中心(≈27px)に合わせる */
  .gnav.is-stuck {
    padding: 14px 20px;
  }
}
/* ============================================================
   下層ページ：ブログ記事詳細（blog/detail.php）
   ※承認済みTOPのトーン（ダーク／ミニマル／差し色ブルー）に統一
   ============================================================ */
/* 下層は全画面FVが無いので、固定ヘッダーに常時背景を敷く */
body.lower {
  background: var(--bg);
}

body.lower .gnav {
  background: rgba(4, 4, 6, 0.86);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}

/* ---- ページヘッダー（パンくず＋メタ＋タイトル） ---- */
.page-head {
  position: relative;
  padding: 200px 0 64px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #0a0a0d 0%, var(--bg) 100%);
  overflow: hidden;
}

.page-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46%;
  height: 100%;
  background: radial-gradient(120% 120% at 0% 0%, var(--blue-soft), transparent 60%);
  pointer-events: none;
}

.page-head .wrap {
  position: relative;
  z-index: 2;
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  font-family: "Orbitron";
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.crumb a {
  color: var(--muted);
  transition: color 0.3s;
}

.crumb a:hover {
  color: #fff;
}

.crumb span[aria-current] {
  color: var(--blue);
}

.crumb .sep {
  width: 14px;
  height: 1px;
  background: var(--line-2);
  display: inline-block;
}

.art-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.art-cat {
  font-family: "Orbitron";
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
  padding: 7px 14px;
  border: 1px solid var(--blue);
  border-radius: 2px;
}

.art-date {
  font-family: "Orbitron";
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.page-head h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  max-width: 18em;
}

/* ---- 記事本文ラッパー ---- */
.bd-eyecatch {
  max-width: 1040px;
  margin: 64px auto 0;
  padding: 0 56px;
}

.bd-eyecatch .ph {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
}

.bd-eyecatch .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bd-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 56px 110px;
}

/* prose（本文タイポgrafi） */
.bd-body {
  font-size: 16px;
  line-height: 2.05;
  color: var(--text);
}

.bd-body > * + * {
  margin-top: 1.6em;
}

.bd-body .lead {
  font-size: 18px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.82);
}

.bd-body h2 {
  position: relative;
  margin-top: 2.4em;
  padding-left: 20px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  letter-spacing: 0.02em;
}

.bd-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  bottom: 0.18em;
  width: 4px;
  background: var(--blue);
  border-radius: 2px;
}

.bd-body h3 {
  margin-top: 2em;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.7;
  color: #fff;
}

.bd-body h3::before {
  content: "— ";
  color: var(--blue);
}

.bd-body p {
  font-weight: 300;
}

.bd-body strong {
  color: #fff;
  font-weight: 700;
}

.bd-body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line-2);
  transition: text-decoration-color 0.3s;
}

.bd-body a:hover {
  text-decoration-color: var(--blue);
}

.bd-body ul,
.bd-body ol {
  padding-left: 1.4em;
}

.bd-body li {
  margin-top: 0.6em;
  font-weight: 300;
}

.bd-body ul li {
  list-style: none;
  position: relative;
  padding-left: 18px;
}

.bd-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 7px;
  height: 1px;
  background: var(--blue);
}

.bd-body ol li {
  list-style: decimal;
}

.bd-body blockquote {
  margin: 2.2em 0;
  padding: 6px 0 6px 28px;
  border-left: 2px solid var(--blue);
  font-size: 19px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.bd-body figure {
  margin: 2.6em 0;
}

.bd-body figure .ph {
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
}

.bd-body figure img {
  width: 100%;
  height: auto;
}

.bd-body figcaption {
  margin-top: 12px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
}

.bd-body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 3em 0;
}

/* CMS本文（a-pollo {$body$}）が出力する画像 */
.bd-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2.4em auto;
  border: 1px solid var(--line);
}

/* CMS埋め込み枠：非同期描画中の高さ確保（フッターのせり上がり防止） */
.bd-cms {
  min-height: 72vh;
}

.bd-nav-inner--center {
  justify-content: center;
}

/* ---- 404ページ ---- */
.notfound {
  min-height: 68vh;
  display: flex;
  align-items: center;
  padding: 180px 0 120px;
}

.notfound .wrap {
  text-align: center;
}

.nf-en {
  font-family: "Orbitron";
  font-weight: 700;
  font-size: clamp(76px, 15vw, 168px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
}

.nf-ttl {
  margin-top: 26px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.nf-ttl::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--blue);
  margin: 18px auto 0;
}

.nf-lead {
  margin-top: 22px;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 2;
}

.notfound .bd-list-btn {
  margin-top: 42px;
}

@media (max-width: 720px) {
  .notfound {
    padding: 128px 0 84px;
    min-height: 60vh;
  }
  .nf-ttl {
    font-size: 20px;
  }
  .nf-lead {
    font-size: 14px;
  }
}
/* ---- ブログ一覧ページ（blog/index.php） ---- */
.page-head--list .page-en {
  display: block;
  font-family: "Orbitron";
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 16px;
}

.bloglist {
  padding: 84px 0 120px;
}

.bloglist [id^=cms-] {
  display: block;
  min-height: 46vh;
}

/* アイキャッチ無し記事のサムネ枠 */
.news-card .ph--noimg {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #0c0c0f, #141418);
}

.news-card .ph--noimg span {
  font-family: "Orbitron";
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

/* ページャー */
.blog-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 64px;
}

.blog-pager a,
.blog-pager span {
  font-family: "Orbitron";
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  padding: 13px 26px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  transition: 0.35s var(--ease);
}

.blog-pager a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.blog-pager .is-current {
  background: var(--blue);
  border-color: var(--blue);
}

@media (max-width: 720px) {
  .bloglist {
    padding: 52px 0 84px;
  }
  .blog-pager {
    margin-top: 44px;
    gap: 10px;
  }
  .blog-pager a,
  .blog-pager span {
    padding: 12px 20px;
  }
}
/* タグ */
.bd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 56px;
}

.bd-tags a {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 7px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: 0.3s;
}

.bd-tags a:hover {
  color: #fff;
  border-color: var(--line-2);
}

/* 記事下ナビ（前後・一覧へ） */
.bd-nav {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 56px 130px;
}

.bd-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.bd-nav-inner .card-link.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.bd-list-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Orbitron";
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  padding: 15px 30px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  transition: 0.35s var(--ease);
}

.bd-list-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

@media (max-width: 920px) {
  .page-head {
    padding: 160px 0 52px;
  }
  .page-head h1 {
    font-size: 32px;
  }
}
@media (max-width: 720px) {
  .page-head {
    padding: 128px 0 44px;
  }
  .page-head h1 {
    font-size: 25px;
    line-height: 1.55;
  }
  .crumb {
    margin-bottom: 24px;
  }
  .bd-eyecatch {
    margin-top: 40px;
    padding: 0 20px;
  }
  .bd-article {
    padding: 52px 20px 80px;
  }
  .bd-body {
    font-size: 15px;
    line-height: 1.95;
  }
  .bd-body .lead {
    font-size: 16px;
  }
  .bd-body h2 {
    font-size: 21px;
  }
  .bd-body h3 {
    font-size: 17px;
  }
  .bd-body blockquote {
    font-size: 16px;
  }
  .bd-nav {
    padding: 0 20px 90px;
  }
  .bd-nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    text-align: center;
  }
  .bd-list-btn {
    justify-content: center;
  }
}
@media (max-width: 920px) {
  #footer .inner {
    flex-direction: column;
    gap: 20px;
  }
  #footer .inner .footer-left,
  #footer .inner .footer-right {
    width: 100%;
    padding-left: 0;
  }
  #header .contact_btn {
    display: none;
  }
}
@media (max-width: 720px) {
  .flogo {
    margin-left: auto;
    margin-right: auto;
  }
  .tbl--hours tr th,
  .tbl--hours tr td {
    padding: 7px 5px;
    font-size: 12px;
  }
  .contact_btn {
    justify-content: center;
  }
  .bg--img02 {
    margin-top: 50px;
  }
  #header {
    padding-top: 0;
  }
  #header .inner {
    max-width: 100%;
    justify-content: space-between;
  }
  .head-right {
    justify-content: flex-end;
    padding-right: 60px;
  }
  #header_nav {
    display: none;
  }
  .sp-btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    width: 100%;
  }
  .sp-btn p {
    width: 25%;
  }
  .sp-btn p:nth-child(1) {
    background: #e4405f;
  }
  .sp-btn p:nth-child(2) {
    background: #2a5ba6;
  }
  .sp-btn p:nth-child(3) {
    background: #2a5ba6;
  }
  .sp-btn p:nth-child(4) {
    background: #d7dce3;
  }
  .sp-btn p a {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px 5px;
  }
  .sp-btn p a img {
    max-width: 25px;
  }
  .sp-btn p a span {
    display: block;
    text-align: center;
  }
  #sp-logo {
    width: 120px;
  }
  #__old_nav_toggle {
    position: fixed;
    right: 16px;
    top: 24px;
    inline-size: 44px;
    block-size: 44px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 120;
  }
  #__old_nav_toggle .bars {
    position: relative;
    inline-size: 26px;
    block-size: 18px;
    display: grid;
    align-content: space-between;
  }
  #__old_nav_toggle .bars i {
    display: block;
    inline-size: 100%;
    block-size: 3px;
    border-radius: 2px;
    background: #333;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  #__old_nav_toggle.is-active .bars i:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  #__old_nav_toggle.is-active .bars i:nth-child(2) {
    opacity: 0;
  }
  #__old_nav_toggle.is-active .bars i:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
  #__old_sp_nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.96);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.25s ease;
    z-index: -10;
  }
  #__old_sp_nav.open {
    opacity: 1;
    pointer-events: auto;
    z-index: 110;
  }
  #__old_sp_nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    min-width: 260px;
  }
  #__old_sp_nav li:not(:first-child) {
    margin-top: 1em;
  }
  #__old_sp_nav li a {
    font-size: 18px;
    color: #d7dce3;
    text-decoration: none;
    border-bottom: 1px solid #2a5ba6;
    display: block;
    padding-bottom: 1em;
  }
  #__old_sp_nav .contact_btn {
    flex-wrap: wrap;
    row-gap: 24px;
  }
  #__old_sp_nav .contact_btn p:last-child {
    width: 100%;
  }
  #__old_sp_nav .contact_btn p:last-child a {
    color: #ffffff;
    max-width: 260px;
    margin-inline: auto;
  }
  .copyright {
    padding-bottom: 40px;
  }
  .media {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--media-gap, 20px);
  }
  .box {
    padding: 15px;
  }
  .box--pd60 {
    padding: 30px;
  }
  body.fixed {
    overflow: hidden;
  }
  .u-decor-spflex {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .u-decor {
    position: initial;
  }
  .u-decor.w150 img {
    width: 100px;
  }
  .hero--single .hero__content {
    inset: auto 0 8% 0;
  }
  .hero--slider .hero__overlay {
    padding: 14px;
  }
  .hero--slider .hero__overlay h1 {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .hero--slider .hero-prev,
  .hero--slider .hero-next {
    inline-size: 40px;
    block-size: 40px;
  }
  #page-title .inner {
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
  }
  #page-title .inner .title,
  #page-title .inner .text {
    width: 100%;
  }
  .container--p-xl {
    padding: 60px 15px;
  }
  .container--p-l {
    padding: 40px 15px;
  }
  .container--p-m {
    padding: 30px 15px;
  }
  .container--p-s {
    padding: 20px 15px;
  }
  .l-column {
    row-gap: 20px;
  }
  .l-column.reverse {
    flex-direction: column-reverse;
  }
  .l-column.col2 {
    --cols: 1;
  }
  .l-column.col3 {
    --cols: 1;
  }
  .l-column.col4 {
    --cols: 2;
  }
  .l-column.col5 {
    --cols: 3;
  }
  .sp-contents {
    display: block !important;
  }
  .pc-contents {
    display: none !important;
  }
  .spbr {
    display: block;
  }
  .btn {
    margin-top: 20px;
    width: 100%;
  }
  .btn a {
    width: 100%;
    justify-content: center;
  }
  .btn--left {
    text-align: center;
  }
  .btn--left a {
    margin-left: auto;
  }
  #footer .inner .footer-left {
    padding-right: 0;
  }
  .footer_navi ul li {
    width: 50%;
    text-align: left;
  }
  .footer_navi ul li a {
    text-align: center;
  }
  .grid {
    gap: 12px;
  }
  .blog-detail {
    padding: 0;
  }
}
@media (max-width: 440px) {
  #header .contact_btn {
    display: none;
  }
  #header .inner {
    padding: 16px;
  }
  #header .inner #logo {
    width: 90px;
  }
  .copyright {
    padding-bottom: 20px;
  }
  .sp-btn p a {
    font-weight: 600;
    padding: 7px;
  }
  .sp-btn p a img {
    max-width: 20px;
  }
  .sp-btn p a span {
    font-size: 12px;
  }
  body#top::after {
    width: 24rem;
    height: 7rem;
  }
  .hero::after {
    width: 250px;
    height: 140px;
    bottom: -50px;
  }
  .hero--marquee .hero__overlay h1 {
    font-size: 2.5rem;
  }
  .hero--marquee .hero__overlay {
    padding: 20px 15px;
  }
  h1,
  h2,
  h3,
  h4,
  h5 {
    font-weight: 700;
  }
  h1 {
    font-size: 26px;
    font-size: 2.6rem;
  }
  h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
  h3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  h4 {
    font-size: 15px;
    font-size: 1.5rem;
  }
  h5 {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .tcenter_pc {
    text-align: left;
  }
  .card {
    padding: 24px;
  }
  .title {
    margin-bottom: 30px;
  }
  .contact_btn.big {
    flex-direction: column;
  }
  .contact_btn.big a {
    padding: 16px 24px;
  }
  .bg--img02::after {
    top: -39px;
    height: 40px;
  }
  .bg--img03::after {
    top: -39px;
    height: 40px;
  }
  .bg-chosei {
    padding-bottom: 50px;
  }
  .bg-chosei2 {
    padding-bottom: 50px;
    margin-bottom: 40px;
  }
  #page-title .inner {
    max-width: 90%;
    gap: 20px;
  }
  .gallery img {
    width: 100%;
  }
  .tabs__panel.is-active {
    padding: 20px 10px;
  }
  .accordion.faq > .ttl {
    padding-left: 3em;
    padding-right: 2.5em;
  }
  .accordion.faq > .ttl::before {
    left: 8px;
    inline-size: 32px;
    block-size: 32px;
  }
  .accordion.faq > .ttl::after {
    right: 10px;
    inline-size: 7px;
    block-size: 7px;
  }
  .accordion.faq > .inner::before {
    left: 8px;
  }
  .accordion.faq > .inner p {
    padding-right: 0;
    padding-left: 2em;
  }
  .contents-nav {
    flex-direction: column;
    margin-bottom: 60px;
  }
  .voice {
    flex-direction: column !important;
    padding: 20px;
  }
  .voice__img {
    width: 100%;
  }
  .voice__img img {
    max-width: 120px;
  }
  .voice__body {
    width: 100%;
    padding: 0;
  }
  .tabs__btn {
    padding: 8px;
    font-size: 0.8em;
  }
  .tabs__panel.is-active {
    padding: 0;
  }
  .tabs__panel .t-m20 {
    margin-top: 10px;
  }
  .accordion > .ttl,
  .accordion.faq > .inner p {
    font-size: 0.9em;
  }
  .bg--round {
    border-radius: 30px;
  }
  .blog-list .blog-card {
    width: 48%;
  }
  .box--pd60 {
    padding: 30px 15px;
  }
  .blog-pager {
    margin-top: 20px;
  }
  .blog-page section {
    margin-top: 30px;
  }
}
@media print {
  a {
    text-decoration: underline;
  }
  .btn,
  .chip,
  .badge,
  .alert {
    box-shadow: none;
    background: transparent;
  }
}
