body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

/* =====================
   Header
   ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 120px;
  background-color: #3D1A0A;
  overflow: visible;
  box-sizing: border-box;
}

/* 瓦 背景（ヘッダー上に重ねる装飾） */
.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 154px;
  pointer-events: none;
  z-index: 0;
}

.header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ヘッダー内コンテンツ */
.header-inner {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  width: 100%;
  height: 120px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .header-inner {
    padding: 0 20px;
  }
}

.header-logo {
  flex-shrink: 0;
}

.header-logo a {
  display: block;
}

.header-logo img {
  height: 30px;
  width: auto;
  display: block;
}

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

.header-nav li {
  display: flex;
  align-items: center;
}

.header-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: #c9a063;
}

/* ヘッダードロップダウン */
.has-dropdown .header-dropdown {
  position: absolute;
  top: calc(100% - 10px);
  right: 60px;
  left: auto;
  transform: none;
  background-color: rgba(35, 24, 21, 0.96);
  list-style: none;
  padding: 16px 24px 24px;
  margin: 0;
  width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 16px;
  row-gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.has-dropdown:hover .header-dropdown {
  opacity: 1;
  visibility: visible;
}

.has-dropdown .header-dropdown li {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.has-dropdown .header-dropdown a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #fff;
  white-space: normal;
}

.has-dropdown .header-dropdown a::after {
  content: '›';
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.has-dropdown .header-dropdown a:hover {
  color: #C9A063;
}

.has-dropdown .header-dropdown a:hover::after {
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 36px;
  height: 26px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

@media (max-width: 1024px) {
  .header-nav ul {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* =====================
   Drawer
   ===================== */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer-overlay.is-open {
  display: block;
  opacity: 1;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100%;
  background-color: #3D1A0A;
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 100px 40px 60px;
  box-sizing: border-box;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 32px;
  right: 28px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-close span {
  position: absolute;
  display: block;
  width: 28px;
  height: 2px;
  background-color: #fff;
}

.drawer-close span:first-child {
  transform: rotate(45deg);
}

.drawer-close span:last-child {
  transform: rotate(-45deg);
}

.drawer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.drawer-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.drawer-nav a {
  display: block;
  padding: 20px 0;
  color: #fff;
  text-decoration: none;
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  transition: color 0.2s ease;
}

.drawer-nav a:hover {
  color: #C9A063;
}

/* ドロワーサブメニュー */
.drawer-sub-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  text-align: left;
}

.drawer-sub-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-bottom: 3px;
}

.drawer-sub-toggle[aria-expanded="true"] .drawer-sub-arrow {
  transform: rotate(-135deg);
  margin-bottom: -3px;
}

.drawer-sub-nav {
  list-style: none;
  padding: 0 0 8px 16px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.drawer-sub-nav.is-open {
  max-height: 500px;
}

.drawer-sub-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-sub-nav li:last-child {
  border-bottom: none;
}

.drawer-sub-nav a {
  display: block;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
}

.drawer-sub-nav a:hover {
  color: #C9A063;
}

/* =====================
   KeyVisual
   ===================== */
.kv {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  margin-top: 120px;
}

.kv-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.kv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2.5s ease;
}

.kv-slide.active {
  opacity: 1;
}

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

.kv-img.sp {
  display: none;
}

.kv-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  max-width: 729px;
  z-index: 10;
}

.kv-text img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.kv-text img.sp {
  display: none;
}

@media (max-width: 767px) {
  .kv {
    aspect-ratio: 3 / 4;
    margin-top: 120px;
  }

  .kv-img.pc {
    display: none;
  }

  .kv-img.sp {
    display: block;
  }

  .kv-text {
    width: 100%;
    max-width: none;
    background: rgba(0, 0, 0, 0.8);
    padding: 28px 0;
  }

  .kv-text::before,
  .kv-text::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background: #C9A063;
  }

  .kv-text::before {
    top: 0;
  }

  .kv-text::after {
    bottom: 0;
  }

  .kv-text img.pc {
    display: none;
  }

  .kv-text img.sp {
    display: block;
    width: 85%;
    margin: 0 auto;
  }
}

/* =====================
   Message
   ===================== */
.message {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: 10px solid #C9A063;
}

/* 背景写真 */
.message-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.message-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.message-bg .sp {
  display: none;
}

@media (max-width: 1024px) {
  .message-bg .pc {
    display: none;
  }

  .message-bg .sp {
    display: block;
  }
}

/* コンテンツ */
.message-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  align-items: flex-end;
}

/* テキスト */
.message-text {
  flex: 1;
  color: #fff;
  padding: 60px 40px 60px 60px;
}

.message-text p {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 2.2;
  margin: 0 0 1.5em;
}

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

.message-img {
  flex: 0 0 50vw;
  width: 50vw;
  margin: 0;
  position: relative;
  align-self: stretch;
}

.message-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  mask-image: linear-gradient(to right, transparent, black 240px);
}

