@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes glowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }
}
.pc-only {
  display: inline;
}
@media (max-width: 480px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 480px) {
  .sp-only {
    display: inline;
  }
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #161E34;
  height: 100%;
  overscroll-behavior: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  background: linear-gradient(to right, #161E34 0%, #233155 50%, #161E34 100%);
  min-height: 100%;
}

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

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

.sp-only {
  display: none;
}
@media (max-width: 480px) {
  .sp-only {
    display: inline;
  }
}

.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1080px;
  z-index: 100;
  transition: top 0.3s;
}
.header.is-scrolled {
  top: 8px;
}
.header__bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  max-width: 1080px;
  margin: 0 auto;
  gap: 40px;
}
@media (max-width: 480px) {
  .header__inner {
    padding: 12px 20px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-right: 24px;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .header__logo-img:hover {
    opacity: 0.7;
  }
}
@media (max-width: 480px) {
  .header__logo-img {
    height: 24px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.header__menu a {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 2vw, 14px);
  color: #fff;
  letter-spacing: 0.08em;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .header__menu a:hover {
    opacity: 0.7;
  }
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #FF093A 0%, #820002 100%);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 3.2vw, 18px);
  line-height: 1.35;
  padding: 10px 22px;
  border-radius: 50px;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.header__cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
}
.header__cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 9, 58, 0.45);
}
.header__cta:hover::after {
  left: 120%;
  transition: left 0.5s ease;
}
@media (max-width: 480px) {
  .header__cta {
    font-size: 11px;
    padding: 8px 14px;
  }
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__burger {
    display: flex;
  }
}
.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.header__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: rgba(22, 30, 52, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 95;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 96px 32px 32px;
}
.mobile-menu.is-open {
  transform: translateX(0);
}
.mobile-menu ul {
  list-style: none;
}
.mobile-menu li + li {
  margin-top: 24px;
}
.mobile-menu a {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 3.2vw, 18px);
  letter-spacing: 0.08em;
  color: #fff;
  transition: opacity 0.25s;
}
.mobile-menu a:hover {
  opacity: 0.7;
}

.kv {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 1080px;
  min-height: 600px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .kv {
    height: auto;
    max-height: none;
    min-height: auto;
  }
}
.kv__marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .kv__marquee {
    position: relative;
    gap: 4px;
  }
}
.kv__row {
  width: 100%;
  height: 50vh;
  max-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .kv__row {
    height: 36vh;
    max-height: none;
  }
}
.kv__track {
  display: flex;
  align-items: center;
  will-change: transform;
}
.kv__card {
  position: relative;
  flex-shrink: 0;
  width: 30vw;
  height: 50vh;
  max-height: 540px;
  clip-path: polygon(20% 0%, 100% 0%, calc(100% - 20%) 100%, 0% 100%);
  overflow: hidden;
  margin-right: -80px;
}
@media (max-width: 768px) {
  .kv__card {
    width: 36vw;
    margin-right: -30px;
  }
}
@media (max-width: 480px) {
  .kv__card {
    width: 50vw;
    height: 36vh;
    max-height: none;
    margin-right: -30px;
  }
}
.kv__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kv__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2;
  pointer-events: none;
}
.kv__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1080px;
}
@media (max-width: 480px) {
  .kv__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 10px);
  }
}
.kv__title-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
  z-index: -1;
}
.kv__title-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
}
.kv__title {
  position: relative;
  z-index: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(44px, 10vw, 80px);
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.2s;
}
.kv__bottom-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 40%, transparent 80%);
  pointer-events: none;
  filter: blur(6px);
  z-index: 0;
}
@media (max-width: 480px) {
  .kv__bottom-glow {
    width: 280px;
    height: 72px;
  }
}
.kv__subtitle {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(20px, 4.5vw, 28px);
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.4s;
}
.kv__catch {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(16px, 3.5vw, 22px);
  color: #fff;
  line-height: 1.8;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.6s;
}
.kv__location {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 3.2vw, 20px);
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.8s;
}
.kv__feature {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 3.2vw, 20px);
  color: #fff;
  letter-spacing: 0.08em;
  animation: fadeUp 0.8s ease both;
  animation-delay: 1s;
}

