@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";
  font-weight: normal;
  src: url("../font/nobk-webfont.woff") format("woff"), url("../font/nobk-webfont.ttf") format("truetype");
}
@font-face {
  font-family: "nbk";
  font-weight: bold;
  src: url("../font/Nobel-Bold.woff") format("woff"), url("../font/Nobel-Bold.woff2") format("woff2"), url("../font/Nobel-Bold.eot"), url("../font/Nobel-Bold.eot?#iefix") format("embedded-opentype"), url("../font/Nobel-Bold.otf") format("truetype");
}
/*Variable*/
/*Mixin*/
/*Reset*/
.hide {
  display: none;
}

[class^=g-bt-] {
  width: 50%;
  display: block;
  margin: 1rem auto;
  text-align: center;
  padding: 0.8rem 0;
  background: #000;
  color: #fff !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: 0.2s;
}
[class^=g-bt-]:hover {
  opacity: 0.5;
  text-decoration: none;
}
[class^=g-bt-] p {
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
}
[class^=g-bt-] small {
  font-size: 1.1rem;
  display: block;
}
[class^=g-bt-].is-disabled {
  background: #eee;
  border: 1px solid #ccc;
  color: #999 !important;
  text-shadow: 1px 1px 0 #fff;
  cursor: not-allowed;
}
[class^=g-bt-].is-disabled:hover {
  opacity: 1;
}

.g-bt-3 {
  border: 1px solid #000;
  background: transparent;
  color: #000 !important;
}

.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(255, 255, 255, 0.4);
  -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: 45%;
  height: 100%;
  max-width: 90%;
  max-height: 90%;
  position: relative;
  margin: 0 auto;
  top: 50%;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  padding: 2rem;
  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: 2rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  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 .msg-content {
  height: 95%;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.msg-box .msg-content header {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
}
.msg-box .msg-content header:after {
  content: "";
  width: 100%;
  height: 0.3rem;
  background: #b6a171;
  display: block;
  margin-top: 0.5rem;
}
.msg-box .msg-content .detail {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  text-align: left;
  -webkit-overflow-scrolling: touch;
  padding-top: 1rem;
  font-size: 1rem;
}
.msg-box .msg-content h3 {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 1rem;
}
.msg-box .msg-content p {
  margin: 1.5rem 0;
}
.msg-box .msg-content a {
  width: 86%;
  color: #333;
  text-decoration: underline;
}
.msg-box .msg-content a:hover {
  color: #1166f5;
}
.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: auto;
  display: block;
  margin: 1rem auto 0;
  font-size: 1rem;
  padding: 0.5rem 2rem;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  transition: 0.5s;
  position: relative;
}
.msg-box .msg-content .bt:hover {
  background: #000;
  transition: 0.2s;
}

#msg-alert .msg-wrap {
  width: 30%;
  height: auto;
}
#msg-alert .msg-content header {
  text-align: center;
}
#msg-alert .msg-content header::after {
  display: none;
}
#msg-alert .msg-content .detail {
  text-align: center;
}
#msg-alert .msg-content .bt {
  width: 50%;
  text-align: center;
}

#msg-success .msg-wrap {
  width: 55%;
  height: auto;
}
#msg-success .msg-content .flex {
  display: flex;
  align-items: center;
}
#msg-success .msg-content .detail {
  position: relative;
}
#msg-success #show-success-calendar {
  width: 30%;
  position: absolute;
  top: 0;
  right: 0;
}
#msg-success #show-success-txt {
  width: 25rem;
  display: flex;
  flex-wrap: wrap;
}
#msg-success #show-success-txt dt, #msg-success #show-success-txt dd {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
#msg-success #show-success-txt dt {
  width: 7rem;
  font-weight: bold;
}
#msg-success #show-success-txt dt::after {
  content: " /";
}
#msg-success #show-success-txt dd {
  width: calc(100% - 7rem);
}
#msg-success #show-success-txt small {
  margin-top: 0;
}
#msg-success .map-wrap {
  width: calc(100% - 25rem);
}
#msg-success #show-success-map {
  width: 100%;
  height: 17rem;
}
#msg-success #show-success-map-link {
  text-align: right;
  display: block;
  width: 100%;
  font-size: 0.8rem;
  text-decoration: underline;
  margin-top: 1rem;
}

