@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
  display: block;
}

legend, hr {
  display: none;
}

th {
  font-style: inherit;
  font-weight: inherit;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

a {
  outline: none;
  hlbr: expression(this.onFocus=this.blur());
  text-decoration: none;
  cursor: pointer;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

* {
  box-sizing: border-box;
}

/* main.css ==============================================*/
@font-face {
  font-family: "nbk";
  src: url("../font/nobk-webfont.woff") format("woff"), url("../font/nobk-webfont.ttf") format("truetype");
}
/*Variable*/
/*Mixin*/
/*Reset*/
.hide {
  display: none;
}

[class^=g-bt-] {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  line-height: 2;
  padding: 0.3rem 0;
  cursor: pointer;
  background: linear-gradient(to right, #0a0e40, #495291);
  display: block;
  margin: 0 auto;
  width: 16rem;
  transform: skew(-15deg);
  transition: 0.5s;
}
[class^=g-bt-]:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #495291, #0a0e40);
  position: absolute;
  transform: scale(0.3, 1);
  transform-origin: 0% 50%;
  transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  opacity: 0;
  pointer-events: none;
}
[class^=g-bt-] i {
  width: 0.8rem;
  height: 0.8rem;
  background: url(../img/icon-right-fff.svg) no-repeat center;
  background-size: 100%;
  display: inline-block;
  margin-left: 1rem;
  position: relative;
}
[class^=g-bt-] span {
  position: relative;
}
[class^=g-bt-] small {
  display: inline-block !important;
}
[class^=g-bt-].is-disabled {
  padding-left: 0;
  padding-right: 0;
  pointer-events: none;
  background-color: #bbb;
}
[class^=g-bt-].is-disabled small {
  font-size: 60%;
  position: relative;
  top: -0.1rem;
  margin-left: 0.5rem;
}
[class^=g-bt-]:hover {
  color: #fff;
  text-decoration: none;
}
[class^=g-bt-]:hover:before {
  transform: scale(1, 1);
  opacity: 1;
}

.bt-shine {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}
.bt-shine:before {
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 8%, white 49%, rgba(255, 255, 255, 0) 93%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#00ffffff",GradientType=1 );
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 1s;
  animation: bt_shine 2s ease infinite;
}
@keyframes bt_shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

.msg-box {
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(0.3rem);
          backdrop-filter: blur(0.3rem);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 0;
  transform: scale(1);
  perspective: 10rem;
  pointer-events: none;
}
.msg-box.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 102;
  pointer-events: auto;
}
.msg-box > .close {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.msg-box .msg-wrap {
  background: #fff;
  width: 90%;
  max-width: 30rem;
  max-height: 90%;
  position: relative;
  margin: 0 auto;
  top: 50%;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  border-radius: 0.4rem;
  padding: 2rem 2rem 1rem;
  transform: scale(1) translate3d(0, -50%, 0);
  transform-style: preserve-3d;
  transition-delay: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.msg-box .msg-wrap > .close {
  cursor: pointer;
  position: absolute;
  top: -4rem;
  right: 0;
  width: 3rem;
  height: 3rem;
  transition: 0.2s;
  background: url(../img/icon-close.svg) no-repeat center;
  background-size: 100%;
  opacity: 0;
  transform: scale(0);
  transition: 0.5s;
  transition-delay: 0.5s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
}
.msg-box.is-active .msg-wrap {
  transform: scale(1) translate3d(0, -50%, 0);
  opacity: 1;
  visibility: visible;
}
.msg-box.is-active .msg-wrap > .close {
  transform: scale(1);
  opacity: 1;
}
.msg-box.is-active .msg-wrap > .close:hover {
  transform: rotate(90deg);
}
.msg-box header {
  font-size: 2rem;
  text-align: center;
}
.msg-box header:after {
  content: "";
  width: 100%;
  height: 0.2rem;
  background: #b6a171;
  display: block;
  margin: 0 auto;
}
.msg-box .msg-content {
  overflow-y: auto;
  overflow-x: hidden;
  text-align: center;
  -webkit-overflow-scrolling: touch;
  font-size: 1.1rem;
  margin: 1.5rem 0;
}
.msg-box .msg-content small {
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  display: block;
  margin-top: 1rem;
}
.msg-box .msg-content img {
  max-width: 100%;
}
.msg-box .msg-content .bt {
  background: linear-gradient(to right, #b6a171, #e6d9bb);
  width: 50%;
  display: block;
  cursor: pointer;
  color: #fff;
  line-height: 2.5;
  font-weight: bold;
  transition: 0.5s;
  position: relative;
  margin: 2rem auto 0;
  border-radius: 0.2rem;
}
.msg-box .msg-content .bt:hover {
  background: #000;
  transition: 0.2s;
}

#msg-alert {
  color: #000;
}

.video-btn-play {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  position: absolute;
  top: calc(50% - 2rem);
  left: calc(50% - 2rem);
  cursor: pointer;
  text-indent: -9999px;
}
.video-btn-play:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 2rem solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  transition: 0.2s;
}
.video-btn-play:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.7rem 0 0.7rem 1.3rem;
  border-color: transparent transparent transparent #495291;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  transition: 0.1s;
}
.video-btn-play:hover:before {
  border: 2.5rem solid #495291;
}
.video-btn-play:hover:after {
  border-color: transparent transparent transparent #fff;
}

.tns-wrap {
  position: relative;
}

.tns-outer {
  position: relative;
}

.tns-item {
  float: left;
}

.tns-controls button, .tns-controls div, .tns-cus-controls button, .tns-cus-controls div {
  position: absolute;
  top: 45%;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
  background-color: transparent;
  z-index: 3;
  text-indent: -9999px;
  border: 0;
  cursor: pointer;
  mix-blend-mode: difference;
}
.tns-controls button:nth-of-type(1), .tns-controls div:nth-of-type(1), .tns-cus-controls button:nth-of-type(1), .tns-cus-controls div:nth-of-type(1) {
  left: 9.7%;
  background-image: url(../img/icon-right-fff.svg);
  transform: scale(-1, 1);
}
.tns-controls button:nth-of-type(2), .tns-controls div:nth-of-type(2), .tns-cus-controls button:nth-of-type(2), .tns-cus-controls div:nth-of-type(2) {
  right: 9.7%;
  background-image: url(../img/icon-right-fff.svg);
}
.tns-controls button[disabled], .tns-controls div[disabled], .tns-cus-controls button[disabled], .tns-cus-controls div[disabled] {
  opacity: 0;
}

.tns-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  text-align: center;
}
.tns-nav button {
  width: 2rem;
  height: 2rem;
  border: 0;
  margin: 2px;
  position: relative;
  background-color: transparent;
}
.tns-nav button:before, .tns-nav button:after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  background-color: #fff;
  border-radius: 0.7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.tns-nav button:after {
  transform: translate(-50%, -50%) scale(0);
}
.tns-nav button:hover:before, .tns-nav button:hover:after {
  background-color: #495291;
}
.tns-nav button.tns-nav-active:after {
  background-color: #495291;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
}

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

