/* =========================================
   ANCHOR NAV
========================================= */

.section-nav {
  padding-top: 100px;
  padding-bottom: 90px;
  background: #fff;
}

.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.anchor-nav-item {
  position: relative;
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-radius: 20px;
  background:
    linear-gradient(135deg,
      #1b5bb5 0%,
      #2b7cff 100%);
  overflow: hidden;
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.anchor-nav-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 55%);
}

.anchor-nav-item:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 36px rgba(27, 91, 181, 0.24);
}

.anchor-nav-text {
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  z-index: 1;
}

.anchor-nav-arrow {
  position: relative;
  width: 14px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  z-index: 1;
}

/* =========================================
   CONTENT SECTION
========================================= */

.content-section {
  position: relative;
  overflow: hidden;
}

.content-section .section-heading {
  margin-bottom: 56px;
}

/* =========================================
   CONTENT CARD GRID
========================================= */

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

/* =========================================
   CONTENT CARD
========================================= */

.content-card {
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
  box-shadow:
    0 14px 40px rgba(15, 23, 42, 0.08);
  transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.content-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.14);
}

.content-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  aspect-ratio: 16 / 9;
  background: #ddd;
  border-radius: 10px 10px 0 0;
}

.content-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.content-card:hover .content-card-image img {
  transform: scale(1.05);
}

.content-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 34px 32px 32px;
}

.content-card-title {
  margin-bottom: 18px;
  color: #111;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.content-card-text {
  margin-bottom: 30px;
  color: #666;
  font-size: 0.98rem;
  line-height: 1.95;
}

.content-card-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: gap .3s ease;
}

.content-card-link::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.content-card:hover .content-card-link {
  gap: 20px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media screen and (max-width: 1200px) {

  .content-card-grid {
    gap: 28px;
  }
}

@media screen and (max-width: 768px) {

  /* nav */

  .section-nav {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .anchor-nav {
    flex-direction: column;
    gap: 14px;
  }

  .anchor-nav-item {
    min-width: 100%;
    padding: 20px 22px;
    border-radius: 18px;
  }

  .anchor-nav-text {
    font-size: 0.94rem;
  }

  /* content */

  .content-section .section-heading {
    margin-bottom: 40px;
  }

  .content-card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .content-card {
    border-radius: 22px;
  }

  .content-card-body {
    padding: 26px 22px 24px;
  }

  .content-card-title {
    margin-bottom: 14px;
    font-size: 1.25rem;
  }

  .content-card-text {
    margin-bottom: 24px;

    font-size: 0.94rem;
    line-height: 1.85;
  }

  .content-card-link {
    font-size: 0.9rem;
  }
}

/* =========================================
MEDIA MAP
========================================= */

.media-map-section {
  padding: 120px 0;
  background: #f7f8fa;
}

.media-map {
  width: 100%;
}

.media-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
PC
========================================= */

.media-map--pc {
  max-width: 1400px;
  margin: 0 auto;
}

/* =========================================
SP
========================================= */

.media-map--sp {
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================
RESPONSIVE
========================================= */

@media screen and (min-width: 768px) {

  .media-map--sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {

  .media-map-section {
    padding: 80px 0;
  }

  .media-map--pc {
    display: none;
  }
}

/* =========================================
   MEDIA SPEC TABLE
========================================= */

.media-spec-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  overflow: hidden;
}

.media-spec {
  max-width: 980px;
  margin: 0 auto;
}

/* HEAD */
.media-spec__head {
  margin-bottom: 42px;
  text-align: center;
}

.media-spec__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(27, 91, 181, 0.08);

  color: #1b5bb5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.media-spec__title {
  margin-top: 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.3;
  color: #111;
}

/* TABLE WRAP */
.media-spec__tableWrap {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 18px 50px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
}

/* TABLE */
.media-spec__table {
  width: 100%;
  border-collapse: collapse;
}

.media-spec__table tr {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.media-spec__table tr:last-child {
  border-bottom: none;
}

.media-spec__table th,
.media-spec__table td {
  padding: 28px 36px;
  text-align: left;
  vertical-align: middle;
}

/* TH */
.media-spec__table th {
  width: 280px;
  background: rgba(27, 91, 181, 0.04);

  color: #111;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: .04em;
}

/* TD */
.media-spec__table td {
  background: #fff;

  color: #555;
  font-size: 0.98rem;
  line-height: 1.9;
}

/* DOWNLOAD BUTTON */
.case-more {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.section-more-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 320px;
  justify-content: center;
  padding: 20px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1b5bb5 0%, #2b7cff 100%);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: .04em;
  overflow: hidden;
  box-shadow:
    0 16px 40px rgba(27, 91, 181, 0.24);
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.section-more-link:hover {
  transform: translateY(-4px);

  box-shadow:
    0 22px 48px rgba(27, 91, 181, 0.32);
}

.section-more-link .arrow {
  font-size: 1.1rem;
  transition: transform .3s ease;
}

.section-more-link:hover .arrow {
  transform: translateX(4px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media screen and (max-width: 768px) {

  .media-spec__head {
    margin-bottom: 28px;
  }

  .media-spec__title {
    margin-top: 14px;
    font-size: 2rem;
  }

  .media-spec__tableWrap {
    border-radius: 22px;
  }

  .media-spec__table,
  .media-spec__table tbody,
  .media-spec__table tr,
  .media-spec__table th,
  .media-spec__table td {
    display: block;
    width: 100%;
  }

  .media-spec__table tr {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }

  .media-spec__table th {
    width: 100%;
    padding: 18px 20px 10px;
    border-bottom: none;

    font-size: 0.88rem;
  }

  .media-spec__table td {
    padding: 0 20px 20px;

    font-size: 0.94rem;
    line-height: 1.8;
  }

  .section-more-link {
    width: 100%;
    min-width: auto;
    padding: 18px 24px;
    font-size: 0.9rem;
  }
}