/*
Theme Name: arts2026
Theme URI:
Description: Artsvision WordPress theme (2026 redesign)
Author:
Version: 1.0.0
*/

/* Minimal reset for consistent cross-browser layout */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ===== A-2 talent list styles ===== */
.talent-page {
  margin: 0;
  padding: 0.4rem 0 0;
}

.talent-page .main-box {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.8rem 2.2rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #d8d5e8;
  box-shadow: 0 10px 24px rgba(90, 74, 163, 0.08);
}

.talent-page .page-title::after {
  content: none;
}

.talent-switch {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 0;
}

.talent-switch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 1 1 0;
  min-width: 120px;
  padding: 12px 12px;
  border: 1px solid #d8d5e8;
  background: #f2ead6;
  color: #3f3a86;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  text-align: center;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.talent-switch-btn.all {
  background: #f2ead6;
  border-color: #d7c8a1;
  color: #4a3d20;
}

.talent-switch-btn.male {
  background: #e3eefb;
  border-color: #b8cde9;
  color: #26456f;
}

.talent-switch-btn.female {
  background: #f7e4ec;
  border-color: #e2bfcd;
  color: #6b2f45;
}

.talent-switch-btn.is-active {
  box-shadow: none;
}

.talent-switch-btn:not(.is-active):hover {
  background: #e9e3f7;
  border-color: #c7bce6;
  color: #3f3a86;
}

/* Active tabs keep their base colors on hover/focus. */
.talent-switch-btn.is-active:hover,
.talent-switch-btn.is-active:focus-visible {
  background: inherit;
  border-color: inherit;
  color: inherit;
}

.talent-switch-btn.is-active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  background: currentColor;
  opacity: 0.55;
}

/* Active color by tab type */
.talent-switch-btn.all.is-active {
  color: #4a3d20;
  background: #f2ead6;
  border-color: #d7c8a1;
  box-shadow: inset 0 -2px 0 rgba(142, 119, 73, 0.22);
}

.talent-switch-btn.male.is-active {
  color: #26456f;
  background: #e3eefb;
  border-color: #b8cde9;
  box-shadow: inset 0 -2px 0 rgba(61, 102, 157, 0.2);
}

.talent-switch-btn.female.is-active {
  color: #6b2f45;
  background: #f7e4ec;
  border-color: #e2bfcd;
  box-shadow: inset 0 -2px 0 rgba(156, 88, 115, 0.2);
}

.talent-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 16px;
}

.talent-list-card {
  display: flex;
  background: #fdfdff;
  border: 1px solid #d8d5e8;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(90, 74, 163, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  will-change: transform;
}

.talent-list-card-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 10px 10px 10px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: #fdfdff;
  transition: background-color 0.2s ease;
}

.talent-list-card:hover,
.talent-list-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(80, 60, 140, 0.1);
}

.talent-list-card:hover .talent-list-card-link,
.talent-list-card:focus-within .talent-list-card-link {
  background: #f7f6fd;
}

.talent-list-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f1fb;
  border-radius: 0;
  padding: 4px;
  aspect-ratio: 3 / 4;
  min-height: 280px;
  overflow: hidden;
}

.talent-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
  transition: filter 0.3s ease;
}

.talent-list-card:hover .talent-list-thumb img,
.talent-list-card:focus-within .talent-list-thumb img {
  filter: brightness(1.03);
}

.talent-list-name {
  display: block;
  margin: 0 0 4px;
  padding-top: 8px;
  min-height: calc(1.35em * 2);
  color: #3f3a86;
  letter-spacing: 0.02em;
  line-height: 1.35;
  font-size: 1rem;
  font-weight: 700;
}

.talent-list-phonetic {
  display: block;
  margin: 0;
  min-height: 1.45em;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.45;
  color: #635db1;
}

.talent-list-thumb + .talent-list-name {
  margin-top: auto;
}

.talent-list-empty {
  text-align: center;
  color: #5c5c86;
}

.talent-kana-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 20px;
}

.talent-kana-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  text-align: center;
  padding: 10px 10px;
  border: 1px solid #d8d5e8;
  background: #fdfdff;
  color: #3f3a86;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.talent-kana-btn[data-group-target="memorial"] {
  grid-column: span 2;
}

.talent-kana-btn.is-active {
  background: #5a4aa3;
  border-color: #5a4aa3;
  color: #fff;
}

.talent-kana-section {
  margin-top: 18px;
}

.talent-kana-title {
  margin: 0 0 12px;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.04em;
  color: #3f3a86;
}

.talent-kana-section.is-hidden {
  display: none;
}

@media screen and (max-width: 1024px) {
  .talent-page .main-box {
    padding: 1.6rem 1.2rem 1.8rem;
  }
  .talent-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 12px;
  }
  .talent-list-thumb {
    min-height: 240px;
  }
  .talent-kana-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .talent-switch-btn {
    min-width: 0;
    font-size: 0.94rem;
    padding: 11px 6px;
    text-align: center;
    letter-spacing: 0.02em;
  }

  .talent-kana-btn {
    font-size: 0.92rem;
  }

  .talent-kana-btn[data-group-target="memorial"] {
    grid-column: span 2;
  }

  .talent-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
  }
  .talent-list-thumb {
    min-height: 220px;
  }
  .talent-kana-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (max-width: 480px) {
  .talent-page .main-box {
    padding: 1.2rem 0.9rem 1.3rem;
  }
  .talent-list-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .talent-list-thumb {
    min-height: 0;
  }

  .talent-kana-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .talent-kana-btn {
    padding: 10px 6px;
    font-size: 0.9rem;
  }

  .talent-kana-btn[data-group-target="memorial"] {
    grid-column: span 2;
  }
}

/* ===== A-2 talent single styles (migrated from style99a.css) ===== */
.single-talent-block {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 44px 40px 52px;
  background: linear-gradient(135deg, #eee6f9 0%, #f9f7fc 100%);
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(160, 130, 200, 0.1);
}

.single-talent-title {
  position: absolute;
  top: -18px;
  left: 52px;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 3.2vw, 3rem);
  font-weight: 700;
  color: #4a2c75;
  line-height: 1;
  z-index: 10;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.talent-top {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 24px;
  align-items: start;
  background: #fffbef8c;
  border: 1px solid rgba(210, 200, 166, 0.55);
  border-radius: 5px;
  padding: 26px 26px 22px;
}

.talent-photo {
  flex: 1 1 40%;
  text-align: center;
  margin: 0 auto;
}

.talent-photo img {
  width: 100%;
  max-width: 270px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Keep single-talent profile photo stable regardless of generic talent styles. */
.single-talent-block .talent-top {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
}

.single-talent-block .talent-photo {
  width: 100%;
  max-width: 300px;
  margin: 0;
  padding-bottom: 2px;
}

.single-talent-block .talent-photo img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin-bottom: 0;
}

.talent-info {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-top: 2px;
}

.talent-name {
  font-size: clamp(1.72rem, 2.2vw, 2rem);
  color: #4a2c75;
  margin: 0 0 7px;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.3;
}

.talent-name-sub {
  margin: 0 0 5px;
  color: #6e6a8a;
  font-size: 0.92rem;
  line-height: 1.5;
}

.talent-name-sub.roman {
  margin-bottom: 12px;
  color: #9a90ad;
  letter-spacing: 0.065em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.talent-profile {
  list-style: none;
  padding: 0;
  margin: 2px 0 0;
  border: 0;
}

.talent-profile li {
  margin: 0;
  padding: 6px 2px;
  font-size: 0.98rem;
  line-height: 1.68;
  display: grid;
  grid-template-columns: 8.4em minmax(0, 1fr);
  column-gap: 10px;
  align-items: baseline;
}

.talent-profile li + li {
  margin-top: 2px;
  border-top: 0;
}

.talent-profile-label {
  color: #7e7693;
  font-weight: 500;
  white-space: nowrap;
}

a.btn5 {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 10px 24px;
  font-size: 0.89rem;
  background: #6b69a0;
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}

a.btn5:hover {
  opacity: 1;
  background: #7573ab;
}

.btn5.border-radius {
  border-radius: 999px;
}

.talent-info .btn5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.talent-pdf {
  margin: 12px 0 0;
  padding-top: 0;
  text-align: center;
}

.voice-samples {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e3dff0;
}

.voice-samples h4 {
  margin-bottom: 8px;
  color: #4a2c75;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.voice-heading-icon {
  flex: 0 0 auto;
}

.voice-player {
  margin: 10px 0 14px;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #eef0f2;
  box-shadow: 0 8px 18px rgba(67, 48, 121, 0.18);
}

.voice-player audio {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  background: transparent;
}

.voice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 16px;
}

.voice-item a,
button.voice-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #8f79db;
  border-radius: 12px;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(60, 50, 120, 0.06);
  cursor: pointer;
  appearance: none;
}

