@charset "UTF-8";
/* global/setting/_color.scss
==========================================
Color tokens
- Layer 1: Base palette  (色そのもの / 基本使わない)
- Layer 2: Semantic      (役割の色 / 基本これを使う)
- Layer 3: Component     (部品専用 / 必要なら)
========================================== */
:root {
  /* ======================================
    Layer 1: Base palette (raw colors)
  ====================================== */
  --c-white: #ffffff;
  --c-black: #040000;
  --c-gray-50: #f9fafb;
  --c-gray-100: #f3f4f6;
  --c-gray-200: #e5e7eb;
  --c-gray-300: #c9caca;
  --c-gray-400: #9ca3af;
  --c-gray-500: #6b7280;
  --c-gray-700: #374151;
  --c-gray-900: #111827;
  --c-blue-500: #002bb0;
  --c-blue-700: #001f80;
  --c-yellow-400: #ffdb38;
  --c-red-500: #ef4444;
  --c-green-500: #22c55e;
  /* ======================================
    Layer 2: Semantic tokens (use these)
  ====================================== */
  /* text */
  --clr-text-main: var(--c-gray-300);
  --clr-text-sub: var(--c-gray-700);
  --clr-text-muted: var(--c-gray-500);
  --clr-text-invert: var(--c-white);
  /* links */
  --clr-link: var(--c-gray-900);
  --clr-link-hover: var(--c-blue-500);
  --clr-link-visited: var(--c-gray-700);
  /* background */
  --bg-page: var(--c-black);
  --bg-surface: var(--c-gray-50); /* カード背景など */
  --bg-sub: #f8f4ea; /* 既存の雰囲気を残す場合 */
  --bg-dark: #030030;
  /* brand */
  --clr-primary: var(--c-blue-500);
  --clr-primary-hover: var(--c-blue-700);
  --clr-accent: var(--c-yellow-400);
  /* border */
  --brd-default: var(--c-gray-200);
  --brd-strong: var(--c-gray-300);
  --brd-focus: var(--c-blue-500);
  /* status */
  --clr-danger: var(--c-red-500);
  --clr-success: var(--c-green-500);
  /* ======================================
    Layer 3: Component tokens (optional)
    ※「部品単位で色を変える」時だけ使う
  ====================================== */
  /* buttons */
  --btn-bg: var(--clr-primary);
  --btn-bg-hover: var(--clr-primary-hover);
  --btn-clr: var(--clr-text-invert);
  --btn2-bg: var(--clr-accent);
  --btn2-bg-hover: #f3b723;
  --btn2-clr: var(--c-black);
  /* ======================================
    Buttons (3 types)
  ====================================== */
  /* 共通 */
  --btn-radius: 4px;
  --btn-border-width: 1px;
  /* ① メインボタン（仮：ブルー系） */
  --btn-main-bg: var(--clr-primary);
  --btn-main-bg-hover: var(--clr-primary-hover);
  --btn-main-text: var(--clr-text-invert);
  --btn-main-border: var(--clr-primary);
  /* ② 黒ボタン */
  --btn-black-bg: var(--c-black);
  --btn-black-bg-hover: var(--c-gray-900);
  --btn-black-text: var(--c-white);
  --btn-black-border: var(--c-black);
  /* ③ 白ボタン */
  --btn-white-bg: var(--c-white);
  --btn-white-bg-hover: var(--c-gray-100);
  --btn-white-text: var(--c-gray-900);
  --btn-white-border: var(--c-gray-300);
}

:root {
  --ltr-space-default: 0.1em;
  --line-height-default: 2;
  --line-height-hdr: 1.4;
  --line-height-none: 1;
  --fz-primary: 1.125rem;
  --fz-half: 0.5rem;
  --clr-main: #000;
  --clr-txt-sub: #171c60;
  --clr-body: #000;
  --clr-dark-blue: #101560;
  --clr-link: #333;
  --clr-wht: #fff;
  --clr-blk: #000;
  --bg-main: #000;
  --bg-yellow: #ffdb38;
  --bg-green: #96f165;
  --bg-sky: #73e4f1;
  --bg-purple: #b899f1;
  --bg-pink: #f5aaf2;
  --bg-red: #f19f99;
  --bg-blue: #002bb0;
  --bg-dark-blue: #030030;
  --bg-wht: #fff;
  --bg-sub: #f8f4ea;
  --bg-off_wht: #f9f9f9;
  --bg-blk: #000;
  --btn-bg-main: var(--clr-main);
  --btn-bg-main-hvr: var(--bg-blue);
  --btn-clr-main: #fff;
  --btn-clr--sec: #fff;
  --btn-bg-main2: var(--bg-yellow);
  --btn-bg-main2-hvr: #f3b723;
  --btn-clr-main2: #000;
  --btn-clr-wht: #333;
  --btn-bg-wht: #fff;
  --btn-clr-wht-hvr: #fff;
  --btn-bg-wht-hvr: var(--clr-dark-blue);
  --brd-main: #1d7fb7;
  --transit-default: all 0.4s ease-out;
}

:root {
  /* spacing scale */
  --sp-xxs: 0.25rem; /* 4px */
  --sp-xs: 0.5rem; /* 8px */
  --sp-sm: 0.75rem; /* 12px */
  --sp-md: 1rem; /* 16px */
  --sp-lg: 1.5rem; /* 24px */
  --sp-xl: 2rem; /* 32px */
  --sp-xxl: 3rem; /* 48px */
  --sp-xxxl: 4rem; /* 64px */
}

:root {
  --fz-body: 1rem;
  --lh-body: 1.8;
  --fz-h1: clamp(1.75rem, 3.6vw, 2.5rem);
  --fz-h2: clamp(1.5rem, 2.8vw, 2rem);
  --fz-h3: clamp(1.25rem, 2.2vw, 1.5rem);
  --fz-h4: clamp(1.125rem, 1.6vw, 1.25rem);
  --lh-h1: 1.2;
  --lh-h2: 1.25;
  --lh-h3: 1.3;
  --lh-h4: 1.35;
  --mt-h: 1.2em;
  --mb-h: 0.6em;
}

.fade_wrap {
  position: relative;
  margin: 0 auto;
}

.fademovie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.fade_text_01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.fade_text_02 {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
}

.fade_text_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1;
}

.fade_click_inner {
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 103%;
  height: 103%;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
}

