/* =========================================================
   STAFF PAGE
   HEADER + BREADCRUMB + HERO
   Mobile First
   ========================================================= */


/* =========================================================
   BASE
   ========================================================= */

html,
body {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;

  background: transparent;

  transition:
    background-color 0.4s ease,
    box-shadow 0.4s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  height: 72px;

  padding: 0 20px;

  box-sizing: border-box;
}


/* =========================================================
   LOGO
   ========================================================= */

.header-logo {
  display: block;

  width: 125px;

  line-height: 0;
  text-decoration: none;
}

.header-logo img {
  display: block;

  width: 100%;
  height: auto;
}


/* HERO上では白ロゴ */

.header-logo .logo-white {
  display: block !important;
}

.header-logo .logo-black {
  display: none !important;
}


/* スクロール後は黒ロゴ */

.header.scrolled .header-logo .logo-white {
  display: none !important;
}

.header.scrolled .header-logo .logo-black {
  display: block !important;
}


/* =========================================================
   HEADER RIGHT
   ========================================================= */

.header-right {
  display: flex;
  align-items: center;

  gap: 10px;
}


/* =========================================================
   RESERVE / CONTACT
   ========================================================= */

.header-btn {
  display: none;
  align-items: center;
  justify-content: center;

  min-width: 96px;
  height: 42px;

  padding: 0 18px;

  box-sizing: border-box;

  color: #fff;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.16em;

  text-decoration: none;

  border: 1px solid rgba(255, 255, 255, 0.7);

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}


/* スクロール後 */

.header.scrolled .header-btn {
  color: #111;
  border-color: rgba(17, 17, 17, 0.45);
}

.header.scrolled .header-btn:hover {
  background: #111;
  color: #fff;
}


/* =========================================================
   HAMBURGER
   ========================================================= */

.hamburger {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;

  gap: 6px;

  width: 44px;
  height: 44px;

  padding: 0;

  background: transparent;
  border: 0;

  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;

  width: 25px;
  height: 1px;

  margin-left: auto;

  background: #fff;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background-color 0.3s ease;
}

.header.scrolled .hamburger span {
  background: #111;
}


/* =========================================================
   HAMBURGER ACTIVE
   ========================================================= */

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   GLOBAL MENU
   ========================================================= */

.global-menu {
  position: fixed;

  top: 0;
  right: 0;

  z-index: 990;

  width: min(88vw, 420px);
  height: 100svh;

  padding:
    110px
    30px
    40px;

  box-sizing: border-box;

  background: #111;

  overflow-y: auto;

  transform: translateX(100%);

  visibility: hidden;

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.45s ease;
}

.global-menu.active {
  transform: translateX(0);
  visibility: visible;
}

.global-menu ul {
  display: flex;
  flex-direction: column;

  margin: 0;
  padding: 0;

  list-style: none;
}

.global-menu li {
  margin: 0;
  padding: 0;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.14);
}

.global-menu a {
  display: flex;
  align-items: center;

  min-height: 58px;

  color: #fff;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 13px;
  font-weight: 400;

  letter-spacing: 0.2em;

  text-decoration: none;
}


/* =========================================================
   GLOBAL MENU｜RESERVE / CONTACT
   ========================================================= */

.global-menu .sp-menu a {
  justify-content: center;

  min-height: 52px;

  margin-top: 14px;

  border:
    1px solid rgba(255, 255, 255, 0.6);
}

.global-menu .sp-menu + .sp-menu {
  border: 0;
}

.global-menu .sp-menu + .sp-menu a {
  margin-top: 10px;
}


/* =========================================================
   MENU OVERLAY
   ========================================================= */