.worry {
  position: relative;
  padding: 96px 24px;
  background: transparent;
}
@media (max-width: 480px) {
  .worry {
    padding: 64px 16px;
  }
}
.worry__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.worry__title {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(22px, 4.5vw, 30px);
  color: #fff;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 56px;
}
@media (max-width: 480px) {
  .worry__title {
    margin-bottom: 40px;
  }
}
.worry__title::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 40%, transparent 80%);
  pointer-events: none;
  filter: blur(6px);
}
@media (max-width: 480px) {
  .worry__title::after {
    width: 280px;
    height: 72px;
  }
}
.worry__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 480px) {
  .worry__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.worry__item {
  background: linear-gradient(to right, #161E34 0%, #233155 50%, #161E34 100%);
  border: 0.5px solid rgba(192, 192, 192, 0.5);
  border-radius: 10px;
  padding: 24px 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 3.2vw, 18px);
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.04em;
  color: #fff;
}
@media (max-width: 480px) {
  .worry__item {
    padding: 20px 24px;
    width: 100%;
  }
}
@media (min-width: 769px) {
  .worry__item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.worry__item:last-child:nth-child(odd) {
  grid-column: 1/-1;
  max-width: calc(50% - 10px);
  margin: 0 auto;
}
@media (max-width: 480px) {
  .worry__item:last-child:nth-child(odd) {
    max-width: 100%;
    grid-column: auto;
  }
}

.warning {
  position: relative;
  padding: 96px 24px;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
@media (max-width: 480px) {
  .warning {
    padding: 64px 16px;
  }
}
.warning__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.warning__lead {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .warning__lead {
    margin-bottom: 32px;
  }
}
.warning__title {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(22px, 4.5vw, 30px);
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.warning__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 40%, transparent 80%);
  pointer-events: none;
  filter: blur(6px);
  z-index: -1;
}
@media (max-width: 480px) {
  .warning__title::before {
    width: 280px;
    height: 72px;
  }
}

.answer {
  position: relative;
  padding: 96px 24px;
  background: transparent;
}
@media (max-width: 480px) {
  .answer {
    padding: 64px 16px;
  }
}
.answer__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.answer__head {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .answer__head {
    margin-bottom: 32px;
  }
}
.answer__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(36px, 7vw, 56px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.answer__label::before, .answer__label::after {
  content: "";
  flex: 1;
  height: 1px;
  position: relative;
}
.answer__label::before {
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  box-shadow: 30px 0 16px 1px rgba(255, 255, 255, 0.1);
}
.answer__label::after {
  background: linear-gradient(to left, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  box-shadow: -30px 0 16px 1px rgba(255, 255, 255, 0.1);
}
.answer__sub {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.06em;
}
.answer__body {
  text-align: center;
}
.answer__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.9;
  margin-bottom: 32px;
}
@media (max-width: 480px) {
  .answer__text {
    margin-bottom: 24px;
  }
}
.answer__highlight {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 4.5vw, 30px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.9;
}
.answer__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 480px) {
  .answer__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
}
.answer__card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.answer__card-img {
  width: 100%;
  height: 100%;
}
.answer__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.answer__card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.04em;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 90%, transparent 100%);
}
@media (max-width: 480px) {
  .answer__card-text {
    padding: 16px;
  }
}
.answer__catchcopy {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(22px, 4.5vw, 30px);
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-top: 48px;
  margin-left: -24px;
  margin-right: -24px;
  padding: 48px 24px;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}
.answer__catchcopy::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 40%, transparent 80%);
  filter: blur(6px);
  pointer-events: none;
}
@media (max-width: 480px) {
  .answer__catchcopy::after {
    width: 280px;
    height: 72px;
  }
}
@media (max-width: 480px) {
  .answer__catchcopy {
    margin-top: 36px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 36px 16px;
  }
}

