/*
Theme Name: Salonity MØBEL Complete
Theme URI: https://salonity.jp/
Author: Salonity
Description: Salonity販売用の美容室向けワンページテーマ。Salonity設定・画像設定・スマホ用アイコンメニューに対応。
Version: 2.2.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
Text Domain: salonity-mobel
*/

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600&family=Zen+Kaku+Gothic+Antique:wght@400;500;700&display=swap');

html { scroll-behavior: smooth; }
body { margin: 0; }

.mob-el {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222;
  background: #faf9f6;
  line-height: 1.9;
}

.mob-el * {
  box-sizing: border-box;
}

.mob-el img {
  width: 100%;
  display: block;
}

.mob-inner {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.mob-section {
  padding: 110px 0;
}

.mob-title {
  font-family: "EB Garamond", serif;
  font-size: clamp(38px, 6vw, 82px);
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.1;
  margin: 0 0 24px;
}

.mob-ja-title {
  font-size: 14px;
  letter-spacing: .18em;
  color: #8c7b6b;
  margin-bottom: 28px;
}

/* Animation */
.mob-fade {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 1s ease, transform 1s ease;
}

.mob-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */
.mob-hero {
  position: relative;
  min-height: 92vh;
  background-image:
    linear-gradient(rgba(0,0,0,.28), rgba(0,0,0,.28)),
    url("https://salonity.jp/wp-content/uploads/2026/06/ChatGPT-Image-2026年6月21日-21_13_46.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.mob-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: mobHeroZoom 12s ease forwards;
}

.mob-hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 90%);
  margin: 0 auto;
}

.mob-hero h1 {
  font-family: "EB Garamond", serif;
  font-size: clamp(52px, 10vw, 130px);
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: mobHeroText 1.4s ease forwards;
}

.mob-hero p {
  margin-top: 24px;
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: .2em;
  opacity: 0;
  transform: translateY(20px);
  animation: mobHeroText 1.4s ease .35s forwards;
}

@keyframes mobHeroText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobHeroZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}

/* Concept */
.mob-concept {
  text-align: center;
  background: #fff;
}

.mob-concept-copy {
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: .12em;
}

.mob-concept-text {
  max-width: 720px;
  margin: 32px auto 0;
  font-size: 15px;
  color: #555;
}

/* About */
.mob-about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}

.mob-about-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.mob-about-img img {
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.mob-about-img:hover img {
  transform: scale(1.07);
}

.mob-about-text p {
  color: #555;
  font-size: 15px;
}

/* Menu */
.mob-menu {
  background: #f1eee9;
}

.mob-menu-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.mob-menu-card {
  background: #fff;
  padding: 42px 34px;
  min-height: 230px;
  transition: transform .4s ease, box-shadow .4s ease;
}

.mob-menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.mob-menu-card h3 {
  font-family: "EB Garamond", serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: .08em;
  margin: 0 0 18px;
}

.mob-menu-card p {
  font-size: 14px;
  color: #666;
}

.mob-price {
  margin-top: 24px;
  font-family: "EB Garamond", serif;
  font-size: 22px;
}

/* Gallery */
.mob-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 50px;
}

.mob-gallery-grid a {
  overflow: hidden;
  display: block;
}

.mob-gallery-grid img {
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.mob-gallery-grid a:hover img {
  transform: scale(1.08);
}

/* CTA */
.mob-cta {
  background: #2b2926;
  color: #fff;
  text-align: center;
}

.mob-cta p {
  color: #ddd;
  margin-bottom: 34px;
}

.mob-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.mob-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 28px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  letter-spacing: .12em;
  font-size: 14px;
  transition: .3s;
}

.mob-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.2);
  transition: .5s;
}

.mob-btn:hover::before {
  left: 100%;
}

.mob-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 28px;
  border: 1px solid #fff;
  color: #fff !important;
  text-decoration: none;
  letter-spacing: .12em;
  font-size: 14px;
  transition: .3s;
}

.mob-btn:hover {
  background: rgba(255,255,255,.08);
  color: #fff !important;
}