/* スマホ */
@media (max-width: 1024px) {
  .message-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .message-text {
    padding: 40px 5%;
  }

  .message-text p {
    font-size: 18px;
  }

  .message-img {
    flex: none;
    width: 100%;
    margin: 0;
    position: relative;
    align-self: auto;
  }

  .message-img img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
    mask-image: linear-gradient(to bottom, transparent, black 160px);
  }
}

@media (max-width: 767px) {
  .message-text br {
    display: none;
  }
}

/* =====================
   Store
   ===================== */
.store {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.store-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.store-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-bg .sp {
  display: none;
}

@media (max-width: 1024px) {
  .store-bg .pc {
    display: none;
  }

  .store-bg .sp {
    display: block;
  }
}

.store-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 60px;
  box-sizing: border-box;
}

.store-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.store-heading-uzumaki {
  flex: 1;
  height: 43px;
  background-image: url('img/uzumaki.svg');
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: right center;
}

.store-heading-uzumaki-flip {
  transform: scaleX(-1);
  background-position: right center;
}

.store-heading-title {
  flex-shrink: 0;
  text-align: center;
  padding: 0 32px;
}

.store-heading-title h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #3D1A0A;
  margin-bottom: 8px;
}

.store-heading-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #3D1A0A;
  margin-bottom: 6px;
}

.store-heading-en {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #3D1A0A;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.store-item {
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  display: block;
  text-decoration: none;
}

.store-item-img {
  overflow: hidden;
}

.store-item img {
  width: 100%;
  aspect-ratio: 8 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.store-item p {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  text-align: center;
  color: #3D1A0A;
  padding: 16px 12px;
  letter-spacing: 0.08em;
}

.store-bottom {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  margin-top: -25%;
}

.store-bottom img {
  width: 50%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .store-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .store-inner {
    padding: 60px 20px;
  }

  .store-heading h2 {
    font-size: 28px;
  }

  .store-heading-uzumaki {
    height: 22px;
  }

  .store-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .store-bottom img {
    width: 100%;
  }
}

/* =====================
   Company
   ===================== */
.company {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.company-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.company-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.company-bg .sp {
  display: none;
}

@media (max-width: 1024px) {
  .company-bg .pc {
    display: none;
  }

  .company-bg .sp {
    display: block;
  }
}

.company-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 60px;
  box-sizing: border-box;
}

.company-heading {
  text-align: center;
  margin-bottom: 60px;
}

.company-heading-inner {
  display: inline-block;
  text-align: center;
}

.company-heading h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 8px;
}

.company-heading-line {
  display: block;
  height: 1px;
  background-color: #fff;
  margin-bottom: 6px;
}

.company-heading-en {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #fff;
}

.company-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

@media (min-width: 1025px) {
  .company-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
}

.company-table {
  flex: 1;
}

.company-table dl {
  width: 100%;
}

.company-row {
  display: flex;
  border-bottom: 1px solid #fff;
  padding: 16px 0;
}

.company-row dt {
  flex: 0 0 20%;
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.company-row dd {
  flex: 0 0 80%;
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.05em;
}

.company-imgs {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}

.company-imgs img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .company-inner {
    padding: 60px 5%;
  }

  .company-heading h2 {
    font-size: 28px;
  }

  .company-content {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    width: 100%;
    max-width: 100%;
  }

  .company-imgs {
    flex: none;
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
  }

  .company-imgs img {
    flex: 1;
    width: 0;
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .company-row {
    gap: 12px;
  }

  .company-row dt {
    flex: 0 0 30%;
  }

  .company-row dd {
    flex: 1;
  }

  .company-imgs {
    flex-direction: column;
  }

  .company-imgs img {
    flex: none;
    width: 100%;
  }
}

/* =====================
   Recruit
   ===================== */
.recruit {
  background-color: #fff;
  width: 100%;
}

.recruit-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 60px;
  box-sizing: border-box;
}

.recruit-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.recruit-heading-uzumaki {
  flex: 1;
  height: 43px;
  background-image: url('img/uzumaki.svg');
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: right center;
}

.recruit-heading-uzumaki-flip {
  transform: scaleX(-1);
  background-position: right center;
}

.recruit-heading-title {
  flex-shrink: 0;
  text-align: center;
  padding: 0 32px;
}

.recruit-heading-title h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #3D1A0A;
  margin-bottom: 8px;
}

.recruit-heading-line {
  display: block;
  height: 1px;
  background-color: #3D1A0A;
  margin-bottom: 6px;
}

