@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", "Roboto", sans-serif;
  color: #2c3e50;
  line-height: 1.8;
  overflow-x: hidden;
  background: #ffffff;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 30px;
  }
}

.loader {
  position: fixed;
  inset: 0;
  background: white;
  /* 高級感 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loader .loader__text {
  opacity: 0;
}

.loader__inner {
  text-align: center;
}

.loader__number {
  width: 450px;
  transform-origin: center;
}
@media (max-width: 768px) {
  .loader__number {
    max-width: 250px;
  }
}
.loader__number .cls-1 {
  stroke: #b77535;
  stroke-miterlimit: 10;
  stroke-width: 0.42px;
}
.loader__number .cls-1,
.loader__number .cls-2 {
  fill: #b77535;
}
.loader__number .cls-6 {
  fill: #e94530;
}

.loader__subtitle {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1;
  color: var(--hero110-color);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px 0;
  box-shadow: 0 4px 30px rgba(0, 40, 85, 0.1);
}
.header__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header__container {
    padding: 0 30px;
  }
}
.header__logo {
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  font-family: "Inter", "Roboto", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.header__logo span {
  color: #e31837;
}
.header__nav {
  display: flex;
  gap: 50px;
}
@media (max-width: 768px) {
  .header__nav {
    gap: 25px;
  }
}
.header__nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  font-family: "Inter", "Roboto", sans-serif;
}
.header__nav a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #e31837;
  transition: width 0.3s ease;
}
.header__nav a:hover {
  color: #00a8e1;
}
.header__nav a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  /* ヘッダー分だけ下に逃がす */
  padding-top: 130px;
  box-sizing: border-box;
  /* 画面高を確保 */
  min-height: calc(100vh - 130px);
  /* 横だけ中央寄せ（縦はしない） */
  display: flex;
  justify-content: center;
  overflow: hidden;
  background: #002855;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 60px;
    min-height: calc(100vh - 60px);
    min-height: auto;
    /* ★ これを追加 */
    padding-bottom: 120px;
  }
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #002855 0%, #003d82 100%);
}
.hero__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(0, 168, 225, 0.03) 50px, rgba(0, 168, 225, 0.03) 51px), repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0, 168, 225, 0.03) 50px, rgba(0, 168, 225, 0.03) 51px);
}
.hero__bg::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 168, 225, 0.15) 0%, transparent 70%);
  border: 1px solid rgba(0, 168, 225, 0.1);
}
@media (max-width: 768px) {
  .hero__bg::after {
    width: 500px;
    height: 500px;
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 1200px;
  padding: 0 20px 160px;
}
@media (max-width: 768px) {
  .hero__content {
    padding-bottom: 80px;
  }
}
.hero__year {
  font-size: 13px;
  letter-spacing: 8px;
  color: #d4af37;
  margin-bottom: 40px;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Inter", "Roboto", sans-serif;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .hero__year {
    letter-spacing: 4px;
  }
}
.hero__year::before, .hero__year::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  vertical-align: middle;
  margin: 0 20px;
}
@media (max-width: 768px) {
  .hero__year::before, .hero__year::after {
    width: 24px;
    margin: 0 10px;
  }
}
.hero__title {
  font-size: 70px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 40px;
  font-family: "Noto Sans JP", "Roboto", sans-serif;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 42px;
  }
}
.hero__title-line {
  display: block;
  overflow: hidden;
}
.hero__title-line--large {
  font-size: 200px;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  background: linear-gradient(135deg, #e31837 0%, #d4af37 50%, #00a8e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -8px;
  line-height: 0.9;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .hero__title-line--large {
    font-size: 110px;
    letter-spacing: -4px;
  }
}
.hero__subtitle {
  font-size: 22px;
  letter-spacing: 2px;
  opacity: 0.95;
  color: #e8f4f8;
  font-weight: 300;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 16px;
  }
}
.hero__cta {
  display: inline-flex;
  gap: 20px;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .hero__cta {
    margin-bottom: 80px;
    flex-direction: column;
    gap: 15px;
  }
}
.hero__cta .btn {
  padding: 18px 45px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", "Roboto", sans-serif;
}
.hero__cta .btn--primary {
  background: linear-gradient(135deg, #e31837 0%, #c41230 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(227, 24, 55, 0.3);
}
.hero__cta .btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(227, 24, 55, 0.4);
}
.hero__cta .btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.hero__cta .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00a8e1;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 2px;
  color: #00a8e1;
  text-transform: uppercase;
  font-family: "Inter", "Roboto", sans-serif;
}
@media (max-width: 768px) {
  .hero__scroll {
    bottom: 20px;
  }
}
.hero__scroll-line {
  width: 2px;
  height: 70px;
  background: linear-gradient(180deg, #00a8e1 0%, transparent 100%);
  border-radius: 2px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.section-title__sub {
  display: block;
  font-size: 13px;
  letter-spacing: 4px;
  color: #e31837;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Inter", "Roboto", sans-serif;
}
.section-title__sub::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #e31837;
  vertical-align: middle;
  margin-right: 15px;
}
.section-title__sub::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #e31837;
  vertical-align: middle;
  margin-left: 15px;
}
.section-title__main {
  font-size: 56px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #002855;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  .section-title__main {
    font-size: 38px;
  }
}
.section-title--white .section-title__main {
  color: #ffffff;
}
.section-title--white .section-title__sub {
  color: #d4af37;
}
.section-title--white .section-title__sub::before, .section-title--white .section-title__sub::after {
  background: #d4af37;
}

