@charset "UTF-8";

/* =========================================
   1. 基本設定
========================================= */
body {
  font-family: 'Jost', 'Noto Sans JP', sans-serif;
  color: #2C3033;
  margin: 0;
  padding: 0;
  background-color: #F6F7F8;
}

.pc-only { display: flex; }
.sp-only { display: none; }

@media screen and (max-width: 960px) {
  .pc-only { display: none !important; }
  .sp-only { display: block !important; }
}

.concept-title {
  font-size: 70px;
  letter-spacing: 0.13em;
}

@media screen and (max-width: 768px) {
  .concept-title {
    font-size: 40px;
  }
}

/* =========================================
   2. ヘッダー全体
========================================= */
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  width: calc(100% - 50px);
  padding: 20px 40px;
}

.global-menu {
  margin-left: auto;
}

.header-logo .logo-img {
  height: 80px !important;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) !important;
  transition: filter 0.4s ease;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-list a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Jost', 'Noto Sans JP', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  transition: opacity 0.3s ease;
}

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

.header-info {
  margin-right: 40px;
  position: relative;
  padding-left: 40px;
}

.tel-link {
  text-decoration: none !important;
  color: #FFFFFF !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Jost', sans-serif;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  padding-left: 20px;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.tel-num {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.tel-time {
  font-size: 10px;
  letter-spacing: 0.12em;
  opacity: 0.8;
  margin-top: 3px;
}

/* スクロール後 ＆ 下層ページ（ガラス風ヘッダー） */
.global-header.is-scrolled,
.global-header.is-subpage {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.global-header.is-scrolled .header-inner,
.global-header.is-subpage .header-inner {
  padding: 15px 50px;
}

.global-header.is-scrolled .header-logo .logo-img,
.global-header.is-subpage .header-logo .logo-img {
  filter: none !important;
}

.global-header.is-scrolled .header-nav-list a,
.global-header.is-subpage .header-nav-list a,
.global-header.is-scrolled .tel-link,
.global-header.is-subpage .tel-link {
  color: #2C3033 !important;
}

.global-header.is-scrolled .tel-link {
  border-left-color: rgba(44, 48, 51, 0.3);
}

.global-header.is-scrolled .hamburger-btn span,
.global-header.is-subpage .hamburger-btn span {
  background-color: #2C3033 !important;
}

/* =========================================
   3. スマホ用 ハンバーガーボタン & ドロワー
========================================= */
.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #2C3033;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, top 0.3s ease, background-color 0.4s ease;
}

.hamburger-btn span:nth-child(1) { top: 4px; }
.hamburger-btn span:nth-child(2) { top: 14px; }

.hamburger-btn.is-active span { background-color: #2C3033 !important; }
.hamburger-btn.is-active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.hamburger-btn.is-active span:nth-child(2) { transform: rotate(-45deg); top: 9px; }

.sp-drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(15px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.sp-drawer-menu.is-active {
  opacity: 1;
  visibility: visible;
}

.sp-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  text-align: center;
}

.sp-nav-list li { margin-bottom: 10px; }

.sp-nav-list a {
  text-decoration: none;
  color: #2C3033;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sp-drawer-info {
  text-align: center;
  font-family: 'Jost', sans-serif;
  color: #2C3033;
}

.sp-tel {
  text-decoration: none;
  color: #2C3033;
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

.sp-time {
  font-size: 11px;
  opacity: 0.7;
  margin: 0;
}

/* =========================================
   4. 右側固定追従ボタン
========================================= */
.side-fixed-buttons {
  position: fixed;
  right: 0;
  top: 150px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.side-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 54px;
  padding: 30px 0;
  text-decoration: none !important;
  font-family: 'Jost', sans-serif;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}

.side-btn:hover {
  opacity: 0.85;
}

.btn-reservation {
  background-color: #DCDCDC;
  color: #2C3033 !important;
}

.btn-reservation .btn-icon svg {
  stroke: #2C3033;
}

.btn-shop {
  background-color: #2C3033;
  color: #FFFFFF !important;
}

.btn-shop .btn-icon svg {
  stroke: #FFFFFF;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  writing-mode: horizontal-tb;
}

.btn-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .side-fixed-buttons {
    display: none;
  }
}

/* =========================================
   5. MVスライダーエリア
========================================= */
.mySwiper {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #1A1C1E;
}

.mySwiper .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  display: block;
  transform: scale(1.2);
  transition: transform 10s linear;
  will-change: transform, filter;
}

.mySwiper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(163, 168, 169, 0.3);
  z-index: 5;
  pointer-events: none;
}

