/* ====================
base
==================== */

:root {
  --anchor-offset: 100px;
  scroll-padding-top: var(--anchor-offset);
}

body {
  overflow-x: hidden;
  margin: 0;
  background: #050505;
  color: #d6b36a;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

section[id] {
  scroll-margin-top: var(--anchor-offset);
}

html {
  scroll-behavior: auto;
}

/* ====================
header
==================== */

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(214, 179, 106, 0.25);
  background: rgba(0, 0, 0, 0.75);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  height: 100px;
  margin: 0 auto;
  padding: 0 24px;
}

.header__logo img {
  width: 180px;
  height: auto;
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__nav-list li {
  position: relative;
}

.header__nav-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 20px;
  background: rgba(214, 179, 106, 0.45);
  transform: translateY(-50%);
}

.header__nav-list a {
  display: block;
  padding: 0 18px;
  color: #d6b36a;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
}

.header__tel {
  padding: 0px 16px 2px 10px;
  border: 1px solid #d6b36a;
  color: #d6b36a;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  text-decoration: none;
}

.header__tel span {
  background: url(../images/icon-tel.png) no-repeat left center;
  background-size: 16px auto;
  padding-left: 17px;
}

.header__sns {
	display: flex;
	justify-content: space-between;
	gap: 0 8px;
	margin-inline: 10px;
}
.header__sns li{
	width: 24px;
}
.header__sns li a{}


.header__toggle {
  display: none;
}

@media screen and (max-width: 1440px) {
  .header__inner{
    padding: 0 10px;
  }
  .header__nav-list a {
    padding: 0 10px;
    font-size: 15px;
  }
  .header__tel{
    padding: 0px 5px 2px;
    font-size: 20px;
  }
  .header__logo img{
    width: 150px;
  }
}

@media screen and (max-width: 1024px) {
  :root {
    --anchor-offset: 0px;
  }

  .header {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
  }

  .header__inner {
    position: relative;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    height: auto;
    min-height: 132px;
    padding: 14px 76px 16px;
  }

  .header__logo img {
    width: 150px;
  }

  .header__right {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .header__tel {
    order: 1;
    padding: 6px 20px 7px 14px;
    font-size: 20px;
    line-height: 1;
  }

  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    order: 2;
    width: 100%;
    transform: translateY(-8px);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  }

  .header.is-open .header__nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header__nav-list {
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    padding: 18px 20px;
    border-top: 1px solid rgba(214, 179, 106, 0.25);
    border-bottom: 1px solid rgba(214, 179, 106, 0.45);
    background: rgba(0, 0, 0, 0.94);
  }

  .header__nav-list li {
    width: 49%;
    border-bottom: 1px dotted rgba(214, 179, 106, 0.6);
  }
   .header__nav-list li:first-child {
    border-top: 1px dotted rgba(214, 179, 106, 0.6);
  }
   .header__nav-list li:nth-child(2){
    border-top: 1px dotted rgba(214, 179, 106, 0.6);
  }

  .header__nav-list li:not(:last-child)::after {
    display: none;
  }

  .header__nav-list a {
    padding: 12px 0;
    
    font-size: 18px;
    text-align: center;
  }
 
  .header__toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(214, 179, 106, 0.75);
    background: rgba(5, 5, 5, 0.65);
    cursor: pointer;
  }

  .header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #d6b36a;
    transition: transform 0.25s, opacity 0.25s;
  }

  .header.is-open .header__toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .header.is-open .header__toggle span:nth-child(2) {
    opacity: 0;
  }

  .header.is-open .header__toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media screen and (max-width: 768px) {

  .header {
    position: absolute;
    background: rgba(0, 0, 0, 0.88);
  }

  .header__inner {
    flex-direction: column;
    gap: 12px;
    height: auto;
    min-height: 72px;
    padding: 12px 16px;
  }

  .header__logo img {
    width: 132px;
  }

  .header__nav {
    width: 100%;
  }

  .header__nav-list li:not(:last-child)::after {
    display: none;
  }

  .header__nav-list a {
    padding: 10px 0;
    font-size: 16px;
  }

  .header__tel {
    padding: 6px 22px 7px;
    font-size: 18px;
    line-height: 1;
  }
}

