@charset "UTF-8";
/* ------------------------------------
               COMMON
--------------------------------------*/
html, body {
  background: #000;
  width: 100%;
  font-family: "Noto Serif TC", serif;
  font-size: 16px;
  color: #fff;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 1px;
  overflow-x: hidden;
}

body.overflow {
  overflow: hidden;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-moz-selection {
  background: #c8a16c;
  color: #000 !important;
}

::selection {
  background: #c8a16c;
  color: #000 !important;
}

img {
  max-width: 100%;
  display: block;
}

.wrap section {
  padding: 4em 0;
}

h1, h2, h3, h4, h5 {
  font-family: "Noto Serif TC", serif;
  font-weight: normal;
  margin-top: 0;
  line-height: 2;
  margin-bottom: 0.8em;
}

h1 {
  font-size: 2.3em;
}

h2 {
  font-size: 3.25em;
  font-weight: 500;
  margin-bottom: 0.4em;
  line-height: 1;
}

h3 {
  font-size: 1.875em;
  margin-bottom: 0;
}

h4 {
  font-size: 1.25em;
  margin-bottom: 0;
}

p, li, dt, dd {
  font-size: 1.125em;
}

.big {
  font-size: 1.3em;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

a.border_bottom {
  border-bottom: 1px solid #fff;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.disc {
  list-style: disc;
  padding-left: 2.3em;
}

/* テキスト関係各種 */
.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

/* 色関係各種 */
.white {
  color: #fff;
}

/* container各種 */
.container {
  width: 1000px;
  max-width: 100%;
  margin: auto;
  padding: 0;
}

/* display各種 */
.block {
  display: block;
}

.inline {
  display: inline-block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex.f-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex.column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.flex.flex-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex.ai-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex.jc-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex.jc-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex.jc-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex .f-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  height: auto;
}

.flex .f-box.f-box-2 {
  width: 50%;
}

.flex .f-box.f-box-3 {
  width: 33%;
}

.flex .f-box.f-box-4 {
  width: 25%;
}

.flex .f-box.f-box-5-2 {
  width: 56%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.margin-auto {
  margin: auto;
}

/* 幅設定 */
.wdt100 {
  width: 100%;
}

.wdt95 {
  width: 95%;
}

.wdt90 {
  width: 90%;
}

.wdt80 {
  width: 80%;
}

.wdt75 {
  width: 75%;
}

.wdt70 {
  width: 70%;
}

.wdt65 {
  width: 65%;
}

.wdt60 {
  width: 60%;
}

.wdt55 {
  width: 55%;
}

.wdt50 {
  width: 50%;
}

.wdt45 {
  width: 45%;
}

.wdt40 {
  width: 40%;
}

.wdt30 {
  width: 30%;
}

.wdt20 {
  width: 20%;
}

/* ボタン基本設定 */
.btn {
  width: 350px;
  max-width: 100%;
  padding: 1em 3em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  font-size: 1.25em;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1;
}

.btn.btn_block {
  display: block;
}

.btn.btn_inline {
  display: inline-block;
}

.btn.btn_border {
  color: #c8a16c;
  border: 1px solid #c8a16c;
}

.btn.btn_border:hover {
  opacity: 1;
  color: #fff;
  background-color: #c8a16c;
}

.btn.btn_primary {
  color: #fff;
  background-color: #c8a16c;
}

.btn.btn_more {
  font-family: "Noto Sans TC", sans-serif;
  color: #c8a16c;
  background: #000;
  position: relative;
}

.btn.btn_more:before {
  content: '';
  position: absolute;
  width: 1.25em;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../images/btn_arrow.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: left center;
}

.btn.btn_menu {
  padding: 0.5em 0;
  font-size: 22px;
}

@media screen and (max-width: 1300px) {
  body, html {
    font-size: 12px;
  }
  .container {
    width: 650px;
  }
  .btn {
    width: 200px;
  }
  .btn.btn_menu {
    font-size: 15px;
  }
}

@media screen and (max-width: 1024px) {
  body, html {
    font-size: 15px;
  }
  .wrap section {
    padding: 3em 0;
  }
  .btn {
    width: 250px;
  }
  h1 {
    font-size: 3em;
  }
  h2 {
    font-size: 2.5em;
    margin-bottom: 0.2em;
  }
  h3 {
    font-size: 1.25em;
  }
  h4 {
    font-size: 1em;
  }
  p {
    font-size: 1em;
  }
}

@media screen and (max-width: 768px) {
  body, html {
    font-size: 3.2vw;
    letter-spacing: 0;
  }
  .wrap section {
    padding: 6vw 0;
  }
  .container {
    width: 100%;
    padding: 0 15px;
  }
  h1 {
    font-size: 3em;
  }
  h2 {
    font-size: 2.5em;
    margin-bottom: 0.2em;
  }
  h3 {
    font-size: 1.25em;
  }
  h4 {
    font-size: 1em;
  }
  p {
    font-size: 1em;
  }
  .btn {
    font-size: 0.9em;
    width: 36.5vw;
    padding: 1em 1em;
  }
}

/* PC-SP display */
.pc {
  display: none;
}

.sp {
  display: block;
}

@media screen and (min-width: 1000px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}

/* ------------------------------------
               HEADER
--------------------------------------*/
header {
  background: #000;
  padding: 0 50px;
  width: 100%;
  position: fixed;
  z-index: 999;
}

header .navbar-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navbar-pc .logo {
  margin: auto;
}

header .navbar-pc .logo img {
  width: auto;
  height: 65px;
}

header .navbar-pc ul {
  position: absolute;
  right: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navbar-pc ul li a {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 0px 20px;
  text-decoration: none;
  color: #c8a16c;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .navbar-pc ul li a:hover {
  opacity: 1;
  color: #fff;
}

@media screen and (max-width: 1300px) {
  header {
    padding: 0 20px;
  }
  header .navbar-pc .logo img {
    height: 46px;
  }
  header .navbar-pc ul {
    right: 20px;
  }
  header .navbar-pc ul li {
    padding: 0px 10px;
  }
  header .navbar-pc ul li a {
    font-size: 12px;
    padding: 0px 10px;
  }
}

@media screen and (max-width: 1024px) {
  header .navbar-pc #one-page-nav {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  header .navbar-pc {
    padding: 20px 10px;
  }
  header .navbar-pc .logo {
    margin-left: 0;
    margin-right: auto;
  }
  header .navbar-pc .logo img {
    height: 36px;
  }
}

/* ------------------------------------
     HEADER - SLIDE - mobile only
--------------------------------------*/
.burger {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 15px;
  right: 15px;
  border-radius: 4px;
  z-index: 10;
}

.burger span {
  position: relative;
  margin-top: 9px;
  margin-bottom: 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -1.5px;
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #c8a16c;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.burger span:before {
  top: -9px;
}

.burger span:after {
  top: 9px;
}

.burger span:before, .burger span:after {
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #c8a16c;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.burger.clicked span {
  background-color: transparent;
}

.burger.clicked span:before {
  -webkit-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}

.burger.clicked span:after {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}

.burger.clicked span:before, .burger.clicked span:after {
  background-color: #c8a16c;
}

.burger:hover {
  cursor: pointer;
}

nav {
  background-color: #000;
  position: fixed;
  z-index: 8;
  top: 0;
  right: 0;
  height: 100vh;
  max-width: 515px;
  width: 80vw;
  padding: 100px 40px 60px 40px;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: -webkit-transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

nav.show {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

nav.show .about, nav.show .social, nav.show ul.sub {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  -webkit-transition-delay: .85s;
          transition-delay: .85s;
}

@media (min-width: 667px) {
  nav {
    padding: 120px 90px 70px 90px;
  }
}

nav ul.main {
  padding-left: 0;
  margin: 7vw 0;
}

nav ul.main li {
  margin-bottom: 4vw;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

nav ul.main li a {
  color: #c8a16c;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.2em;
  display: block;
  letter-spacing: 2px;
  font-weight: 600;
  padding: 2vw 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

nav ul.main li a span {
  color: #c8a16c;
}

nav ul.main li a:hover {
  color: #c8a16c;
}

nav .social {
  padding-top: 7vw;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

nav .social:after {
  content: "";
  width: 230px;
  height: 1px;
  background-color: #c8a16c;
  position: absolute;
  top: 0;
  left: 0;
}

nav .social a {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  margin-right: 25px;
}

nav .social a:last-of-type {
  margin-right: 0px;
}

nav .social a:hover svg path,
nav .social a:hover svg circle {
  fill: #c8a16c;
}

nav .social a svg {
  width: 100%;
  height: 100%;
}

nav .social a svg path,
nav .social a svg circle {
  fill: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 7;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #c8a16c;
  opacity: 0;
  visibility: hidden;
}

.overlay.show {
  opacity: 0.8;
  visibility: visible;
}

/* ------------------------------------
                LOADING
--------------------------------------*/
#loader-wrap {
  position: fixed;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
  background: #000;
  padding: 41.5vh 46vw;
}

#loader-wrap img {
  width: auto;
}

@media screen and (max-width: 1024px) {
  #loader-wrap {
    padding: 43vh 40vw;
  }
}

@media screen and (max-width: 768px) {
  #loader-wrap {
    padding: 44.5vh 40vw;
  }
}

/* ------------------------------------
                  FV
--------------------------------------*/
.fv_slider {
  width: 100%;
}

.fv_slider .slick-list {
  background: #000;
}

.fv_slider .slick-track {
  padding-bottom: 50px;
}

.fv_slider .slick-slide {
  opacity: 0.25;
  margin: 0 25px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.fv_slider .slick-slide img.slider_bg {
  height: 750px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.fv_slider .slick-slide.slick-center {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
}

.fv_slider .slick-slide.slick-center img.slider_bg {
  height: 780px;
}

.fv_slider .slick-slide p {
  display: inline-block;
  background: #000;
  width: 3em;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  font-family: "Noto Sans TC", sans-serif;
  padding: 3em 0 4em;
  color: #c8a16c;
  border-bottom: 6px solid #c8a16c;
  line-height: 3;
  letter-spacing: 3px;
  font-size: 1.5em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-orientation: upright;
  bottom: -50px;
  left: 1em;
  z-index: 9;
  margin: 0;
}

.fv_slider .slick-slide p span {
  font-size: 0.75em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.fv_slider .slick-slide p:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 38px;
  top: -19px;
  left: 0;
  background-image: url(../images/title_icon.svg);
  background-repeat: no-repeat;
  background-size: auto 38px;
  background-position: center top;
}

.fv_slider .slick-prev, .fv_slider .slick-next {
  display: none;
  z-index: 99;
  width: 30vw;
  height: 100%;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 0;
  -webkit-transform: none;
          transform: none;
}

.fv_slider .slick-prev:before, .fv_slider .slick-next:before {
  display: none;
}

.fv_slider .slick-prev {
  left: 0%;
}

.fv_slider .slick-next {
  right: 0%;
}

.fv_slider .slick-dots {
  bottom: 25px;
  line-height: 0;
  right: 33.5%;
  width: 62px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.fv_slider .slick-dots li {
  margin: 0 auto;
  width: 60px;
  height: 60px;
}

.fv_slider .slick-dots li button {
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid transparent;
  border-radius: 0;
  width: 60px;
  height: 60px;
  padding: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.fv_slider .slick-dots li button:before {
  display: none;
}

.fv_slider .slick-dots li.slick-active button {
  color: #c8a16c;
  background: #000;
  border: 1px solid #c8a16c;
}

@media screen and (max-width: 1600px) {
  .fv_slider .slick-dots {
    right: 31%;
    bottom: 30px;
    width: 50px;
    gap: 14px;
  }
  .fv_slider .slick-dots li {
    width: 48px;
    height: 48px;
  }
  .fv_slider .slick-dots li button {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
}

@media screen and (max-width: 1300px) {
  .fv_slider .slick-track {
    padding-bottom: 50px;
  }
  .fv_slider .slick-slide {
    opacity: 0.25;
    margin: 0 20px;
    position: relative;
  }
  .fv_slider .slick-slide img.slider_bg {
    height: 680px;
  }
  .fv_slider .slick-slide.slick-center img.slider_bg {
    height: 720px;
  }
  .fv_slider .slick-slide p:before {
    height: 28px;
    top: -14px;
    background-size: auto 28px;
  }
  .fv_slider .slick-prev, .fv_slider .slick-next {
    width: 25vw;
  }
  .fv_slider .slick-dots {
    right: 28%;
    bottom: 30px;
    width: 40px;
    gap: 10px;
  }
  .fv_slider .slick-dots li {
    width: 38px;
    height: 38px;
  }
  .fv_slider .slick-dots li button {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }
}

@media screen and (max-width: 1024px) {
  .fv_slider .slick-slide img.slider_bg {
    height: 650px;
  }
  .fv_slider .slick-slide.slick-center img.slider_bg {
    height: 680px;
  }
  .fv_slider .slick-slide p {
    width: 60px;
    font-size: 1.3em;
  }
  .fv_slider .slick-prev, .fv_slider .slick-next {
    width: 5vw;
  }
  .fv_slider .slick-dots {
    right: 17%;
    bottom: 35px;
  }
}

@media screen and (max-width: 768px) {
  .fv_slider .slick-track {
    padding-bottom: 14vw;
  }
  .fv_slider .slick-slide {
    opacity: 0.25;
    margin: 0 20px;
    position: relative;
  }
  .fv_slider .slick-slide img.slider_bg {
    height: auto;
    width: 100vw;
  }
  .fv_slider .slick-slide.slick-center {
    opacity: 1;
  }
  .fv_slider .slick-slide.slick-center img.slider_bg {
    height: auto;
    width: 100vw;
  }
  .fv_slider .slick-slide p {
    position: absolute;
    bottom: -4vw;
    left: 5vw;
    z-index: 9;
    width: 10vw;
    padding: 10vw 0 19vw;
    border-bottom-width: 1vw;
    line-height: 3;
    font-size: 1.05em;
  }
  .fv_slider .slick-slide p span {
    font-size: 0.7em;
  }
  .fv_slider .slick-slide p:before {
    height: 20px;
    top: -10px;
    background-size: auto 20px;
  }
  .fv_slider .slick-prev, .fv_slider .slick-next {
    width: 10vw;
    height: 86%;
  }
  .fv_slider .slick-dots {
    bottom: 10vw;
    right: 4vw;
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3vw;
  }
  .fv_slider .slick-dots li {
    width: 8vw;
    height: 8vw;
  }
  .fv_slider .slick-dots li button {
    width: 8vw;
    height: 8vw;
    font-size: 10px;
  }
}

/* ------------------------------------
           CONTENT - TOPPAGE
--------------------------------------*/
.wrap .title {
  z-index: 2;
  position: relative;
  color: #c8a16c;
  background: #000;
  padding: 3.5em 2.8em;
  width: 8em;
  letter-spacing: 2px;
  text-align: center;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.wrap .title span {
  font-size: 1.125em;
  line-height: 1;
  font-weight: 500;
}

.wrap .title.center {
  margin: 0 auto;
}

.wrap .title:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 47px;
  bottom: -23px;
  left: 0;
  z-index: 9;
  background-image: url(../images/title_icon.svg);
  background-repeat: no-repeat;
  background-size: auto 47px;
  background-position: center top;
}

.wrap .pageTitle {
  padding-bottom: 3em;
  background-image: url(../images/menu_bg.jpg);
  background-repeat: no-repeat;
  background-size: 100vw auto;
  background-position: center 5em;
}

@media screen and (max-width: 1300px) {
  .wrap .title span {
    letter-spacing: 1px;
  }
  .wrap .title:before {
    height: 30px;
    bottom: -15px;
    background-size: auto 30px;
  }
}

@media screen and (max-width: 1024px) {
  .wrap .title {
    width: 7em;
    padding: 3.5em 2.6em;
  }
  .wrap .title span {
    font-size: 1em;
  }
}

@media screen and (max-width: 768px) {
  .wrap .title {
    padding: 5vw 5vw;
    width: 19vw;
  }
  .wrap .title span {
    font-size: 0.8em;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 1px;
  }
  .wrap .title:before {
    height: 6vw;
    bottom: -3vw;
    background-size: auto 6vw;
  }
  .wrap .pageTitle {
    padding-bottom: 7vw;
    background-position: center 14vw;
  }
}

#kodawari {
  margin-top: 16em;
  background-image: url(../images/kodawari_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  position: relative;
}

#kodawari .container {
  position: relative;
  z-index: 2;
}

#kodawari .container:before {
  content: '';
  position: absolute;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, #202020), color-stop(40%, transparent));
  background: linear-gradient(to right, #202020 40%, transparent 40%);
  background-size: 12px 100%;
  width: 530px;
  height: 530px;
  left: -40px;
  top: -150px;
}

#kodawari .text {
  position: relative;
  z-index: 2;
  padding: 4em 8em 0;
  margin-bottom: 3em;
}

#kodawari .text p {
  margin-top: 0;
  margin-bottom: 0.8em;
}

@media screen and (max-width: 1300px) {
  #kodawari .container:before {
    background-size: 8px 100%;
    width: 380px;
    height: 380px;
    left: -30px;
    top: -100px;
  }
}

@media screen and (max-width: 1024px) {
  #kodawari {
    margin-top: 10em;
  }
}

@media screen and (max-width: 768px) {
  #kodawari {
    margin-top: 3vw;
    padding-top: 0;
  }
  #kodawari .container:before {
    background-size: 6.5px 100%;
    width: 74vw;
    height: 70vw;
    left: 0;
    top: 12vw;
  }
  #kodawari .text {
    z-index: 2;
    padding: 10vw 11.5vw 0;
  }
}

#menu {
  margin-top: 8em;
  padding-top: 12em;
  position: relative;
  background-image: url(../images/menu_bg.jpg);
  background-repeat: no-repeat;
  background-size: 73vw 85%;
  background-position: right 8em;
}

