@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif+JP:wght@200..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  border: 0;
  word-break: break-word;
  box-sizing: border-box;
  vertical-align: baseline;
  background: transparent;
}

html, body {
  /*overflow-x:hidden;*/
  font-size: 62.5%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

li {
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img, picture {
  vertical-align: middle;
  max-width: 100%;
}

img {
  height: auto;
}

picture {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

br {
  line-height: 0;
}

input, textarea, select, button {
  font: inherit;
}

/* safariでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* -----------------------------------------------------
	variables
----------------------------------------------------- */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFFFFF;
  background-color: #000000;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.125vw;
  }
}

html[lang=en] body {
  font-family: "Noto Sans", sans-serif;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

a {
  transition: all 0.5s;
}
a:hover {
  opacity: 0.7;
}

[data-venue=osaka] {
  display: none;
}

/* -----------------------------------------------------
	header
----------------------------------------------------- */
header {
  width: 200px;
  height: 100vh;
  padding: 40px 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  border-right: solid 1px #474747;
}
@media screen and (max-width: 768px) {
  header {
    display: flex;
    align-items: center;
    z-index: 9999;
    width: 100%;
    height: 18.2291666667vw;
    padding: 0 0 0 3.90625vw;
    border-right: none;
    background-color: #000000;
    border-bottom: solid 1px #474747;
  }
}
header .logo {
  max-width: 159px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  header .logo {
    max-width: 32.8125vw;
    margin: 0;
  }
}
header .logo a {
  display: inline-block;
}
header .language {
  display: flex;
  flex-wrap: wrap;
  gap: 8%;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  header .language {
    margin-top: 2.6041666667vw;
  }
}
header .language li {
  width: 46%;
}
header .language li a {
  display: block;
  width: 100%;
  color: #FFFFFF;
  padding: 5px 0;
  transition: all 0.5s;
  border: solid 1px #FFFFFF;
  font-weight: 500;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  header .language li a {
    padding: 1.953125vw 0;
    font-size: 3.7760416667vw;
  }
}
header .language li a:hover {
  opacity: 1;
  background-color: #242424;
  color: #FFFFFF;
  border-color: #b79c6b;
  color: #b79c6b;
}
header .language li.active a {
  color: #FFFFFF;
  border-color: #b79c6b;
  color: #b79c6b;
  background-color: #242424;
  opacity: 1;
  pointer-events: none;
}
header .venue-select {
  margin-top: 30px;
  display: flex;
}
@media screen and (max-width: 768px) {
  header .venue-select {
    width: 35.6770833333vw;
    margin-top: 0;
    margin-left: auto;
  }
}
header .venue-select li {
  width: 50%;
  border: solid 1px #333333;
  text-align: center;
  transition: all 0.5s;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  background-color: #000000;
}
@media screen and (max-width: 768px) {
  header .venue-select li {
    font-size: 3.7760416667vw;
  }
}
header .venue-select li button {
  display: block;
  width: 100%;
  color: #808080;
  padding: 5px 0;
  transition: all 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  header .venue-select li button {
    padding: 1.953125vw 0;
  }
}
header .venue-select li.active {
  border-color: #b79c6b;
  background-color: #242424;
}
header .venue-select li.active button {
  color: #FFFFFF;
}
header .venue-select li:hover {
  border-color: #b79c6b;
}
header .venue-select li:hover button {
  color: #FFFFFF;
}
@media screen and (min-width: 769px) {
  header nav .menu-button {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header nav .menu-button {
    position: relative;
    display: block;
    width: 18.2291666667vw;
    height: 18.2291666667vw;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  header nav .menu-button span {
    display: inline-block;
    transition: all 0.5s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 5.46875vw;
    height: 3px;
    background-color: #FFFFFF;
  }
}
@media screen and (max-width: 768px) {
  header nav .menu-button span:nth-of-type(1) {
    top: 7.8125vw;
  }
}
@media screen and (max-width: 768px) {
  header nav .menu-button span:nth-of-type(2) {
    top: 9.1145833333vw;
  }
}
@media screen and (max-width: 768px) {
  header nav .menu-button span:nth-of-type(3) {
    top: 10.4166666667vw;
  }
}
header nav .menu-button.active span {
  top: 50%;
}
@media screen and (max-width: 768px) {
  header nav .menu-button.active span:nth-of-type(1) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@media screen and (max-width: 768px) {
  header nav .menu-button.active span:nth-of-type(2) {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  header nav .menu-button.active span:nth-of-type(3) {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
header nav .nav-container {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  header nav .nav-container {
    margin-top: 0;
    position: fixed;
    top: 18.2291666667vw;
    right: -100%;
    width: 58.59375%;
    height: calc(100% - 18.2291666667vw);
    z-index: 9999;
    transition: right 0.3s ease;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 4.5572916667vw 7.8125vw 7.8125vw;
  }
}
header nav .nav-container .nav-links li {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  header nav .nav-container .nav-links li {
    font-size: 3.7760416667vw;
    margin-top: 0;
  }
}
header nav .nav-container .nav-links li:first-child {
  margin-top: 0;
}
header nav .nav-container .nav-links li a {
  display: block;
}
@media screen and (max-width: 768px) {
  header nav .nav-container .nav-links li a {
    padding: 3.2552083333vw 0;
  }
}
header nav .nav-container .nav-links li a:hover {
  color: #b79c6b;
  opacity: 1;
}
header nav .nav-container .nav-links li.active a {
  color: #b79c6b;
}
header nav .nav-container .nav-links li.disabled a {
  pointer-events: none;
  color: #FFFFFF;
  opacity: 0.5;
}
header nav .nav-container .sns-links {
  margin: 30px 0 0;
  padding: 30px 0 0;
  border-top: solid 1px #474747;
}
@media screen and (max-width: 768px) {
  header nav .nav-container .sns-links {
    margin: 3.2552083333vw 0 0;
    padding: 7.8125vw 0 0;
  }
}
header nav .nav-container .sns-links li {
  width: 30px;
}
@media screen and (max-width: 768px) {
  header nav .nav-container .sns-links li {
    width: 7.8125vw;
  }
}
header nav .nav-container .sns-links li a {
  display: block;
}

/* -----------------------------------------------------
	main
----------------------------------------------------- */
main {
  margin: 0 0 0 200px;
}
@media screen and (max-width: 768px) {
  main {
    margin: 18.2291666667vw 0 0;
  }
}
main section {
  padding: 200px 50px;
}
@media screen and (max-width: 768px) {
  main section {
    position: relative;
    z-index: 2;
    padding: 26.0416666667vw 0;
  }
}
main section .inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main section .inner {
    max-width: 100%;
    margin: 0 6.1197916667vw;
  }
}
main section .inner .btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 90px;
  background-image: -webkit-linear-gradient(0deg, rgb(110, 82, 53) 0%, rgb(179, 146, 110) 50%, rgb(111, 83, 51) 100%);
  font-family: "Noto Serif", "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  main section .inner .btn a {
    height: 13.0208333333vw;
    font-size: 4.4270833333vw;
  }
}
main section .inner .btn a:after {
  content: "";
  display: block;
  width: 13px;
  height: 18px;
  background-image: url("../img/arrow-right-wht.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  main section .inner .btn a:after {
    width: 2.4739583333vw;
    height: 3.3854166667vw;
    right: 5.2083333333vw;
  }
}
main section#error .inner h1 {
  margin: 0 0 50px;
  font-size: 3.4rem;
}
@media screen and (max-width: 768px) {
  main section#error .inner h1 {
    margin: 0 0 6.5104166667vw;
    font-size: 5.46875vw;
  }
}
main section#error .inner p {
  line-height: 1.5;
}
main section#error .inner .btn {
  max-width: 550px;
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  main section#error .inner .btn {
    max-width: 100%;
    margin: 7.8125vw auto 0;
  }
}

