/* ===== 基本リセット ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg-base: #f2f2f2;
  --text-main: #2e2e2e;
  --text-sub: #6a6a6a;
  --border-light: #d8d8d8;
  --accent-main: #3a3a3a;
  --border-light2: rgba(146, 146, 146, 0.12);
  --bg-base2: #fafafa;
}
/* ===== Font Base ===== */
body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
}

/* ===== 英字系 ===== */
.hero-copy,
.concept-title,
.recruit-title,
.salon-title,
.header-logo,
.footer-logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}

body {
  line-height: 1.8;
  font-size: 16px;
  line-height: 1.8;
  background-color: var(--bg-base);
  color: var(--text-main);
}

/* ===== 共通 ===== */
.header,
.hero,
.message,
.concept,
.recruit,
.salon,
.info,
.footer {
  width: 100%;
}

.header-inner,
.hero-inner,
.message-inner,
.concept-inner,
.recruit-inner,
.salon-inner,
.info-inner,
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}
a {
  color: var(--text-main);
}

a:hover {
  color: var(--accent-main);
}
html {
  scroll-behavior: smooth;
}
/* ===== header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 242, 242, 0.85);
  backdrop-filter: blur(6px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.header-logo img {
  width: 230px;
  display: block;
}
h1.header-logo {
  margin: 0;
  padding: 0;
  line-height: 1;
}

/* ナビ */
.header-nav-list {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--text-main);
  text-decoration: none;
  position: relative;
}

/* hover */
.header-nav a:hover {
  opacity: 0.6;
}

.header-nav .is-recruit a {
  font-weight: 500;
}

.header-nav .is-recruit a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ===== hero ===== */
.hero {
  position: relative;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  height: 1000px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-img.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.85);
  /* aspect-ratio: 2560 / 1440; */
  /* transform: scale(1.02); */
}
.hero-wrap {
  display: grid;
  height: 100%;
}
.hero-left {
  position: relative;
  width: 50%;
  max-width: 770px;
  height: 100%;
  overflow: hidden;
  /* left: 20vw;
  transform: translateX(-12%); */
  right: -18%;
  transform: translateX(-2%);
  opacity: 0.9;
}
.hero-left::before {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;
}
.hero-fade {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition:
    opacity 4s cubic-bezier(0.32, 1.18, 0.62, 1.02),
    transform 8s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 0px 18px rgba(0, 0, 0, 0.3));
}

.hero-fade.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-inner {
  padding-top: 80px;
  padding-bottom: 80px;
  position: absolute;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
  max-width: 740px;
  min-width: 580px;
  left: 50%;
}
.hero-copy,
.hero-copy-sub {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 500;
  /* max-width: 720px; */
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0px 0px 8px #555;
}
.hero-copy-sub {
  font-size: 20px;
  line-height: 2.2;
  /* text-align: center; */
  font-weight: 400;
}

.hero-logo {
  filter: invert(1) drop-shadow(0px 0px 10px #555);
}

/* ===== message ===== */
.message {
  padding: 180px 0;
}

.message-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.message-content {
  display: flex;
  gap: 96px;
  align-items: center;
}

.message-text-wrap {
  flex: 0 0 60%;
  margin-left: auto;
  max-width: 560px;
  padding-left: 40px;
}

.message-label {
  display: inline-block;
  margin-bottom: 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-sub);
}

.message-image {
  flex: 0 0 40%;
  aspect-ratio: 4 / 5;
  /* background-color: #ccc; */
  background-size: cover;
  background-position: center;
  margin-left: -60px;
  position: relative;
}
.message-image p {
  position: absolute;
  left: -37%;
  font-size: 2.8em;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.25px;
  line-height: 1.2;
  font-weight: 300;
  top: 2.5%;
  color: #333;
  /* opacity: 0.4; */
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  padding: 0.15em 1em;
  opacity: 0.85;
}
.message-image img {
  width: 100%;
}

