@charset "UTF-8";

/* =========================================
   1. VARIABLES (変数定義)
   ========================================= */
:root {
  --color-black: #1a1a1a;
  --color-gold: #B69658; /* アンティークゴールド */
  --color-gold-light: #d4bda3;
  --color-gray: #f4f4f4;
  --font-serif: "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-en: "Cinzel", serif;
}


/* =========================================
   2. REBOOT & RESET
   ========================================= */
/*** The new CSS reset - version 1.9 (last updated 19.6.2023) ***/
:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}
*, ::after, ::before {
  box-sizing: border-box;
}
a, button {
  cursor: revert;
}
menu, ol, ul {
  list-style: none;
}
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}
table {
  border-collapse: collapse;
}
input, textarea {
  -webkit-user-select: auto;
}
textarea {
  white-space: revert;
}
meter {
  -webkit-appearance: revert;
  appearance: revert;
}
:where(pre) {
  all: revert;
}
::placeholder {
  color: unset;
}
::marker {
  content: initial;
}
:where([hidden]) {
  display: none;
}
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}
:where([draggable=true]) {
  -webkit-user-drag: element;
}
:where(dialog:modal) {
  all: revert;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(51, 51, 51, 0);
  overflow: auto;
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* ヘッダーの高さ分ずらす */
}
@-ms-viewport {
  width: device-width;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}


/* =========================================
   3. BASE STYLES
   ========================================= */
body {
  margin: 0;
  text-align: left;
  background-color: #FFF;
  color: #333333;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.75rem, 0.4462rem + 0.6329vw, 1rem);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.modal-open {
  touch-action: none;
  overscroll-behavior: contain;
  overflow: hidden;
}

/* Typography & Elements */
h1, h2, h3, h4, h5, h6, p, ul, ol, dl {
  margin-top: 0;
  margin-bottom: 0;
}
a {
  color: var(--color-gold);
  text-decoration: none;
  background-color: transparent;
  transition: 0.3s;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
}
img {
  vertical-align: middle;
  border-style: none;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}


/* =========================================
   4. COMMON & LAYOUT
   ========================================= */
/* Utility Classes */
@media screen and (min-width: 768px) {
  .--spOnly { display: none !important; }
  .--pcOnly { display: inherit !important; }
}
@media screen and (max-width: 767px) {
  .--spOnly { display: inherit !important; }
  .--pcOnly { display: none !important; }
}

/* General Section Container */
.genSec {
  padding: 0 30px;
  max-width: 1400px;
  margin: clamp(5rem, 1.962rem + 6.3291vw, 7.5rem) auto;
}
@media screen and (max-width: 767px) {
  .genSec {
    padding: 0 20px;
    max-width: 400px;
    margin: clamp(4rem, 0rem + 20vw, 5rem) auto;
  }
}

/* Full Width Section Wrapper (Gold Edition) */
.l-section-full {
  width: 100%;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .l-section-full {
    padding: 60px 0;
  }
}
/* ラッパー内の既存クラスの余白を打ち消し */
.l-section-full .genSec,
.l-section-full .p-topAccess {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

/* Background Utilities */
.bg-gray { background-color: var(--color-gray); }
.bg-white { background-color: #ffffff; }

/* Section Headers (Gold Edition) */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}
.section-title-en {
  font-family: var(--font-en);
  font-size: 2.4rem;
  display: block;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: var(--color-black);
}
.section-title-ja {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--color-gold);
  display: block;
  letter-spacing: 0.3em;
}


/* =========================================
   5. HEADER & NAVIGATION
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  mix-blend-mode: difference;
  color: #fff;
  transition: background-color 0.3s;
}
.site-header.open {
  mix-blend-mode: normal;
}

/* Logo */
.site-header__logo {
  display: flex;
  align-items: center;
  height: 100%;
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 600;
  z-index: 1002;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.site-header__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .site-header { padding: 0 50px; height: 100px; }
  .site-header__logo img { height: 50px; }
}

/* Hamburger Menu */
.hamburger {
  display: block;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1003;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s ease;
  right: 0;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
  background-color: #fff;
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  bottom: 9px;
  transform: rotate(-45deg);
  background-color: #fff;
}