body.pageBody {
  background: #fff;
}

#g-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  transition: 0.6s;
  z-index: 1001;
}
#g-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
}
#g-loader .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
}
#g-loader .circular {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  animation: rotate 2s linear infinite;
  transform-origin: center center;
}
#g-loader .path {
  stroke: #000;
  stroke-width: 1.5;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 4.5s ease-in-out infinite;
  stroke-linecap: round;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

.g-wrap {
  margin: 0 auto;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 1.7;
  color: #fff;
  font-family: "nbk", sans-serif;
  background: linear-gradient(105deg, #0a0e40 25%, #495291 48.01%, #0a0e40);
}
.g-wrap img {
  max-width: 100%;
}
.g-wrap a:hover {
  text-decoration: none;
}

.g-section {
  position: relative;
}
.g-hr {
  width: 5rem;
  height: 0.2rem;
  background: linear-gradient(to right, #b4a0c7 30%, #0a0e40);
  display: block;
  margin: 2.8rem auto;
}

#g-kv {
  height: 24.2rem;
}
#g-kv .bg {
  height: 100%;
  overflow: hidden;
  position: relative;
}
#g-kv .bg img, #g-kv .bg video {
  width: 100%;
  object-fit: cover;
}
#g-kv h1 {
  position: absolute;
  top: 33%;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
}
#g-kv h1 span {
  font-size: 125%;
  line-height: 1;
  position: relative;
  top: 0.1rem;
}
#g-kv h1 b {
  font-weight: normal;
  font-size: 120%;
  letter-spacing: 0.5rem;
}
#g-kv h1 p {
  font-size: 80%;
}
#g-nav-wrap {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 4;
}