.video {
  position: relative;
}
.video video {
  width: 100%;
  height: 39.22rem;
  display: block;
  background: #ccc;
}
.video .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
}
.video.active .cover {
  display: none;
}

.video-btn-play {
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  position: absolute;
  top: calc(50% - 3rem);
  left: calc(50% - 3rem);
  cursor: pointer;
  text-indent: -9999px;
}
.video-btn-play:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 3rem 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: 20px 0 20px 30px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  transition: 0.1s;
}
.video-btn-play:hover:before {
  border: 4rem solid #000;
}
.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: #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;
}

html {
  font-size: 17px;
}

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 {
  max-width: 1400px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: #434343;
  font-family: "nbk", sans-serif;
}
.g-wrap img {
  max-width: 100%;
}

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

#g-kv .img {
  width: 100%;
}
#g-kv .tip-scroll {
  position: absolute;
  width: 10%;
  top: 86.4%;
  left: calc(50% - 5%);
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
}
#g-kv .tip-scroll:after {
  content: "";
  width: 1px;
  height: 11.4rem;
  background: linear-gradient(to bottom, #fff 40%, #000 40.1%);
  display: block;
  margin: 0.4rem auto 0;
}

.ck-zone, #g-car {
  width: 66%;
  margin: 5rem auto;
}
.ck-zone:last-child, #g-car:last-child {
  margin-bottom: 0;
}
.ck-zone .size-135, #g-car .size-135 {
  font-size: 135%;
}
.ck-zone a, #g-car a {
  text-decoration: underline;
  color: #333;
}
.ck-zone a:hover, #g-car a:hover {
  text-decoration: none;
}
.ck-zone h1, #g-car h1 {
  font-size: 160%;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}
.ck-zone h1 u, #g-car h1 u {
  text-decoration: none;
  white-space: nowrap;
}
.ck-zone h2, #g-car h2 {
  font-size: 140%;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.ck-zone h3, #g-car h3 {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.ck-zone h4, #g-car h4 {
  font-weight: bold;
}
.ck-zone small, #g-car small {
  font-size: 0.9rem;
}

#g-car {
  width: 90%;
}
#g-car h2 {
  margin-bottom: 0;
}
#g-car h3 {
  font-weight: normal;
  margin-bottom: 1.5rem;
}

#nav-car {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background: #000;
}
#nav-car ol {
  display: flex;
}
#nav-car li {
  width: 25%;
}
#nav-car a {
  color: #fff;
  text-align: center;
  display: block;
  text-decoration: none;
  padding: 0.8rem 0;
  line-height: 1.2;
}
#nav-car a:hover {
  background: #333;
}
#nav-car a.active {
  background: #002673;
}

.page-car {
  margin-top: 2rem;
  position: fixed;
  pointer-events: none;
  transition: 1s;
  opacity: 0;
}
.page-car.active {
  position: relative;
  pointer-events: auto;
  opacity: 1;
}
.page-car .flex {
  display: flex;
}
.page-car .img {
  width: 50%;
  background: #ccc;
  aspect-ratio: 1/1;
}
.page-car .txt {
  width: 40%;
  margin-left: 5%;
  position: relative;
}
.page-car .list-star {
  font-size: 0.7rem;
  opacity: 0.7;
  margin-top: 1rem;
}
.page-car .btns {
  margin-top: 1rem;
  justify-content: start;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.page-car .btns a {
  margin: 0;
}
.page-car .note {
  display: block;
}

#control-car-prev,
#control-car-next {
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}
#control-car-prev:hover,
#control-car-next:hover {
  opacity: 0.6;
}
#control-car-prev::before,
#control-car-next::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/icon-arrow-down-000.svg);
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#control-car-prev {
  left: -5rem;
}
#control-car-prev::before {
  transform: rotate(90deg);
}

#control-car-next {
  right: -5rem;
}
#control-car-next::before {
  transform: rotate(-90deg);
}

.ck-img img {
  width: 81%;
  margin: 0 auto;
}
.ck-img.is-2-row {
  width: 75%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.ck-img.is-2-row img {
  width: 40%;
}
.ck-img + .ck-img {
  margin-top: 5rem;
}
.ck-img + [class^=ck-list-] {
  margin-top: 5rem;
}
.ck-img small {
  width: 75%;
  display: block;
  margin: 0.9rem auto;
}

.note {
  font-size: 0.9rem;
  opacity: 0.8;
}

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

.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%;
}

