body {
  font-family: "Noto Serif TC", serif;
  -webkit-text-size-adjust: 100%;
  background-color: var(--color03);
}

.page-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 0;
  clear: both;
  width: 100%;
  justify-content: center;
}
.page-container.mask-on:before {
  content: "";
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 8;
}

header, footer {
  position: relative;
  width: 100%;
}

.wrap {
  position: relative;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.wrap-inner {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 1400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/*==========================================
Header
==========================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: 0.4s;
}
header.sticky {
  background-color: var(--color03);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}
header.sticky #header-menu {
  margin-top: 0;
  box-shadow: none;
  border-radius: 0;
}
header .wrap-inner {
  padding: 0 16px;
}

#header-menu {
  margin-top: 48px;
  width: 100%;
  padding: 0 24px;
  background-color: var(--color03);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}
#header-menu .main-logo {
  width: 200px;
}
#header-menu nav {
  display: flex;
  flex-direction: row;
}
#header-menu nav div {
  padding: 0 24px;
  border-right: 1px solid var(--color01);
}
#header-menu nav div a {
  font-size: 18px;
  line-height: 24px;
  color: var(--color01);
  transition: 0.2s;
}
#header-menu nav div a:hover {
  color: var(--color02);
}
#header-menu nav div:nth-last-of-type(1) {
  border: 0;
}

#header-anchor {
  position: absolute;
  top: 10vh;
  left: 0;
}

/*==========================================
Common
==========================================*/
#home-video {
  position: relative;
  width: 100%;
  height: 100vh;
}
#home-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#home-video #btn-arrow-down {
  position: absolute;
  bottom: 40px;
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  font-size: 14px;
  color: var(--color01);
  display: block;
  text-align: center;
}
#home-video #btn-arrow-down span {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
}

.home-section {
  width: 100%;
  height: 56.25vw;
}

#home-about-1 {
  padding: 10vw;
  position: relative;
  background-color: var(--color03);
  display: flex;
  justify-content: center;
  align-items: center;
}
#home-about-1:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/border.png") no-repeat;
  background-size: contain;
}
#home-about-1 .text {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: flex-end;
}
#home-about-1 .text #about-title, #home-about-1 .text #about-intro {
  width: 50%;
}
#home-about-1 .text #about-intro {
  text-align: left;
}
#home-about-1 .text h1 {
  font-size: clamp(100px, 12vw, 230px);
  line-height: clamp(140px, 16vw, 300px);
  writing-mode: vertical-rl;
  margin: 0 auto;
  font-weight: 600;
  color: var(--color01);
}
#home-about-1 .text h2 {
  font-size: clamp(24px, 2.2vw, 40px);
  line-height: clamp(32px, 2.4vw, 48px);
  color: var(--color01);
  font-weight: 600;
  margin-bottom: 2vw;
}
#home-about-1 .text p {
  font-size: clamp(18px, 1.2vw, 24px);
  line-height: clamp(24px, 1.8vw, 36px);
  margin-bottom: 24px;
  color: var(--color01);
}
#home-about-1 .text .about-animate {
  position: relative;
  opacity: 0;
  transition: 0.4s;
  top: 5vh;
}
#home-about-1 .text .about-animate.animated {
  top: 0;
  opacity: 1;
}
#home-about-1 .photo {
  width: 64vw;
  max-width: 1100px;
  margin-top: 40px;
  transform: scale(0.1);
  border-radius: 8px;
}

#home-about-2 {
  position: relative;
  padding: 14vw 4% 0 4%;
  background-color: var(--color03);
  background-image: url("../images/pattern01.png");
  background-position: top;
  background-size: auto 14vw;
  background-repeat: repeat-x;
  display: flex;
  flex-direction: row;
  gap: 80px;
}

#about-left {
  width: 60%;
}
#about-left img {
  width: 100%;
}

#about-right {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#about-text p {
  font-size: clamp(18px, 1.2vw, 24px);
  line-height: clamp(24px, 1.8vw, 36px);
  color: var(--color01);
}