/* Global Nav (SP Default) */
.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(18, 18, 18, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  pointer-events: none;
  mix-blend-mode: normal;
  color: #fff;
  z-index: 1001;
}
.global-nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.global-nav ul {
  text-align: center;
  padding: 0;
}
.global-nav li {
  margin: 30px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.global-nav.active li {
  opacity: 1;
  transform: translateY(0);
}
.global-nav.active li:nth-child(1) { transition-delay: 0.1s; }
.global-nav.active li:nth-child(2) { transition-delay: 0.15s; }
.global-nav.active li:nth-child(3) { transition-delay: 0.2s; }
.global-nav.active li:nth-child(4) { transition-delay: 0.25s; }
.global-nav.active li:nth-child(5) { transition-delay: 0.3s; }

.global-nav a {
  font-family: var(--font-en);
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
}
.global-nav a:hover {
  color: var(--color-gold);
}

/* SNS Icons (SP) */
.nav-sns {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.35s;
}
.global-nav.active .nav-sns {
  opacity: 1;
  transform: translateY(0);
}
/* Instagramアイコン */
.nav-sns__item {
  display: block;
  width: 24px;
  height: 24px;
}
.nav-sns__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* LINEテキストボタン */
.nav-sns__line {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  line-height: 1;
  padding: 4px 6px;
  letter-spacing: 0.05em;
  height: 24px;
  box-sizing: border-box;
  white-space: nowrap;
  transition: all 0.3s;
}
.nav-sns__line:hover {
  background-color: transparent;
  color: #fff;
  opacity: 0.6;
}

/* Global Nav (PC Override) */
@media (min-width: 768px) {
  .site-header.open { mix-blend-mode: difference; }
  .hamburger { display: none; }
  
  .global-nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    pointer-events: auto;
    mix-blend-mode: normal;
  }
  .global-nav ul {
    display: flex;
    gap: 40px;
  }
  .global-nav li {
    margin: 0;
    opacity: 1;
    transform: none;
  }
  .global-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
  }
  .global-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s;
  }
  .global-nav a:hover::after { width: 100%; }
  .global-nav a:hover { opacity: 0.8; color: inherit; }

  /* SNS Icons (PC) */
  .nav-sns {
    margin-top: 0;
    opacity: 1;
    transform: none;
    gap: 16px;
  }
  /* PCサイズを24pxに統一して高さを揃える */
  .nav-sns__item {
    width: 24px;
    height: 24px;
  }
  .nav-sns__line {
    height: 24px;
    font-size: 0.75rem;
    padding: 0 5px;
  }
}

/* =========================================
   ADD: Access Section SNS Style (Black)
   ========================================= */
.p-topAccess__sns {
  margin-top: 25px; /* ロゴとの隙間 */
  margin-left: 5px; /* 微調整 */
  opacity: 1 !important; /* SPメニュー外なので常に表示 */
  transform: none !important;
  justify-content: flex-start; /* 左寄せ */
}

/* Instagram: 白アイコンを黒に反転 */
.p-topAccess__sns .nav-sns__item img {
  filter: invert(1);
}

/* LINE: 白枠・白文字を黒に上書き */
.p-topAccess__sns .nav-sns__line {
  border-color: #333;
  color: #333;
}
.p-topAccess__sns .nav-sns__line:hover {
  color: #333;
  opacity: 0.6;
}

/* スマホでの調整 */
@media screen and (max-width: 767px) {
  .p-topAccess__sns {
    justify-content: center; /* SPは中央寄せ */
    margin-left: 0;
  }
}

/* フッターのSNSアイコン調整（サイズなど） */
/* 必要に応じてfooter固有の調整を追加 */
.l-footer .nav-sns__item {
  width: 24px;
  height: 24px;
}
.l-footer .nav-sns__line {
  height: 24px;
  font-size: 0.75rem;
}


/* =========================================
   6. FOOTER
   ========================================= */
.l-footer {
  text-align: center;
  color: #ccc;
  padding: 60px 0;
  background-color: #2B2B2B;
  position: relative;
}
.l-footer a {
  color: #fff;
  text-decoration: none;
}
.l-footer a:hover {
  opacity: 0.7;
}


