@charset "utf-8";

@keyframes infiniteScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes flyInFromLeft {
  0% { opacity: 0; transform: translateX(-15px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   ビネット装飾（画面固定の薄いグラデーション）
   ========================================================================== */

.original-gradient {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.15));
  pointer-events: none;
}

.content-wrapper {
  position: relative;
}

.content {
  position: relative;
}

/* ==========================================================================
   共通
   ========================================================================== */

body {
  overflow-x: hidden;
  margin: 0;
  width: 100%;
  font-family: "NotoSansJP";
  background: #f4f4f4;
  color: #081a00;
}

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

/* ヘッダーテキスト色（index と同様。is-dark-theme 適用時は白に反転） */
.header-list-txt { color: #081A00; }
.l-header.is-dark-theme .header-list-txt { color: #fff; }

.br-pc { display: none; }
.br-sp { display: inline; }

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

/* ==========================================================================
   FV (SP base / 480px)
   ========================================================================== */

.l-fv {
  position: relative;
  width: 100%;
  height: 71.88vw;
  overflow: hidden;
}

.fv-bg {
  position: absolute;
  inset: 0;
}

.fv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv-title {
  position: absolute;
  left: 5vw;
  bottom: 10vw;
}

.fv-label {
  display: flex;
  align-items: center;
  gap: 1.67vw;
  margin-bottom: 1.88vw;
}

.fv-label-diamond {
  display: inline-block;
  width: 2.65vw;
  height: 2.65vw;
  background: #00ff6a;
  border-radius: 1px;
  transform: rotate(45deg);
}

.fv-label-txt {
  font-family: "PlusJakartaSans", "Plus Jakarta Sans", sans-serif;
  font-size: 3.54vw;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.48px;
  line-height: 1.4;
}

.fv-heading {
  font-family: "ZenKakuGothicNew", "Zen Kaku Gothic New", sans-serif;
  font-size: 10vw;
  font-weight: 700;
  color: #fff;
  line-height: 1.38;
  letter-spacing: 1.92px;
  font-feature-settings: "palt" 1;
}

/* ==========================================================================
   Intro (SP base / 480px)
   ========================================================================== */

.l-intro {
  position: relative;
  padding: 10vw 0vw 0;
  overflow: hidden;
}

.intro-inner {
  position: relative;
  padding: 0 5vw;
}

.intro-bg-logo {
  position: absolute;
  top: -10vw;
  left: 0;
  width: 44.02vw;
  height: auto;
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.intro-heading {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 8.33vw;
  font-weight: 700;
  color: #081a00;
  line-height: 1.48;
  letter-spacing: 3.2px;
  font-feature-settings: "palt" 1;
  margin-bottom: 9.17vw;
}

.intro-body {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 3.33vw;
  font-weight: 500;
  color: #081a00;
  line-height: 1.9;
  text-align: justify;
  letter-spacing: 0.48px;
  margin-bottom: 8.33vw;
}

.intro-scroll-txt {
  width: 100vw;
  margin-left: 0;
  overflow: hidden;
  margin-top: 12.5vw;
  margin-bottom: 4.17vw;
}

.intro-scroll-track {
  display: flex;
  width: max-content;
  animation: infiniteScroll 20s linear infinite;
}

.intro-scroll-track span {
  font-family: "PlusJakartaSans", "Plus Jakarta Sans", sans-serif;
  font-size: 20.83vw;
  font-weight: 600;
  color: #00ff6a;
  letter-spacing: 2.08vw;
  line-height: 1.48;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 6.25vw;
}

/* ==========================================================================
   Side Navigation (PC only, hidden on SP)
   ========================================================================== */

.l-side-nav {
  display: none;
}

/* ==========================================================================
   Section Common (SP base / 480px)
   ========================================================================== */

.section-label {
  display: flex;
  align-items: center;
  gap: 1.67vw;
  margin-bottom: 3.33vw;
}

.section-label-diamond {
  display: inline-block;
  width: 2.65vw;
  height: 2.65vw;
  background: #00ff6a;
  border-radius: 2px;
  transform: rotate(45deg);
}

.section-label-txt {
  font-family: "PlusJakartaSans", "Plus Jakarta Sans", sans-serif;
  font-size: 3.54vw;
  font-weight: 700;
  color: #081a00;
  letter-spacing: 1.28px;
}

.section-heading {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 9.17vw;
  font-weight: 700;
  color: #081a00;
  line-height: 1.39;
  letter-spacing: 3.52px;
  font-feature-settings: "palt" 1;
  margin-bottom: 12.5vw;
}

/* ==========================================================================
   JOBS (SP base / 480px)
   ========================================================================== */

.l-jobs {
  position: relative;
  padding: 12.5vw 5vw 33.33vw;
}

.l-jobs::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #f4f4f4;
  z-index: -2;
  pointer-events: none;
}

.l-jobs::before {
  display: none;
}

.job-cards {
  display: flex;
  flex-direction: column;
  gap: 20vw;
}

.job-card {
  display: flex;
  flex-direction: column;
  gap: 5vw;
}

.job-card-img {
  position: relative;
  width: 100vw;
  margin-left: -5vw;
  margin-right: -5vw;
  border-radius: 0;
  overflow: hidden;
}

.job-card-img img {
  width: 100%;
  height: 58.33vw;
  object-fit: cover;
  display: block;
}

.job-card-img-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: #00ff6a;
  border-radius: 0;
  z-index: 2;
}

.job-card-body {
  flex: 1;
}

.job-card-title {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 6.67vw;
  font-weight: 700;
  color: #081a00;
  line-height: 1.48;
  margin-bottom: 3.33vw;
}

.job-card-subtitle {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 4.17vw;
  font-weight: 700;
  color: #081a00;
  line-height: 1.6;
  margin-bottom: 5vw;
}

.job-card-recommend {
  background: #fff;
  border-radius: 8px;
  padding: 5vw;
}

.job-card-recommend-label {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 3.33vw;
  font-weight: 700;
  color: #c4c4c4;
  letter-spacing: 0.32px;
  margin-bottom: 2.5vw;
}

.job-card-recommend-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.job-card-recommend-list li {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 2.92vw;
  font-weight: 500;
  color: #081a00;
  line-height: 1.6;
  letter-spacing: 0.28px;
  padding-left: 3.33vw;
  position: relative;
  margin-bottom: 1.67vw;
}

.job-card-recommend-list li:last-child {
  margin-bottom: 0;
}

.job-card-recommend-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #00ff6a;
  font-weight: 900;
  font-size: 2.92vw;
}

/* ==========================================================================
   FLOW (SP base / 480px)
   ========================================================================== */

.l-flow {
  padding: 33.33vw 5vw 33.33vw;
  background: #ffffff;
}

.flow-table {
  position: relative;
  z-index: 3;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 5vw;
}

.flow-table-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.83vw;
  background: #00ff6a;
  border-radius: 4px 0 0 4px;
}

