.pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.pagination__list {
  display: flex;
  gap: 10px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination__item a,
.pagination__item span {
  display: inline-block;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
}
.pagination__item a:hover,
.pagination__item span:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(197, 160, 89, 0.4);
  color: #c5a059;
}
.pagination__item a.current,
.pagination__item span.current {
  background: rgba(197, 160, 89, 0.2);
  border-color: #c5a059;
  color: #c5a059;
  font-weight: 600;
}
.pagination__item span.current {
  cursor: default;
}

@media (max-width: 768px) {
  .section div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

.section h3,
.section h4 {
  color: #c5a059;
}

.section span[style*="color: #c5a059"],
.section .price {
  color: #c5a059 !important;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    cursor: auto;
  }
}

body.loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #c5a059;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.section-label {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: #c5a059;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title {
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 30px;
  color: #ffffff;
}

.section-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-top: 20px;
}

.section-header {
  margin-bottom: 60px;
}
.section-header.center {
  text-align: center;
  margin-bottom: 80px;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}
.btn-outline {
  background: transparent;
  border: 1px solid #c5a059;
  color: #c5a059;
}
.btn-outline:hover {
  background: #c5a059;
  color: #0a0a0a;
}
.btn-primary {
  background: #c5a059;
  color: #0a0a0a;
  border: 1px solid #c5a059;
}
.btn-primary:hover {
  background: #d4b070;
  border-color: #d4b070;
}

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

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0a0a0a;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader__content {
  text-align: center;
}
.loader__text {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: #999;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.2s;
}
.loader__logo {
  display: block;
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #c5a059;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cursor,
.cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
}
@media (max-width: 768px) {
  .cursor,
.cursor-follower {
    display: none;
  }
}

.cursor {
  width: 8px;
  height: 8px;
  background: #c5a059;
  transition: transform 0.1s ease;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid #c5a059;
  transition: transform 0.3s ease;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(197, 160, 89, 0.1);
  transition: background 0.3s ease;
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo a {
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  display: inline-block;
  line-height: 1;
}
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__list {
  display: flex;
  list-style: none;
  gap: 50px;
}
@media (max-width: 768px) {
  .header__cta {
    display: none;
  }
}
.header__cta a {
  padding: 10px 30px;
  border: 1px solid #c5a059;
  color: #c5a059;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__cta a:hover {
  background: #c5a059;
  color: #0a0a0a;
}

.nav-link {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c5a059;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: #ffffff;
  margin: 6px 0;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #0a0a0a;
  z-index: 999;
  transition: right 0.4s ease;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.mobile-menu__nav ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}
.mobile-menu__nav li {
  margin: 30px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu__nav a {
  font-size: 1.5rem;
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  letter-spacing: 0.1em;
  display: block;
  width: 100%;
  text-transform: none;
  /* Ensure no auto-capitalization issues */
  color: #ffffff;
}
.mobile-menu.active .mobile-menu__nav li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.active .mobile-menu__nav li:nth-child(1) {
  transition-delay: 0.3s;
}
.mobile-menu.active .mobile-menu__nav li:nth-child(2) {
  transition-delay: 0.4s;
}
.mobile-menu.active .mobile-menu__nav li:nth-child(3) {
  transition-delay: 0.5s;
}
.mobile-menu.active .mobile-menu__nav li:nth-child(4) {
  transition-delay: 0.6s;
}
.mobile-menu.active .mobile-menu__nav li:nth-child(5) {
  transition-delay: 0.7s;
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.hero__content {
  text-align: center;
  z-index: 1;
}
.hero__subtitle {
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: #e0e0e0;
  margin-bottom: 40px;
  opacity: 0;
}
.hero__title {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .hero__title {
    gap: 20px;
  }
}

.parallax-bg {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translateY(0);
}

.t-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  text-align: left;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: left;
  opacity: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .t-vertical {
    font-size: 2.5rem;
  }
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease forwards 2s;
}
.scroll-down span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.scroll-down .line {
  width: 1px;
  height: 60px;
  background: #c5a059;
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% {
    transform: scaleY(0.5);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.greeting__wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .greeting__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.greeting__image {
  position: relative;
}
.greeting__image img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.greeting__image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(197, 160, 89, 0.3);
  z-index: -1;
}
.greeting__content {
  padding-right: 20px;
}
@media (max-width: 768px) {
  .greeting__content {
    padding-right: 0;
  }
}
.greeting__content .section-title {
  margin-bottom: 40px;
}
.greeting__content .text-body {
  font-size: 1rem;
  line-height: 2.2;
  color: #e0e0e0;
  margin-bottom: 30px;
  text-align: justify;
}
.greeting__content .sign {
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  text-align: right;
  font-size: 1.1rem;
  margin-top: 30px;
}

.commitment {
  background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
}
.commitment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .commitment__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.commitment__item {
  background: rgba(255, 255, 255, 0.02);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.commitment__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(197, 160, 89, 0.3);
}
.commitment__item .c-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
}
.commitment__item .c-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.2);
  transition: filter 0.4s ease;
}
.commitment__item:hover .c-image img {
  filter: grayscale(0%) brightness(1);
}
.commitment__item .c-text {
  text-align: center;
}
.commitment__item .c-text h4 {
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  font-size: 1.3rem;
  color: #c5a059;
  margin-bottom: 20px;
}
.commitment__item .c-text p {
  font-size: 0.95rem;
  line-height: 2;
  color: #e0e0e0;
}

