@charset "UTF-8";
/* ==========================================================================
   Page ID: 6480 (スタッフ紹介ページ) SCSSスタイル
   Fixed Version (Typography & Layout Fix)
   ========================================================================== */
/* -----------------------------------------------------------------
   0. GLOBAL SETTINGS & RESETS
   ----------------------------------------------------------------- */
body.page-id-6480 #loading {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: -9999 !important;
}

html, body.page-id-6480 {
  overflow-x: hidden !important;
  width: 100%;
  margin: 0;
  padding: 0;
}

.staff-page-wrapper {
  width: 100%;
  overflow-x: hidden;
}
.staff-page-wrapper *, .staff-page-wrapper *::before, .staff-page-wrapper *::after {
  box-sizing: border-box;
}
.staff-page-wrapper h1, .staff-page-wrapper h2, .staff-page-wrapper h3, .staff-page-wrapper h4, .staff-page-wrapper h5, .staff-page-wrapper h6, .staff-page-wrapper p {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* -----------------------------------------------------------------
   1. Header Overlay
   ----------------------------------------------------------------- */
body.page-id-6480 {
  background-color: #faf9f6 !important;
  color: #2d2d2d !important;
}
body.page-id-6480 header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999 !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
  transition: background-color 0.3s ease;
  padding-right: 0 !important;
}
body.page-id-6480 .main-visual.under {
  display: none !important;
}
body.page-id-6480 #breadcrumb {
  position: relative;
  z-index: 50;
  margin-top: 0;
  padding-top: 24px;
  background-color: transparent;
  width: 100%;
  background-image: none;
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  body.page-id-6480 #breadcrumb {
    padding-top: 48px;
  }
}
body.page-id-6480 #breadcrumb .wrapper {
  width: auto;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* -----------------------------------------------------------------
   2. Hero Animation
   ----------------------------------------------------------------- */