/* Info */
.mob-info-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.mob-info dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px 20px;
  font-size: 14px;
}

.mob-info dt {
  color: #8c7b6b;
}

.mob-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(1);
}

/* Responsive */
@media (max-width: 900px) {
  .mob-section {
    padding: 78px 0;
  }

  .mob-about-grid,
  .mob-info-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .mob-menu-list {
    grid-template-columns: 1fr;
  }

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

  .mob-info dl {
    grid-template-columns: 1fr;
  }
}


/* Complete Global Header / Navigation */
body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
}

.site-header-inner {
  width: min(1120px, 90%);
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo a {
  font-family: "EB Garamond", serif;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: .12em;
  color: #fff;
  text-decoration: none;
  text-transform: none;
  transition: color .35s ease;
}

.site-header.is-scrolled .site-logo a,
body.nav-open .site-logo a {
  color: #222;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.global-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.global-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-menu a,
.header-reserve {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .14em;
  line-height: 1;
  transition: opacity .25s ease, color .35s ease, border-color .35s ease, background .35s ease;
}

.site-header.is-scrolled .global-menu a,
.site-header.is-scrolled .header-reserve,
body.nav-open .global-menu a,
body.nav-open .header-reserve {
  color: #222;
}

.global-menu a:hover,
.header-reserve:hover {
  opacity: .62;
}

.header-reserve {
  border: 1px solid rgba(255,255,255,.86);
  padding: 13px 20px;
  min-width: 116px;
  justify-content: center;
}

.site-header.is-scrolled .header-reserve,
body.nav-open .header-reserve {
  border-color: rgba(34,34,34,.72);
}

.header-reserve:hover {
  background: rgba(255,255,255,.16);
}

.site-header.is-scrolled .header-reserve:hover,
body.nav-open .header-reserve:hover {
  background: rgba(34,34,34,.06);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  cursor: pointer;
  letter-spacing: .12em;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle em {
  font-style: normal;
  font-size: 12px;
}

.site-header.is-scrolled .nav-toggle,
body.nav-open .nav-toggle {
  color: #222;
}

.nav-toggle span + span {
  margin-top: 6px;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(35deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-35deg);
}

@media (max-width: 900px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .site-header-inner {
    height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(250,249,246,.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .3s ease, transform .3s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-menu {
    flex-direction: column;
    gap: 26px;
  }

  .global-menu a {
    color: #222;
    font-size: 17px;
  }

  .header-reserve {
    color: #222;
    border-color: rgba(34,34,34,.72);
    min-width: 220px;
    padding: 16px 24px;
  }
}

@media (max-width: 600px) {
  .admin-bar .site-header {
    top: 0;
  }
}


/* Mobile hamburger fix v1.2 */
@media (max-width: 900px) {
  .site-logo {
    min-width: 0;
  }

  .site-logo a {
    display: block;
    max-width: 62vw;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: clamp(18px, 5vw, 24px);
    letter-spacing: .08em;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 86px;
    height: 44px;
    padding: 0 0 0 36px;
    gap: 0;
    flex: 0 0 auto;
  }

  .nav-toggle span {
    position: absolute;
    left: 0;
    width: 28px;
    height: 1px;
    margin: 0 !important;
    background: currentColor;
  }

  .nav-toggle span:nth-child(1) {
    top: 13px;
  }

  .nav-toggle span:nth-child(2) {
    top: 22px;
  }

  .nav-toggle span:nth-child(3) {
    top: 31px;
  }

  .nav-toggle em {
    display: block;
    font-size: 12px;
    line-height: 1;
    margin: 0;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    top: 22px;
    transform: rotate(35deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    top: 22px;
    transform: rotate(-35deg);
  }
}

@media (max-width: 420px) {
  .site-header-inner {
    width: 92%;
  }

  .site-logo a {
    max-width: 58vw;
    font-size: 18px;
  }
}


/* News */
.mob-news {
  background: #fff;
}

.mob-news-list {
  border-top: 1px solid rgba(34,34,34,.14);
  margin-top: 42px;
}

.mob-news-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(34,34,34,.14);
}

.mob-news-item time {
  font-family: "EB Garamond", serif;
  color: #8c7b6b;
  letter-spacing: .08em;
  font-size: 17px;
}

.mob-news-item a,
.mob-news-item span {
  color: #222;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: .04em;
}

.mob-news-item a:hover {
  opacity: .62;
}

.mob-news-more {
  margin-top: 38px;
}

.mob-news-more a,
.mob-archive-more a,
.mob-post-back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 13px 28px;
  border: 1px solid #222;
  color: #222;
  text-decoration: none;
  letter-spacing: .12em;
  font-size: 13px;
  transition: background .3s ease, color .3s ease, opacity .3s ease;
}

.mob-news-more a:hover,
.mob-archive-more a:hover,
.mob-post-back a:hover {
  background: #222;
  color: #fff;
}

.mob-page-hero {
  padding: 160px 0 78px;
  background: #2b2926;
  color: #fff;
}

.mob-page-hero .mob-title {
  margin-bottom: 0;
}

.mob-archive-list {
  border-top: 1px solid rgba(34,34,34,.14);
}

.mob-archive-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(34,34,34,.14);
}

.mob-archive-date {
  font-family: "EB Garamond", serif;
  color: #8c7b6b;
  letter-spacing: .08em;
  font-size: 18px;
}

.mob-archive-card h2 {
  margin: 0 0 12px;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: .06em;
}

.mob-archive-card h2 a {
  color: #222;
  text-decoration: none;
}

.mob-archive-card h2 a:hover {
  opacity: .62;
}

.mob-archive-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.mob-single-post {
  background: #fff;
}

.mob-single-meta {
  font-family: "EB Garamond", serif;
  color: #8c7b6b;
  letter-spacing: .08em;
  margin-bottom: 24px;
}

.mob-single-content {
  max-width: 820px;
  margin: 0 auto;
  color: #444;
  font-size: 16px;
}

.mob-single-content h1 {
  color: #222;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: .06em;
  margin: 0 0 34px;
}

.mob-single-body {
  line-height: 2;
}

.mob-single-body img {
  max-width: 100%;
  height: auto;
}

.mob-post-back {
  margin-top: 52px;
}

@media (max-width: 900px) {
  .mob-news-item,
  .mob-archive-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mob-page-hero {
    padding: 128px 0 64px;
  }
}

/* ===== STAFF / v14 ===== */
.mob-staff {
  background: #faf9f6;
}

.mob-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 46px;
}

.mob-staff-card {
  background: #fff;
}

.mob-staff-photo {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eee;
}

.mob-staff-photo img,
.mob-staff-single-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.mob-staff-card:hover .mob-staff-photo img {
  transform: scale(1.04);
}

.mob-staff-body {
  padding: 26px 24px 30px;
}

.mob-staff-role {
  margin: 0 0 10px;
  color: #8c7b6b;
  font-family: "EB Garamond", serif;
  letter-spacing: .12em;
  font-size: 14px;
}

.mob-staff-body h3,
.mob-staff-body h2 {
  margin: 0 0 16px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.25;
}

.mob-staff-body h3 a,
.mob-staff-body h2 a {
  color: #222;
  text-decoration: none;
}

.mob-staff-body p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.9;
}

.mob-staff-instagram {
  display: inline-block;
  margin-top: 20px;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #222;
  font-size: 13px;
  letter-spacing: .12em;
}

.mob-staff-more {
  margin-top: 42px;
}

.mob-staff-single-grid {
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  gap: 64px;
  align-items: start;
}

.mob-staff-single-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eee;
}