.voice-item a:hover,
button.voice-item:hover {
  transform: translateY(-1px);
}

.voice-list.is-collapsed li:nth-child(n + 7) {
  display: none;
}

.voice-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto 0;
  min-width: 220px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, #6e5bc0 0%, #5a4aa3 55%, #47368f 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 20px rgba(25, 15, 79, 0.18);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.voice-more:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #7a66cb 0%, #6655b3 55%, #54449a 100%);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 12px 24px rgba(25, 15, 79, 0.24);
}

.main-box {
  margin-top: 34px;
}

.history_genre_box,
.history_genre_box_1line {
  display: grid;
  gap: 12px 24px;
  border: 1px solid rgba(236, 229, 251, 0.66);
  border-radius: 5px;
  background: rgb(255 255 255 / 82%);
  padding: 16px 18px 14px;
  margin-top: 12px;
}

.history_genre_box {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.history_genre_box_1line {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.history_tt {
  font-weight: 600;
  color: #524a73;
  grid-column: 1 / -1;
  margin-bottom: 2px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(147, 132, 176, 0.14);
  letter-spacing: 0.02em;
}

.history_genre_box ul,
.history_genre_box_1line ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.history_col {
  min-height: 1px;
}

.history_genre_box li,
.history_genre_box_1line li {
  margin: 0 0 6px;
  line-height: 1.68;
  color: #000000;
}

@media screen and (max-width: 767px) {
  .single-talent-block {
    padding: 24px 20px 40px;
    margin: 0 auto;
  }

  .single-talent-title {
    position: static;
    font-size: clamp(2.2rem, 3.2vw, 3rem);
    text-align: center;
    margin: 0 0 18px;
    white-space: nowrap;
  }

  .talent-top {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0;
    padding: 16px 14px 14px;
  }

  .single-talent-block .talent-top {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .talent-top .talent-photo img {
    width: min(100%, 260px);
  }

  .single-talent-block .talent-photo {
    max-width: 260px;
    margin: 0 auto;
    padding-bottom: 0;
  }

  .single-talent-block .talent-photo img {
    width: 100%;
  }

  .talent-info {
    padding-top: 0;
  }

  .talent-name {
    font-size: clamp(1.52rem, 6.2vw, 1.88rem);
    margin-bottom: 6px;
    line-height: 1.34;
  }

  .talent-name-sub {
    margin-bottom: 4px;
    font-size: 0.9rem;
  }

  .talent-name-sub.roman {
    margin-bottom: 10px;
    font-size: 0.77rem;
  }

  .talent-profile {
    margin-top: 2px;
  }

  .talent-profile li {
    grid-template-columns: 1fr;
    row-gap: 2px;
    padding: 5px 0;
    line-height: 1.62;
    font-size: 0.96rem;
  }

  .talent-profile-label {
    white-space: normal;
  }

  .talent-info .btn5 {
    margin: 0 auto;
    min-height: 50px;
    min-width: min(100%, 280px);
    padding: 0 20px;
    font-size: 0.86rem;
  }

  .talent-pdf {
    margin-top: 12px;
  }

  .voice-player {
    margin: 10px 0 12px;
  }

  .voice-player audio {
    width: 100%;
  }

  .voice-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .voice-more {
    width: min(100%, 320px);
    min-height: 50px;
    padding: 0 20px;
  }

  .history_genre_box,
  .history_genre_box_1line {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 12px 12px;
    margin-top: 10px;
  }

  .history_tt {
    margin-bottom: 0;
    padding-bottom: 4px;
  }

  .history_genre_box li,
  .history_genre_box_1line li {
    margin: 0 0 5px;
    line-height: 1.64;
  }
}

@media screen and (max-width: 480px) {
  .header-spacer {
    margin-top: 0;
  }
}

body {
  margin: 0;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 28px;
  padding: 0 1rem;
  border-bottom: 1px solid #e5e5e5;
  background: rgba(255, 255, 255, 0.96);
}

.header-lead {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: #666;
  text-align: left;
  white-space: nowrap;
}

.header-bar {
  display: flex;
  gap: clamp(14px, 1.6vw, 22px);
  align-items: center;
  padding: clamp(12px, 1.2vw, 18px) 0;
}

.site-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  min-width: 0;
  flex: 0 0 auto;
}

.brand-mark {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

.brand-mark img {
  display: block;
  width: clamp(150px, 18vw, 240px);
  height: auto;
}

.brand-name {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #333;
  font-weight: 600;
  white-space: nowrap;
  word-break: keep-all;
  max-width: 100%;
}

.site-nav {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav-list {
  display: flex;
  gap: clamp(10px, 1.2vw, 18px);
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: clamp(0.88rem, 0.5vw + 0.72rem, 1.02rem);
  padding: 8px 6px;
  border-radius: 0;
  color: #000;
  text-decoration: none;
  position: relative;
  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease;
  white-space: nowrap;
  word-break: keep-all;
  font-weight: 500;
}

.nav-link:hover {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  text-decoration-thickness: 2px;
  text-decoration-color: #504e91;
}

.site-search {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  min-width: 0;
}

.search-label {
  display: contents;
}

.search-input {
  width: clamp(130px, 15vw, 190px);
  height: 36px;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 0 10px 0 14px;
  outline: none;
  font-size: 0.85rem;
  min-width: 0;
}

.search-btn {
  height: 36px;
  width: 42px;
  padding: 0;
  border: none;
  background: #8c8c8c;
  color: #fff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  background: #6f6f6f;
}

.search-icon {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
  border-radius: 2px;
}

@media (max-width: 767px) {
  .site-search {
    grid-area: search;
    justify-self: end;
    justify-content: flex-end;
    width: auto;
    max-width: none;
  }
  .search-input {
    width: clamp(220px, 60vw, 320px);
    max-width: none;
  }
}

@media (max-width: 767px) and (min-width: 360px) {
  .search-input {
    width: min(100%, clamp(240px, 62vw, 320px));
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 20, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 40;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 0;
  background: var(--main-deep, #5a4aa3);
  cursor: pointer;
  place-items: center;
  padding: 0;
  position: relative;
}

.nav-line {
  display: block;
  position: absolute;
  left: 12px;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
  transform-origin: center;
}

.nav-line:nth-child(1) {
  top: 14px;
}
.nav-line:nth-child(2) {
  top: 24px;
}
.nav-line:nth-child(3) {
  top: 34px;
}

.site-nav-toggle.is-open .nav-line:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}
.site-nav-toggle.is-open .nav-line:nth-child(2) {
  opacity: 0;
}
.site-nav-toggle.is-open .nav-line:nth-child(3) {
  transform: translateY(-10px) rotate(45deg);
}

@media (max-width: 767px) {
  body.noscroll {
    overflow: hidden;
  }

  .header-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "logo hamburger"
      "search search"
      "nav nav";
    align-items: center;
    gap: 0.8rem;
  }

  .site-brand {
    grid-area: logo;
    align-items: flex-start;
  }
  .site-nav-toggle {
    grid-area: hamburger;
    justify-self: end;
    display: grid;
  }
  .brand-name {
    margin-top: 0.15rem;
    font-size: 0.9rem;
  }
  .header-lead {
    display: none;
  }

  .site-nav {
    grid-area: nav;
    display: block;
    background: linear-gradient(
      135deg,
      rgba(230, 230, 255, 0.98),
      rgba(240, 235, 255, 0.94)
    );
    border: 1px solid transparent;
    border-radius: 0;
    padding: 0 12px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.55s ease,
      transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
      padding 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
      border-color 0.55s ease,
      visibility 0s linear 0.55s;
  }

  .site-nav.is-open {
    padding: 6px 12px;
    max-height: var(--nav-max-height, 420px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    border-color: rgba(90, 74, 163, 0.28);
    transition-delay: 0s;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px 0 4px;
  }

  .nav-link {
    display: block;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(90, 74, 163, 0.18);
    font-size: 1.05rem;
    border-radius: 0;
    text-decoration: none;
  }

  .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .nav-link:hover {
    background: transparent;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
    text-decoration-thickness: 2px;
    text-decoration-color: #504e91;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header-bar {
    gap: clamp(10px, 1vw, 16px);
  }

  .brand-mark img {
    width: clamp(130px, 16vw, 210px);
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .nav-list {
    gap: clamp(8px, 0.9vw, 14px);
  }

  .nav-link {
    font-size: clamp(0.76rem, 0.38vw + 0.68rem, 0.9rem);
    padding-left: 4px;
    padding-right: 4px;
  }

  .search-input {
    width: clamp(135px, 13vw, 170px);
  }
}

@media (max-width: 768px) {
  .header-bar {
    gap: 10px;
  }

  .header-lead {
    font-size: 0.82rem;
  }

  .brand-name {
    font-size: 0.84rem;
  }

  .brand-mark img {
    width: clamp(120px, 15vw, 180px);
  }

  .search-input {
    width: clamp(300px, 11vw, 350px);
  }

  .search-btn {
    padding: 0 10px;
  }
}

:root {
  --text: #666666;
  --sub: #8f8dc9;
  --main: #5a4aa3;
  --main-deep: #47368f;
  --lavender: #d9d7f2;
  --line: #d7d5e8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: #000;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  background: linear-gradient(180deg, #fcfcff 0%, #ffffff 100%);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.narrow {
  width: min(1080px, calc(100% - 64px));
}
.narrow {
  width: min(1080px, calc(100% - 64px));
}
.main {
  display: block;
}
.actions,
.about-actions {
  margin-top: 18px;
  text-align: center;
}

.hero {
  position: relative;
  height: 430px;
  overflow: hidden;
  background: #ddd;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 70%;
  filter: saturate(1.03) brightness(1.02);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  /*! background:
    linear-gradient(
      90deg,
      rgba(90, 74, 163, 0.2) 0%,
      rgba(90, 74, 163, 0) 42%,
      rgba(90, 74, 163, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 50%,
      rgba(255, 255, 255, 0.04) 100%
    ); */
}
.hero::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -86px;
  height: 182px;
  transform: rotate(4.2deg);
  z-index: 2;
  background:
    linear-gradient(
        90deg,
        #3d3a8d 0%,
        #a393cf 12%,
        #c7b7ff 42%,
        #8f8dc9 72%,
        #5a4aa3 100%
      )
      0 60px/100% 12px no-repeat,
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(245, 243, 255, 0.94) 18%,
      #ddc5ff 50%,
      #f5f3ff 82%,
      rgba(223, 217, 248, 0.95) 100%
    );
  box-shadow:
    0 -14px 28px rgba(255, 255, 255, 0.45) inset,
    0 10px 40px rgba(90, 74, 163, 0.08);
}

.section {
  position: relative;
  padding: 70px 0 88px;
}
.section-news {
  margin-top: -20px;
  z-index: 5;
  background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
  padding-bottom: 32px;
}
.section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}
.section-title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(46px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--main-deep);
  text-shadow: 0 2px 10px rgba(90, 74, 163, 0.14);
}
.section-label {
  margin: 0;
  font-size: 26px;
  letter-spacing: 0.08em;
  color: #6e6c84;
}
.section-head::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(143, 141, 201, 0.55) 0%,
    rgba(143, 141, 201, 0.18) 100%
  );
  margin-left: 10px;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.section-news {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section-news .container {
  position: relative;
  z-index: 2;
}
.section-news::before {
  content: "\2726   \2727      \2605        \2726";
  position: absolute;
  top: 78px;
  right: max(32px, calc((100vw - 1080px) / 2 + 40px));
  height: 120px;
  pointer-events: none;
  z-index: 1;
  color: rgba(233, 206, 255, 0.54);
  font-size: 32px;
  letter-spacing: 0.28em;
  line-height: 1;
  animation: news-decor-star-drift 6.8s ease-in-out infinite alternate;
}

.section-talent-search {
  position: relative;
  padding-top: 26px;
  padding-bottom: 70px;
  background: linear-gradient(180deg, #f6f4ff 0%, #f0eefb 100%);
  overflow-x: clip;
}

.section-talent-search::before {
  content: none;
  position: absolute;
  right: max(276px, calc((100vw - 1080px) / 2 + 266px));
  top: 20px;
  width: 74px;
  height: 57px;
  background: url("../images/deco-mic-soft.svg") center/contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 3;
  animation: news-decor-zigzag-up 5.8s ease-in-out infinite;
}

.section-talent-search::after {
  content: none;
  position: absolute;
  right: max(192px, calc((100vw - 1080px) / 2 + 182px));
  top: 24px;
  width: 58px;
  height: 44px;
  background: url("../images/deco-headphone-soft.svg") center/contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 3;
  animation: news-decor-zigzag-down 5.8s ease-in-out infinite;
}

@keyframes news-decor-drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-12px, -14px);
  }
}