.staff-hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background-color: #faf9f6;
  overflow: hidden;
}
.staff-hero.is-completed {
  position: absolute;
  z-index: 1;
  height: 100vh;
}
.staff-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 1.5s ease-in-out;
  opacity: 1;
}
.staff-hero__bg.fade-out {
  opacity: 0;
}
.staff-hero__slide-track {
  height: 100%;
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  transform: translateX(100vw);
  transition: transform 10s linear;
}
.staff-hero__slide-track.is-sliding {
  transform: translateX(-100%);
}
.staff-hero__slide-item {
  height: 100%;
  width: 50vw;
  flex-shrink: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .staff-hero__slide-item {
    width: 33.33vw;
  }
}
.staff-hero__slide-item .img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.staff-hero__slide-item .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.9;
}
.staff-hero__picks {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.staff-hero__picks.is-visible {
  opacity: 1;
}
.staff-hero__picks .picks-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .staff-hero__picks .picks-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
  }
}
.staff-hero__picks .pick-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.staff-hero__picks .pick-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.staff-hero__picks .pick-item:hover .img-box img {
  transform: scale(1.05);
}
.staff-hero__picks .pick-item .img-box {
  position: absolute;
  inset: 0;
  background-color: #e5e5e5;
}
.staff-hero__picks .pick-item .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 25%;
     object-position: center 25%;
  transition: transform 1.5s ease;
}
@media screen and (min-width: 768px) {
  .staff-hero__picks .pick-item .img-box img {
    -o-object-position: center top;
       object-position: center top;
  }
}
.staff-hero__picks .pick-item .img-box .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}
.staff-hero__picks .pick-item:hover .img-box .overlay {
  background: rgba(0, 0, 0, 0.1);
}
.staff-hero__picks .pick-item .info-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 100%);
  padding-top: 80px;
  z-index: 2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .staff-hero__picks .pick-item .info-box {
    padding: 40px;
  }
}
.staff-hero__picks .pick-item .info-box .cat {
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  text-transform: uppercase;
  border-left: 2px solid #8a3c3c;
  padding-left: 8px;
}
.staff-hero__picks .pick-item .info-box .name-area {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.staff-hero__picks .pick-item .info-box .name-area h3 {
  color: #fff;
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .staff-hero__picks .pick-item .info-box .name-area h3 {
    font-size: 28px;
  }
}
.staff-hero__picks .pick-item .info-box .name-area .en {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 4px 0 0;
}
.staff-hero__picks .pick-item .info-box .name-area .icon {
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.staff-hero__picks .pick-item:hover .info-box .icon {
  opacity: 1;
  transform: translate(2px, -2px);
}
.staff-hero__picks .scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: auto;
  right: 10%;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #fff;
  opacity: 0;
  transition: opacity 1s ease 1s;
  cursor: pointer;
  z-index: 20;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .staff-hero__picks .scroll-indicator {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
.staff-hero__picks .scroll-indicator.is-visible {
  opacity: 1;
}
.staff-hero__picks .scroll-indicator span {
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: bold;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.staff-hero__picks .scroll-indicator .line-wrap {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.staff-hero__picks .scroll-indicator .line-wrap .line-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation: scrollDown 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
/* -----------------------------------------------------------------
   3. Main Content
   ----------------------------------------------------------------- */
.staff-main-content {
  position: relative;
  z-index: 20;
  background-color: #faf9f6;
  margin-top: 100vh;
  opacity: 0;
  transition: opacity 1s ease;
  width: 100%;
  overflow-x: hidden;
}
.staff-main-content.is-visible {
  opacity: 1;
}

.staff-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 96px;
  overflow: hidden;
}

.fade-in-target {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.staff-intro {
  margin-bottom: 64px;
  padding-top: 64px;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 48px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .staff-intro {
    margin-bottom: 96px;
    padding-top: 96px;
  }
}
.staff-intro .intro-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .staff-intro .intro-inner {
    flex-direction: row;
    gap: 64px;
  }
}
@media screen and (min-width: 768px) {
  .staff-intro .intro-head {
    width: 33.33%;
  }
}
.staff-intro .intro-head .sub-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: bold;
  color: #8a3c3c;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.staff-intro .intro-head .sub-title .line {
  width: 32px;
  height: 1px;
  background-color: #8a3c3c;
}
.staff-intro .intro-head .main-title {
  font-size: 40px !important;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.2 !important;
  color: #2d2d2d;
}
@media screen and (min-width: 768px) {
  .staff-intro .intro-head .main-title {
    font-size: 60px !important;
    line-height: 1.1 !important;
  }
}
.staff-intro .intro-head .main-title br {
  display: block;
}
@media screen and (min-width: 768px) {
  .staff-intro .intro-body {
    width: 66.66%;
  }
}
.staff-intro .intro-body .catch {
  font-size: 18px !important;
  font-family: "Noto Serif JP", serif;
  color: #2d2d2d;
  margin-bottom: 24px;
  line-height: 1.8 !important;
}
@media screen and (min-width: 768px) {
  .staff-intro .intro-body .catch {
    font-size: 24px !important;
  }
}
.staff-intro .intro-body .catch .highlight {
  color: #8a3c3c;
}
.staff-intro .intro-body .desc {
  font-size: 14px;
  color: #6a6a6a;
  line-height: 2 !important;
  text-align: justify;
}

.staff-nav {
  margin-bottom: 96px;
}
.staff-nav .nav-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.staff-nav .nav-label .line {
  height: 1px;
  width: 32px;
  background-color: #8a3c3c;
}
.staff-nav .nav-label .text {
  font-size: 12px;
  font-weight: bold;
  color: #8a3c3c;
  letter-spacing: 0.1em;
}
.staff-nav .nav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .staff-nav .nav-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
.staff-nav .nav-grid .nav-btn {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px 20px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  display: block;
}
.staff-nav .nav-grid .nav-btn:hover {
  border-color: #8a3c3c;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.staff-nav .nav-grid .nav-btn:hover .arrow-icon {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.staff-nav .nav-grid .nav-btn:hover .cat-jp {
  color: #8a3c3c;
}
.staff-nav .nav-grid .nav-btn .cat-en {
  display: block;
  font-size: 11px;
  color: #8a3c3c;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.staff-nav .nav-grid .nav-btn .cat-jp {
  display: block;
  font-size: 15px;
  color: #2d2d2d;
  font-weight: bold;
  transition: color 0.3s;
}
.staff-nav .nav-grid .nav-btn .arrow-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  color: #8a3c3c;
  opacity: 0;
  transform: translateY(-50%) translateX(-4px);
  transition: all 0.3s;
  font-weight: bold;
  font-family: serif;
}

.staff-executive {
  margin-bottom: 96px;
}
@media screen and (min-width: 768px) {
  .staff-executive {
    margin-bottom: 128px;
  }
}
.staff-executive .exec-card {
  background-color: #fff;
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .staff-executive .exec-card {
    padding: 48px;
  }
}
.staff-executive .exec-card .deco-line {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 6px;
  background-color: #8a3c3c;
}
.staff-executive .exec-card .exec-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .staff-executive .exec-card .exec-inner {
    flex-direction: row;
    gap: 64px;
    align-items: center;
  }
}
.staff-executive .exec-card .exec-img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .staff-executive .exec-card .exec-img {
    width: 45%;
  }
}
.staff-executive .exec-card .exec-img .img-frame {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background-color: #e5e5e5;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .staff-executive .exec-card .exec-img .img-frame {
    margin: 0;
  }
}
.staff-executive .exec-card .exec-img .img-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.staff-executive .exec-card .exec-txt {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .staff-executive .exec-card .exec-txt {
    width: 55%;
  }
}
.staff-executive .exec-card .exec-txt .job-title {
  color: #8a3c3c;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.staff-executive .exec-card .exec-txt .name {
  font-size: 28px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #2d2d2d;
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .staff-executive .exec-card .exec-txt .name {
    font-size: 36px;
  }
}
.staff-executive .exec-card .exec-txt .name-en {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.staff-executive .exec-card .exec-txt .desc-box {
  background-color: #faf9f6;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 24px;
}
.staff-executive .exec-card .exec-txt .desc-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}
.staff-executive .exec-card .exec-txt .hobbies h4 {
  font-size: 12px;
  font-weight: bold;
  color: #8a3c3c;
  margin-bottom: 8px;
}
.staff-executive .exec-card .exec-txt .hobbies .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.staff-executive .exec-card .exec-txt .hobbies .tags span {
  font-size: 13px;
  color: #666;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2px;
}