.mob-staff-single-body h1 {
  margin: 0 0 30px;
  color: #222;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.25;
}

@media (max-width: 900px) {
  .mob-staff-grid,
  .mob-staff-single-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mob-staff-body {
    padding: 24px 20px 28px;
  }
}


/* ===== v16 CMS Pro additions ===== */
.mob-staff-links{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px;}
.mob-style-card{position:relative;overflow:hidden;text-decoration:none;color:#fff;background:#eee;}
.mob-style-card img{transition:transform .7s ease;aspect-ratio:3/4;object-fit:cover;}
.mob-style-card:hover img{transform:scale(1.05);}
.mob-style-info{position:absolute;left:0;right:0;bottom:0;padding:18px;background:linear-gradient(transparent,rgba(0,0,0,.55));color:#fff;}
.mob-style-info strong{display:block;font-size:16px;font-weight:500;letter-spacing:.08em;}
.mob-style-info small{display:block;margin-top:4px;font-size:12px;opacity:.9;}
.mob-style-more{margin-top:38px;}
.mob-instagram{text-align:center;background:#f3f1ec;}
.mob-instagram-link{display:inline-block;margin-top:14px;font-size:18px;letter-spacing:.08em;color:#222;text-decoration:none;border-bottom:1px solid #222;padding-bottom:6px;}
.mob-style-meta{letter-spacing:.08em;color:#777;margin:20px 0 30px;}
.mob-back-link{margin-top:40px;}
.mob-back-link a{color:#222;text-decoration:none;border-bottom:1px solid #222;}

/* v17 */

/* v18 Salonity settings reflection */
.salonity-shop-info dd a{color:inherit;text-decoration:none;}
.salonity-map-placeholder,
.salonity-map-link{min-height:320px;display:flex;align-items:center;justify-content:center;background:#f3f0ea;padding:32px;text-align:center;}
.salonity-site-footer{padding:48px 0;background:#111;color:#fff;font-size:14px;line-height:1.8;}
.salonity-site-footer a{color:#fff;text-decoration:none;}
.salonity-footer-inner{display:flex;justify-content:space-between;gap:24px;align-items:flex-end;}
.salonity-footer-inner p{margin:8px 0 0;opacity:.8;}
.salonity-footer-inner small{opacity:.55;}
@media (max-width: 768px){.salonity-footer-inner{display:block}.salonity-footer-inner small{display:block;margin-top:24px}}


/* v20: Mobile header Pattern B - hamburger icon only */
@media (max-width: 900px) {
  .nav-toggle {
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .nav-toggle em {
    display: none !important;
  }

  .nav-toggle span {
    left: 8px;
    width: 28px;
  }
}

@media (max-width: 420px) {
  .site-header-inner {
    width: 92%;
  }

  .site-logo a {
    max-width: 70vw;
  }
}

/* v22 Recruit / Multi shop */
.recruit-hero{min-height:68vh;background-size:cover;background-position:center;display:flex;align-items:flex-end;background-color:#ddd}.recruit-hero-overlay{width:100%;padding:170px 0 70px;background:linear-gradient(180deg,transparent,rgba(0,0,0,.48));color:#fff}.recruit-intro{max-width:900px}.recruit-message{font-size:1.05rem;line-height:2}.recruit-gallery{padding:0 0 100px}.recruit-gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.recruit-gallery-grid img{width:100%;aspect-ratio:4/3;object-fit:cover}.recruit-table{display:grid;grid-template-columns:220px 1fr;border-top:1px solid #d8d8d8}.recruit-table dt,.recruit-table dd{margin:0;padding:22px;border-bottom:1px solid #d8d8d8}.recruit-table dt{font-weight:600}.recruit-shop-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px}.recruit-shop-card{background:#fff}.recruit-shop-card img{width:100%;aspect-ratio:16/10;object-fit:cover}.recruit-shop-card>div{padding:28px}.faq-list details{border-top:1px solid #ccc;padding:0}.faq-list details:last-child{border-bottom:1px solid #ccc}.faq-list summary{cursor:pointer;padding:22px 10px;font-size:1.05rem;font-weight:600}.faq-list details>div{padding:0 10px 24px;line-height:1.9}.recruit-shops{background:#f4f2ee}.recruit-faq{background:#faf9f6}@media(max-width:767px){.recruit-hero{min-height:55vh}.recruit-gallery-grid{grid-template-columns:repeat(2,1fr);gap:8px}.recruit-table{grid-template-columns:1fr}.recruit-table dt{padding-bottom:5px;border-bottom:0}.recruit-table dd{padding-top:5px}.recruit-shop-grid{grid-template-columns:1fr}}