#menu .title {
  margin-top: -12em;
}

#menu .menu_box {
  padding-top: 6.25em;
  position: relative;
  z-index: 2;
}

#menu .menu_box .flex {
  position: relative;
}

#menu .menu_box .flex > div {
  -webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 2em rgba(0, 0, 0, 0.8);
}

#menu .menu_box .flex:nth-of-type(1) {
  z-index: 3;
}

#menu .menu_box .flex:nth-of-type(2) {
  z-index: 2;
  margin-top: -7em;
}

#menu .menu_box .flex:nth-of-type(3) {
  z-index: 1;
  margin-top: -15em;
}

#menu .menu_box .flex:nth-of-type(4) {
  z-index: 2;
}

#menu .menu_box .flex:nth-of-type(5) {
  z-index: 3;
  margin-left: 1.5em;
  margin-top: -5em;
}

#menu .menu_box .flex:nth-of-type(6) {
  z-index: 4;
  margin-top: -8em;
  margin-right: 1.5em;
}

#menu .menu_box .btn_more {
  margin-top: -1em;
  z-index: 5;
  margin-right: 0.754em;
  margin-left: auto;
}

#menu:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url(../images/menu_bg_2.png);
  background-position: bottom left;
  background-size: auto;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1300px) {
  #menu:before {
    background-size: 60%;
  }
  #menu .menu_box {
    padding-top: 5em;
  }
}

