/* 
* {
  outline: 1px solid red !important;
} */

img {
  max-width: 100%;              /* 1 */
  height: auto;                 /* 1 */
  vertical-align: middle;       /* 2 */
  font-style: italic;           /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover;       /* 4 */
  shape-margin: 0.75rem;        /* 5 */
}
/*=======================================
	共通　パンくず
=======================================*/
.breadcrumbs {
  padding: 12px 0 0
}

.breadcrumbs .breadcrumbs-list {
  width: 1200px;
  margin: 0 auto;
  list-style-type: none;
  display: flex;
  align-items: center
}

.breadcrumbs .breadcrumbs-list li {
  color: #b4b4b4;
  font-size: 14px;
  position: relative
}

.breadcrumbs .breadcrumbs-list li.archive {
  padding-top: 0;
  padding-bottom: 0
}

.breadcrumbs .breadcrumbs-list li+li {
  padding-left: 12px
}

.breadcrumbs .breadcrumbs-list li+li:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-top: solid 1px #b4b4b4;
  border-right: solid 1px #b4b4b4;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: ""
}

.breadcrumbs .breadcrumbs-list li a {
  color: #b4b4b4
}

.breadcrumbs .breadcrumbs-list li a.home {
  color: #b4b4b4
}

@media (max-width: 1024px) {
  .breadcrumbs {
      padding:12px 20px 0
  }

  .breadcrumbs .breadcrumbs-list {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch
  }

  .breadcrumbs .breadcrumbs-list li,.breadcrumbs .breadcrumbs-list li a {
      white-space: nowrap;
      font-size: 12px
  }
}


/* スキー場チャート */
/* ============================
   Layout
============================ */
.resorts {
    padding: 4rem 0;
    background: #fff;
}

.resorts__container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1.5rem;
}

.resorts__header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
   .resorts .resorts__title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}
    
}
.resorts__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
       margin-bottom: 1rem;
}

.resorts__subtitle {
    font-size: 1.7rem;
    color: #64748b;
}

.resorts__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .resorts__layout {
        grid-template-columns: 1fr;
    }
}

/* ============================
   Resort List
============================ */
.resort-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resort-card {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    cursor: pointer;
    background: #fff;
    transition: 0.2s;
}

.resort-card:hover {
    background: #f8fafc;
}

.resort-card--active {
    border-color: #0ea5e9;
    background: #f0f9ff;
    transform: scale(1.02);
}

.resort-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.resort-card__name {
    font-weight: 700;
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.resort-card__badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 999px;
    font-weight: 700;
}