@keyframes news-decor-zigzag-up {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-4px, -10px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes news-decor-zigzag-down {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(4px, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes news-decor-star-drift {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  100% {
    transform: translate(-34px, -22px) rotate(14deg) scale(1.16);
  }
}

@keyframes talent-icon-float-up {
  0%,
  100% {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes talent-icon-float-down {
  0%,
  100% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes talent-heading-float {
  0%,
  100% {
    background-position:
      var(--talent-icon-1-x) var(--talent-icon-1-y-a),
      var(--talent-icon-2-x) var(--talent-icon-2-y-a),
      var(--talent-icon-3-x) var(--talent-icon-3-y-a),
      var(--talent-icon-4-x) var(--talent-icon-4-y-a);
  }
  50% {
    background-position:
      var(--talent-icon-1-x) var(--talent-icon-1-y-b),
      var(--talent-icon-2-x) var(--talent-icon-2-y-b),
      var(--talent-icon-3-x) var(--talent-icon-3-y-b),
      var(--talent-icon-4-x) var(--talent-icon-4-y-b);
  }
}

.news__list {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
}
.news__item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}
.news__link {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
}
.news__text {
  display: block;
  font-weight: 700;
  text-decoration: none;
}
.news__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.news__excerpt {
  display: block;
  margin-top: 0;
  color: #4f4d63;
  font-size: 16px;
  line-height: 1.6;
  white-space: normal;
  word-break: break-word;
}
.news__link:hover .news__text,
.news__link:focus-visible .news__text {
  text-decoration: underline;
  text-decoration-color: var(--main);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 2px;
}
.news__date {
  min-width: 132px;
  color: var(--main-deep);
  font-weight: 700;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}
.btn--primary {
  min-width: 260px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6e5bc0 0%, #5a4aa3 55%, #47368f 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 22px rgba(25, 15, 79, 0.18);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.btn--primary:hover {
  background: linear-gradient(135deg, #8b75dd 0%, #705ecb 55%, #5a45a9 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 16px 28px rgba(25, 15, 79, 0.3);
}
.talent-search-wrap {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
}

.talent-search-wrap::before,
.talent-search-wrap::after {
  content: none;
}

.talent-search-wrap::before {
  content: none;
}

.talent-search-wrap::after {
  content: none;
}

.talent-search-head {
  position: relative;
  z-index: 4;
  margin-bottom: 2px;
  min-height: auto;
  padding-bottom: 0;
  padding-right: 0;
  background: none;
  animation: none;
}

.talent-search-head::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(143, 141, 201, 0.55) 0%,
    rgba(143, 141, 201, 0.18) 100%
  );
  margin-left: 10px;
}

.talent-search-card {
  position: relative;
  z-index: 1;
  padding: 30px 28px 30px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(135, 126, 188, 0.18);
  box-shadow: 0 14px 30px rgba(84, 71, 146, 0.1);
  overflow: hidden;
}

.talent-search-card::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 24px;
  width: 152px;
  height: 54px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.48;
  filter: saturate(1.08) contrast(1.06) brightness(0.94);
  background-image:
    url("../images/deco-mic-soft.svg"), url("../images/deco-headphone-soft.svg");
  background-repeat: no-repeat, no-repeat;
  background-size:
    44px 44px,
    44px 44px;
  background-position:
    0 68%,
    84px 34%;
  animation: talent-card-deco-float 6.2s ease-in-out infinite;
}

@keyframes talent-card-deco-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.talent-search-title {
  position: relative;
  margin: 0 0 18px;
  font-size: clamp(26px, 2.8vw, 42px);
  color: #8782a7;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}

.talent-search-title::before {
  content: "";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  opacity: 0.6;
}

.talent-search-title::after {
  content: none;
}

.talent-search-title--mic-soft::before {
  background: url("../images/deco-mic-soft.svg") center/contain no-repeat;
  opacity: 0.82;
}

.talent-search-title--mic-strong::before {
  background: url("../images/deco-mic-strong.svg") center/contain no-repeat;
  opacity: 0.9;
}

.talent-search-title--mic-outline::before {
  background: url("../images/deco-mic-outline.svg") center/contain no-repeat;
  opacity: 0.9;
}

.talent-search-title--mic-filled::before {
  background: url("../images/deco-mic-filled.svg") center/contain no-repeat;
  opacity: 0.9;
}

.kana-grid {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 8px;
}

.kana-grid li {
  min-width: 0;
}

.kana-grid-extra {
  margin: -16px 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.kana-grid-extra li {
  min-width: 0;
}

.btn--kana {
  min-width: 0;
  padding: 0;
  width: 100%;
  min-height: 64px;
  border: 1px solid rgba(110, 98, 179, 0.69);
  border-radius: 10px;
  background: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #4c4c52;
  text-shadow: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(80, 70, 140, 0.06);
}

.btn--kana-extra {
  font-size: clamp(16px, 4.2vw, 24px);
  white-space: nowrap;
  letter-spacing: 0;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn--kana:hover {
  background: #f6f3ff;
  box-shadow: 0 2px 8px rgba(80, 70, 140, 0.06);
}

.talent-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px;
  gap: 0;
  border: 1px solid rgba(110, 98, 179, 0.69);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 34px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.talent-search-input {
  min-width: 0;
  min-height: 30px;
  border: 0;
  padding: 0 10px;
  font-size: 16px;
  color: #23202f;
  background: #fff;
}

.talent-search-input:focus {
  outline: 1px solid rgba(110, 98, 179, 0.69);
  outline-offset: -1px;
}

.talent-search-input::placeholder {
  color: #a2a0af;
}

.btn--search {
  min-width: 0;
  padding: 0;
  border: 0;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8em;
  border-radius: 0;
  color: #fff;
  background: linear-gradient(135deg, #79c7e2 0%, #5d8fd1 58%, #4862b0 100%);
  cursor: pointer;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
  transition:
    filter 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn--search:hover,
.btn--search:focus-visible {
  background: linear-gradient(135deg, #4b8fd6 0%, #3f68bf 55%, #2f3f9f 100%);
  transform: none;
  box-shadow: none;
}

.talent-search-actions {
  display: flex;
  justify-content: center;
  gap: 0;
}

.talent-list-link {
  min-width: 260px;
  min-height: 56px;
  gap: 12px;
  font-size: 16px;
}

.section-about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f3ff 0%, #fbfaff 46%, #ffffff 100%);
  padding-top: 62px;
}

.about-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0) 45%
    ),
    url("../images/prism.png") center/cover no-repeat;
  opacity: 0.16;
  mix-blend-mode: normal;
}
.about-inner {
  position: relative;
  z-index: 1;
}
.about-copy {
  margin: 0 auto;
  padding: 22px 24px 12px;
  color: #000;
  background: rgba(255, 255, 255, 0.33);
  border: 1px solid rgba(90, 74, 163, 0.12);
  box-shadow: 0 14px 28px rgba(62, 55, 102, 0.08);
}
.about-content-wrap {
  width: min(960px, 100%);
  margin: 0 auto;
}
.about-title {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.3vw, 42px);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #17171e;
}
.about-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  color: #000;
  text-wrap: wrap;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}
.section-about .section-title {
  color: var(--main-deep);
  text-shadow: 0 2px 10px rgba(90, 74, 163, 0.14);
}

.section-about .section-label {
  color: #6e6c84;
}

.section-about .section-head::after {
  background: linear-gradient(
    90deg,
    rgba(143, 141, 201, 0.55) 0%,
    rgba(143, 141, 201, 0.18) 100%
  );
}

.section-about .about-actions {
  margin-top: 54px;
}

.page-top-a {
  --page-accent: #5a4aa3;
  --page-accent-soft: #8f8dc9;
}

.page-top-a .section-news::after,
.page-top-b .section-news::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.46)),
    url("../images/bg-star.png");
  background-repeat: no-repeat, no-repeat;
  background-position:
    0 0,
    center center;
  background-size: auto, cover;
}