.staff-lists {
  background-color: #fff;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.02);
  border-top: 1px solid #f0f0f0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .staff-lists {
    border-radius: 60px 60px 0 0;
  }
}

.staff-category-sec {
  padding: 64px 16px;
  border-bottom: 1px solid #f0f0f0;
}
.staff-category-sec:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .staff-category-sec {
    padding: 96px 24px;
  }
}
.staff-category-sec .cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .staff-category-sec .cat-header {
    margin-bottom: 96px;
  }
}
.staff-category-sec .cat-header .bg-text {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #2d2d2d;
  opacity: 0.03;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .staff-category-sec .cat-header .bg-text {
    font-size: 100px;
    top: -50px;
    left: -20px;
  }
}
.staff-category-sec .cat-header .main-text {
  position: relative;
  z-index: 1;
}
.staff-category-sec .cat-header .main-text h2 {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  color: #2d2d2d;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .staff-category-sec .cat-header .main-text h2 {
    font-size: 32px;
  }
}
.staff-category-sec .cat-header .main-text p {
  font-size: 12px;
  font-weight: bold;
  color: #8a3c3c;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.staff-category-sec .cat-header .line {
  flex-grow: 1;
  height: 1px;
  background-color: #e5e5e5;
  margin-left: 16px;
}
.staff-category-sec .member-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .staff-category-sec .member-list {
    gap: 96px;
  }
}
.staff-category-sec .member-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .staff-category-sec .member-card {
    flex-direction: row;
    gap: 64px;
  }
}
@media screen and (min-width: 768px) {
  .staff-category-sec .member-card.layout-reverse {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .staff-category-sec .member-card.layout-reverse .member-info {
    text-align: right;
    align-items: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .staff-category-sec .member-card.layout-reverse .member-info .tags, .staff-category-sec .member-card.layout-reverse .member-info .hobby-tags {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .staff-category-sec .member-card.layout-reverse .member-info .info-head {
    align-items: flex-end;
  }
}
.staff-category-sec .member-card .member-img {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .staff-category-sec .member-card .member-img {
    width: 40%;
  }
}
.staff-category-sec .member-card .member-img .img-bg {
  position: absolute;
  top: 16px;
  left: -8px;
  width: 100%;
  height: 100%;
  background-color: #f2efe9;
  border-radius: 16px;
  z-index: 0;
  transition: transform 0.5s ease;
}
@media screen and (min-width: 768px) {
  .staff-category-sec .member-card .member-img .img-bg {
    left: -16px;
  }
}
.staff-category-sec .member-card .member-img .img-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 3/4;
  width: 80%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background-color: #e5e5e5;
}
@media screen and (min-width: 768px) {
  .staff-category-sec .member-card .member-img .img-frame {
    width: 100%;
  }
}
.staff-category-sec .member-card .member-img .img-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s ease;
}
.staff-category-sec .member-card .member-img:hover .img-bg {
  transform: scale(1.03);
}
.staff-category-sec .member-card .member-img:hover .img-frame img {
  transform: scale(1.05);
}
.staff-category-sec .member-card .member-info {
  width: 100%;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .staff-category-sec .member-card .member-info {
    width: 60%;
    padding-top: 0;
    align-items: flex-start;
  }
}
.staff-category-sec .member-card .member-info .info-head {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .staff-category-sec .member-card .member-info .info-head {
    align-items: flex-start;
  }
}
.staff-category-sec .member-card .member-info .info-head .job-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8a3c3c;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 8px;
}
.staff-category-sec .member-card .member-info .info-head .job-title .line {
  width: 32px;
  height: 1px;
  background-color: #8a3c3c;
}
.staff-category-sec .member-card .member-info .info-head .name {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #2d2d2d;
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .staff-category-sec .member-card .member-info .info-head .name {
    font-size: 36px;
  }
}
.staff-category-sec .member-card .member-info .info-head .name-en {
  font-size: 10px;
  color: #999;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.staff-category-sec .member-card .member-info .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.staff-category-sec .member-card .member-info .tags span {
  font-size: 12px;
  color: #555;
  background-color: #f5f5f5;
  padding: 4px 12px;
  border-radius: 99px;
}
.staff-category-sec .member-card .member-info .desc-box {
  position: relative;
  background-color: #faf9f6;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .staff-category-sec .member-card .member-info .desc-box {
    padding: 32px;
  }
}
.staff-category-sec .member-card .member-info .desc-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}
.staff-category-sec .member-card .member-info .hobbies h4 {
  font-size: 12px;
  font-weight: bold;
  color: #8a3c3c;
  margin-bottom: 8px;
}
.staff-category-sec .member-card .member-info .hobbies .hobby-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.staff-category-sec .member-card .member-info .hobbies .hobby-tags span {
  font-size: 13px;
  color: #666;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2px;
}
.staff-category-sec .divider {
  width: 100%;
  max-width: 300px;
  height: 1px;
  background-color: #eee;
  margin: 0 auto;
}

