@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/*===================================
	global layout
=====================================*/
html,
body {
  width: 100%;
}

body {
  margin: 0;
  font-family: "Ryumin Light KL", serif;
  background-color: #f2f2f2;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  animation: fade-in 1100ms cubic-bezier(0.25, 0.1, 0.25, 1) 100ms both;
}

@media screen and (min-width: 751px) {
  body {
    min-width: 1220px;
  }
}

main {
  display: block;
}

.floating-banner {
  position: fixed;
  z-index: 10;
  bottom: 0;
}

@media screen and (min-width: 751px) {
  .floating-banner {
    right: 20px;
    bottom: 30px;
    width: 350px;
  }
}

@media screen and (max-width: 750px) {
  .floating-banner {
    left: 50%;
    bottom: 3.8461538462vw;
    width: 76.9230769231vw;
    transform: translateX(-50%);
  }
}

.floating-banner > .wrap {
  background-color: #fff;
  border: 1px solid #222;
}

.floating-banner .conts {
  position: relative;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 751px) {
  .floating-banner .conts {
    padding: 10px 15px;
    gap: 20px;
  }
}

@media screen and (max-width: 750px) {
  .floating-banner .conts {
    padding: 2.5641025641vw 3.8461538462vw;
    gap: 5.1282051282vw;
  }
}

.floating-banner .section-ttl {
  writing-mode: vertical-rl;
  display: inline-block;
  border: 1px solid #222;
}

@media screen and (min-width: 751px) {
  .floating-banner .section-ttl {
    padding: .75em .5em .5em;
    font-size: 11px;
    letter-spacing: 0.3em;
  }
}

@media screen and (max-width: 750px) {
  .floating-banner .section-ttl {
    padding: .75em .5em .5em;
    font-size: 2.5641025641vw;
    letter-spacing: 0.3em;
  }
}

.floating-banner .txt .cat {
  letter-spacing: 0.06em;
}

@media screen and (min-width: 751px) {
  .floating-banner .txt .cat {
    margin-bottom: 10px;
    font-size: 11px;
  }
}

@media screen and (max-width: 750px) {
  .floating-banner .txt .cat {
    margin-bottom: 2.5641025641vw;
    font-size: 2.5641025641vw;
  }
}

.floating-banner .txt .ttl {
  letter-spacing: 0.06em;
  line-height: 142.857142857%;
}

@media screen and (min-width: 751px) {
  .floating-banner .txt .ttl {
    margin-bottom: 10px;
    font-size: 14px;
  }
}

@media screen and (max-width: 750px) {
  .floating-banner .txt .ttl {
    margin-bottom: 2.5641025641vw;
    font-size: 3.0769230769vw;
  }
}

.floating-banner .txt .caption {
  letter-spacing: 0.06em;
}

@media screen and (min-width: 751px) {
  .floating-banner .txt .caption {
    font-size: 10px;
  }
}

@media screen and (max-width: 750px) {
  .floating-banner .txt .caption {
    font-size: 2.5641025641vw;
  }
}