.resort-card__badge--sky { background: #e0f2fe; color: #0369a1; }
.resort-card__badge--orange { background: #ffedd5; color: #c2410c; }
.resort-card__badge--indigo { background: #e0e7ff; color: #4338ca; }
.resort-card__badge--emerald { background: #d1fae5; color: #047857; }
.resort-card__badge--pink { background: #fce7f3; color: #be185d; }

.resort-card__desc {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

/* ============================
   Detail Panel
============================ */
.resort-detail {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
}

.resort-detail__image {
    width: 100%;
    height: 200px;
    background: #e2e8f0;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.resort-detail__image img { 
    width: 100%; height: auto; object-fit: cover; 
}
#resort-image-text { display: block; }
.resort-detail__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.resort-detail__tagline {
    text-align: center;
    color: #0284c7;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.resort-detail__chart {
    max-width: 450px;
    margin: auto;
    height: 280px;
}

/* ============================
   Stats
============================ */
.resort-stats {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .resort-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.resort-stats__item {
    background: #fff;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.resort-stats__label {
    font-size: 1.7rem;
    color: #94a3b8;
    font-weight: 700;
}

.resort-stats__value {
    font-size: 1rem;
    font-weight: 700;
    color: #334155;
}

/* ============================
   Button
============================ */
.resort-detail__link {
    text-align: center;
    margin-top: 2rem;
}

.resort-detail__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0f172a;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}
.resort-detail__button span{
    color: #ffffff;
}

.resort-detail__button:hover {
    background: #000;
}

.resort-detail__button-arrow {
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.resort-detail__button:hover .resort-detail__button-arrow {
    transform: translateX(4px);
}


/* エキナカ体験 */

/* ============================
   Station Section
============================ */
.station {
    padding: 4rem 0;
    background: #fff;
}

.station__container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1.5rem;
}

.station__header {
    text-align: center;
    margin-bottom: 4rem;
}
@media (min-width: 768px) {
     .station .station__title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}
}
.station__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.station__subtitle {
    font-size: 2rem;
    color: #64748b;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

/* ============================
   Grid
============================ */
.station__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .station__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   Station Card
============================ */
.station-card {
    transition: box-shadow 0.2s;
}

.station-card__image:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.station-card__image {
    transition: box-shadow 0.2s;
    height: 350px;
    background: #e2e8f0;
    border-radius: 1rem;
    margin-bottom: 1.5rem;

}

.station-card__image img { 
    width: 100%; height: 100%; object-fit: cover; /* 画像を枠内に収める */
}

.image-placeholder{
    overflow: hidden;
}
.station-card__title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.station-card__emoji {
    font-size: 2rem;
}

.station-card__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.station-card__text {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.station-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.station-card__tag {
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
}

/* ============================
   Shopping Section
============================ */
.station-shop {
    margin-top: 4rem;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
}
.station-shop__image img { 
    width: 100%; height: 100%; object-fit: cover; /* 画像を枠内に収める */
}
.station-shop__inner {
    display: flex;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 768px) {
    .station .station-shop__inner {
        flex-direction: column;
    }
}

.station-shop__image {
    width: 100%;
    max-width: 300px;
    height: 180px;
    background: #e2e8f0;
    border-radius: 1rem;
}

.station-shop__content {
    flex: 1;
}

.station-shop__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.station-shop__text {
    color: #64748b;
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.station-shop__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    color: #475569;
    font-size: 1.3rem;
}

.station-shop__item {
    font-weight: 500;
}

/* ============================
   notice Section
============================ */
.notice__wrapper {
    margin-top: 4rem;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
}

.notice__inner {
    display: flex;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 768px) {
    .notice__wrapper .notice__inner {
        flex-direction: column;
    }
}

.notice__content {
    flex: 1;
}

.notice__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.notice_text {
    color: #64748b;
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.notice__list {
    font-size: 1.3rem;
}

.notice__item {
    font-weight: 500;
    line-height: 2;
    color: #d51f1f;
}




/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 110px;
    width: 100%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #f1f5f9;
    z-index: 50;
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav__brand-icon {
    font-size: 1.75rem;
}

.nav__brand-title {
    font-weight: 700;
    font-size: 2rem;
    color: #1e293b;
}

.nav__links {
    display: none;
}

@media (min-width: 768px) {
    .nav__links {
        display: flex;
        gap: 2rem;
    }
}

.nav__link {
    color: #475569;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: color 0.2s;
}

.nav__link:hover {
    color: #0284c7;
}

.nav__mobile-btn {
    font-size: 1.75rem;
    color: #475569;
    background: none;
    border: none;
}

@media (min-width: 768px) {
    .nav__mobile-btn {
        display: none;
    }
}

.nav__mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
}

.nav__mobile-link {
    display: block;
    padding: 0.75rem 0;
    color: #475569;
    font-size: 1rem;
}
@media (max-width: 768px) {
    .nav {
        top: 60px;
        z-index: 100;
    background: white;
    }
    .nav__inner {
    max-width: 100%;
}
.nav__mobile-menu {
    /* 既存のプロパティに加え */
    position: absolute;
    top: 100%; /* navのすぐ下に配置 */
    left: 0;
    right: 0;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}
/* JSでこのクラスが付与された時に表示する */
.nav__mobile-menu.is-active {
    display: block;
}
}


/* ========== HERO ========== */
/* .hero {
    position: relative;
    background: #0f172a;
    color: white;
    padding: 6rem 0 4rem;
    overflow: hidden;
} */
.hero {
    position: relative;
    background: url(../img/main-top.jpeg) no-repeat top center / cover;
    height: 485px;
    margin-top: 10rem;
}

@media (min-width: 768px) {
    .hero {
        padding: 12rem 0 6rem;
        height: 530px;
    }
}

.hero__bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background: radial-gradient(ellipse at top, #38bdf8, #0f172a, black);
}

.hero__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4rem;
    background: linear-gradient(to top, #f8fafc, transparent);
}

.hero__inner {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}
@media (max-width: 768px) {
    .hero__inner {
        padding: 4rem 1rem;
    }
}

.hero__badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    /* background: rgba(14,165,233,0.2); */
    background: #ad0808;
    border: 1px solid rgba(56,189,248,0.3);
    /* color: #bae6fd; */
     color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero__title {
    color: #ffffff;
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 5.75rem;
    }
}

.hero__highlight {
    color: #38bdf8;
}

.hero__subtitle {
    max-width: 70rem;
    margin: 1rem auto 0;
    font-size: 1.3rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.5;
    /* color: #cbd5e1; */
}
@media (min-width: 768px) {
    .hero__subtitle {
        font-size: 2rem;
    }
    .hero .hero__actions {
    margin-top: 3.5rem;
    }
}

.hero__actions {
    margin-top: 14.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
@media (max-width: 768px) {
.hero__actions {
    margin-top: 1.5rem;

}
}

.hero__btn {
    padding: 1.8rem 5.5rem;;
    border-radius: 0.75rem;
    font-weight: 700;
    transition: all 0.2s;
}

.hero__btn--primary {
    background: #0284c7;
    color: white;
    box-shadow: 0 4px 12px rgba(2,132,199,0.2);
}

.hero__btn--primary:hover {
    background: #0ea5e9;
    transform: translateY(-2px);
}

.hero__btn--outline {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.hero__btn--outline:hover {
    background: rgba(255,255,255,0.2);
}
/* ========== MERITS ========== */
.merits {
    background: #f8fafc;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .merits {
        padding: 10rem 0;
    }
}

.merits__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.merits__header {
    text-align: center;
    margin-bottom: 4rem;
}

.merits__title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .merits__title {
        font-size: 3.5rem;
    }
}

.merits__subtitle {
    max-width: 70rem;
    margin: 0 auto;
    font-size: 1.7rem;
    color: #475569;
    line-height: 1.5;
}
@media (min-width: 768px) {
    .merits__subtitle {
        font-size: 2rem;
    }
}

.merits__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .merits__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.merits__item {
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s;
}

.merits__item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.merits__icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: background 0.3s;
}

.merits__icon--sky {
    background: #f0f9ff;
}

.merits__icon--sky:hover {
    background: #e0f2fe;
}

.merits__icon--orange {
    background: #fff7ed;
}

.merits__icon--orange:hover {
    background: #ffedd5;
}

.merits__icon--green {
    background: #ecfdf5;
}

.merits__icon--green:hover {
    background: #d1fae5;
}
.box-img{
    border-radius: 10px;
}
.merits__item-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    margin-top:  0.75rem;
}

.merits__item-text {
    color: #475569;
    line-height: 1.7;
}
/* ========== PLANS ========== */
.plans {
    background: white;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .plans {
        padding: 10rem 0;
    }
}

.plans__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.plans__header {
    text-align: center;
    margin-bottom: 3rem;
}

.plans__title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .plans__title {
        font-size: 3.5rem;
    }
}

.plans__subtitle {
    max-width: 70rem;
    margin: 0 auto;
    font-size: 1.7rem;
    color: #475569;
}
@media (min-width: 768px) {
    .plans__subtitle{
        font-size: 2rem;
    }
}

.plans__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10rem;
}

@media (min-width: 1024px) {
    .plans__grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

/* LEFT SIDE */
.plans__options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plans__label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.plans__option {
    text-align: left;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: all 0.3s;
    cursor: pointer;
}

.plans__option:hover {
    border-color: #bae6fd;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.plans__option--active {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14,165,233,0.15);
}

.plans__option-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.plans__option-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.plans__option-price {
    background: #f1f5f9;
    color: #475569;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.plans__option-text {
    font-size: 1.5rem;
    color: #64748b;
    line-height: 1.7;
}

/* RIGHT SIDE */
.plans__chart-box {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plans__chart-title {
    font-size: 1rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 1.5rem;
}

.plans__chart-container {
    width: 100%;
    max-width: 600px;
    height: 300px;
    position: relative;
}

@media (min-width: 768px) {
    .plans__chart-container {
        height: 350px;
    }
}
/* ========== VIDEO SECTION ========== */
.video-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .video-section {
        padding: 10rem 0;
    }
}

.video-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.video-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-section__title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .video-section__title {
        font-size: 3.5rem;
    }
}

.video-section__subtitle {
    max-width: 70rem;
    margin: 0 auto;
    font-size: 1.7rem;
    color: #475569;
    line-height: 1.7;
}
@media (min-width: 768px) {
    .video-section__subtitle {
        font-size: 2rem;
    }
}

/* CARD */
.video-section__card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* ASPECT RATIO */
.video-section__frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 1rem;
    overflow: hidden;
    background: #e2e8f0;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.1);
}

.video-section__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* POINTS */
.video-section__points {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.5rem;
    color: #64748b;
    font-weight: 500;
}

.video-section__point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-section__check {
    color: #0284c7;
    font-weight: 700;
}
/* ========== TIMELINE ========== */
.timeline {
    background: white;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .timeline {
        padding: 10rem 0;
    }
}

.timeline__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.timeline__header {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline__title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .timeline__title {
        font-size: 3.5rem;
    }
}

.timeline__subtitle {
    font-size: 1.7rem;
    color: #475569;
    line-height: 1.7;
}
@media (min-width: 768px) {
  .timeline__subtitle  {
        font-size: 2rem;
    }
}

/* LIST */
.timeline__list {
    position: relative;
    padding-left: 2rem;
}

.timeline__list::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1.25rem;
    width: 2px;
    background: #e2e8f0;
}