/* =========================================
   7. TOP PAGE PARTS (Original + New)
   ========================================= */

/* Main Visual (FV) */
.p-fv {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-image: url("../img/home/FV.jpg");
  position: relative;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .p-fv {
    background-image: url("../img/home/FV_sp.jpg");
    background-attachment: inherit;
  }
}
.p-fv__cont {
  position: absolute;
  bottom: 60px;
  right: 60px;
}
@media screen and (max-width: 767px) {
  .p-fv__cont {
    right: 0;
    bottom: clamp(2.25rem, 0rem + 11.25vw, 2.8125rem);
    width: 100%;
    padding: 0 20px;
  }
}
.p-fv__wrap {
  width: 100%;
  display: flex;
  gap: 50px;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .p-fv__wrap {
    flex-flow: column;
    align-items: center;
    max-width: 360px;
    margin: 0 auto;
    gap: 0;
  }
}
.p-fv__tit {
  font-size: 5rem;
  line-height: 1;
  mix-blend-mode: overlay;
  color: #fff;
  font-family: "EB Garamond", "Times New Roman", "Noto Serif JP", serif;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-fv__tit {
    font-size: clamp(3rem, 0rem + 15vw, 3.75rem);
  }
}
.p-fv__desc {
  color: #fff;
}
.p-fv__desc h3 {
  font-family: "EB Garamond", "Times New Roman", "Noto Serif JP", serif;
  font-size: clamp(1rem, 0.3924rem + 1.2658vw, 1.5rem);
  opacity: 0.9;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .p-fv__desc h3 {
    font-size: clamp(1rem, 0rem + 5vw, 1.25rem);
    text-align: center;
    margin-top: clamp(1.25rem, 0rem + 6.25vw, 1.5625rem);
  }
}
.p-fv__desc p {
  margin-top: clamp(0.5rem, 0.1962rem + 0.6329vw, 0.75rem);
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .p-fv__desc p {
    margin-top: clamp(1.25rem, 0rem + 6.25vw, 1.5625rem);
  }
}

/* About Section */
.p-topAbout {
  padding: clamp(2.1875rem, 1.0483rem + 2.3734vw, 3.125rem) 30px clamp(3.75rem, 1.4715rem + 4.7468vw, 5.625rem);
  position: relative;
  height: auto;
  min-height: 100vh;
  padding-bottom: 0; /* Next section connection */
}
@media screen and (max-width: 767px) {
  .p-topAbout {
    padding: clamp(3rem, 0rem + 15vw, 3.75rem) 20px;
  }
}
.p-topAbout__back {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-topAbout__back video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-topAbout__back::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../video/noise_removal.svg");
  position: absolute;
  top: 0;
  left: 0;
}
.p-topAbout__wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-topAbout__wrap {
    flex-flow: column-reverse;
    max-width: 400px;
    margin: 0 auto;
    padding: 0;
    gap: clamp(1.25rem, 0rem + 6.25vw, 1.5625rem);
  }
}
.p-topAbout__imgs {
  position: relative;
  width: 50%;
  height: clamp(25rem, -1.5823rem + 55.3797vw, 46.875rem);
  margin-left: 10%;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .p-topAbout__imgs {
    width: 100%;
    height: clamp(25rem, 0rem + 125vw, 31.25rem);
    margin: 0;
  }
}
.p-topAbout__img {
  width: 60%;
  height: auto;
  position: absolute;
  max-width: 355px;
}
.p-topAbout__img:nth-of-type(1) { top: 0; right: 0; }
.p-topAbout__img:nth-of-type(2) { bottom: 0; left: 0; z-index: 3; }
.p-topAbout__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-topAbout__cont {
  color: #fff;
  width: 50%;
  padding: 0 5% 0 10%;
}
@media screen and (max-width: 767px) {
  .p-topAbout__cont {
    width: 100%;
    padding: 0 7.5%;
  }
}
.p-topAbout__tit {
  margin-top: clamp(5rem, 1.962rem + 6.3291vw, 7.5rem);
  font-size: clamp(2.25rem, 0.8829rem + 2.8481vw, 3.375rem);
  font-family: "EB Garamond", "Times New Roman", "Noto Serif JP", serif;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-topAbout__tit {
    text-align: center;
    margin-top: 0;
  }
}
.p-topAbout__desc {
  line-height: 2.25;
  margin-top: clamp(2.1875rem, 1.0483rem + 2.3734vw, 3.125rem);
}
@media screen and (max-width: 767px) {
  .p-topAbout__desc {
    line-height: 1.8;
    margin-top: clamp(3rem, 0rem + 15vw, 3.75rem);
  }
}