.staff-cta {
  margin-top: 0;
  background-color: #f0eee9;
  padding: 80px 24px;
  border-radius: 0 0 40px 40px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .staff-cta {
    border-radius: 0 0 60px 60px;
  }
}
.staff-cta .cta-inner {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 24px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .staff-cta .cta-inner {
    padding: 64px;
  }
}
.staff-cta .cta-inner h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  color: #2d2d2d;
  margin-bottom: 24px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .staff-cta .cta-inner h2 {
    font-size: 28px;
  }
}
.staff-cta .cta-inner .lead {
  font-size: 14px;
  color: #666;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .staff-cta .cta-inner .lead {
    font-size: 16px;
  }
}
.staff-cta .cta-inner .btn-area {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .staff-cta .cta-inner .btn-area {
    flex-direction: row;
  }
}
.staff-cta .cta-inner .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  width: 100%;
  max-width: 300px;
  background-color: #8a3c3c;
  color: #fff;
  font-weight: bold;
  border-radius: 99px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(138, 60, 60, 0.2);
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .staff-cta .cta-inner .cta-btn {
    width: auto;
    max-width: none;
    padding: 16px 80px;
    margin-bottom: 0;
    margin-right: 2rem;
  }
}
.staff-cta .cta-inner .cta-btn:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .staff-cta .cta-inner .cta-btn:last-of-type {
    margin-right: 0;
  }
}
.staff-cta .cta-inner .cta-btn:hover {
  background-color: #662d2d;
  transform: translateY(-2px);
}/*# sourceMappingURL=staff.css.map */