.flow-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3.33vw;
  padding: 8.33vw 5vw;
}

.flow-row::after {
  content: "";
  position: absolute;
  left: 5vw;
  right: 5vw;
  bottom: 0;
  height: 1px;
  background: #eaeaea;
}

.flow-row:last-child::after {
  display: none;
}

.flow-row-num {
  font-family: "PlusJakartaSans", "Plus Jakarta Sans", sans-serif;
  font-size: 5vw;
  font-weight: 700;
  color: #c4c4c4;
  line-height: 1;
  flex-shrink: 0;
}

.flow-row-txt {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 5vw;
  font-weight: 600;
  color: #081a00;
  line-height: 1;
}

.flow-row-note {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 3.33vw;
  font-weight: 500;
  color: #959595;
  flex-shrink: 0;
}

.flow-notes {
  margin-top: 5vw;
  margin-bottom: 8.33vw;
}

.flow-note {
  display: flex;
  align-items: flex-start;
  gap: 2.08vw;
  margin-bottom: 2.08vw;
}

.flow-note:last-child {
  margin-bottom: 0;
}

.flow-note-num {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 2.92vw;
  font-weight: 500;
  color: #959595;
  line-height: 2;
  flex-shrink: 0;
}

.flow-note-txt {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 2.92vw;
  font-weight: 500;
  color: #081a00;
  line-height: 2;
}

/* ==========================================================================
   ENTRY (SP base / 480px)
   ========================================================================== */

.l-entry {
  position: relative;
  padding: 33.33vw 5vw;
  overflow: hidden;
}

.entry-bg {
  position: absolute;
  inset: 0;
}

.entry-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.entry-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.67vw;
  margin-bottom: 5vw;
}

.entry-label-diamond {
  display: inline-block;
  width: 2.5vw;
  height: 2.5vw;
  background: #00ff6a;
  border-radius: 2px;
  transform: rotate(45deg);
}

.entry-label-txt {
  font-family: "PlusJakartaSans", "Plus Jakarta Sans", sans-serif;
  font-size: 3.33vw;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.28px;
}