@media screen and (max-width: 1024px) {
  #menu {
    margin-top: 2em;
  }
}

@media screen and (max-width: 768px) {
  #menu {
    padding-top: 29vw;
    background-position: right 15vw;
  }
  #menu .container {
    padding: 0;
  }
  #menu .title {
    margin-top: -29vw;
  }
  #menu .menu_box {
    padding-top: 8vw;
  }
  #menu .menu_box .flex:nth-of-type(2) {
    margin-top: -13vw;
  }
  #menu .menu_box .flex:nth-of-type(3) {
    margin-top: -24vw;
  }
  #menu .menu_box .flex:nth-of-type(5) {
    margin-left: 4vw;
    margin-top: -8vw;
  }
  #menu .menu_box .flex:nth-of-type(6) {
    margin-top: -11vw;
    margin-right: 4vw;
  }
  #menu:before {
    background-image: url(../images/menu_bg_2.png), url(../images/menu_bg_2.png);
    background-position: 21% 95%, 23% 21%;
    background-size: 150%, 135%;
  }
}

/* ------------------------------------
            CONTENT - MENU
--------------------------------------*/
#menuPage {
  color: #c8a16c;
  position: relative;
  background-image: url(../images/menu_bg.jpg);
  background-repeat: no-repeat;
  background-size: 1100px 90%;
  background-position: center 15%;
}