.page-top-b {
  --page-accent: #3c5fa8;
  --page-accent-soft: #77a9df;
}

.page-top-c {
  --page-accent: #5a4aa3;
  --page-accent-soft: #7eb6d6;
}

.page-top-b .section-news,
.page-top-b .section-talent-search,
.page-top-b .section-about,
.page-top-c .section-news,
.page-top-c .section-talent-search,
.page-top-c .section-about {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
}

.page-top-b .section-talent-search,
.page-top-c .section-talent-search {
  background: linear-gradient(180deg, #f6f4ff 0%, #f0eefb 100%);
}

.page-top-b .section-about,
.page-top-c .section-about {
  background: linear-gradient(135deg, #f5f3ff 0%, #fbfaff 46%, #ffffff 100%);
}

.page-company,
.page-privacy,
.page-links,
.page-request,
.page-news,
.page-talent,
.page-temp {
  background-color: #ffffff;
  background-image:
    radial-gradient(at 23% 13%, rgba(240, 220, 255, 0.45) 0px, transparent 50%),
    radial-gradient(at 96% 4%, rgba(200, 190, 255, 0.55) 0px, transparent 50%),
    radial-gradient(at 10% 66%, #faedff 0px, transparent 50%),
    radial-gradient(at 87% 90%, rgba(210, 200, 255, 0.6) 0px, transparent 50%);
}

.page-title {
  margin: 0 0 28px;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.05;
  letter-spacing: 0.08em;
  color: var(--main-deep);
  text-align: center;
}

.breadcrumb {
  border-bottom: 1px solid rgba(143, 141, 201, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 12px;
  padding-right: 0;
  padding-bottom: 12px;
  padding-left: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.5;
  color: #77728f;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  min-width: 0;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "\003E";
  margin-right: 6px;
  color: #aaa6c3;
}

.breadcrumb__link {
  color: var(--main);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: text-decoration-color 0.2s ease;
}

.breadcrumb__link:hover,
.breadcrumb__link:focus-visible {
  text-decoration-color: currentColor;
}

.breadcrumb__current {
  overflow-wrap: anywhere;
}

.subpage-heading {
  display: flex;
  align-items: baseline;
  gap: clamp(14px, 1.8vw, 24px);
  margin: 0 0 34px;
}

.subpage-heading::after {
  content: "";
  flex: 1 1 auto;
  max-width: min(760px, 62vw);
  min-width: 110px;
  height: 2px;
  margin-bottom: 3px;
  background: linear-gradient(
    90deg,
    rgba(143, 141, 201, 0.58) 0%,
    rgba(143, 141, 201, 0.16) 100%
  );
}

.subpage-heading__en {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--main);
}

.subpage-heading__ja {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 30px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #5c5c86;
}

.section-news-archive {
  padding-top: 58px;
  padding-bottom: 82px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.24)),
    url("../images/bg-star.png");
  background-repeat: no-repeat, no-repeat;
  background-position:
    0 0,
    center top;
  background-size: auto, cover;
}

.news-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: start;
  gap: 22px;
}

.news-page--single {
  grid-template-columns: minmax(0, 1fr);
}

.news-page__main {
  padding: 8px 12px;
  border: 1px solid #d8d5e8;
  background: #fdfdff;
}

.news-page__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-page__item + .news-page__item {
  border-top: 1px solid #d9d6e9;
}

.news-page__link {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 18px 4px;
  color: inherit;
  text-decoration: none;
}

.news-page__date {
  margin-top: 0;
  font-size: 15px;
  font-weight: 700;
  color: #3f3a86;
  letter-spacing: 0.04em;
}

.news-page__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #635db1;
  text-decoration: none;
  text-underline-offset: 0.2em;
  font-weight: 700;
}

.news-page__excerpt {
  margin: 4px 0 0;
  color: #000000;
  font-size: 15px;
  line-height: 1.8;
}