/* Access Section */
.p-topAccess {
  max-width: 1400px;
  margin: clamp(5rem, 1.962rem + 6.3291vw, 7.5rem) auto;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-topAccess {
    max-width: 400px;
    margin: clamp(4rem, 0rem + 20vw, 5rem) auto;
    padding: 0 20px;
    flex-flow: column-reverse;
    gap: clamp(1rem, 0rem + 5vw, 1.25rem);
  }
}
.p-topAccess__map {
  width: 71.4%;
  aspect-ratio: 10/6;
}
@media screen and (max-width: 767px) {
  .p-topAccess__map { width: 100%; aspect-ratio: 1/2; }
}
.p-topAccess__map iframe { width: 100%; height: 100%; }
.p-topAccess__cont {
  width: 24.3%;
  margin: 0 2.1%;
  background-color: #EFEFEF;
  padding: clamp(3.43rem, 1.53rem + 3.95vw, 5rem) 4.28%;
}
@media screen and (max-width: 767px) {
  .p-topAccess__cont {
    width: 100%;
    margin: 0;
    padding: clamp(3rem, 0rem + 15vw, 3.75rem) 15%;
  }
}
.p-topAccess__logo { width: 85%; display: block; }
.p-topAccess__logo img { width: 100%; }
.p-topAccess__list {
  margin-top: clamp(3.43rem, 1.53rem + 3.95vw, 5rem);
  font-size: clamp(0.625rem, 0.245rem + 0.79vw, 0.93rem);
  padding-left: 20%;
  display: flex;
  flex-flow: column;
  gap: clamp(1.25rem, 0.49rem + 1.58vw, 1.875rem);
}
@media screen and (max-width: 767px) {
  .p-topAccess__list { font-size: clamp(0.75rem, 0rem + 3.75vw, 0.93rem); }
}
.p-topAccess__item { position: relative; }
.p-topAccess__item::before {
  content: "";
  display: block;
  width: clamp(1.12rem, 0.51rem + 1.26vw, 1.62rem);
  height: clamp(1.12rem, 0.51rem + 1.26vw, 1.62rem);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: -22%;
  top: 0;
}
.p-topAccess__item.--time::before { background-image: url("../img/home/access/icon_time.svg"); }
.p-topAccess__item.--phone::before { background-image: url("../img/home/access/icon_phone.svg"); }
.p-topAccess__item.--fax::before { background-image: url("../img/home/access/icon_fax.svg"); }
.p-topAccess__item.--address::before { background-image: url("../img/home/access/icon_map.svg"); }
.p-topAccess__link {
  margin-top: clamp(1.87rem, 0.73rem + 2.37vw, 2.81rem);
  text-align: right;
}

/* Link Button (Updated) */
.c-linkBtn {
  display: inline-block;
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid var(--color-gold);
  padding: 14px 40px;
  background-color: transparent;
  transition: all 0.4s;
  position: relative;
  text-align: center;
  min-width: 200px;
}
.c-linkBtn:hover {
  background-color: var(--color-gold);
  color: #fff;
  opacity: 1;
}
.c-linkBtn::after {
  content: none;
}