.story {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .story {
    padding: 60px 0;
  }
}
.story::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 225, 0.05) 0%, transparent 70%);
}
.story__content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .story__content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.story__text p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 2;
  color: #1e323b;
}
@media (max-width: 768px) {
  .story__text p {
    line-height: 1.5;
  }
}
.story__text p:first-child {
  font-size: 22px;
  color: #002855;
  font-weight: 600;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
}
.story__text p:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #e31837 0%, #00a8e1 100%);
  border-radius: 2px;
}
.story__text .highlight {
  color: #e31837;
  font-weight: 600;
}
.story__figure {
  margin: 0;
}
.story__figure caption {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.6;
  color: #1e323b;
  letter-spacing: 0.5px;
  text-align: right;
  opacity: 0.8;
}
.story__image {
  position: relative;
}
.story__image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 40, 85, 0.15);
}
.story__image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(0, 168, 225, 0.2);
  border-radius: 20px;
  z-index: 1;
}
.story__image-bg {
  position: absolute;
  inset: 0;
}
.story__image-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.story__image::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border: 2px solid #00a8e1;
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #002855 0%, #003d82 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .stats {
    padding: 60px 0;
  }
}
.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(0, 168, 225, 0.03) 100px, rgba(0, 168, 225, 0.03) 101px);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
.stats__item {
  text-align: center;
  color: #ffffff;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.stats__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #e31837 0%, #d4af37 50%, #00a8e1 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.stats__item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-10px);
}
.stats__item:hover::before {
  transform: scaleX(1);
}
.stats__number {
  font-size: 80px;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  background: linear-gradient(135deg, #d4af37 0%, #e31837 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
@media (max-width: 768px) {
  .stats__number {
    font-size: 60px;
  }
}
.stats__label {
  font-size: 20px;
  letter-spacing: 2px;
  opacity: 0.9;
  color: #e8f4f8;
  text-transform: uppercase;
  font-family: "Inter", "Roboto", sans-serif;
  font-weight: 500;
}
@media (max-width: 768px) {
  .stats__label {
    font-size: 13px;
  }
}
.stats__note {
  margin-top: 40px;
  text-align: right;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Inter", "Roboto", sans-serif;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .stats__note {
    margin-top: 30px;
    font-size: 12px;
  }
}

.timeline {
  padding: 80px 0;
  background: linear-gradient(180deg, #e8f4f8 0%, #ffffff 100%);
  position: relative;
}
@media (max-width: 768px) {
  .timeline {
    padding: 60px 0;
  }
}
@media (min-width: 769px) {
  .timeline .container {
    max-width: 1150px;
  }
}
.timeline__content {
  position: relative;
  padding-left: 120px;
}
@media (max-width: 768px) {
  .timeline__content {
    padding-left: 70px;
  }
}
.timeline__content::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #e31837 0%, #d4af37 50%, #00a8e1 100%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(227, 24, 55, 0.3);
}
.timeline__item {
  position: relative;
  margin-bottom: 30px;
}
.timeline__item:last-child {
  margin-bottom: 0;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -108px;
  top: 8px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  border: 4px solid #e31837;
  box-shadow: 0 0 0 8px rgba(227, 24, 55, 0.1);
  transition: all 0.3s ease;
  z-index: 2;
}
@media (max-width: 768px) {
  .timeline__item::before {
    left: -58px;
  }
}
.timeline__item:nth-child(even)::before {
  border-color: #00a8e1;
  box-shadow: 0 0 0 8px rgba(0, 168, 225, 0.1);
}
.timeline__item:hover::before {
  transform: scale(1.5);
  box-shadow: 0 0 0 12px rgba(227, 24, 55, 0.15);
}
.timeline__year {
  font-size: 38px;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  background: linear-gradient(135deg, #002855 0%, #00a8e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: -2px;
}
@media (max-width: 768px) {
  .timeline__year {
    font-size: 30px;
  }
}
.timeline__details {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 40, 85, 0.15);
  border-left: 5px solid #e31837;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .timeline__details {
    flex-direction: column;
  }
}
@media (min-width: 769px) {
  .timeline__details {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
.timeline__details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(227, 24, 55, 0.02) 0%, transparent 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.timeline__details:hover {
  transform: translateX(15px);
  box-shadow: 0 30px 80px rgba(0, 40, 85, 0.2);
}
.timeline__details:hover::before {
  opacity: 1;
}
.timeline__text {
  flex: 1;
  min-width: 0;
}
.timeline__text h3 {
  font-size: 26px;
  margin-bottom: 8px;
  color: #002855;
  font-weight: 700;
}
@media (max-width: 768px) {
  .timeline__text h3 {
    font-size: 20px;
  }
}
.timeline__text p {
  color: #1e323b;
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .timeline__text p {
    font-size: 16px;
  }
}
.timeline__image {
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .timeline__image {
    width: 200px;
  }
}
.timeline__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 769px) {
  .timeline__image img {
    height: 150px;
  }
}
@media (max-width: 768px) {
  .timeline__image img {
    max-height: 250px;
  }
}
.timeline__image img.position-center-top {
  -o-object-position: center 70%;
     object-position: center 70%;
}
.timeline__cta {
  position: relative;
  margin-top: 60px;
  padding-left: 0;
  text-align: center;
}
.timeline__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #e31837 0%, #b5132c 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 20px 60px rgba(0, 40, 85, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .timeline__button {
    font-size: 16px;
    padding: 16px 32px;
  }
}
.timeline__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transition: left 0.6s ease;
}
.timeline__button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 60px rgba(227, 24, 55, 0.4);
}
.timeline__button:hover::before {
  left: 100%;
}
.timeline__button:hover .timeline__button-icon {
  transform: translateX(6px);
}
.timeline__button:active {
  transform: translateY(-2px) scale(1.02);
}
.timeline__button-icon {
  transition: transform 0.3s ease;
}