.floating-banner .close-btn {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  cursor: pointer;
  transition: all 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.floating-banner .close-btn > span {
  position: relative;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
}

.floating-banner .close-btn > span::before, .floating-banner .close-btn > span::after {
  position: absolute;
  top: 15px;
  right: 10px;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #000;
}

.floating-banner .close-btn > span::before {
  transform: rotate(45deg);
}

.floating-banner .close-btn > span::after {
  transform: rotate(-45deg);
}

.floating-banner.hide {
  opacity: 0;
  visibility: hidden;
}

body.floating-hide .floating-banner {
  opacity: 0;
  visibility: hidden;
}

/*===================================
	頁首
=====================================*/
/*　　　global header
-------------------------------------*/
.global-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  transition: all 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media screen and (min-width: 751px) {
  .global-header {
    padding: 15px 40px;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
  }
}

@media screen and (max-width: 750px) {
  .global-header {
    padding: 3.8461538462vw 5.1282051282vw;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
  }
}

.global-header .logo-wrap {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 751px) {
  .global-header .logo {
    width: 145px;
  }
}

@media screen and (max-width: 750px) {
  .global-header .logo {
    width: 25.8974358974vw;
  }
}

.global-header .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (min-width: 751px) {
  .global-header .nav-wrap {
    margin-right: 80px;
    padding: 10px 0;
  }
}

@media screen and (max-width: 750px) {
  .global-header .nav-wrap {
    margin-right: 14.1025641026vw;
    padding: 5px 0;
  }
}

@media screen and (min-width: 751px) {
  .global-header .nav-wrap .nav-item {
    margin-left: 20px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }
}

@media screen and (max-width: 750px) {
  .global-header .nav-wrap .nav-item {
    font-size: 3.0769230769vw;
  }
}

.global-header .nav-wrap .nav-item .icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.global-header .nav-wrap .nav-item .icon-instagram {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210.865%22%20height%3D%2210.865%22%20viewBox%3D%220%200%2010.865%2010.865%22%3E%20%3Cpath%20id%3D%22iconmonstr-instagram-11%22%20d%3D%22M5.433.979c1.451%2C0%2C1.623.005%2C2.2.032A2.041%2C2.041%2C0%2C0%2C1%2C9.855%2C3.238c.026.573.031.745.031%2C2.2s-.005%2C1.623-.031%2C2.2A2.041%2C2.041%2C0%2C0%2C1%2C7.628%2C9.855c-.573.026-.744.032-2.2.032s-1.623-.005-2.2-.032A2.042%2C2.042%2C0%2C0%2C1%2C1.01%2C7.628c-.026-.573-.032-.744-.032-2.2s.006-1.622.032-2.2A2.041%2C2.041%2C0%2C0%2C1%2C3.237%2C1.01c.573-.026.745-.031%2C2.2-.031Zm0-.979c-1.475%2C0-1.66.006-2.24.033a3%2C3%2C0%2C0%2C0-3.16%2C3.16C.006%2C3.773%2C0%2C3.957%2C0%2C5.433s.006%2C1.661.033%2C2.24a3%2C3%2C0%2C0%2C0%2C3.16%2C3.16c.58.026.765.033%2C2.24.033s1.661-.006%2C2.24-.033a3%2C3%2C0%2C0%2C0%2C3.16-3.16c.027-.579.033-.765.033-2.24s-.006-1.66-.033-2.24A3%2C3%2C0%2C0%2C0%2C7.673.033C7.093.006%2C6.908%2C0%2C5.433%2C0Zm0%2C2.643a2.79%2C2.79%2C0%2C1%2C0%2C2.79%2C2.79A2.79%2C2.79%2C0%2C0%2C0%2C5.433%2C2.643Zm0%2C4.6A1.811%2C1.811%2C0%2C1%2C1%2C7.243%2C5.433%2C1.811%2C1.811%2C0%2C0%2C1%2C5.433%2C7.243Zm2.9-5.362a.652.652%2C0%2C1%2C0%2C.651.652A.652.652%2C0%2C0%2C0%2C8.333%2C1.881Z%22%20transform%3D%22translate(0)%22%20fill%3D%22%23222%22%2F%3E%3C%2Fsvg%3E");
}

.global-header.scrolled {
  opacity: 0;
}

.global-header.fixed {
  position: fixed;
  opacity: 1;
}

.page-header {
  font-family: "Ryumin Regular KL", serif;
  text-align: center;
}

@media screen and (min-width: 751px) {
  .page-header {
    padding: 175px 0 80px;
  }
}

@media screen and (max-width: 750px) {
  .page-header {
    padding: 25.641025641vw 0;
  }
}

.page-header .ttl {
  color: #222;
  writing-mode: vertical-rl;
  display: inline-block;
}

@media screen and (min-width: 751px) {
  .page-header .ttl {
    font-size: 25px;
    letter-spacing: 0.3em;
  }
}

@media screen and (max-width: 750px) {
  .page-header .ttl {
    font-size: 6.4102564103vw;
    letter-spacing: 0.3em;
  }
}

/*===================================
	頁尾
=====================================*/
/*　　　global footer
-------------------------------------*/
.global-footer {
  position: relative;
  background-color: #000;
}

@media screen and (min-width: 751px) {
  .global-footer {
    padding: 80px 0;
  }
}

@media screen and (max-width: 750px) {
  .global-footer {
    padding: 16.6666666667vw 0 12.8205128205vw;
  }
}

.global-footer .wrap {
  box-sizing: border-box;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (min-width: 751px) {
  .global-footer .wrap {
    max-width: 1020px;
  }
}

@media screen and (max-width: 750px) {
  .global-footer .wrap {
    padding: 0 5.1282051282vw;
  }
}

.global-footer .nav-wrap {
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 751px) {
  .global-footer .nav-wrap {
    flex-direction: row-reverse;
  }
}

@media screen and (max-width: 750px) {
  .global-footer .nav-wrap {
    padding: 0 8.9743589744vw;
  }
}

@media screen and (min-width: 751px) {
  .global-footer .nav-wrap .logo {
    width: 48px;
  }
}

@media screen and (max-width: 750px) {
  .global-footer .nav-wrap .logo {
    margin-right: 15.3846153846vw;
    width: 7.6923076923vw;
  }
}

.global-footer .nav-wrap .navs {
  flex: 1 1 0;
}

.global-footer .nav-wrap .nav {
  font-family: "Ryumin Regular KL", serif;
  color: #fff;
}

.global-footer .nav-wrap .nav > .item {
  margin-bottom: 2em;
}

@media screen and (min-width: 751px) {
  .global-footer .nav-wrap .nav > .item {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 177.777777778%;
  }
}

@media screen and (max-width: 750px) {
  .global-footer .nav-wrap .nav > .item {
    font-size: 4.1025641026vw;
    letter-spacing: 0.06em;
    line-height: 200%;
  }
}

@media screen and (min-width: 751px) {
  .global-footer .nav-wrap .child-nav {
    padding: 20px 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
    max-width: 700px;
  }
}

@media screen and (min-width: 751px) {
  .global-footer .nav-wrap .shop-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0 40px;
    max-width: 700px;
  }
}

@media screen and (min-width: 751px) {
  .spmenu .nav-wrap .shop-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0 40px;
    max-width: 700px;
  }
}