.menu-overlay {
  position: fixed;

  inset: 0;

  z-index: 980;

  background: rgba(0, 0, 0, 0.45);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

/*
  HTML上には残す。
  HEROのレイアウトには高さを持たせない。
*/

.breadcrumb {
  position: absolute;

  top: 84px;
  left: 20px;

  z-index: 10;

  margin: 0;
  padding: 0;

  pointer-events: none;
}

.breadcrumb ol {
  display: flex;
  align-items: center;

  gap: 8px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.breadcrumb li,
.breadcrumb a {
  color: rgba(255, 255, 255, 0.78);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 9px;
  line-height: 1.5;

  letter-spacing: 0.08em;

  text-decoration: none;
}

.breadcrumb li + li::before {
  content: "/";

  margin-right: 8px;

  color: rgba(255, 255, 255, 0.5);
}




/* =========================================================
   HERO
   ========================================================= */

.staff-hero {
  position: relative;

  width: 100%;
  height: 100svh;
  min-height: 600px;

  margin: 0;

  overflow: hidden;

  background: #111;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.staff-hero__image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;
}

.staff-hero__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  /*
    人物を中央基準で表示
  */
  object-position: center center;

  transform: scale(1.001);
}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.staff-hero::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0.02) 42%,
      rgba(0, 0, 0, 0.62) 100%
    );

  pointer-events: none;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.staff-hero__content {
  position: relative;

  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  width: 100%;
  height: 100%;

  padding:
    0
    24px
    46px;

  box-sizing: border-box;
}


/* =========================================================
   HERO COPY
   ========================================================= */

.staff-hero__copy {
  margin: 0 0 24px;

  color: #fff;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(34px, 9vw, 48px);

  font-weight: 400;

  line-height: 1.5;

  letter-spacing: 0.08em;

  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.28);

  opacity: 0;

  animation:
    heroCopyIn 1.1s
    cubic-bezier(0.22, 1, 0.36, 1)
    0.25s
    forwards;
}


/* =========================================================
   HERO LABEL
   ========================================================= */

.staff-hero__label {
  margin: 0;

  color: #fff;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 11px;

  font-weight: 400;

  line-height: 1.8;

  letter-spacing: 0.3em;

  text-shadow:
    0 1px 8px rgba(0, 0, 0, 0.25);

  opacity: 0;

  animation:
    heroLabelIn 0.8s
    ease
    forwards;
}

.staff-hero__label:first-of-type {
  animation-delay: 0.65s;
}

.staff-hero__label:last-of-type {
  animation-delay: 0.8s;
}


/* =========================================================
   HERO ANIMATION
   ========================================================= */