.recruit-heading-en {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #3D1A0A;
}

.recruit-coming {
  text-align: center;
  padding: 80px 0;
}

.recruit-coming p {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  letter-spacing: 0.3em;
  color: #3D1A0A;
}

@media (max-width: 767px) {
  .recruit-inner {
    padding: 60px 5%;
  }

  .recruit-heading-title h2 {
    font-size: 28px;
  }

  .recruit-heading-uzumaki {
    height: 22px;
  }
}

/* =====================
   Subpage Common
   ===================== */
.subpage {
  background-color: #3D1A0A;
  padding-top: 120px;
}

/* 外観写真 + 紹介文 */
.ss-overview {
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, rgba(201, 160, 99, 0.4) 20%, rgba(201, 160, 99, 0.4) 80%, transparent) 1;
}

.ss-overview-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ss-overview-img img {
  width: 100%;
  height: auto;
  display: block;
}

.ss-overview-text p {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  line-height: 2.2;
  color: #fff;
  margin: 0 0 1.5em;
}

.ss-overview-text p:last-child {
  margin-bottom: 0;
}

/* セクション共通 */
.ss-section {
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, rgba(201, 160, 99, 0.4) 20%, rgba(201, 160, 99, 0.4) 80%, transparent) 1;
}

.ss-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px;
  box-sizing: border-box;
}

.ss-heading {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #C9A063;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 160, 99, 0.4);
}

/* 店舗情報テーブル */
.ss-info-table {
  margin-bottom: 40px;
}

.ss-info-row {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 0;
}

.ss-info-row dt {
  flex: 0 0 120px;
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
}

.ss-info-row dd {
  flex: 1;
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.05em;
  margin: 0;
}

/* インスタ・予約ボタン */
.ss-info-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.ss-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.ss-btn:hover {
  opacity: 0.8;
}

.ss-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ss-btn-instagram {
  background-color: #C9A063;
  color: #231815;
}

.ss-btn-reserve {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.ss-btn-reserve:hover {
  border-color: #fff;
  opacity: 1;
}

/* メニュー */
.ss-menu-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ss-menu-list li {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.08em;
  padding: 20px 0;
  margin: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* ギャラリー */
.ss-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.gallery-thumb-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

/* トップへ戻る */
.ss-back {
  text-align: center;
  padding: 60px;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, rgba(201, 160, 99, 0.4) 20%, rgba(201, 160, 99, 0.4) 80%, transparent) 1;
}

.ss-back-btn {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 16px 60px;
  transition: border-color 0.2s ease;
}

.ss-back-btn:hover {
  border-color: #fff;
}

/* ライトボックス */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 300;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}

.lightbox-close::before,
.lightbox-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background-color: #fff;
}

.lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .ss-overview-inner {
    grid-template-columns: 1fr 1fr;
    padding: 60px 5%;
    gap: 40px;
  }

  .ss-inner {
    padding: 60px 5%;
  }

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

@media (max-width: 767px) {
  .ss-overview-inner {
    grid-template-columns: 1fr;
    padding: 40px 5%;
    gap: 32px;
  }

  .ss-inner {
    padding: 40px 5%;
  }

  .ss-heading {
    font-size: 20px;
  }

  .ss-info-row {
    gap: 12px;
  }

  .ss-info-row dt {
    flex: 0 0 30%;
  }

  .ss-menu-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ss-back {
    padding: 40px 5%;
  }

  .ss-back-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

/* =====================
   Contact Page
   ===================== */
.contact-page {
  background-color: #3D1A0A;
  padding-top: 120px;
}

/* ページ見出し */
.page-hero {
  padding: 80px 60px 60px;
  text-align: center;
}

.page-hero-inner {
  display: inline-block;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #fff;
  margin: 0 0 10px;
}

.page-hero-line {
  display: block;
  height: 1px;
  background-color: #C9A063;
  margin-bottom: 8px;
}

.page-hero-en {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  letter-spacing: 0.25em;
  color: #C9A063;
  margin: 0;
}

/* メッセージ＋写真 */
.contact-intro {
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, rgba(201, 160, 99, 0.4) 20%, rgba(201, 160, 99, 0.4) 80%, transparent) 1;
}

.contact-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-intro-message p {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  line-height: 2.2;
  color: #fff;
  margin: 0 0 1.5em;
}

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

.contact-intro-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* フォーム */
.contact-form-section {
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, rgba(201, 160, 99, 0.4) 20%, rgba(201, 160, 99, 0.4) 80%, transparent) 1;
}

.contact-form-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  box-sizing: border-box;
}