@media screen and (max-width: 750px) {
  .global-footer .nav-wrap .child-nav {
    padding: 5.1282051282vw 0 0 5.1282051282vw;
  }
}

@media screen and (max-width: 750px) {
  .global-footer .nav-wrap .shop-nav {
    display: block;
  }
}

@media screen and (max-width: 750px) {
  .global-footer .nav-wrap .shop-nav > .item  {
    margin-bottom: 2em;
  }
}

@media screen and (max-width: 750px) {
  .spmenu .nav-wrap .shop-nav {
    display: block;
  }
}

@media screen and (max-width: 750px) {
  .spmenu .nav-wrap .shop-nav > .item {
    margin-bottom: 2em;
  }
}

@media screen and (min-width: 751px) {
  .global-footer .nav-wrap .child-nav > .item {
    margin-right: 70px;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 106.25%;
  }
}

@media screen and (max-width: 750px) {
  .global-footer .nav-wrap .child-nav > .item {
    margin-bottom: 2em;
    font-size: 3.0769230769vw;
    letter-spacing: 0.06em;
    line-height: 141.666666667%;
  }
}

.global-footer .nav-wrap .child-nav > .item::before {
  margin-right: .5em;
  content: "-";
}

.global-footer .nav-wrap .sub-nav {
  color: #fff;
  font-family: "Ryumin Regular KL", serif;
}

@media screen and (max-width: 750px) {
  .global-footer .nav-wrap .sub-nav {
    margin-bottom: 20.5128205128vw;
  }
}

@media screen and (min-width: 751px) {
  .global-footer .nav-wrap .sub-nav {
    margin-bottom: 40px;
  }
}

.global-footer .nav-wrap .sub-nav > .item {
  margin-bottom: 1.5em;
}

@media screen and (min-width: 751px) {
  .global-footer .nav-wrap .sub-nav > .item {
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 228.571428571%;
  }
}

