/*
Theme Name: ONE'S
Theme URI:
Author: ONE'S
Description: ONE'S 美容室 公式サイト テーマ
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: ones
*/

/* =====================
   Reset & Base
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  background: #F7F3EC;
  color: #2C2C2A;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

/* =====================
   Typography
   ===================== */
.en-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: #BA7517;
  display: block;
  margin-bottom: 6px;
}

.section-title {
  font-size: 20px;
  font-weight: 500;
}

.section-title--light {
  color: #F7F3EC;
}

/* =====================
   Layout
   ===================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 56px 0;
}

.section--dark {
  background: #1F1C18;
}

/* =====================
   Header
   ===================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #E8E5DE;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

/* グロナビ */
.global-nav { display: flex; align-items: center; gap: 28px; }

.global-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

.global-nav ul li a {
  color: #2C2C2A;
  font-size: 13px;
  transition: color 0.2s;
}

.global-nav ul li a:hover { color: #BA7517; }

.global-nav ul li.nav-recruit a {
  color: #BA7517;
  font-weight: 500;
}

.header-reserve {
  display: inline-block;
  background: #BA7517;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.2s;
}

.header-reserve:hover { background: #EF9F27; color: #fff; }

/* ハンバーガー */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2C2C2A;
  transition: transform 0.3s, opacity 0.3s;
}

/* スマホメニュー */
.sp-nav {
  display: none;
  background: #1F1C18;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 20px 24px;
  border-top: 1px solid #3A3530;
}

.sp-nav.is-open { display: block; }

.sp-nav ul { list-style: none; }

.sp-nav ul li {
  border-bottom: 1px solid #3A3530;
}

.sp-nav ul li a {
  display: block;
  padding: 14px 0;
  color: #D3D1C7;
  font-size: 14px;
}

.sp-nav ul li.nav-recruit a { color: #FAC775; }

.sp-reserve {
  display: block;
  text-align: center;
  margin-top: 16px;
  background: #BA7517;
  color: #412402;
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border-radius: 2px;
}

/* =====================
   FV 動画背景
   ===================== */
#fv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  margin-top: 68px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* 動画 */
.fv-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* テキストエリア */
.fv-inner {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* 表示アニメーション */
  opacity: 0;
  transform: translateY(24px);
  animation: fvFadeIn 1s ease 0.5s forwards;
}

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

.fv-sub {
  font-size: 11px;
  letter-spacing: 4px;
  color: #FAC775;
  margin-bottom: 16px;
}

.fv-title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 500;
  color: #F7F3EC;
  margin-bottom: 14px;
  line-height: 1.45;
}

.fv-desc {
  font-size: 13px;
  color: #D3D1C7;
  margin-bottom: 32px;
}

.fv-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: #FAC775;
  color: #412402;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-primary:hover { background: #EF9F27; }

.btn-outline {
  display: inline-block;
  border: 1px solid #888780;
  color: #F7F3EC;
  font-size: 13px;
  padding: 12px 28px;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.btn-outline:hover { border-color: #FAC775; color: #FAC775; }

/* =====================
   3カラムメニュー
   ===================== */
.icon-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #D3D1C7;
}

.icon-nav__item {
  background: #F7F3EC;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.icon-nav__item:hover { background: #EAE5DA; }

.icon-nav__item .icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.icon-nav__item .title {
  font-size: 13px;
  font-weight: 500;
}

.icon-nav__item .desc {
  font-size: 11px;
  color: #5F5E5A;
}

/* =====================
   店舗一覧スライダー
   ===================== */
.stores-section { background: #F7F3EC; }

/* ヘッダー行：タイトル左／矢印右 */
.stores-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.stores-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 4px;
}

/* Swiperコンテナ：コンテナ幅を超えて見切れさせる */
.stores-swiper {
  width: 100%;
  padding: 4px 0 24px !important;
  /* 左端だけcontainerに合わせる */
  padding-left: calc((100vw - 1100px) / 2 + 24px) !important;
  overflow: visible;
}

.stores-swiper .swiper-wrapper { align-items: stretch; }

/* 矢印ボタン（独自配置） */
.stores-btn-prev,
.stores-btn-next {
  position: static !important;
  width: 40px !important;
  height: 40px !important;
  border: 1px solid #D3D1C7;
  border-radius: 50%;
  color: #2C2C2A !important;
  background: #fff;
  margin: 0 !important;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.stores-btn-prev:hover,
.stores-btn-next:hover {
  border-color: #BA7517;
  background: #FAC775;
  color: #412402 !important;
}

.stores-btn-prev::after,
.stores-btn-next::after { font-size: 13px !important; }

/* カードスタイル */
.stores-swiper .swiper-slide { height: auto; }

.store-card {
  display: block;
  background: #fff;
  border: 1px solid #D3D1C7;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
}

.store-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.store-card__thumb {
  height: 180px;
  background: #EAE5DA;
  overflow: hidden;
}

.store-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.store-card:hover .store-card__thumb img { transform: scale(1.04); }

.store-card__body { padding: 16px; }

.store-card__name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.store-card__address {
  font-size: 11px;
  color: #888780;
  margin-bottom: 12px;
  line-height: 1.6;
}

.store-card__link {
  font-size: 11px;
  color: #BA7517;
  border-bottom: 1px solid #BA7517;
}

.stores-more {
  text-align: center;
  margin-top: 24px;
}

.stores-more a {
  font-size: 12px;
  color: #993C1D;
  border-bottom: 1px solid #993C1D;
}

/* =====================
   採用セクション
   ===================== */
.recruit-section { background: #1F1C18; }

.recruit-section .section-header {
  text-align: center;
  margin-bottom: 36px;
}

.recruit-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.recruit-photo {
  height: 320px;
  background: #3A3530;
  border-radius: 6px;
  overflow: hidden;
}

.recruit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-text .lead {
  font-size: 13px;
  color: #D3D1C7;
  line-height: 1.8;
  margin-bottom: 20px;
}

.recruit-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.recruit-badges .badge {
  font-size: 11px;
  background: #3A3530;
  color: #FAC775;
  padding: 6px 12px;
  border-radius: 20px;
}

/* =====================
   福利厚生・SDGs
   ===================== */
.benefits-section { background: #F7F3EC; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-card {
  background: #fff;
  border: 1px solid #D3D1C7;
  border-radius: 6px;
  padding: 20px 14px;
  text-align: center;
}

.benefit-card .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
}

.benefit-card .title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

.benefit-card .desc {
  font-size: 11px;
  color: #5F5E5A;
  line-height: 1.6;
}

/* =====================
   福利厚生 ＋ 髪質改善 2カラム
   ===================== */
.benefits-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.benefits-two-col__item { display: flex; flex-direction: column; }

/* 左右の画像エリアを同じ高さに揃える */
.benefits-thumb,
.hairquality-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 6 / 4;
  border-radius: 6px;
  overflow: hidden;
  background: #EAE5DA;
}

.benefits-thumb img,
.hairquality-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.benefits-thumb:hover img,
.hairquality-thumb:hover img { transform: scale(1.03); }

/* バナーリンク オーバーレイ */
.banner-link {
  position: relative;
  cursor: pointer;
}

.banner-link__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 28, 24, 0.45);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 6px;
}

.banner-link:hover .banner-link__overlay { opacity: 1; }

@media (hover: none) {
  .banner-link .banner-link__overlay { opacity: 1; }
  .banner-link::after { display: none; }
}

/* 常時表示：右下に小さいラベル */
.banner-link::after {
  content: '詳しく見る';
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(31, 28, 24, 0.65);
  color: #FAC775;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hairquality-text {
  font-size: 14px;
  line-height: 1.8;
  color: #5F5E5A;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .benefits-two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* =====================
   オーナーメッセージ
   ===================== */
.owner-section { background: #1F1C18; }

.owner-inner {
  overflow: hidden;
}

.owner-photo {
  float: left;
  width: calc((100% - 40px) * 1.1 / 2.1);
  margin: 0 40px 24px 0;
  border-radius: 6px;
  overflow: hidden;
}

.owner-message p {
  color: #D3D1C7;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 1.2em;
}

.owner-message p:last-child { margin-bottom: 0; }

.owner-photo img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* =====================
   News
   ===================== */
.news-section { background: #F7F3EC; }

.news-list {
  list-style: none;
  border-top: 1px solid #D3D1C7;
}

.news-list li {
  border-bottom: 1px solid #D3D1C7;
}

.news-list li a {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  font-size: 13px;
  transition: color 0.2s;
}

.news-list li a:hover { color: #BA7517; }

.news-date {
  color: #888780;
  white-space: nowrap;
  font-size: 12px;
}

/* =====================
   Footer
   ===================== */
#site-footer {
  background: #1F1C18;
  color: #888780;
  font-size: 11px;
}

.footer-main {
  padding: 48px 0 36px;
  border-bottom: 1px solid #3A3530;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-logo img {
  width: 220px;
  height: auto;
  object-fit: contain;
}

.footer-col-title {
  color: #F7F3EC;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 12px;
}

.footer-col ul { list-style: none; }

.footer-col ul li + li { margin-top: 8px; }

.footer-col ul li a {
  color: #888780;
  font-size: 11px;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #FAC775; }

.footer-bottom {
  text-align: center;
  padding: 16px;
  font-size: 11px;
  color: #5F5E5A;
}

/* スマホ固定フッターナビ */
.sp-footer-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #D3D1C7;
  z-index: 100;
}

.sp-footer-nav ul {
  list-style: none;
  display: flex;
}

.sp-footer-nav ul li {
  flex: 1;
  text-align: center;
}

.sp-footer-nav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  font-size: 10px;
  color: #5F5E5A;
  gap: 3px;
}

.sp-footer-nav ul li.nav-recruit a { color: #BA7517; }

.sp-footer-nav ul li a .nav-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* =====================
   固定ページ（page.php）
   ===================== */
#page-main {
  padding-top: 68px;
  min-height: 60vh;
  background: #fff;
}

/* ページタイトルバー */
.page-hero {
  background: #fff;
  border-bottom: 1px solid #E8E5DE;
  padding: 48px 0 36px;
}

.page-hero__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero__title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  color: #2C2C2A;
  position: relative;
}

.page-hero__title::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: #BA7517;
  margin-top: 14px;
}

/* 本文エリア */
.page-content {
  padding: 52px 0 80px;
  background: #fff;
}

/* 本文の横幅を680px に制限 */
.page-content .container {
  max-width: 680px;
}

/* WordPressエディタ出力の基本スタイル */
.page-content h2 {
  font-size: 22px;
  font-weight: 500;
  margin: 48px 0 16px;
  padding-left: 14px;
  border-left: 3px solid #BA7517;
}

.page-content h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 36px 0 12px;
}