.form-group {
  margin-bottom: 32px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.required {
  font-size: 11px;
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #C9A063;
  color: #231815;
  padding: 2px 8px;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #231815;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(35, 24, 21, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #C9A063;
}

.form-group textarea {
  resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e05555;
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}

.form-submit button {
  background-color: #C9A063;
  color: #231815;
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  border: none;
  padding: 18px 80px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.form-submit button:hover {
  opacity: 0.85;
}

/* 確認画面 */
.confirm-lead {
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  line-height: 1.8;
}

.confirm-table {
  margin: 0 0 48px;
}

.confirm-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 0;
  gap: 24px;
}

.confirm-row dt {
  flex: 0 0 160px;
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  color: #C9A063;
  letter-spacing: 0.08em;
}

.confirm-row dd {
  flex: 1;
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin: 0;
}

.form-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.form-buttons #btn-back {
  background-color: transparent;
  color: #fff;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 16px 48px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.form-buttons #btn-back:hover {
  border-color: #fff;
}

.form-buttons #btn-send {
  background-color: #C9A063;
  color: #231815;
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  border: none;
  padding: 16px 64px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.form-buttons #btn-send:hover {
  opacity: 0.85;
}

.form-buttons #btn-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 完了画面 */
.complete-message {
  text-align: center;
  padding: 80px 0;
}

.complete-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  letter-spacing: 0.15em;
  color: #C9A063;
  margin-bottom: 24px;
}

.complete-message p {
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  color: #fff;
  line-height: 2;
  margin: 0;
}

.complete-btn {
  display: inline-block;
  margin-top: 48px;
  background-color: #C9A063;
  color: #231815;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-decoration: none;
  padding: 16px 60px;
  transition: opacity 0.2s ease;
}

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

/* confirm.php の戻るリンク */
.btn-back-link {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 16px 48px;
  transition: border-color 0.2s ease;
}

.btn-back-link:hover {
  border-color: #fff;
}

@media (max-width: 767px) {
  .confirm-row {
    flex-direction: column;
    gap: 6px;
  }

  .confirm-row dt {
    flex: none;
  }

  .form-buttons {
    flex-direction: column-reverse;
    align-items: center;
  }

  .form-buttons #btn-back,
  .form-buttons #btn-send {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .contact-intro-inner {
    grid-template-columns: 1fr 1fr;
    padding: 60px 5%;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .page-hero {
    padding: 60px 5% 40px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .contact-intro-inner {
    grid-template-columns: 1fr;
    padding: 40px 5%;
    gap: 32px;
  }

  .contact-form-inner {
    padding: 40px 5%;
  }
}

/* ============================================================
   タブ切り替え
   ============================================================ */
.form-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 48px;
}

.form-tab {
  flex: 1;
  padding: 16px 24px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

.form-tab:hover {
  color: rgba(255, 255, 255, 0.8);
}

.form-tab.active {
  color: #fff;
  border-bottom-color: #C9A063;
  font-weight: 500;
}

/* タブ内改行：PCは非表示、SPのみ表示 */
.sp-br {
  display: none;
}

/* 日付入力 disabled 状態 */
.form-group input:disabled {
  background-color: #f5f2ef;
  color: rgba(35, 24, 21, 0.35);
  cursor: not-allowed;
  border-color: rgba(61, 26, 10, 0.1);
}

/* セレクトボックス */
.form-group select {
  width: 100%;
  background-color: #fff;
  border: 1px solid rgba(61, 26, 10, 0.2);
  border-radius: 2px;
  padding: 14px 40px 14px 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: #231815;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233D1A0A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.form-group select:focus {
  border-color: #C9A063;
  outline: none;
}

.form-group select.error {
  border-color: #e05555;
}

/* flatpickr カスタマイズ */
.flatpickr-calendar {
  font-family: 'Noto Sans JP', sans-serif;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: #C9A063;
  border-color: #C9A063;
}

.flatpickr-day:hover {
  background: rgba(201, 160, 99, 0.15);
}

@media (max-width: 480px) {
  .form-tab {
    padding: 14px 12px;
    font-size: 13px;
    line-height: 1.4;
  }

  .sp-br {
    display: inline;
  }
}

/* =====================
   Footer
   ===================== */
.site-footer {
  background-color: #231815;
  width: 100%;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 60px 60px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col-logo img {
  height: 30px;
  width: auto;
  display: block;
}

.footer-col-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #C9A063;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #C9A063;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

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

.footer-copy {
  background-color: #C9A063;
  padding: 20px 60px;
  text-align: center;
}

.footer-copy p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #231815;
  margin: 0;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
  }
}

@media (max-width: 767px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 60px 5% 40px;
    gap: 40px;
  }

  .footer-copy {
    padding: 20px 5%;
  }
}