#menuPage:before, #menuPage:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url(../images/menu_bg_2.png);
  background-size: auto;
  background-repeat: no-repeat;
}

#menuPage:before {
  background-position: left 50%;
}

#menuPage:after {
  background-position: 114% 3%;
}

#menuPage h3 span {
  font-size: 0.75em;
  letter-spacing: 2px;
}

#menuPage .menu_box {
  position: relative;
  z-index: 3;
  padding-bottom: 3em;
  width: 80%;
  margin: 12% auto;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(92%, #000), color-stop(92%, transparent), to(transparent));
  background: linear-gradient(0deg, #000 0%, #000 92%, transparent 92%, transparent 100%);
}

#menuPage .menu_box h3 {
  letter-spacing: 0.2em;
  font-size: 1.8em;
}

#menuPage .menu_box p {
  font-size: 1.4em;
  color: #fff;
}

#menuPage .menuItem {
  position: relative;
  z-index: 3;
}

#menuPage .menuItem .item {
  margin: 3em 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#menuPage .menuItem .item .f-box {
  padding: 0 0.8em;
  margin-bottom: 0;
}

#menuPage .menuItem .item h4 {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-orientation: upright;
  text-align: center;
  letter-spacing: 1px;
  position: relative;
  margin: 0;
  padding-top: 1em;
  line-height: 2;
  width: 2em;
}