@media screen and (max-width: 750px) {
  .global-footer .nav-wrap .sub-nav > .item {
    font-size: 3.5897435897vw;
    letter-spacing: 0.06em;
    line-height: 228.571428571%;
  }
}

.global-footer .nav-wrap .sub-nav .icon {
  margin-right: .35em;
  display: inline-block;
  width: .75em;
  height: .75em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.global-footer .nav-wrap .sub-nav .icon-instagram {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210.865%22%20height%3D%2210.865%22%20viewBox%3D%220%200%2010.865%2010.865%22%3E%20%3Cpath%20id%3D%22iconmonstr-instagram-11%22%20d%3D%22M5.433.979c1.451%2C0%2C1.623.005%2C2.2.032A2.041%2C2.041%2C0%2C0%2C1%2C9.855%2C3.238c.026.573.031.745.031%2C2.2s-.005%2C1.623-.031%2C2.2A2.041%2C2.041%2C0%2C0%2C1%2C7.628%2C9.855c-.573.026-.744.032-2.2.032s-1.623-.005-2.2-.032A2.042%2C2.042%2C0%2C0%2C1%2C1.01%2C7.628c-.026-.573-.032-.744-.032-2.2s.006-1.622.032-2.2A2.041%2C2.041%2C0%2C0%2C1%2C3.237%2C1.01c.573-.026.745-.031%2C2.2-.031Zm0-.979c-1.475%2C0-1.66.006-2.24.033a3%2C3%2C0%2C0%2C0-3.16%2C3.16C.006%2C3.773%2C0%2C3.957%2C0%2C5.433s.006%2C1.661.033%2C2.24a3%2C3%2C0%2C0%2C0%2C3.16%2C3.16c.58.026.765.033%2C2.24.033s1.661-.006%2C2.24-.033a3%2C3%2C0%2C0%2C0%2C3.16-3.16c.027-.579.033-.765.033-2.24s-.006-1.66-.033-2.24A3%2C3%2C0%2C0%2C0%2C7.673.033C7.093.006%2C6.908%2C0%2C5.433%2C0Zm0%2C2.643a2.79%2C2.79%2C0%2C1%2C0%2C2.79%2C2.79A2.79%2C2.79%2C0%2C0%2C0%2C5.433%2C2.643Zm0%2C4.6A1.811%2C1.811%2C0%2C1%2C1%2C7.243%2C5.433%2C1.811%2C1.811%2C0%2C0%2C1%2C5.433%2C7.243Zm2.9-5.362a.652.652%2C0%2C1%2C0%2C.651.652A.652.652%2C0%2C0%2C0%2C8.333%2C1.881Z%22%20transform%3D%22translate(0)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
}

@media screen and (min-width: 751px) {
  .global-footer .global-nav-wrap {
    display: flex;
    justify-content: space-between;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
}

@media screen and (max-width: 750px) {
  .global-footer .global-nav-wrap {
    padding: 0 3.8461538462vw;
  }
}

.global-footer .global-nav-wrap .nav {
  display: flex;
  flex-wrap: wrap;
  font-family: "Ryumin Regular KL", serif;
  color: #fff;
}

@media screen and (min-width: 751px) {
  .global-footer .global-nav-wrap .nav > .item {
    margin-right: 30px;
    font-size: 11px;
    letter-spacing: 0.06em;
    line-height: 154.545454545%;
  }
}

@media screen and (max-width: 750px) {
  .global-footer .global-nav-wrap .nav > .item {
    margin: 0 6.4102564103vw 7.6923076923vw 0;
    font-size: 2.8205128205vw;
    letter-spacing: 0.06em;
    line-height: 154.545454545%;
  }
}

.global-footer .global-nav-wrap .copyright {
  color: #fff;
}

@media screen and (min-width: 751px) {
  .global-footer .global-nav-wrap .copyright {
    font-size: 10px;
    letter-spacing: 0.1em;
    line-height: 150%;
  }
}

@media screen and (max-width: 750px) {
  .global-footer .global-nav-wrap .copyright {
    font-size: 2.0512820513vw;
    letter-spacing: 0.04em;
    line-height: 187.5%;
  }
}

/*===================================
	通用組件
=====================================*/
/*　　　global
-------------------------------------*/
* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: all 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  margin: 0 auto;
}

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

.cf::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 750px) {
  .is-pc {
    display: none !important;
  }
}

