@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.4rem;
  line-height: 2.2;
  padding: 0.5rem 0;
  cursor: pointer;
  background: #000;
  border-radius: 0.2rem;
  display: block;
  margin: 0 auto;
  width: 35%;
  transition: 0.5s;
}
[class^=g-bt-]:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ae8457;
  border-radius: 0.2rem;
  position: absolute;
  transform: scale(0.3, 1);
  transform-origin: 50% 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;
}
[class^=g-bt-] span {
  position: relative;
}
[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;
}

.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: #ae8457;
}
.tns-nav button.tns-nav-active:after {
  background-color: #ae8457;
  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: #000;
  font-family: "nbk", sans-serif;
  background: #f5f5f5;
}
.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, #bdae71 30%, #beae9c);
  display: block;
  margin: 2.8rem auto;
}

#g-kv {
  height: 24.2rem;
}
#g-kv .bg {
  height: 100%;
  overflow: hidden;
  position: relative;
}
#g-kv .bg img{
  width: 100%;
}
#g-kv h1 {
  position: absolute;
  top: 33%;
  left: 15%;
  width: 17.5rem;
  height: 7rem;
  text-indent: -9999rem;
  background: url(../img/logo-ecolifestyle.svg?v2) no-repeat center;
  background-size: 100%;
}
#g-nav-wrap {
  height: 4.5rem;
}
#g-nav-wrap.is-fixed #g-nav {
  position: fixed;
}
#g-nav-wrap.is-hide #g-nav {
  transform: translateY(-200%);
}

#g-nav {
  width: 100%;
  margin: 0 auto 0;
  background: #000;
  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: 25%;
  position: relative;
}
#g-nav a {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  padding: 1.1rem 0;
}
#g-nav a:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ae8457;
  position: absolute;
  transform: scale(0.3, 1);
  transform-origin: 50% 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: #ae8457 transparent transparent transparent;
}

#g-about {
  width: 60%;
  margin: 0 auto;
  font-size: 1.13rem;
  line-height: 1.9;
  text-align: justify;
  padding: 3.3rem 0;
}
#g-about header h2 {
  font-size: 2.2rem;
  letter-spacing: 0.2rem;
  text-align: center;
  margin-bottom: 1.7rem;
}
#g-about p {
  margin-bottom: 1rem;
}
#g-about .list-dot {
  margin-left: 27%;
}
#g-about .list-dot li {
  position: relative;
  font-size: 0.85rem;
}
#g-about .list-dot li:before {
  color: #beae9c;
}

#g-brand-nav {
  width: 67%;
  margin: 1rem auto 0;
  background: #bdae71;
  position: sticky;
  top: -1px;
  left: 0;
  z-index: 50;
  display: flex;
}
#g-brand-nav.is-pc-expand .category {
  width: 20%;
}
#g-brand-nav.is-pc-expand .brand {
  width: 80%;
}
#g-brand-nav .category {
  width: 0;
  background: #000;
  color: #fff;
  position: relative;
  padding: 0.9rem 0;
  font-size: 1.15rem;
  transition: 0.4s;
}
#g-brand-nav .category:hover ol {
  max-height: 16rem;
}
#g-brand-nav .category .now {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}
#g-brand-nav .category .now i {
  width: 2rem;
  height: 2rem;
  background: url(../img/icon-down-fff.svg) no-repeat center;
  background-size: 100%;
  display: inline-block;
  margin-left: 0.5rem;
}
#g-brand-nav .category ol {
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 0;
  background: #000;
  transition: 0.2s;
}
#g-brand-nav .category ol li {
  border-top: 1px solid #333;
}
#g-brand-nav .category ol a {
  text-align: center;
  color: #fff;
  display: block;
  padding: 0.9rem 0;
}
#g-brand-nav .category ol a:hover, #g-brand-nav .category ol a.active {
  text-decoration: none;
  color: #bdae71;
}
#g-brand-nav .brand {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}
#g-brand-nav .brand li {
  position: relative;
}
#g-brand-nav .brand li:after {
  content: "";
  width: 1px;
  height: 1.2rem;
  background: #fff;
  position: absolute;
  top: calc(50% - .6rem);
  left: calc(100% - .5px);
  z-index: 1;
}
#g-brand-nav .brand li:last-child:after {
  display: none;
}
#g-brand-nav .brand a {
  padding: 0.9rem 2.5rem;
  display: block;
  font-size: 1.15rem;
  color: #fff;
}
#g-brand-nav .brand a p {
  position: relative;
}
#g-brand-nav .brand a:hover {
  text-decoration: none;
  color: #000;
}
#g-brand-nav .brand a.active {
  color: #000;
}