#menuPage .menuItem .item h4:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 6em;
  left: 49.5%;
  bottom: 100%;
  background: #c8a16c;
}

#menuPage .menuItem .item img {
  height: 30em;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1300px) {
  #menuPage:before, #menuPage:after {
    background-size: 100%;
  }
}

@media screen and (max-width: 768px) {
  #menuPage {
    background-size: auto 89%;
  }
  #menuPage .menu_box {
    width: 92vw;
    padding: 0 6vw 4vw;
  }
  #menuPage .menu_box p {
    font-size: 1.2em;
    margin-bottom: 0.5em;
  }
  #menuPage .menuItem .item {
    margin: 5vw 0;
  }
  #menuPage .menuItem .item .f-box {
    padding: 0 0.5vw;
  }
  #menuPage .menuItem .item h4 {
    padding-top: 1vw;
  }
  #menuPage .menuItem .item h4:before {
    height: 10vw;
  }
  #menuPage .menuItem .item img {
    height: 50vw;
  }
}

#ice .title {
  position: relative;
  width: calc(100% + 100px);
  margin: 0 -50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#ice .title h3 {
  color: #c8a16c;
}

#ice .title h3 big {
  letter-spacing: 0.3em;
  font-weight: 700;
}

#ice .title:before {
  content: '';
  position: absolute;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, #202020), color-stop(40%, transparent));
  background: linear-gradient(to right, #202020 40%, transparent 40%);
  background-size: 12px 100%;
  width: 100%;
  height: 30px;
  top: 52%;
  left: 0;
}

#ice article {
  padding: 4% 0;
  margin: 0 -50px 6%;
  gap: 5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#ice article:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

#ice .menu_img {
  width: 54%;
}

#ice .menu_text {
  width: 40%;
  padding: 0 2.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#ice .menu_text h4 {
  color: #c8a16c;
  font-weight: 700;
  border: 1px solid #c8a16c;
  font-size: 26px;
  line-height: 2.6;
}

#ice .menu_text p {
  font-size: 22px;
}

#ice .topic .menu_text {
  color: #c8a16c;
  font-weight: 700;
}

#ice .flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10%;
  margin-bottom: 6%;
}