.page-content h4 {
  font-size: 15px;
  font-weight: 500;
  margin: 28px 0 10px;
}

.page-content p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
  color: #2C2C2A;
}

.page-content ul,
.page-content ol {
  padding-left: 1.5em;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.9;
}

.page-content li { margin-bottom: 6px; }

.page-content a {
  color: #BA7517;
  border-bottom: 1px solid #BA7517;
  transition: opacity 0.2s;
}

.page-content a:hover { opacity: 0.7; }

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 8px 0 20px;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 24px;
}

.page-content table th,
.page-content table td {
  border: 1px solid #D3D1C7;
  padding: 10px 14px;
  line-height: 1.7;
  vertical-align: top;
}

.page-content table th {
  background: #EAE5DA;
  font-weight: 500;
  white-space: nowrap;
  width: 30%;
}

.page-content blockquote {
  border-left: 3px solid #D3D1C7;
  padding: 10px 20px;
  margin: 24px 0;
  color: #5F5E5A;
  font-style: normal;
}

@media (max-width: 640px) {
  .page-hero { padding: 28px 0 24px; }
  .page-hero__inner { padding: 0 16px; }
  .page-content { padding: 32px 0 56px; }

  .page-content table th,
  .page-content table td { padding: 8px 10px; font-size: 13px; }

  .page-content table th { width: 38%; }
}