.home main {
  background-image: url("../img/top/bg.jpg");
  background-attachment: fixed;
  background-size: calc(100% - 200px) auto;
  background-position: top right;
  background-repeat: repeat-x;
}
@media screen and (max-width: 768px) {
  .home main {
    position: relative;
    background-image: none;
  }
}
@media screen and (max-width: 768px) {
  .home main:before {
    content: "";
    display: block;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/top/bg_sp.jpg");
    background-size: cover;
  }
}

.page main,
.single main {
  padding: 110px 0 210px;
  background-image: url("../img/page_bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top left;
}
@media screen and (max-width: 768px) {
  .page main,
  .single main {
    padding: 26.0416666667vw 0 20.8333333333vw;
    background-image: url("../img/page_bg_sp.jpg");
  }
}

/* -----------------------------------------------------
	footer
----------------------------------------------------- */
footer {
  position: relative;
  z-index: 2;
  margin: 0 0 0 200px;
  border-top: solid 1px #474747;
  background-color: #000000;
}
@media screen and (max-width: 768px) {
  footer {
    margin: 0;
  }
}
footer .bnr {
  border-bottom: solid 1px #474747;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  footer .bnr {
    padding: 7.8125vw 0 0;
    border-bottom: none;
  }
}
footer .bnr ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  footer .bnr ul {
    flex-direction: column;
    align-items: center;
  }
}
footer .bnr ul li {
  width: 160px;
}
@media screen and (max-width: 768px) {
  footer .bnr ul li {
    width: 47.65625vw;
  }
}
footer .bnr ul li a {
  display: inline-block;
}
footer .link {
  border-bottom: solid 1px #474747;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  footer .link {
    padding: 6.5104166667vw 0 5.2083333333vw;
  }
}
footer .link ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .link ul li a {
  text-decoration: underline;
  text-underline-offset: 5px;
  font-weight: 700;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  footer .link ul li a {
    font-size: 2.8645833333vw;
  }
}
footer .copy {
  padding: 20px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .copy {
    padding: 5.2083333333vw 0 7.8125vw;
  }
}
footer .copy .logo a {
  display: inline-block;
}
footer .copy .logo a img {
  max-width: 88px;
}
@media screen and (max-width: 768px) {
  footer .copy .logo a img {
    max-width: 24.21875vw;
  }
}
footer .copy small {
  display: block;
  margin: 13px 0 0;
  color: #acacac;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  footer .copy small {
    margin: 2.6041666667vw 0 0;
    font-size: 2.8645833333vw;
  }
}