.news-page__meta {
  margin: 0 0 4px;
  color: #6b7397;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news-page__link:hover .news-page__title,
.news-page__link:focus-visible .news-page__title {
  text-decoration: underline;
  text-decoration-color: var(--main);
  text-decoration-thickness: 2px;
}

/* Top page NEWS uses archive classes but needs horizontal date/body layout */
.section-news .news-page__list {
  margin: 0 0 34px;
  padding: 0;
}

.section-news .news-page__item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.section-news .news-page__item + .news-page__item {
  border-top: 0;
}

.section-news .news-page__link {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 0;
}

.section-news .news-page__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.section-news .news-page__date {
  min-width: 132px;
  margin-top: 0;
  font-size: 18px;
  color: var(--main-deep);
}

.section-news .news-page__title {
  line-height: 1.6;
}

.section-news .news-page__excerpt {
  margin-top: 0;
  color: #4f4d63;
  font-size: 16px;
  line-height: 1.6;
}

.news-page__pager {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.news-page__pager-link {
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #b9b4dc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3f3a86;
  text-decoration: none;
  font-weight: 700;
  background: #fff;
}

.news-page__pager-link:hover,
.news-page__pager-link:focus-visible {
  border-color: #5a4aa3;
  color: #1f1b46;
}

.news-page__pager-link.is-current {
  background: #5a4aa3;
  border-color: #5a4aa3;
  color: #fff;
}

.news-page__side {
  border: 1px solid #d8d5e8;
  background: #fdfdff;
}

.news-page__side-title {
  margin: 0;
  padding: 14px 16px;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: #3f3a86;
  border-bottom: 1px solid #d8d5e8;
}

.news-page__accordion {
  padding: 8px 0;
}

.news-page__group + .news-page__group {
  border-top: 1px solid #e1deee;
}

.news-page__summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 700;
  color: #635db1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-page__summary::-webkit-details-marker {
  display: none;
}

.news-page__summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  border: 1px solid #b5afdc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5a4aa3;
  font-size: 18px;
  line-height: 1;
}

.news-page__group[open] .news-page__summary::after {
  content: "\2212";
}

.news-page__group > *:not(.news-page__summary) {
  display: block;
}

.news-page__month-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height var(--news-archive-duration, 550ms)
    cubic-bezier(0.22, 0.61, 0.36, 1);
}

.news-page__group[open] .news-page__month-list {
  pointer-events: auto;
}

.news-page__month-link {
  display: block;
  padding: 8px 16px 8px 28px;
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
}

.news-page__month-link:hover,
.news-page__month-link:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--main);
  text-underline-offset: 0.2em;
}

.section-request {
  padding-top: 58px;
  padding-bottom: 82px;
}

.section-fan {
  padding-top: 58px;
  padding-bottom: 82px;
}

.fan-page {
  position: relative;
  border: 1px solid rgba(203, 206, 228, 0.85);
  background:
    radial-gradient(circle at 82% 18%, rgba(228, 238, 255, 0.68) 0%, rgba(228, 238, 255, 0) 44%),
    linear-gradient(180deg, #fffefb 0%, #f6f9ff 52%, #f4f8ff 100%);
  padding: 34px 46px 46px;
  overflow: hidden;
}

.fan-page__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.2;
  color: #495188;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.fan-page__deco {
  position: absolute;
  top: 118px;
  right: -190px;
  width: 82%;
  max-width: 820px;
  margin: 0;
  opacity: 0.58;
  filter: saturate(0.98) brightness(1.01);
  pointer-events: none;
  z-index: 0;
}

.fan-page__deco img {
  width: 100%;
  height: auto;
}

.fan-page__body {
  color: #111;
  font-size: 16px;
  line-height: 1.95;
  text-align: left;
  max-width: none;
  position: relative;
  z-index: 1;
}

.fan-page__lead-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 2.45vw, 36px);
  line-height: 1.22;
  color: #2f396e;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.fan-page__section-title,
.fan-page__address-title {
  margin: 30px 0 12px;
  font-size: clamp(23px, 2.05vw, 30px);
  line-height: 1.3;
  color: #30395f;
  font-weight: 500;
}

.fan-page__body p {
  margin: 0;
}

.fan-page__body p + p {
  margin-top: 6px;
}

.fan-page__ng-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #111;
}

.fan-page__ng-list li {
  position: relative;
  margin: 8px 0 0;
  padding-left: 1.1em;
}

.fan-page__ng-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #111;
}

.fan-page__note {
  margin-top: 18px;
}

.fan-page__address-box {
  margin-top: 24px;
  border: 1px solid rgba(188, 198, 228, 0.9);
  background: rgba(242, 247, 255, 0.78);
  padding: 20px 24px 22px;
  border-radius: 5px;
}

.fan-page__address-box p + p {
  margin-top: 4px;
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .fan-page__deco {
    top: 176px;
    right: -240px;
    width: 88%;
    max-width: 760px;
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .fan-page__deco {
    top: 420px;
    right: -125px;
    width: 80%;
    max-width: none;
    opacity: 0.35;
  }
}
.request-page {
  border: 1px solid #d8d5e8;
  background: #fdfdff;
  padding: 28px 24px 34px;
}

.request-lead {
  color: #000;
}

.request-lead p {
  margin: 0;
  line-height: 1.85;
}

.request-lead p + p {
  margin-top: 10px;
}

.request-tel {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3f3a86;
}

.request-tel a {
  text-decoration: none;
}

.request-notice {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.9;
}

.request-form {
  margin-top: 28px;
  background: transparent;
}

.request-form__row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  border-left: 1px solid #d4cfea;
  border-right: 1px solid #d4cfea;
  border-bottom: 1px solid #dcd7ee;
}

.request-form__row:first-child {
  border-top: 1px solid #d4cfea;
}

.request-form__row:last-child {
  border-bottom: 1px solid #dcd7ee;
}

.request-form__label {
  padding: 18px 16px;
  background: #f3f1fb;
  border-right: 1px solid #dcd7ee;
  color: #3f3a86;
  font-weight: 700;
  line-height: 1.6;
}

.request-form__control {
  padding: 14px 16px;
}

.request-form__control input,
.request-form__control textarea {
  width: 100%;
  border: 1px solid #bbb5d9;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-size: 16px;
  line-height: 1.6;
  padding: 10px 12px;
}

.request-form__control textarea {
  resize: vertical;
}

.request-required {
  display: inline-block;
  margin-right: 8px;
  padding: 1px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: #5a4aa3;
}

.request-privacy {
  margin-top: 24px;
}

.request-privacy__title {
  margin: 0 0 12px;
  color: #3f3a86;
  font-size: 20px;
}

.request-privacy__lead {
  margin: 0 0 12px;
  color: #000;
  line-height: 1.85;
}

.request-privacy__box {
  max-height: 220px;
  overflow: auto;
  border: 1px solid #cdc8e4;
  background: #fff;
  padding: 14px 16px;
}

.request-privacy__box p {
  margin: 0;
  color: #000;
  line-height: 1.85;
}

.request-privacy__box p + p {
  margin-top: 12px;
}

.request-privacy__box h3 {
  margin: 0 0 12px;
  color: #3f3a86;
  font-size: 18px;
}

.request-privacy__box h4 {
  margin: 16px 0 8px;
  color: #3f3a86;
  font-size: 18px;
}

.request-privacy__box ul {
  margin: 0;
  padding-left: 1.4em;
}

.request-privacy__box li + li {
  margin-top: 6px;
}

.request-privacy__box .top_ind {
  padding-left: 1em;
}

.request-privacy__box a {
  color: #4d4598;
  text-decoration: underline;
}

.request-consent {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  color: #000;
  font-size: 15px;
  line-height: 1.6;
}

.request-consent input {
  margin-top: 2px;
  width: 18px;
  height: 18px;
}

.request-submit {
  margin: 28px 0 0;
  text-align: center;
}

/* Contact Form 7 layout for request input, confirmation, and completion pages */
.request-page--cf7,
.request-page--cf7 .request-page__content,
.request-page--cf7 .wpcf7,
.request-page--cf7 .wpcf7-form {
  min-width: 0;
  max-width: 100%;
}

.request-page--cf7 {
  background: #fff;
}

.request-page--cf7 .request-page__content > p:empty,
.request-page--cf7 .wpcf7-form > p:empty {
  display: none;
}

.request-page--cf7 .wpcf7-form p {
  margin-top: 0;
}

.request-page--cf7 .request-form > p,
.request-page--cf7 .request-form__row > p {
  display: contents;
  margin: 0;
}

.request-page--cf7 .request-form__row {
  align-items: stretch;
}

.request-page--cf7 .request-form__label,
.request-page--cf7 .request-form__control {
  min-width: 0;
}

.request-page--cf7 .request-form__label {
  overflow-wrap: anywhere;
}

.request-page--cf7 .request-form__control .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  min-width: 0;
}

.request-page--cf7 .request-form__control .wpcf7-form-control {
  display: block;
  width: 100%;
  max-width: 100%;
}

