@charset "UTF-8";
/* ================================================

- Base

================================================ */
[v-cloak] {
  display: none;
}

_:-ms-lang(x)::-ms-backdrop, [v-cloak] {
  display: block;
}

/* ================================================

- 表示アニメーション

================================================ */
body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ================================================

- フォント

================================================ */
/* ================================================

-

================================================ */
.lozad {
  opacity: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.lozad[data-loaded="true"] {
  opacity: 1;
}

/* ================================================

- RWD表示切り替え

================================================ */
@media all and (min-width: 569px) {
  .nopc {
    display: none !important;
  }
}

@media all and (max-width: 569px) {
  body {
    max-width: 1280px;
  }
}

@media all and (max-width: 568px) {
  .nosp {
    display: none !important;
  }
}

/* ================================================

- flex

================================================ */
/* ================================================

- margin

================================================ */
/* magrin-topを5px刻みで50pxまで */
.mTop0 {
  margin-top: 0px;
}

.mTop5 {
  margin-top: 5px;
}

.mTop10 {
  margin-top: 10px;
}

.mTop15 {
  margin-top: 15px;
}

.mTop20 {
  margin-top: 20px;
}

.mTop25 {
  margin-top: 25px;
}

.mTop30 {
  margin-top: 30px;
}

.mTop35 {
  margin-top: 35px;
}

.mTop40 {
  margin-top: 40px;
}

.mTop45 {
  margin-top: 45px;
}

.mTop50 {
  margin-top: 50px;
}

/* magrin-bottomを5px刻みで50pxまで */
.mBottom0 {
  margin-bottom: 0px;
}

.mBottom5 {
  margin-bottom: 5px;
}

.mBottom10 {
  margin-bottom: 10px;
}

.mBottom15 {
  margin-bottom: 15px;
}

.mBottom20 {
  margin-bottom: 20px;
}

.mBottom25 {
  margin-bottom: 25px;
}

.mBottom30 {
  margin-bottom: 30px;
}

.mBottom35 {
  margin-bottom: 35px;
}

.mBottom40 {
  margin-bottom: 40px;
}

.mBottom45 {
  margin-bottom: 45px;
}

.mBottom50 {
  margin-bottom: 50px;
}

/* ================================================

- ギャラリー

================================================ */
.gallery-tab {
  max-width: 866px;
  margin: 0 auto;
}

.gallery-tab ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.gallery-tab ul li {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  height: 36px;
  padding: 0 24px;
  font-size: 2.1rem;
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  border-left: solid 1px #000000;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.gallery-tab ul li small {
  font-size: 1.6rem;
  padding-left: .25em;
}

.gallery-tab ul li span {
  font-size: 1.8rem;
}

.gallery-tab ul li:first-child {
  margin-left: 0;
  border-left: none;
}

.gallery-tab ul li.-active {
  color: #009A99;
}

.gallery__main {
  max-width: 850px;
  margin: 60px auto 0;
  padding-bottom: 35px;
}

.gallery__main__swiper {
  max-width: 660px;
  margin: 0 auto;
}

.gallery__tmb {
  margin-top: 36px;
}

.swiper-slide figcaption {
  position: absolute;
  right: 5px;
  bottom: 5px;
  display: inline-block;
  padding: 5px 8px;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.swiper-button__arrow {
  position: relative;
}

/* 次ページボタンのスタイル */
.swiper-button-next-new6,
.swiper-button-next-new5,
.swiper-button-next-new4,
.swiper-button-next-new3,
.swiper-button-next-new2,
.swiper-button-next-new1 {
  position: absolute;
  left: -31px;
  top: -70px;
  background-image: url("../images/gallery/arrow_L.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 21px;
  height: 35px;
  cursor: pointer;
  z-index: 2;
}

/* 前ページボタンのスタイル */
.swiper-button-prev-new6,
.swiper-button-prev-new5,
.swiper-button-prev-new4,
.swiper-button-prev-new3,
.swiper-button-prev-new2,
.swiper-button-prev-new1 {
  position: absolute;
  top: -70px;
  right: -31px;
  background-image: url("../images/gallery/arrow_R.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 21px;
  height: 35px;
  cursor: pointer;
  z-index: 2;
}

.gallery__tmb .swiper-slide {
  opacity: .7;
}

.gallery__tmb .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.gallery-banner {
  max-width: 908px;
  margin: -80px auto 155px;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
}

.gallery-banner:hover {
  opacity: .7;
}

.gallery-note {
  margin: 36px auto 0;
}

.gallery-note p {
  font-size: 1.2rem;
  line-height: 1.33;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
}

/* @media screen */
@media screen and (max-width: 568px) {
  .gallery-tab {
    margin: 0 auto;
    padding: 0 4vw;
  }
  .gallery-tab ul {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .gallery-tab ul li {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    width: calc(100% / 3);
    height: 36px;
    padding: 0;
    font-size: 4.8vw;
  }
  .gallery-tab ul li small {
    font-size: 3.46667vw;
    padding-left: .25em;
  }
  .gallery-tab ul li span {
    font-size: 4vw;
  }
  .gallery-tab ul li:nth-child(4) {
    border-left: none;
  }
  .gallery-tab ul li:nth-last-child(-n+3) {
    margin-top: 10px;
  }
  .gallery__main {
    margin: 42px auto 0;
    padding: 0 4vw 20px;
  }
  .gallery__tmb {
    margin-top: 15px;
  }
  .swiper-slide figcaption {
    right: 5px;
    bottom: 5px;
    display: inline-block;
    padding: 5px 8px;
    font-size: 3.46667vw;
  }
  /* 次ページボタンのスタイル */
  .swiper-button-next-new6,
  .swiper-button-next-new5,
  .swiper-button-next-new4,
  .swiper-button-next-new3,
  .swiper-button-next-new2,
  .swiper-button-next-new1 {
    left: 3.2vw;
    top: -16vw;
    width: 5.072vw;
    height: 8.454vw;
  }
  /* 前ページボタンのスタイル */
  .swiper-button-prev-new6,
  .swiper-button-prev-new5,
  .swiper-button-prev-new4,
  .swiper-button-prev-new3,
  .swiper-button-prev-new2,
  .swiper-button-prev-new1 {
    top: -16vw;
    right: 3.2vw;
    width: 5.072vw;
    height: 8.454vw;
  }
  .gallery-banner {
    margin: -40px auto 80px;
    padding: 0 4vw;
  }
  .gallery-note {
    margin: 20px auto 0;
  }
  .gallery-note p {
    font-size: 2.66667vw;
    line-height: 1.5;
  }
}