#g-intro {
  margin-top: 11.5rem;
}
#g-intro .ck-img {
  width: 85.6%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
#g-intro .ck-img img {
  width: 100%;
}
#g-intro header {
  position: absolute;
  bottom: 7%;
  right: 3%;
  text-align: right;
  color: #fff;
}
#g-intro header u {
  font-size: 2rem;
  border: 0.2rem solid #fff;
  text-decoration: none;
  padding: 0rem 1.5rem;
  margin-bottom: 1.2rem;
  display: inline-block;
}
#g-intro header h2, #g-intro header time {
  font-size: 2rem;
  line-height: 1.5;
}
#gallery-tns-1-iw {
  position: relative;
  left: 10rem;
}

#gallery-tns-2-iw {
  position: relative;
  left: 10rem;
}

#gallery-tns-3-iw {
  position: relative;
  left: 10rem;
}

#gallery-tns-4-iw {
  position: relative;
  left: 10rem;
}

#gallery-tns-5-iw {
  position: relative;
  left: 10rem;
}

#gallery-tns-6-iw {
  position: relative;
  left: 10rem;
}

#gallery-tns-7-iw {
  position: relative;
  left: 10rem;
}

#gallery-tns-8-iw {
  position: relative;
  left: 10rem;
}

#gallery-tns-9-iw {
  position: relative;
  left: 10rem;
}

#gallery-tns-10-iw {
  position: relative;
  left: 10rem;
}

.function {
  width: 54%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

[id^=gallery-caption-] {
  width: 90%;
  transition: 0.2s;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.9rem;
}
[id^=gallery-caption-].is-fade {
  opacity: 0;
}

[id^=gallery-pager-] {
  width: 10%;
  text-align: right;
  letter-spacing: 0.1rem;
  margin-top: 0.8rem;
}

.tns-wrap {
  overflow: hidden;
}
.tns-wrap li {
  padding: 0 1.7rem;
}
.tns-wrap li img {
  width: 100%;
}

#g-schedule dl {
  overflow: hidden;
}
#g-schedule dt, #g-schedule dd {
  float: left;
}
#g-schedule dt {
  width: 15%;
}
#g-schedule dd {
  width: 85%;
}

#schedule-sheet {
  width: 140%;
  max-width: 140%;
  margin-left: -20%;
  margin-bottom: 3rem;
}

#g-register {
  width: 55%;
  margin: 6rem auto;
}
#g-register header {
  text-align: center;
}
#g-register header:after {
  content: "";
  width: 3.5rem;
  height: 0.1rem;
  background: #000;
  display: block;
  margin: 1.4rem auto 0;
}
#g-register header h2 {
  font-size: 2.2rem;
  letter-spacing: 0.4rem;
  text-indent: 0.4rem;
}
.step {
  display: flex;
  justify-content: space-between;
  margin-top: 1.3rem;
}
.step > li {
  width: 30%;
}
.step > li .img {
  background: url(../img/icon-step.svg?v4) no-repeat;
  background-size: 300%;
  background-color: #000;
}
.step > li:nth-child(1) .img {
  background-position: 0 50%;
}
.step > li:nth-child(2) .img {
  background-position: 50% 50%;
}
.step > li:nth-child(3) .img {
  background-position: 100% 50%;
}
.step .img {
  height: 8.5rem;
  position: relative;
}
.step .no {
  color: #fff;
  position: absolute;
  left: 0.8rem;
  bottom: 0;
  font-size: 2rem;
}
.step .txt {
  margin-top: 1rem;
}
.step .txt h3 {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.step .txt small {
  font-size: 0.7rem;
  display: block;
  line-height: 1.3;
  margin-top: 0.5rem;
  opacity: 0.7;
}
.step .txt a {
  color: #000;
  text-decoration: underline;
}
.step .txt a:hover {
  text-decoration: none;
}
.step .list-dot {
  font-size: 0.9rem;
  line-height: 1.3;
}
.step .list-dot li {
  margin-bottom: 0.3rem;
}

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

.list-dot > li {
  position: relative;
  margin-left: 1rem;
}
.list-dot > li:before {
  content: "．";
  position: absolute;
  top: 0;
  right: 100%;
}

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

.list-upper-alpha li {
  position: relative;
  list-style-type: upper-alpha;
  margin-left: 1rem;
}

.btns {
  display: flex;
  justify-content: center;
  margin: 5rem auto 0;
}
.btns a {
  width: 48%;
  color: #fff;
  text-decoration: none;
}
.btns a:nth-child(2) {
  margin-left: 4%;
}

.contact {
  width: 90%;
  border: 1px solid #000;
  margin: 14.5rem auto 7rem;
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}
.contact p {
  font-size: 1.2rem;
  line-height: 2;
}
.contact dl {
  width: 60%;
  margin: 2rem auto 0;
}
.contact dt, .contact dd {
  float: left;
  text-align: left;
}
.contact dt {
  width: 25%;
}
.contact dd {
  width: 75%;
}
.contact a {
  color: #000;
  text-decoration: underline;
}
.contact a:hover {
  text-decoration: none;
}

.gmap-wrap {
  position: relative;
  margin-top: 1rem;
  overflow: hidden;
}

#gmap {
  width: 100%;
  height: 27rem;
}