/* ITEM */
.timeline__item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.timeline__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border: 4px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 2;
    transition: border-color 0.3s;
}

.timeline__item:hover .timeline__icon {
    border-color: #0ea5e9;
}

/* CONTENT */
.timeline__content {
    margin-left: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    width: 100%;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.timeline__content:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.timeline__content-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.timeline__time {
    color: #0284c7;
    font-weight: 700;
    font-size: 1.5rem;
}

.timeline__heading {
    margin-top: 0.25rem;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.timeline__arrow {
    font-size: 2rem;
    color: #94a3b8;
    transition: transform 0.3s;
}

.timeline__arrow--open {
    transform: rotate(180deg);
}

/* DETAILS */
.timeline__details {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    color: #475569;
    font-size: 1.5rem;
    line-height: 1.6;
}

.timeline__details--open {
    display: block;
}









/* ========== Q&A ========== */
.qa {
    background: #f8fafc;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .qa {
        padding: 10rem 0;
    }
}

.qa__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.qa__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .qa__title {
        font-size: 3.5rem;
    }
}

.qa__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.qa__item {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    background: white;
}

/* QUESTION BUTTON */
.qa__question {
    width: 100%;
    padding: 1rem 1.5rem;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.qa__question:hover {
    background: #f1f5f9;
}

.qa__question-text {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.8rem;
}

.qa__icon {
    font-size: 2rem;
    font-weight: 700;
    color: #0284c7;
    transition: transform 0.3s;
}

.qa__icon--open {
    transform: rotate(45deg);
}

/* ANSWER */
.qa__answer {
    display: none;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    font-size: 1.8rem;
}

.qa__answer--open {
    display: block;
}

.qa__answer-label {
    font-weight: 700;
    color: #0284c7;
    margin-right: 0.25rem;
}

/* ========== CULTURE ========== */
.culture {
    background: #0f172a;
    color: white;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .culture {
        padding: 10rem 0;
    }
}

.culture__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.culture__title {
    color: #cbd5e1;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .culture__title {
        font-size: 3.5rem;
    }
}

.culture__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
}

@media (min-width: 768px) {
    .culture__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.culture__item {
    background: #1e293b;
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid #334155;
}

.culture__icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.culture__item-title {
    color: #cbd5e1;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.culture__item-text {
    font-size: 1.5rem;
    color: #cbd5e1;
    line-height: 1.6;
}