@keyframes heroCopyIn {

  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes heroLabelIn {

  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 768px) {

  /* HEADER */

  .header-inner {
    height: 80px;

    padding:
      0
      32px;
  }

  .header-logo {
    width: 145px;
  }

  .header-right {
    gap: 12px;
  }

  .header-btn {
    display: flex;
  }

  .hamburger {
    width: 48px;
    height: 48px;
  }

  .hamburger span {
    width: 26px;
  }


  /* BREADCRUMB */

  .breadcrumb {
    top: 94px;
    left: 32px;
  }

  .breadcrumb li,
  .breadcrumb a {
    font-size: 10px;
  }


  /* HERO */

  .staff-hero {
    height: 100svh;
    min-height: 680px;
  }

  .staff-hero__image img {
    object-position: center center;
  }

  .staff-hero__content {
    padding:
      0
      6vw
      7vw;
  }

  .staff-hero__copy {
    margin-bottom: 32px;

    font-size:
      clamp(42px, 5vw, 68px);

    line-height: 1.45;
  }

  .staff-hero__label {
    font-size: 12px;

    letter-spacing: 0.32em;
  }

}


/* =========================================================
   PC
   ========================================================= */

@media (min-width: 1200px) {

  /* HEADER */

  .header-inner {
    height: 88px;

    padding:
      0
      48px;
  }

  .header-logo {
    width: 160px;
  }

  .header-right {
    gap: 14px;
  }

  .header-btn {
    min-width: 110px;
    height: 44px;

    font-size: 11px;
  }

  .hamburger {
    width: 52px;
    height: 52px;
  }

  .hamburger span {
    width: 28px;
  }


  /* BREADCRUMB */

  .breadcrumb {
    top: 104px;
    left: 48px;
  }

  .breadcrumb li,
  .breadcrumb a {
    font-size: 10px;
  }


  /* HERO */

  .staff-hero {
    height: 100vh;
    min-height: 700px;
  }

  .staff-hero__content {
    padding:
      0
      7vw
      6vw;
  }

  .staff-hero__copy {
    margin-bottom: 34px;

    font-size:
      clamp(52px, 4.5vw, 76px);
  }

  .staff-hero__label {
    font-size: 13px;

    letter-spacing: 0.34em;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .breadcrumb {
    top: 84px;
    left: 20px;
  }

  .staff-hero__copy {
    max-width: 90%;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .staff-hero__copy,
  .staff-hero__label {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .header,
  .header-btn,
  .hamburger span,
  .global-menu,
  .menu-overlay {
    transition: none;
  }

}
/* =========================================================
   03｜PROFILE
   Mobile First
   ========================================================= */

.staff-profile {
  display: grid;

  width: 100%;

  background: #f7f6f2;
  color: #171717;
}


/* =========================================================
   PROFILE IMAGE
   ========================================================= */

.staff-profile__image {
  width: 100%;

  overflow: hidden;

  background: #111;
}

.staff-profile__image img {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 4 / 5;

  object-fit: cover;

  transform: scale(1.001);
}


/* =========================================================
   PROFILE CONTENT
   ========================================================= */

.staff-profile__content {
  padding:
    58px
    24px
    54px;

  background: #f7f6f2;
}


/* =========================================================
   SECTION LABEL
   ========================================================= */

.staff-profile .section-label {
  position: relative;

  display: inline-flex;
  align-items: center;

  margin: 0 0 24px;

  color: #171717;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 11px;
  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.24em;
}

.staff-profile .section-label::after {
  content: "";

  display: block;

  width: 36px;
  height: 1px;

  margin-left: 14px;

  background: #a88b59;
}


/* =========================================================
   PROFILE NAME
   ========================================================= */

.profile-heading h2 {
  margin: 0;

  color: #171717;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: 38px;
  font-weight: 400;

  line-height: 1.4;

  letter-spacing: 0.08em;
}


.profile-name-en {
  margin: 9px 0 0;

  color: #9a7b4c;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 13px;

  line-height: 1.7;

  letter-spacing: 0.18em;
}


.profile-role {
  margin: 24px 0 0;

  color: #222;

  font-size: 15px;
  font-weight: 500;

  line-height: 1.8;

  letter-spacing: 0.08em;
}


/* =========================================================
   PROFILE LIST
   ========================================================= */

.profile-list {
  margin: 38px 0 0;
  padding: 0;
}


.profile-list__item {
  display: grid;

  grid-template-columns: 72px 1fr;

  column-gap: 16px;

  margin: 0 0 18px;

  color: #222;
}


.profile-list__item dt {
  margin: 0;

  font-size: 13px;
  font-weight: 400;

  line-height: 1.9;

  letter-spacing: 0.08em;
}


.profile-list__item dd {
  margin: 0;

  font-size: 15px;
  font-weight: 400;

  line-height: 1.9;

  letter-spacing: 0.04em;
}


.profile-list__item dd span {
  display: block;
}


/* =========================================================
   PROFILE MESSAGE
   ========================================================= */

.staff-profile__message {
  position: relative;

  padding:
    58px
    24px
    64px;

  background: #f7f6f2;

  border-top:
    1px solid rgba(40, 40, 40, 0.16);
}


.staff-profile__quote {
  margin: 0 0 30px;

  color: #9a7b4c;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: 29px;

  font-weight: 400;

  line-height: 1.65;

  letter-spacing: 0.08em;
}


.staff-profile__message p:not(.staff-profile__quote) {
  margin: 0 0 22px;

  color: #2b2b2b;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: 15px;

  font-weight: 400;

  line-height: 2.15;

  letter-spacing: 0.06em;
}


.staff-profile__message p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   PROFILE REVEAL ANIMATION
   ========================================================= */

.staff-profile .reveal {
  opacity: 0;

  transform: translateY(28px);

  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.staff-profile .reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 768px) {

  .staff-profile__content {
    padding:
      72px
      6vw
      68px;
  }


  .staff-profile__image img {
    aspect-ratio: 4 / 5;
  }


  .staff-profile .section-label {
    font-size: 11px;
  }


  .profile-heading h2 {
    font-size: 46px;
  }


  .profile-name-en {
    font-size: 13px;
  }


  .profile-role {
    margin-top: 26px;

    font-size: 15px;
  }


  .profile-list {
    margin-top: 42px;
  }


  .profile-list__item {
    grid-template-columns: 90px 1fr;

    column-gap: 22px;

    margin-bottom: 19px;
  }


  .profile-list__item dt {
    font-size: 14px;
  }


  .profile-list__item dd {
    font-size: 15px;
  }


  .staff-profile__message {
    padding:
      70px
      6vw
      76px;
  }


  .staff-profile__quote {
    font-size: 32px;
  }


  .staff-profile__message p:not(.staff-profile__quote) {
    font-size: 15px;
  }

}


/* =========================================================
   PC
   ========================================================= */

@media (min-width: 1200px) {

  .staff-profile {

    grid-template-columns:
      43% 57%;

    grid-template-rows:
      auto auto;

    align-items: stretch;
  }


  /* -----------------------------------------
     左側画像
     ----------------------------------------- */

  .staff-profile__image {

    grid-column: 1;
    grid-row: 1 / 3;

    height: 100%;
  }


  .staff-profile__image img {

    width: 100%;
    height: 100%;

    aspect-ratio: auto;

    object-fit: cover;

    object-position: center center;
  }


  /* -----------------------------------------
     右上 PROFILE
     ----------------------------------------- */

  .staff-profile__content {

    grid-column: 2;
    grid-row: 1;

    padding:
      64px
      5.5vw
      56px;
  }


  .staff-profile .section-label {
    margin-bottom: 26px;

    font-size: 11px;
  }


  .profile-heading h2 {
    font-size: 52px;

    line-height: 1.4;
  }


  .profile-name-en {
    margin-top: 9px;

    font-size: 14px;
  }


  .profile-role {
    margin-top: 26px;

    font-size: 16px;
  }


  .profile-list {
    margin-top: 40px;
  }


  .profile-list__item {

    grid-template-columns:
      82px 1fr;

    column-gap: 18px;

    margin-bottom: 17px;
  }


  .profile-list__item dt {
    font-size: 14px;

    line-height: 1.9;
  }


  .profile-list__item dd {
    font-size: 16px;

    line-height: 1.9;
  }


  /* -----------------------------------------
     右下 MESSAGE
     ----------------------------------------- */

  .staff-profile__message {

    grid-column: 2;
    grid-row: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
      58px
      5.5vw
      66px;

    border-top:
      1px solid rgba(40, 40, 40, 0.16);
  }


  .staff-profile__quote {
    margin-bottom: 28px;

    font-size: 31px;

    line-height: 1.65;
  }


  .staff-profile__message p:not(.staff-profile__quote) {

    font-size: 15px;

    line-height: 2.15;

    letter-spacing: 0.06em;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .staff-profile__content {
    padding:
      54px
      24px
      56px;
  }


  .profile-heading h2 {
    font-size: 36px;
  }


  .profile-name-en {
    font-size: 13px;
  }


  .profile-role {
    font-size: 15px;
  }


  .profile-list__item dt {
    font-size: 13px;
  }


  .profile-list__item dd {
    font-size: 15px;
  }


  .staff-profile__quote {
    font-size: 28px;
  }


  .staff-profile__message p:not(.staff-profile__quote) {
    font-size: 15px;
    line-height: 2.15;
  }

}
/* =========================================================
   03｜STORY
   Mobile First
========================================================= */

.staff-story {
  display: flex;
  flex-direction: column;

  width: 100%;

  background: #111;
}


/* =========================================================
   STORY CONTENT
========================================================= */

.staff-story__content {
  width: 100%;

  padding:
    48px
    24px
    52px;

  color: #fff;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.staff-story__content .section-label {
  color: #fff;
}


/* =========================================================
   STORY TITLE
========================================================= */

.staff-story__content h2 {
  margin: 0 0 26px;

  color: #fff;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: 25px;

  font-weight: 400;

  line-height: 1.5;

  letter-spacing: 0.08em;
}


/* =========================================================
   STORY TEXT
========================================================= */

.staff-story__content p:not(.section-label) {
  margin: 0 0 20px;

  color: rgba(255, 255, 255, 0.92);

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: 12px;

  font-weight: 400;

  line-height: 2.05;

  letter-spacing: 0.05em;
}


.staff-story__content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   STORY IMAGE
========================================================= */

.staff-story__image {
  width: 100%;

  overflow: hidden;
}


.staff-story__image img {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 16 / 10;

  object-fit: cover;

  object-position: center center;
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) {

  .staff-story__content {
    padding:
      60px
      6vw
      64px;
  }


  .staff-story__content h2 {
    margin-bottom: 30px;

    font-size: 30px;
  }


  .staff-story__content p:not(.section-label) {
    font-size: 13px;

    line-height: 2.15;
  }


  .staff-story__image img {
    aspect-ratio: 16 / 9;
  }

}


/* =========================================================
   PC
========================================================= */

@media (min-width: 1200px) {

  .staff-story {
    display: grid;

    grid-template-columns: 50% 50%;

    align-items: stretch;
  }


  /* 左：STORY文章 */

  .staff-story__content {
    grid-column: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
      58px
      5.5vw
      62px;
  }


  .staff-story__content h2 {
    margin-bottom: 24px;

    font-size: 25px;

    line-height: 1.5;
  }


  .staff-story__content p:not(.section-label) {
    font-size: 11px;

    line-height: 2;

    letter-spacing: 0.06em;
  }


  /* 右：サロン写真 */

  .staff-story__image {
    grid-column: 2;

    min-height: 100%;
  }


  .staff-story__image img {
    width: 100%;
    height: 100%;

    aspect-ratio: auto;

    object-fit: cover;
  }

}
/* =========================
   STAFF Typography Final Adjustment
   ========================= */

/* PROFILE */
.profile-heading h2 {
  font-size: 54px;
  line-height: 1.4;
}

.profile-name-en {
  font-size: 14px;
  line-height: 1.8;
}

.profile-role {
  font-size: 17px;
  line-height: 1.8;
}

.profile-list__item dt {
  font-size: 15px;
  line-height: 1.8;
}

.profile-list__item dd {
  font-size: 17px;
  line-height: 1.9;
}

.staff-profile__quote {
  font-size: 32px;
  line-height: 1.7;
}

.staff-profile__message p:not(.staff-profile__quote) {
  font-size: 16px;
  line-height: 2.1;
}


/* STORY */
.staff-story__content h2 {
  font-size: 42px;
  line-height: 1.5;
}

.staff-story__content p:not(.section-label) {
  font-size: 17px;
  line-height: 2.15;
}


/* =========================
   Mobile
   ========================= */
@media (max-width: 767px) {

  .profile-heading h2 {
    font-size: 38px;
  }

  .profile-name-en {
    font-size: 13px;
  }

  .profile-role {
    font-size: 16px;
  }

  .profile-list__item dt {
    font-size: 14px;
  }

  .profile-list__item dd {
    font-size: 16px;
  }

  .staff-profile__quote {
    font-size: 29px;
    line-height: 1.65;
  }

  .staff-profile__message p:not(.staff-profile__quote) {
    font-size: 15px;
    line-height: 2.1;
  }

  .staff-story__content h2 {
    font-size: 32px;
  }

  .staff-story__content p:not(.section-label) {
    font-size: 15px;
    line-height: 2.1;
  }

}
/* ==================================================
   04｜SPECIALTY
   ================================================== */

.staff-specialty {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  background: #f7f6f3;
  color: #222;
  min-height: 520px;
  overflow: hidden;
}


/* =========================
   CONTENT
   ========================= */

.staff-specialty__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 6vw;
  position: relative;
  z-index: 2;
}

.staff-specialty .section-label {
  margin: 0 0 24px;
  color: #222;
}

.staff-specialty__content h2 {
  margin: 0 0 24px;
  color: #222;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.staff-specialty__content > p:not(.section-label) {
  max-width: 560px;
  margin: 0 0 34px;
  color: #333;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
}


/* =========================
   SPECIALTY LIST
   ========================= */

.specialty-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.specialty-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 6px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  color: #222;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
}


/* =========================
   IMAGE
   ========================= */

.staff-specialty__image {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.staff-specialty__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* =========================
   REVEAL ANIMATION
   ========================= */

.staff-specialty .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.staff-specialty .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.staff-specialty .section-label.reveal {
  transition-delay: 0.05s;
}

.staff-specialty h2.reveal {
  transition-delay: 0.12s;
}

.staff-specialty__content > p.reveal {
  transition-delay: 0.2s;
}

.specialty-list li:nth-child(1).reveal {
  transition-delay: 0.28s;
}

.specialty-list li:nth-child(2).reveal {
  transition-delay: 0.34s;
}

.specialty-list li:nth-child(3).reveal {
  transition-delay: 0.40s;
}

.specialty-list li:nth-child(4).reveal {
  transition-delay: 0.46s;
}

.staff-specialty__image.reveal {
  transform: translateX(30px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.staff-specialty__image.reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}


/* ==================================================
   TABLET
   ================================================== */

@media (min-width: 768px) and (max-width: 1199px) {

  .staff-specialty {
    min-height: 460px;
  }

  .staff-specialty__content {
    padding: 60px 5vw;
  }

  .staff-specialty__content h2 {
    font-size: 40px;
  }

  .staff-specialty__content > p:not(.section-label) {
    font-size: 15px;
  }

  .specialty-list {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* ==================================================
   PC
   ================================================== */

@media (min-width: 1200px) {

  .staff-specialty {
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 560px;
  }

  .staff-specialty__content {
    padding: 80px 7vw;
  }

  .staff-specialty__content h2 {
    font-size: 52px;
    margin-bottom: 28px;
  }

  .staff-specialty__content > p:not(.section-label) {
    max-width: 600px;
    font-size: 17px;
    line-height: 2.1;
    margin-bottom: 38px;
  }

  .specialty-list {
    gap: 10px;
  }

  .specialty-list li {
    min-height: 46px;
    font-size: 13px;
  }

}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 767px) {

  .staff-specialty {
    grid-template-columns: 1fr 1fr;
    min-height: 330px;
  }

  .staff-specialty__content {
    padding: 34px 18px;
    justify-content: center;
  }

  .staff-specialty .section-label {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .staff-specialty__content h2 {
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 1.45;
    letter-spacing: 0.05em;
  }

  .staff-specialty__content > p:not(.section-label) {
    margin-bottom: 18px;
    font-size: 10px;
    line-height: 1.8;
    letter-spacing: 0;
  }

  .specialty-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
  }

  .specialty-list li {
    min-height: 27px;
    padding: 4px 2px;
    font-size: 7px;
    line-height: 1.3;
    letter-spacing: 0;
  }

  .staff-specialty__image {
    height: 100%;
  }

  .staff-specialty__image img {
    object-position: center;
  }

}
/* =========================================================
   05｜HOBBY
========================================================= */

.staff-hobby {
  position: relative;
  width: 100%;
  padding: 80px 24px 0;
  background: #111;
  color: #fff;
  overflow: hidden;
}

.staff-hobby__content {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 45px;
}

.staff-hobby .section-label {
  margin: 0 0 28px;
  color: #fff;
}

.staff-hobby__content h2 {
  margin: 0 0 30px;
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.staff-hobby__content > p:not(.section-label) {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 2.15;
  letter-spacing: 0.04em;
}

/* --- メディア --- */

.staff-hobby__media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}

.hobby-media {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #1a1a1a;
}

.hobby-media img,
.hobby-media video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* --- reveal --- */

.staff-hobby .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.staff-hobby .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.staff-hobby .staff-hobby__content .reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.staff-hobby .staff-hobby__content .reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.staff-hobby .staff-hobby__content .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.staff-hobby .hobby-media:nth-child(1) {
  transition-delay: 0.05s;
}

.staff-hobby .hobby-media:nth-child(2) {
  transition-delay: 0.12s;
}

.staff-hobby .hobby-media:nth-child(3) {
  transition-delay: 0.19s;
}


/* =========================================================
   PC
========================================================= */

@media (min-width: 1024px) {

  .staff-hobby {
    padding: 90px 70px 0;
  }

  .staff-hobby__content {
    padding-bottom: 55px;
  }

  .staff-hobby__content h2 {
    font-size: 54px;
    margin-bottom: 34px;
  }

  .staff-hobby__content > p:not(.section-label) {
    font-size: 17px;
    line-height: 2.1;
  }

  .staff-hobby__media {
    grid-template-columns: repeat(3, 1fr);
  }

}


/* =========================================================
   スマートフォン
========================================================= */

@media (max-width: 767px) {

  .staff-hobby {
    padding: 70px 20px 0;
  }

  .staff-hobby__content {
    padding-bottom: 40px;
  }

  .staff-hobby .section-label {
    margin-bottom: 22px;
  }

  .staff-hobby__content h2 {
    font-size: 32px;
    line-height: 1.45;
    margin-bottom: 25px;
  }

  .staff-hobby__content > p:not(.section-label) {
    font-size: 15px;
    line-height: 2;
  }

  .staff-hobby__media {
    grid-template-columns: 1fr;
  }

  .hobby-media img,
  .hobby-media video {
    aspect-ratio: 4 / 3;
  }

}


/* =========================================================
   動きを減らす設定
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .staff-hobby .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

}
/* =========================================================
   06｜MESSAGE
========================================================= */

.staff-message {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  background: #f7f6f3;
  color: #222;
  overflow: hidden;
}


/* ---------------------------------------------------------
   MESSAGE｜CONTENT
--------------------------------------------------------- */

.staff-message__content {
  padding: 80px 24px 55px;
}

.staff-message .section-label {
  margin: 0 0 26px;
  color: #222;
}

.staff-message__content h2 {
  margin: 0 0 32px;
  color: #222;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.staff-message__content > p:not(.section-label) {
  margin: 0 0 22px;
  max-width: 700px;
  color: #333;
  font-size: 15px;
  font-weight: 400;
  line-height: 2.15;
  letter-spacing: 0.04em;
}

.staff-message__content > p:last-child {
  margin-bottom: 0;
}


/* ---------------------------------------------------------
   MESSAGE｜IMAGE
--------------------------------------------------------- */

.staff-message__image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.staff-message__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}


/* ---------------------------------------------------------
   MESSAGE｜SIDE COPY
--------------------------------------------------------- */

.staff-message__side-copy {
  display: none;
}


/* ---------------------------------------------------------
   MESSAGE｜REVEAL
--------------------------------------------------------- */

.staff-message .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.staff-message .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.staff-message__content .reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.staff-message__content .reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.staff-message__content .reveal:nth-child(3) {
  transition-delay: 0.19s;
}

.staff-message__content .reveal:nth-child(4) {
  transition-delay: 0.26s;
}

.staff-message__image.reveal {
  transition-delay: 0.15s;
}

.staff-message__side-copy.reveal {
  transition-delay: 0.25s;
}


/* =========================================================
   07｜CTA
========================================================= */

.staff-cta {
  position: relative;
  width: 100%;
  padding: 80px 24px 85px;
  background: #111;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.staff-cta__content {
  max-width: 900px;
  margin: 0 auto 42px;
}

.staff-cta__content h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.staff-cta__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
}


/* ---------------------------------------------------------
   CTA｜BUTTONS
--------------------------------------------------------- */

.staff-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.cta-button span:last-child {
  font-size: 20px;
  line-height: 1;
}

.cta-button--reserve {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.cta-button--reserve:hover {
  background: transparent;
  color: #fff;
}

.cta-button--contact:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
}


/* ---------------------------------------------------------
   CTA｜REVEAL
--------------------------------------------------------- */

.staff-cta .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.staff-cta .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.staff-cta__content h2 {
  transition-delay: 0.05s;
}

.staff-cta__content p {
  transition-delay: 0.12s;
}

.cta-button--reserve {
  transition-delay: 0.18s;
}

.cta-button--contact {
  transition-delay: 0.25s;
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1023px) {

  .staff-message__content {
    padding: 90px 50px 60px;
  }

  .staff-message__content h2 {
    font-size: 42px;
  }

  .staff-message__content > p:not(.section-label) {
    font-size: 16px;
  }

  .staff-message__image img {
    aspect-ratio: 16 / 10;
  }

  .staff-cta {
    padding: 100px 40px;
  }

  .staff-cta__content h2 {
    font-size: 36px;
  }

}


/* =========================================================
   PC
========================================================= */

@media (min-width: 1024px) {

  /* -------------------------------------------------------
     MESSAGE
  ------------------------------------------------------- */

  .staff-message {
    grid-template-columns: 54% 46%;
    min-height: 680px;
  }

  .staff-message__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 8vw 90px 9vw;
  }

  .staff-message .section-label {
    margin-bottom: 32px;
  }

  .staff-message__content h2 {
    margin-bottom: 38px;
    font-size: 48px;
    line-height: 1.4;
  }

  .staff-message__content > p:not(.section-label) {
    max-width: 650px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 2.15;
  }

  .staff-message__image {
    height: 100%;
  }

  .staff-message__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .staff-message__side-copy {
    display: block;
    position: absolute;
    right: 25px;
    bottom: 42px;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.28em;
    text-align: right;
  }


  /* -------------------------------------------------------
     CTA
  ------------------------------------------------------- */

  .staff-cta {
    padding: 110px 70px 120px;
  }

  .staff-cta__content {
    margin-bottom: 48px;
  }

  .staff-cta__content h2 {
    margin-bottom: 22px;
    font-size: 42px;
    line-height: 1.5;
  }

  .staff-cta__content p {
    font-size: 12px;
    letter-spacing: 0.38em;
  }

  .staff-cta__actions {
    flex-direction: row;
    max-width: 620px;
    gap: 16px;
  }

  .cta-button {
    min-height: 64px;
    padding: 0 26px;
    font-size: 14px;
  }

}


/* =========================================================
   LARGE PC
========================================================= */

@media (min-width: 1440px) {

  .staff-message__content {
    padding-left: 11vw;
    padding-right: 7vw;
  }

  .staff-message__content h2 {
    font-size: 52px;
  }

  .staff-message__content > p:not(.section-label) {
    font-size: 17px;
  }

  .staff-message__side-copy {
    right: 35px;
    bottom: 50px;
  }

}


/* =========================================================
   MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .staff-message .reveal,
  .staff-cta .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cta-button {
    transition: none;
  }

}