.concept__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .concept__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.concept__heading {
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  color: #ffffff;
}
.concept__text {
  font-size: 1rem;
  line-height: 2;
  color: #e0e0e0;
  margin-bottom: 20px;
}
.concept__image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .concept__image img {
    height: 400px;
  }
}

.menu-highlights {
  background: #1a1a1a;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.menu__wrapper {
  position: relative;
  z-index: 2;
}
.menu__header {
  text-align: center;
  margin-bottom: 80px;
}
.menu__desc {
  text-align: center;
  color: #e0e0e0;
  margin-top: 20px;
  line-height: 2;
}
.menu__block {
  max-width: 800px;
  margin: 0 auto;
}
.menu__block.mt-large {
  margin-top: 80px;
}
.menu__cat {
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  font-size: 1.5rem;
  color: #c5a059;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.menu__cat::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #c5a059;
  margin: 10px auto 0;
}
.menu__list {
  list-style: none;
}
.menu__list li {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
}
.menu__list li.sub-text {
  display: block;
  font-size: 0.85rem;
  color: #999;
  margin-top: -15px;
  margin-bottom: 25px;
  padding-left: 1em;
}
.menu__list li .name {
  font-size: 1.1rem;
  color: #ffffff;
}
.menu__list li .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  margin: 0 20px;
  position: relative;
  top: -5px;
}
.menu__list li .price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: #c5a059;
}
.menu__note {
  font-size: 0.9rem;
  color: #999;
  text-align: right;
  margin-top: 20px;
}
.menu__bg-img {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 40%;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}
.menu__bg-img img {
  width: 100%;
}
@media (max-width: 768px) {
  .menu__bg-img {
    display: none;
  }
}