@media screen and (max-width: 420px) {

  .header__tel {
    display: none;
  }

  .header__inner{
  }
}

/* ====================
fv
==================== */

.fv {
  padding-top: 100px;
  background: url("../images/fv-bg01.png") center center / cover no-repeat;
}

.fv__inner {
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}

.fv__inner::before {
  content: none;
}

.fv__logo {
  position: relative;
  z-index: 2;
  width: 600px;
  margin-bottom: 32px;
}

.fv__copy {
  position: relative;
  z-index: 2;
  margin: 0 0 20px;
  background: linear-gradient(180deg, #fff6ca 0%, #e4be72 18%, #805820 42%, #fff0b2 52%, #b77d2e 68%, #f7dc91 84%, #6f4818 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #f1cf7a;
  font-weight: 500;
  font-size: 58px;
  line-height: 1.4;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.4px rgba(255, 238, 177, 0.35);
  filter: drop-shadow(0 8px 5px rgba(0, 0, 0, 0.75));
}

.fv__text {
  position: relative;
  z-index: 2;
  margin: 0 0 32px;
  color: #d6b36a;
  font-size: 30px;
  text-shadow: 0 0 6px #000;
}

.fv__buttons {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 20px;
}

.fv__photos {
  position: absolute;
  z-index: 1;
  top: 84px;
  right: 24px;
  width: min(48vw, 680px);
  height: 520px;
  pointer-events: none;
}

.fv__photo {
  position: absolute;
  display: block;
  width: 400px;
  height: 300px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.62), 0 0 22px rgba(214, 179, 106, 0.18);
  object-fit: cover;
  opacity: 0;
  transform: translateY(26px) scale(0.94) rotate(var(--photo-rotate));
  transition:
    opacity 0.7s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.fv__photo--01 {
  --photo-rotate: -8deg;
  top: -20px;
  left: 76px;
}

.fv__photo--02 {
  --photo-rotate: 7deg;
  top: 102px;
  right: 0;
  width: 400px;
  height: 300px;
  transition-delay: 0.12s;
}

.fv__photo--03 {
  --photo-rotate: 10deg;
  left: -50px;
  bottom: -52px;
  width: 400px;
  height: 300px;
  transition-delay: 0.24s;
}

.fv__photo--04 {
  --photo-rotate: -5deg;
  right: 44px;
  bottom: -160px;
  width: 400px;
  height: 300px;
  transition-delay: 0.36s;
}

.fv.is-show .fv__photo {
  opacity: 0.95;
  transform: translateY(0) scale(1) rotate(var(--photo-rotate));
}

.fv__btn {
  min-width: 220px;
  padding: 16px 24px;
  border: 1px solid #d6b36a;
  color: #d6b36a;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}

.fv__btn--primary {
  background: rgba(0, 80, 70, 0.8);
}

@media screen and (min-width: 2000px) {
  .fv__inner {
    padding: 140px 24px 80px;
  }
}

@media screen and (max-width: 1024px) {
  .fv {
    padding-top: 0;
  }

  .fv__inner {
    padding-top: clamp(190px, 22vw, 230px);
    text-align: center;
  }

  .fv__inner::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    pointer-events: none;
  }

  .fv__photos {
    display: none;
  }

  .fv__logo{
    width: 80%;
    margin: 0 10% 32px 10%;
  }

  .fv__buttons {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .fv {
    padding-top: 0;
    background-position: center top;
  }

  .fv__inner {
    background: rgba(0, 0, 0, 0.2);
  }

  .fv__copy {
    font-size: 36px;
    line-height: 1.45;
  }

  .fv__text {
    margin-bottom: 28px;
    font-size: 21px;
    line-height: 1.6;
  }

  .fv__buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
  }

  .fv__btn {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
  }
}

@media screen and (max-width: 420px) {
  .fv__inner {
    padding: 160px 16px 56px;
  }

  .fv__copy {
    font-size: 28px;
  }

  .fv__logo{
    width: 100%;
    margin: 0 0 32px;
  }

  .fv__btn--tel{
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fv__photo {
    transition: none;
  }
}

/* ====================
common parts
==================== */

.wrap-content{
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  background: #050505;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  margin: 0 0 56px;
  padding: 0 0 40px;
  background: url(../images/title-bar01.png) no-repeat center bottom;
  background-size: 300px auto;
  color: #d6b36a;
  font-weight: 500;
  font-size: 58px;
  line-height: 1.3;
  text-align: center;
}

.section-label {
  margin: 0 0 10px;
  color: #d6b36a;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.35em;
  text-align: center;
}

.section__lead {
  margin: 0 0 12px;
  color: #d6b36a;
  font-size: 34px;
  line-height: 1.6;
}

.section__text {
  margin: 0 0 56px;
  color: #d8c08a;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .wrap-content {
    padding: 76px 0 84px;
  }

  .container {
    padding: 0 20px;
  }

  .section-title {
    margin-bottom: 36px;
    padding-bottom: 28px;
    background-size: 220px auto;
    font-size: 38px;
  }

  .section-label {
    font-size: 14px;
    letter-spacing: 0.28em;
  }

  .section__lead {
    font-size: 24px;
    line-height: 1.4;
    text-align: left;
  }

  .section__lead br {
    display: none;
  }

  .section__text {
    font-size: 16px;
    text-align: left;
  }

  .section__text br {
    display: none;
  }
  
}

@media screen and (max-width: 420px) {
  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 32px;
  }
}

