@charset "utf-8";
/* ==========================================================================
   shop-staff.css
   ショップ＆スタイリストページ（shop-staff.php）専用スタイル
   ========================================================================== */

/* ---------------------------------
   店舗情報／営業カレンダー
--------------------------------- */
.info-calendar-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: start;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}

.overview-box {
  border: 1px solid var(--line);
  border-radius: 3px;
}

.overview-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  border-radius: 3px;
  overflow: hidden;
}

.overview-table th,
.overview-table td {
  text-align: left;
}

.overview-table tr {
  border-bottom: 1px solid var(--line);
}

.overview-table tr:last-child {
  border-bottom: none;
}

.overview-table th {
  width: 150px;
  text-align: left;
  vertical-align: top;
  padding: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.03em;
  background: var(--beige-100) !important;
  border-color: var(--line) !important;
}

.overview-table td {
  padding: 20px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  background: var(--bg) !important;
  border-color: var(--line) !important;
}

.overview-table .sns-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.overview-table .sns-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 16px;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}

.overview-table .sns-links a:hover {
  background: #8b5b27db;
  color: var(--bg);
  border-color: #8b5b27db;
}

@media (max-width: 900px) {
  .info-calendar-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .overview-table,
  .overview-table tbody,
  .overview-table tr,
  .overview-table th,
  .overview-table td {
    display: block;
    width: auto;
  }

  .overview-table th {
    padding: 10px;
  }

  .overview-table td {
    padding: 10px;
  }
}

/* ---------------------------------
   営業カレンダー
   ※色・フォントは css/calendar-embed.css と共通。
     ここではサイズ（拡大）のみを調整する。
--------------------------------- */
.calendar-column {
  display: flex;
  flex-direction: column;
}

.calendar-note {
  max-width: none;
  margin: 18px 0 0;
  text-align: left;
}

.calendar-note .accent {
  color: #a57b52;
  font-style: italic;
  font-family: var(--font-en);
  margin-right: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.calendar-note p {
  font-size: 13.5px;
  line-height: 2;
  color: var(--text);
}

.calendar-note .calendar-insta {
  color: #8b5b27db;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.calendar-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
}

.calendar-wrap .calendar-embed {
  width: 100%;
  font-size: 15px;
  margin-top: 0;
}

.calendar-wrap .calendar-embed #calendarTable {
  width: 100% !important;
  table-layout: fixed;
  border-spacing: 1px 0;
  border-radius: 3px;
  overflow: hidden;
}

.calendar-wrap .calendar-embed table.navNextPrev {
  font-size: 16px;
}

.calendar-wrap .calendar-embed h2#headerYm {
  font-size: 19px !important;
  padding: 14px 0;
}

.calendar-wrap .calendar-embed #calendarTable th {
  padding: 8px;
  font-size: 13px;
}

.calendar-wrap .calendar-embed #calendarTable td {
  padding: 5px 10px;
  font-size: 10px;
}

.calendar-wrap .calendar-legend {
  justify-content: flex-start;
  margin-top: 5px;
  padding-left: 2px;
  font-size: 12px;
  gap: 4px;
}

.calendar-wrap .calendar-legend-swatch {
  width: 10px;
  height: 10px;
  position: relative;
  top: -1px;
}

@media (max-width: 600px) {
  .calendar-wrap .calendar-embed {
    font-size: 13px;
  }

  .calendar-wrap .calendar-embed #calendarTable td {
    padding: 12px 6px;
    font-size: 13px;
  }
}

/* ---------------------------------
   アクセス
--------------------------------- */

#access-section {
  background: url(../img/bk/beigu-bk.jpg) no-repeat;
  background-size: cover;
}

.access-address-block {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.access-address-block p {
  font-size: 13.5px;
  line-height: 2;
}

/* ---------------------------------
   ギャラリー
--------------------------------- */

#gallery-section {
  background: none;
}

.gallery {
  columns: 4;
  padding: 0 5px;
  margin: 0;
  gap: 5px;
}

.gallery li {
  margin-bottom: 5px;
  list-style: none;
  break-inside: avoid;
}

.gallery img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 6px;
  transition: opacity 0.3s var(--ease);
}

.gallery a:hover img {
  opacity: 0.85;
}

@media (max-width: 900px) {
  .gallery {
    columns: 3;
  }
}