.access-preview {
  background: #1a1a1a;
}
.access-preview__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 768px) {
  .access-preview__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.access-preview__list {
  margin: 40px 0;
}
.access-preview__list dt {
  font-size: 0.9rem;
  color: #c5a059;
  margin-top: 25px;
  margin-bottom: 10px;
}
.access-preview__list dd {
  font-size: 1rem;
  line-height: 1.8;
  color: #e0e0e0;
}
.access-preview__tel {
  margin-top: 40px;
  padding: 30px;
  background: rgba(197, 160, 89, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.2);
  text-align: center;
}
.access-preview__map iframe {
  width: 100%;
  height: 500px;
  filter: grayscale(100%) invert(90%);
}
@media (max-width: 768px) {
  .access-preview__map iframe {
    height: 300px;
  }
}

.tel-label {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.info {
  background: #1a1a1a;
}
.info__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}
@media (max-width: 768px) {
  .info__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.info__map {
  height: 100%;
  min-height: 400px;
  border-radius: 2px;
  overflow: hidden;
}
.info__map iframe {
  filter: grayscale(100%) invert(90%);
  width: 100%;
  height: 100%;
}
.info__detail {
  padding: 40px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.info__list {
  margin-bottom: 40px;
}
.info__list dt {
  font-size: 0.9rem;
  color: #c5a059;
  margin-bottom: 5px;
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
}
.info__list dd {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.info__list dd:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.info__list dd .note {
  display: block;
  font-size: 0.85rem;
  color: #999;
  margin-top: 5px;
}
.info__tel-box {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}
.info__tel-box .message {
  font-size: 0.9rem;
  color: #e0e0e0;
  margin-bottom: 15px;
}
.info__tel-box .tel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.info__tel-box .tel-link .icon {
  font-size: 1rem;
  color: #c5a059;
  border: 1px solid #c5a059;
  padding: 5px 10px;
}
.info__tel-box .tel-link .number {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.info__tel-box .tel-link:hover .number {
  color: #c5a059;
}

.footer {
  background: #0a0a0a;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  text-align: center;
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 100px;
  }
}
.footer__inner {
  text-align: center;
}
.footer .footer-logo {
  display: inline-block;
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.footer .footer-info {
  margin-bottom: 30px;
  color: #e0e0e0;
  font-size: 0.9rem;
  line-height: 2;
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
}
.footer .footer-copyright {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.05em;
}
.footer__logo {
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.footer .footer-nav {
  margin-bottom: 30px;
}
.footer .footer-nav__list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer .footer-nav__list {
    flex-direction: column;
    gap: 15px;
  }
}
.footer .footer-nav__list a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.footer .footer-nav__list a:hover {
  color: #c5a059;
}

.copyright {
  font-size: 0.85rem;
  color: #999;
  padding-top: 30px;
  border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #c5a059;
  color: #0a0a0a;
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.4);
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  text-align: center;
}
@media (max-width: 768px) {
  .float-btn {
    display: block;
  }
}
.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(197, 160, 89, 0.5);
  color: #0a0a0a;
}
.float-btn.expanded {
  width: calc(100% - 40px);
  right: 20px;
  left: 20px;
  border-radius: 12px;
  padding: 16px 24px;
}
.float-btn__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.float-btn .label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.9;
}
.float-btn .tel {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.teaser-concept__wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .teaser-concept__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.teaser-concept__image {
  position: relative;
}
.teaser-concept__image img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.teaser-concept__image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(197, 160, 89, 0.3);
  z-index: -1;
}
.teaser-concept__content {
  padding-right: 20px;
}
@media (max-width: 768px) {
  .teaser-concept__content {
    padding-right: 0;
  }
}
.teaser-concept__content .section-desc {
  margin-bottom: 30px;
}
.teaser-concept__btn {
  margin-top: 40px;
}

.teaser-menu {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.teaser-menu__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.teaser-menu__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.teaser-menu__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teaser-menu .container {
  position: relative;
  z-index: 10;
}
.teaser-menu .mt-large {
  margin-top: 40px;
}
.teaser-menu .section-desc {
  color: #e0e0e0;
}

.teaser-access {
  background: #1a1a1a;
}
.teaser-access__inner {
  max-width: 800px;
  margin: 0 auto;
}
.teaser-access__content {
  text-align: center;
  padding: 60px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}
.teaser-access__btn {
  margin-top: 40px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.news-grid--list {
  grid-template-columns: 1fr;
  gap: 30px;
}

.news-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(197, 160, 89, 0.5) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.news-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(197, 160, 89, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(197, 160, 89, 0.1);
}
.news-card:hover::before {
  opacity: 1;
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}
.news-card__date {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  color: #e0e0e0;
  letter-spacing: 0.05em;
}
.news-card__title {
  font-size: 1.3rem;
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  margin-bottom: 15px;
  line-height: 1.6;
}
.news-card__title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-card__title a:hover {
  color: #c5a059;
}
.news-card__excerpt {
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #c5a059;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.3s ease;
  font-weight: 500;
}
.news-card__link:hover {
  gap: 10px;
}

.category-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  border-radius: 3px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.category-badge--menu {
  background: rgba(197, 160, 89, 0.2);
  color: #c5a059;
  border: 1px solid rgba(197, 160, 89, 0.3);
}
.category-badge--info {
  background: rgba(100, 150, 200, 0.2);
  color: #6496c8;
  border: 1px solid rgba(100, 150, 200, 0.3);
}
.category-badge--system {
  background: rgba(150, 100, 200, 0.2);
  color: #9664c8;
  border: 1px solid rgba(150, 100, 200, 0.3);
}

.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.news-detail__date {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: #e0e0e0;
  letter-spacing: 0.05em;
}
.news-detail__content {
  color: #ffffff;
  line-height: 1.9;
}
.news-detail__content p {
  margin-bottom: 1.5em;
}
.news-detail__content h3 {
  font-size: 1.5rem;
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(197, 160, 89, 0.3);
  color: #ffffff;
}
.news-detail__content ul {
  margin: 20px 0;
  padding-left: 25px;
}
.news-detail__content ul li {
  margin-bottom: 10px;
  color: #e0e0e0;
}
.news-detail__back {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: transparent;
  border: 1px solid rgba(197, 160, 89, 0.5);
  color: #c5a059;
  text-decoration: none;
  font-family: "Shippori Mincho", "Zen Old Mincho", serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: rgba(197, 160, 89, 0.1);
  border-color: #c5a059;
}

/*# sourceMappingURL=style-modern.css.map */
