/* =========================================================
RESET
========================================================= */
/* layout */
/*=================================
  initialization of style
===================================*/
body {
  margin: 0;
  padding: 0;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 150%;
  width: 100%;
  height: 100%;
  letter-spacing: 1px;
  word-break: break-all;
}

/* =========================================================
setup
========================================================= */
* {
  box-sizing: border-box;
  word-break: break-all;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

.main__cnt {
  overflow: hidden;
}

@media (max-width: 768px) {
  .pc-disp {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .sp-disp {
    display: none !important;
  }
}

@media (hover: hover) {
  .opacity-link {
    transition: opacity 0.2s ease;
  }
  .opacity-link:hover {
    opacity: 0.6;
  }
}
/*------------------------------------------
fade up
------------------------------------------*/
.fadeup {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}
.fadeup.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
layout
========================================================= */
@keyframes mvfade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 18px;
    opacity: 0;
  }
  30% {
    height: 25px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 73px;
    opacity: 0;
  }
}
@keyframes action_1 {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes action_2 {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes action_3 {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.action--1 {
  animation: 0.8s forwards ease 0.3s normal action_1;
}

.action--2 {
  animation: 0.8s forwards ease 0.4s normal action_2;
}

.action--3 {
  animation: 0.8s forwards ease 0.5s normal action_3;
}

.mv__ttl span {
  opacity: 0;
}

/* =========================================================
MV
========================================================= */
.mv__container {
  position: relative;
  width: 100%;
  background: url(../images/mv.webp) no-repeat center/cover;
}
@media (min-width: 769px) {
  .mv__container {
    padding: 11.2142857143vw 0 12.5vw;
  }
}
@media (max-width: 768px) {
  .mv__container {
    padding: 190px 0 120px;
  }
}

.slide__container {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (min-width: 769px) {
  .slide__container {
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .slide__container {
    padding-bottom: 30px;
  }
}
.slide__container .slide__pagination {
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.slide__container .slide__pagination .swiper-pagination-bullet {
  background: transparent;
  border: 2px solid #f4f2ef;
}
.slide__container .slide__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #f4f2ef;
}

.slide__list {
  display: flex;
  align-items: center;
}

.slide__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slide__img > a {
  display: block;
}

.slide__next,
.slide__prev {
  color: #fff;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.slide__next {
  top: -30px;
  left: 0;
  right: -42.8571428571vw;
}
@media (max-width: 768px) {
  .slide__next {
    right: -75%;
  }
}
@media (max-width: 768px) {
  .slide__next::after {
    font-size: 25px;
  }
}

.slide__prev {
  top: -30px;
  left: -42.8571428571vw;
}
@media (max-width: 768px) {
  .slide__prev {
    left: -75%;
  }
}
@media (max-width: 768px) {
  .slide__prev::after {
    font-size: 25px;
  }
}

.slide__container {
  overflow: visible;
  margin: auto;
}
@media (min-width: 769px) {
  .slide__container {
    width: 56.4285714286vw;
  }
}
@media (max-width: 768px) {
  .slide__container {
    width: 100%;
  }
}

.slide__item {
  opacity: 0.9;
  transform: translateZ(0) scale(0.85) !important;
}
.slide__item.swiper-slide-active {
  opacity: 1;
  transform: translateZ(0) scale(1) !important;
  z-index: 100;
}
.slide__item.swiper-slide-prev {
  position: relative;
  z-index: 1;
}

.mv__scroll {
  width: 39px;
  height: 78px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
.mv__scroll .icon::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 56px;
  background: #fff;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
.mv__scroll .txt {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
}

.mv__ttl {
  position: absolute;
  width: 225px;
  height: 82px;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
  margin: auto;
}
@media (min-width: 769px) {
  .mv__ttl {
    top: 42px;
  }
}
@media (max-width: 768px) {
  .mv__ttl {
    top: 60px;
  }
}
.mv__ttl .large--txt,
.mv__ttl .small--txt,
.mv__ttl .small--txt .special,
.mv__ttl .small--txt .selection {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.mv__ttl .large--txt {
  width: 100%;
}
.mv__ttl .large--txt > span {
  height: 48px;
}
.mv__ttl .small--txt {
  width: 100%;
}
.mv__ttl .small--txt span img {
  height: 19px;
}
.mv__ttl .small--txt .special {
  width: 89px;
}
.mv__ttl .small--txt .selection {
  width: 128px;
}

/* =========================================================
LUXURY FAIR
========================================================= */
@media (min-width: 769px) {
  .luxury__container {
    position: relative;
    background-image: url(../images/bg_luxury.png);
    background-attachment: fixed;
    background-position: center 60px;
    background-repeat: no-repeat;
    background-size: cover;
    height: 20.7142857143vw;
  }
}
@media (max-width: 768px) {
  .luxury__container {
    height: 190px;
    position: relative;
  }
  .luxury__container::after {
    content: "";
    width: 100%;
    height: 800px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(../images/bg_luxury.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.luxury__ttl {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (min-width: 769px) {
  .luxury__ttl {
    width: 716px;
    height: 100px;
  }
}
@media (max-width: 768px) {
  .luxury__ttl {
    width: 100%;
    height: 53px;
    right: 0;
    margin: auto;
  }
}

/* =========================================================
FAIR CONTENT
========================================================= */
.fair__container {
  background: #F4F2EF;
}
@media (min-width: 769px) {
  .fair__container {
    padding: 7.1428571429vw 0;
  }
}
@media (max-width: 768px) {
  .fair__container {
    padding: 80px 0;
  }
}
.fair__container .cmn-pager-wrap {
  border-top: none;
}
@media (max-width: 768px) {
  .fair__container .cmn-pager-wrap .inner {
    border-top: none;
  }
}

.inner__box {
  margin: auto;
}
@media (min-width: 769px) {
  .inner__box {
    max-width: 1000px;
  }
}
@media (max-width: 768px) {
  .inner__box {
    width: 100%;
    padding: 0 15px;
  }
}

.text__info {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 769px) {
  .text__info {
    margin-bottom: 7.1428571429vw;
  }
}
@media (max-width: 768px) {
  .text__info {
    margin-bottom: 50px;
  }
}

.fair__ttl {
  font-size: 30px;
  position: relative;
  margin-bottom: 40px;
  line-height: 1.2;
}
.fair__ttl::after {
  content: "";
  position: absolute;
  height: 1;
  left: 0;
  right: 0;
  width: 60px;
  bottom: -20px;
}

.fair__date {
  font-size: 20px;
  margin-bottom: 10px;
}
.fair__date .l--txt {
  font-size: 30px;
}

.floor__txt {
  font-size: 16px;
  margin-bottom: 40px;
}

.fair__lead {
  font-size: 16px;
}
.fair__lead > a {
  text-decoration: underline;
  transition: 0.2s;
}
.fair__lead > a:hover {
  text-decoration: none;
}

.fair__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (min-width: 769px) {
  .fair__list {
    gap: 40px 80px;
    margin-bottom: 85px;
  }
}
@media (max-width: 768px) {
  .fair__list {
    gap: 30px 15px;
    margin-bottom: 25px;
  }
}

@media (min-width: 769px) {
  .fair__item {
    width: calc(33.3333333333% - 53.33px);
  }
}
@media (max-width: 768px) {
  .fair__item {
    width: calc(50% - 7.5px);
  }
}
@media (min-width: 769px) {
  .fair__item .img {
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .fair__item .img {
    margin-bottom: 10px;
  }
}
.fair__item .floor {
  font-weight: 500;
  font-size: 12px;
  color: #999999;
}
@media (min-width: 769px) {
  .fair__item .floor {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .fair__item .floor {
    margin-bottom: 5px;
  }
}
.fair__item .detail {
  color: #000;
  font-weight: 700;
  letter-spacing: 0.3px;
}
@media (min-width: 769px) {
  .fair__item .detail {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .fair__item .detail {
    font-size: 13px;
  }
}

.bnr__cnt {
  text-align: center;
  display: flex;
}
@media (min-width: 769px) {
  .bnr__cnt {
    justify-content: center;
    gap: 30px;
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .bnr__cnt {
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 30px;
  }
}
@media (min-width: 769px) {
  .bnr__cnt .img {
    width: calc(50% - 15px);
    margin: auto;
  }
}
@media (max-width: 768px) {
  .bnr__cnt .img {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .main__cnt .cmn-pager-wrap .cmn-pager-back {
    left: -30px;
  }
}
@media (max-width: 768px) {
  .main__cnt .cmn-pager-wrap .cmn-pager-back {
    bottom: 55px;
    left: -8px;
  }
}
@media (min-width: 769px) {
  .main__cnt .cmn-pager-wrap .cmn-pager-next {
    right: -30px;
  }
}
@media (max-width: 768px) {
  .main__cnt .cmn-pager-wrap .cmn-pager-next {
    bottom: 55px;
    right: -8px;
  }
}
@media (max-width: 768px) {
  .main__cnt .cmn-pager-wrap .pager-num a {
    width: 10vw;
    height: 10vw;
    font-size: 3vw;
  }
}
.main__cnt .morebtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 440px;
  height: 80px;
  margin: 0 auto;
  color: #fff;
  background: #C4AA66;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
}
@media (max-width: 768px) {
  .main__cnt .morebtn {
    width: 100%;
    height: 60px;
    font-size: 20px;
  }
}
.main__cnt .morebtn .arrow {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 12.5px;
  height: 21px;
}
.main__cnt .morebtn .arrow::before,
.main__cnt .morebtn .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 16px;
  height: 2px;
  background-color: #ffffff;
  transform-origin: calc(100% - 1px) 50%;
}
.main__cnt .morebtn .arrow::before {
  transform: rotate(45deg);
}
.main__cnt .morebtn .arrow::after {
  transform: rotate(-45deg);
}
/*# sourceMappingURL=../css/maps/style.css.map */