@media screen and (min-width: 751px) {
  .is-sp {
    display: none !important;
  }
}

.font-en {
  font-family: "Libre Baskerville", serif;
}

.text-mixed {
  text-orientation: mixed;
}

.text-upright {
  text-orientation: upright;
}

.text-sideways {
  text-orientation: sideways;
}

/*　最大寬度設定　*/
[data-viewport="sm"] {
  box-sizing: border-box;
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 750px) {
  [data-viewport="sm"] {
    padding: 0 5%;
  }
}

[data-viewport="md"] {
  box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 999px) {
  [data-viewport="md"] {
    padding: 0 5%;
  }
}

[data-viewport="lg"] {
  box-sizing: border-box;
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 1219px) {
  [data-viewport="lg"] {
    padding: 0 5%;
  }
}

/*===================================
	手機選單
=====================================*/
/*　　　sp btn
-------------------------------------*/
.spmenu-opener {
  transition: all 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media screen and (min-width: 751px) {
  .spmenu-opener {
    position: absolute;
    z-index: 2100;
    padding: 20px 40px 0 0;
    top: 0;
    right: 0;
  }
}

@media screen and (max-width: 750px) {
  .spmenu-opener {
    margin-left: 5.1282051282vw;
    position: absolute;
    z-index: 2100;
    padding: 3.8461538462vw 5.1282051282vw;
    top: 0;
    right: 0;
  }
}

.spmenu-opener .hamburger {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 34px;
  height: 23px;
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .spmenu-opener .hamburger {
    width: 8.7179487179vw;
    height: 5.3846153846vw;
  }
}

.spmenu-opener .hamburger.is-open .hamburger-item:nth-child(1) {
  background-color: #222222;
  transform: translateY(0px) rotate(45deg);
}

.spmenu-opener .hamburger.is-open .hamburger-item:nth-child(2) {
  transform: translateX(11.3333333333px);
  opacity: 0;
}

.spmenu-opener .hamburger.is-open .hamburger-item:nth-child(3) {
  background-color: #222222;
  transform: translateY(0px) rotate(-45deg);
}

.spmenu-opener .hamburger-item {
  position: absolute;
  display: block;
  width: 34px;
  height: 1px;
  top: 11px;
  left: 0;
  right: 0;
  margin: auto;
  transition: .2s ease-out;
}

@media screen and (max-width: 750px) {
  .spmenu-opener .hamburger-item {
    width: 8.7179487179vw;
    height: 1px;
    top: 11px;
  }
}

.spmenu-opener .hamburger-item:nth-child(1) {
  background-color: #222222;
  transform: translateY(-10px);
}

.spmenu-opener .hamburger-item:nth-child(2) {
  background-color: #222222;
}

.spmenu-opener .hamburger-item:nth-child(3) {
  background-color: #222222;
  transform: translateY(10px);
}

.spmenu-opener.scrolled {
  opacity: 0;
}

.spmenu-opener.fixed {
  position: fixed;
  opacity: 1;
}

.sp-menu-open .spmenu-opener {
  position: fixed;
  opacity: 1;
}

/*　　　sp menu
-------------------------------------*/
.spmenu {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100vw;
  height: 100%;
  overflow-y: scroll;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.spmenu.is-open {
  visibility: visible;
  z-index: 2000;
  opacity: 1;
}

.spmenu.is-open .wrap {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 751px) {
  .spmenu {
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 750px) {
  .spmenu {
    padding: 15.3846153846vw 0;
  }
}

.spmenu .wrap {
  box-sizing: border-box;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-width: 751px) {
  .spmenu .wrap {
    max-width: 1020px;
  }
}

@media screen and (max-width: 750px) {
  .spmenu .wrap {
    padding: 0 5.1282051282vw;
  }
}

.spmenu .nav-wrap {
  display: flex;
}

@media screen and (max-width: 750px) {
  .spmenu .nav-wrap {
    padding: 0 3.8461538462vw;
  }
}

@media screen and (min-width: 751px) {
  .spmenu .nav-wrap .logo {
    margin-right: 120px;
    width: 53px;
  }
}

@media screen and (max-width: 750px) {
  .spmenu .nav-wrap .logo {
    margin-right: 11.5384615385vw;
    width: 10.2564102564vw;
  }
}

.spmenu .nav-wrap .navs {
  flex: 1 1 0;
}

.spmenu .nav-wrap .nav {
  font-family: "Ryumin Regular KL", serif;
}

.spmenu .nav-wrap .nav > .item {
  margin-bottom: 2em;
}

@media screen and (min-width: 751px) {
  .spmenu .nav-wrap .nav > .item {
    font-size: 20px;
    letter-spacing: 0.06em;
    line-height: 160%;
  }
}

@media screen and (max-width: 750px) {
  .spmenu .nav-wrap .nav > .item {
    font-size: 5.1282051282vw;
    letter-spacing: 0.06em;
    line-height: 160%;
  }
}

@media screen and (min-width: 751px) {
  .spmenu .nav-wrap .child-nav {
    padding: 30px 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
    max-width: 700px;
  }
}

@media screen and (max-width: 750px) {
  .spmenu .nav-wrap .child-nav {
    padding: 7.6923076923vw 0 0 5.1282051282vw;
  }
}

@media screen and (min-width: 751px) {
  .spmenu .nav-wrap .child-nav > .item {
    margin-right: 70px;
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 106.25%;
  }
}

@media screen and (max-width: 750px) {
  .spmenu .nav-wrap .child-nav > .item {
    margin-bottom: 2em;
    font-size: 3.5897435897vw;
    letter-spacing: 0.06em;
    line-height: 121.428571429%;
  }
}

.spmenu .nav-wrap .child-nav > .item::before {
  margin-right: .5em;
  content: "-";
}

.spmenu .sub-nav {
  font-family: "Ryumin Regular KL", serif;
}

.spmenu .sub-nav > .item {
  margin-bottom: 2em;
}

@media screen and (min-width: 751px) {
  .spmenu .sub-nav > .item {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 200%;
  }
}

@media screen and (max-width: 750px) {
  .spmenu .sub-nav > .item {
    font-size: 4.1025641026vw;
    letter-spacing: 0.06em;
    line-height: 200%;
  }
}

.spmenu .sub-nav .icon {
  margin-right: .35em;
  display: inline-block;
  width: .75em;
  height: .75em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.spmenu .sub-nav .icon-instagram {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210.865%22%20height%3D%2210.865%22%20viewBox%3D%220%200%2010.865%2010.865%22%3E%20%3Cpath%20id%3D%22iconmonstr-instagram-11%22%20d%3D%22M5.433.979c1.451%2C0%2C1.623.005%2C2.2.032A2.041%2C2.041%2C0%2C0%2C1%2C9.855%2C3.238c.026.573.031.745.031%2C2.2s-.005%2C1.623-.031%2C2.2A2.041%2C2.041%2C0%2C0%2C1%2C7.628%2C9.855c-.573.026-.744.032-2.2.032s-1.623-.005-2.2-.032A2.042%2C2.042%2C0%2C0%2C1%2C1.01%2C7.628c-.026-.573-.032-.744-.032-2.2s.006-1.622.032-2.2A2.041%2C2.041%2C0%2C0%2C1%2C3.237%2C1.01c.573-.026.745-.031%2C2.2-.031Zm0-.979c-1.475%2C0-1.66.006-2.24.033a3%2C3%2C0%2C0%2C0-3.16%2C3.16C.006%2C3.773%2C0%2C3.957%2C0%2C5.433s.006%2C1.661.033%2C2.24a3%2C3%2C0%2C0%2C0%2C3.16%2C3.16c.58.026.765.033%2C2.24.033s1.661-.006%2C2.24-.033a3%2C3%2C0%2C0%2C0%2C3.16-3.16c.027-.579.033-.765.033-2.24s-.006-1.66-.033-2.24A3%2C3%2C0%2C0%2C0%2C7.673.033C7.093.006%2C6.908%2C0%2C5.433%2C0Zm0%2C2.643a2.79%2C2.79%2C0%2C1%2C0%2C2.79%2C2.79A2.79%2C2.79%2C0%2C0%2C0%2C5.433%2C2.643Zm0%2C4.6A1.811%2C1.811%2C0%2C1%2C1%2C7.243%2C5.433%2C1.811%2C1.811%2C0%2C0%2C1%2C5.433%2C7.243Zm2.9-5.362a.652.652%2C0%2C1%2C0%2C.651.652A.652.652%2C0%2C0%2C0%2C8.333%2C1.881Z%22%20transform%3D%22translate(0)%22%20fill%3D%22%23222%22%2F%3E%3C%2Fsvg%3E");
}

.spmenu .global-nav {
  font-family: "Ryumin Regular KL", serif;
  border-top: 1px solid rgba(34, 34, 34, 0.1);
}

@media screen and (min-width: 751px) {
  .spmenu .global-nav {
    display: flex;
    flex-wrap: wrap;
    padding-top: 36px;
  }
}

@media screen and (max-width: 750px) {
  .spmenu .global-nav {
    padding-top: 12.8205128205vw;
  }
}

@media screen and (min-width: 751px) {
  .spmenu .global-nav > .item {
    margin-right: 30px;
    font-size: 11px;
    letter-spacing: 0.06em;
    line-height: 154.545454545%;
  }
}

@media screen and (max-width: 750px) {
  .spmenu .global-nav > .item {
    margin: 0 0 7.6923076923vw 0;
    font-size: 2.8205128205vw;
    letter-spacing: 0.06em;
    line-height: 154.545454545%;
  }
}

/*===================================
	連結、按鈕
=====================================*/
/*　　　link
-------------------------------------*/
.c-link-more {
  color: #222;
}

@media screen and (min-width: 751px) {
  .c-link-more {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 178.571428571%;
  }
}

@media screen and (max-width: 750px) {
  .c-link-more {
    font-size: 3.5897435897vw;
    letter-spacing: 0.1em;
    line-height: 178.571428571%;
  }
}

.c-link-more > a {
  position: relative;
  cursor: pointer;
  padding-bottom: .75em;
}

.c-link-more > a::before {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #222;
  bottom: 0;
}

.c-link-more > a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #f2f2f2;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

.c-link-more > a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

.c-button-more {
  color: #222;
}

@media screen and (min-width: 751px) {
  .c-button-more {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 178.571428571%;
  }
}

@media screen and (max-width: 750px) {
  .c-button-more {
    font-size: 3.5897435897vw;
    letter-spacing: 0.1em;
    line-height: 178.571428571%;
  }
}

.c-button-more > a {
  padding: 1em 3em;
  display: inline-block;
  border: 1px solid #222;
  text-align: center;
}

.c-button-more > a:hover {
  color: #fff;
  background-color: #222;
}

.c-button-more.inverse {
  color: #fff;
}

.c-button-more.inverse > a {
  border: 1px solid #707070;
}

.c-button-more.inverse > a:hover {
  color: #222;
  background-color: #fff;
}

/*===================================
	動畫
  https://animista.net/
=====================================*/
/**
 * ----------------------------------------
 * animation screen-in
 * ----------------------------------------
 */
@keyframes screen-in {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  30% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@keyframes fade-in {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  30% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

/**
 * ----------------------------------------
 * animation fade-out
 * ----------------------------------------
 */
@keyframes fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-out
 * ----------------------------------------
 */
@keyframes fade-in-out {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  30% {
    opacity: 1;
    visibility: visible;
  }
  80% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/*
由右至左
----------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/**
 * ----------------------------------------
 * 通用 class
 * ----------------------------------------
 */
.screen-in {
  opacity: 0;
  animation: fade-in 1500ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms both;
}

[data-scroll] {
  transition: opacity 1s;
}

[data-scroll="in"] {
  opacity: 1;
}

[data-scroll="out"] {
  opacity: 0;
}

/**
 * ----------------------------------------
 * slick slider 用
 * ----------------------------------------
 */
.slick-slider {
  opacity: 0;
  transition: all 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.slick-slider.slick-initialized {
  opacity: 1;
}