.entry-heading {
  font-family: "ZenKakuGothicNew", "Zen Kaku Gothic New", sans-serif;
  font-size: 11.67vw;
  font-weight: 800;
  color: #fff;
  line-height: 1.28;
  margin-bottom: 8.33vw;
}

.entry-desc {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 2.92vw;
  font-weight: 500;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.48px;
  margin-bottom: 12.5vw;
}

.entry-cards {
  display: flex;
  flex-direction: column;
  gap: 5vw;
}

.entry-card {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 36.04vw;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #081a00;
  transition: transform 0.3s ease;
}

.entry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #00ff6a 0%, #00ffee 100%);
}

.entry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 1;
  opacity: 0;
}

.entry-card-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: #00ff6a;
  border-radius: 8px 0 0 8px;
  z-index: 2;
}

.entry-card-txt {
  position: relative;
  z-index: 2;
  padding-left: 8.33vw;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 4.17vw;
}

.entry-card-en {
  display: block;
  font-family: "PlusJakartaSans", "Plus Jakarta Sans", sans-serif;
  font-size: 2.92vw;
  font-weight: 600;
  color: #00ff6a;
  letter-spacing: 1.12px;
  line-height: 1.1;
  margin-bottom: 0;
  flex-shrink: 0;
}

.entry-card .entry-card-en {
  color: #fff;
}

.entry-card-title {
  display: block;
  font-family: "ZenKakuGothicNew", "Zen Kaku Gothic New", sans-serif;
  font-size: 6.67vw;
  font-weight: 700;
  color: #081a00;
  line-height: 1.35;
}

.entry-card-btn {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 9.17vw;
  height: 9.17vw;
  background: #081a00;
  border-radius: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry-card-btn svg {
  width: 3.13vw;
  height: 3.13vw;
}

.entry-card:hover .entry-card-btn svg {
  animation: flyInFromLeft 0.4s ease forwards;
}

/* ==========================================================================
   Breadcrumb (SP base / 480px)
   ========================================================================== */

.l-breadcrumb {
  background: #3a3a3a;
  padding: 2.08vw 5vw;
  display: flex;
  align-items: center;
  gap: 3.33vw;
}

.breadcrumb-link {
  font-family: "PlusJakartaSans", "Plus Jakarta Sans", sans-serif;
  font-size: 2.92vw;
  font-weight: 500;
  color: #fff;
}

.breadcrumb-sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.breadcrumb-current {
  font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
  font-size: 2.92vw;
  font-weight: 400;
  color: #fff;
}

/* ==========================================================================
   More Contents (SP base / 480px)
   ========================================================================== */

.l-contents {
  background: #f4f4f4;
  padding: 30vw 5vw;
}

.contents-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.contents-header {
  margin-bottom: 10vw;
}

.contents-label {
  display: flex;
  align-items: center;
  gap: 1.67vw;
  margin-bottom: 1.67vw;
}

.contents-label-diamond {
  display: inline-block;
  width: 2.5vw;
  height: 2.5vw;
  background: #00ff6a;
  border-radius: 2px;
  transform: rotate(45deg);
}

.contents-label-txt {
  font-family: "PlusJakartaSans", "Plus Jakarta Sans", sans-serif;
  font-size: 3.33vw;
  font-weight: 700;
  color: #081a00;
  letter-spacing: 1.28px;
}

.contents-heading {
  font-family: "ZenKakuGothicNew", "Zen Kaku Gothic New", sans-serif;
  font-size: 6.67vw;
  font-weight: 700;
  color: #081a00;
  line-height: 1.48;
}

.contents-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.33vw;
}

.contents-link-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4.17vw 5vw;
  height: 21.67vw;
  background: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  color: #081a00;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.contents-link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #00ff6a 0.01%, #0ff 99.99%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

/* .contents-link-card:hover { transform: translateY(-2px); } */
.contents-link-card:hover::before { opacity: 1; }
.contents-link-card:hover .contents-link-arrow {
  animation: flyInFromLeft 0.4s ease forwards;
}

.contents-link-txt {
  position: relative;
  z-index: 1;
  font-family: "ZenKakuGothicNew", "Zen Kaku Gothic New", sans-serif;
  font-size: 4.17vw;
  font-weight: 700;
}

.contents-link-arrow {
  position: relative;
  z-index: 1;
  width: 3.33vw;
  height: 3.33vw;
  fill: #081a00;
  flex-shrink: 0;
}

/* ==========================================================================
   PC (min-width: 1025px / 1440px基準)
   ========================================================================== */