#g-nav {
  width: 100%;
  margin: 0 auto 0;
  background: #fff;
  position: relative;
  top: 0;
  z-index: 3;
  transition: 0.4s;
}
#g-nav ol {
  width: 60%;
  margin: 0 auto;
  outline: 1px soli blue;
  display: flex;
  justify-content: center;
}
#g-nav li {
  width: 33.3%;
  position: relative;
}
#g-nav li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 1rem;
  background: #0a0e40;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
}
#g-nav li:last-child::after {
  display: none;
}
#g-nav a {
  display: block;
  text-align: center;
  color: #0a0e40;
  font-size: 1.2rem;
  padding: 0.9rem 0;
}
#g-nav a:before {
  content: "";
  width: 100%;
  height: 0.2rem;
  bottom: 0.1rem;
  left: 0;
  background: #0a0e40;
  position: absolute;
  transform: scale(0.3, 1);
  transform-origin: 0% 50%;
  transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  opacity: 0;
  pointer-events: none;
}
#g-nav a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - .6rem);
  opacity: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.6rem 0.6rem 0 0.6rem;
  border-color: #000 transparent transparent transparent;
  display: block;
}
#g-nav a p {
  position: relative;
}
#g-nav a:hover {
  text-decoration: none;
}
#g-nav a:hover:before {
  transform: scale(1, 1);
  opacity: 1;
}
#g-nav a.active:after {
  opacity: 1;
  transform: translateY(0);
}
#g-nav a.active:hover:after {
  border-color: #495291 transparent transparent transparent;
}
#g-nav time {
  margin-left: 0.5rem;
}

#g-about {
  width: 60%;
  margin: 0 auto;
  line-height: 1.9;
  text-align: center;
  padding: 3.3rem 0;
}
#g-about header h2 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1.7rem;
}
#g-about header span {
  font-size: 120%;
  line-height: 1;
  position: relative;
  top: 0.1rem;
}
#g-about p {
  margin-bottom: 1rem;
}
#g-about .btns {
  margin: 2rem auto;
}
#g-about .btns a {
  background: #fff;
  color: #0a0e40;
}
#g-about .btns a::before {
  background: linear-gradient(to left, #b4a0c7, #fff);
}
#g-about .btns i {
  mix-blend-mode: difference;
}

#g-gallery {
  width: 74%;
  margin: 0 auto 3rem;
}
#g-gallery img {
  width: 100%;
}

.note {
  font-size: 70%;
  text-align: center;
  display: block;
  margin: 1rem auto;
}

#g-note {
  width: 61%;
  margin: -4rem auto 4rem;
}

#gallery-caption-1,
#gallery-pager-1 {
  display: none;
}

#gallery-prev-1, #gallery-next-1 {
  position: absolute;
  top: calc(50% - 2rem);
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
  background-color: transparent;
  z-index: 3;
  text-indent: -9999px;
  border: 0;
  background-image: url(../img/icon-right-fff.svg);
  cursor: pointer;
}
#gallery-prev-1:hover, #gallery-next-1:hover {
  background-color: #495291;
}

#gallery-prev-1 {
  right: 100%;
  transform: scale(-1, 1);
}

#gallery-next-1 {
  left: 100%;
}

#gallery-tns-1 .tns-item {
  padding: 0.5rem;
}