#home-cafe-1 {
  padding: 0;
  position: relative;
  background-image: url("../images/bg01.jpg");
  background-size: cover;
  background-position: right 50% bottom;
  background-repeat: no-repeat;
}

#home-cafe-2 {
  padding: 0 4%;
  position: relative;
  background-image: url("../images/bg02.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#cafe-box {
  height: calc(100% - 4.1666666667vw);
  margin: 2.0833333333vw 0;
  background-color: var(--color03);
  width: 20.8333333333vw;
  overflow: hidden;
}
#cafe-box .slider-container {
  height: calc(100% - 6.25vw);
  position: relative;
}
#cafe-box h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(16px, 2vw, 36px);
  padding: 16px 0 0 0;
  margin: 0;
}
#cafe-box .swiper-pagination {
  top: auto;
  right: auto;
  left: 50%;
  bottom: -40px;
  transform: rotate(90deg);
  z-index: 2;
}
#cafe-box .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  width: 12px;
  height: 12px;
}
#cafe-box .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

#cafe-slider {
  height: 100%;
  overflow: hidden;
}
#cafe-slider .swiper-slide {
  padding: 16px;
  overflow: hidden;
}

#brand-slider-control {
  position: absolute;
  background-color: #fff;
  padding: 8px 16px;
  border-radius: 16px;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
}
#brand-slider-control .swiper-pagination {
  position: relative;
  display: flex;
}
#brand-slider-control .swiper-pagination-bullet {
  margin: 0 2px;
  width: 10px;
  height: 10px;
  vertical-align: middle;
}
#brand-slider-control .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color01);
}

#brand-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 64px;
}
#brand-row #brand-photo {
  position: relative;
  width: 800px;
}
#brand-row #brand-photo:before {
  position: absolute;
  content: "";
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: url("../images/deco02.svg");
  background-size: cover;
  z-index: 2;
  filter: contrast(100);
  opacity: 0.5;
}
#brand-row #brand-text {
  width: calc(100% - 800px - 64px);
}

#venue-text {
  width: 40%;
  position: absolute;
  bottom: 5vw;
  right: 15vw;
}
#venue-text p {
  font-size: clamp(18px, 1.2vw, 24px);
  line-height: clamp(24px, 1.8vw, 36px);
  margin-bottom: 0;
  color: var(--color01);
}

#about-slogan {
  font-size: 40px;
  line-height: 64px;
  color: var(--color01);
  text-align: center;
  margin: 80px 0 0 0;
  opacity: 0;
}

.deco01 {
  display: block;
  background: url("../images/deco01.svg") no-repeat center;
  background-size: 100%;
  width: 320px;
  height: 48px;
  margin: 0 auto 48px auto;
}

.color01 {
  color: var(--color01);
}

#home-brand-1 {
  padding: 14vw 0;
  position: relative;
  background-color: var(--color01);
}
#home-brand-1:before, #home-brand-1:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 14vw;
  background-image: url("../images/pattern03.png");
  background-size: auto 14vw;
  background-repeat: repeat-x;
}
#home-brand-1:before {
  top: 0;
}
#home-brand-1:after {
  bottom: 0;
  transform: scale(-1);
}
#home-brand-1 #brand-content img {
  width: 240px;
}

#home-brand-2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 4%;
  gap: 10vw;
  background-color: #fff;
}
#home-brand-2 > div {
  flex: 1;
}

#brand-left {
  text-align: center;
}
#brand-right {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#brand-right img {
  max-width: 320px;
  display: block;
  margin: 0 auto;
}
#brand-right p {
  color: #000;
  font-size: 18px;
  line-height: 30px;
}

#brand-content h2, #brand-content p {
  color: #000;
}
#brand-content p {
  font-size: 18px;
  line-height: 30px;
}