@media (max-width: 600px) {
  .gallery {
    columns: 2;
    padding: 0;
  }

  .gallery li {
    margin-bottom: 10px;
  }
}

/* ---------------------------------
   スタイリスト
--------------------------------- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}

.staff-card {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 28px;
  text-align: left;
  cursor: pointer;
  background: var(--bg);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(58, 54, 51, 0.08);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(58, 54, 51, 0.14);
}

.staff-card-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--beige-100);
  color: #8b5b27db;
  font-size: 48px;
  border: 1px solid var(--line);
}

.staff-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.staff-card-body {
  flex: 1;
  min-width: 0;
}

.staff-card-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.staff-card-title {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-light);
}

.staff-card-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 22px;
  border-radius: 999px;
  border: 1px solid var(--beige-400);
  background: var(--beige-100);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    gap 0.3s var(--ease);
}

.staff-card-more span {
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
}

.staff-card:hover .staff-card-more {
  gap: 12px;
  background: #8b5b27db;
  border-color: #8b5b27db;
  color: #fff;
}

@media (max-width: 900px) {
  .staff-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .staff-card {
    gap: 18px;
    padding: 20px;
  }

  .staff-card-photo {
    width: 100px;
    height: 100px;
    font-size: 32px;
  }

  .staff-card-name {
    font-size: 15px;
  }

  .staff-card-more {
    margin-top: 10px;
    padding: 7px 16px;
  }
}

/* ---------------------------------
   スタイリスト・モーダル
--------------------------------- */
.staff-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(30, 26, 22, 0.7);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s var(--ease);
}

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

.staff-modal {
  position: relative;
  width: min(820px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--bg);
  border-radius: 24px;
  padding: 46px 46px 40px;
  transform: translateY(16px);
  transition: transform 0.4s var(--ease);
}

.staff-modal-overlay.is-open .staff-modal {
  transform: translateY(0);
}

.staff-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--beige-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}

.staff-modal-close span {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
}

.staff-modal-close span:first-child {
  transform: rotate(45deg);
}
.staff-modal-close span:last-child {
  transform: rotate(-45deg);
}

.staff-modal-close:hover {
  transform: rotate(90deg);
}

.staff-modal-main {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.staff-modal-photo-col {
  flex: 0 0 200px;
  text-align: center;
}

.staff-modal-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--beige-100);
  color: #8b5b27db;
  font-size: 32px;
}

.staff-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.staff-modal-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--beige-400);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.staff-modal-info {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.staff-modal-heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 15px;
}

.staff-modal-name-en {
  font-style: italic;
  font-size: 50px;
  color: #8b5b27db;
  font-family: "Allura", cursive;
  line-height: 1;
}

.staff-modal-name-jp {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.staff-modal-divider {
  height: 14px;
  margin: 14px 0 26px;
  background: url("../img/decoration/name-underline.png");
  background-size: cover;
}

.staff-modal-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}

.staff-modal-fact dt {
  font-size: 12px;
  font-weight: 700;
  color: var(--beige-500);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.staff-modal-fact dd {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
}

.staff-modal-message {
  position: relative;
  background: var(--beige-100);
  border-radius: 5px 5px 0 0;
  padding: 18px 0 0;
  margin-bottom: 24px;
}

.message-content {
  padding: 0 20px;
}

.staff-modal-message-label {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--beige-500);
  margin-bottom: 8px;
}

.staff-modal-message-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--text);
}

.staff-modal-message-body {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--text-light);
}

.staff-modal-message-flower {
  height: 45px;
  margin-top: 16px;
  background: url(../img/decoration/message-flower.png) center / contain repeat;
}

.staff-modal-section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--beige-500);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.staff-modal-history {
  margin-bottom: 20px;
}

.staff-modal-history li {
  position: relative;
  padding-left: 16px;
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--text);
}

.staff-modal-history li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--beige-400);
}

@media (max-width: 700px) {
  .staff-modal {
    padding: 80px 20px 32px;
  }

  .staff-modal-main {
    flex-direction: column;
    align-items: center;
  }

  .staff-modal-photo-col {
    flex: 0 0 auto;
  }

  .staff-modal-heading {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .staff-modal-facts {
    grid-template-columns: 1fr;
  }

  .staff-modal-message-flower {
    height: 30px;
    background: url(../img/decoration/message-flower.png) center / cover repeat;
  }
}