#gallery-thumbnail-1 {
  margin-top: 0.5rem;
  margin-right: auto;
  margin-left: auto;
}
#gallery-thumbnail-1 .tns-item {
  padding: 0.2rem;
}
#gallery-thumbnail-1 li {
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  border: 1px solid transparent;
  margin-right: -1px;
}
#gallery-thumbnail-1 li:hover {
  background: #b4a0c7;
}
#gallery-thumbnail-1 img {
  transition: 0.15s;
}

#g-event {
  width: 60%;
  margin: 0 auto;
  line-height: 1.9;
  text-align: center;
  padding: 3.3rem 0 2rem;
}
#g-event header h2 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1.7rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
#g-event p {
  margin-bottom: 1rem;
}
#g-event .btns {
  margin: 2rem auto;
}
#g-event .btns a {
  background: #fff;
  color: #0a0e40;
}
#g-event .btns a::before {
  background: linear-gradient(to left, #b4a0c7, #fff);
}
.brand-page {
  width: 67%;
  margin: 4.3rem auto 8rem;
}
.brand-page .card {
  width: 90.2%;
  margin: -2.5rem auto 0;
  padding: 2rem 3.5rem;
  border: 1px solid #b4a0c7;
  border-bottom: 3px solid #b4a0c7;
  color: #000;
  background: #fff;
  position: relative;
}
.brand-page header {
  padding-bottom: 1.5rem;
}
.brand-page header h3 {
  font-size: 1.6rem;
  text-align: center;
  border-bottom: 1px solid #ccc;
}
.brand-page header h3 strong {
  font-size: 200%;
  font-weight: normal;
}
.brand-page .photos {
  margin-top: 3.2rem;
}
.brand-page .photos.is-2-row li {
  width: 49.3%;
  position: relative;
}
.brand-page .photos ol {
  display: flex;
  justify-content: space-between;
}
.brand-page .photos li {
  width: 32.5%;
}
.brand-page .photos figure {
  position: relative;
}
.brand-page .photos figcaption {
  position: absolute;
  width: 100%;
  font-size: 0.7rem;
  bottom: 0.2rem;
  left: 0rem;
  width: 100%;
  text-align: center;
  background: linear-gradient(to right, transparent, #000 10%, #000 70%, transparent);
  color: #fff;
  padding-left: 0.2rem;
}
.brand-page .photos figcaption br {
  display: none;
}
.brand-page .photos .video {
  position: relative;
}
.brand-page .photos .video::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #b4a0c7, #0a0e40);
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
}
.brand-page .feature {
  border-top: 1px solid #ddd;
  padding-top: 2rem;
  padding-left: 8%;
  padding-right: 8%;
  margin-top: 2rem;
}
.brand-page .feature header {
  text-align: center;
  font-size: 1.6rem;
}
.brand-page .feature dl {
  display: flex;
  flex-wrap: wrap;
}
.brand-page .feature dt {
  font-weight: bold;
  width: 20%;
}
.brand-page .feature dd {
  width: 80%;
}
.brand-page .feature [class^=icon-feature-] {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-block;
  vertical-align: middle;
  background-color: #495291;
  border-radius: 50rem;
  margin-right: 0.4rem;
  position: relative;
  top: -0.2rem;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  font-style: normal;
  font-size: 0.8rem;
}
.brand-page .feature small {
  font-size: 70%;
  text-align: center;
  display: block;
}
.brand-page .btns {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

#g-drive .btns {
  margin-top: 0;
}
#g-drive .photos {
  margin-top: 0;
}
#g-drive .photos p {
  text-align: center;
  line-height: 3;
  color: #000;
}

#g-rule {
  width: 61%;
  margin: 0 auto 7rem;
}
#g-rule header h2 {
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  text-align: center;
  margin-bottom: 1rem;
}
#g-rule li, #g-rule p {
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0;
  text-align: justify;
}
#g-rule a {
  color: #b4a0c7;
  text-decoration: underline;
}
#g-rule a:hover {
  color: #b6a171;
}
#g-rule .list-no {
  margin-top: 0.5rem;
}
#g-rule strong {
  font-weight: bold;
  text-align: center;
  display: block;
  font-size: 0.8rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.list-tw-no {
  margin-left: 2rem;
}
.list-tw-no > li {
  list-style-type: cjk-ideographic;
}