@media screen and (max-width: 1300px) {
  #ice .menu_text h4 {
    font-size: 20px;
  }
  #ice .menu_text p {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  #ice .title {
    margin: 0;
    width: 100%;
  }
  #ice .title h3 {
    font-size: 1.5em;
  }
  #ice .title:before {
    background-size: 6px 100%;
    height: 15px;
    top: 12vw;
  }
  #ice article {
    margin: 0 0 10vw;
  }
  #ice article.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #ice .menu_img {
    width: auto;
  }
  #ice .menu_text {
    width: 100%;
    padding: 4vw 0;
  }
  #ice .menu_text h4 {
    display: inline-block;
    padding: 0 2em;
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 0.5em;
    min-width: 60vw;
    line-height: 2.3;
  }
  #ice .menu_text p {
    font-size: 1.3em;
  }
  #ice .topic .menu_text {
    font-weight: 400;
  }
  #ice .flex {
    margin: 0 0 10vw;
    gap: 10vw;
  }
  #ice .flex.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.modal-backdrop.show {
  background: rgba(0, 0, 0, 0.7);
}

.modal {
  padding: 0 17px 0 34px !important;
}

#menudetail {
  padding-bottom: 0;
}

#menudetail .flex {
  gap: 20px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

#menudetail ul li {
  width: 100%;
}

#menudetail ul li a {
  width: 100%;
}

#menudetail .modal-dialog {
  background: #000;
  max-width: 1040px;
  margin: 55vh auto 0;
}

#menudetail .modal-dialog .modal-content {
  border-radius: 0;
  background: #000;
  padding: 0 4em 5em;
}

#menudetail .modal-dialog .modal-content .modsal-header {
  padding: 3em 0;
}

#menudetail .modal-dialog .modal-content .modsal-header .modal-title {
  color: #fff;
  margin-bottom: 1em;
}

#menudetail .modal-dialog .modal-content .modsal-header .btn-close {
  cursor: pointer;
  font-size: 2.5em;
  position: fixed;
  right: 18vw;
  top: 56vh;
  z-index: 6;
  line-height: 1.2;
  color: #f8f8f8;
  padding: 0em 0.3em 0.3em;
  text-align: center;
}

#menudetail .modal-dialog .modal-content .modsal-header .btn-close p {
  font-size: initial;
  margin-bottom: 0;
}

#menudetail .modal-dialog .modal-content .modal-body {
  position: relative;
  z-index: 1;
  padding: 0;
}

#menudetail .modal-dialog .modal-content .modal-body:before, #menudetail .modal-dialog .modal-content .modal-body:after {
  content: '';
  position: absolute;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, #202020), color-stop(40%, transparent));
  background: linear-gradient(to right, #202020 40%, transparent 40%);
  background-size: 12px 100%;
  width: 100%;
  height: 60px;
  left: 0;
}

#menudetail .modal-dialog .modal-content .modal-body:before {
  top: -30px;
}

#menudetail .modal-dialog .modal-content .modal-body:after {
  bottom: -30px;
}

#menudetail .modal-dialog .modal-content .modal-body .modal-box {
  border: 1px solid #fff;
  padding: 5em 7em;
}

#menudetail .modal-dialog .modal-content .modal-body .modal-box:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 47px;
  top: -23px;
  left: 0;
  z-index: 9;
  background-image: url(../images/title_icon.svg);
  background-repeat: no-repeat;
  background-size: auto 47px;
  background-position: center top;
}

#menudetail .modal-dialog .modal-content .modal-body .modal-box h4 {
  margin-top: 2em;
  margin-bottom: 0;
}

#menudetail .modal-dialog .modal-content .modal-body .modal-box p {
  font-size: 1.875em;
  color: #c8a16c;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.6;
}

#menudetail .modal-dialog .modal-content .modal-body .modal-box li {
  font-size: 1.75em;
  color: #c8a16c;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.6;
  position: relative;
}

#menudetail .modal-dialog .modal-content .modal-body .modal-box li span {
  font-size: 0.75em;
}

#menudetail .modal-dialog .modal-content .modal-body .modal-box li .price {
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 400;
}

#menudetail .modal-dialog .modal-content .modal-body .modal-box ul > li > ul > li {
  font-size: 1em;
}

#menudetail .modal-dialog .modal-content .modal-body .modal-box ul li::marker {
  font-size: 0.8em;
}