.point {
  position: relative;
  padding: 96px 24px;
  background: transparent;
}
@media (max-width: 480px) {
  .point {
    padding: 64px 16px;
  }
}
.point__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.point__head {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 480px) {
  .point__head {
    margin-bottom: 36px;
  }
}
.point__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(36px, 7vw, 56px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.point__label::before, .point__label::after {
  content: "";
  flex: 1;
  height: 1px;
  position: relative;
}
.point__label::before {
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  box-shadow: 30px 0 16px 1px rgba(255, 255, 255, 0.1);
}
.point__label::after {
  background: linear-gradient(to left, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  box-shadow: -30px 0 16px 1px rgba(255, 255, 255, 0.1);
}
.point__sub {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.06em;
}
.point__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 480px) {
  .point__list {
    gap: 16px;
  }
}
.point__item {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.point__item:nth-child(even) {
  flex-direction: row-reverse;
}
.point__item:nth-child(even) .point__item-num {
  left: auto;
  right: 0;
  padding: 14px 14px 0 0;
  align-items: flex-end;
}
.point__item:nth-child(even) .point__item-num::before {
  left: auto;
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  border-radius: 0 20px 0 0;
}
@media (max-width: 480px) {
  .point__item {
    flex-direction: column;
  }
  .point__item:nth-child(even) {
    flex-direction: column;
  }
  .point__item:nth-child(even) .point__item-num {
    left: 0;
    right: auto;
    padding: 12px 0 0 12px;
    align-items: flex-start;
  }
  .point__item:nth-child(even) .point__item-num::before {
    left: 0;
    right: auto;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    border-radius: 20px 0 0 0;
  }
}
.point__item-img {
  position: relative;
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 769px) {
  .point__item-img {
    aspect-ratio: 3/2;
  }
}
@media (max-width: 480px) {
  .point__item-img {
    width: 100%;
    aspect-ratio: 4/3;
  }
}
.point__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.point__item-num {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(36px, 7vw, 56px);
  color: #fff;
  line-height: 1;
  padding: 14px 0 0 14px;
}
@media (max-width: 480px) {
  .point__item-num {
    padding: 12px 0 0 12px;
  }
}
.point__item-num small {
  font-size: clamp(15px, 3.2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.point__item-num::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #0B104E 0%, #4E5BC9 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: -1;
  border-radius: 20px 0 0 0;
}
@media (max-width: 480px) {
  .point__item-num::before {
    width: 100px;
    height: 100px;
  }
}
.point__item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 36px;
  background: #fff;
}
@media (max-width: 480px) {
  .point__item-body {
    padding: 24px 20px;
  }
}
.point__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 4.5vw, 30px);
  color: #161E34;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .point__item-title {
    margin-bottom: 12px;
  }
}
.point__item-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #161E34;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.ba {
  position: relative;
  padding: 96px 24px;
  background: transparent;
}
@media (max-width: 480px) {
  .ba {
    padding: 64px 16px;
  }
}
.ba__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.ba__head {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 480px) {
  .ba__head {
    margin-bottom: 36px;
  }
}
.ba__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(36px, 7vw, 56px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.ba__label::before, .ba__label::after {
  content: "";
  flex: 1;
  height: 1px;
  position: relative;
}
.ba__label::before {
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  box-shadow: 30px 0 16px 1px rgba(255, 255, 255, 0.1);
}
.ba__label::after {
  background: linear-gradient(to left, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  box-shadow: -30px 0 16px 1px rgba(255, 255, 255, 0.1);
}
.ba__sub {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.06em;
}
.ba__content {
  display: flex;
  align-items: stretch;
  gap: 32px;
}
@media (max-width: 480px) {
  .ba__content {
    flex-direction: column;
    gap: 0;
  }
}
.ba__block {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.ba__block-header {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(36px, 7vw, 56px);
  color: #fff;
  text-align: center;
  padding: 14px 0;
  letter-spacing: 0.06em;
}
.ba__block--before .ba__block-header {
  background: linear-gradient(135deg, #0B104E 0%, #2a3178 100%);
}
.ba__block--after .ba__block-header {
  background: linear-gradient(135deg, #8b0000 0%, #c0272d 100%);
}
.ba__block-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  flex-shrink: 0;
}
.ba__block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba__block-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #161E34;
  letter-spacing: 0.04em;
  line-height: 1.8;
  padding: 20px 24px;
  background: #fff;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .ba__block-text {
    padding: 16px 20px;
    flex-grow: 0;
  }
}
.ba__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 32px;
  color: #fff;
  opacity: 0.6;
}
@media (max-width: 480px) {
  .ba__arrow {
    padding: 24px 0;
    font-size: 28px;
  }
}

.voice {
  position: relative;
  padding: 96px 0;
  background: transparent;
}
@media (max-width: 480px) {
  .voice {
    padding: 64px 0;
  }
}
.voice__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 480px) {
  .voice__inner {
    padding: 0 16px;
  }
}
.voice__head {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 480px) {
  .voice__head {
    margin-bottom: 36px;
  }
}
.voice__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(36px, 7vw, 56px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.voice__label::before, .voice__label::after {
  content: "";
  flex: 1;
  height: 1px;
  position: relative;
}
.voice__label::before {
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  box-shadow: 30px 0 16px 1px rgba(255, 255, 255, 0.1);
}
.voice__label::after {
  background: linear-gradient(to left, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  box-shadow: -30px 0 16px 1px rgba(255, 255, 255, 0.1);
}
.voice__sub {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.06em;
}
.voice__slider {
  position: relative;
}
.voice__track {
  position: relative;
  height: 520px;
  overflow: visible;
  cursor: grab;
  user-select: none;
}
@media (max-width: 480px) {
  .voice__track {
    height: 380px;
    overflow: hidden;
  }
}
.voice__card {
  position: absolute;
  width: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  will-change: transform, opacity, filter;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.voice__card img {
  width: 100%;
  height: auto;
  pointer-events: none;
  display: block;
}
@media (max-width: 480px) {
  .voice__card {
    width: 220px;
  }
}
.voice__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 480px) {
  .voice__nav {
    margin-top: 24px;
  }
}
.voice__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice__nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.voice__dots {
  display: flex;
  gap: 8px;
}
.voice__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.2s;
}
.voice__dot.is-active {
  background: #fff;
}

.campaign {
  position: relative;
  padding: 96px 24px;
  background: transparent;
}
@media (max-width: 480px) {
  .campaign {
    padding: 64px 16px;
  }
}
.campaign__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.campaign__head {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 480px) {
  .campaign__head {
    margin-bottom: 36px;
  }
}
.campaign__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(36px, 7vw, 56px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.campaign__label::before, .campaign__label::after {
  content: "";
  flex: 1;
  height: 1px;
  position: relative;
}
.campaign__label::before {
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  box-shadow: 30px 0 16px 1px rgba(255, 255, 255, 0.1);
}
.campaign__label::after {
  background: linear-gradient(to left, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  box-shadow: -30px 0 16px 1px rgba(255, 255, 255, 0.1);
}
.campaign__sub {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.06em;
}
.campaign__title {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(22px, 4.5vw, 30px);
  color: #fff;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .campaign__title {
    margin-bottom: 32px;
  }
}
.campaign__title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 48px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 80%);
  pointer-events: none;
  filter: blur(5px);
}
@media (max-width: 480px) {
  .campaign__title::after {
    width: 180px;
    height: 36px;
  }
}
.campaign__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 480px) {
  .campaign__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.campaign__item {
  background: linear-gradient(to right, #161E34 0%, #233155 50%, #161E34 100%);
  border: 0.5px solid rgba(192, 192, 192, 0.5);
  border-radius: 10px;
  padding: 24px 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 3.2vw, 18px);
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.04em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .campaign__item {
    padding: 20px;
    width: 100%;
  }
}
.campaign__item:last-child:nth-child(odd) {
  grid-column: 1/-1;
  max-width: calc(50% - 10px);
  margin: 0 auto;
}
@media (max-width: 480px) {
  .campaign__item:last-child:nth-child(odd) {
    max-width: 100%;
    grid-column: auto;
  }
}

.price {
  position: relative;
  padding: 96px 24px;
  background: transparent;
}
@media (max-width: 480px) {
  .price {
    padding: 64px 16px;
  }
}
.price__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.price__head {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 480px) {
  .price__head {
    margin-bottom: 36px;
  }
}
.price__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(36px, 7vw, 56px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.price__label::before, .price__label::after {
  content: "";
  flex: 1;
  height: 1px;
  position: relative;
}
.price__label::before {
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  box-shadow: 30px 0 16px 1px rgba(255, 255, 255, 0.1);
}
.price__label::after {
  background: linear-gradient(to left, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  box-shadow: -30px 0 16px 1px rgba(255, 255, 255, 0.1);
}
.price__sub {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.06em;
}
.price__course {
  display: flex;
  align-items: center;
  gap: 16px;
}
.price__course-label {
  flex-shrink: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 4.5vw, 30px);
  color: #fff;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  background: linear-gradient(to right, #161E34 0%, #233155 50%, #161E34 100%);
  border: 0.5px solid rgba(192, 192, 192, 0.5);
  border-radius: 100px;
}
@media (max-width: 480px) {
  .price__course-label {
    padding: 12px 24px;
  }
}
.price__course-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
}
.price__intro {
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 480px) {
  .price__intro {
    margin-bottom: 36px;
  }
}
.price__intro-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
}
.price__title {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(22px, 4.5vw, 30px);
  color: #fff;
  text-align: center;
  letter-spacing: 0.08em;
  padding: 32px 0 16px;
}
@media (max-width: 480px) {
  .price__title {
    padding: 24px 0 12px;
  }
}
.price__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding-bottom: 54px;
}
@media (max-width: 480px) {
  .price__lead {
    padding-bottom: 40px;
  }
}
.price__simulators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 480px) {
  .price__simulators {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 320px;
    margin: 0 auto;
  }
}
.price__sim {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 480px) {
  .price__sim {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }
}
.price__sim-img {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .price__sim-img {
    width: 120px;
    max-width: none;
    flex-shrink: 0;
    border-radius: 8px;
    margin-bottom: 0;
  }
}
.price__sim-img img {
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
}
.price__sim-body {
  flex: 1;
}
.price__sim-name {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 4.5vw, 30px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .price__sim-name {
    margin-bottom: 4px;
  }
}
.price__sim-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.price__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 480px) {
  .price__cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.price__card {
  position: relative;
  background: linear-gradient(to right, #161E34 0%, #233155 50%, #161E34 100%);
  border: 0.5px solid rgba(192, 192, 192, 0.5);
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.price__card-badges {
  display: flex;
  justify-content: center;
  gap: 0;
  position: relative;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-top: none;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.price__card-badge {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 3.2vw, 18px);
  letter-spacing: 0.04em;
  padding: 6px 20px;
  text-align: center;
  white-space: nowrap;
}
.price__card-badge--white {
  background: #fff;
}
.price__card-badge--white span {
  background: linear-gradient(to bottom, #FF093A 0%, #820002 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price__card-badge--red {
  background: linear-gradient(to bottom, #FF093A 0%, #820002 100%);
  color: #fff;
}
.price__card-body {
  padding: 28px 28px 0;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 480px) {
  .price__card-body {
    padding: 24px 24px 0;
  }
}
.price__card-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 4.5vw, 30px);
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.price__card-name strong {
  font-weight: 900;
}
.price__card-price {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.price__card-num {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 10vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price__card-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.price__card-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  margin-bottom: 20px;
}
.price__card-detail {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 8px;
}
.price__card-detail:last-of-type {
  margin-bottom: 20px;
}
.price__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  padding: 18px 20px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #FF093A 0%, #820002 100%);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 3.2vw, 18px);
  letter-spacing: 0.06em;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.price__card-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
}
.price__card-btn span {
  position: absolute;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  font-size: 14px;
}
.price__card-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 9, 58, 0.45);
}
.price__card-btn:hover::before {
  left: 120%;
  transition: left 0.5s ease;
}
@media (max-width: 480px) {
  .price__card-btn {
    width: calc(100% - 40px);
    margin: auto 20px 20px;
  }
}

.faq {
  position: relative;
  padding: 96px 24px;
  background: transparent;
}
@media (max-width: 480px) {
  .faq {
    padding: 64px 16px;
  }
}
.faq__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.faq__head {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 480px) {
  .faq__head {
    margin-bottom: 36px;
  }
}
.faq__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(36px, 7vw, 56px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.faq__label::before, .faq__label::after {
  content: "";
  flex: 1;
  height: 1px;
  position: relative;
}
.faq__label::before {
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  box-shadow: 30px 0 16px 1px rgba(255, 255, 255, 0.1);
}
.faq__label::after {
  background: linear-gradient(to left, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  box-shadow: -30px 0 16px 1px rgba(255, 255, 255, 0.1);
}
.faq__sub {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.06em;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq__item {
  position: relative;
}
.faq__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
}
.faq__item:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
}
.faq__question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 24px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 16px;
  text-align: left;
  border-radius: 8px;
  transition: background 0.3s;
}
@media (hover: hover) {
  .faq__question:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}
@media (max-width: 480px) {
  .faq__question {
    padding: 20px 16px;
    gap: 12px;
  }
}
.faq__q {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(22px, 4.5vw, 30px);
  color: #d4a037;
  flex-shrink: 0;
}
.faq__q-text {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.faq__toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  transition: background 0.3s;
}
.faq__answer-wrap {
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__answer {
  display: flex;
  gap: 16px;
  padding: 20px 20px 28px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
@media (max-width: 480px) {
  .faq__answer {
    padding: 10px 16px 24px;
    gap: 12px;
  }
}
.faq__a {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(22px, 4.5vw, 30px);
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
.faq__a-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.faq__item.is-open {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}
.faq__item.is-open .faq__answer {
  opacity: 1;
  transform: translateY(0);
}
.faq__item.is-open .faq__toggle {
  background: rgba(255, 255, 255, 0.15);
}

.cta {
  position: relative;
  padding: 96px 24px;
  background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 480px) {
  .cta {
    padding: 64px 16px;
  }
}
.cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta__title {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(22px, 4.5vw, 30px);
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .cta__title {
    margin-bottom: 32px;
  }
}
.cta__title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 40%, transparent 80%);
  pointer-events: none;
  filter: blur(6px);
}
@media (max-width: 480px) {
  .cta__title::after {
    width: 280px;
    height: 72px;
  }
}
.cta__body {
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .cta__body {
    margin-bottom: 32px;
  }
}
.cta__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-bottom: 0;
}
.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 64px 18px 40px;
  background: linear-gradient(to bottom, #FF093A 0%, #820002 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 3.2vw, 18px);
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cta__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
}
.cta__btn span {
  position: absolute;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  font-size: 14px;
}
@media (hover: hover) {
  .cta__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 9, 58, 0.45);
  }
  .cta__btn:hover::after {
    left: 120%;
    transition: left 0.5s ease;
  }
}
@media (max-width: 480px) {
  .cta__btn {
    padding: 16px 56px 16px 32px;
    width: 90%;
  }
}
.cta__btn--blue {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin: 60px auto 0;
  background: linear-gradient(to bottom, #1a3a8a 0%, #0B104E 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media (hover: hover) {
  .cta__btn--blue:hover {
    box-shadow: 0 0 20px rgba(26, 58, 138, 0.45);
  }
}

.access {
  position: relative;
  padding: 96px 24px;
  background: transparent;
}
@media (max-width: 480px) {
  .access {
    padding: 64px 16px;
  }
}
.access__inner {
  max-width: 720px;
  margin: 0 auto;
}
.access__head {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 480px) {
  .access__head {
    margin-bottom: 36px;
  }
}
.access__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(36px, 7vw, 56px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.access__label::before, .access__label::after {
  content: "";
  flex: 1;
  height: 1px;
  position: relative;
}
.access__label::before {
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  box-shadow: 30px 0 16px 1px rgba(255, 255, 255, 0.1);
}
.access__label::after {
  background: linear-gradient(to left, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  box-shadow: -30px 0 16px 1px rgba(255, 255, 255, 0.1);
}
.access__sub {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.06em;
}
.access__map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .access__map {
    margin-bottom: 32px;
  }
}
.access__map iframe {
  display: block;
  width: 100%;
  height: 300px;
}
@media (max-width: 480px) {
  .access__map iframe {
    height: 220px;
  }
}
.access__info {
  width: 100%;
}
.access__dl {
  display: flex;
  flex-direction: column;
}
.access__row {
  display: flex;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%) 1;
}
.access__row:first-child {
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%) 1;
}
@media (max-width: 480px) {
  .access__row {
    padding: 16px 0;
  }
}
.access__dt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.06em;
  width: 120px;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .access__dt {
    width: 100px;
  }
}
.access__dd {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 3.2vw, 18px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.access__dd a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .access__dd a:hover {
    opacity: 0.7;
  }
}

.footer {
  position: relative;
  padding: 64px 24px 40px;
  background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 480px) {
  .footer {
    padding: 48px 16px 32px;
  }
}
.footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 480px) {
  .footer__inner {
    gap: 32px;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .footer__logo:hover {
    opacity: 0.7;
  }
}
.footer__logo-img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
}
@media (max-width: 480px) {
  .footer__logo-img {
    height: 44px;
  }
}
.footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.3s, transform 0.3s;
}
@media (hover: hover) {
  .footer__sns-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
  }
}
@media (max-width: 480px) {
  .footer__sns-link {
    width: 44px;
    height: 44px;
  }
  .footer__sns-link svg {
    width: 24px;
    height: 24px;
  }
}
.footer__copy {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: clamp(11px, 2.5vw, 13px);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  text-align: center;
}

.totop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
}
.totop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (hover: hover) {
  .totop:hover {
    background: rgba(255, 255, 255, 0.15);
  }
}
@media (max-width: 480px) {
  .totop {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-duration: 0s !important;
  }
}/*# sourceMappingURL=style.css.map */