/* =====================
   Stores Archive
   ===================== */
.stores-archive-section { background: #fff; }

.stores-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stores-archive-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stores-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.stores-archive-card__thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #EAE5DA;
}

.stores-archive-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.stores-archive-card:hover .stores-archive-card__thumb img {
  transform: scale(1.04);
}

.stores-archive-card__body {
  padding: 16px 20px 20px;
}

.stores-archive-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #1F1C18;
  margin-bottom: 8px;
  line-height: 1.5;
}

.stores-archive-card__address {
  font-size: 12px;
  color: #888780;
  line-height: 1.7;
  margin-bottom: 14px;
}

.stores-archive-card__link {
  font-size: 12px;
  font-weight: 700;
  color: #BA7517;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .stores-archive-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 480px) {
  .stores-archive-grid { gap: 16px; }
}

/* =====================
   FAQ
   ===================== */
.faq-section { background: #F7F3EC; }

.faq-list { margin: 0; padding: 0; }

.faq-item {
  border-bottom: 1px solid #D3D1C7;
}

.faq-item:first-child { border-top: 1px solid #D3D1C7; }

.faq-q {
  position: relative;
  padding: 20px 48px 20px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #1F1C18;
  cursor: pointer;
  list-style: none;
  line-height: 1.6;
  transition: color 0.2s;
}

.faq-q::before {
  content: 'Q';
  display: inline-block;
  margin-right: 12px;
  color: #BA7517;
  font-weight: 900;
}

.faq-q::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #BA7517;
  border-bottom: 2px solid #BA7517;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-q::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-q:hover { color: #BA7517; }

.faq-a {
  display: none;
  padding: 0 20px 24px 44px;
  font-size: 14px;
  line-height: 1.9;
  color: #5C5A55;
}

.faq-a p { margin-bottom: 1em; }
.faq-a p:last-child { margin-bottom: 0; }

.faq-a ul {
  padding-left: 1.2em;
  margin: 12px 0;
}

.faq-a ul li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.faq-item.is-open .faq-a { display: block; }

/* =====================
   News Archive
   ===================== */
.news-archive-section { background: #fff; }

/* News Card List */
.news-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #D3D1C7;
}

.news-card {
  border-bottom: 1px solid #D3D1C7;
}

.news-card__inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  transition: opacity 0.2s;
}

.news-card__inner:hover { opacity: 0.75; }

.news-card__thumb {
  flex: 0 0 160px;
  width: 160px;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  background: #EAE5DA;
}

.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__no-image {
  width: 100%;
  height: 100%;
  background: #EAE5DA;
}

.news-card__body {
  flex: 1;
  min-width: 0;
}

.news-card__date {
  display: block;
  font-size: 12px;
  color: #888780;
  margin-bottom: 8px;
}

.news-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #1F1C18;
  margin-bottom: 8px;
  line-height: 1.5;
}