#gmap-list-wrap {
  position: absolute;
  top: 0;
  right: -30%;
  width: 30%;
  height: 100%;
  transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
#gmap-list-wrap .header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #fff;
}
#gmap-list-wrap .scroll-zone {
  height: 100%;
  overflow-y: scroll;
  background: #eee;
}
#gmap-list-wrap.active {
  right: 0;
  box-shadow: -1rem 0rem 1rem rgba(0, 0, 0, 0.1);
}
#gmap-list-wrap.active #gmap-list-trigger .is-close {
  display: block;
}
#gmap-list-wrap.active #gmap-list-trigger .is-open {
  display: none;
}
#gmap-list-wrap.active i::before {
  transform: rotate(45deg);
  top: 0.5rem;
}
#gmap-list-wrap.active i::after {
  top: 0.5rem;
  transform: rotate(-45deg);
}

#gmap-list-trigger {
  width: 2rem;
  background: #444;
  position: absolute;
  top: 0;
  right: 100%;
  color: #fff;
  padding: 1rem 0;
  cursor: pointer;
}
#gmap-list-trigger:hover {
  background: #000;
}
#gmap-list-trigger span {
  line-height: 1.3;
  text-align: center;
}
#gmap-list-trigger .is-open {
  display: block;
}
#gmap-list-trigger .is-close {
  display: none;
}
#gmap-list-trigger i {
  width: 1rem;
  height: 1rem;
  position: relative;
  display: block;
  margin: 0.5rem auto 0;
}
#gmap-list-trigger i:before, #gmap-list-trigger i:after {
  content: "";
  width: 1rem;
  height: 1px;
  background: #fff;
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0;
  transition: 0.6s;
}
#gmap-list-trigger i::before {
  top: 30%;
}
#gmap-list-trigger i::after {
  top: 60%;
}

#gmap-list li {
  border-bottom: 1px solid #fff;
  padding: 1rem 1rem 1rem 1.5rem;
  cursor: pointer;
}
#gmap-list li:hover {
  background: #ddd;
}
#gmap-list li.active {
  background: #0b79fc;
  color: #fff;
}
#gmap-list li.active .icon-select::after {
  display: block;
}
#gmap-list h3 {
  line-height: 1;
}
#gmap-list p {
  font-size: 0.8rem;
}
#gmap-list .map {
  height: 30vw;
}
#gmap-list .icon-select {
  font-size: 0.8rem;
  position: relative;
  padding-left: 1.3rem;
}
#gmap-list .icon-select:before, #gmap-list .icon-select:after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  position: absolute;
  top: 0.2rem;
  left: 0;
}
#gmap-list .icon-select:before {
  background: #ccc;
}
#gmap-list .icon-select::after {
  background: url(../img/icon-checked.svg) #fff;
  display: none;
}

.gm-style-iw-d h3 {
  font-weight: bold;
  font-size: 110%;
}

