﻿:root {
  --font-size-base: 16px;
}
body {
  font-size: var(--font-size-base);
  font-family: "Noto Serif JP", serif;
  position: relative;
  overflow-x: hidden;
}
h1 {
  font-size: 1rem;
  font-weight: 400;
}

header {
  position: absolute;
  top: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

main {
  position: absolute;
  top: 0;
  z-index: 1;
  min-height: 100vh;
  width: 100%;
}

.hsp10 {
  width: 100%;
  height: 10px;
}
.hsp20 {
  width: 100%;
  height: 20px;
}
.hsp50 {
  width: 100%;
  height: 50px;
}
.hsp100 {
  width: 100%;
  height: 100px;
}
.hsp200 {
  width: 100%;
  height: 200px;
}

/* ヒーローセクション */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("../images/first-view-bg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-left: 20px;
}

/* .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255, 215, 0, 0.15) 0%,
    rgba(255, 237, 78, 0.1) 25%,
    rgba(255, 242, 161, 0.05) 50%,
    rgba(255, 237, 78, 0.1) 75%,
    rgba(255, 215, 0, 0.15) 100%
  );
  pointer-events: none;
  z-index: 1;
} */

.hero p {
  position: relative;
  z-index: 2;
  font-size: 3vw;
  line-height: 1.2;
  color: #2c1810;
  margin: 0;
  text-align: left;
}
.enter-hero {
  justify-content: center !important;
}
.enter-logo {
  width: 60vw;
  max-width: 500px;
  height: auto;
  margin-top: -15vh;
  position: relative;
  z-index: 999;
}
.enter-buttons {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.enter-buttons p {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 5px;
    text-align: center;
}
.banner8831 {
  display: flex;
  justify-content: center;
  gap: 5px;
  width: 100%;
}
.enter-18-leave {
  width: 100%;
  background-color: rgba(0, 0, 0, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 3rem;
  color: #fff;
  font-weight: 500;
}
.enter-18-leave img {
  width: 50px;
  height: 50px;
}
.banner3col {
    display: flex;
    width: 100%;
    max-width: 1000px;
    gap:20px;
    margin: 10px auto;
}
.banner3col li {
    width: 33%;
}
.banner3col li a img {
    width: 100%;
    height: auto;
}
/* ナビゲーション */
.main-nav {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  margin: 20px;
  max-width: calc(100vw - 40px);
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0 40px;
}
.nav-item {
  flex: 1;
  position: relative;
}

.nav-link {
  display: block;
  text-align: center;
  padding: 20px 7px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #000;
}

.nav-link:active {
  transform: translateY(0);
}

/* ドロップダウンメニュー */
.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(128, 128, 128, 0.3);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 180px;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.submenu li {
  margin: 0;
}

.submenu .nav-link {
  padding: 8px 16px;
  font-size: 14px;
  margin: 0;
  background: transparent;
  border-radius: 0;
}

.submenu .nav-link:hover {
  background-color: rgba(128, 128, 128, 0.5);
  transform: none;
}

.highlight {
  background: linear-gradient(90deg, #bf9e75 0%, /* ダークゴールド */ #423123 30%, /* ゴールデンロッド */ #a68263 50%, /* ゴールド */ #866346 77%, /* 明るいゴールド */ #bf9e75 100% /* ゴールデンロッド */);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: goldShine 10s linear infinite;
}

/* ゴールドシャインアニメーション */
@keyframes goldShine {
  0% {
    background-position: -200% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.container {
  margin: 0 auto;
}
.bg-gray {
  background-color: #f5f5f5;
  position: relative;
  padding-top: 2px;
}
.ornament-top {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
}
.ornament-bottom {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
}

h2 {
  font-size: 5vw;
  font-weight: 400;
  margin: 50px auto 50px 20px;
  color: #d8d8d8;
  font-feature-settings: "palt";
}
h2 span.sub-text {
  font-size: 2rem;
}
h2.highlight {
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
h2.highlight span.sub-text {
  display: block;
  font-size: 16px;
}
.whatsnew {
}
.whatsnew li {
  margin-top: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: dotted 1px #939393;
  max-width: 1200px;
  margin: 10px auto 20px auto;
}
.whatsnew li a {
  color: rgba(53, 53, 53, 1);
  text-decoration: none;
  display: block;
  line-height: 1.2em;
}
.whatsnew_text {
  font-weight: bold;
  font-size: 20px;
}

.links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  gap: 10px;
  max-width: 1200px;
}

.contents_list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
}
.contents_list li {
  width: 30%;
}
.contents_list li a img {
  width: 100%;
}

.contents_link_area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 600px;
  height: 400px;
}
.contents_link {
  text-align: center;
  padding: 5px 10px;
  margin: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}

/* スティッキーヘッダー */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  transition: transform 0.3s ease-in-out;
  transform: translateY(-100%);
}

.sticky-header.show {
  transform: translateY(0);
}

.sticky-header-logo {
  height: 50px;
  width: auto;
}

.sticky-header .main-nav {
  margin: 0;
  padding: 10px 15px;
  max-width: none;
  background-color: rgba(0, 0, 0, 0.05);
}

.sticky-header .nav-link {
  font-size: 14px;
}

/* スティッキーヘッダーの追加スタイル */
.sticky-header {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.sticky-header.show {
  transform: translateY(0);
}

.sticky-nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.sticky-nav-item {
  flex: 1;
  position: relative;
}

.sticky-nav-link {
  display: block;
  text-align: center;
  padding: 20px 6px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 14px;
}

.sticky-nav-link:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #000;
}

.sticky-nav-link:active {
  transform: translateY(0);
}

/* スティッキーヘッダー内のドロップダウンメニュー */
.sticky-header .has-submenu {
  position: relative;
}

.sticky-header .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(128, 128, 128, 0.3);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 160px;
}

.sticky-header .has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.sticky-header .submenu li {
  margin: 0;
}

.sticky-header .submenu .sticky-nav-link {
  padding: 6px 12px;
  font-size: 12px;
  margin: 0;
  background: transparent;
  border-radius: 0;
}

.sticky-header .submenu .sticky-nav-link:hover {
  background-color: rgba(128, 128, 128, 0.5);
  transform: none;
}

/* 最後の「RECRUIT」項目のサブメニューだけ、少し左へずらす */
.sticky-header .sticky-nav-item.has-submenu:last-child .submenu {
  left: calc(50% - 20px);
}

.sticky-header-logo-box {
  display: flex;
}
.shicky-header-contact {
}
.sticky-header-tel {
  font-size: 1.6rem;
  display: flex;
}
.sticky-header-time {
  font-size: 0.7rem;
  margin-top: -7px;
  margin-left: 7.5px;
  letter-spacing: 6.4px;
}
.sticky-header-phone {
  width: 30px;
  height: 30px;
  margin-top: 5px;
  margin-right: 5px;
}

/* Typewriter Effect Styles */
.typewriter-effect {
  position: relative;
}

.typewriter-effect .char {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.typewriter-effect .char.animate {
  opacity: 1;
}

.typewriter-effect .sub-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.typewriter-effect .sub-text.animate {
  opacity: 1;
  transform: translateY(0);
}

.system-page {
  margin: 60px auto 0 auto;
  width: 100%;
  min-height: 100vh;
  overflow: visible;
  background-image: url("../images/marble-bg.jpg");
  background-position: top right;
  background-repeat: no-repeat;
}
.system-hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.system-hero p.system-hero-subtitle {
  position: relative;
  z-index: 2;
  font-size: clamp(1rem, 2vw, 32px);
  line-height: 1.2;
  color: #2c1810;
  margin: 20px 0 0 20px;
  text-align: left;
}
/* ゴールドグラデーション文字 */
/* system-hero-title: 動くグラデーション背景 + 白文字 */
.system-hero-title {
  position: relative;
  display: inline-block;
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: bold;
  color: white !important;
  font-feature-settings: "palt";
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  padding: 0 0 3px 20px;
  overflow: hidden;
  width: clamp(1rem, 60%, 980px);
  max-width: 980px;
  z-index: 1;
}

.system-hero-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #bf9e75 0%, /* ダークゴールド */ #a68263 40%, /* ゴールド */ #866346 77%, /* 明るいゴールド */ #bf9e75 100% /* ゴールデンロッド */);
  background-size: 200% 100%;
  animation: goldShine 10s linear infinite;
  z-index: -1;
}
.negative-top-20 {
  margin-top: -20px;
}

.system-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 10px solid #dedede;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}
.system-price-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.system-price-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.5);
  width: 100%;
  font-family: noto-serif-jp, serif;
  font-weight: 400;
}
.system-price-title {
  font-size: 2.9rem;
  font-weight: 400;
  font-family: noto-serif-jp, serif;
  line-height: 1.2;
  width: 48%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #b4b4b4;
}
.system-price-title2 {
  font-size: 2rem;
  font-weight: 400;
  font-family: noto-serif-jp, serif;
  line-height: 1.2;
  width: 48%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #b4b4b4;
}
.system-price-title p,.system-price-title2 p {
  font-size: 1.2rem;
  font-weight: 900;
  font-family: noto-serif-jp, serif;
  text-align: right;
  color: #730000;
  margin-right: 10px;
}
.system-price-title span.system-price-title-s {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: noto-serif-jp, serif;
  margin-top: auto;
  padding-bottom: 4px;
}
.system-price-price {
  font-size: 3.8rem;
  font-weight: 400;
  font-family: noto-sans-jp, sans-serif;
  width: 48%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: noto-serif-jp, serif;
  color: #b4b4b4;
}
.system-price-price2 {
  font-size: 2rem;
  font-weight: 400;
  font-family: noto-sans-jp, sans-serif;
  width: 48%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: noto-serif-jp, serif;
  color: #b4b4b4;
}
.rotation-text span {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: noto-serif-jp, serif;
}
.banner1000 {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto 0 auto;
}