#menudetail .modal-dialog .modal-content .modal-body .modal-box .warning {
  margin-top: 1em;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 1300px) {
  #menudetail .flex {
    gap: 12px;
  }
  #menudetail .modal-dialog {
    max-width: 650px;
    margin-top: 70vh;
  }
  #menudetail .modal-dialog .modal-content {
    padding: 0 3em 5em;
  }
  #menudetail .modal-dialog .modal-content .modsal-header {
    padding: 3em 0;
  }
  #menudetail .modal-dialog .modal-content .modsal-header .btn-close {
    right: 17vw;
    top: 75vh;
  }
  #menudetail .modal-dialog .modal-content .modsal-header .btn-close p {
    font-size: 0.5em;
  }
  #menudetail .modal-dialog .modal-content .modal-body:before, #menudetail .modal-dialog .modal-content .modal-body:after {
    height: 40px;
  }
  #menudetail .modal-dialog .modal-content .modal-body:before {
    top: -20px;
  }
  #menudetail .modal-dialog .modal-content .modal-body:after {
    bottom: -20px;
  }
  #menudetail .modal-dialog .modal-content .modal-body .modal-box {
    padding: 4em 2em;
  }
  #menudetail .modal-dialog .modal-content .modal-body .modal-box:before {
    height: 30px;
    top: -15px;
    background-size: auto 30px;
  }
  #menudetail .modal-dialog .modal-content .modal-body .modal-box h4 {
    margin-top: 1.7em;
  }
  #menudetail .modal-dialog .modal-content .modal-body .modal-box p, #menudetail .modal-dialog .modal-content .modal-body .modal-box li {
    font-size: 1.5em;
  }
  #menudetail .modal-dialog .modal-content .modal-body .modal-box ul > li > ul > li {
    font-size: 1em;
  }
  #menudetail .modal-dialog .modal-content .modal-body .modal-box ul li::marker {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 1024px) {
  #menudetail .modal-dialog {
    max-width: 700px;
    margin-top: 29vh;
  }
  #menudetail .modal-dialog .modal-content .modsal-header .btn-close {
    right: 10vw;
    top: 30%;
  }
  #menudetail .modal-dialog .modal-content .modal-body .modal-box {
    padding: 4em 2em;
  }
  #menudetail .modal-dialog .modal-content .modal-body .modal-box:before {
    height: 30px;
    top: -15px;
    background-size: auto 30px;
  }
  #menudetail .modal-dialog .modal-content .modal-body .modal-box p, #menudetail .modal-dialog .modal-content .modal-body .modal-box li {
    font-size: 1.35em;
  }
  #menudetail .modal-dialog .modal-content .modal-body .modal-box ul > li > ul > li {
    font-size: 1em;
  }
  #menudetail .modal-dialog .modal-content .modal-body .modal-box ul li::marker {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 768px) {
  #menudetail .modal {
    padding: 0 !important;
  }
  #menudetail .modal-dialog {
    max-width: 100vw;
    margin-top: 8vh;
    padding-bottom: 20vw;
  }
  #menudetail .modal-dialog .modal-content {
    padding: 5vw 3vw;
  }
  #menudetail .modal-dialog .modal-content .modsal-header .btn-close {
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    font-size: 6vw;
    padding: 0 0 0.2em;
  }
  #menudetail .modal-dialog .modal-content .modsal-header .btn-close p {
    font-size: 3vw;
  }
  #menudetail .modal-dialog .modal-content .modal-body .modal-box {
    padding: 8vw 3vw;
  }
  #menudetail .modal-dialog .modal-content .modal-body .modal-box p, #menudetail .modal-dialog .modal-content .modal-body .modal-box li {
    font-size: 3.46667vw;
  }
  #menudetail .modal-dialog .modal-content .modal-body .modal-box ul > li > ul > li {
    font-size: 3.46667vw;
  }
  #menudetail .modal-dialog .modal-content .modal-body .modal-box ul li::marker {
    font-size: 3vw;
  }
}

/* ------------------------------------
         CONTENT - RESERVATION
--------------------------------------*/
#reservation .f-box {
  padding: 0;
  margin: 0;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

#reservation .text {
  padding: 0 2em 0 24vw;
}

#reservation .text h3 img {
  width: 7em;
}

#reservation .img_box ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: wrap row;
          flex-flow: wrap row;
}

#reservation .img_box ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

#reservation .img_box ul li img {
  width: 100%;
  height: 24vw;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1300px) {
  #reservation p {
    font-size: 1em;
  }
}

@media screen and (max-width: 1024px) {
  #reservation .text {
    padding: 0 2em;
  }
}

@media screen and (max-width: 768px) {
  #reservation .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #reservation .text {
    padding: 0 4vw 6vw;
  }
  #reservation .img_box ul li img {
    height: 50vw;
  }
}

#contact {
  padding-top: 10em;
}

#contact .f-box {
  padding: 0;
  margin: 0;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

#contact .btn {
  font-size: 1.125em;
}

@media screen and (max-width: 1300px) {
  #contact p {
    font-size: 1em;
  }
}

@media screen and (max-width: 768px) {
  #contact {
    padding-top: 6vw;
    padding-bottom: 0;
  }
  #contact .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact .img_box {
    width: 100%;
    margin-top: 6vw;
  }
  #contact .img_box img {
    width: 100%;
    height: 45vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

#check .text {
  padding: 3em 6em;
  margin-bottom: 2em;
  background: #212121;
}

#check .text h3 {
  margin-top: 1em;
}

#check .text ul {
  padding-left: 1em;
}

#check .text ul > li {
  text-indent: -1em;
}

#check .text li {
  font-size: 1em;
  color: #f8f8f8;
}

#check .text hr {
  border: 1px solid #6e6e6e;
  border-width: 0 0 1px 0;
  padding-top: 2em;
}

#check label {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-left: 2em;
  margin-bottom: 2em;
  cursor: pointer;
  font-size: 1.125em;
  line-height: 1.5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#check label > input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

#check label .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