.g-form > ul > li {
  position: relative;
  padding: 0.5rem 0 0.5rem 16%;
}
.g-form > ul > li label {
  width: 14%;
  position: absolute;
  top: 0.7rem;
  left: 0;
  text-align: right;
}
.g-form > ul > li input {
  padding: 0.5rem 1rem;
  border: 0;
  width: 100%;
  background: #f1f1f1;
  font-size: 1rem;
  transition: 0.2s;
}
.g-form > ul > li input:focus, .g-form > ul > li input:hover {
  background-color: #ddd;
}
.g-form > ul > li select {
  padding: 0.5rem 1rem;
  border: 0;
  width: 100%;
  background: url(../img/icon-arrow-down-000.svg) no-repeat calc(100% - 1rem) 50% #f1f1f1;
  background-size: 1rem;
  font-size: 1rem;
  -webkit-appearance: none;
  appearance: none;
}
.g-form > ul > li select:focus, .g-form > ul > li select:hover {
  background-color: #ddd;
}
.g-form > ul > li input[type=checkbox], .g-form > ul > li input[type=radio] {
  display: none;
}
.g-form > ul > li input[type=checkbox] + label {
  padding-left: 2rem;
  width: auto;
  position: relative;
  top: 0;
  display: inline-block;
  line-height: 1.5;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
}
.g-form > ul > li input[type=checkbox] + label:before,
.g-form > ul > li input[type=checkbox] + label:after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
  background: #f1f1f1;
  color: #1166f5;
  background-image: url(../img/icon-checked.svg);
  background-size: 1.8rem;
  transition: 0.5s;
}
.g-form > ul > li input[type=checkbox] + label:focus:before, .g-form > ul > li input[type=checkbox] + label:hover:before {
  background-color: #ddd;
}
.g-form > ul > li input[type=checkbox] + label:before {
  background-image: none;
}
.g-form > ul > li input[type=checkbox] + label:after {
  background-color: transparent;
  width: 0;
  box-shadow: none;
  top: -0.2rem;
}
.g-form > ul > li input[type=checkbox] + label:active:after, .g-form > ul > li input[type=checkbox]:checked + label:after {
  width: 1.5rem;
}
.g-form > ul > li input[type=radio] + label {
  padding-left: 1.9rem;
  padding-right: 0.6rem;
  width: auto;
  position: relative;
  top: 0;
  display: inline-block;
  line-height: 1.5;
  cursor: pointer;
}
.g-form > ul > li input[type=radio] + label:before,
.g-form > ul > li input[type=radio] + label:after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  border: 0;
  background: #f1f1f1;
  color: #1166f5;
  transition: 0.5s;
}
.g-form > ul > li input[type=radio] + label:focus:before, .g-form > ul > li input[type=radio] + label:hover:before {
  background-color: #ddd;
}
.g-form > ul > li input[type=radio] + label:before {
  background-image: none;
}
.g-form > ul > li input[type=radio] + label:after {
  background-color: transparent;
  transform: scale(0);
  background-color: #1166f5;
  box-shadow: none;
}
.g-form > ul > li input[type=radio] + label:active:after, .g-form > ul > li input[type=radio]:checked + label:after {
  transform: scale(0.6);
}
.g-form > ul > li .g-bt-1 {
  margin: 0 auto;
}
.g-form > ul > li a {
  text-decoration: underline;
}
.g-form.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 1s;
  display: block;
}

#g-power .ck-zone {
  margin-bottom: 0;
}
#g-power header {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  text-align: center;
  margin-bottom: 2rem;
}
#g-power header h2 {
  font-size: 140%;
  font-weight: bold;
  line-height: 1.4;
  padding: 1rem 0;
  margin-bottom: 0;
}

#g-try {
  width: 70%;
  margin: 5rem auto;
}
#g-try header {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  text-align: center;
  margin-bottom: 2rem;
}
#g-try header h2 {
  font-size: 140%;
  font-weight: bold;
  line-height: 1.4;
  padding: 1rem 0;
}
#g-try select, #g-try input {
  width: 49.5%;
}
#g-try #t-name {
  margin-right: 1rem;
}
#g-try #try-submit {
  border: 0;
}
#g-try .no-padding {
  padding-left: 0 !important;
}
#g-try .is-rule {
  width: 80%;
  margin: 0 auto;
}
#g-try .is-input-invisible {
  background: none;
  border: none;
  box-shadow: none;
  pointer-events: none;
}
#g-try .is-2-col {
  display: flex;
  justify-content: space-between;
}
#g-try .is-2-col > * {
  width: 49%;
}
#g-try .icon-star {
  padding-right: 0.5rem;
  display: inline-block;
  color: red;
}
#g-try .is-center {
  text-align: center;
}
#g-try .is-vcode label {
  position: static;
  width: auto;
  margin-right: 1.2rem;
}
#g-try .is-vcode .flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
#g-try .is-vcode input {
  width: 20%;
  margin-right: 1rem;
}
#g-try a {
  color: #333;
}
#g-try a:hover {
  color: #1166f5;
}