.hero + .message {
  padding-top: 180px;
}

.message-text,
.concept-description,
.recruit-description {
  font-weight: 400;
}
.is-animate {
  opacity: 0;
  transform: translateY(20px);
}
.is-animate.is-active {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}
.is-animate-delay {
  opacity: 0;
  transform: translateY(12px);
}
.is-animate-delay.is-active {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.85s ease-out,
    transform 0.85s ease-out;
  transition-delay: 0.45s;
}

/* ===== concept ===== */
.concept--center {
  background: #ececec;
  padding: 180px 0 0;
}

.concept--center .concept-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: left;
}

.concept-label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-sub);
  margin-bottom: 28px;
}

.concept--center .concept-title {
  font-size: 30px;
  line-height: 1.35;
  margin-bottom: 36px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.concept--center .concept-description {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  padding-bottom: 120px;
}

.concept--center {
  position: relative;
  background: #ececec;
  padding: 180px 0 140px;
  overflow: visible;
}
.concept-logo-deco {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -210px;

  padding: 70px 0 80px;
  overflow: hidden;
  z-index: 1;
}

.concept-logo-svg {
  display: block;
  width: min(900px, 86vw);
  margin: 0 auto;
  opacity: 1;
  transform: translateX(-3%);
  filter: invert(100%) sepia(0%) saturate(4398%) hue-rotate(31deg) brightness(115%) contrast(78%);
}

/* ===== recruit ===== */
.recruit {
  padding: 200px 0;
  background: var(--bg-base);
}

.recruit-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.recruit-content {
  display: flex;
  gap: 120px;
  align-items: center;
}

.recruit-image {
  flex: 0 0 45%;
  aspect-ratio: 4 / 5;

  background-size: cover;
  background-position: center;
  position: relative;
}
.recruit-image img {
  width: 100%;
}
.recruit-image p {
  position: absolute;
  right: -37%;
  font-size: 2.8em;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.25px;
  line-height: 1.2;
  font-weight: 300;
  top: 2.5%;
  color: #333;
  /* opacity: 0.4; */
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  padding: 0.15em 1em;
  opacity: 0.85;
}

.recruit-text-wrap {
  flex: 0 0 55%;
  max-width: 560px;
}

.recruit-label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-sub);
  margin-bottom: 24px;
}

.recruit-title {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 28px;
}

.recruit-text {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 48px;
}

.recruit-link {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--text-main);
  text-decoration: none;
  padding-bottom: 4px;
}
.recruit-link {
  position: relative;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--text-main);
  text-decoration: none;
  padding-bottom: 8px;
}

.recruit-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--text-main);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: left;
}
.recruit-link:hover::after {
  transform: scaleX(1.2);
  opacity: 0.6;
}

/* ===== salon list ===== */
.salon {
  padding: 180px 0;
  background: var(--bg-base);
  background: #fafafa;
}
.salon-archive {
  background: var(--bg-base);
}

.salon-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.salon-head {
  margin-bottom: 80px;
}

.salon-label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-sub);
  margin-bottom: 20px;
}

.salon-title {
  font-size: 20px;
  line-height: 1.4;
}

/* グリッド */
.salon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px 48px;
  margin-bottom: 96px;
}

/* カード */
.salon-card {
  display: block;
  text-decoration: none;
  color: var(--text-main);
}

/* サムネ：静かに整える */
.salon-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 18px;
  background: #ddd; /* 画像読み込み前の保険 */
}

.salon-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02); /* 端のチラつき対策 */
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

/* テキスト */
.salon-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.salon-area {
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-sub);
  margin-bottom: 6px;
}

.salon-tag {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-sub);
}

.salon-card:hover .salon-thumb img {
  transform: scale(1.06);
  filter: brightness(98%);
}

/* ===== info ===== */
.info {
  padding: 160px 0;
  background: var(--bg-base);
}