/* ====================
ABOUT
==================== */

.about::before {
  content: "ABOUT";
  position: absolute;
  z-index: 0;
  top: 40px;
  left: 4%;
  color: rgba(214, 179, 106, 0.08);
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 240px;
  line-height: 1;
}

.about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
}

.about__lead {
  margin: 0 0 32px;
  color: #d6b36a;
  font-size: 40px;
  line-height: 1.8;
}

.about__text {
  color: #d8c08a;
  font-size: 20px;
  line-height: 2.2;
}

.about__image img {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px;
  border: 1px solid rgba(214, 179, 106, 0.85);
}

@media screen and (max-width: 1024px) {
  .about__inner{
    gap: 30px;
  }
  .about__lead {
    font-size: 30px;
  }

  .about__text {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {

  .about::before {
    top: 34px;
    left: 50%;
    font-size: 86px;
    transform: translateX(-50%);
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__title {
    margin-bottom: 36px;
  }

  .about__lead {
    font-size: 24px;
    line-height: 1.4;
  }

  .about__text {
    font-size: 16px;
    line-height: 2;
  }

  .about__lead br {
    display: none;
  }

  .about__image{
    max-width: 400px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 420px) {
  .about::before {
    font-size: 64px;
  }
}

/* ====================
NEWS
==================== */
.news::before {
  content: "NEWS";
  position: absolute;
  top: 40px;
  left: 4%;
  color: rgba(214, 179, 106, 0.08);
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 240px;
  line-height: 1;
}

.news__inner{
	max-width: 960px;
	margin-inline: auto;
}

.news__inner li{
	margin: 30px 0;
	padding: 0 0 30px;
	border-bottom: 1px solid rgba(214, 179, 106, 0.8);
    position: relative;
	font-size: 20px;
}

.news__inner li .data{
	display: block;
	margin-bottom: 10px;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
}

@media (max-width: 1024px) {
}
@media screen and (max-width: 768px) {

  .news::before {
    top: 34px;
    left: 50%;
    font-size: 86px;
    transform: translateX(-50%);
  }
	
}
@media screen and (max-width: 420px) {
	.news::before {
		font-size: 64px;
	}
	
	.news__inner li {
		margin: 20px 0;
        font-size: 16px;
	}
	
	.news__inner li .data{
		font-size: 14px;
	}
}


/* ====================
NEWS pages
==================== */

.news-page{
	margin-top: 100px;
}

.news__page-title{
	margin: 0 0 40px;
  padding: 0 0 40px;
  border-bottom: 2px dotted #d6b36a;
  font-size: 30px;
}

.news-page .data{
  display: block;
	margin-bottom: 10px;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
}

.news__detail{
  margin-bottom: 80px;
  font-size: 20px;
}

.backBtn {
  max-width: 160px;
  margin-inline: auto;
}

.backBtn a {
  position: relative;
	display: block;
	padding: 6px 0 7px;
  border: 1px solid #d6b36a;
	border-radius: 5px;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 13px;
	text-align: center;
	color: #d6b36a;
	text-decoration: none;
	transition: all 0.4s ease;
}

.backBtn a::after{
  content: '';
	position: absolute;
	top: 0;
	left: 15px;
	bottom: 0;
	margin: auto;
	display: block;
  transform: rotate(140deg);
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #d6b36a;
  border-right: 2px solid #d6b36a;
  transition: all 0.4s ease;
}

.backBtn a:hover::after {
  left: 12px;
}

.detailUpfile{
	margin-bottom: 80px;
}

.pager {
  text-align: center;
}
.pager a {
  display: inline-block;
  margin-inline: 3px;
  padding: 5px 8px;
  border: 1px solid #d6b36a;
  border-radius: 2px;
  font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
  font-size: 12px;
  line-height: 1;
}
.pager a.current {
  background: #6f6242;
  border: 1px solid #6f6242;
  color: #fff;
  pointer-events: none;
}


@media screen and (max-width: 768px) {
  .news__page-title {
    margin: 0 0 30px;
    padding: 0 0 30px;
    font-size: 24px;
  }

  .news__inner li {
    margin: 20px 0;
    padding: 0 0 20px;
  }
}

@media screen and (max-width: 420px) {
  .news-page .wrap-content {
    padding: 20px 0 60px;
  }

  .news__page-title {
    font-size: 20px;
  }

  .news-page .data {
    font-size: 14px;
  }

  .news__detail {
    font-size: 16px;
  }
}

/* ====================
SYSTEM
==================== */

.system::before {
  content: "SYSTEM";
  position: absolute;
  top: 40px;
  left: 4%;
  color: rgba(214, 179, 106, 0.08);
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 240px;
  line-height: 1;
}

.system__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.system__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 960px;
  margin: 0 auto;
}

.system-card {
  padding: 48px 20px 42px;
  border: 1px solid rgba(214, 179, 106, 0.8);
  background: rgba(8, 8, 8, 0.9);
}

.system-card__icon {
  width: 100px;
  height: auto;
  margin: 0 auto 20px;
}

.system-card__title {
  color: #d6b36a;
  font-weight: 400;
  font-size: 26px;
}

.system-card__price {
  margin: 0;
  color: #d6b36a;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
}

.en {
  margin-right: 8px;
  font-size: 50px;
}
.kara {
  margin-left: 8px;
  font-size: 40px;
}

@media screen and (max-width: 768px) {

  .system::before {
    top: 34px;
    left: 50%;
    font-size: 86px;
    transform: translateX(-50%);
  }

  .system__cards {
    grid-template-columns: 0.7fr;
    gap: 16px;
    place-content: center;
  }

  .system-card {
    min-height: 0;
    padding: 28px 20px;
  }

  .system-card__icon {
    width: 72px;
  }

  .system-card__title {
    font-size: 22px;
  }

  .system-card__price {
    font-size: 46px;
  }

  .en {
    font-size: 40px;
  }
  .kara {
    font-size: 30px;
  }

}

@media screen and (max-width: 420px) {
  .system::before {
    font-size: 64px;
  }

  .system__cards {
    grid-template-columns: 1fr;
  }
}

/* ====================
POINT RING
==================== */

.point-ring::before {
  content: "POINT RING";
  position: absolute;
  top: 40px;
  left: 4%;
  color: rgba(214, 179, 106, 0.07);
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 240px;
  line-height: 1;
  white-space: nowrap;
}

.point-ring__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.point-ring__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.point-ring-card {
  min-height: 260px;
  padding: 38px 24px 34px;
  border: 1px solid rgba(214, 179, 106, 0.8);
  background: rgba(8, 8, 8, 0.9);
}

.point-ring-card__icon {
  width: 60px;
  height: auto;
  margin: 0 auto 24px;
}

.point-ring-card__title {
  margin: 0 0 10px;
  color: #d6b36a;
  font-weight: 400;
  font-size: 22px;
}

.point-ring-card__text {
  margin: 0;
  color: #d8c08a;
  font-size: 16px;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {

  .point-ring::before {
    top: 34px;
    left: 50%;
    font-size: 86px;
    transform: translateX(-50%);
  }

  .point-ring__cards {
    grid-template-columns: 0.7fr;
    gap: 16px;
    place-content: center;
  }

  .point-ring-card {
    min-height: 0;
    padding: 28px 20px;
  }

  .point-ring-card__icon {
    margin-bottom: 20px;
  }

  .point-ring-card__title {
    margin-bottom: 16px;
    font-size: 22px;
  }
}

@media screen and (max-width: 420px) {
  .point-ring::before {
    font-size: 64px;
  }

  .point-ring__cards {
    grid-template-columns: 1fr;
  }

}

/* ====================
BEGINNER
==================== */

.beginner::before {
  content: "BEGINNER";
  position: absolute;
  top: 40px;
  left: 4%;
  color: rgba(214, 179, 106, 0.07);
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 240px;
  line-height: 1;
  white-space: nowrap;
}

.beginner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.beginner__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.beginner-card {
  min-height: 260px;
  padding: 38px 24px 34px;
  border: 1px solid rgba(214, 179, 106, 0.8);
  background: rgba(8, 8, 8, 0.9);
}

.beginner-card__icon {
  width: 60px;
  height: auto;
  margin: 0 auto 24px;
}

.beginner-card__title {
  margin: 0 0 10px;
  color: #d6b36a;
  font-weight: 400;
  font-size: 26px;
}

.beginner-card__text {
  margin: 0;
  color: #d8c08a;
  font-size: 16px;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {

  .beginner::before {
    top: 34px;
    left: 50%;
    font-size: 86px;
    transform: translateX(-50%);
  }

  .beginner__cards {
    grid-template-columns: 0.7fr;
    gap: 16px;
    place-content: center;
  }

  .beginner-card {
    min-height: 0;
    padding: 28px 20px;
  }

  .beginner-card__icon {
    margin-bottom: 20px;
  }

  .beginner-card__title {
    margin-bottom: 16px;
    font-size: 22px;
  }

}

@media screen and (max-width: 420px) {
  .beginner::before {
    font-size: 64px;
  }

  .beginner__cards {
    grid-template-columns: 1fr;
  }
}

/* ====================
DRINK
==================== */

.drink::before {
  content: "DRINK";
  position: absolute;
  top: 40px;
  left: 4%;
  color: rgba(214, 179, 106, 0.07);
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 240px;
  line-height: 1;
  white-space: nowrap;
}

.drink__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.drink__table-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.drink__table-wrap + .drink__table-wrap {
	margin-top: 40px;
}

.drink-table {
  width: 100%;
  border: 1px solid rgba(214, 179, 106, 0.6);
  background: rgba(8, 8, 8, 0.88);
  border-collapse: collapse;
}

.drink-table th,
.drink-table td {
  padding: 26px 24px;
  color: #d6b36a;
  text-align: center;
}

.drink-table th {
  padding: 15px 24px;
  background: #000;
  font-weight: 400;
  font-size: 22px;
}

.drink-table td {
  border-top: 1px solid rgba(214, 179, 106, 0.35);
  font-size: 20px;
}

.drink-table tbody tr {
  transition: background 0.3s;
}

.drink-table tbody tr:hover {
  background: rgba(214, 179, 106, 0.06);
}



.drink-menu {
  text-align: left;
}

.drink-menu + .drink-menu {
  margin-top: 72px;
}

.drink-menu__title {
  margin-bottom: 8px;
  color: #d6b36a;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0;
}

.drink-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 52px;
}

.drink-menu__heading {
  display: inline-block;
  margin-top: 35px;
  padding: 8px 14px;
  background: #d6b36a;
  color: #222;
  font-family: "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.drink-menu__list {
  margin-top: 22px;
}

.drink-menu__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 18px;
  align-items: end;
  padding: 0 0 14px;
  border-bottom: 1px dashed rgba(214, 179, 106, 0.58);
}

.drink-menu__item + .drink-menu__item {
  margin-top: 16px;
}

.drink-menu__item--single {
  grid-template-columns: 1fr;
}

.drink-menu__name {
  color: #f3dfb4;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.drink-menu__price {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.drink-menu__note {
  margin-top: 16px;
  color: rgba(243, 223, 180, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {

  .drink::before {
    top: 34px;
    left: 50%;
    font-size: 86px;
    transform: translateX(-50%);
  }

  .drink-table th,
  .drink-table td {
    padding: 16px 12px;
    font-size: 16px;
  }

  .drink-menu {
    margin-top: 40px;
  }

  .drink-menu__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .drink-menu__heading {
    font-size: 19px;
  }

  .drink-menu__name,
  .drink-menu__price {
    font-size: 18px;
  }

}

@media screen and (max-width: 420px) {
  .drink::before {
    font-size: 64px;
  }

  .drink-menu__name,
  .drink-menu__price {
    font-size: 16px;
  }

  .drink-menu__item {
    gap: 12px;
  }
}

/* ====================
GALLERY
==================== */

.gallery {
  padding: 160px 0;
  overflow: hidden;
  background: #050505;
}

.gallery__swiper01,
.gallery__swiper02 {
  position: relative;
  width: 100%;
  border-top: 1px solid rgba(214, 179, 106, 0.7);
  border-bottom: 1px solid rgba(214, 179, 106, 0.7);
}

.gallery .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery .swiper-slide {
  width: 600px;
  height: 450px;
}

.gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .gallery .swiper-slide {
    width: 400px;
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
  .gallery {
    padding: 80px 0;
  }

  .gallery .swiper-slide {
    width: 200px;
    height: 150px;
  }
}

/* ====================
FAQ
==================== */

.faq::before {
  content: "FAQ";
  position: absolute;
  top: 40px;
  left: 4%;
  color: rgba(214, 179, 106, 0.07);
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 240px;
  line-height: 1;
  white-space: nowrap;
}

.faq__inner {
  position: relative;
  z-index: 1;
}

.faq__list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(214, 179, 106, 0.22);
  background: rgba(18, 18, 18, 0.85);
}

.faq-item__question {
  position: relative;
  padding: 20px 72px 20px 100px;
  color: #d6b36a;
  font-size: 24px;
  line-height: 1.6;
  list-style: none;
  cursor: pointer;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::before {
  content: "Q.";
  position: absolute;
  top: 12px;
  left: 30px;
  color: #d6b36a;
  font-family: "Times New Roman", serif;
  font-size: 34px;
}

.faq-item__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 36px;
  width: 16px;
  height: 16px;
  border-right: 3px solid #d6b36a;
  border-bottom: 3px solid #d6b36a;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.3s;
}

.faq-item[open] .faq-item__question::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-item__answer {
  background: rgb(34, 34, 34);
  padding: 20px 36px 20px 96px;
  color: #f0e2c0;
  font-size: 20px;
  line-height: 1.8;
}

.faq-item__answer p {
  position: relative;
  margin: 0;
}

.faq-item__answer p::before {
  content: "A.";
  position: absolute;
  top: -10px;
  left: -64px;
  color: #f0e2c0;
  font-family: "Times New Roman", serif;
  font-size: 34px;
}

@media screen and (max-width: 768px) {

  .faq::before {
    top: 34px;
    left: 50%;
    font-size: 86px;
    transform: translateX(-50%);
  }

  .faq__title {
    margin-bottom: 36px;
  }

  .faq-item__question {
    padding: 10px 52px 10px 66px;
    font-size: 16px;
  }

  .faq-item__question::before {
    top: 2px;
    font-size: 24px;
  }

  .faq-item__question::after {
    right: 22px;
    width: 11px;
    height: 11px;
    border-width: 2px;
  }

  .faq-item__answer {
    padding: 10px 36px 10px 66px;
    font-size: 15px;
  }

  .faq-item__answer p::before {
    left: -36px;
    font-size: 24px;
  }

}

@media screen and (max-width: 420px) {
  .faq::before {
    font-size: 64px;
  }
}

/* ====================
ACCESS
==================== */

.access::before {
  content: "ACCESS";
  position: absolute;
  top: 40px;
  left: 4%;
  color: rgba(214, 179, 106, 0.07);
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 240px;
  line-height: 1;
  white-space: nowrap;
}

.access__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 500px;
  align-items: center;
  gap: 60px;
}

.access__list {
  border-top: 1px solid rgba(214, 179, 106, 0.35);
}

.access__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(214, 179, 106, 0.35);
}

.access__term {
  margin: 0;
  color: #d6b36a;
  font-size: 18px;
}

.access__desc {
  margin: 0;
  color: #f0e2c0;
  font-size: 18px;
}

.access__desc a {
  color: inherit;
  text-decoration: none;
}

.access__map {
  width: 500px;
  overflow: hidden;
  border-radius: 18px;
}

.access__map iframe {
  display: block;
  width: 600px;
  height: 450px;
}

@media screen and (max-width: 1024px) {

  .access__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .access__item {
    padding: 18px 0;
  }

  .access__term,
  .access__desc {
    font-size: 16px;
  }

  .access__map {
    width: 100%;
    border-radius: 10px;
  }

  .access__map iframe {
    width: 100%;
    height: 320px;
  }
}

@media screen and (max-width: 768px) {

  .access::before {
    top: 34px;
    left: 50%;
    font-size: 86px;
    transform: translateX(-50%);
  }

}

@media screen and (max-width: 420px) {
  .access::before {
    font-size: 64px;
  }

  .access__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

}

/* ====================
footer
==================== */

.footer {
  padding: 60px 0 10px;
  border-top: 1px solid rgba(214, 179, 106, 0.45);
  background: #050505;
}

.footer__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding-bottom: 60px;
}

.footer__logo {
  padding-right: 60px;
  border-right: 1px solid rgba(214, 179, 106, 0.4);
  color: #d6b36a;
}

.footer__logo-main {
  margin: 4px 0;
  font-family: "Times New Roman", serif;
  font-size: 40px;
  line-height: 1;
}

.footer__logo-main img {
  width: 160px;
  height: auto;
}

.footer__sns {
	display: flex;
	justify-content: center;
	gap: 0 10px;
	margin-top: 10px;
}
.footer__sns li{
	width: 20px;
}

.footer__detail {
  display: flex;
  flex-direction: column;
}

.footer__text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #6f6242;
  font-size: 15px;
}