.request-page--cf7 .request-form__control textarea.wpcf7-form-control {
  min-height: 180px;
  resize: vertical;
}

.request-page--cf7 .request-form__control .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.request-page--cf7 .request-privacy__box img {
  max-width: 100%;
  height: auto;
}

.request-page--cf7 .request-form__agree,
.request-page--cf7 .request-form__actions {
  margin-top: 24px;
  text-align: center;
}

.request-page--cf7 .request-form__agree .wpcf7-form-control-wrap {
  display: inline-block;
  width: auto;
  max-width: 100%;
}

.request-page--cf7 .request-form__agree .wpcf7-acceptance label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  color: #000;
  font-size: 15px;
  line-height: 1.6;
}

.request-page--cf7 .request-form__agree .wpcf7-list-item {
  margin: 0;
}

.request-page--cf7 .request-form__agree input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
}

.request-page--cf7 .request-required-text {
  display: inline-block;
  flex: 0 0 auto;
  margin-left: 4px;
  padding: 1px 8px;
  border-radius: 4px;
  background: #5a4aa3;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.request-page--cf7 .request-form--confirm .request-form__control {
  color: #111;
  line-height: 1.75;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.request-page--cf7 .request-form__actions--confirm {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
}

.request-page--cf7 .request-form__actions--confirm > p {
  display: contents;
  margin: 0;
}

.request-page--cf7 .request-form__actions--confirm > br {
  display: none;
}

.request-page--cf7 .wpcf7-submit,
.request-page--cf7 .wpcf7-previous {
  width: auto;
  min-width: 260px;
  min-height: 56px;
  margin: 0;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, #6e5bc0 0%, #5a4aa3 55%, #47368f 100%);
  box-shadow: 0 12px 22px rgba(25, 15, 79, 0.18);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.request-page--cf7 .wpcf7-previous {
  border-color: #c9c4df;
  background: #fff;
  box-shadow: none;
  color: #4d4598;
}

.request-page--cf7 .wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}

.request-page--cf7 .wpcf7-response-output {
  max-width: 100%;
  margin: 18px 0 0;
  overflow-wrap: anywhere;
}

.request-page--cf7 .request-complete {
  color: #000;
  line-height: 1.85;
  text-align: center;
}

.request-page--cf7 .request-complete p {
  margin: 0;
}

.request-page--cf7 .request-complete p + p {
  margin-top: 10px;
}

@media screen and (max-width: 640px) {
  .request-page--cf7 .request-form__actions--confirm {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .request-page--cf7 .wpcf7-submit,
  .request-page--cf7 .wpcf7-previous {
    width: 100%;
    min-width: 0;
    max-width: 260px;
  }
}

.js-request-submit[disabled],
.request-page--cf7 .wpcf7-form:has(.wpcf7-acceptance input:not(:checked)) .wpcf7-submit,
.request-page--cf7 .wpcf7-submit:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  box-shadow: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

.request-recaptcha {
  margin: 18px 0 0;
  color: #333;
  font-size: 13px;
  line-height: 1.8;
}

.request-recaptcha a {
  color: #4d4598;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

/* Production Contact Form 7 markup compatibility */
.request-page--cf7 .wpcf7 {
  margin-top: 28px;
}

.request-page--cf7 .wpcf7-form p {
  margin: 0;
}

.request-page--cf7 .request_box {
  max-width: 100%;
  overflow: hidden;
  border: 1px solid #d4cfea;
  background: #fff;
}

.request-page--cf7 .request_box table {
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.request-page--cf7 .request_box th,
.request-page--cf7 .request_box td {
  border: 0;
  border-top: 1px solid #d4cfea;
  vertical-align: middle;
}

.request-page--cf7 .request_box tr:first-child th,
.request-page--cf7 .request_box tr:first-child td {
  border-top: 0;
}

.request-page--cf7 .request_box th {
  width: 220px;
  padding: 18px 16px;
  background: #f3f1fb;
  color: #3f3a86;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
}

.request-page--cf7 .request_box td {
  min-width: 0;
  padding: 14px 16px;
  background: #fff;
}

.request-page--cf7 .request_box .wpcf7-form-control-wrap,
.request-page--cf7 .request_box .wpcf7-form-control {
  display: block;
  width: 100%;
  max-width: 100%;
}

.request-page--cf7 .kome {
  display: inline-block;
  margin-right: 8px;
  padding: 1px 8px;
  border-radius: 4px;
  background: #5a4aa3;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.request-page--cf7 .request_box input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.request-page--cf7 .request_box textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid #bbb5d9;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 16px;
  line-height: 1.6;
}

.request-page--cf7 .request_box textarea {
  min-height: 180px;
  resize: vertical;
}

.request-page--cf7 .request_box_confirm {
  max-width: 100%;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid #d4cfea;
  background: #fff;
}

.request-page--cf7 .request_box_confirm label {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  column-gap: 32px;
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 18px 16px;
  background: linear-gradient(to right, #f3f1fb 0, #f3f1fb 220px, #fff 220px, #fff 100%);
  color: #111;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.request-page--cf7 .request_box_confirm label + label {
  border-top: 1px solid #d4cfea;
}

.request-page--cf7 .request_box_confirm label::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 220px;
  width: 1px;
  background: #d4cfea;
}

.request-page--cf7 .request_box_confirm label > br {
  display: none;
}

.request-page--cf7 .request_box_confirm .wpcf7-form-control-wrap,
.request-page--cf7 .request_box_confirm .wpcf7-form-control {
  display: block;
  min-width: 0;
  max-width: 100%;
}

.request-page--cf7 h2 {
  margin: 28px 0 12px;
  color: #3f3a86;
  font-size: 20px;
  line-height: 1.5;
}

.request-page--cf7 h2 + p {
  margin: 0 0 12px;
  color: #000;
  line-height: 1.85;
}

.request-page--cf7 .privacy_policy {
  max-height: 220px;
  overflow: auto;
  padding: 14px 16px;
  border: 1px solid #cdc8e4;
  background: #fff;
  color: #000;
}

.request-page--cf7 .privacy_policy h3 {
  margin: 0 0 12px;
  color: #3f3a86;
  font-size: 18px;
}

.request-page--cf7 .privacy_policy h4 {
  margin: 16px 0 8px;
  color: #3f3a86;
  font-size: 18px;
}

.request-page--cf7 .privacy_policy p {
  margin: 0;
  line-height: 1.85;
}

.request-page--cf7 .privacy_policy p + p {
  margin-top: 12px;
}

.request-page--cf7 .privacy_policy ul {
  margin: 0;
  padding-left: 1.4em;
}

.request-page--cf7 .privacy_policy li + li {
  margin-top: 6px;
}

.request-page--cf7 .privacy_policy .top_ind {
  padding-left: 1em;
}

.request-page--cf7 .privacy_policy a,
.request-page--cf7 .c_recapcha a {
  color: #4d4598;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  overflow-wrap: anywhere;
}

.request-page--cf7 .privacy_policy img {
  max-width: 100%;
  height: auto;
}

.request-page--cf7 .r_check,
.request-page--cf7 .r_gocheck {
  margin-top: 24px;
  text-align: center;
}

.request-page--cf7 .r_check .wpcf7-acceptance label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #000;
  font-size: 15px;
  line-height: 1.6;
}

.request-page--cf7 .r_check .wpcf7-list-item {
  margin: 0;
}

.request-page--cf7 .r_check .wpcf7-acceptance input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.request-page--cf7 .r_check .wpcf7-submit {
  margin-top: 22px;
}

.request-page--cf7 .r_gocheck {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
}

.request-page--cf7 .r_gocheck > p {
  display: contents;
  margin: 0;
}

.request-page--cf7 .r_gocheck > br {
  display: none;
}

.request-page--cf7 .wpcf7-not-valid {
  border-color: #c92d3d !important;
}

.request-page--cf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
}

.request-page--cf7 p.c_recapcha {
  margin: 18px 0 0;
  color: #333;
  font-size: 13px;
  line-height: 1.8;
}

@media screen and (max-width: 640px) {
  .request-page--cf7 .wpcf7 {
    margin-top: 22px;
  }

  .request-page--cf7 .request_box table,
  .request-page--cf7 .request_box tbody,
  .request-page--cf7 .request_box tr,
  .request-page--cf7 .request_box th,
  .request-page--cf7 .request_box td {
    display: block;
    width: 100%;
  }

  .request-page--cf7 .request_box tr + tr th {
    border-top: 0;
  }

  .request-page--cf7 .request_box tr:first-child td {
    border-top: 1px solid #d4cfea;
  }

  .request-page--cf7 .request_box th {
    padding: 12px 12px 10px;
    border-bottom: 0;
  }

  .request-page--cf7 .request_box td {
    padding: 12px;
  }

  .request-page--cf7 .request_box_confirm label {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 16px;
    padding: 12px;
    background: linear-gradient(to bottom, #f3f1fb 0, #f3f1fb 49px, #fff 49px, #fff 100%);
  }

  .request-page--cf7 .request_box_confirm label::after {
    top: 49px;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }

  .request-page--cf7 h2 {
    font-size: 18px;
  }

  .request-page--cf7 h2 + p {
    font-size: 14px;
  }

  .request-page--cf7 .privacy_policy {
    max-height: 180px;
    padding: 12px;
  }

  .request-page--cf7 .r_gocheck {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .request-page--cf7 p.c_recapcha {
    font-size: 12px;
  }
}

.policy-lead {
  margin: 0 0 18px;
  padding: 0 0 10px;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--main-deep);
  border-bottom: 2px solid rgba(90, 74, 163, 0.18);
}

.page-title::after {
  content: "";
  display: block;
  width: clamp(92px, 18vw, 110px);
  height: 2px;
  margin: 16px auto 0;
  background: #b9b4ea;
}

.company-info {
  margin-bottom: 42px;
}

.links-wrap {
  width: min(1100px, calc(100% - 64px));
}

.links-content-card {
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(90, 74, 163, 0.12);
  border-radius: 0;
  box-shadow: none;
  color: #000;
}

.links-section + .links-section {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #eceaf8;
}

.links-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-size: clamp(18px, 1.9vw, 20px);
  color: #4d4598;
  font-weight: 800;
  line-height: 1.4;
}

.links-section-title::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 2px;
  background: #5a47b5;
  flex: 0 0 14px;
}

.links-grid {
  display: grid;
  gap: 24px;
}

.links-item {
  border: 1px solid #c9cde6;
  border-radius: 12px;
  background: #f8fbff;
  padding: 24px 24px 20px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.links-item:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f7f5ff 0%, #eef8fb 100%);
  box-shadow: 0 12px 24px rgba(84, 72, 154, 0.1);
}

.links-item-title {
  font-size: 20px;
  font-weight: 700;
  color: #4d4598;
  margin: 0 0 8px;
  padding-left: 10px;
  border-left: 3px solid #5a47b5;
  line-height: 1.6;
}

.links-logo-wrap {
  display: block;
  margin-top: 8px;
}

.link-url {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #5a47b5;
  word-break: break-all;
}

.link-text {
  margin: 0;
  font-size: 14px;
  color: #000;
  line-height: 1.9;
}

.links-notes {
  background: #fff;
  border: 1px solid #dddff0;
  border-radius: 12px;
  padding: 24px;
}

.links-subhead {
  margin: 0 0 14px;
  font-weight: 700;
  color: #333;
  line-height: 1.8;
}

.rule-list {
  margin: 0;
  padding-left: 1.4em;
  line-height: 1.9;
}

.rule-list li + li {
  margin-top: 12px;
}

.rule-list-plain {
  list-style: disc;
  margin: 10px 0 0;
  padding-left: 1.2em;
}

.rule-list-plain li + li {
  margin-top: 6px;
}

.links-code-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.links-code-item {
  background: #fff;
  border: 1px solid #dddff0;
  border-radius: 12px;
  padding: 18px;
}

.links-code-title {
  margin: 0 0 14px;
  color: #48478b;
  font-size: 16px;
}

.links-code-preview {
  display: grid;
  place-items: center;
  margin: 0 0 14px;
  border: 1px dashed #cfc8ef;
  background: linear-gradient(135deg, #f7f5ff 0%, #eef8fb 100%);
  color: #1f52aa;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
}

.links-code-preview--wide {
  min-height: 88px;
}

.links-code-preview--medium {
  min-height: 110px;
}

.links-code-preview--square {
  min-height: 150px;
}

.links-code-block {
  margin: 0;
  padding: 14px;
  border-radius: 8px;
  background: #f4f4f9;
  border: 1px solid #e4e4ef;
  overflow-x: auto;
  font-size: 12px;
  line-height: 1.8;
  color: #000;
  white-space: pre-wrap;
  word-break: break-all;
}

.page-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  line-height: 1;
  background: #3b3970;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(90, 74, 163, 0.22);
  z-index: 99;
}

.page-top:hover {
  background: #55528e;
  color: #fff;
}

.page-company .section-company {
  padding-top: 58px;
  padding-bottom: 82px;
}

.section-talent {
  padding-top: 58px;
  padding-bottom: 82px;
}

.section-talent-detail {
  padding-top: 58px;
  padding-bottom: 82px;
}

.page-company .page-title {
  margin-bottom: 36px;
  color: #2d2964;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.page-company .company-info table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: none;
  border: 1.1px solid #9690bd;
}

.page-company .company-info th,
.page-company .company-info td {
  padding: 16px 20px;
  border-bottom: 1px solid #b4aece;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.8;
}

.page-company .company-info th {
  width: 200px;
  text-align: left;
  color: #24224c;
  background: #f1f8ff;
  border-right: 1px solid #b4aece;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.page-company .company-info td {
  background: #fff;
  color: #0e0d1a;
}

.page-company .company-info td p {
  margin: 0;
}

.page-company .company-info td p + p {
  margin-top: 8px;
}

.page-company .company-notes {
  padding: 24px 22px;
  background: #fdfdff;
  border: 1px solid #d8d5e8;
  box-shadow: none;
}

.page-company .company-info {
  margin-bottom: 46px;
}

.page-company .note-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 30px 0 12px;
  color: #534e86;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.page-company .note-head::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #6d66a7;
  flex: 0 0 10px;
  margin-top: 0.55em;
}