/* =========================================
   8. COMPONENTS (Gallery, Column, News, Form)
   ========================================= */

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #000;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s;
  opacity: 0.95;
}
.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 1;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Column List (Cards) */
.column-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
.column-card {
  display: flex;
  flex-direction: column;
}
.column-card a {
  display: block;
  color: inherit;
}
.column-card__thumb {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: var(--color-gray);
  position: relative;
}
.column-card__thumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(182, 150, 88, 0.1);
  opacity: 0;
  transition: opacity 0.4s;
}
.column-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.column-card:hover .column-card__thumb img { transform: scale(1.03); }
.column-card:hover .column-card__thumb::after { opacity: 1; }
.column-card__cat {
  display: inline-block;
  font-size: 0.7rem;
  color: #fff;
  background-color: var(--color-gold);
  padding: 2px 10px;
  margin-bottom: 8px;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  align-self: flex-start;
}
.column-card__meta {
  font-size: 0.8rem;
  color: var(--color-black);
  margin-bottom: 10px;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  opacity: 0.6;
}
.column-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s;
}
.column-card:hover .column-card__title { color: var(--color-gold); }
@media (min-width: 768px) {
  .column-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
  }
}

/* News List */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #e0e0e0;
}
.news-item { border-bottom: 1px solid #e0e0e0; }
.news-item a {
  display: flex;
  flex-direction: column;
  padding: 25px 0;
  align-items: flex-start;
  transition: all 0.4s;
  position: relative;
  color: inherit;
}
.news-item a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--color-gold);
  transition: width 0.3s;
  opacity: 0.1;
}
.news-item a:hover::before { width: 100%; }
.news-item__date {
  font-family: var(--font-en);
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 5px;
  min-width: 140px;
}
.news-item__title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
}
.news-item a:hover .news-item__title { color: var(--color-gold); }
@media (min-width: 768px) {
  .news-item a {
    flex-direction: row;
    align-items: baseline;
    padding: 30px 10px;
  }
  .news-item__date {
    margin-bottom: 0;
    margin-right: 40px;
  }
}

/* Contact Form */
.form-container {
  width: 100%;
  max-width: 800px;
  margin: 60px auto 0;
}
.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .form-row {
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 60px;
  }
}
.form-label {
  font-weight: 500;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .form-label {
    width: 240px;
    flex-shrink: 0;
    margin-bottom: 0;
    padding-top: 10px;
  }
}
.label-badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 2px 8px;
  margin-right: 12px;
  min-width: 45px;
  text-align: center;
  font-weight: normal;
}
.label-badge.required {
  background-color: var(--color-gold);
  color: #fff;
  border: 1px solid var(--color-gold);
}
.label-badge.optional {
  background-color: transparent;
  color: #999;
  border: 1px solid #ccc;
}
.form-input-wrapper { flex-grow: 1; }
.form-input-text,
.form-input-email,
.form-textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
  font-size: 1.1rem;
  font-family: var(--font-serif);
  transition: all 0.4s;
  text-align: left;
}
.form-input-text:focus,
.form-input-email:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--color-gold);
}
.form-input-text::placeholder,
.form-textarea::placeholder {
  color: #ccc;
  font-family: var(--font-sans);
  font-size: 0.9rem;
}
.form-textarea { height: 180px; resize: none; }

.form-submit-wrapper { text-align: center; margin-top: 80px; }
.form-submit {
  background-color: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-black);
  padding: 20px 80px;
  font-size: 1rem;
  letter-spacing: 0.25em;
  cursor: pointer;
  transition: all 0.5s ease;
  min-width: 300px;
  font-family: var(--font-en);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--color-gold);
  transition: width 0.4s ease;
  z-index: -1;
}
.form-submit:hover {
  color: var(--color-black) !important;
  border-color: var(--color-gold);
}
.form-submit:hover::before { width: 100%; }


/* =========================================
   9. PAGE CONTENT & ENTRY (Single/Page)
   ========================================= */