#t-vcode-img {
  width: 5rem;
  height: 2.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e5e5f7;
  background: linear-gradient(135deg, rgba(204, 204, 204, 0.5) 25%, transparent 25%) -10px 0/20px 20px, linear-gradient(225deg, #ccc 25%, transparent 25%) -10px 0/20px 20px, linear-gradient(315deg, rgba(204, 204, 204, 0.5) 25%, transparent 25%) 0px 0/20px 20px, linear-gradient(45deg, #cccccc 25%, #aaaaaa 25%) 0px 0/20px 20px;
  background-size: 20% 20%;
  -webkit-user-select: none;
          user-select: none;
  cursor: pointer;
}
#t-vcode-img span {
  transform: rotate(-3deg);
  filter: blur(0.5px);
  font-size: 1.5rem;
  line-height: 1;
  color: #666;
}

#g-quick {
  position: fixed;
  top: 40%;
  right: 0;
  transition: 0.2s;
  opacity: 0;
  z-index: 3;
}
#g-quick a {
  font-size: 1.4rem;
  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;
}

/*修正 lexus 外框影響 sticky 故障問題*/
#Box {
  overflow: visible;
}

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

@media screen and (max-width: 1500px) {
  html {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1400px) {
  #g-intro .ck-img {
    width: 71.6%;
  }
}
@media screen and (min-width: 1001px) {
  .is-m {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .is-pc {
    display: none !important;
  }

  html {
    font-size: 3.6vw;
  }

  #g-kv .tip-scroll {
    top: calc(100% - 6.3rem);
  }

  .ck-zone {
    width: 90%;
  }
  .ck-zone h1 u {
    letter-spacing: -0.07rem;
  }

  .ck-img {
    width: 100%;
  }
  .ck-img img {
    width: 100%;
  }
  .ck-img small {
    width: 82%;
  }

  .btns a {
    width: 100%;
    margin-bottom: 1rem;
  }

  #g-intro .ck-img {
    width: 100%;
  }
  #g-intro header u {
    font-size: 1rem;
  }
  #g-intro header h2, #g-intro header time {
    font-size: 1.5rem;
  }

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

  #gallery-tns-2-iw {
    left: 1.7rem;
  }

  #gallery-tns-3-iw {
    left: 1.7rem;
  }

  #gallery-tns-4-iw {
    left: 1.7rem;
  }

  #gallery-tns-5-iw {
    left: 1.7rem;
  }

  #gallery-tns-6-iw {
    left: 1.7rem;
  }

  #gallery-tns-7-iw {
    left: 1.7rem;
  }

  #gallery-tns-8-iw {
    left: 1.7rem;
  }

  #gallery-tns-9-iw {
    left: 1.7rem;
  }

  #gallery-tns-10-iw {
    left: 1.7rem;
  }

  .tns-wrap li {
    padding: 0 0.4rem;
  }

  .tns-controls button, .tns-controls div, .tns-cus-controls button, .tns-cus-controls div {
    width: 3rem;
    height: 3rem;
    top: 105%;
  }
  .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: 0;
  }
  .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: 0;
  }

  .function {
    flex-wrap: wrap;
    width: 84%;
    padding-top: 0.5rem;
  }

  [id^=gallery-pager-] {
    order: -1;
    width: 100%;
    text-align: center;
  }

  [id^=gallery-caption-] {
    width: 100%;
  }

  #g-register {
    width: 90%;
  }

  .step {
    flex-wrap: wrap;
  }
  .step > li {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
  }
  .step > li:nth-child(1) .img {
    background-position: 6% 50%;
  }
  .step > li:nth-child(2) .img {
    background-position: 49% 50%;
  }
  .step > li:nth-child(3) .img {
    background-position: 95% 50%;
  }
  .step > li .img {
    width: 40%;
    height: 10rem;
    background-size: 420%;
  }
  .step > li .txt {
    width: 60%;
    padding-left: 2rem;
    margin-top: 0;
  }
  .step > li .txt h3 {
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }
  .step .list-dot li {
    margin-left: 0;
  }

  .cta {
    width: 100%;
  }

  #g-car {
    width: 100%;
  }

  #nav-car ol {
    flex-wrap: wrap;
  }
  #nav-car li {
    width: 50%;
    border-bottom: 1px solid #fff;
  }
  #nav-car li:nth-child(2n-1) {
    border-right: 1px solid #fff;
  }
  #nav-car a {
    padding: 0.6rem 0;
  }

  .page-car {
    width: 90%;
    margin: 2rem auto 0;
  }
  .page-car .flex {
    flex-wrap: wrap;
  }
  .page-car .img {
    width: 100%;
  }
  .page-car .txt {
    width: 100%;
    padding-top: 2rem;
    margin-left: 0;
  }
  .page-car .btns {
    position: relative;
    margin-top: 2rem;
    justify-content: center;
  }
  .page-car .btns a {
    width: 48%;
  }

  .contact {
    width: 100%;
    margin: 6rem 0 0;
  }
  .contact p {
    line-height: 1.5;
  }
  .contact dl {
    width: 80%;
    position: relative;
    left: 2%;
  }
  #g-schedule dt {
    width: 25%;
  }
  #g-schedule dd {
    width: 75%;
  }

  #schedule-sheet {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  #g-quick {
    top: auto;
    bottom: 3rem;
    right: 0;
  }
  #g-quick a {
    font-size: 1.2rem;
  }

  .video-btn-play {
    transform: scale(0.7);
  }

  .video video {
    height: 15.5rem;
  }

  #g-try {
    width: 90%;
  }
  #g-try select, #g-try input {
    width: 100%;
    min-height: 2.5rem;
  }
  #g-try label[for=t-name], #g-try label[for=t-contact-time] {
    display: block;
  }
  #g-try label[for=t-contact-time-2] {
    padding-right: 0;
  }
  #g-try #t-name {
    width: 55%;
  }
  #g-try .is-vcode input {
    width: 40%;
  }
  #g-try .is-input-invisible {
    -webkit-text-fill-color: #000;
  }
  #g-try #try-submit {
    margin-top: 1rem;
  }

  #t-order-date {
    width: 12rem !important;
  }

  #gmap-list-wrap {
    position: relative;
    width: 100%;
    height: auto;
  }
  #gmap-list-wrap .header {
    display: none;
  }

  #gmap-list-trigger {
    display: none;
  }

  #gmap-list .map {
    max-height: 0;
    transition: 1s;
    height: 15rem;
  }
  #gmap-list li {
    border-bottom: 0.4rem solid #fff;
    padding: 1rem;
  }
  #gmap-list li.active {
    background: none;
    color: #333;
  }
  #gmap-list li.active .map {
    max-height: 15rem;
    margin-top: 0.5rem;
  }
  #gmap-list h3 {
    font-size: 140%;
  }
  #gmap-list .txt {
    padding-left: 15%;
  }
  #gmap-list .icon-select {
    text-indent: -9999rem;
    position: absolute;
  }
  #gmap-list .icon-select:before, #gmap-list .icon-select::after {
    width: 2rem;
    height: 2rem;
    top: -2.8rem;
    left: -3.3rem;
  }

  .g-form > ul > li {
    padding-left: 0;
  }
  .g-form > ul > li label {
    position: static;
    width: 100%;
    text-align: left;
  }

  .msg-box .msg-wrap {
    width: 90%;
  }
  .msg-box .msg-content header {
    line-height: 1.4;
  }

  #msg-alert .msg-wrap {
    width: 80%;
  }

  #msg-success .msg-wrap {
    width: 90%;
  }
  #msg-success #show-success-calendar {
    position: static;
    width: 40%;
  }
  #msg-success .msg-content .flex {
    display: block;
  }
  #msg-success #show-success-txt {
    width: 100%;
  }
  #msg-success .map-wrap {
    width: 100%;
  }
  #msg-success #show-success-map {
    height: 10rem;
  }
}