.system-shopinfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.system-shopinfo div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  font-family: noto-serif-jp, serif;
  font-weight: 400;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.5);
  padding: 15px 0;
}
.system-shopinfo dt {
  width: 38%;
  font-size: 1.4rem;
  text-align: right;
}
.system-shopinfo dd {
  width: 70%;
  font-size: 1.4rem;
  text-align: left;
}
.system-prohibitions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-family: noto-serif-jp, serif;
  font-weight: 400;
  list-style-type: disc;
  list-style-position: inside;
}
.system-prohibitions p {
  width: 100%;
  line-height: 1.4rem;
  margin-top: 10px;
  padding-bottom: 5px;
}
.system-prohibitions li {
  text-align: left;
  margin-top: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.5);
  width: 100%;
  padding-bottom: 8px;
}
.system-reason {
  margin: 60px 0;
}
.flooruide-item {
  margin-right: 5px;
  margin-left: 5px;
}
.floorguide-item img {
  height: 240px;
  width: auto;
}
.slick-slide {
  width: auto !important;
  padding: 5px;
}
.floorguide2 {
  margin-top: -5px;
}

.system-text-l {
  font-size: 1.4rem;
  line-height: 1.4;
  font-family: noto-serif-jp, serif;
  color: #2c1810;
  margin: 0 20px;
  text-align: center;
}