@media screen and (min-width: 1025px) {

  .br-pc { display: inline; }
  .br-sp { display: none; }

  /* --- FV PC --- */
  .l-fv { height: 36.11vw; }

  .fv-title {
    left: 5.56vw;
    bottom: 11.53vw;
  }

  .fv-label {
    gap: 0.56vw;
    margin-bottom: 0.83vw;
  }

  .fv-label-diamond { width: 0.76vw; height: 0.76vw; }

  .fv-label-txt { font-size: 1.11vw; }

  .fv-heading {
    font-size: 5.56vw;
    letter-spacing: 3.2px;
  }

  /* --- Intro PC --- */
  .l-intro {
    padding: 8.33vw 0vw 0;
  }

  .intro-inner {
    text-align: center;
  }

  .intro-bg-logo {
    top: -8.33vw;
    left: 0;
    width: 36.11vw;
  }


  .intro-heading {
    font-family: "ZenKakuGothicNew", "Zen Kaku Gothic New", sans-serif;
    font-size: 4.44vw;
    line-height: 1.3;
    letter-spacing: normal;
    font-feature-settings: normal;
    margin-bottom: 3.33vw;
  }

  .intro-body {
    font-family: "ZenKakuGothicNew", "Zen Kaku Gothic New", sans-serif;
    font-size: 1.11vw;
    line-height: 1.7;
    text-align: center;
    letter-spacing: normal;
    margin-bottom: 5.56vw;
  }

  .intro-scroll-txt {
    margin-left: 0;
    width: 100vw;
    margin-top: 4.17vw;
    margin-bottom: 0;
  }

  .intro-scroll-track span {
    font-size: 11.81vw;
    letter-spacing: 1.18vw;
    line-height: normal;
  }

  /* --- Side Navigation PC --- */
  .side-nav-scope {
    position: relative;
  }

  .l-side-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 8.33vw;
    left: 5.56vw;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.67vw 1.39vw;
    border-radius: 4px;
    gap: 0.56vw;
    width: 12.78vw;
  }

  .l-side-nav.is-fixed {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }

  .l-side-nav.is-bottom {
    position: absolute;
    top: auto;
    bottom: 0;
    transform: none;
  }

  .side-nav-item {
    font-family: "NotoSansJP", "Noto Sans JP", sans-serif;
    font-size: 0.97vw;
    font-weight: 700;
    color: #c4c4c4;
    text-decoration: none;
    line-height: 1.53;
    letter-spacing: 1.12px;
    padding: 0.28vw 0;
    transition: color 0.3s ease;
  }

  .side-nav-item.is-active {
    color: #081a00;
  }

  .side-nav-item.is-active::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #00ff6a;
    border-radius: 1px;
    transform: rotate(45deg);
    margin-right: 0.42vw;
    vertical-align: middle;
  }

  /* --- Section Common PC --- */
  .section-label {
    gap: 0.56vw;
    margin-bottom: 0.83vw;
  }

  .section-label-diamond { width: 0.83vw; height: 0.83vw; }
  .section-label-txt { font-size: 1.11vw; }

  .section-heading {
    font-family: "ZenKakuGothicNew", "Zen Kaku Gothic New", sans-serif;
    font-size: 5vw;
    line-height: 1.32;
    letter-spacing: normal;
    font-feature-settings: normal;
    margin-bottom: 1.67vw;
  }

  /* --- JOBS PC --- */
  .l-jobs {
    padding: 8.33vw 5.56vw 14.93vw;
    padding-left: 21.11vw;
  }

  .l-jobs .section-heading { margin-bottom: 7.78vw; }

  .l-jobs::before {
    content: "";
    display: block;
    position: absolute;
    left: -5vw;
    width: 45vw;
    height: 45vw;
    top: -15vw;
    background: url(../../images/newgrads/bg_diamond.png) no-repeat center / contain;
    pointer-events: none;
    z-index: -1;
  }

  .job-cards {
    gap: 6.94vw;
  }

  .job-card {
    flex-direction: row;
    gap: 2.78vw;
    align-items: flex-start;
  }

  .job-card--right {
    flex-direction: row-reverse;
  }

  .job-card-img {
    flex: 0 0 34.44vw;
    width: 34.44vw;
    height: 29.58vw;
    margin-left: 0;
    margin-right: 0;
    border-radius: 8px;
  }

  .job-card-img-accent {
    border-radius: 8px 0 0 8px;
  }

  .job-card-img img {
    height: 100%;
    object-fit: cover;
  }

  .job-card-body {
    flex: 1;
  }

  .job-card-title {
    font-size: 3.06vw;
    margin-bottom: 1.67vw;
  }

  .job-card-subtitle {
    font-size: 1.67vw;
    margin-bottom: 2.78vw;
  }

  .job-card-recommend {
    padding: 2.22vw 2.78vw;
  }

  .job-card-recommend-label {
    font-size: 1.11vw;
    margin-bottom: 1.11vw;
  }

  .job-card-recommend-list li {
    font-size: 0.97vw;
    padding-left: 1.67vw;
    margin-bottom: 0.56vw;
  }

  .job-card-recommend-list li::before {
    font-size: 0.97vw;
  }

  /* --- FLOW PC --- */
  .l-flow {
    padding: 13.47vw 5.56vw 5.56vw;
    padding-left: 21.11vw;
  }

  .l-flow .section-label { margin-bottom: 1.67vw; }
  .l-flow .section-heading { margin-bottom: 3.89vw; }

  .flow-table-accent {
    width: 0.42vw;
  }

  .flow-row {
    position: relative;
    padding: 2.78vw 5vw;
    border-bottom: none;
  }

  .flow-row::after {
    content: "";
    position: absolute;
    left: 5vw;
    right: 5vw;
    bottom: 0;
    height: 1px;
    background: #eaeaea;
  }

  .flow-row:last-child::after {
    display: none;
  }

  .flow-row-num {
    font-size: 1.67vw;
    min-width: 2.78vw;
  }

  .flow-row-txt {
    font-size: 1.67vw;
  }

  .flow-row-note {
    font-size: 1.11vw;
  }

  .flow-notes {
    margin-top: 2.78vw;
  }

  .flow-note {
    gap: 0.83vw;
    margin-bottom: 0;
  }

  .flow-note-num {
    font-size: 0.97vw;
  }

  .flow-note-txt {
    font-size: 0.97vw;
  }

  /* --- ENTRY PC --- */
  .l-entry {
    padding: 13.82vw 5.56vw 17.15vw;
  }

  .entry-label {
    gap: 0.56vw;
    margin-bottom: 1.67vw;
  }

  .entry-label-diamond { width: 0.83vw; height: 0.83vw; }
  .entry-label-txt { font-size: 1.11vw; }

  .entry-heading {
    font-size: 5vw;
    margin-bottom: 2.78vw;
  }

  .entry-desc {
    font-size: 1.11vw;
    letter-spacing: 1.6px;
    margin-bottom: 6.67vw;
  }

  .entry-cards {
    flex-direction: row;
    gap: 2.78vw;
    justify-content: center;
  }

  .entry-card {
    width: 43.06vw;
    height: 17.22vw;
  }

  .entry-card-txt {
    padding-left: 3.61vw;
    display: block;
  }

  .entry-card-en {
    font-size: 1.25vw;
    letter-spacing: 1.44px;
    margin-bottom: 0.56vw;
  }

  .entry-card-title {
    font-size: 3.06vw;
  }

  .entry-card-btn {
    width: 4.44vw;
    height: 4.44vw;
  }

  .entry-card-btn svg { width: 1.53vw; height: 1.53vw; }

  .entry-card::after {
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  }

  .entry-card .entry-card-en { color: #00ff6a; }

  .entry-card:hover::after { opacity: 0; }
  .entry-card:hover .entry-card-en { color: #fff; }
  .entry-card:hover .entry-card-btn svg {
    animation: flyInFromLeft 0.4s ease forwards;
  }

  /* --- Breadcrumb PC --- */
  .l-breadcrumb {
    padding: 0.69vw 5.56vw;
    gap: 1.11vw;
  }

  .breadcrumb-link, .breadcrumb-current { font-size: 1.11vw; }

  /* --- Contents PC --- */
  .l-contents {
    padding: 10vw 5.56vw;
  }

  .contents-inner {
    width: 100%;
    max-width: none;
    display: flex;
    align-items: center;
    gap: 2.22vw;
  }

  .contents-header {
    flex-shrink: 0;
    width: 31.11vw;
    margin-bottom: 0;
  }

  .contents-label {
    gap: 0.56vw;
    margin-bottom: 0.56vw;
  }

  .contents-label-diamond { width: 0.83vw; height: 0.83vw; }
  .contents-label-txt { font-size: 1.11vw; }
  .contents-heading { font-size: 3.33vw; }

  .contents-links {
    flex: 1;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.22vw;
  }

  .contents-link-card { height: 8.33vw; padding: 1.67vw 2.22vw; }
  .contents-link-txt { font-size: 1.67vw; }
  .contents-link-arrow { width: 1.11vw; height: 1.11vw; }

  /* --- Header PC: 常に alt-logo を表示 --- */
  .l-header .header-logo { display: none; }
  .l-header .header-logo-alt { display: flex; }

}