.list-no {
  margin-left: 1rem;
}
.list-no > li {
  list-style-type: decimal;
}

.list-star li {
  padding-left: 1rem;
  position: relative;
}
.list-star li:before {
  content: "＊";
  position: absolute;
  top: 0;
  left: 0;
}

.list-square li {
  padding-left: 1rem;
  position: relative;
}
.list-square li:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #000;
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0;
}

.en {
  text-decoration: none;
  font-size: 110%;
}

.list-diamond li {
  position: relative;
  padding-left: 1rem;
}
.list-diamond li:before {
  content: "◇";
  position: absolute;
  top: 0;
  left: 0;
}

.list-dot li {
  position: relative;
  padding-left: 1rem;
}
.list-dot li:before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background: #0a0e40;
  border-radius: 50%;
  top: 0.5rem;
  left: 0.2rem;
}
.list-dot a {
  color: #000;
}
.list-dot a:hover {
  text-decoration: underline;
}

#g-quick {
  position: fixed;
  top: 30%;
  right: 0;
  transition: 0.2s;
  opacity: 0;
  z-index: 3;
}
#g-quick a {
  font-size: 1.2rem;
  background: #000;
  display: block;
  color: #fff;
  line-height: 1.2;
  padding: 1.5rem 0.8rem;
  transition: 0.2s;
}
#g-quick a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#g-quick.active {
  opacity: 1;
  pointer-events: auto;
}

#g-register {
  max-width: 60%;
  margin: -4rem auto 7rem;
}

#g-gotop {
  width: 3rem;
  height: 3rem;
  margin-top: -3rem;
  background: url(../img/icon-gotop.svg) no-repeat center;
  background-size: 48%;
  position: sticky;
  top: calc(100dvh - 5rem);
  left: calc(100vw - 5rem);
  text-indent: -9999rem;
  z-index: 51;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
#g-gotop:hover {
  opacity: 0.5;
}
#g-gotop.is-active {
  opacity: 1;
  pointer-events: auto;
}

.fixed-notice-alcohol {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 10vh;
  font-size: 17px;
  color: #fff;
  background: url(../img/icon-notice-alcohol-line.svg) no-repeat center #000;
  background-size: 65%;
  z-index: 51;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-indent: -9999rem;
}

@media screen and (max-width: 1500px) {
  .fixed-notice-alcohol {
    font-size: 1.2vw;
  }
}
/*修正 lexus 外框影響 sticky 故障問題*/
#Box {
  overflow: visible;
}

#Menu {
  position: sticky;
  transition: 0.5s;
}
#Menu.is-hide {
  transform: translateY(-100%);
  pointer-events: none;
}