#venue-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#venue-slider .swiper-slide {
  width: 100%;
  height: 56.25vw;
  background-size: cover;
  background-position: center center;
}
#venue-slider .swiper-slide .venue-content {
  position: absolute;
  left: 0;
  bottom: 5%;
  width: 100%;
  height: 12.5vw;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 4%;
  background: url("../images/pattern02.png") repeat-x;
  background-size: auto 100%;
}
#venue-slider .swiper-slide .venue-text {
  width: 50%;
}
#venue-slider .swiper-slide .venue-text h3, #venue-slider .swiper-slide .venue-text p {
  color: #000;
}
#venue-slider .swiper-slide .venue-text p {
  font-size: 20px;
  line-height: 30px;
  margin: 0;
}
#venue-slider .swiper-slide .venue-text h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}
#venue-slider .swiper-pagination {
  bottom: calc(5% + 13.5416666667vw);
}
#venue-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
#venue-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}

#venue-marquee {
  --item-width:540px;
  --item-margin:0;
  --item-count:6;
  --marquee-speed:100s;
  position: relative;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  height: calc(var(--item-width) / 3 * 2);
}
#venue-marquee .content {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  overflow: hidden;
  width: calc((var(--item-width) + var(--item-margin) + var(--item-margin)) * var(--item-count) * 2);
}
#venue-marquee .item {
  width: var(--item-width);
  padding: 24px;
}
#venue-marquee .item img {
  border-radius: 8px;
}
#venue-marquee .track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee var(--marquee-speed) linear infinite;
}
#venue-marquee .track-d {
  position: absolute;
  left: calc(var(--item-width) * var(--item-count) * -1);
  white-space: nowrap;
  will-change: transform;
  animation: marquee var(--marquee-speed) linear infinite;
}

#imprint-row {
  position: relative;
  padding: 80px;
  text-align: center;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
#imprint-row #imprint-left {
  width: 60%;
  text-align: left;
}
#imprint-row #imprint-right {
  width: 45%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.deco03 {
  --deco-margin:16px;
}
.deco03:before, .deco03:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 110px;
  background: url("../images/deco03.svg");
}
.deco03.deco03-top:before {
  top: var(--deco-margin);
  left: var(--deco-margin);
  transform: scaleY(-1);
}
.deco03.deco03-top:after {
  top: var(--deco-margin);
  right: var(--deco-margin);
  transform: rotate(180deg);
}
.deco03.deco03-bottom:before {
  bottom: var(--deco-margin);
  left: var(--deco-margin);
}
.deco03.deco03-bottom:after {
  bottom: var(--deco-margin);
  right: var(--deco-margin);
  transform: scaleX(-1);
}

#imprint-logo {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  opacity: 1;
  transform: scale(0);
  filter: grayscale(1);
}

#home-contact {
  background-color: #fffff1;
  padding: 4.1666666667vw 0;
  width: 100%;
}

#contact-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 48px;
}
#contact-row h2 {
  margin-bottom: 0;
}
#contact-row #contact-left {
  width: 100%;
}
#contact-row #contact-right {
  width: 30%;
}
#contact-row #contact-photo {
  width: 100%;
  border-radius: 8px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
#contact-row iframe {
  width: 100%;
  height: 320px;
  border-radius: 8px;
}

#contact-logo {
  width: 330px;
}

.contact-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.contact-info li {
  width: 50%;
  display: flex;
  flex-direction: row;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 16px;
  align-items: center;
}
.contact-info li a {
  color: var(--color01);
  transition: 0.2s;
}
.contact-info li a:hover {
  color: #000;
}
.contact-info li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  font-size: 24px;
  margin-right: 16px;
  background-color: #fff;
  color: var(--color01);
  border-radius: 100%;
}
.contact-info li label {
  font-size: 18px;
  line-height: 24px;
  display: block;
  clear: both;
}