.news-card__excerpt {
  font-size: 13px;
  color: #5C5A55;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 640px) {
  .news-card__inner { gap: 16px; }
  .news-card__thumb { flex: 0 0 100px; width: 100px; }
  .news-card__title { font-size: 14px; }
  .news-card__excerpt { display: none; }
}

/* =====================
   Single Article
   ===================== */
.single-article {
  background: #fff;
  padding: 60px 0 80px;
}

.single-meta {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D3D1C7;
}

.single-content {
  line-height: 1.9;
  font-size: 15px;
  color: #1F1C18;
}

.single-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 16px;
  padding-left: 12px;
  border-left: 4px solid #FAC775;
}

.single-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 32px 0 12px;
}

.single-content p { margin-bottom: 20px; }

.single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 24px 0;
}

.single-content a { color: #BA7517; text-decoration: underline; }

/* 前後ナビ */
.single-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid #D3D1C7;
  font-size: 13px;
}

.single-nav__prev a,
.single-nav__next a {
  color: #BA7517;
  transition: opacity 0.2s;
}

.single-nav__prev a:hover,
.single-nav__next a:hover { opacity: 0.7; }

.single-nav__list {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #1F1C18;
  border-radius: 4px;
  font-size: 12px;
  color: #1F1C18;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.single-nav__list:hover {
  background: #1F1C18;
  color: #fff;
}

.page-hero__category {
  font-size: 12px;
  color: #FAC775;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .single-nav { flex-direction: column; text-align: center; }
  .single-nav__prev, .single-nav__next { width: 100%; text-align: center; }
}

.news-list--archive { margin-top: 0; }

.news-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #D3D1C7;
  border-radius: 4px;
  font-size: 13px;
  color: #1F1C18;
  transition: background 0.2s, color 0.2s;
}

.news-pagination .page-numbers:hover,
.news-pagination .page-numbers.current {
  background: #FAC775;
  border-color: #FAC775;
  color: #1F1C18;
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 900px) {
  .stores-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .recruit-inner { grid-template-columns: 1fr; }
  .recruit-photo { height: 220px; }
}

@media (max-width: 640px) {
  /* ヘッダー */
  .global-nav { display: none; }
  .header-reserve { display: none; }
  .menu-toggle { display: flex; }

  /* FV 動画 SP */
  #fv { height: calc(100svh - 68px); min-height: 480px; }
  .fv-inner { padding: 0 24px; align-items: center; text-align: center; max-width: 100%; }
  .fv-title { font-size: clamp(24px, 7vw, 36px); }
  .fv-btns { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary, .btn-outline { width: 240px; text-align: center; }
  .btn-primary, .btn-outline { width: 240px; text-align: center; }

  /* 3カラム */
  .icon-nav { grid-template-columns: repeat(3, 1fr); }
  .icon-nav__item { padding: 18px 8px; }
  .icon-nav__item .desc { display: none; }

  /* 店舗スライダー SP */
  .stores-swiper { padding-left: 16px !important; }
  .stores-section__header { flex-direction: row; align-items: center; }
  .store-card__thumb { height: 140px; }

  /* 採用 */
  .recruit-inner { gap: 20px; }

  /* オーナー */
  .owner-photo { float: none; width: 100%; margin: 0 0 24px 0; }

  /* 福利厚生 */
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }

  /* フッター */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }

  /* スマホ固定ナビ表示 */
  .sp-footer-nav { display: block; }
  #site-footer { padding-bottom: 56px; }

  /* セクション余白 */
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
}