@keyframes focusIn {
  0% { filter: blur(6px) brightness(1.1); }
  100% { filter: blur(0px) brightness(1); }
}

@keyframes meltOut {
  0% { filter: none; }
  1% { filter: url(#liquid-distortion) blur(0px); }
  100% { filter: url(#liquid-distortion) blur(6px); }
}

.mySwiper .swiper-slide-active img,
.mySwiper .swiper-slide-duplicate-active img {
  transform: scale(1.06);
  animation: focusIn 3.5s ease-out forwards;
}

.mySwiper .swiper-slide-prev img,
.mySwiper .swiper-slide-duplicate-prev img {
  animation: meltOut 1.5s ease-out forwards;
}

.mySwiper.is-first-load .swiper-slide-active img,
.mySwiper.is-first-load .swiper-slide-duplicate-active img {
  animation: none !important;
  filter: none;
}

/* MV左下 最新お知らせオーバーレイ */
.mv-news-overlay {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 10;
  pointer-events: auto;
  width: calc(100% - 100px);
  max-width: 500px;
}

.mv-news-link {
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: #FFFFFF !important;
  font-family: 'Jost', 'Noto Sans JP', sans-serif;
  transition: opacity 0.3s ease;
  position: relative;
  padding-bottom: 20px;
}

.mv-news-link:hover {
  opacity: 0.7;
}

.mv-news-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}

.mv-news-date {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
}

.mv-news-category {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.mv-news-title {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 2.0;
}

.mv-news-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.mv-news-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateX(-100%);
  animation: newsLineFlow 4s cubic-bezier(0.64, 0.04, 0.35, 1) infinite;
}

@keyframes newsLineFlow {
  0% { transform: translateX(-101%); }
  50% { transform: translateX(101%); }
  100% { transform: translateX(101%); }
}

/* =========================================
   6. H2 1文字ずつパラパラアニメーション
========================================= */
.js-split-text span,
section h2 span,
.wp-block-group h2 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: calc(var(--char-index) * 0.08s);
}

.js-split-text.is-active span,
section h2.is-active span,
.wp-block-group h2.is-active span {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* =========================================
   7. CONCEPT セクション
========================================= */
.sec-concept {
  padding: 140px 20px 120px;
  background-color: #F6F7F8;
  text-align: center;
}

.sec-concept .wp-block-group__inner-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec-concept h2.wp-block-heading {
  font-family: 'Jost', sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: #2C3033;
  margin: 0 0 48px 0;
  text-indent: 0.25em;
}

.sec-concept p.wp-block-paragraph {
  max-width: 500px;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.3;
  letter-spacing: 0.12em;
  color: #2C3033;
  margin: 0 0 56px 0;
}

.sec-concept .wp-block-image {
  margin: 0 0 56px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.sec-concept .wp-block-image figure {
  margin: 0;
}

.sec-concept .wp-block-image:nth-of-type(1) img {
  width: 178px;
  height: auto;
  display: block;
}

.sec-concept .wp-block-image:nth-of-type(2) img {
  width: 100%;
  max-width: 814px;
  height: auto;
  display: block;
}

/* =========================================
   8. NEWS セクション
========================================= */
.sec-news {
  padding: 120px 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  z-index: 1;
}

.sec-news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(66, 91, 113, 0.7);
  z-index: 2;
}

.sec-news-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec-news h2.wp-block-heading {
  color: #FFFFFF;
  font-family: 'Jost', sans-serif;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.25em;
  margin: 0 0 60px 0;
}

.top-news-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 60px;
  width: 100%;
  max-width: 800px;
  text-align: left;
}

.top-news-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.top-news-link {
  display: flex;
  align-items: center;
  padding: 20px 0;
  text-decoration: none !important;
  color: #FFFFFF !important;
  font-family: 'Jost', 'Noto Sans JP', sans-serif;
  transition: opacity 0.3s ease;
}

.top-news-link:hover {
  opacity: 0.6;
}

.top-news-date {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  width: 110px;
  flex-shrink: 0;
}

.top-news-category {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-right: 30px;
  opacity: 0.85;
  flex-shrink: 0;
}

.top-news-title {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =========================================
   9. VIEW MORE ボタン
========================================= */
.btn-view-more {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  color: #2C3033;
  padding: 15px 55px 15px 0;
  margin-top: 10px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

#main-content .btn-text,
.btn-view-more .btn-text {
  writing-mode: horizontal-tb !important;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-right: 28px;
  transition: opacity 0.3s ease;
}

.btn-view-more .btn-arrow {
  position: relative;
  width: 105px;
  height: 1px;
  background-color: #888888;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-view-more .btn-arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid #888888;
  border-right: 1px solid #888888;
  transform: translateY(-50%) rotate(45deg);
}

.btn-view-more .btn-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 100px;
  height: 100px;
  border: 1px solid #888888;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
}

.btn-view-more:hover,
section .btn-view-more.is-active:hover {
  transform: translateX(10px);
}

.btn-view-more:hover .btn-text {
  opacity: 0.6;
}

.btn-view-more:hover .btn-arrow::after {
  border-color: #2C3033;
}

/* NEWSエリア用の白ボタン展開 */
.btn-view-more--white {
  color: #FFFFFF !important;
}

.btn-view-more--white .btn-arrow {
  background-color: #FFFFFF;
}

.btn-view-more--white .btn-arrow::before {
  border-top-color: #FFFFFF;
  border-right-color: #FFFFFF;
}

.btn-view-more--white .btn-arrow::after {
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-view-more--white:hover .btn-arrow::after {
  border-color: #FFFFFF;
}

/* =========================================
   10. フッター全域
========================================= */
.site-footer {
  width: 100%;
  margin-top: auto;
}

.footer-upper {
  padding: 80px 20px 60px;
  text-align: center;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.footer-logo img {
  height: 85px;
  width: auto;
  display: block;
  filter: none !important;
}

.footer-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 50px;
}

.sns-link {
  color: #2C3033 !important;
  text-decoration: none !important;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.sns-link:hover {
  opacity: 0.6;
}

.sns-link svg {
  stroke: #2C3033;
}

.footer-menu {
  width: 100%;
}

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

.footer-nav-list li::before {
  content: none !important;
}

.footer-nav-list a {
  color: #2C3033 !important;
  text-decoration: none !important;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

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

.footer-bottom {
  background-color: #2C3033;
  padding: 16px 20px;
  text-align: center;
}

.copyright {
  color: #FFFFFF;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin: 0;
  opacity: 0.9;
}

/* =========================================
   11. 共通：ふわっと下から表示アニメーション
========================================= */
.js-fade-up,
section p,
section .wp-block-image,
section .btn-view-more {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1),
              transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.js-fade-up.is-active,
section p.is-active,
section .wp-block-image.is-active,
section .btn-view-more.is-active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* =========================================
   スマホ表示時の全体調整（960px以下）
========================================= */
@media screen and (max-width: 960px) {
  .header-inner {
    width: 100%;
    padding: 15px 20px;
    justify-content: space-between;
    box-sizing: border-box;
  }

  .global-header.is-scrolled .header-inner,
  .global-header.is-subpage .header-inner {
    padding: 15px 20px;
  }

  .header-logo .logo-img {
    height: 45px !important;
  }

  .hamburger-btn {
    display: block;
    margin-left: auto;
    padding: 0;
    margin: 0;
  }

  .hamburger-btn span {
    background-color: #FFFFFF !important;
  }

  .hamburger-btn.is-active span {
    background-color: #2C3033 !important;
  }

  .mv-distortion-container {
    height: 100dvh;
  }

  .mv-news-overlay {
    left: 20px;
    bottom: 25px;
    width: calc(100% - 40px);
  }

  .mv-news-link {
    padding-bottom: 16px;
  }

  .mv-news-meta {
    gap: 16px;
    margin-bottom: 8px;
  }

  .mv-news-date {
    font-size: 13px;
  }

  .mv-news-category {
    font-size: 11px;
  }

  .mv-news-title {
    font-size: 14px;
  }

  .sec-concept {
    padding: 80px 20px 60px;
  }

  .sec-concept h2.wp-block-heading {
    letter-spacing: 0.2em;
    margin-bottom: 32px;
  }

  .sec-concept p.wp-block-paragraph {
    font-size: 13px;
    line-height: 2.1;
    letter-spacing: 0.08em;
    margin-bottom: 40px;
  }

  .sec-concept .wp-block-image {
    margin-bottom: 40px;
  }

  .sec-concept .wp-block-image:nth-of-type(1) img {
    width: 100px;
  }

  .sec-news {
    padding: 80px 20px;
  }

  .top-news-link {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .top-news-date {
    width: auto;
    margin-right: 15px;
    font-size: 12px;
  }

  .top-news-category {
    font-size: 11px;
    margin-right: 0;
  }

  .top-news-title {
    width: 100%;
    margin-top: 8px;
    font-size: 13px;
    white-space: normal;
  }

  .btn-view-more {
    margin-top: 0;
    padding-right: 35px;
  }

  .btn-view-more .btn-text {
    font-size: 12px;
    margin-right: 20px;
  }

  .btn-view-more .btn-arrow {
    width: 50px;
  }

  .btn-view-more .btn-arrow::after {
    width: 60px;
    height: 60px;
  }

  .footer-upper {
    padding: 60px 20px 40px;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-nav-list {
    gap: 20px 28px;
  }
}

/* =========================================
   12. 3カラムナビゲーション (MENU / STAFF / SALON INFO)
========================================= */
.sec-nav-cards {
  padding: 120px 0 60px;
  background-color: #F6F7F8;
}

.sec-nav-cards .wp-block-columns {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 0 !important;
  overflow: hidden;
}

.sec-nav-cards .wp-block-column {
  margin: 0 !important;
  flex: 1;
  overflow: hidden;
}

.sec-nav-cards .wp-block-cover {
  height: 400px;
  min-height: auto;
  padding: 0;
  margin: 0;
  border-radius: 0;
  position: relative;
}

.sec-nav-cards .wp-block-cover__image-background {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.sec-nav-cards .wp-block-cover:hover .wp-block-cover__image-background {
  transform: scale(1.08);
}

.sec-nav-cards .wp-block-cover::before {
  background-color: rgba(44, 48, 51, 0.3) !important;
  transition: background-color 0.4s ease;
  z-index: 1;
}

.sec-nav-cards .wp-block-cover:hover::before {
  background-color: rgba(44, 48, 51, 0.45) !important;
}

.sec-nav-cards .wp-block-cover__inner-container {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.sec-nav-cards .wp-block-cover p {
  color: #FFFFFF;
  font-family: 'Jost', sans-serif;
  font-size: 30px !important;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin: 0;
}

.sec-nav-cards .wp-block-cover__inner-container,
.sec-nav-cards .wp-block-cover p {
  position: static !important;
  margin: 0 !important;
  width: 100%;
  height: 100%;
}

.sec-nav-cards .wp-block-cover a {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: #FFFFFF !important;
  text-decoration: none !important;
}

.sec-nav-cards .wp-block-cover a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .sec-nav-cards {
    padding: 60px 0;
  }

  .sec-nav-cards .wp-block-columns {
    flex-direction: column;
  }

  .sec-nav-cards .wp-block-cover {
    height: 250px;
  }

  .sec-nav-cards .wp-block-cover p {
    font-size: 18px;
    letter-spacing: 0.15em;
  }
}

/* =========================================
   13. スマホ用：追従ボタンの画面下部2カラム固定化
========================================= */
@media screen and (max-width: 768px) {
  .side-fixed-buttons {
    display: flex !important;
    flex-direction: row;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    width: 100%;
    z-index: 990;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .side-fixed-buttons.is-show {
    transform: translateY(0);
  }

  .side-btn {
    width: 50%;
    height: 56px;
    padding: 0 8px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .btn-icon {
    margin-bottom: 0;
  }

  .btn-text {
    writing-mode: horizontal-tb !important;
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}

/* =========================================
   14. GO TOP ボタン（浮遊型サークル）
========================================= */
.pagetop-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 980;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(44, 48, 51, 0.15);
  color: #2C3033;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, color 0.3s ease;
}

.pagetop-btn.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pagetop-arrow {
  width: 7px;
  height: 7px;
  border-top: 1px solid #2C3033;
  border-left: 1px solid #2C3033;
  transform: rotate(45deg);
  margin-bottom: 3px;
  margin-top: 2px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pagetop-text {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1;
}

.pagetop-btn:hover {
  background-color: #2C3033;
  color: #FFFFFF;
  border-color: #2C3033;
}

.pagetop-btn:hover .pagetop-arrow {
  border-color: #FFFFFF;
  transform: rotate(45deg) translate(-2px, -2px);
}

@media screen and (max-width: 768px) {
  .pagetop-btn {
    bottom: 72px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .pagetop-arrow {
    width: 6px;
    height: 6px;
  }

  .pagetop-text {
    font-size: 8px;
  }
}

/* =========================================
   15. 下層共通ページヘッダー (subpage-mv)
========================================= */
.subpage-mv {
  padding-top: 140px; /* 固定ヘッダー分の高さ */
  background-color: #F6F7F8;
  margin-bottom: 120px;
}

.subpage-mv-inner {
  width: calc(100% - 100px);
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

/* 小見出し */
.subpage-mv-sub {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* 大見出し（CONCEPTなど） */
.subpage-mv-title {
  font-family: 'Jost', sans-serif;
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #2C3033;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

/* 横長メイン画像枠 */
.subpage-mv-img-wrap {
  width: 100%;
  margin: 60px auto 0;
  height: 300px;
  overflow: hidden;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; 
}
.subpage-mv-img-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(163, 168, 169, 0.3);
  pointer-events: none;
}
/* スマホ調整（768px以下） */
@media screen and (max-width: 768px) {
  .subpage-mv {
    padding-top: 100px;
    margin-bottom: 50px;
  }
.subpage-mv-inner {
    width: calc(100% - 40px);
}
  .subpage-mv-sub {
    font-size: 10px;
  }

  .subpage-mv-title {
    font-size: 36px;
  }

.subpage-mv-img-wrap {
    margin-top: 24px;
    height: 180px;
    background-attachment: scroll;
  }
}
.inner-1000 {
  max-width: 1000px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  box-sizing: border-box;
}
/* =========================================
   16. コンセプト詳細本文スタイル（Lazy Blocks版）
========================================= */
.concept-page-content {
  margin-bottom: 120px;
}

/* 上部リード文章 */
.sec-concept-detail {
  margin: 0 auto 100px;
}

.sec-concept-detail p {
  font-size: 14px;
  line-height: 2.3;
  letter-spacing: 0.1em;
  color: #2C3033;
  margin-bottom: 1.5em;
}

.sec-concept-detail p:last-child {
  margin-bottom: 0;
}

/* 2カラムレイアウト（フレックス） */
.concept-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 120px;
}

.concept-row:last-child {
  margin-bottom: 0;
}

/* カラム幅指定 */
.concept-col-img {
  width: 500px;
  flex-shrink: 0;
}

.concept-col-img figure {
  margin: 0;
  width: 100%;
}

.concept-col-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.concept-col-text {
  flex: 1;
}

/* 英字小見出し */
.concept-sub-label {
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.25em !important;
  color: #888888 !important;
  text-transform: uppercase;
  margin: 0 0 32px 0 !important;
}

/* 本文テキスト */
.concept-text {
  font-size: 14px;
  line-height: 2.3;
  letter-spacing: 0.1em;
  color: #2C3033;
}

/* 980px以下の表示（背景色と余白調整） */
@media screen and (max-width: 980px) {
  .concept-row {
    gap: 30px;
  }

  .concept-col-img {
    width: 45%;
  }

  .concept-col-text {
    background: #F6F7F8;
    padding: 30px 24px;
  }
}

/* 768px以下（スマホ表示） */
@media screen and (max-width: 768px) {
  .concept-page-content {
    margin-bottom: 60px;
  }

  .sec-concept-detail {
    margin-bottom: 60px;
  }

  .concept-row {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
  }

  /* 2つ目のブロック（テキスト左・画像右）はスマホで画像が上に来るよう反転 */
  .concept-row-reverse {
    flex-direction: column-reverse;
  }

  .concept-col-img {
    width: 100%;
  }

  .concept-col-img figure {
    width: 100%;
  }

  .concept-col-text {
    width: 100%;
    padding: 0;
    background: transparent;
  }

  .concept-sub-label {
    margin-bottom: 16px !important;
  }
}

/* =========================================
   17. MENU ページスタイル
========================================= */
.page-id-15 main#main-content {
    margin-bottom: 80px;
}
.menu-notice-text {
  font-size: 11px;
  color: #888888;
  letter-spacing: 0.08em;
  margin-bottom: 60px;
}

.menu-category-block {
  margin-bottom: 70px;
}

.menu-category-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  padding-bottom: 8px;
}

.menu-category-title {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: #888888;
  text-transform: uppercase;
  margin: 0;
}

.menu-category-note {
  font-size: 10px;
  color: #888888;
  letter-spacing: 0.08em;
}

/* リスト・線指定 */
.wp-block-lazyblock-menu-category .menu-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wp-block-lazyblock-menu-category .menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-item-info {
  display: flex;
  flex-direction: column;
}

.menu-item-name {
  font-family: 'Jost', 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #2C3033;
}

.menu-item-sub {
  font-size: 10px;
  color: #888888;
  margin-top: 4px;
}

.menu-item-price {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #2C3033;
  flex-shrink: 0;
  margin-left: 20px;
}

/* 最下部 DISCOUNT & POLICY */
.menu-policy-block {
  padding-top: 40px;
  border-top: 1px solid rgba(44, 48, 51, 0.1);
}

.menu-policy-title {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.menu-policy-text {
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #2C3033;
}
.post-15 :where(.wp-block-columns.is-layout-flex) {
    gap: 7em;
}
@media screen and (max-width: 1120px){
.inner-1000 {
    padding: 0 70px;
}	

}
@media screen and (max-width: 781px) {
    .post-15 :where(.wp-block-columns.is-layout-flex) {
    gap: 2em;
  }
}

/* スマホ表示調整（768px以下） */
@media screen and (max-width: 768px) {
		.inner-1000 {
    padding: 0 20px ;
}
	.wp-block-spacer.sp-block {
    height: 30px !important;
}
  .menu-category-block {
    margin-bottom: 50px;
  }

  .menu-item {
    padding: 14px 0;
  }

  .menu-item-name,
  .menu-item-price {
    font-size: 12px;
  }
}
/* =========================================
   18. STAFF ページスタイル
========================================= */
.staff-card {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin: 120px auto 80px;
}

/* 左側：縦長写真枠 */
.staff-card-img-wrap {
  width: 320px;
  flex-shrink: 0;
}

.staff-card-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* 右側：プロフィールエリア */
.staff-card-content {
  flex: 1;
  padding-top: 20px;
}

/* 役職 */
.staff-card-role {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* 名前エリア（日本語 ＋ ローマ字横並び） */
.staff-card-name-wrap {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 40px;
}

.staff-card-name-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #2C3033;
  margin: 0;
}

.staff-card-name-en {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #888888;
}

/* メッセージ本文 */
.staff-card-message {
  font-size: 13px;
  line-height: 2.3;
  letter-spacing: 0.1em;
  color: #2C3033;
}

/* スマホ表示調整（768px以下） */
@media screen and (max-width: 768px) {
  .staff-card {
    flex-direction: column;
    gap: 32px;
    margin: 40px auto 60px;
  }

  .staff-card-img-wrap {
    width: 100%;
  }

  .staff-card-img-wrap img {
    height: 360px;
  }

  .staff-card-content {
    padding-top: 0;
  }

  .staff-card-name-wrap {
    gap: 16px;
    margin-bottom: 24px;
  }

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

  .staff-card-message {
    font-size: 13px;
    line-height: 2.1;
  }
}
/* =========================================
   19. SALON INFO ページスタイル
========================================= */
.salon-info-block {
  margin: 120px auto 80px;
}

/* 店舗情報リスト */
.salon-info-list {
  margin: 0 0 80px 0;
  padding: 0;
}

.salon-info-row {
  display: flex;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(44, 48, 51, 0.1);
}

.salon-info-label {
  width: 160px;
  flex-shrink: 0;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: #888888;
  text-transform: uppercase;
  margin: 0;
}

.salon-info-value {
  flex: 1;
  font-family: 'Jost', 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #2C3033;
  margin: 0;
  line-height: 1.8;
}

/* MAPエリア */
.salon-map-wrap {
  margin-top: 60px;
}

.salon-map-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.salon-map-container {
  width: 100%;
  height: 400px;
  background-color: #EAEAEA;
  position: relative;
  overflow: hidden;
}

.salon-map-container iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  /* マップのトーンを世界観に合わせて少し彩度抑制 */
  filter: grayscale(20%) contrast(90%);
}

/* スマホ表示調整（768px以下） */
@media screen and (max-width: 768px) {
  .salon-info-block {
    margin: 40px auto 60px;
  }

  .salon-info-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
    gap: 8px;
  }

  .salon-info-label {
    width: 100%;
    font-size: 10px;
  }

  .salon-info-value {
    font-size: 13px;
  }

  .salon-map-container {
    height: 280px;
  }
}
/* =========================================
   20. CONTACT ページスタイル
========================================= */
.contact-page-wrap {
  margin: 120px auto 80px;
}

/* 電話番号エリア */
.contact-tel-block {
  margin-bottom: 70px;
  text-align: left;
}

.contact-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-tel-num {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #2C3033;
  text-decoration: none !important;
  line-height: 1;
  margin-bottom: 16px;
  transition: opacity 0.3s ease;
}

.contact-tel-num:hover {
  opacity: 0.6;
}

.contact-tel-note {
  font-size: 12px;
  color: #888888;
  letter-spacing: 0.08em;
  margin: 0;
}

/* 2カラムカード */
.contact-card-grid {
  display: flex;
  gap: 30px;
}

.contact-card {
  flex: 1;
  background-color: #F8F9FA;
  border: 1px solid rgba(44, 48, 51, 0.08);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  box-sizing: border-box;
}

.contact-card-sub {
  display: block;
  font-size: 11px;
  color: #888888;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.contact-card-text {
  font-size: 14px;
  color: #2C3033;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin: 0 0 30px 0;
}

/* 矢印付きリンクボタン */
.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: #2C3033 !important;
  text-decoration: none !important;
  letter-spacing: 0.08em;
  margin-top: auto;
  transition: opacity 0.3s ease;
}

.contact-card-link:hover {
  opacity: 0.7;
}

/* 矢印の直線（ホバーで幅が伸びる） */
.contact-card-link .link-arrow {
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: #2C3033;
  position: relative;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 矢印の先端（> の部分） */
.contact-card-link .link-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1px solid #2C3033;
  border-right: 1px solid #2C3033;
  transform: translateY(-50%) rotate(45deg);
}

/* ホバー時の動作：線が伸びながら少し右へ移動 */
.contact-card-link:hover .link-arrow {
  width: 48px; /* 32px → 48px へ伸びる */
  transform: translateX(4px); /* 全体が4px右へ移動 */
}
/* スマホ表示調整（768px以下） */
@media screen and (max-width: 768px) {
  .contact-page-wrap {
    margin: 40px auto 60px;
  }

  .contact-tel-block {
    margin-bottom: 45px;
  }

  .contact-tel-num {
    font-size: 30px;
  }

  .contact-card-grid {
    flex-direction: column;
    gap: 20px;
  }

  .contact-card {
    padding: 30px 24px;
    min-height: auto;
  }

  .contact-card-text {
    font-size: 13px;
  }
}
/* =========================================
   21. PRIVACY POLICY ページスタイル
========================================= */
.privacy-policy-wrap {
  margin: 120px auto 80px;
}

/* 前置き文章 */
.privacy-lead {
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: #2C3033;
  margin-bottom: 50px;
}

/* 各条項ブロック */
.privacy-item {
  margin-bottom: 40px;
}

.privacy-title {
  font-family: 'Jost', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #2C3033;
  margin: 0 0 16px 0;
}

.privacy-text {
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: #2C3033;
  margin: 0;
}

/* 第10条 お問い合わせ窓口リスト */
.privacy-contact-list {
  margin-top: 20px;
}

.privacy-contact-row {
  display: flex;
  padding: 8px 0;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.privacy-contact-label {
  width: 120px;
  color: #888888;
  flex-shrink: 0;
}

.privacy-contact-val {
  color: #2C3033;
}

/* スマホ表示調整（768px以下） */
@media screen and (max-width: 768px) {
  .privacy-policy-wrap {
    margin: 40px auto 60px;
  }

  .privacy-lead {
    font-size: 12px;
    margin-bottom: 32px;
  }

  .privacy-item {
    margin-bottom: 32px;
  }

  .privacy-title {
    font-size: 13px;
  }

  .privacy-text {
    font-size: 12px;
    line-height: 2;
  }

  .privacy-contact-row {
    flex-direction: column;
    gap: 2px;
  }

  .privacy-contact-label {
    width: 100%;
    font-size: 11px;
  }
}
/* =========================================
   22. NEWS（投稿一覧） ページスタイル
========================================= */
.news-archive-wrap {
  margin: 60px auto 120px;
}

/* 件数カウント表示 (1 - 4 / 9) */
.news-count-info {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: #888888;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

/* ニュースリスト */
.news-archive-list {
  list-style: none;
  padding: 0;
  margin: 0 0 80px 0;
  border-top: 1px solid rgba(44, 48, 51, 0.1);
}

.news-archive-item {
  display: flex;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(44, 48, 51, 0.1);
}

.news-archive-date-link,
.news-archive-title-link {
  text-decoration: none !important;
  color: #2C3033 !important;
  transition: opacity 0.3s ease;
}

.news-archive-date-link:hover,
.news-archive-title-link:hover {
  opacity: 0.6;
}

.news-archive-date {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.12em;
  display: block;
  width: 120px;
  flex-shrink: 0;
}

/* カテゴリーリンク（複数・個別にクリック可能） */
.news-archive-cat-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 140px;
  flex-shrink: 0;
}

.news-archive-cat-link {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #888888 !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.news-archive-cat-link:hover {
  color: #2C3033 !important;
  text-decoration: underline !important;
}

.cat-sep {
  font-size: 11px;
  color: #888888;
}

.news-archive-title-link {
  flex: 1;
  overflow: hidden;
}

.news-archive-title {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

/* ページネーションスタイル */
.news-pagination {
  display: flex;
  justify-content: center;
}

.news-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-pagination .page-numbers a,
.news-pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: #2C3033;
  text-decoration: none !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.news-pagination .page-numbers.current {
  background-color: #F0F0F0;
  color: #2C3033;
  font-weight: 500;
}

.news-pagination .page-numbers a:hover {
  background-color: #2C3033;
  color: #FFFFFF;
}

/* =========================================
   23. NEWS 詳細（single.php） ページスタイル
========================================= */
.single article {
  border-bottom: none;
  max-width: 800px !important;
}

.news-single-wrap {
  margin: 60px auto 120px;
}

/* 上部戻るリンク */
.news-single-back-top {
  margin-bottom: 40px;
}

.news-single-back-top a {
  font-family: 'Jost', 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: #888888;
  text-decoration: none !important;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.news-single-back-top a:hover {
  color: #2C3033;
}

/* 記事ヘッダー */
.news-single-header {
  margin-bottom: 50px;
}

.news-single-meta {
  font-family: 'Jost', 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #888888;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.news-single-meta a.single-cat-link {
  color: #888888 !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.news-single-meta a.single-cat-link:hover {
  color: #2C3033 !important;
  text-decoration: underline !important;
}

.news-single-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #2C3033;
  line-height: 1.5;
  margin: 0;
}

/* アイキャッチ画像枠 */
.news-single-eyecatch {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  margin-bottom: 50px;
}

.news-single-eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 記事本文 */
.news-single-content {
  font-size: 14px;
  line-height: 2.3;
  letter-spacing: 0.08em;
  color: #2C3033;
  margin-bottom: 80px;
}

.news-single-content p {
  margin-bottom: 2em;
}

.news-single-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
}

/* 下部 戻るボタンエリア */
.news-single-footer {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

/* スマホ表示調整（768px以下） */
@media screen and (max-width: 768px) {
  .news-archive-wrap,
  .news-single-wrap {
    margin: 40px auto 60px;
  }

  .news-archive-item {
    flex-wrap: wrap;
    padding: 16px 0;
    gap: 8px 12px;
  }

  .news-archive-date {
    width: auto;
    font-size: 12px;
  }

  .news-archive-cat-wrap {
    width: auto;
  }

  .news-archive-title-link {
    width: 100%;
    flex: none;
  }

  .news-archive-title {
    white-space: normal;
    font-size: 13px;
  }

  .news-single-header {
    margin-bottom: 32px;
  }

  .news-single-title {
    font-size: 18px;
  }

  .news-single-eyecatch {
    max-height: 260px;
    margin-bottom: 32px;
  }

  .news-single-content {
    font-size: 13px;
    line-height: 2.1;
    margin-bottom: 60px;
  }

  .news-single-footer {
    margin-top: 50px;
  }
}
/* =========================================
   24. 404 NOT FOUND ページスタイル
========================================= */
.error404 .subpage-mv-inner {
    text-align: center;
}
.not-found-wrap {
  margin: 80px auto 120px;
  text-align: center;
}

.not-found-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #2C3033;
  margin-bottom: 24px;
}

.not-found-text {
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: #888888;
  margin-bottom: 60px;
}

.not-found-footer {
  display: flex;
  justify-content: center;
}

/* スマホ表示調整（768px以下） */
@media screen and (max-width: 768px) {
  .not-found-wrap {
    margin: 50px auto 80px;
  }

  .not-found-title {
    font-size: 15px;
  }

  .not-found-text {
    font-size: 12px;
    line-height: 2;
    margin-bottom: 40px;
  }
}
/* =========================================
   25. SPECIAL LOADING ANIMATION
========================================= */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #F6F7F8; /* サイト全体の基調色 */
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease;
}

/* 読み込み完了時：画面上にスッと引き上げられる特別感のあるトランジション */
.loading.is-loaded {
  transform: translateY(-100%);
}

.loading-inner {
  text-align: center;
}

.loading-logo {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: #2C3033;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(12px);
  animation: loadingLogoFade 1s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.2s;
}

.loading-counter {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: #888888;
}
/* ロゴ画像エリア */
.loading-logo-img {
  margin-top: 12px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(12px);
  animation: loadingLogoFade 1s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.4s; /* テキストの直後に表示 */
}

.loading-logo-img img {
  width: auto;
  height: 100px; 
  display: block;
  margin: 0 auto;
}

/* カウンターの上の余白調整 */
.loading-counter {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: #888888;
  opacity: 0;
  animation: loadingLogoFade 1s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.6s;
}
@keyframes loadingLogoFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}