#check label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 0.45em;
  top: 0.1em;
  width: 0.5em;
  height: 1em;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#check label:hover input ~ .checkmark {
  background-color: #fff;
}

#check label > input:checked ~ .checkmark {
  background-color: #c8a16c;
}

#check label input:checked ~ .checkmark:after {
  display: block;
}

#check input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Serif TC", serif;
  font-size: 1.125em;
  border: none;
  cursor: pointer;
  border-radius: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#check input[type="submit" i]:disabled {
  opacity: 0.5;
}

#check input:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1300px) {
  #check label .checkmark {
    height: 20px;
    width: 20px;
  }
}

@media screen and (max-width: 768px) {
  #check .text {
    padding: 6vw 4vw;
  }
  #check .text ol, #check .text ul {
    padding-left: 6vw;
  }
}

#privacy {
  letter-spacing: 1px;
}

#privacy ul {
  list-style: disc;
  padding-left: 1.75em;
}

#privacy ul li {
  font-size: 1.125em;
}

@media screen and (max-width: 768px) {
  #privacy .text {
    padding: 0 2vw;
  }
  #privacy .text p {
    font-size: 1.12em;
  }
  #privacy ul li {
    font-size: 1.12em;
  }
}

/* ------------------------------------
                FOOTER
--------------------------------------*/
#footer {
  margin-top: 8em;
  color: #c8a16c;
  font-family: "Noto Sans TC", sans-serif;
}

#footer a:hover {
  opacity: 1;
  color: #fff;
}

#footer img {
  margin: auto;
}

#footer .info {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 2.5em;
}

#footer .info .footer-logo {
  max-width: 50%;
  width: 220px;
  margin-bottom: 0.5em;
}

#footer .info ul li {
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 0 20px;
  border-right: 2px solid #fff;
}

#footer .info ul li:last-child {
  border-right: 0;
}

#footer .info:before {
  content: '';
  position: absolute;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, #202020), color-stop(40%, transparent));
  background: linear-gradient(to right, #202020 40%, transparent 40%);
  background-size: 12px 100%;
  width: 100%;
  height: 30px;
  top: 50px;
  left: 0;
}

#footer .info p {
  margin: 0.5em 0;
}

#footer .info .footer-time {
  max-width: 600px;
  margin: 3em auto 0;
}

#footer .info .footer-time dl {
  margin: 0.5em auto;
  max-width: 400px;
  line-height: 1;
}

#footer .info .footer-time dl dt {
  width: 40%;
  text-align: right;
  padding-right: 2%;
  border-right: 2px solid #fff;
}

#footer .info .footer-time dl dd {
  width: 58%;
  text-align: left;
  margin: 0;
}

#footer .info .footer-time p {
  line-height: 1.5;
}

#footer .info .footer-time .border {
  margin: 2em auto 0;
  border: 1px solid #c8a16c;
}

#footer .social-link {
  padding: 3.75em 0;
}

#footer .social-link ul {
  gap: 3em;
}

#footer .social-link ul a {
  display: block;
  width: 3em;
  height: 3em;
}

#footer .social-link ul a:hover {
  opacity: 1;
}

#footer .social-link ul a:hover svg path,
#footer .social-link ul a:hover svg circle {
  fill: #fff;
}

#footer .social-link ul a svg {
  width: 100%;
  height: 100%;
}

#footer .social-link ul a svg path,
#footer .social-link ul a svg circle {
  fill: #c8a16c;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#footer .copyright {
  font-size: 12px;
  padding: 1em 0;
  gap: 2em;
}

#footer .copyright p {
  font-size: 13.5px;
}

@media screen and (max-width: 1300px) {
  #footer .map img {
    width: 70%;
  }
  #footer .info .footer-logo {
    width: 155px;
  }
  #footer .info:before {
    top: 30px;
  }
}

@media screen and (max-width: 1024px) {
  #footer {
    margin-top: 3em;
  }
}

@media screen and (max-width: 768px) {
  #footer {
    margin-top: 6vw;
  }
  #footer .map img {
    width: 308px;
  }
  #footer .info .footer-logo {
    width: 150px;
  }
  #footer .info:before {
    background-size: 6px 100%;
    height: 15px;
    top: 6vw;
  }
  #footer .info ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #footer .info ul li {
    font-size: 16px;
    line-height: 1.5;
    border-right: none;
  }
  #footer .info p {
    font-size: 14px;
    margin: 2vw 0;
  }
  #footer .info .footer-time {
    margin: 4em auto 0;
  }
  #footer .info .footer-time dl dt {
    border-right: 1px solid #fff;
  }
  #footer .info .footer-time .border {
    margin: 1em auto 0;
  }
  #footer .social-link {
    padding: 12vw 0 5vw;
  }
  #footer .social-link ul {
    gap: 7vw;
  }
  #footer .social-link ul a {
    width: 7vw;
    height: 7vw;
  }
  #footer .copyright {
    font-size: 12px;
    padding: 2vw 0;
    gap: 2vw;
  }
}