.info-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

.info-head {
  margin-bottom: 72px;
}

.info-label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-sub);
  /* margin-bottom: 20px; */
}

.info-title {
  font-size: 20px;
  line-height: 1.4;
}

/* リスト */
.info-list {
  max-width: 820px;
  margin-left: 60px;
}

/* 1行（カード化しない） */
.info-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  column-gap: 28px;
  align-items: baseline;

  text-decoration: none;
  color: var(--text-main);

  padding: 18px 0;
  border-bottom: 1px solid var(--border-light2);
}

.info-item:first-child {
  border-top: 1px solid var(--border-light2);
}

.info-date {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-sub);
}

.info-text {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  margin: 0;
}

.info-item:hover .info-text {
  opacity: 0.72;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #f6f6f6;
  padding: 120px 0 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
  justify-content: flex-start;
}

.footer-logo {
  display: block;
  height: 120px;
  width: auto;
  opacity: 0.85;
}

.footer-company {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-sub);
}

.footer-company-name {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 6px;
}

.footer-company-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-company-contact a:hover {
  opacity: 0.6;
}

/* ナビ */
.footer-nav {
  margin-bottom: 56px;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-main);
  text-decoration: none;
}

.footer-nav a:hover {
  opacity: 0.6;
}

.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

.footer-sns {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--text-sub);
}

.footer-sns img {
  width: 16px;
  height: auto;
  opacity: 0.7;
}

.footer-sns a:hover img {
  opacity: 1;
}

.footer-copy small {
  font-size: 11px;
  color: var(--text-sub);
}

/* ===== コンテンツページ ===== */
.sub-head {
  position: relative;
  min-height: 320px;
  height: 560px;
  max-height: 560px;
  padding: 80px 0 60px;
  overflow: hidden;
}

.sub-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 0;
  height: 62%;
  background: #eceaea;
  z-index: 0;
}

.sub-head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 20%;
  bottom: 0;
  height: 68%;
  background: #fff;
  z-index: 0;
  opacity: 0.7;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.04);
}

.sub-head__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: min(1100px, calc(100% - 80px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  /* padding: 0 0 40px; */
  justify-content: flex-end;
  margin-top: 30px;
}

.sub-head__en {
  margin: 0 0 0.7em;
  font-size: 56px;
  letter-spacing: 0.08em;
  line-height: 1.05;
  position: relative;
  padding-left: 52px;
  font-weight: 300;
}

.sub-head__en::before {
  position: absolute;
  content: "";
  background: #333;
  width: 34px;
  height: 1px;
  left: 0;
  top: 50%;
  opacity: 0.4;
}

.sub-head__jp {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.08em;
  opacity: 0.9;
  font-weight: 400;
}

.breadcrumb {
  position: absolute;
  bottom: 320px;
  right: 30px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #aaa;
  top: -60px;
}

.salon-gallery {
  width: 100%;
  max-width: 880px;
  margin: 120px auto 80px;
}

.salon-gallery__main {
  position: relative;
  overflow: hidden;
  background: #f2f2f1;
}

.salon-gallery__main img {
  width: 100%;
  display: block;
  transition: opacity 0.25s ease;
}

.salon-gallery__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
}