.future {
  padding: 140px 0;
  background: #002855;
  position: relative;
}
@media (max-width: 768px) {
  .future {
    padding: 80px 0;
  }
}
.future__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.future__background::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 225, 0.08) 0%, transparent 70%);
  -webkit-animation: pulse 8s ease-in-out infinite;
          animation: pulse 8s ease-in-out infinite;
}
.future__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(0, 168, 225, 0.02) 80px, rgba(0, 168, 225, 0.02) 81px), repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(0, 168, 225, 0.02) 80px, rgba(0, 168, 225, 0.02) 81px);
}
.future .container {
  position: relative;
  z-index: 1;
}
.future__intro {
  text-align: center;
  margin-bottom: 60px;
}
.future__intro p {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.8;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .future__intro p {
    font-size: 22px;
    line-height: 1.5;
  }
}
.future__intro p .highlight {
  background: linear-gradient(135deg, #d4af37 0%, #e31837 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.future__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .future__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .future__cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.future__card {
  height: 100%;
  position: relative;
}
.future__card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.future__card:hover .future__card-inner {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}
.future__card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.future__card .card__media {
  width: 228px;
  height: 228px;
  margin: 0 auto 36px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #002855, #003d82);
}
@media (max-width: 768px) {
  .future__card .card__media .card__media {
    width: 110px;
    height: 110px;
    margin-bottom: 28px;
  }
}
.future__card .card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(0, 168, 225, 0.35);
  z-index: 2;
}
.future__card .card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  filter: saturate(0.95) contrast(1.05);
}
.future__card .card__title {
  font-size: 22px;
  font-weight: 600;
  color: #002855;
  margin-bottom: 15px;
}
.future__card .card__description {
  list-style: disc;
  padding-left: 1.2em;
  font-size: 16px;
  line-height: 1.8;
  color: #1e323b;
  text-align: left;
  max-width: 260px;
  margin: 0 auto;
}
.future__card .card__description li {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .future__card .card__description {
    font-size: 15px;
  }
}

.footer {
  background: #002855;
  padding: 80px 0 40px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 168, 225, 0.5) 50%, transparent 100%);
}
.footer__content {
  text-align: center;
  color: #ffffff;
}
.footer__logo {
  font-size: 32px;
  font-weight: 900;
  font-family: "Inter", "Roboto", sans-serif;
  margin-bottom: 30px;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer__logo span {
  background: linear-gradient(135deg, #e31837 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #e31837 0%, #00a8e1 100%);
  margin: 30px auto;
}
.footer__text {
  font-size: 13px;
  opacity: 0.7;
  color: #e8f4f8;
  letter-spacing: 1px;
  font-family: "Inter", "Roboto", sans-serif;
}
.footer__global {
  margin-top: 30px;
  font-size: 12px;
  color: #00a8e1;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}
/*# sourceMappingURL=anniversary2nd.css.map */