html { font-size: 62.5%; }
body { font-family: "Lato", "Noto Sans JP", sans-serif; font-size: 1.6rem; color: #333; background: #fff; font-feature-settings: "palt"; letter-spacing: 1px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; isolation: isolate; }

/* ============== Common ============== */
.page-head { position: relative; height: 240px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; overflow: hidden; padding-top: 32px; }
.page-head__title { font-family: "Jost", sans-serif; font-size: 3.2rem; font-weight: 500; letter-spacing: 1px; color: #fff; z-index: 1; text-transform: uppercase; }
.page-head__subtitle { font-size: 1.8rem; font-weight: 700; letter-spacing: 1px; color: #fff; margin-top: 8px; z-index: 1; }
.page-head::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; background: linear-gradient(135deg, #cd1cfa, #1e82be); background-size: 150% 150%; animation: pagehead-gradient 20s infinite; }
@keyframes pagehead-gradient {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
@media (max-width: 900px) {
  .page-head { height: 200px; }
  .page-head__title { font-size: 3rem; }
  .page-head__subtitle { font-size: 1.4rem; }
}

.section-container { max-width: 1200px; padding: 80px 16px; margin: 0 auto; }
@media (max-width: 900px) {
  .section-container { padding: 40px 16px; }
}

.pc-none { display: none; }
.sp-none { display: revert; }
@media (max-width: 768px) {
  .pc-none { display: revert; }
  .sp-none { display: none; }
}

/* ============== Elements ============== */
.btn { display: inline-flex; align-items: center; font-size: 1.8rem; font-weight: 700; letter-spacing: .1em; color: #fff; border-radius: 999px; border: 2px solid #333; background-color: #333; padding: 16px 56px; transition: .3s ease; }
.btn:hover { color: #333; background-color: transparent; }
.btn--line { color: #333; background-color: transparent; }
.btn--line:hover { color: #fff; background-color: #333; }
@media (max-width: 768px) {
  .btn { font-size: 1.6rem; }
}

.btn-arrow { position: relative; font-size: 1.6rem; font-weight: 700; line-height: 1.3; padding-left: 20px; transition: .3s; }
.btn-arrow::before { content: ""; margin: auto; position: absolute; top: 5px; left: 0; width: 10px; height: 10px; border-top: 3px solid #ff289f; border-right: 3px solid #ff289f; transform: rotate(45deg); }
.btn-arrow:hover { color: #ff289f; }
.btn-bold { font-size: 1.6rem; font-weight: 700; line-height: 1.3; transition: .3s; }
.btn-bold:hover { opacity: .5; }

.bullet { }
.bullet > li { position: relative; padding-left: 1em; font-weight: 700; line-height: 1.3; margin-bottom: 16px; }
.bullet > li:last-child { margin-bottom: 0; }
.bullet > li::before { content: ""; position: absolute; top: 9px; left: 0; width: 8px; height: 1px; background: #9ca3af; border-radius: 1px; }
.bullet a { color: inherit; text-decoration: none; transition: opacity .3s ease; }
.bullet a:hover { opacity: .5; }

.u-marker { position: relative; display: inline; z-index: 0; }
.u-marker::before { content: ""; position: absolute; left: -.12em; right: -.12em; bottom: .05em; height: .6em; background: #fff36a; border-radius: 4px; transform: skewX(-6deg); z-index: -1; }

/* ============== Header ============== */
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 1200; background: transparent; color: #fff; }
.site-header__inner { height: 96px; display: flex; align-items: center; justify-content: space-between; padding: 0 32px; position: relative; }
.site-header__brand-wrap { display: flex; align-items: center; gap: 24px; }
.site-header__brand { display: inline-block; color: inherit; }
.site-header__logo-img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.site-header__tag { font-family: "Jost", sans-serif; font-size: 4.0rem; font-weight: 400; letter-spacing: .1em; color: inherit; }

.site-header--fixed { position: fixed; top: 0; left: 0; right: 0; background: rgba(255,255,255,0.96); color: #333; z-index: 1600; box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.site-header--fixed .site-header__inner { height: 72px; }
.site-header--fixed .site-header__logo-img { height: 32px; filter: none !important; }
.site-header--fixed .site-header__brand-wrap { gap: 16px; }
.site-header--fixed .site-header__tag { font-size: 3.2rem; color: #333; }
.site-header--fixed .site-header__toggle { color: #333; }
.site-header--fixed .site-header__toggle-bar { background: #333; }
.site-header--fixed .nav__link { color: #333; }
.site-header--fixed .nav__cta { color: #333; border-color: #333; }

.nav { position: static; width: auto; background: transparent; }
.nav__list { display: flex; flex-direction: row; align-items: center; gap: 16px; padding: 0; margin: 0; list-style: none; }
.nav__item { opacity: 1; transform: none; }
.nav__link { position: relative; display: inline-block; font-size: 1.5rem; font-weight: 700; color: currentColor; text-decoration: none; padding: 8px 0; margin-right: 16px; }
.nav__link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: left top; transition: transform .3s ease; }
.nav__link:hover::after, .nav__link:focus-visible::after { transform: scaleX(1); }
.nav__cta { display: inline-block; min-width: 140px; text-align: center; border: 2px solid currentColor; border-radius: 999px; padding: 10px 18px; font-weight: 700; color: currentColor; transition: .3s ease; }
.nav__cta:hover { color: #fff; border-color: #ff289f; background-color: #ff289f; }
.nav__cta--accent {}
.nav__cta > span { position: relative; z-index: 1; }

.site-header__toggle { display: none; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border: 0; background: transparent; cursor: pointer; color: inherit; }
.site-header__toggle-bar { position: absolute; left: 14px; right: 14px; height: 2px; background: currentColor; transition: transform .35s ease, top .35s ease, width .35s ease, opacity .2s ease; }
.site-header__toggle-bar:nth-child(1) { top: calc(50% - 6px); width: 60%; }
.site-header__toggle-bar:nth-child(2) { top: calc(50% + 4px); width: 40%; }
.site-header__toggle--active .site-header__toggle-bar:nth-child(1) { top: 50%; transform: rotate(-45deg); width: 60%; }
.site-header__toggle--active .site-header__toggle-bar:nth-child(2) { top: 50%; transform: rotate(45deg); width: 60%; }

@media (max-width: 1080px) {
  .nav__link { margin-right: 0; }
}
@media (max-width: 1280px) {
  .site-header__inner { height: 72px; padding: 0 16px; }
  .site-header__brand-wrap { gap: 16px; }
  .site-header__logo-img { height: 32px; }
  .site-header__tag { font-size: 3.2rem; }
  .nav__list { gap: 24px; }
}
@media (max-width: 900px) {
  .site-header__inner { height: 56px; }
  .site-header__logo-img { height: 24px; }
  .site-header__tag { font-size: 2.4rem; }
  .site-header__toggle { display: inline-flex; align-items: center; justify-content: center; z-index: 1700; }
  body.is-menu-open .site-header__toggle { position: fixed; top: 8px; right: 12px; transform: none; z-index: 1800; color: #333; }
  body.is-menu-open .site-header__toggle-bar { background: #333; }
  .nav { position: fixed; inset: 0; background: #fff; color: #333; opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 1650; overflow: auto; -webkit-overflow-scrolling: touch; display: grid; place-items: center; padding: 24px; }
  .nav--open { opacity: 1; pointer-events: auto; }
  .nav__list { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; margin: 0; padding: 0; height: 100%; opacity: 0; transform: translateY(6px); transition: opacity .2s ease, transform .2s ease; }
  .nav--open .nav__list { opacity: 1; transform: none; }
  .nav__item { opacity: 0; transform: translateY(8px); }
  .nav--open .nav__item { opacity: 1; transform: none; transition: opacity .24s ease .05s, transform .24s ease .05s; }
  .nav--open .nav__item:nth-child(1) { transition-delay: .05s; }
  .nav--open .nav__item:nth-child(2) { transition-delay: .10s; }
  .nav--open .nav__item:nth-child(3) { transition-delay: .15s; }
  .nav--open .nav__item:nth-child(4) { transition-delay: .20s; padding-bottom: 24px; }
  .nav--open .nav__item:nth-child(5) { transition-delay: .25s; }
  .nav__link { font-size: 1.5rem; }
  .site-header--fixed .site-header__inner { height: 56px; }
  .site-header--fixed .site-header__logo-img { height: 24px; }
  .site-header--fixed .site-header__tag { font-size: 2.4rem; }
}

@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }

/* ============== Footer ============== */
.site-footer { position: relative; z-index: 2; background: #262626; color: #fff; padding: 32px 0; }
.site-footer__container { display: flex; flex-direction: column; gap: 24px; max-width: 1200px; padding: 0 16px; margin: 0 auto; }
.site-footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-start; gap: 16px; }
.site-footer__nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-start; }
.site-footer__item { font-size: 1.4rem; }
.site-footer__link { color: #ccc; transition: opacity .3s ease; }
.site-footer__link:hover { opacity: .5; }
.site-footer-bottom__nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-start; }
.site-footer-bottom__item { font-size: 1.4rem; }
.site-footer-bottom__link { color: #808080; transition: opacity .3s ease; }
.site-footer-bottom__link:hover { opacity: .5; }
.site-footer__inner:last-child .site-footer__copyright { margin-left: auto; }
.site-footer__copyright { display: inline-block; font-size: 1.2rem; color: #808080; margin-top: 0; text-align: right; }

@media (max-width: 900px) {
  .site-footer_container { gap: 24px; }
  .site-footer__inner { flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 16px; }
  .site-footer__nav { justify-content: center; gap: 16px 24px; }
  .site-footer-bottom__nav { justify-content: center; gap: 16px 24px; }
  .site-footer__link { display: inline-block; padding: 10px 0; }
  .site-footer-bottom__link { display: inline-block; padding: 10px 0; }
  .site-footer__copyright { margin: 8px auto 0; text-align: center; }
}

/* ============== Modal ============== */
.modal { position: fixed; inset: 0; z-index: 10000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; pointer-events: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); backdrop-filter: blur(8px) saturate(120%); opacity: 0; transition: opacity .3s ease; }
.modal__dialog { position: relative; max-width: 920px; width: 90%; background: #1c1530; color: #fff; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,.45); opacity: 0; margin: 0; transform: translateY(-8px); transition: opacity .5s ease, transform .5s ease; }
.modal__grid { display: flex; padding: 30px; }
.modal__media { flex: 0 0 40%; }
.modal__media img { width: 100%; display: block; border-radius: 10px; }
.modal__content { flex: 1; padding-left: 30px; }
.modal__name { font-size: 2rem; font-weight: 700; margin-top: 10px; }
.modal__title { font-size: 1.5rem; line-height: 1.6; margin-top: 10px; }
.modal__lead { font-size: 1.6rem; line-height: 1.6; margin-top: 18px; }
.modal[aria-hidden="false"] { opacity: 1; visibility: visible; pointer-events: auto; }
.modal[aria-hidden="false"] .modal__overlay { opacity: 1; }
.modal[aria-hidden="false"] .modal__dialog { opacity: 1; transform: translateY(0); }
.modal__close { position: absolute; z-index: 11000; top: clamp(8px, 2vh, 20px); right: clamp(8px, 2vw, 20px); width: 56px; height: 56px; padding: 0; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(255,255,255,.08); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; backdrop-filter: blur(6px) saturate(120%); transition: transform .18s ease, background-color .18s ease, border-color .18s ease, opacity .18s ease; }
.modal__close::before, .modal__close::after { content: ""; position: absolute; width: 24px; height: 1.5px; background: currentColor; border-radius: 2px; pointer-events: none; }
.modal__close::before { transform: rotate(45deg); }
.modal__close::after { transform: rotate(-45deg); }
.modal__close:hover { transform: scale(1.06); background-color: rgba(255,255,255,.14); border-color: rgba(255,255,255,.6); }
.modal__close:active { transform: scale(.98); }
.modal__close:focus { outline: none; }
.modal__close:focus:not(:focus-visible) { outline: none; }
.modal.modal-image .modal__dialog { background: transparent; box-shadow: none; padding: 0; width: auto; max-width: none; }
.modal.modal-image .modal__close { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.modal.modal-image .modal__body { display: flex; justify-content: center; align-items: center; padding: 0 2vw; }
.modal.modal-image .modal__img { display: block; max-width: 90vw; max-height: 90vh; width: auto; height: auto; border-radius: 12px; box-shadow: 0 12px 48px rgba(0,0,0,.5); object-fit: contain; }
.modal.modal-video .modal__dialog { background: #333; padding: 0; width: min(92vw, 1200px); border-radius: 12px; overflow: hidden; }
.modal__video { position: relative; width: 100%; padding-top: 56.25%; background: #333; }
.modal__video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) {
  .modal__dialog { margin: 6vh 16px; }
  .modal__grid { display: block; padding: 32px; }
  .modal__content { padding-left: 0; }
  .modal__name { margin-top: 24px; }
  .modal__title { margin-top: 8px; }
  .modal__lead { margin-top: 16px; }
  .modal__close { top: 8px; right: 8px; }
}

@media (max-width: 768px) {
  .modal__dialog { margin: 4vh 16px; }
  .modal__grid { padding: 16px; }
  .modal__lead { font-size: 1.5rem; margin-top: 16px; }
}

@media (max-width: 480px) {
  .modal__close { width: 52px; height: 52px; }
  .modal__close::before, .modal__close::after { width: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .modal__overlay, .modal__dialog { transition: none; }
}

/* ============== Animation ============== */
.reveal--up, .reveal--down, .reveal--fade { opacity: 0 !important; transition-timing-function: cubic-bezier(.2,.6,.2,1); }
.reveal--up   { transform: translate3d(0, 40px, 0);  transition: transform 1.0s, opacity 1.0s; }
.reveal--down { transform: translate3d(0, -40px, 0); transition: transform 1.0s, opacity 1.0s; }
.reveal--fade { transition: opacity 1.0s; }
.reveal--up.reveal--shown, .reveal--down.reveal--shown { transform: none; opacity: 1 !important; }
.reveal--fade.reveal--shown { opacity: 1 !important; }

@media (prefers-reduced-motion: reduce) {
  .reveal--up, .reveal--down, .reveal--fade { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ============== WP ============== */
#wpadminbar { opacity: 0.5; }
@supports selector(:has(*)) { 
  :root:has(#wpadminbar) { margin-top: 0 !important; }
}
.grecaptcha-badge { visibility: hidden; }

.content h1 { font-size: 6.0rem; font-weight: 700; line-height: 1.6; margin-top: 40px; margin-bottom: 20px; }
.content h2 { font-size: 4.0rem; font-weight: 700; line-height: 1.6; margin-top: 40px; margin-bottom: 20px; }
.content h3 { font-size: 2.8rem; font-weight: 700; line-height: 1.6; border-left: 8px solid #764fdb; padding-left: 16px; margin-top: 40px; margin-bottom: 30px; }
.content h4 { font-size: 2.4rem; font-weight: 700; line-height: 1.6; margin-top: 40px; margin-bottom: 30px; }
.content h5 { font-size: 1.8rem; font-weight: 700; line-height: 1.6; margin-top: 30px; margin-bottom: 20px; }
.content p { margin-bottom: 20px; }
.content em { font-style: normal; background-color: #fcf9c4; }
.content img { display: block; max-width: 90%; height: auto; margin: 30px auto; }
.content .iframe-wrap { display: block; position: relative; overflow: hidden; width: 90%; height: auto; padding-top: 56.25%; margin: 30px auto; }
.content iframe { position: absolute; width: 100%; height: 100%; top: 0; left: 0; }
.content .wp-video { display: block; position: relative; overflow: hidden; width: 90% !important; height: auto !important; padding-top: 56.25%; margin: 30px auto; }
.content .wp-video-shortcode { position: absolute; width: 100% !important; height: 100% !important; top: 0; left: 0; }
.content ul { margin-bottom: 15px; }
.content ul li { position: relative; font-size: 1.6rem; line-height: 1.6; padding-left: 14px; margin-bottom: 5px; }
.content ul li::before { position: absolute; display: inline-block; content: "-"; top: 0; left: 0; }
.content ol { margin-left: 25px; margin-bottom: 15px; }
.content ol li { font-size: 1.6rem; line-height: 1.6; margin-bottom: 5px; }
.content a { color: #764fdb; opacity: 1; transition: .3s; }
.content a:hover { opacity: 0.8; }
.content hr { margin: 40px 0; }
@media (max-width: 768px) {
  .content h1 { font-size: 5.0rem; }
  .content h2 { font-size: 4.0rem; }
  .content h3 { font-size: 2.2rem; }
  .content h4 { font-size: 2.0rem; }
  .content h5 { font-size: 2.0rem; }
  .content h6 { font-size: 2.0rem; }
  .content .iframe-wrap { width: 100%; }
  .content .wp-video { width: 100% !important; }
}

/* --------------------------------------------------------------------------

Home

-------------------------------------------------------------------------- */

.home-hero { position: relative; height: 100vh; height: 100lvh; aspect-ratio: auto; overflow: hidden; }
.home-hero-video { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; height: 100lvh; overflow: hidden; background-color: #262625; z-index: -1; }
.home-hero-video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%); }
.home-hero-video__media { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.home-hero__content { position: absolute; bottom: 16px; left: 32px; }
.home-hero__heading { width: 90vw; height: auto; }
.home-hero__tagline { width: 100%; height: auto; }
.home-hero__actions { margin-bottom: 8px; }
/* 旧サイトそのまま（必要部分抜粋） */
.bgextend { animation-name: bgextendAnimeBase; animation-duration: .8s; animation-fill-mode: forwards; position: relative; overflow: hidden; opacity: 1; }
@keyframes bgextendAnimeBase { from { opacity: 1; } to { opacity: 1; } }
.bgappearTrigger { opacity: 0; }
.bgappear { animation-name: heroFadeIn; animation-duration: .18s; animation-timing-function: ease-out; animation-delay: .54s; animation-fill-mode: forwards; }
@keyframes bgextendAnimeSecond { 0% { opacity: 1; } 100% { opacity: 1; } }
.bgLRextend::after { animation-name: bgLRextendAnimeHoldFast; animation-duration: 1s; animation-timing-function: ease; animation-fill-mode: forwards; content: ""; position: absolute; inset: 0; background: #fff; transform-origin: left; transform: scaleX(0); z-index: 2; will-change: transform; }
@keyframes bgLRextendAnimeHoldFast { 0% { transform-origin: left; transform: scaleX(0); } 54% { transform-origin: left; transform: scaleX(1); } 54.001% { transform-origin: right; } 72% { transform: scaleX(1); } 100% { transform-origin: right; transform: scaleX(0); } }
@keyframes heroFadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }

@media (max-width: 900px) {
  .home-hero { height: 400px; aspect-ratio: auto; }
  .home-hero-video { height: 400px; }
  .home-hero-video__media { width: 100%; height: 100%; }
  .home-hero__content { bottom: 8px; left: 16px; }
  .home-hero__heading { margin-bottom: 10px; }
}

.home-link-btn { position: relative; font-size: 1.6rem; font-weight: 700; color: #000; padding-right: 60px; display: inline-block; transition: .3s; }
.home-link-btn:hover { opacity: .6; }
.home-link-btn::before { content: ""; position: absolute; width: 30px; height: 1px; top: 8px; right: 20px; background: #000; transition: .3s; }
.home-link-btn::after { content: ""; position: absolute; top: 5px; right: 12px; border: 4px solid transparent; border-left-color: #000; transition: .3s; }
.home-link-btn:hover::before { width: 45px; right: 5px; }
.home-link-btn:hover::after { right: 0; }
.home-link-btn--white { color: #fff; }
.home-link-btn--white::before { background: #fff; }
.home-link-btn--white::after { border-left-color: #fff; }
.home-arrow-btn { display: inline-block; font-size: 1.6rem; font-weight: 700; color: #333; position: relative; padding-right: 16px; transition: .3s; }
.home-arrow-btn::after { content: ''; position: absolute; top: 50%; right: 0; width: 8px; height: 8px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: translateY(-50%) rotate(45deg); }
.home-arrow-btn:hover { opacity: 0.5; }

.home--watermark { position: relative; }
.home--watermark::before { content: attr(data-watermark); position: absolute; left: 8px; top: 0; font-family: "Jost", sans-serif; font-size: 7vw; font-weight: 500; line-height: 1; letter-spacing: 0; color: #cac7e0; opacity: .25; pointer-events: none; user-select: none; }

@media (max-width: 900px) {
  .home--watermark::before { font-size: 5.4rem; }
}

.home-news { background-color: #f6f5fc; }
.home-news__container { max-width: 1200px; padding: 80px 16px; margin: 0 auto; }
.home-news__list { display: flex; flex-wrap: wrap; gap: 16px; }
.home-news__item { width: calc((100% - 16px * 3) / 4); }
.home-news__card { position: relative; height: 100%; }
.home-news__thumb { width: 100%; height: auto; display: block; }
.home-news__link { display: block; height: 100%; transition: .3s; }
.home-news__title { font-size: 1.5rem; margin: 8px 0; line-height: 1.3; transition: .3s; }
.home-news__link:hover .home-news__title { opacity: .5; }
.home-news__date { font-size: 1.2rem; color: #555; margin-top: 4px; display: block; }
.home-news__more { margin-top: 24px; text-align: right; }
.home-news__info { background: #f7f6fb; border: 1px solid #c7d1e1; border-radius: 8px; text-align: center; padding: 24px 16px; margin-top: 32px; }
.home-news__info__link { line-height: 1.3; transition: .3s; }
.home-news__info__link:hover { opacity: .5; }

@media (max-width: 900px) {
  .home-news__container { padding: 40px 16px; }
  .home-news__list { gap: 16px; }
  .home-news__item { width: calc((100% - 16px) / 2); }
  .home-news__title { font-size: 1.4rem; }
  .home-news__info { padding: 16px 16px; margin-top: 24px; }
}

.home-media { background: linear-gradient(to bottom, #fff 0%, #fff 50%, #f2f2f2 100%); padding: 80px 0; }
.home-media__container { max-width: 1200px; margin: 0 auto; padding: 0 16px; display: grid; gap: 48px; }
.home-media__head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.home-media__catch { font-size: 1.6rem; font-weight: 700; }
.home-media__logo img { height: 64px; width: auto;  display: block; }
.home-media__lead-text { font-size: 2.4rem; font-weight: 900; line-height: 1.6; }
.home-media__block { border-radius: 16px; overflow: visible; background: linear-gradient(90deg, #cd1cfa 0%, #1e82be 100%); position: relative; }
.home-media__block--appweb { background: linear-gradient(90deg, #3d084a 0%, #092638 100%); }
.home-media__banner { display: grid; grid-template-columns: 1fr; align-items: stretch; height: 300px; position: relative; }
.home-media__banner-inner { padding: 56px 80px 0; color: #fff; display: flex; flex-direction: column; gap: 16px; z-index: 2; position: relative; }
.home-media__title { font-family: "Jost", sans-serif; font-size: 8.0rem; font-weight: 500; }
.home-media__lead { font-size: 1.6rem; font-weight: 700; line-height: 1.6; }
.home-media__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }
.home-media__visual { position: absolute; bottom: 0; right: 0; left: auto; display: flex; align-items: flex-end; pointer-events: none; }
.home-media__visual img { display: block; width: auto; height: 330px; }
.home-media-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 18px; font-size: 1.6rem; font-weight: 900; color: #fff; background: transparent; border: 2px solid #fff; border-radius: 999px; transition: .3s; }
.home-media-btn:hover { color: #333; background: #fff; }
.home-media-btn--primary { color: #fff; background: #ff289f; border: 2px solid #ff289f; }
.home-media-btn--primary:hover { color: #333; background: #fff; border: 2px solid #fff; }

@media (max-width: 1040px) {
  .home-media { padding: 40px 0; }
  .home-media__container { gap: 24px; }
  .home-media__head { margin-bottom: 0; }
  .home-media__logo img { height: 40px; }
  .home-media__lead-text { font-size: 1.6rem; }
  .home-media__block { overflow: hidden; }
  .home-media__banner { height: auto; gap: 24px; }
  .home-media__banner-inner { padding: 32px 16px 0; }
  .home-media__title { font-size: 56px; }
  .home-media__lead { font-size: 1.5rem; }
  .home-media__actions { gap: 8px; margin-top: 8px; }
  .home-media-btn { padding: 10px 10px; font-size: 1.3rem; }
  .home-media__visual { position: static; inset: auto; pointer-events: auto; display: block; width: 100%; }
  .home-media__visual img { width: 100%; height: auto; max-width: 100%; }
}

.home-recruit { background: #fff; padding: 80px 0; }
.home-recruit__container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.home-recruit__grid { display: flex; align-items: center; gap: 40px; }
.home-recruit__content { display: flex; flex-direction: column; gap: 24px; flex: 1 1 55%; }
.home-recruit__eyebrow { font-size: 1.6rem; font-weight: 700; }
.home-recruit__title { font-size: 3.2rem; font-weight: 900; line-height: 1.3; }
.home-recruit__text { font-size: 1.6rem; line-height: 1.6; }
.home-recruit__visual { overflow: hidden; display: flex; flex: 1 1 45%; }
.home-recruit__visual img { width: 100%; height: auto; object-fit: cover; }
.home-recruit-btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 18px; font-size: 1.6rem; font-weight: 900; color: #333; background: transparent; border: 2px solid #333; border-radius: 999px; transition: .3s; }
.home-recruit-btn:hover { color: #fff; background: #333; }

@media (max-width: 768px) {
  .home-recruit { padding: 40px 0; }
  .home-recruit__grid { flex-direction: column-reverse; gap: 24px; }
  .home-recruit__content { flex: 1 1 auto; }
  .home-recruit__title { font-size: 28px; }
  .home-recruit__visual { width: 100%; }
  .home-recruit__visual img { height: 220px; }
}


/* --------------------------------------------------------------------------

News

-------------------------------------------------------------------------- */
.news-pag {}
.news-page__list { display: flex; flex-wrap: wrap; column-gap: 30px; row-gap: 30px; }
.news-page__item { width: calc((100% - 30px*3)/4); }
.news-page__card { position: relative; height: 100%; }
.news-page__link { display: block; height: 100%; transition: .3s; }
.news-page__thumb { width: 100%; height: auto; display: block; }
.news-page__title { font-size: 1.4rem; font-weight: 700; line-height: 1.3; margin-top: 8px; transition: .3s; }
.news-page__date { font-size: 1.2rem; color: #808080; margin-top: 8px; display: block; }
.news-page__link:hover { opacity: .7; }
.news-page__link:hover .news-page__title { opacity: .5; }

@media (max-width: 900px) {
  .news-page__list { column-gap: 16px; row-gap: 24px; }
  .news-page__item { width: calc((100% - 16px)/2); }
  .news-page__title { font-size: 1.3rem; }
}

/* --------------------------------------------------------------------------

Company

-------------------------------------------------------------------------- */

.company-page { position: relative; isolation: isolate; color: #333; background: none; min-height: 100vh; min-height: 100dvh; }
.company-page::after { content: ""; position: fixed; inset: 0; z-index: -1; background: url("../../assets/img/content/img-company-bg.webp") center center / cover no-repeat; }
.company-page::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: rgba(255, 255, 255, 0.2); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) { .company-page::before { background: rgba(255, 255, 255, 0.2); } }
.page-head { position: relative; z-index: 1; }
.company-page__mvv { position: relative; z-index: 1; max-width: 1400px; padding: 0 40px; margin: 80px auto; }
.company-page__mvv-item { text-align: center; padding: 120px; margin-bottom: 40px; background: color-mix(in srgb, #fff 80%, transparent); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); border: 1px solid #fff; }
.company-page__mvv-heading { font-size: 2.4rem; font-weight: 500; line-height: 1; font-family: "Jost", sans-serif; color: #cd1cfa; text-transform: uppercase; }
.company-page__mvv-heading-2 { color: #764fdb; }
.company-page__mvv-heading-3 { color: #1e82be; }
.company-page__mvv-tagline { font-size: 8rem; font-weight: 900; line-height: 1.4; margin: 40px 0; }
.company-page__mvv-tagline-2 { font-size: 5rem; }
.company-page__mvv-tagline-3 { font-size: 7rem; }
.company-page__mvv-lead { font-size: 1.8rem; font-weight: 700; line-height: 2; }
@media (prefers-reduced-motion: reduce) { .company-page { background-attachment: scroll; } }

@media (max-width: 1200px) {
  .company-page__mvv { margin: 60px auto; padding: 0 40px; }
  .company-page__mvv-item { padding: 80px 40px; margin-bottom: 24px; }
  .company-page__mvv-heading { font-size: 2.0rem; }
  .company-page__mvv-tagline { font-size: 6vw; margin: 24px 0; }
  .company-page__mvv-tagline-2 { font-size: 4vw; }
  .company-page__mvv-tagline-3 { font-size: 5vw; }
  .company-page__mvv-lead { font-size: 1.6rem; line-height: 1.75; }
}
@media (max-width: 900px) {
  .company-page { min-height: 100vh; min-height: 100dvh; }
  .company-page__mvv { margin: 40px auto; padding: 0 16px; }
  .company-page__mvv-item { padding: 56px 24px; margin-bottom: 16px; }
  .company-page__mvv-heading { font-size: 2.0rem; }
  .company-page__mvv-tagline { font-size: 3.2rem; margin: 24px 0; }
  .company-page__mvv-tagline-2 { font-size: 2.4rem; }
  .company-page__mvv-tagline-3 { font-size: 2.2rem; }
  .company-page__mvv-lead { font-size: 1.5rem; line-height: 1.75; }
}
@media (max-width: 768px) {
  .company-page__mvv-lead { text-align: left; }
}

.company-page-members { position: relative; z-index: 1; background-color: #fff; }
.company-page-members__heading { font-size: 2rem; font-weight: 700; margin-bottom: 40px; }
.company-page-members__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.company-page-members__item { background: transparent; }
.company-page-members__trigger { display: block; text-decoration: none; color: inherit; }
.company-page-members__thumb { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background: #f7f7f7; display: block; transition: .3s; }
.company-page-members__link:hover .company-page-members__thumb { background: #f7f6fb; }
.company-page-members__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.company-page-members__name { font-size: 1.6rem; font-weight: 700; margin: 12px 0 8px; }
.company-page-members__name-en { font-size: 1.2rem; color: #666; margin-top: 2px; }
.company-page-members__title { font-size: 1.3rem; color: #333; margin-top: 4px; }
.company-page-members__modal { }
.company-page-members__modal-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; max-width: 920px; }
.company-page-members__modal-media { }
.company-page-members__modal-media img { width: 100%; height: auto; display: block; }
.company-page-members__modal-body { }
.company-page-members__lead { font-size: 1.6rem; line-height: 1.8; margin-top: 10px; }
.modal[id^="modal-member-"] .modal__dialog { background: #f7f7f7; color: #333; }
.modal[id^="modal-member-"] .modal__name { color: #333; }
.modal[id^="modal-member-"] .modal__title { color: #333; }
.modal[id^="modal-member-"] .modal__lead { color: #333; }

@media (max-width: 900px) {
  .company-page-members__heading { margin-bottom: 20px; }
  .company-page-members__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .company-page-members__modal-grid { grid-template-columns: 1fr; }
}

.company-page-about { position: relative; z-index: 1; background-color: #f6f5fb; }
.company-page-about__table { }
.company-page-about__row { display: flex; gap: 4px; }
.company-page-about__row + .company-page-about__row { margin-top: 4px; }
.company-page-about__cell { font-size: 1.6rem; line-height: 1.6; padding: 10px 0; }
.company-page-about__row .company-page-about__cell:nth-child(1) { width: 150px; }
.company-page-about__row .company-page-about__cell:nth-child(2) { flex: 2; }
.company-page-about__br--pc-none { display: none; }

@media (max-width: 900px) {
  .company-page-about__table { width: 100%; }
  .company-page-about__row .company-page-about__cell:nth-child(1) { width: 120px; }
  .company-page-about__cell { font-size: 1.4rem; }
  .company-page-about__br--pc-none { display: inline; }
}

/* --------------------------------------------------------------------------

Member

-------------------------------------------------------------------------- */

.members-page { }
.members-page__group { margin-bottom: 40px; }
.members-page__heading { font-size: 2.4rem; font-weight: 900; line-height: 1.3; scroll-margin-top: 100px; margin-bottom: 30px; }
.members-page__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; }
.members-page__item { }
.members-page__link { display: block; text-decoration: none; color: inherit; transition: .3s; }
.members-page__thumb { background-color: #f7f7f7; margin-bottom: 20px; transition: .5s; }
.members-page__thumb img { width: 100%; height: auto; display: block; }
.members-page__link:hover .members-page__thumb { background-color: #f7f6fb; }
.members-page__name { font-size: 2.0rem; font-weight: 700; line-height: 1; margin-bottom: 10px; }
.members-page__name-en { font-size: 1.5rem; margin-bottom: 10px; }
.members-page__title { font-size: 1.4rem; color: #808080; }

@media (max-width: 900px) { 
  .members-page__heading { margin-bottom: 20px; } 
  .members-page__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
}

/* --------------------------------------------------------------------------

Member

-------------------------------------------------------------------------- */
.member-profile { max-width: 1200px; padding: 0 16px; margin: 40px auto 0; }
.member-profile__title { font-size: 4.0rem; font-weight: 700; margin-bottom: 16px; }
.member-profile__lead { font-size: 1.5rem; font-weight: 700; line-height: 1.6; margin-bottom: 24px; }
.member-profile__cols { display: flex; gap: 40px; }
.member-profile__col--left { flex: 3 3 0; padding-top: 60px; }
.member-profile__col--right { flex: 2 2 0; }
.member-profile__bio { font-size: 1.6rem; line-height: 2; display: flex; flex-direction: column; gap: 12px; }
.member-profile__thumbs { display: flex; gap: 40px; }
.member-profile__thumb { flex: 1 1 50%; overflow: hidden; background: #f5f5f7; aspect-ratio: 1 / 1; }
.member-profile__thumb > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.member-profile__portrait { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background: #fff; margin-left: auto; z-index: 2; position: relative; }
.member-profile__portrait > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }

@media (max-width: 1200px) {
  .member-profile__cols { gap: 24px; }
  .member-profile__col--left { flex: 1 1 0; padding-top: 16px; }
  .member-profile__col--right { flex: 1 1 0; }
}

@media (max-width: 900px) {
  .member-profile { margin: 40px auto; }
  .member-profile__title { font-size: 2.6rem; }
  .member-profile__lead { margin-bottom: 16px; }
  .member-profile__cols { flex-direction: column; }
  .member-profile__col--left { order: 2; padding: 0; }
  .member-profile__col--right { order: 1; }
  .member-profile__thumbs { gap: 12px; }
  .member-profile__portrait { position: static; margin: 0 auto; }
  .member-profile__portrait > img { width: 100%; height: 100%; object-fit: cover; }
}

/* ============== Member: FAQ ============== */
.member-faq { background: linear-gradient(to bottom, rgba(246, 245, 251, 0.5) 0%, rgba(246, 245, 251, 1) 100%); }
.member-faq__wrap { display: flex; flex-direction: column; gap: 16px; }
.member-faq__item { border-top: 1px solid #e5e7eb; padding: 24px 0 8px; }
.member-faq__item:first-child { border-top: none; padding-top: 0; }
.member-faq__item:last-child { padding-bottom: 0; }
.member-faq__q { font-size: 2.4rem; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.member-faq__label { display: inline-block; font-family: "Jost", sans-serif; font-size: 2.6rem; font-weight: 500; line-height: 1.3; color: #764fdb; margin-right: 8px; }
.member-faq__a { font-size: 1.7rem; line-height: 1.75; color: #333; }

@media (max-width: 900px) {
  .member-faq__q { font-size: 1.8rem; }
  .member-faq__label { font-size: 2.0rem; }
  .member-faq__a { font-size: 1.6rem; line-height: 1.75; }
}

/* ============== Member: Team ============== */
.member-team { padding: 80px 16px; }
.member-team__title { font-family: "Jost", sans-serif; font-size: 2.8rem; font-weight: 500; margin-bottom: 24px; }
.member-team__list { display: flex; flex-wrap: wrap; gap: 24px; align-items: stretch; justify-content: flex-start; }
.member-team__item { list-style: none; flex: 0 0 calc((100% - 24px * 3) / 4); }
.member-team__card { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; border: 1px solid #eee; background: #fff; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.member-team__card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.08); border-color: #e5e7eb; }
.member-team__media { width: 100%; overflow: hidden; background: #f7f7f7; aspect-ratio: 1 / 1; }
.member-team__media img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.member-team__body { display: flex; flex-direction: column; gap: 4px; padding: 16px; }
.member-team__name { font-size: 1.6rem; font-weight: 700; line-height: 1.3; }
.member-team__meta { font-size: 1.3rem; line-height: 1.3; color: #666; }

@media (max-width: 1280px) {
  .member-team__item { flex: 0 0 calc((100% - 24px * 2) / 3); }
}

@media (max-width: 900px) {
  .member-team { padding: 40px 16px; }
  .member-team__title { font-size: 2.0rem; margin-bottom: 16px; }
  .member-team__list { gap: 16px; }
  .member-team__item { flex: 0 0 calc((100% - 16px) / 2); }
  .member-team__body { padding: 8px; }
  .member-team__name { font-size: 1.4rem; }
  .member-team__meta { font-size: 1.2rem; }
}

/* ============== Member: Team Info ============== */
.member-info { background: #f6f5fc; padding: 80px 0; }
.member-info__list { display: flex; flex-wrap: wrap; gap: 24px; align-items: stretch; justify-content: flex-start; }
.member-info__item { list-style: none; flex: 0 0 calc((100% - 24px * 3) / 4); }
.member-info__card { display: flex; flex-direction: column; gap: 8px; height: 100%; text-decoration: none; color: inherit; }
.member-info__card img { transition: .3s ease; }
.member-info__card:hover img { transform: scale(1.05); }
.member-info__media { width: 100%; overflow: hidden; background: #f7f7f7; aspect-ratio: 16 / 9; }
.member-info__media img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.member-info__body { display: flex; flex-direction: column; gap: 4px; }
.member-info__title { font-size: 1.4rem; line-height: 1.3; }

@media (max-width: 1280px) {
  .member-info__item { flex: 0 0 calc((100% - 24px * 2) / 3); }
}

@media (max-width: 900px) {
  .member-info { padding: 40px 0; }
  .member-info__item { flex: 0 0 calc((100% - 24px * 1) / 2); }
}

/* --------------------------------------------------------------------------

Contact

-------------------------------------------------------------------------- */

.contact-page-link__list { display: flex; flex-direction: column; gap: 16px; padding: 0; margin: 30px 0 60px; }
.contact-page-link__item { }
.contact-page-link__btn { display: inline-block; font-size: 1.6rem; color: #000; position: relative; padding-right: 16px; transition: .3s; }
.contact-page-link__btn::after { content: ''; position: absolute; top: 50%; right: 0; width: 8px; height: 8px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: translateY(-50%) rotate(45deg); }
.contact-page-link__btn:hover { opacity: 0.5; }

.contact-thanks__container { margin: 160px 0; text-align: center; }
.contact-thanks__lead { font-size: 2.0rem; line-height: 1.6; margin-bottom: 60px; }
@media(max-width: 900px) {
  .contact-thanks__container { margin: 80px 0; }
  .contact-thanks__lead { font-size: 1.6rem; }
}

/* --------------------------------------------------------------------------

Content

-------------------------------------------------------------------------- */

.content h1 { font-size: 3.0rem; font-weight: 700; line-height: 1.4; margin-top: 40px; margin-bottom: 20px; }
.content h2 { font-size: 2.8rem; font-weight: 700; line-height: 1.4; margin-top: 40px; margin-bottom: 20px; }
.content h3 { font-size: 2.6rem; font-weight: 700; line-height: 1.4; border-left: 8px solid #764fdb; padding-left: 16px; margin-top: 40px; margin-bottom: 30px; }
.content h4 { font-size: 2.4rem; font-weight: 700; line-height: 1.4; margin-top: 40px; margin-bottom: 30px; }
.content h5 { font-size: 1.8rem; font-weight: 700; line-height: 1.4; margin-top: 30px; margin-bottom: 20px; }
.content p { font-size: 1.6rem; line-height: 1.6; margin-bottom: 20px; }
.content em { font-style: normal; background-color: #fcf9c4; }
.content img { display: block; max-width: 90%; height: auto; margin: 30px auto; }
.content .iframe-wrap { display: block; position: relative; overflow: hidden; width: 90%; height: auto; padding-top: 56.25%; margin: 30px auto; }
.content iframe { position: absolute; width: 100%; height: 100%; top: 0; left: 0; }
.content .wp-video { display: block; position: relative; overflow: hidden; width: 90% !important; height: auto !important; padding-top: 56.25%; margin: 30px auto; }
.content .wp-video-shortcode { position: absolute; width: 100% !important; height: 100% !important; top: 0; left: 0; }
.content ul { margin-bottom: 15px; }
.content ul li { position: relative; font-size: 1.6rem; line-height: 1.6; padding-left: 14px; margin-bottom: 5px; }
.content ul li::before { position: absolute; display: inline-block; content: "-"; top: 0; left: 0; }
.content ol { margin-left: 25px; margin-bottom: 15px; }
.content ol li { font-size: 1.6rem; line-height: 1.6; margin-bottom: 5px; }
.content a { color: #764fdb; opacity: 1; transition: .3s; }
.content a:hover { opacity: 0.8; }
.content hr { margin: 40px 0; }

@media (max-width: 900px) {
  .content h1 { font-size: 2.6rem; }
  .content h2 { font-size: 2.4rem; }
  .content h3 { font-size: 2.0rem; }
  .content h4 { font-size: 1.8rem; }
  .content h5 { font-size: 1.8rem; }
  .content h6 { font-size: 1.8rem; }
  .content .iframe-wrap { width: 100%; }
  .content .wp-video { width: 100% !important; }
}

/* --------------------------------------------------------------------------

Case

-------------------------------------------------------------------------- */

.case-section { padding: 80px 32px;}
.case-section .grid { position: relative; display: block; margin-top: 40px; }
.case-section .item { display: block; position: absolute; width: 24.8%; padding: 8px; z-index: 1; }
.case-section .item a { transition: .4s; }
.case-section .item a:hover { opacity: 0.8; }
.case-section .item-content { position: relative; overflow: hidden; width: 100%; }
.case-section .grid img { width: 100%; height: auto; border-radius: 8px; }
.case-section .item-title { font-size: 1.4rem; line-height: 1.3; white-space: nowrap; margin-top: 8px; }
.item-thumb { position: relative; }
.item-thumb__loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: #eee; color: #666; font-size: 1.4rem; border-radius: 8px; z-index: 1; }
.item-thumb__img { display: block; width: 100%; height: auto; border-radius: 8px; visibility: hidden; }
.item-thumb__img.is-loaded { visibility: visible; }
@media (max-width: 1400px) { .case-section .item { width: 33%; } }
@media (max-width: 900px) { .case-section { padding: 40px 16px;} .case-section .item { width: 49.8%; } }
@media (max-width: 768px) { .case-section .grid { margin-top: 30px; } .case-section .item { width: 100%; padding: 0 0 20px; } .case-section .item-content { overflow: visible; } .case-section .item-title { white-space: normal; } }
.case-search-container { display: flex; align-items: center; width: 600px; height: 60px; border-radius: 100vh; border: 2px solid #ccc; margin: 0 auto 40px; }
.case-search-container img { width: 28px; height: 28px; margin-left: 15px; }
input.search-field { font-size: 2.6rem; font-weight: 700; width: 85%; margin-left: 10px; }
input.search-field::placeholder { color: #ccc; }
.case-filter-container { display: flex; flex-wrap: nowrap; background: #f7f7f7; border: 1px solid #dcd9d1; border-radius: 5px; overflow: hidden; overflow-x: scroll; padding: 15px 15px 0 15px; margin-bottom: 8px; }
.case-filter-container.-series { background: #f6f3f7; border: 1px solid #dcd9d1; }
.filter-title { flex-basis: 80px; flex-shrink: 0; font-size: 1.4rem; font-weight: 700; white-space: nowrap; opacity: 0.7; }
.filter-btn { flex: 1; display: flex; flex-wrap: nowrap; }
.filter-btn li { position: relative; cursor: pointer; font-size: 1.4rem; white-space: nowrap; padding: 0 14px 0 20px; margin-bottom: 15px; }
.filter-btn.-series li { padding-left: 24px; }
.filter-btn li::before { content: ''; position: absolute; left: 0; width: 15px; height: 15px; border: 2px solid #dcd9d1; background-color: #fff; }
.filter-btn li.active::after { content: ''; position: absolute; left: 3px; top: 2px; border-left: 3px solid #cc1cf9; border-bottom: 3px solid #cc1cf9; width: 10px; height: 8px; transform: rotate(-45deg); }
.filter-btn.-series li::before { content: ''; position: absolute; top: -1px; left: 0; width: 18px; height: 18px; border: 2px solid #dcd9d1; border-radius: 50%; background-color: #fff; }
.filter-btn.-series li.active::after, .filter-btn.-series li.all-active::after { content: ''; position: absolute; top: 8px; left: 9px; transform: translate(-50%, -50%); width: 9px; height: 9px; border-radius: 50%; background: #cc1cf9; }
.case-filter-container.-mc { background: #f6f3f7; border: 1px solid #dcd9d1; }
.filter-btn.-mc { flex: 1; display: flex; flex-wrap: nowrap; }
.filter-btn.-mc li { position: relative; cursor: pointer; font-size: 1.4rem; white-space: nowrap; padding: 0 14px 0 24px; margin-bottom: 15px; }
.filter-btn.-mc li::before { content: ''; position: absolute; top: -1px; left: 0; width: 18px; height: 18px; border: 2px solid #dcd9d1; border-radius: 50%; background-color: #fff;}
.filter-btn.-mc li.active::after,
.filter-btn.-mc li.all-active::after { content: ''; position: absolute; top: 8px; left: 9px; transform: translate(-50%, -50%); width: 9px; height: 9px; border-radius: 50%; background: #cc1cf9; }
@media (max-width: 768px) { .case-search-container { width: 100%; height: 40px; margin-bottom: 20px; } .case-search-container img { width: 24px; height: 24px; } input.search-field { font-size: 2.0rem; } }
.case-modal-container { background: #000; }
.case-modal-youtube { position: relative; width: 100%; height: auto; padding-top: 56.25%; }
.case-modal-youtube iframe { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 2; }
.case-modal-youtube-text { position: absolute; font-size: 1.6rem; line-height: 1.3; color: #fff; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; }
.case-modal-visual { position: relative; }
.case-modal-icon { position: absolute; width: 80px; height: auto; left: 50%; top: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 9999; }
.case-modal-img { width: 100%; height: auto; }
.case-modal-img img { width: 100%; height: auto; }
.case-modal-content { color: #fff; padding: 30px; }
.case-modal-title { font-size: 2.4rem; font-weight: 700; line-height: 1.3; margin-bottom: 20px; }
.case-modal-text { font-size: 1.4rem; line-height: 1.3; margin-bottom: 10px; }
@media (max-width: 768px) { .case-modal-icon { width: 40px; } .case-modal-content { padding: 15px; } .case-modal-title { font-size: 1.8rem; margin-bottom: 15px; } }
.case-sharebar { display:flex; gap:8px; align-items:center; justify-content:flex-end; padding:6px 0 10px; }
.btn-copy--mini { display:inline-flex; align-items:center; gap:6px; padding:6px 10px; font-size:1.2rem; line-height:1; border:1px solid #dcd9d1; border-radius:4px; background:#fff; color:#333; cursor:pointer; }
.btn-copy--mini:hover { background:#f8f8f8; }
.btn-copy--mini:active { transform: translateY(1px); }
.btn-copy--mini .mi { font-size:1.3em; line-height:1; }
.copy-status { font-size:1.2rem; color:#3a8b3a; }
@media (max-width: 768px) {
  .case-sharebar { justify-content:flex-start; padding:4px 0 8px; }
  .btn-copy--mini { font-size:1.1rem; padding:6px 8px; }
  .copy-status { font-size:1.1rem; }
}

/* --------------------------------------------------------------------------

Media

-------------------------------------------------------------------------- */

.media-page { }
.media-page__lead { text-align: center; margin: 0 0 24px; }
.media-page__cards { }
.media-card { display: block; max-width: 1000px; margin: 0 auto 60px; border: 2px solid #000; background: #fff; color: inherit; text-decoration: none; }
.media-card__img img { display: block; width: 100%; height: auto; }
.media-card__meta { position: relative; min-height: 90px; border-top: 1px solid #999; }
.media-card__title { position: absolute; top: 50%; left: 30px; transform: translateY(-50%); font-size: 2.4rem; font-weight: 700; }
.media-card__cta { position: absolute; top: 50%; right: 20px; transform: translateY(-50%); display: inline-block; font-size: 1.8rem; font-weight: 700; color: #000; background-color: #fff; border: 2px solid #000; border-radius: 8px; padding: 16px 24px; transition: .3s; }
.media-card:hover .media-card__cta { color: #fff; background-color: #000; }
.media-page__links { list-style: none; padding: 0; margin: 0 0 60px; }
.media-page__links-item { text-align: center; padding: 16px 0; }
.media-page__link { position: relative; display: inline-block; font-weight: 700; color: #000; text-decoration: none; padding-right: 16px; transition: opacity .3s; }
.media-page__link::after { content: ''; position: absolute; top: 50%; right: 0; width: 8px; height: 8px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: translateY(-50%) rotate(45deg); }
.media-page__link:hover { opacity: .6; }

@media (max-width: 1200px) {
  .media-card { max-width: 100%; }
}
@media (max-width: 768px) {
  .media-page__lead { text-align: left; }
  .media-card__meta { position: static; text-align: center; min-height: auto; padding: 20px 16px; }
  .media-card__title { position: static; transform: none; font-size: 1.7rem; margin: 0; }
  .media-card__cta { position: static; transform: none; font-size: 1.6rem; padding: 12px 12px; margin: 20px auto 0; }
}

/* --------------------------------------------------------------------------

Interview

-------------------------------------------------------------------------- */

.interview-index { margin: 0 auto; }
.interview-list { display: flex; flex-wrap: wrap; gap: 24px; }
.interview-card { width: calc((100% - 24px*2)/3); }
.interview-card__link { display: block; text-decoration: none; color: inherit; transition: opacity .3s ease; }
.interview-card__link:hover { opacity: .7; }
.interview-card__thumb { border-radius: 8px; overflow: hidden; }
.interview-card__img { width: 100%; height: auto; display: block; }
.interview-card__title { font-size: 1.6rem; font-weight: 700; line-height: 1.3; margin-top: 10px; }
.interview-card__date { display: block; color: #808080; margin-top: 5px; }
@media (max-width: 1200px) { .interview-list { gap: 16px; } .interview-card, .interview-card--video { width: calc((100% - 16px)/2); } }
@media (max-width: 768px) { .interview-card, .interview-card--video { width: 100%; } }

.single-interview { max-width: 1000px; background: #fff; margin: 40px auto; }
.single-interview__hero { width: 100%; }
.single-interview__img { width: 100%; height: auto; display: block; }
.single-interview__container { padding: 40px 40px 80px; }
.single-interview__date { color: #333; }
.single-interview__title { font-size: 3.2rem; font-weight: 700; line-height: 1.3; padding-bottom: 20px; border-bottom: 1px solid #ccc; border-image: linear-gradient(to right, #cd1cfa, #1e82be) 1; margin: 20px 0 40px; }
.single-interview__content p { font-size: 1.8rem; line-height: 1.8; }
.single-interview__footer { text-align: center; margin-top: 60px; }
.single-interview__case-heading { font-size: 1.8rem; font-weight: 700; margin-bottom: 15px; }
.single-interview__case { width: 60%; margin: 0 auto 60px; }
.single-interview__case-link { display: inline-block; transition: opacity .3s ease; }
.single-interview__case-link:hover { opacity: .8; }
.single-interview__case-img { width: 100%; height: auto; display: block; }
.single-interview__cta-heading { font-size: 1.8rem; font-weight: 700; margin-bottom: 15px; }
.single-interview__cta { display: inline-block; font-weight: 700; background: transparent; border: 2px solid #000; border-radius: 8px; padding: 14px 20px; text-decoration: none; color: #000; transition: background-color .3s ease, color .3s ease; }
.single-interview__cta:hover { background: #000; color: #fff; }
.single-interview__back { text-align: center; margin: 60px 0; }
.single-interview__back-link { display: inline-block; text-decoration: none; font-weight: 700; position: relative; padding-right: 16px; color: #000; transition: opacity .3s ease; }
.single-interview__back-link::after { content: ''; position: absolute; top: 50%; right: 0; width: 8px; height: 8px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: translateY(-50%) rotate(45deg); }
.single-interview__back-link:hover { opacity: .6; }
@media (max-width: 1200px) { .single-interview { max-width: 900px; } }
@media (max-width: 900px) { .single-interview { max-width: 100%; margin: 0; } .single-interview__container { padding: 30px 15px 60px; } .single-interview__title { font-size: 2.4rem; margin: 15px 0 20px; } .single-interview__content p { font-size: 1.6rem; } .single-interview__footer { margin-top: 40px; } .single-interview__case-heading { font-size: 1.6rem; } .single-interview__cta-heading { font-size: 1.6rem; } }
@media (max-width: 768px) { 
  .single-interview__content p { font-size: 1.6rem; }
  .single-interview__case { width: 90%; margin-bottom: 40px; }
  .single-interview__back { margin: 40px 0; }
}

/* --------------------------------------------------------------------------

Form

-------------------------------------------------------------------------- */

.form { padding: 80px 0; }
.form__container { max-width: 768px; margin: 0 auto; padding: 0 16px; }

@media (max-width: 768px) {
  .form { padding: 40px 0; }
}

.form__desc { font-size: 1.6rem; line-height: 1.6; margin-bottom: 16px; }
.form__note { font-size: 1.3rem; text-align: right; margin-bottom: 16px; }
.form__body { display: grid; row-gap: 24px; }
.form__group { display: grid; row-gap: 12px; }
.form__group[hidden] { display: none; }
.form__label { font-size: 1.6rem; font-weight: 700; }
.form__help { font-size: 1.4rem; line-height: 1.6; color: #666; }
.form__field { width: 100%; height: 56px; padding: 0 14px; border: 1px solid #bbb; border-radius: 8px; background: transparent; font-size: 1.6rem; }
.form__field:focus-visible { outline: none; border-color: #ff289f; box-shadow: 0 0 0 3px color-mix(in oklab, #ff289f 30%, transparent); }
textarea.form__field { height: 180px; padding: 12px 14px; }
.form__select { position: relative; height: 56px; }
.form__select select.form__field { appearance: none; -webkit-appearance: none; }
.form__select::before { position: absolute; top: 22px; right: 20px; width: 0; height: 0; content: ""; border-left: 8px solid transparent; border-right: 8px solid transparent; border-top: 12px solid #333; pointer-events: none; }
.form__other { display: none; margin-top: 8px; }
.form__radios { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.form__radio { display: inline-flex; align-items: center; gap: 8px; font-size: 1.5rem; }
.form__radio input[type="radio"] { width: 16px; height: 16px; accent-color: #ff289f; }
.form__choices { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; padding: 4px 0; }
.form__choice { display: inline-flex; align-items: center; gap: 8px; font-size: 1.5rem; line-height: 1.4; }
.form__choice-input { width: 18px; height: 18px; accent-color: #ff289f; }
.form__choice-input:focus-visible { outline: none; box-shadow: 0 0 0 3px color-mix(in oklab, #ff289f 30%, transparent); border-radius: 3px; }
.form__choice-label { display: inline-block; }
.form__group--consent { display: flex; justify-content: center; text-align: center; font-size: 1.4rem; background: #f2f2f2; border-radius: 8px; padding: 14px 12px; }
.form__group--consent .form__choice { justify-content: center; }
.form__consent-link { text-decoration: underline; }
.form__consent-link:hover { text-decoration: none; }
.form__actions { display: flex; justify-content: center; }
.form__button { width: 400px; position: relative; display: inline-block; font-size: 2rem; font-weight: 900; letter-spacing: .5px; color: #333; background: transparent; border: 2px solid #333; border-radius: 100vh; text-align: center; padding: 24px 0; margin-top: 16px; transition: .3s; }
.form__button::after { content: ""; position: absolute; top: 42%; right: 24px; width: 12px; height: 12px; border-top: 3px solid #333; border-right: 3px solid #333; transform: rotate(45deg); transition: .3s; }
.form__button:hover { color: #fff; background: #333; }
.form__button:hover::after { right: 20px; border-color: #fff; }
.form__button:focus-visible { outline: 2px solid #ff289f; outline-offset: 2px; }
.form__button:active { transform: translateY(1px); }

@media (max-width: 768px) {
  .form__body { row-gap: 16px; }
  .form__button { width: 90%; font-size: 1.8rem; }
  .form__button::after { top: 42%; right: 20px; width: 8px; height: 8px; border-top: 2px solid #333; border-right: 2px solid #333; }
}

.form__req { color: #ff289f; margin-left: 6px; font-weight: 700; }