.page-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 150px 0 100px;
}
.entry-header {
  text-align: center;
  margin-bottom: 80px;
}
.entry-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
.entry-meta {
  font-family: var(--font-en);
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* Entry Body Typography */
.entry-body {
  font-size: 1rem;
  line-height: 2.2;
  color: #333;
  font-family: var(--font-serif);
}
.entry-body h2 {
  font-size: 1.5rem;
  margin: 90px 0 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-gold);
  font-weight: 400;
  letter-spacing: 0.15em;
}
.entry-body h3 {
  font-size: 1.3rem;
  margin: 70px 0 35px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
}
.entry-body h3::after {
  content: '♦';
  display: block;
  color: var(--color-gold);
  font-size: 0.8rem;
  margin-top: 15px;
}
.entry-body h4 {
  font-size: 1.1rem;
  margin: 50px 0 25px;
  font-weight: 600;
  font-family: var(--font-sans);
}
.entry-body p {
  margin-bottom: 3em;
  text-align: justify;
}
.entry-body blockquote {
  margin: 60px 0;
  padding: 40px 20px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  text-align: center;
  font-style: italic;
  font-family: var(--font-serif);
  color: #555;
}
.entry-body figure { margin: 0 0 60px 0; }
.entry-body img {
  width: 100%;
  height: auto;
  display: block;
}
.entry-body figcaption {
  font-size: 0.8rem;
  color: #999;
  text-align: right;
  margin-top: 12px;
  font-family: var(--font-sans);
}

/* List Styles (Reset Override) */
.entry-body ul {
  list-style: disc;
  margin: 2em 0 2em 0;
  padding-left: 1.5em;
}
.entry-body ol {
  list-style: decimal;
  margin: 2em 0 2em 0;
  padding-left: 1.5em;
}
.entry-body li { margin-bottom: 0.5em; }

/* Table Styles (Block Editor Support) */
.entry-body .wp-block-table {
  margin: 40px 0 60px;
  width: 100%;
  overflow-x: auto;
}
.entry-body .wp-block-table table,
.entry-body table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #eee;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  margin: 0;
}
.entry-body th, .entry-body td,
.entry-body .wp-block-table th,
.entry-body .wp-block-table td {
  padding: 20px;
  border: 1px solid #eee;
  text-align: left;
  vertical-align: middle;
}
.entry-body th,
.entry-body .wp-block-table th {
  background-color: #fafafa;
  font-weight: 500;
  color: #444;
  width: 30%;
  white-space: nowrap;
  border-right: 1px solid #eee;
}
@media (max-width: 768px) {
  .entry-body th, .entry-body .wp-block-table th {
    width: auto;
    white-space: normal;
    min-width: 100px;
  }
  .entry-body td, .entry-body .wp-block-table td {
    min-width: 150px;
  }
}


/* =========================================
   10. MODAL (Overlay)
   ========================================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}
.modal-content-wrapper {
  position: relative;
  max-width: 85%;
  max-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-img {
  max-width: 100%;
  max-height: 85vh;
  display: block;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  object-fit: contain;
}
.modal-btn {
  position: fixed;
  z-index: 10000;
  cursor: pointer;
  color: #ccc;
  transition: all 0.3s;
  font-family: var(--font-en);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-btn:hover { color: var(--color-black); }
.modal-close {
  top: 30px;
  right: 30px;
  font-size: 3rem;
  line-height: 1;
  font-weight: 100;
  width: 50px;
  height: 50px;
}
.modal-prev, .modal-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  width: 80px;
  height: 100px;
}
.modal-prev { left: 20px; }
.modal-next { right: 20px; }
@media (max-width: 768px) {
  .modal-close { top: 20px; right: 20px; font-size: 2.5rem; }
  .modal-prev, .modal-next { font-size: 2.5rem; width: 50px; }
  .modal-prev { left: 0; }
  .modal-next { right: 0; }
  .modal-img { max-width: 95%; }
}

/* Cookie Consent */
.cookieConsent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 150;
  bottom: -100px;
  left: calc(50% - 40vw);
  width: 80vw;
  background-color: rgb(255, 255, 255);
  padding: 16px 30px;
  border-radius: 5px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  visibility: visible;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .cookieConsent {
    display: block;
    bottom: -200px;
    padding: 20px 20px;
    left: 30px;
    width: calc(100% - 60px);
    text-align: center;
  }
}
.cookieConsent.is-show { bottom: 30px; }
.cookieConsent__text { width: 90%; font-size: 0.875rem; }
@media screen and (max-width: 767px) {
  .cookieConsent__text { width: 100%; text-align: left; }
}
.cookieConsent__agree {
  font-size: 0.875rem;
  color: #333333;
  background-color: #FFF;
  border: solid 1px #CCC;
  padding: 10px 30px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .cookieConsent__agree { display: inline-block; text-align: center; margin: 10px auto 0; }
}
.cookieConsent__agree:hover { opacity: 0.6; color: #FFF; background-color: #333333; }
.cookieConsent.cc-hide {
  animation: hide 1s linear 0s;
  animation-fill-mode: forwards;
}
@keyframes hide {
  from { opacity: 1; }
  to { opacity: 0; visibility: hidden; }
}

/* =========================================
   ▼▼ FIX: Contact Form 7 送信ボタン位置調整 ▼▼
   ========================================= */
/* ローディングアイコン（スピナー）を絶対配置にして、
   ボタンの整列（中央寄せ）に影響しないようにする */
.wpcf7 form .wpcf7-spinner {
    position: absolute;
    margin: 0 0 0 15px; /* ボタンの右側に少し隙間を空けて配置 */
}

/* もしボタンが .form-submit-wrapper で囲まれていない場合への保険 */
.wpcf7 form p {
    text-align: center;
}


/* =========================================
   11. PAGE: ABOUT (from Canvas)
   ========================================= */
.p-about {
    line-height: 1.8;
    overflow-x: hidden;
}
.p-about * { box-sizing: border-box; }

/* 共通パーツ: セクションヘッダー (Override) */
.p-about .section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 2rem + 4vw, 5rem);
}
.p-about .section-title-en {
    font-family: var(--font-en);
    font-size: clamp(2rem, 1.5rem + 2vw, 2.5rem);
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    color: var(--color-black);
}
.p-about .section-title-ja {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--color-gold);
    display: block;
    letter-spacing: 0.2em;
}