@media screen and (min-width: 1001px) {
  html {
    font-size: 1.2vw;
  }

  .is-m {
    display: none !important;
  }

  #gallery-thumbnail-1 {
    width: 90%;
  }
  #gallery-thumbnail-1 li.active {
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-left-color: #fff;
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
  }
  #gallery-thumbnail-1 li.active + li {
    border-top-color: #fff;
    border-bottom-color: #fff;
  }
  #gallery-thumbnail-1 li.active + li + li {
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-right-color: #fff;
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
  }
}
@media screen and (max-width: 1000px) {
  .is-pc {
    display: none !important;
  }

  html {
    font-size: 3.6vw;
  }

  #g-kv {
    height: 30rem;
  }
  #g-kv .bg video {
    height: 100%;
    object-fit: cover;
  }
  #g-kv h1 {
    top: 37%;
  }
  #g-kv h1 b {
    font-size: 100%;
    letter-spacing: 0.2rem;
  }
  #g-kv h1 p {
    font-size: 56%;
    letter-spacing: 0;
  }

  #g-nav ol {
    width: 100%;
  }
  #g-nav li::after {
    height: 3rem;
  }
  #g-nav a {
    font-size: 1.1rem;
    letter-spacing: 0;
    line-height: 1.4;
  }
  #g-nav a time {
    display: block;
    margin-left: auto;
    font-size: 80%;
    letter-spacing: 0.1rem;
  }

  #g-about {
    width: 85%;
  }
  #g-about h2 {
    line-height: 1.6;
  }
  #g-about p {
    text-align: left;
    text-align: justify;
  }

  #g-event {
    width: 85%;
  }
  #g-event h2 {
    line-height: 1.6;
    padding: 0.5rem 0;
  }
  #g-event p {
    text-align: left;
    text-align: justify;
  }

  #g-gallery {
    width: 100%;
    overflow: hidden;
  }
  #g-gallery .tns-item {
    opacity: 0.5;
  }
  #g-gallery .tns-slide-active {
    opacity: 1;
  }

  #gallery-tns-1-iw {
    margin-left: 3.6rem;
  }

  #gallery-thumbnail-1-ow {
    width: 70%;
    margin: 0 auto;
  }

  #gallery-prev-1 {
    right: 85%;
  }

  #gallery-next-1 {
    left: 85%;
  }

  .brand-page {
    width: 100%;
  }
  .brand-page .hero img {
    position: static;
    transform: none;
  }
  .brand-page .card {
    margin-top: -4rem;
    padding: 2rem;
  }
  .brand-page .story [class^=logo-brand-] {
    width: 100%;
  }
  .brand-page [class^=icon-function-] {
    margin-right: 0.4rem;
  }
  .brand-page p {
    letter-spacing: 0.1rem;
    font-size: 1rem;
    line-height: 1.7;
  }
  .brand-page .information {
    display: block;
  }
  .brand-page .information li {
    margin: 0 0 0.5rem;
    letter-spacing: 0.1rem;
  }
  .brand-page .event header h4 {
    line-height: 1.5;
  }
  .brand-page .event h5 small {
    margin-left: 0;
    display: block;
  }
  .brand-page .photos {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }
  .brand-page .photos.is-2-row ol {
    width: 170%;
  }
  .brand-page .photos.is-2-row li {
    width: 49%;
  }
  .brand-page .photos .m-hint {
    width: 20%;
    height: 100%;
    top: 0;
    right: -1px;
    background: linear-gradient(to right, transparent, #fff);
    position: absolute;
  }
  .brand-page .photos .m-hint:after {
    content: "";
    width: 1rem;
    height: 1rem;
    top: calc(50% - .5rem);
    right: 0.5rem;
    position: absolute;
    background: url(../img/icon-right-gold.svg) no-repeat center;
    background-size: 100%;
    animation: arrow_swing 0.25s infinite alternate;
  }
  @keyframes arrow_swing {
    0% {
      transform: translateX(-30%);
    }
    100% {
      transform: translateX(30%);
    }
  }
  .brand-page .photos ol {
    width: 260%;
  }
  .brand-page .photos figcaption {
    font-size: 0.85rem;
  }
  .brand-page .photos.is-moved .m-hint {
    display: none;
  }
  .brand-page .feature {
    padding-left: 0;
    padding-right: 0;
  }
  .brand-page .feature header {
    font-size: 1.3rem;
    text-align: left;
  }
  .brand-page .feature dl {
    display: flex;
    flex-wrap: wrap;
  }
  .brand-page .feature dt {
    width: 34%;
  }
  .brand-page .feature dd {
    width: 66%;
  }
  .brand-page .feature small {
    text-align: left;
  }
  .brand-page .rule ol {
    max-width: 82%;
  }
  .brand-page .rule li {
    letter-spacing: 0.1rem;
  }
  .brand-page header h3 {
    line-height: 1.4;
    padding-bottom: 0.7rem;
  }

  [class^=g-bt-] {
    width: 100%;
  }

  .note {
    width: 85%;
    text-align: left;
  }

  #g-meet .note {
    width: 100%;
  }

  #g-note {
    width: 100%;
  }

  #g-rule {
    width: 85%;
    margin-top: -2rem;
  }

  #g-quick {
    z-index: 51;
  }

  .fixed-notice-alcohol {
    font-size: 1rem;
    background-size: 94%;
  }
}