.page-company .company-notes .note-head:first-child {
  margin-top: 0;
}

.page-company .company-notes p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

.page-company .company-notes p:last-child {
  margin-bottom: 0;
}

.page-company .company-notes p + .note-head {
  margin-top: 40px;
}

.privacy-copy {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(90, 74, 163, 0.12);
  line-height: 1.9;
}

.privacy-copy p {
  margin: 0 0 14px;
}

.privacy-copy a {
  color: var(--main);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  word-break: break-all;
}

.privacy-copy a:hover {
  color: #000;
}

.privacy-copy .rule-list {
  margin: 0 0 14px;
}

.privacy-copy .note-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 28px 0 12px;
  font-size: clamp(18px, 1.9vw, 20px);
  color: var(--main-deep);
  font-weight: 800;
  line-height: 1.4;
}

.note-head::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 2px;
  background: #47368f;
  flex: 0 0 14px;
}

.site-footer {
  padding: 24px 0 38px;
  color: #fff;
  background: linear-gradient(135deg, #4c3f93 0%, #5a4aa3 50%, #7f7bc8 100%);
}
.footer-nav {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.footer-list {
  display: grid;
  grid-template-columns: repeat(7, max-content);
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-item {
  margin: 0;
}
.footer-link {
  color: rgba(255, 255, 255, 0.96);
  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.95);
}
.footer-copy {
  padding-top: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .footer-nav {
    padding-bottom: 14px;
  }

  .footer-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 12px;
  }

  .footer-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 6px 4px;
    line-height: 1.45;
  }

  .footer-copy {
    padding-top: 22px;
    padding-right: 84px;
    padding-bottom: 24px;
    font-size: 13px;
  }
}