.salon-gallery__thumbs img {
  width: 167px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.salon-gallery__thumbs img:hover {
  opacity: 1;
}

.salon-gallery__thumbs img.active {
  opacity: 1;
}
.salon-gallery__thumbs img {
  filter: grayscale(100%);
  opacity: 0.6;
}

.salon-gallery__thumbs img:hover,
.salon-gallery__thumbs img.active {
  filter: grayscale(0);
  opacity: 1;
}

.salon-detail {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 120px;
}

.salon-detail__head {
  margin: 80px auto 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
  max-width: 800px;
}

.salon-detail__area {
  font-size: 14px;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 8px;
}

.salon-detail__name {
  font-size: 36px;
  font-weight: 500;
}

.salon-detail__info {
  /* border-top: 1px solid #ddd; */
  width: 65%;
  margin-left: 5%;
}

.salon-detail__row {
  display: flex;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.salon-detail__label {
  width: 140px;
  font-size: 14px;
  opacity: 0.6;
}

.salon-detail__value {
  flex: 1;
  font-size: 15px;
}

.salon-detail__value a {
  text-decoration: none;
  color: inherit;
}

.salon-detail__reserve {
  margin: 80px 0 100px;
  text-align: center;
}

.btn-reserve {
  display: inline-block;
  padding: 16px 48px;
  /* background: #333;
  color: #fff; */
  border: 1px solid #666;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  position: relative;
}
.btn-reserve::after {
  content: "";
  width: 60px;
  height: 1px;
  position: absolute;
  /* left: 92%; */
  right: 0;
  bottom: 50%;
  background: #333;
  transition: width 0.3s ease;
  opacity: 0.6;
  transform: translate(70%, -50%) scaleX(0.6);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.btn-reserve:hover::after {
  transform: translate(70%, -50%) scaleX(1);
  opacity: 0.8;
}

.salon-detail__map {
  margin-top: 40px;
}
.salonpage-inner {
  display: flex;
  align-items: center;
}
.salon_logo {
  width: 30%;
  max-width: 300px;
  padding: 3%;
}

.salon_logo img {
  width: 100%;
  height: auto;
  opacity: 0.85;
}

section.salon-detail-wrap {
  background: var(--bg-base2);
  padding: 60px 0;
}
.section--alt {
  background: var(--bg-base2);
  padding: 100px 0;
}

.l-container {
  width: min(1100px, calc(100% - 80px));
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.section-head__en {
  margin: 0 0 10px;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.section-head__jp {
  margin: 0 0 40px;
  font-weight: 500;
}

.info-table {
  border-top: 1px solid #ddd;
  width: 70%;
}
.info-row {
  display: flex;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #eee;
  align-items: center;
}
.info-label {
  width: 160px;
  font-size: 14px;
  opacity: 0.65;
}
.info-value {
  flex: 1;
  font-size: 15px;
  line-height: 1.8;
}

.timeline {
  border-left: 1px solid #ddd;
  padding-left: 24px;
  width: 70%;
}
.tl-item {
  padding: 16px 0;
}
.tl-year {
  font-size: 14px;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 6px;
}
.tl-text {
  font-size: 15px;
  line-height: 1.8;
}
.philosophy-section {
  position: relative;
  margin: 120px auto 80px;
  width: 100%;
}

.philosophy {
  position: relative;
  padding: 80px 0;
  width: 70%;
}

.philosophy__bg {
  position: absolute;
  bottom: 6px;
  right: 0;
  font-size: 120px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  pointer-events: none;
}

.philosophy__lead {
  position: relative;
  font-size: 22px;
  line-height: 2;
  max-width: 800px;
}

header.section-head {
  width: 25%;
}
.pa100 {
  padding: 100px 0;
}
.page-top {
  position: fixed;
  right: 24px;
  bottom: 60px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-decoration: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 100;
  font-family: "Montserrat";
}
.page-top::before {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background: #333;
  margin-bottom: 12px;
  top: -44px;
  position: absolute;
  left: 50%;
}
.page-top.is-visible {
  opacity: 0.7;
}
.page-top:hover {
  opacity: 1;
}
.info-single,
.info-archive {
  padding: 100px 0 80px;
}

.info-single__inner {
  width: min(800px, 90%);
  margin: 0 auto;
}
.info-archive__inner {
  width: min(900px, 90%);
  margin: 0 auto;
}
.info-archive__head {
  margin-bottom: 60px;
}
.info-single__header {
  margin-bottom: 40px;
}

.info-single__date {
  font-size: 13px;
  letter-spacing: 0.12em;
  opacity: 0.6;
}

.info-single__title {
  margin: 12px 0 0;
  font-size: 30px;
  line-height: 1.6;
}
a.info-item {
  display: flex;
}
.info-single__cat {
  margin-top: 16px;
}

.info-cat {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  margin-right: 6px;
}

.info-single__thumb {
  margin: 40px 0;
}

.info-single__content {
  line-height: 2.2;
}

.info-single__content h2 {
  margin-top: 48px;
  font-size: 22px;
}

.info-single__content p {
  margin: 16px 0;
}

.info-single__nav {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.info-pagination {
  margin-top: 60px;
  text-align: center;
}

.info-pagination a,
.info-pagination span {
  margin: 0 6px;
  font-size: 14px;
  text-decoration: none;
}
.info-single__archive a {
  text-decoration: none;
}
.info-single__thumb {
  width: 100%;
}

.info-single__thumb img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .info-single {
    padding: 80px 0 60px;
  }

  .info-single__title {
    font-size: 22px;
  }

  .info-single__nav {
    flex-direction: column;
    gap: 16px;
  }
}

.blog-front {
  padding: 100px 0;
  background: #fafafa;
}
.blog-front__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: center;
}

.blog-front__head {
  padding-top: 20px;
}
.blog-front__title {
  font-size: 42px;
  letter-spacing: 0.04em;
  margin: 0;
  font-family: "Montserrat";
  font-weight: 300;
}
.blog-front__sub {
  display: block;
  margin-top: 14px;
  opacity: 0.75;
}

.blog-front__list {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.blog-front__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.blog-front__link {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  padding: 40px 0;
  text-decoration: none;
  color: inherit;
}

.blog-front__thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.blog-front__link:hover .blog-front__thumb img {
  filter: brightness(98%);
  object-fit: cover;
  transform: scale(1.02);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}
.blog-front__date {
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: 0.65;
  display: block;
}
.blog-front__item-title {
  margin: 10px 0 0;
  font-size: 20px;
  line-height: 1.6;
  font-weight: normal;
}
.blog-front__excerpt {
  margin: 16px 0 0;
  line-height: 1.9;
  opacity: 0.9;
}
.blog-front__more {
  display: inline-block;
  margin-top: 18px;
  opacity: 0.75;
}

@media (max-width: 900px) {
  .blog-front__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .blog-front__link {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .blog-front__thumb img {
    height: 200px;
  }
}
.blog-archive {
  padding: 100px 0 80px;
}

.blog-archive__inner {
  width: min(1000px, 90%);
  margin: 0 auto;
}

.blog-archive__head {
  margin-bottom: 60px;
}

.blog-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  opacity: 0.6;
}

.blog-title {
  margin-top: 10px;
  font-size: 30px;
  font-weight: normal;
}

.blog-list {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.blog-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.blog-item__link {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 40px 0;
  text-decoration: none;
  color: inherit;
}

.blog-item__thumb img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.blog-item__date {
  font-size: 12px;
  opacity: 0.6;
}

.blog-item__title {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.6;
}

.blog-item__excerpt {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}

.blog-pagination {
  margin-top: 60px;
  text-align: center;
}

.blog-item__link {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.blog-item__thumb img {
  transition: transform 0.6s ease;
}

.blog-item:hover .blog-item__link {
  transform: translateY(-4px);
}

.blog-item:hover .blog-item__thumb img {
  transform: scale(1.05);
}

.blog-item__title {
  transition: color 0.3s ease;
}

.blog-item:hover .blog-item__title {
  color: #000;
}
.info-single img.size-full {
  width: 100%;
  margin: 1em 0;
}

.blog-pagination {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.blog-pagination .nav-links {
  display: flex;
  gap: 10px;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #ddd;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  transition: all 0.25s ease;
}

.blog-pagination a:hover {
  background: #333;
  color: #fff;
  border-color: #111;
}

.blog-pagination .current {
  background: #333;
  color: #fff;
  border-color: #111;
  pointer-events: none;
}

/*********************************************************** CF7 */
.cf7-form {
  width: min(720px, 92%);
  margin: 90px auto;
}

.cf7-form_block {
  margin: 60px auto;
  line-height: 2.6em;
}
.cf7-row {
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  line-height: 1;
}

.cf7-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.cf7-req,
.cf7-opt {
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
}

.cf7-req {
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: #666;
  color: #fff;
  opacity: 0.85;
}

.cf7-opt {
  border: 1px solid rgba(0, 0, 0, 0.12);
  opacity: 0.55;
}

.cf7-input,
.cf7-textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  padding: 14px 14px;
  font-size: 16px;
  outline: none;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.cf7-textarea {
  min-height: 160px;
  resize: vertical;
}

.cf7-input:focus,
.cf7-textarea:focus {
  border-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.cf7-actions {
  padding-top: 28px;
  display: flex;
  justify-content: flex-end;
}

.cf7-submit {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 14px;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.cf7-submit:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.wpcf7-not-valid-tip {
  margin-top: 10px;
  font-size: 13px;
}
.cf7-turnstile {
  margin: 60px auto 20px;
  text-align: center;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  padding: 14px 0 0;
  margin: 18px 0 0;
  font-size: 14px;
}

.cf7-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.cf7-modal.is-active {
  display: block;
}

.cf7-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.cf7-modal__inner {
  position: relative;
  width: min(640px, 92%);
  margin: 8vh auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cf7-modal__title {
  font-size: 18px;
  margin-bottom: 24px;
}

.cf7-modal dl {
  display: grid;
  gap: 18px;
}

.cf7-modal dt {
  font-size: 13px;
  opacity: 0.6;
}

.cf7-modal dd {
  margin: 4px 0 0;
  font-size: 15px;
}

.cf7-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 30px;
}

.cf7-btn {
  border: 1px solid #222;
  background: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
}

.cf7-btn.is-primary {
  background: #111;
  color: #fff;
}
.cf7-modal__text {
  line-height: 1.8;
  font-size: 15px;
}

body.modal-open {
  overflow: hidden;
}
.cf7-submit-real {
  display: none !important;
}
.cf7-input.is-error,
.cf7-textarea.is-error {
  border-color: #c00;
}
.wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #c00;
}
.salon-gallery__thumbs {
  width: 100%;
}
.salon-gallery__thumbs img {
  width: calc((100% / 5) - 12px);
}
section.salon-detail-wrap {
  width: 100%;
  padding: 60px 5%;
}
.salonpage-inner {
  flex-direction: column;
}
.salon_logo {
  width: 80%;
}
.salon-detail__info {
  width: 100%;
}
.privacy{
  padding: 110px 0 90px;
}

.privacy-inner{
  width: min(980px, 92%);
  margin: 0 auto;
}

.privacy-head{
  margin-bottom: 56px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0,0,0,.14);
}

.privacy-title{
  font-size: 34px;
  letter-spacing: .06em;
  line-height: 1.2;
  margin: 0;
}

.privacy-body{
  font-size: 15px;
  line-height: 2;
  color: #111;
}

.privacy-body p{
  margin: 0 0 18px;
}

.privacy-body h2{
  margin: 46px 0 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.10);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: .04em;
}

.privacy-body ul{
  margin: 10px 0 22px 1.2em;
  padding: 0;
}

.privacy-body li{
  margin: 6px 0;
}

.privacy-contact{
  margin-top: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 14px;
  background: rgba(0,0,0,.02);
}

.privacy-contact p{
  margin: 6px 0;
}

.privacy-updated{
  margin-top: 38px;
  font-size: 13px;
  opacity: .65;
}

.privacy-body a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s ease;
}

.privacy-body a:hover{
  opacity: .75;
}