.brand-page {
  width: 67%;
  margin: 4.3rem auto 8rem;
}
.brand-page .hero {
  height: 19.7rem;
  overflow: hidden;
  position: relative;
}
.brand-page .hero img {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.brand-page .card {
  width: 90.2%;
  margin: -2.5rem auto 0;
  padding: 2rem 3.5rem;
  border: 1px solid #bdae71;
  border-bottom: 3px solid #bdae71;
  background: #fff;
  position: relative;
}
.brand-page .story [class^=logo-brand-] {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 23.2rem;
  height: 12rem;
  display: block;
  margin: 0 auto;
  text-indent: -9999rem;
}
.brand-page .story .logo-brand-1 {
  background-image: url(../img/logo-brand-1.svg);
}
.brand-page .story .logo-brand-2 {
  background-image: url(../img/logo-brand-2.svg);
}
.brand-page .story .logo-brand-3 {
  background-image: url(../img/logo-brand-3.svg);
}
.brand-page .story .logo-brand-2 {
  height: 16rem;
}
.brand-page .story .logo-brand-3 {
  background-image: url(../img/logo-brand-3.png);
  background-size: 60%;
  height: 10rem;
}
.brand-page p {
  line-height: 2.1;
  margin-bottom: 1rem;
  text-align: justify;
}
.brand-page [class^=icon-function-] {
  width: 1.3rem;
  height: 1.3rem;
  display: inline-block;
  background: url(../img/icon-functions.svg?v2) #c7b281;
  background-size: 500%;
  border-radius: 50rem;
  margin-right: 0.2rem;
}
.brand-page .icon-function-1 {
  background-position: 0% 0;
}
.brand-page .icon-function-2 {
  background-position: 25% 0;
}
.brand-page .icon-function-3 {
  background-position: 50% 0;
}
.brand-page .icon-function-4 {
  background-position: 75% 0;
}
.brand-page .icon-function-5 {
  background-position: 100% 0;
}
.brand-page .information {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3.8rem 0;
}
.brand-page .information li {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  margin: 0 1rem;
}
.brand-page .information li a {
  color: #000;
}
.brand-page .information li a:hover {
  text-decoration: underline;
}
.brand-page .information li small {
  font-size: 70%;
}
.brand-page .event {
  border-top: 1px solid #ddd;
  padding-top: 3.2rem;
}
.brand-page .event header {
  padding-bottom: 1.5rem;
}
.brand-page .event header h4 {
  font-size: 1.6rem;
  text-align: center;
}
.brand-page .event h5 {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}
.brand-page .event h5 small {
  font-size: 0.7rem;
  font-weight: normal;
  margin-left: 0.5rem;
}
.brand-page .event h5 ~ u {
  font-size: 0.8rem;
  text-align: center;
  display: block;
  text-decoration: none;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}
.brand-page .photos {
  margin-top: 3.2rem;
}
.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 .rule {
  margin-top: 3.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand-page .rule ol {
  max-width: 80%;
}
.brand-page .rule li {
  position: relative;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}
.brand-page .rule li [class^=icon-function-] {
  position: absolute;
  top: 0;
  right: 101%;
}
.brand-page .rule li ol {
  max-width: 100%;
}
.brand-page .btns {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

#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: #bdae71;
  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: #beae9c;
  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;
  }
}
@media screen and (max-width: 1000px) {
  .is-pc {
    display: none !important;
  }

  html {
    font-size: 3.6vw;
  }

  #g-kv {
    height: auto;
  }
  #g-kv h1 {
    top: 59%;
    left: 27%;
    width: 12.3rem;
  }

  #g-nav ol {
    width: 100%;
  }
  #g-nav li {
    width: auto;
  }
  #g-nav a {
    font-size: 1.15rem;
    padding: 1.1rem 0.4rem;
  }

  #g-about {
    width: 80%;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.1rem;
  }
  #g-about header h2 {
    font-size: 1.5rem;
  }
  #g-about .list-dot {
    margin-left: 0%;
  }

  #g-brand-nav {
    width: 100%;
    top: 4.1rem;
  }
  #g-brand-nav .brand li {
    width: 30%;
  }
  #g-brand-nav .brand li:nth-child(1) {
    width: 40%;
  }
  #g-brand-nav .brand a {
    font-size: 1rem;
    padding: 0.7rem 0;
    text-align: center;
  }
  #g-brand-nav .brand a:hover {
    color: #fff;
  }
  #g-brand-nav .brand a:hover:before {
    opacity: 0;
  }
  #g-brand-nav .brand a.active {
    color: #000;
  }
  #g-brand-nav .brand a.active:before {
    opacity: 1;
  }

  .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 .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 .rule ol {
    max-width: 82%;
  }
  .brand-page .rule li {
    letter-spacing: 0.1rem;
  }

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

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

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

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