/* 共通パーツ: 汎用セクションラッパー */
.p-about .genSec {
    padding: 0 30px;
    max-width: 1200px;
    margin: clamp(5rem, 4rem + 5vw, 8rem) auto;
}
@media screen and (max-width: 767px) {
    .p-about .genSec { padding: 0 20px; margin: clamp(4rem, 3rem + 5vw, 6rem) auto; }
}

/* 1. Page Header */
.p-about .p-pageHeader {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    /* 本番画像パスに変更 */
    background-image: url('../img/about/about_header.jpg'); 
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(4rem, 2rem + 5vw, 6rem);
}
.p-about .p-pageHeader::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}
.p-about .p-pageHeader__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}
.p-about .p-pageHeader__title {
    font-family: var(--font-en);
    font-size: clamp(2.5rem, 1.5rem + 2.5vw, 4rem);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-weight: 500;
}
.p-about .p-pageHeader__sub {
    font-family: var(--font-serif);
    font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.1rem);
    letter-spacing: 0.2em;
    color: var(--color-gold);
}

/* 2. Concept */
.p-about .p-concept {
    text-align: center;
    padding-top: clamp(2rem, 1.5rem + 3vw, 4rem);
    padding-bottom: clamp(2rem, 1.5rem + 3vw, 4rem);
    position: relative;
}
/* 背景装飾（ダミー画像だったので削除） */
.p-about .p-concept__lead {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 1rem + 1vw, 1.8rem);
    line-height: 2.4;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 2.5rem;
}
.p-about .p-concept__text {
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 0.85rem + 0.5vw, 1.05rem);
    line-height: 2.4;
    color: #555;
}

/* ▼ スマホ用調整: 左寄せ・改行削除 */
@media screen and (max-width: 767px) {
    .p-about .p-concept__lead,
    .p-about .p-concept__text {
        text-align: left;
    }
    .p-about .p-concept__lead br,
    .p-about .p-concept__text br {
        display: none;
    }
}

/* 3. Message */
.p-about .bg-gray {
    background-color: var(--color-gray);
    width: 100%;
    padding: clamp(4rem, 3rem + 5vw, 7rem) 0;
}
.p-about .bg-gray .genSec { margin: 0 auto; }