/*
.swiper-slide img {
    width:100%
}
.swiper-button-prev, .swiper-button-next {
    width:25px;
        height:25px;
        background:url('images/icons/sliderArrow.png')
}
.swiper-button-prev {
    background-position:top left;
    &:hover, &:focus {
        background-position:bottom left;
    }
}
.swiper-button-next {
    background-position:top right;
    &:hover, &:focus {
        background-position:bottom right;
    }
}
    .swiper-pagination {
        bottom:35px;
        .swiper-pagination-bullet {
            width:12px;
            height:12px;
            background-color:#fff;        
            border:1px solid #9e9e9e;
            opacity:1;
            &.swiper-pagination-bullet-active {
                background-color:#ccc;
            }
        }
    }
*/
/*
.paging-nav {
    margin-top: 25px;
    li {
        float: left;
        display: block;
        width: 26px;
        line-height: 26px;
        margin-right: 5px;
        text-align: center;
        font-size: 18px;
        color: #000;
        border-bottom:5px solid transparent;
        &:nth-last-child(1) {
            margin-right: 0;
        }
        a {
            display:block;
            color: #000;
            height:34px;
            line-height: 26px;
            &:hover, &:focus, &.selected {
                border-bottom:3px solid #ccc;
            }
        }
    }
    .paging-prev, .paging-next {
        width: 26px;
        height: 26px;
        background: url("../images/icons/btn_arrow03.png");
        border:0;
        padding:0;
    }
    .paging-prev {
        background-position: left top;
        &:hover, &:focus {
            background-position: left bottom;
        }
    }
    .paging-next {
        background-position: right top;
        &:hover, &:focus {
            background-position: right bottom;
        }
    }
}
*/
/*
#social-nav {
    li {
        float:left;            
        margin-right:10px;
        a {
            display:block;
            width:24px;
            height:24px;                
            background:url('../images/icons/btn_social.png');
            &:hover, &:focus {
                background-position-y:24px;
            }
            &.icon-fb {
                background-position-x:calc(100% / 1 * 0);
            }            
            &.icon-yt {
                background-position-x:calc(100% / 1 * 1);
            }
        }
    }
}
*/
/* mobile */
.mobile-icon {
  display: none;
  position: fixed;
  top: 10px;
  right: 8px;
  height: 36px;
  width: 36px;
  padding: 8px;
  border: 2px solid transparent;
  border-radius: 5px;
  z-index: 999;
}
.mobile-icon span {
  margin: 0 auto;
  display: block;
  width: 17px;
  height: 2px;
  background-color: var(--color01);
  margin-bottom: 5px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
.mobile-icon span:nth-last-of-type(1) {
  margin-bottom: 0;
}
.mobile-icon.opened {
  padding: 3px 8px;
}
.mobile-icon.opened span:nth-of-type(1) {
  transform: translate(0px, 13px) rotate(-45deg) scalex(1.3);
  -webkit-transform: translate(0px, 13px) rotate(-45deg) scalex(1.3);
  margin-bottom: 0;
}
.mobile-icon.opened span:nth-of-type(2) {
  display: none;
}
.mobile-icon.opened span:nth-last-of-type(1) {
  transform: translate(0px, 11px) rotate(45deg) scalex(1.3);
}

/*==========================================
Footer
==========================================*/
footer {
  background-color: #878787;
  padding: 8px 0;
}

.copyright {
  font-size: 13px;
  line-height: 18px;
  color: #fff;
  text-align: center;
  margin: 0;
}
.copyright a {
  color: #fff;
  text-decoration: none;
}

/*Top btn*/
#back-top {
  display: none;
  position: fixed;
  z-index: 9;
  bottom: 24px;
  right: 24px;
  text-align: center;
}
#back-top a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  color: var(--color01);
  font-size: 14px;
}
#back-top a span {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}

/*
#back-top {
  display: block;
  z-index: 999;
  a {
    display: inline-block;
    width: 46px;
    height: 46px;
    background: url('../images/icons/btn_top.png') no-repeat left top;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    &:hover, &:focus {
      background-position: left bottom;
    }
  }
}
*//*# sourceMappingURL=main.css.map */