.fade_image {
  position: absolute;
  top: 3.5%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 92%;
  height: 92%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.fade_movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fade_click {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
}

.swiper-slide-active .fade_text_01 {
  animation: slideFromText 1s ease 0s 1 normal;
}

.swiper-slide-active .fade_text_02 {
  animation: slideFromText 1s ease 0s 1 normal;
}

.swiper-slide-active .fade_text_inner {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_image {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_movie {
  animation: slideFromRightMovie 555.5s ease 0s 1 normal;
}

.swiper-slide-active .fade_click {
  animation: slideFromClick 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_click_inner {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes slideFromText {
  0%, 25% {
    transform: translateY(5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideFromClick {
  0%, 25% {
    transform: translateY(0px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideFromWhite {
  0%, 25% {
    transform: translateX(0px);
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
    opacity: 0;
  }
}
.main_pc_01 {
  animation-delay: 0.5s;
}

.main_pc_02 {
  animation-delay: 1s;
}

.main_pc_03 {
  animation-delay: 1.5s;
}

.main_pc_04 {
  animation-delay: 2s;
}

.main_pc_05 {
  animation-delay: 2.5s;
}

.main_pc_06 {
  animation-delay: 3s;
}

.main_pc_07 {
  animation-delay: 3.5s;
}

.main_pc_08 {
  animation-delay: 4.5s;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeStay {
  animation-name: fadeStayAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeStayAnime {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mainFrom01 {
  0%, 25% {
    transform: translateY(5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes mainFrom02 {
  0%, 25% {
    transform: translateY(0px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  border-radius: var(--btn-radius);
  border: var(--btn-border-width) solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn--main {
  background: var(--btn-main-bg);
  color: var(--btn-main-text);
  border-color: var(--btn-main-border);
}
.btn--main:hover {
  background: var(--btn-main-bg-hover);
}

.btn--black {
  background: var(--btn-black-bg);
  color: var(--btn-black-text);
  border-color: var(--btn-black-border);
}
.btn--black:hover {
  background: var(--btn-black-bg-hover);
}

.btn--white {
  background: var(--btn-white-bg);
  color: var(--btn-white-text);
  border-color: var(--btn-white-border);
}
.btn--white:hover {
  background: var(--btn-white-bg-hover);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

button {
  background: none;
  border: none;
  padding: 0;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===============================
  Base
================================ */
html {
  font-size: 100%;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -webkit-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  overflow-x: clip;
  margin: 0;
  padding-top: 64px;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  background: var(--bg-page);
  color: var(--clr-text-main);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 819px) {
  body {
    padding-top: 56px;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(19, 19, 19, 0.85);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  /* ★ 常に表示 */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header__inner {
  height: 64px;
  padding: 0 20px; /* PC左右20px */
  display: flex;
  align-items: center;
  justify-content: flex-start; /* ★space-between禁止（右寄せ安定） */
  gap: 0;
}
@media screen and (max-width: 819px) {
  .header__inner {
    height: 56px;
    padding: 0 10px; /* SP左右10px */
  }
}
.header {
  /* 左：ブランド */
}
.header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}
.header__logo {
  height: 12px;
  width: auto;
  display: block;
}
@media screen and (max-width: 819px) {
  .header__logo {
    height: 10px;
  }
}
.header {
  /* 右：PC用（ナビ＋アイコンまとめ） */
}
.header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.header {
  /* PCナビ */
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.08em;
  font-size: 0.875rem;
  opacity: 0.92;
  white-space: nowrap;
}
.header__link {
  color: #c9caca;
  text-decoration: none;
  transition: color 0.2s ease;
}
.header__link:hover {
  color: rgb(255, 255, 255);
}
.header {
  /* 親要素：RECRUITとメニューを囲うグループ */
}
.header__link-group {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* 基準をセンターに */
}
.header__link-group:hover .header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0); /* 横方向は中央を維持 */
}
.header {
  /* サブメニュー本体 */
}
.header__submenu {
  position: absolute;
  top: 100%; /* RECRUITの下 */
  left: 50%; /* 一旦親の50%の位置へ */
  transform: translateX(-50%) translateY(5px); /* 自身の幅の半分戻して中央揃え */
  width: 160px;
  padding: 12px 0;
  background: rgba(19, 19, 19, 0.95);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}
.header {
  /* サブメニュー内のリンク */
}
.header__submenu-link {
  display: block;
  padding: 8px 16px;
  color: #c9caca;
  text-decoration: none;
  font-size: 0.75rem;
  text-align: center; /* ★テキストをセンター寄せに変更 */
  transition: background 0.2s ease, color 0.2s ease;
}
.header__submenu-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.header__sep {
  color: rgba(255, 255, 255, 0.35);
}
.header {
  /* PCアイコン */
}
.header__icons {
  display: flex;
  align-items: center;
  gap: 18px; /* c.jpgくらい離す */
}
.header__icon {
  display: inline-flex;
  align-items: center;
}
.header__icon img {
  width: auto;
  height: 20px;
  display: block;
}
.header {
  /* SP：ハンバーガー */
}
.header__burger {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
}
@media screen and (min-width: 821px) {
  .header__burger {
    display: none !important;
  }
}
.header__burger-line {
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  display: block;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.header {
  /* SPメニュー（フルスクリーンオーバーレイ） */
}
.header__overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.72); /* 背景が若干見える */
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.header__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .header__overlay {
    display: none;
  }
}
@media screen and (min-width: 821px) {
  .header__overlay {
    display: none;
  }
}
.header__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 22px; /* 端に寄りすぎない */
  text-align: center;
}
.header__sp-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  letter-spacing: 0.12em;
  font-size: 18px;
}
.header {
  /* スマホ用サブメニュー本体 */
}
.header__sp-submenu {
  max-height: 0; /* ★高さを完全に0にする */
  overflow: hidden; /* ★はみ出た分を隠す */
  opacity: 0; /* ★透明にする */
  transition: all 0.4s ease; /* 少しゆったり動かすと綺麗です */
  background: rgba(255, 255, 255, 0.03);
}
.header {
  /* 開いた時（is-openクラスがついた時）の状態 */
}
.header__sp-link-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* 文字と矢印の間隔 */
  cursor: pointer;
  padding: 10px 0; /* タップしやすく */
  /* 開いている時の矢印の向き */
}
.header__sp-link-group.is-open .header__sp-arrow {
  transform: rotate(-135deg); /* 上向き */
  margin-top: 4px;
}
.header__sp-link-group.is-open + .header__sp-submenu {
  max-height: 200px;
  opacity: 1;
  padding: 10px 0;
}
.header {
  /* 矢印のデザイン設定 */
}
.header__sp-arrow {
  display: block; /* ★確実に出すために追加 */
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg); /* 下向き */
  transition: transform 0.3s ease;
  pointer-events: none; /* 矢印自体がクリックを邪魔しないように */
}
.header {
  /* リンク自体の調整 */
}
.header__sp-submenu-link {
  display: block;
  padding: 12px 0; /* タップしやすい高さに */
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  text-align: center;
  text-decoration: none;
}
.header__sp-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 10px 0;
}
.header__sp-link:hover {
  color: rgb(255, 255, 255);
}
.header__sp-icons {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 22px;
}
.header__sp-icon {
  display: inline-flex;
  align-items: center;
}
.header__sp-icon img {
  height: 22px;
  width: auto;
  display: block;
}
.header {
  /* SPメニュー閉じるボタン（任意） */
}
.header__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.header__close::before, .header__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  transform-origin: center;
}
.header__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.is-disabled {
  pointer-events: none; /* クリック不可 */
  cursor: default;
  color: rgba(255, 255, 255, 0.35); /* 有効リンクより暗く */
  text-decoration: none;
}

/* hoverも無効化 */
.is-disabled:hover {
  color: rgba(255, 255, 255, 0.35);
}

.footer {
  margin: 25px 0 0;
  padding: 25px 0 0;
  background-color: #131112;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .footer {
    margin: 100px 0 0;
    padding: 100px 0 50px;
  }
}
@media screen and (max-width: 819px) {
  .footer {
    margin: 0;
    padding: 0 10px;
    font-size: 1.2rem;
  }
}
.footer .container {
  width: 100%;
  max-width: 1640px;
  margin: auto;
  padding: 0 30px;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .footer .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 819px) {
  .footer .container {
    padding: 0;
  }
}
.footer__nav {
  position: relative;
  margin: 100px 0 0;
  padding: 0 10px;
}
@media screen and (max-width: 819px) {
  .footer__nav {
    margin: 0;
  }
}
.footer__icon {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .footer__icon {
    left: -20px;
    top: -70px;
  }
}
@media screen and (max-width: 819px) {
  .footer__icon {
    justify-content: center;
    left: 0;
    right: 0;
    top: -10px;
    margin: auto;
  }
}
.footer__icon img {
  height: 24px;
  margin-left: 30px;
}
@media screen and (max-width: 819px) {
  .footer__icon img {
    margin: 10px;
  }
}
.footer__btn {
  max-width: 1220px;
  margin: auto;
  padding: 40px 0 0;
}
@media screen and (max-width: 819px) {
  .footer__btn {
    margin: 0 0 10px;
    padding: 20px 0;
  }
}
.footer__btn ul {
  display: flex;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .footer__btn ul {
    padding: 0 5px;
  }
}
@media screen and (max-width: 819px) {
  .footer__btn ul {
    margin: 50px 0 0;
    padding: 0;
    flex-wrap: wrap;
  }
}
.footer__btn li {
  width: 33.3333333333%;
}
@media screen and (max-width: 819px) {
  .footer__btn li {
    width: 100%;
    margin-bottom: 10px;
  }
}
.footer__btn li img {
  padding: 0 0 0 20px;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .footer__btn li img {
    padding: 0 5px;
  }
}
@media screen and (max-width: 819px) {
  .footer__btn li img {
    padding: 0;
  }
}
.footer__list ul {
  display: flex;
}
.footer__list li {
  padding: 0 15px;
  font-weight: 100;
}
.footer__list li {
  padding: 0 20px;
  line-height: 20px;
}
.footer__list li + li {
  max-height: 20px;
  border-left: 1px solid #c9caca;
}
.footer__list a {
  overflow: hidden;
  height: 30px;
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.5s;
}
.footer__list .click:hover {
  border-bottom: 3px solid #c9caca;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .footer__list {
    display: none;
  }
}
@media screen and (max-width: 819px) {
  .footer__list {
    display: none;
  }
}
.footer .copyright {
  padding: 15px 30px 50px 30px;
  font-size: 0.75rem;
  font-weight: 300;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .footer .copyright {
    padding: 0 0 0 5px;
  }
}
@media screen and (max-width: 819px) {
  .footer .copyright {
    padding: 35px 10px 70px;
    line-height: 1.4;
    text-align: center;
  }
}
.footer .copyright a {
  color: #c9caca;
  text-decoration: none;
}

#tg,
#tg_sub,
#tg_sp {
  display: none;
}

.recruit_menu {
  position: relative;
  opacity: 0;
  top: 0;
  right: 0;
  left: -40px;
  width: 140px;
  height: 60px;
  margin: auto;
  margin-top: 5px;
  padding: 8px 0 0;
  list-style: none;
  background: #fff;
  box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  text-align: center;
  z-index: 10;
}
.recruit_menu a {
  display: block;
  margin-bottom: -8px;
  padding: 0;
  color: #040000;
  font-size: 0.8rem;
  font-weight: 500;
}

.recruit_menu_sp {
  position: relative;
  opacity: 0;
  top: 0;
  right: 0;
  left: 0;
  width: 200px;
  margin: auto;
  margin-top: -5px;
  padding: 0;
  list-style: none;
  background: #fff;
  box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  text-align: center;
  z-index: 10;
}
.recruit_menu_sp a {
  display: block;
  margin-bottom: -15px;
  padding: 0;
  color: #000;
  font-size: 1.3rem;
  font-weight: 500;
}

.dropInput:checked ~ .recruit_menu {
  visibility: visible;
  opacity: 1;
  top: 0;
}

.dropInput:checked ~ .recruit_menu_sp {
  visibility: visible;
  opacity: 1;
  top: 0;
}

.animation {
  transition: all 0.3s;
}

/* layout/_columns.scss
**************************************** */
/* --- N列レイアウト（flex前提） --- */
.flex-col1,
.flex-col2,
.flex-col3,
.flex-col4 {
  flex-wrap: wrap;
}

/* 1列 */
.flex-col1 > * {
  width: 100%;
}

/* 2列 */
.flex-col2 > * {
  width: 50%;
}

/* 3列 */
.flex-col3 > * {
  width: 33.3333333333%;
}

/* 4列 */
.flex-col4 > * {
  width: 25%;
}

/* --- gap版（現状仕様を踏襲） --- */
.flex-col2.gap {
  gap: 6%;
}

.flex-col3.gap {
  gap: 3%;
}

.flex-col4.gap {
  gap: 2%;
}

/* gap時の子幅調整 */
.flex-col2.gap > * {
  width: 47%;
}

.flex-col3.gap > * {
  width: 31.33%;
}

.flex-col4.gap > * {
  width: 23.5%;
}

/* wrap時の下余白（現状仕様を踏襲） */
.flex-col2.gap.flex-w-wrap > * {
  margin-bottom: 7%;
}

.flex-col3.gap.flex-w-wrap > * {
  margin-bottom: 10%;
}

.flex-col4.gap.flex-w-wrap > * {
  margin-bottom: 2%;
}

/* 互換（旧クラス名の wrap 指定を生かす場合）
   既存HTMLが .flex-c-wrap を使ってるなら、これを残す */
.flex-col2.gap.flex-c-wrap > * {
  margin-bottom: 7%;
}

.flex-col3.gap.flex-c-wrap > * {
  margin-bottom: 10%;
}

.flex-col4.gap.flex-c-wrap > * {
  margin-bottom: 2%;
}

/* ======================================
    ヒーロー
  ====================================== */
.hero {
  background: var(--bg-page);
  overflow: visible;
  padding-bottom: 5px;
}
.hero__swiper {
  overflow: visible;
}
.hero .swiper {
  overflow: visible;
}
.hero__media {
  width: 100%;
  aspect-ratio: 12/5;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .hero__media {
    aspect-ratio: 27/40;
  }
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2; /* ← 動画より上 */
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* ← 操作を邪魔しない */
}
.hero__overlay img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain; /* ロゴ・文字系なら contain 推奨 */
}
.hero__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 14px;
  padding: 10px 16px;
  position: relative;
  z-index: 2;
  opacity: 1;
  visibility: visible;
}
.hero .swiper-pagination {
  position: static;
}
.hero .swiper-pagination-bullet {
  display: block !important;
  box-sizing: border-box;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);
  opacity: 1;
  transform: none;
  filter: none;
  mix-blend-mode: normal;
}
.hero .swiper-pagination-bullet-active {
  opacity: 0.9;
}
.hero .swiper-pagination-lock {
  display: flex;
}

/* ======================================
    コンセプト
  ====================================== */
.concept {
  background-color: #131313;
  margin: 10px;
  padding: 40px 0;
}
@media screen and (min-width: 821px) {
  .concept {
    margin: 20px;
    padding: 40px 0 60px;
  }
}
.concept__inner {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.concept__logo {
  margin-bottom: var(--sp-lg);
}
.concept__logo img {
  width: min(180px, 30vw);
  height: auto;
  display: block;
}
.concept__catch {
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #fff;
  font-size: 20px;
}
@media screen and (min-width: 821px) {
  .concept__catch {
    font-size: 28px;
  }
}
.concept__text {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  letter-spacing: 0.02em;
  font-size: 13px;
}
@media screen and (min-width: 821px) {
  .concept__text {
    font-size: 14px;
  }
}

/* ======================================
    ニュース
  ====================================== */
.news {
  padding: 80px 0;
  background: var(--bg-page);
  color: var(--clr-text-main);
  text-align: center;
}
@media screen and (max-width: 819px) {
  .news {
    padding: 40px 0 80px;
  }
}
.news__ttl {
  margin: 0 0 var(--sp-xxl);
  font-size: var(--fz-h2);
  letter-spacing: 0.08em;
  font-weight: 400;
  opacity: 0.85;
}
@media screen and (max-width: 819px) {
  .news__ttl {
    margin: 0 0 var(--sp-xl);
  }
}
.news__slider {
  position: relative;
  overflow: hidden;
  /* =========================================
   ▼ PC・タブレット設定 (769px以上)
   左右のバナーをしっかり見せる設定
   ========================================= */
  /* メインバナー幅：画面の54%程度に抑えることで、左右のスペースを確保 */
  /* 上限も 1080px 程度に抑えます */
  --slide-w: clamp(600px, 54vw, 1080px);
  --gap: 36px;
  --side-scale: 0.86;
  /* PCは画面端までスライダー領域を使うため padding は 0 */
  padding: 0;
  /* =========================================
   ▼ スマホ設定 (768px以下)
   バナーを見切れさせて「チラ見せ」する設定
   ========================================= */
}
@media (max-width: 768px) {
  .news__slider {
    /* スマホ用のバナー幅設定（現状維持） */
    --slide-w: min(520px, 74vw);
    --gap: 14px;
    --side-scale: 0.92;
    /* スマホの時だけ、左右に余白（peek）を作って見切れ感を出す */
    --peek: 22px;
    padding: 0 var(--peek);
  }
}
.news__slider {
  /* =========================================
   ▼ 矢印の位置計算（変更なし）
   バナー幅が変われば自動で追従します
   ========================================= */
  --nav-gap: calc((var(--slide-w) / 2) + (var(--gap) / 2) + ((var(--slide-w) * (1 - var(--side-scale))) / 4));
}
.news .swiper {
  overflow: visible;
}
.news .swiper-slide {
  width: var(--slide-w);
  transform: scale(var(--side-scale));
  opacity: 0.55;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.news .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}
.news .swiper-slide-prev,
.news .swiper-slide-next {
  opacity: 0.8;
}
.news .news-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news .news-card__media img {
  width: 100%;
  height: auto;
  display: block;
}
.news .news-card__caption {
  margin-top: var(--sp-xxxl);
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  opacity: 0.7;
}
@media screen and (max-width: 819px) {
  .news .news-card__caption {
    margin-top: var(--sp-xl);
    font-size: 0.75rem;
  }
}
.news {
  /* ▼ 矢印 */
}
.news__nav {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20; /* ★上げる（リンクやスライドに負けない） */
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.9;
  transform: translate(-50%, -50%);
  /* ▼▼▼ ここを追加してください ▼▼▼ */
  /* テキストエリアの高さの半分ほど、上に強制的にずらす補正 */
  margin-top: -45px; /* PC用の補正値（仮） */
}
@media screen and (max-width: 819px) {
  .news__nav {
    margin-top: -26px; /* スマホ用の補正値（仮） */
  }
}
.news__nav {
  /* ▲▲▲ 追加ここまで ▲▲▲ */
  pointer-events: auto;
}
.news__nav::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.75);
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  margin: auto;
}
.news__nav--prev {
  transform: translate(-50%, -50%) translateX(calc(-1 * var(--nav-gap)));
}
.news__nav--prev::before {
  transform: rotate(-135deg);
}
.news__nav--next {
  transform: translate(-50%, -50%) translateX(var(--nav-gap));
}
.news__nav--next::before {
  transform: rotate(45deg);
}
@media screen and (max-width: 819px) {
  .news__nav {
    width: 40px;
    height: 40px;
  }
}
.news {
  /* ★先頭/末尾で自動的に付く disabled を利用して非表示 */
}
.news__nav.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

/* ======================================
    アクセス
  ====================================== */
.map {
  padding: 100px 0 30px;
}
@media screen and (max-width: 819px) {
  .map {
    padding: 0 0 50px;
  }
}
.map iframe {
  filter: grayscale(100%);
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 819px) {
  .map iframe {
    height: 414px;
  }
}
.map address {
  padding: var(--sp-xxl) 0 0;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 819px) {
  .map address {
    padding: var(--sp-xl) 0 0;
    font-size: 0.875rem;
  }
}
.map a {
  display: block;
  margin-top: var(--sp-md);
  color: #c9caca;
  font-size: 1.3rem;
  text-decoration: none;
}
.map__logo {
  width: 130px;
  margin: auto;
  padding: var(--sp-xl) 0 0;
}
@media screen and (max-width: 819px) {
  .map__logo {
    width: 100px;
    padding: 20px 0 0;
  }
}

/*===============================

ニュース

================================*/
.cast,
.recruit,
.system,
.showtime,
.showtime_sub,
.profile,
.userpolicy {
  padding: 100px 0 100px;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .cast,
  .recruit,
  .system,
  .showtime,
  .showtime_sub,
  .profile,
  .userpolicy {
    padding: 70px 0 50px;
  }
}
@media screen and (max-width: 819px) {
  .cast,
  .recruit,
  .system,
  .showtime,
  .showtime_sub,
  .profile,
  .userpolicy {
    padding: 30px 0 25px;
  }
}
.cast__ttl,
.recruit__ttl,
.system__ttl,
.showtime__ttl,
.showtime_sub__ttl,
.profile__ttl,
.userpolicy__ttl {
  padding: 0 0 50px;
  font-size: 2.5rem;
  font-weight: 100;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .cast__ttl,
  .recruit__ttl,
  .system__ttl,
  .showtime__ttl,
  .showtime_sub__ttl,
  .profile__ttl,
  .userpolicy__ttl {
    padding: 0 0 50px;
  }
}
@media screen and (max-width: 819px) {
  .cast__ttl,
  .recruit__ttl,
  .system__ttl,
  .showtime__ttl,
  .showtime_sub__ttl,
  .profile__ttl,
  .userpolicy__ttl {
    padding: 0 0 20px;
  }
}
.cast .container,
.recruit .container,
.system .container,
.showtime .container,
.showtime_sub .container,
.profile .container,
.userpolicy .container {
  display: flex;
  width: 100%;
  max-width: 1380px;
  margin: auto;
  padding: 0 100px;
  font-weight: 400;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .cast .container,
  .recruit .container,
  .system .container,
  .showtime .container,
  .showtime_sub .container,
  .profile .container,
  .userpolicy .container {
    padding: 0 30px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 819px) {
  .cast .container,
  .recruit .container,
  .system .container,
  .showtime .container,
  .showtime_sub .container,
  .profile .container,
  .userpolicy .container {
    flex-wrap: wrap;
    padding: 0 20px;
    font-size: 1.4rem;
  }
}
.cast .container .day,
.recruit .container .day,
.system .container .day,
.showtime .container .day,
.showtime_sub .container .day,
.profile .container .day,
.userpolicy .container .day {
  width: 140px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 819px) {
  .cast .container .day,
  .recruit .container .day,
  .system .container .day,
  .showtime .container .day,
  .showtime_sub .container .day,
  .profile .container .day,
  .userpolicy .container .day {
    display: block;
    width: 100%;
    margin: 0 0 5px;
    font-weight: bold;
  }
}

.info {
  padding: 70px 0 100px;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .info {
    padding: 70px 0 50px;
  }
}
@media screen and (max-width: 819px) {
  .info {
    padding: 30px 0 25px;
  }
}
.info .container {
  display: flex;
  width: 100%;
  max-width: 1380px;
  margin: auto;
  padding: 0 100px;
  font-weight: 400;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .info .container {
    padding: 0 30px;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 819px) {
  .info .container {
    display: block;
    padding: 0 20px;
    font-size: 1.1rem;
  }
}
.info .day {
  font-size: 1.2rem !important;
  font-family: "Inter", sans-serif;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .info .day {
    padding: 0;
  }
}
@media screen and (max-width: 819px) {
  .info .day {
    font-size: 1rem !important;
    padding: 20px 0 0;
  }
}
.info .comment {
  padding: 5px 0 0 20px;
  font-size: 1rem;
}
@media screen and (max-width: 819px) {
  .info .comment {
    display: block;
    padding: 0;
  }
}
.info__ttl {
  padding: 0 0 50px;
  font-size: 2rem;
  font-weight: 100;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .info__ttl {
    padding: 0 0 50px;
  }
}
@media screen and (max-width: 819px) {
  .info__ttl {
    padding: 0 0 20px;
  }
}
.info ul {
  padding: 50px 0 100px;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .info ul {
    padding: 30px 0 10px;
  }
}
@media screen and (max-width: 819px) {
  .info ul {
    padding: 20px 0 0;
  }
}
.info li {
  font-size: 2rem;
}
.info li:first-child {
  border-top: 1px solid #c9caca;
}
.info a {
  width: 100%;
  padding: 50px 0;
  color: #c9caca;
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #c9caca;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .info a {
    padding: 30px 0;
  }
}
@media screen and (max-width: 819px) {
  .info a {
    padding: 20px 0;
    line-height: 1.5;
  }
}
.info a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #c9caca;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.6s;
}
.info a:hover::after {
  transform: scale(1, 1);
}
.info__inner {
  max-width: 1380px;
  margin: auto;
  padding: 50px 80px 0 80px;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .info__inner {
    padding: 40px 20px 0;
  }
}
@media screen and (max-width: 819px) {
  .info__inner {
    padding: 0 15px;
  }
}
.info__inner h3 {
  display: block;
  padding: 20px 0 50px;
  font-size: 2rem;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .info__inner h3 {
    padding: 20px 0 40px;
  }
}
@media screen and (max-width: 819px) {
  .info__inner h3 {
    padding: 20px 0;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
.info__inner .image {
  margin: auto;
}
.info__inner .image a {
  padding: 0;
}

.adjustment {
  margin-top: 100px;
}
@media screen and (max-width: 819px) {
  .adjustment {
    margin-top: 63px;
  }
}

/*===============================

キャスト

================================*/
.cast ul,
.showtime ul,
.showtime_sub ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 1380px;
  margin: auto;
  padding: 50px 80px 0 80px;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .cast ul,
  .showtime ul,
  .showtime_sub ul {
    padding: 40px 20px 0;
  }
}
@media screen and (max-width: 819px) {
  .cast ul,
  .showtime ul,
  .showtime_sub ul {
    padding: 30px 15px;
  }
}
.cast li,
.showtime li,
.showtime_sub li {
  width: 25%;
  padding: 0;
  border: none;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .cast li,
  .showtime li,
  .showtime_sub li {
    width: 25%;
  }
}
@media screen and (max-width: 819px) {
  .cast li,
  .showtime li,
  .showtime_sub li {
    width: 33.3333333333%;
  }
}
.cast li:last-child,
.showtime li:last-child,
.showtime_sub li:last-child {
  border-bottom: 0px;
}
.cast figure,
.showtime figure,
.showtime_sub figure {
  padding: 20px;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .cast figure,
  .showtime figure,
  .showtime_sub figure {
    padding: 10px;
  }
}
@media screen and (max-width: 819px) {
  .cast figure,
  .showtime figure,
  .showtime_sub figure {
    padding: 5px;
  }
}
.cast .name,
.showtime .name,
.showtime_sub .name {
  padding: 10px 0 20px;
  font-size: 1.3rem;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .cast .name,
  .showtime .name,
  .showtime_sub .name {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 819px) {
  .cast .name,
  .showtime .name,
  .showtime_sub .name {
    padding: 5px 0 20px;
    font-size: 0.9rem;
  }
}
.cast .more,
.showtime .more,
.showtime_sub .more {
  width: 250px;
  margin: auto;
  padding: 50px 0 0;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .cast .more,
  .showtime .more,
  .showtime_sub .more {
    width: 200px;
    padding: 30px 0 0;
  }
}
@media screen and (max-width: 819px) {
  .cast .more,
  .showtime .more,
  .showtime_sub .more {
    width: 200px;
    padding: 0 0 40px;
  }
}

/*===============================

ショータイム

================================*/
.showtime,
.showtime_sub {
  padding: 100px 0 100px;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .showtime,
  .showtime_sub {
    padding: 100px 0 50px;
  }
}
@media screen and (max-width: 819px) {
  .showtime,
  .showtime_sub {
    padding: 25px 0 0;
  }
}
.showtime ul,
.showtime_sub ul {
  margin-top: 0;
}
@media screen and (max-width: 819px) {
  .showtime ul,
  .showtime_sub ul {
    margin-top: -50px;
  }
}
.showtime .day,
.showtime_sub .day {
  font-size: 1.2rem;
  font-weight: 200;
}
@media screen and (max-width: 819px) {
  .showtime .day,
  .showtime_sub .day {
    padding: 0 18px;
    font-size: 0.9rem;
  }
}
.showtime .title,
.showtime_sub .title {
  display: block;
  padding: 10px 0 0;
  font-size: 1.4rem;
  font-weight: 200;
}
@media screen and (max-width: 819px) {
  .showtime .title,
  .showtime_sub .title {
    padding: 10px 18px 0 18px;
  }
}

.showtime_sub {
  max-width: 1380px;
  margin: auto;
}
.showtime_sub .banner {
  max-width: 1380px;
  margin: auto;
  padding: 0 100px;
  margin: auto;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .showtime_sub .banner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 819px) {
  .showtime_sub .banner {
    padding: 0 0 50px;
  }
}

/*===============================

女性求人

================================*/
.recruit {
  padding: 100px 0 100px;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .recruit {
    padding: 100px 0 50px;
  }
}
@media screen and (max-width: 819px) {
  .recruit {
    padding: 25px 0 0;
  }
}
.recruit__inner {
  width: 700px;
  margin: auto;
  padding: 35px 0 0;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .recruit__inner {
    padding: 30px 0;
  }
}
@media screen and (max-width: 819px) {
  .recruit__inner {
    width: 100%;
    padding: 20px 20px;
  }
}
.recruit__form {
  width: 700px;
  margin: auto;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .recruit__form {
    padding: 30px 0;
  }
}
@media screen and (max-width: 819px) {
  .recruit__form {
    width: 100%;
    padding: 20px 20px;
  }
}
.recruit__form input {
  width: 100%;
  height: 35px;
}
.recruit__form textarea {
  width: 100%;
  height: 150px;
}
.recruit__form dl {
  display: flex;
  flex-wrap: wrap;
}
.recruit__form dl .left {
  width: 30%;
  padding: 7px 0 0;
}
@media screen and (max-width: 819px) {
  .recruit__form dl .left {
    width: 100%;
    margin: 0 0 5px;
    font-size: 1.1rem;
  }
}
.recruit__form dl .left span {
  display: inline-block;
  margin: 0 0 0 5px;
  padding: 5px 5px 7px;
  background-color: #3e3a39;
  border-radius: 3px;
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
}
.recruit__form dl .right {
  width: 70%;
  margin-bottom: 10px;
}
@media screen and (max-width: 819px) {
  .recruit__form dl .right {
    width: 100%;
    margin: 0 0 5px;
  }
}
.recruit__form .send {
  height: 45px;
  background-color: #3e3a39;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 5px;
}
.recruit__text {
  margin: 0 0 50px;
  padding: 50px 0 50px;
  border-bottom: 1px solid #444;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 2;
}
@media screen and (max-width: 819px) {
  .recruit__text {
    margin: 0 0 25px;
    font-size: 1rem;
    line-height: 1.6;
  }
}
.recruit__thanks {
  padding: 50px 0 100px;
  font-weight: 300;
  line-height: 2;
}
@media screen and (max-width: 819px) {
  .recruit__thanks {
    padding: 50px 0 0;
    font-size: 1rem;
  }
}

/*===============================

プロフィール

================================*/
@media screen and (max-width: 819px) {
  .profile {
    padding: 0 0 100px;
  }
}
.profile h3 {
  position: relative;
  width: 100%;
  padding-bottom: 25px;
  border-bottom: 1px solid #444;
  font-size: 3rem;
  font-weight: 300;
}
@media screen and (max-width: 819px) {
  .profile h3 {
    padding-bottom: 15px;
    font-size: 2.5rem;
  }
}
.profile h3 .icon {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}
.profile h3 .icon img {
  width: auto;
  height: 35px;
  margin: 0 0 0 10px;
}
@media screen and (max-width: 819px) {
  .profile h3 .icon img {
    width: auto;
    height: 30px;
  }
}
.profile_inner {
  display: flex;
  width: 900px;
  margin: auto;
  padding: 100px 0 135px;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .profile_inner {
    width: auto;
    padding: 50px 15px 65px 15px;
  }
}
@media screen and (max-width: 819px) {
  .profile_inner {
    display: block;
    width: 100%;
    padding: 0 0 65px;
  }
}
.profile_cast {
  max-width: 1410px;
  margin: auto;
  padding: 0 80px;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .profile_cast {
    padding: 40px 20px 0;
  }
}
@media screen and (max-width: 819px) {
  .profile_cast {
    padding: 30px 5px;
  }
}
.profile_cast dl {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 35px;
       column-gap: 35px;
}
.profile_cast span {
  display: block;
  padding: 20px 0 0;
  font-size: 2rem;
}
@media screen and (max-width: 819px) {
  .profile_cast span {
    padding: 10px 0 0;
    font-size: 1.8rem;
  }
}
.profile_cast_number {
  position: relative;
  font-size: 2rem;
  font-family: "Inter", sans-serif;
}
.profile_cast_number_inner {
  position: absolute;
  display: flex;
  top: 10px;
  right: 125px;
}
@media screen and (max-width: 819px) {
  .profile_cast_number_inner {
    top: 7px;
    right: 80px;
  }
}
.profile .name {
  font-size: 2rem;
}
@media screen and (max-width: 819px) {
  .profile .name {
    font-size: 1.6rem;
  }
}
.profile .photo {
  max-width: 375px;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .profile .photo {
    max-width: 50%;
  }
}
@media screen and (max-width: 819px) {
  .profile .photo {
    display: flex;
    max-width: 100%;
  }
}
.profile .photo p {
  margin: 0 0 35px;
}
@media screen and (max-width: 819px) {
  .profile .photo p {
    width: 50%;
  }
}
.profile .data {
  flex: 1;
  padding: 0 0 0 75px;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .profile .data {
    padding: 0 0 0 35px;
  }
}
@media screen and (max-width: 819px) {
  .profile .data {
    width: auto;
    padding: 0 15px;
  }
}
.profile .personal {
  padding: 20px 0 20px;
  font-size: 1.3rem;
  line-height: 2;
}
@media screen and (max-width: 819px) {
  .profile .personal {
    padding: 20px 0 20px;
    font-size: 1rem;
  }
}
.profile .faq p {
  padding: 20px 0;
  border-top: 1px solid #444;
  font-size: 1.1rem;
  line-height: 1.5;
}
@media screen and (max-width: 819px) {
  .profile .faq p {
    padding: 15px 0;
    font-size: 0.9rem;
  }
}
.profile .faq p:last-child {
  border-bottom: 1px solid #444;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position: relative;
  padding: 60px 0 0;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .slider {
    padding: 50px 0 0;
  }
}
.slider img {
  max-width: 1200px;
  width: 100%;
}
@media screen and (max-width: 819px) {
  .slider img {
    width: 95%;
    margin: auto;
  }
}
.slider span {
  font-size: 1.4rem;
}
@media screen and (max-width: 819px) {
  .slider span {
    font-size: 1rem;
  }
}
.slider .prev_arrow,
.slider .next_arrow {
  position: absolute;
  top: 0;
  right: 65px;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .slider .prev_arrow,
  .slider .next_arrow {
    right: 65px;
  }
}
@media screen and (max-width: 819px) {
  .slider .prev_arrow,
  .slider .next_arrow {
    right: 40px;
  }
}
.slider .prev_arrow img,
.slider .next_arrow img {
  width: 40px;
}
@media screen and (max-width: 819px) {
  .slider .prev_arrow img,
  .slider .next_arrow img {
    width: 30px;
  }
}
.slider .next_arrow {
  right: 15px;
}
@media screen and (max-width: 819px) {
  .slider .next_arrow {
    right: 5px;
  }
}
.slider .slick-slide {
  margin: 0 17px;
}
@media screen and (max-width: 819px) {
  .slider .slick-slide {
    margin: 0;
  }
}

.slider_photo {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
}
@media screen and (max-width: 819px) {
  .slider_photo {
    height: 100%;
  }
}
.slider_photo .prev_arrow_photo img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 40px;
  margin: auto;
  z-index: 10;
}
.slider_photo .next_arrow_photo img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  width: 40px;
  margin: auto;
  z-index: 10;
}

.mypattern {
  width: 100%;
  margin: auto;
}

.mypattern .slick-slide {
  margin: 0 25px;
}
@media screen and (max-width: 819px) {
  .mypattern .slick-slide {
    margin: 0 0 50px;
  }
}

/*slick setting*/
.mypattern .slick-slide:not(.slick-center) {
  -moz-filter: opacity(70%);
  -o-filter: opacity(70%);
  -ms-filter: opacity(70%);
  filter: opacity(70%);
  transition: 0.6s linear;
}
@media screen and (min-width: 820px) and (max-width: 1199px) {
  .mypattern .slick-slide:not(.slick-center) {
    -moz-filter: opacity(100%);
    -o-filter: opacity(100%);
    -ms-filter: opacity(100%);
    filter: opacity(100%);
  }
}
@media screen and (max-width: 819px) {
  .mypattern .slick-slide:not(.slick-center) {
    -moz-filter: opacity(100%);
    -o-filter: opacity(100%);
    -ms-filter: opacity(100%);
    filter: opacity(100%);
  }
}

/* ======================================
   SYSTEM 
   ====================================== */
.system {
  padding: 100px 0; /* 上下の余白 */
  line-height: 1.6;
  /* スマホ用余白調整 */
}
@media screen and (max-width: 819px) {
  .system {
    padding: 40px 0;
  }
}
.system__inner {
  width: 90%;
  max-width: 800px; /* PCでの最大幅（画像に合わせて少し狭めに） */
  margin: 0 auto;
}
.system {
  /* --- タイトル --- */
}
.system__ttl {
  text-align: center;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 60px;
}
@media screen and (max-width: 819px) {
  .system__ttl {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
}
.system {
  /* --- 各ブロック共通 --- */
}
.system__block {
  margin-bottom: 60px;
}
.system__subttl {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  opacity: 0.9;
}
.system__text-box {
  border-top: 1px solid #c9caca;
  border-bottom: 1px solid #c9caca;
  padding: 20px 0;
  font-size: 0.95rem;
}

/* ======================================
   料金リスト (dl > div > dt/dd)
   ====================================== */
.price-list {
  width: 100%;
  border-top: 1px solid #c9caca; /* 上の線 */
}
.price-list__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #c9caca; /* 各行の下線（少し薄く） */
}
.price-list__row dt {
  font-weight: 400;
}
.price-list__row dd {
  text-align: right;
}

/* ======================================
   注釈エリア
   ====================================== */
.system__note {
  margin: 60px 0 60px;
  font-size: 0.85rem;
  opacity: 0.8;
}
@media screen and (max-width: 819px) {
  .system__note {
    margin: 60px 0 30px;
  }
}
.system__note .note-list {
  list-style: none;
  padding: 0;
}
.system__note .note-list li {
  margin-bottom: 0.5em;
}

/* ======================================
   入店ルール（ご入店に関して）
   ====================================== */
.system__rules {
  border-bottom: 1px solid #c9caca;
  padding: 30px 0;
}
.system__rules .rules-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #c9caca; /* ヘッダー下の薄い線 */
}
.system__rules .rules-head__ttl {
  font-size: 1.2rem;
  font-weight: 400;
}
.system__rules .rules-head__sub {
  font-size: 0.8rem;
  opacity: 0.7;
  text-align: right;
}
.system__rules .rules-head {
  /* スマホで改行させる場合 */
}
@media screen and (max-width: 819px) {
  .system__rules .rules-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.system__rules .rules-list {
  list-style: none;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.8;
}
.system__rules .rules-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 5px;
  /* ■のアイコンCSSで作る */
}
.system__rules .rules-list li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #c9caca; /* 白い四角 */
  position: absolute;
  left: 0;
  top: 0.6em; /* 位置微調整 */
}

/* ===============================
  Visibility utilities
================================ */
/* ===== 表示切替ユーティリティ（必須） ===== */
.pc-only {
  display: none;
}

.sp-only {
  display: inline-flex;
}

@media (min-width: 821px) {
  .pc-only {
    display: flex;
  } /* header__right はflexなので flex推奨 */
  .sp-only {
    display: none;
  }
}
/* アクセシビリティ：視覚的に隠す（読み上げはOK） */
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ===============================
  Layout utilities
  - container
  - section spacing
  - stack (vertical rhythm)
  - cluster (flex row)
  - grid (cards / lists)
================================ */
/* Container（最大幅＋左右余白） */
.u-container {
  width: min(1100px, 100% - 2rem);
  margin-inline: auto;
}

/* もっと広い版が欲しい時だけ */
.u-container--wide {
  width: min(1280px, 100% - 2rem);
  margin-inline: auto;
}

/* セクションの上下余白（迷ったらこれ） */
.u-section {
  padding-block: var(--sp-xxl);
}

@media screen and (max-width: 819px) {
  .u-section {
    padding-block: var(--sp-xl);
  }
}
/* 縦積み（gapで余白管理） */
.u-stack {
  display: grid;
  gap: var(--sp-md);
}

.u-stack--sm {
  gap: var(--sp-sm);
}

.u-stack--lg {
  gap: var(--sp-lg);
}

.u-stack--xl {
  gap: var(--sp-xl);
}

/* 横並び（よくあるUI行） */
.u-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  align-items: center;
}

.u-cluster--start {
  justify-content: flex-start;
}

.u-cluster--center {
  justify-content: center;
}

.u-cluster--end {
  justify-content: flex-end;
}

.u-cluster--between {
  justify-content: space-between;
}

/* 中央寄せ（単体/ブロックのセンターに便利） */
.u-center {
  display: grid;
  place-items: center;
}

/* Grid（カード・一覧） */
.u-grid {
  display: grid;
  gap: var(--sp-md);
}

.u-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.u-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.u-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* SPで列数を落とす（よくある） */
@media screen and (max-width: 819px) {
  .u-grid--3,
  .u-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* さらに小さい画面で1列にしたい時（任意） */
@media screen and (max-width: 375px) {
  .u-grid--2,
  .u-grid--3,
  .u-grid--4 {
    grid-template-columns: 1fr;
  }
}
/* ===============================
  Space utilities (minimal)
  - Use only when you need a tiny tweak
  - Prefer component/layout spacing first
================================ */
/* margin-top */
.u-mt-xs {
  margin-top: var(--sp-xs);
}

.u-mt-sm {
  margin-top: var(--sp-sm);
}

.u-mt-md {
  margin-top: var(--sp-md);
}

.u-mt-lg {
  margin-top: var(--sp-lg);
}

.u-mt-xl {
  margin-top: var(--sp-xl);
}

/* margin-bottom */
.u-mb-xs {
  margin-bottom: var(--sp-xs);
}

.u-mb-sm {
  margin-bottom: var(--sp-sm);
}

.u-mb-md {
  margin-bottom: var(--sp-md);
}

.u-mb-lg {
  margin-bottom: var(--sp-lg);
}

.u-mb-xl {
  margin-bottom: var(--sp-xl);
}