.p-about .p-message__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 60px;
}
.p-about .p-message__img {
    flex: 0 0 40%;
    max-width: 400px;
    position: relative;
}
.p-about .p-message__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 15px 15px 0px var(--color-gold);
}
.p-about .p-message__body {
    flex: 1;
    min-width: 0;
}
@media (max-width: 900px) {
    .p-about .p-message__wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .p-about .p-message__img { 
        flex: none;
        width: 100%;
        max-width: 500px; 
        margin: 0 auto 10px;
    }
    .p-about .p-message__body { 
        flex: none;
        width: 100%; 
    }
}

.p-about .p-message__title {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 1rem + 1vw, 1.6rem);
    color: var(--color-black);
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    border-left: 4px solid var(--color-gold);
    padding-left: 20px;
}
.p-about .p-message__text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 2;
    margin-bottom: 2rem;
    text-align: justify;
}
.p-about .p-message__sign {
    font-family: var(--font-en);
    text-align: right;
    font-size: 1.2rem;
    margin-top: 2rem;
    color: var(--color-black);
}

/* Profile / History */
.p-about .p-profile {
    margin-top: 3rem;
    background-color: #fff;
    padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.p-about .p-profile__title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 5px;
}
.p-about .p-profile__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.p-about .p-profile__list li {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.8;
    padding-left: 1.2rem;
    position: relative;
    color: #555;
}
.p-about .p-profile__list li:last-child {
    margin-bottom: 0;
}
.p-about .p-profile__list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* 4. Philosophy (Mission / Vision / Values) */
.p-about .p-philosophy {
    position: relative;
}
.p-about .mv-row {
    display: flex;
    align-items: center;
    margin-bottom: clamp(4rem, 3rem + 5vw, 6rem);
    gap: 5%;
}
.p-about .mv-row:nth-child(even) {
    flex-direction: row-reverse;
}
@media (max-width: 900px) {
    .p-about .mv-row,
    .p-about .mv-row:nth-child(even) {
        flex-direction: column;
        gap: 30px;
    }
}
.p-about .mv-img {
    width: 45%;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.p-about .mv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.p-about .mv-img:hover img {
    transform: scale(1.05);
}
.p-about .mv-content {
    width: 50%;
}
@media (max-width: 900px) {
    .p-about .mv-img,
    .p-about .mv-content { width: 100%; }
}
.p-about .mv-head {
    margin-bottom: 20px;
}
.p-about .mv-head__en {
    font-family: var(--font-en);
    font-size: 2rem;
    color: var(--color-black);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}
.p-about .mv-head__ja {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-gold);
    letter-spacing: 0.2em;
}
.p-about .mv-text {
    font-size: 1rem;
    line-height: 2;
    color: #333;
    text-align: justify;
}

/* 5. Values */
.p-about .p-values {
    background-color: #fafafa;
    padding: clamp(3rem, 2rem + 4vw, 5rem);
    margin-top: 80px;
}
.p-about .p-values__header {
    text-align: center;
    margin-bottom: 50px;
}
.p-about .values-list {
    counter-reset: value-counter;
    max-width: 900px;
    margin: 0 auto;
}
.p-about .values-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
}
.p-about .values-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
@media (min-width: 768px) {
    .p-about .values-item {
        flex-direction: row;
        align-items: flex-start;
    }
}
.p-about .values-item__head {
    width: 100%;
    margin-bottom: 15px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-black);
    display: flex;
    align-items: flex-start;
}
@media (min-width: 768px) {
    .p-about .values-item__head { width: 35%; margin-bottom: 0; padding-right: 20px; }
}
.p-about .values-item__head::before {
    counter-increment: value-counter;
    content: "0" counter(value-counter);
    font-family: var(--font-en);
    color: var(--color-gold);
    font-size: 2rem;
    line-height: 1;
    margin-right: 15px;
    font-weight: 500;
    margin-top: -5px;
}
.p-about .values-head-text {
    display: flex;
    flex-direction: column;
}
.p-about .values-sub {
    font-size: 0.85rem;
    color: #999;
    font-family: var(--font-en);
    margin-left: 0;
    margin-top: 5px;
    letter-spacing: 0.05em;
    display: block;
}
.p-about .values-item__text {
    width: 100%;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    padding-top: 5px;
}
@media (min-width: 768px) {
    .p-about .values-item__text { width: 65%; }
}