@media (max-width: 960px) {
  .hero {
    height: 340px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .section-talent-search::before {
    right: 72px;
    top: 18px;
    width: 68px;
    height: 52px;
    opacity: 0.15;
  }
  .section-talent-search::after {
    right: 12px;
    top: 24px;
    width: 54px;
    height: 42px;
    opacity: 0.09;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 18px, 100%);
  }
  .breadcrumb__list {
    gap: 4px;
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: 11px;
  }
  .breadcrumb__item + .breadcrumb__item::before {
    margin-right: 4px;
  }
  .hero {
    height: 240px;
  }
  .hero::after {
    bottom: -58px;
    height: 120px;
    transform: rotate(5deg);
    background:
      linear-gradient(
          90deg,
          #3d3a8d 0%,
          #a393cf 12%,
          #c7b7ff 42%,
          #8f8dc9 72%,
          #5a4aa3 100%
        )
        0 40px/100% 8px no-repeat,
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.22) 0%,
        rgba(245, 243, 255, 0.94) 18%,
        #ddc5ff 50%,
        #f5f3ff 82%,
        rgba(223, 217, 248, 0.95) 100%
      );
  }
  .section {
    padding: 52px 0 62px;
  }
  .section-news {
    padding-bottom: 18px;
  }
  .section-news::before {
    top: 44px;
    left: 28%;
    right: 2%;
    height: 88px;
    font-size: 24px;
    letter-spacing: 0.2em;
    text-align: right;
  }
  .section-talent-search::before {
    left: auto;
    right: 152px;
    top: 102px;
    width: 48px;
    height: 36px;
    opacity: 0.14;
  }
  .section-talent-search::after {
    right: 112px;
    top: 106px;
    width: 36px;
    height: 27px;
    opacity: 0.08;
  }
  .talent-search-wrap::before {
    right: 74px;
    top: 102px;
    width: 38px;
    height: 29px;
    opacity: 0.1;
  }
  .talent-search-wrap::after {
    right: 22px;
    top: 106px;
    width: 31px;
    height: 24px;
    opacity: 0.08;
  }
  .talent-search-head {
    min-height: auto;
    padding-bottom: 0;
    padding-right: 0;
    background: none;
  }
  .section-head {
    flex-wrap: wrap;
    gap: 8px 12px;
  }
  .section-title {
    font-size: clamp(28px, 10vw, 40px);
  }
  .section-head::after {
    width: 100%;
    flex: none;
    margin-left: 0;
  }
  .talent-search-head::after {
    width: auto;
    flex: 1;
    margin-left: 10px;
  }
  .section-label {
    font-size: 18px;
  }
  .subpage-heading {
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-bottom: 24px;
  }
  .subpage-heading::after {
    width: 100%;
    flex: none;
    max-width: none;
    margin-bottom: 0;
  }
  .subpage-heading__en {
    font-size: clamp(24px, 7vw, 30px);
  }
  .subpage-heading__ja {
    font-size: clamp(18px, 5.4vw, 24px);
  }
  .section-news-archive {
    padding-top: 52px;
    padding-bottom: 62px;
  }
  .section-request {
    padding-top: 52px;
    padding-bottom: 62px;
  }
  .section-fan {
    padding-top: 52px;
    padding-bottom: 62px;
  }
  .fan-page {
    padding: 18px 14px 20px;
  }
  .fan-page__title {
    margin-bottom: 12px;
    font-size: clamp(24px, 8vw, 32px);
  }
  .fan-page__deco {
    position: static;
    right: auto;
    top: auto;
    width: min(100%, 260px);
    margin: 2px auto 10px;
    opacity: 0.72;
  }
  .fan-page__body {
    max-width: none;
    font-size: 15px;
    line-height: 1.86;
  }
  .fan-page__lead-title {
    font-size: clamp(22px, 6.5vw, 30px);
    margin-bottom: 12px;
    line-height: 1.24;
  }
  .fan-page__section-title,
  .fan-page__address-title {
    font-size: clamp(19px, 5.7vw, 24px);
    margin-top: 20px;
  }
  .fan-page__address-box {
    padding: 12px;
  }
  .request-page {
    padding: 20px 14px 26px;
  }
  .request-tel {
    font-size: 16px;
  }
  .request-form {
    margin-top: 22px;
  }
  .request-form__row {
    grid-template-columns: 1fr;
  }
  .request-form__label {
    padding: 12px 12px 10px;
    border-right: 0;
  }
  .request-form__control {
    padding: 12px 12px;
  }
  .request-form__control input,
  .request-form__control textarea {
    font-size: 16px;
  }
  .request-privacy {
    margin-top: 18px;
  }
  .request-privacy__title {
    font-size: 18px;
  }
  .request-privacy__lead {
    font-size: 14px;
  }
  .request-privacy__box {
    max-height: 180px;
    padding: 12px;
  }
  .request-submit {
    margin-top: 22px;
  }
  .request-recaptcha {
    font-size: 12px;
  }
  .news-page {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .news-page__main {
    padding: 18px 14px;
  }
  .news-page__link {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 2px;
  }
  .section-news .news-page__link {
    display: block;
    gap: 8px;
  }
  .news-page__date {
    margin-top: 0;
    font-size: 14px;
  }
  .news-page__title {
    font-size: 17px;
    line-height: 1.6;
  }
  .news-page__excerpt {
    margin-top: 3px;
    font-size: 14px;
    line-height: 1.75;
  }
  .news-page__pager {
    margin-top: 20px;
    gap: 6px;
  }
  .news-page__pager-link {
    min-width: 38px;
    min-height: 38px;
    padding: 0 10px;
    font-size: 14px;
  }
  .news-page__side-title {
    padding: 12px 14px;
    font-size: 17px;
  }
  .news-page__summary {
    padding: 12px 14px;
    font-size: 15px;
  }
  .news-page__month-link {
    padding: 7px 14px 7px 24px;
    font-size: 13px;
  }
  .news__item {
    font-size: 16px;
  }
  .news__link {
    flex-direction: column;
    gap: 8px;
  }
  .news__excerpt {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.65;
  }
  .btn--primary {
    min-width: 220px;
    min-height: 50px;
  }
  .section-talent-search {
    padding-top: 14px;
    padding-bottom: 44px;
  }
  .talent-search-wrap {
    padding: 0;
  }
  .talent-search-card {
    padding: 22px 20px 28px;
    border-radius: 16px;
  }
  .talent-search-card::after {
    top: 14px;
    right: 14px;
    width: 118px;
    height: 42px;
    opacity: 0.44;
    filter: saturate(1.05) contrast(1.05) brightness(0.95);
    background-size:
      32px 32px,
      32px 32px;
    background-position:
      0 68%,
      62px 34%;
    animation-duration: 6.8s;
  }
  .talent-search-title {
    margin-bottom: 14px;
    font-size: clamp(16px, 6.2vw, 28px);
    gap: 8px;
  }
  .talent-search-title::before {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }
  .talent-search-title::after {
    content: none;
  }
  .kana-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 24px;
    margin-bottom: 12px;
  }
  .kana-grid-extra {
    margin: 0 0 24px;
    column-gap: 12px;
  }
  .btn--kana {
    min-height: 66px;
    font-size: 26px;
  }
  .btn--kana-extra {
    font-size: clamp(16px, 4.8vw, 22px);
  }
  .talent-search-row {
    grid-template-columns: 1fr;
    margin-bottom: 36px;
  }
  .talent-search-input {
    min-height: 30px;
    padding: 0 10px;
    font-size: 16px;
    border-bottom: 1px solid rgba(135, 126, 188, 0.18);
  }
  .talent-search-input::placeholder {
    font-size: 16px;
  }
  .btn--search {
    min-height: 36px;
    font-size: 16px;
    letter-spacing: 0.8em;
  }
  .talent-search-actions {
    justify-content: center;
    margin-top: 2px;
  }
  .talent-list-link {
    width: auto;
    min-width: 220px;
    min-height: 50px;
    font-size: 16px;
    padding: 0 20px;
    gap: 10px;
  }
  .about-title {
    font-size: 28px;
  }

  .page-company .company-info th,
  .page-company .company-info td {
    display: block;
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border-bottom: 0;
  }

  .page-company .company-info tr {
    display: block;
    border-bottom: 1px solid #b4aece;
  }

  .page-company .company-info tr:last-child {
    border-bottom: 0;
  }

  .page-company .company-info table {
    border: 1px solid #b4aece;
  }

  .page-company .company-info th {
    border-right: none;
    border-bottom: 1px solid #b4aece;
    font-size: 13px;
    letter-spacing: 0.06em;
  }

  .page-company .company-info td {
    padding-top: 12px;
  }

  .links-wrap {
    width: min(100% - 24px, 100%);
  }

  .links-content-card {
    padding: 28px 20px;
  }

  .links-section-title {
    font-size: 18px;
  }

  .links-code-grid {
    grid-template-columns: 1fr;
  }

  .links-logo-wrap {
    grid-template-columns: 1fr;
  }

  .page-top {
    width: 48px;
    height: 48px;
  }

  .page-company .company-notes {
    padding: 18px 14px;
  }

  .page-company .note-head {
    gap: 8px;
    margin: 20px 0 8px;
    font-size: 16px;
  }

  .page-company .note-head::before {
    width: 10px;
    height: 10px;
    flex-basis: 10px;
  }

  .page-company .company-notes p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.85;
  }
}