.system-reason-list {
}
.system-reason-list li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

/* ページトップに戻るボタン */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37, #f4e4a6, #d4af37);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #f4e4a6, #d4af37, #f4e4a6);
  transform: translateY(-2px) scale(1.1) !important;
  box-shadow: 0 6px 5px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top svg {
  color: #fff;
  transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

.system-reason-list li p:first-child {
  font-size: 1.4rem;
  line-height: 1.4;
  font-family: noto-serif-jp, serif;
  font-weight: 600;
  color: #2c1810;
  width: 80%;
  margin: 0 20px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-image-source: linear-gradient(to right, #fff 5%, red, #fff 95%);
  border-image-slice: 1;
  text-align: center;
}

.system-reason-list li p:last-child {
  font-size: 1.2rem;
  line-height: 1.2;
  font-family: noto-serif-jp, serif;
  text-align: center;
}
.access-page {
  margin: 150px auto 0 auto;
  width: 100%;
  min-height: 100vh;
}
.access-detail {
  width: 100%;
  font-size: 1.4rem;
}
.access-detail dt {
  text-align: left;
  font-size: 1rem;
}
.access-detail dd {
  text-align: left;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.5);
}
.access-detail dd:last-child {
  border-bottom: none;
}
.access-detail dd ul {
  list-style: disc;
  margin-left: 20px;
}
.access-detail dd ul li a {
  display: block;
  margin-top: 10px;
}
.access-hero-title {
  position: relative;
  font-size: clamp(1rem, 5vw, 1.6rem);
  font-weight: bold;
  color: white !important;
  font-feature-settings: "palt";
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 70px auto 0 auto;
  padding: 0 7px;
  overflow: hidden;
  z-index: 1;
}
.access-hero-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #bf9e75 0%, /* ダークゴールド */ #a68263 40%, /* ゴールド */ #866346 77%, /* 明るいゴールド */ #bf9e75 100% /* ゴールデンロッド */);
  background-size: 200% 100%;
  animation: goldShine 10s linear infinite;
  z-index: -1;
}
.access-root {
  display: flex;
  flex-direction: column;
  overflow-x: auto;
  width: 800px;
  margin: 0 auto;
}
.access-item {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.access-photo {
  width: 300px;
  height: auto;
}