.footer__text a {
  color: inherit;
  text-decoration: none;
}

.footer__copyright {
  margin: 0;
  color: rgba(240, 226, 192, 0.75);
  font-size: 14px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 56px;
  }

  .footer__info {
    flex-direction: column;
    gap: 0;
    padding-bottom: 48px;
    text-align: center;
  }

  .footer__logo {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: 0;
  }

  .footer__text {
    font-size: 15px;
    line-height: 1.8;
  }

  .footer__copyright {
    font-size: 11px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 420px) {
  .footer{
    padding-bottom: 80px;
  }
}

/* ====================
fixed tel
==================== */

.fixed-tel {
  display: none;
}

@media screen and (max-width: 420px) {
  .fixed-tel {
    position: fixed;
    z-index: 1001;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border: 1px solid #d6b36a;
    background: rgba(0, 80, 70, 0.8);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45), 0 0 12px rgba(214, 179, 106, 0.25);
    color: #d6b36a;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
  }

  .fixed-tel span {
    background: url(../images/icon-tel.png) no-repeat left center;
    background-size: 18px auto;
    padding-left: 24px;
  }

}




/* ====================
go page top
==================== */

.page-top {
  position: fixed;
  z-index: 1000;
  right: 32px;
  bottom: 32px;
  display: flex;
  visibility: hidden;
  opacity: 0;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(214, 179, 106, 0.7);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.88);
  color: #d6b36a;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-decoration: none;
  transform: translateY(20px);
  transition:
    opacity 0.4s,
    visibility 0.4s,
    transform 0.4s,
    background 0.3s,
    border-color 0.3s;
  backdrop-filter: blur(6px);
}

.page-top::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #d6b36a;
  border-left: 2px solid #d6b36a;
  transform: translateX(-50%) rotate(45deg);
}

.page-top span {
  margin-top: 16px;
}

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

.page-top:hover {
  background: rgba(214, 179, 106, 0.08);
  border-color: #d6b36a;
}

@media screen and (max-width: 768px) {
  .page-top {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    font-size: 11px;
  }

  .page-top::before {
    top: 14px;
    width: 8px;
    height: 8px;
  }
}

@media screen and (max-width: 420px) {
  .page-top {
    bottom: 88px;
  }
}
