@charset "UTF-8";
/*
function,breakpoint,英文などの特殊フォントの関数
*/
/*英語フォント*/
.p-news-sec__button-toggle > span, .p-fv__title .en, .p-fv__scroll-inner {
  font-family: var(--en-font);
  font-weight: normal;
  font-style: normal;
  font-display: optional;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

/*
mixinの設定
フォントサイズや、レスポンシブデザインの設定を行う
*/
/*------------------------------------------------------
  ファーストビュー（スライド以外）
-------------------------------------------------------*/
.p-fv {
  position: relative;
  width: 100%;
}
@media print, screen and (min-width:768px) {
  .p-fv {
    /*PCのみ*/
    height: calc(100svh - 75px);
  }
}
.p-fv__title {
  width: calc(100% - 13.3333333333vw);
  margin: auto;
  max-width: 1000px;
  margin: 7.4666666667vw auto;
  z-index: 10;
}
@media print, screen and (min-width:768px) {
  .p-fv__title {
    /*PCのみ*/
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    margin: 0;
    width: auto;
    color: var(--color-base);
  }
}
.p-fv__title img {
  width: 100%;
}
.p-fv__title .en {
  display: block;
  font-size: min(9.6vw, 4.32rem);
  font-weight: 500;
  line-height: 1.5277777778;
}
@media print, screen and (min-width:768px) {
  .p-fv__title .en {
    font-size: min(54px, 5.4vw);
    font-weight: 400;
  }
}
.p-fv__title .jp {
  margin-top: 0.5em;
  display: block;
  font-size: max(10px, 3.7333333333vw);
  letter-spacing: 0.12em;
}
@media print, screen and (min-width:768px) {
  .p-fv__title .jp {
    font-size: min(20px, 2vw);
    line-height: 2;
  }
}
@media print, screen and (min-width:768px) {
  .p-fv__scroll {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 10;
  }
}
.p-fv__scroll-inner {
  position: relative;
  display: block;
  font-size: min(3.4666666667vw, 1.56rem);
  line-height: 1.5384615385;
  letter-spacing: 0.05em;
  color: #fff;
}
@media print, screen and (min-width:768px) {
  .p-fv__scroll-inner {
    font-size: 1.6rem;
    color: #000;
  }
}
.p-fv__scroll-inner::after {
  content: "";
  display: block;
  background-color: #fff;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 40px;
  -webkit-animation: scroll 4s infinite;
          animation: scroll 4s infinite;
}
@media print, screen and (min-width:768px) {
  .p-fv__scroll-inner::after {
    background-color: #000;
  }
}

/*-------------------------------------------------------
  ファーストビューのスライド
  ※JavaScriptの設定が必要
-------------------------------------------------------*/
.p-fv-slide {
  position: relative;
  width: 100%;
  height: calc(100svh - 65px - 36.2666666667vw - 48px);
  overflow: hidden;
  /* スライドのチラつき防止 */
}
@media print, screen and (min-width:768px) {
  .p-fv-slide {
    height: 100%;
  }
}
.p-fv-slide.swiper-container {
  visibility: hidden; /* 要素を見えなくする（高さは保持） */
  overflow: hidden; /* 念のためスライドのはみ出しを防止 */
}
.p-fv-slide.swiper-container.swiper-initialized {
  visibility: visible; /* Swiperの初期化後に表示 */
  overflow: visible; /* 非表示のままだと両端のスライドが切れるので表示にする */
}
.p-fv-slide__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-fv-slide__wrapper::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  /* top right bottom left */
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  mix-blend-mode: multiply;
}

/*------------------------------------------------------
  私たちについて

  写真とテキストを2カラムに分けて表示
-------------------------------------------------------*/
.p-about {
  margin-top: 9.3333333333vw;
  margin-bottom: 22.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .p-about {
    margin: 100px auto 140px;
  }
}
@media print, screen and (min-width:768px) {
  .p-about__inner {
    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;
    width: 92%;
    max-width: 880px;
  }
}
.p-about__img {
  width: 72.8vw;
  margin: 0 auto 16vw;
}
@media print, screen and (min-width:768px) {
  .p-about__img {
    width: min(372px, 42.2727272727%);
    margin: 0;
  }
}
.p-about__img img {
  width: 100%;
}
@media print, screen and (min-width:768px) {
  .p-about__textarea {
    text-align: left;
    width: min(428px, 51.1363636364%);
  }
}
.p-about__title {
  margin-bottom: 10.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .p-about__title {
    margin-bottom: 3em;
  }
}
@media only screen and (max-width:767px) {
  .p-about__title .en {
    font-size: min(4.2666666667vw, 1.92rem);
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
@media print, screen and (min-width:768px) {
  .p-about__title .en {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-bottom: 0.8em;
  }
}
.p-about__title .jp {
  font-size: min(5.3333333333vw, 2.4rem);
  white-space: nowrap;
}
@media print, screen and (min-width:768px) {
  .p-about__title .jp {
    font-size: min(2.3rem, 2.6136363636vw);
  }
}
.p-about__text {
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  font-size: min(4vw, 1.8rem);
  font-weight: 300;
  line-height: 2.2666666667;
  letter-spacing: 0.03em;
}
@media print, screen and (min-width:768px) {
  .p-about__text {
    font-size: min(15px, 1.5vw);
    line-height: 2.4666666667;
    letter-spacing: 0.1em;
  }
}
.p-about__link {
  margin-top: 10.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .p-about__link {
    margin-top: 80px;
  }
}

/*------------------------------------------------------
  パララックスの個別スタイル

  ※パララックス要素の共通スタイルは
  src/scss/Module/Component/_c-parallax.scssに記載

  ※JavaScriptの設定が必要
-------------------------------------------------------*/
.p-parallax {
  width: 100%;
}
.p-parallax--01 {
  margin-bottom: 14.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .p-parallax--01 {
    margin-bottom: 95px;
  }
}
.p-parallax--02 {
  margin: 22.6666666667vw 0 14.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .p-parallax--02 {
    margin: 150px 0 95px;
  }
}

/**---------------
ギャラリー
---------------**/
@media only screen and (max-width:767px) {
  .p-gallery__title {
    margin-bottom: 12vw;
  }
}
@media print, screen and (min-width:768px) {
  .p-gallery__title {
    margin-bottom: 100px;
  }
}
@media print, screen and (min-width:768px) {
  .p-gallery__inner {
    width: 100%;
    max-width: 100%;
  }
}

.p-gallery-slide {
  position: relative;
  padding-bottom: 13.3333333333vw;
  margin-top: 8vw;
}
@media print, screen and (min-width:768px) {
  .p-gallery-slide {
    margin-top: 55px;
    padding-bottom: 84px;
  }
}
.p-gallery-slide .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.p-gallery-slide__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media print, screen and (min-width:768px) {
  .p-gallery-slide__wrapper {
    display: contents;
  }
}
.p-gallery-slide__inner {
  width: 62.9333333333vw;
}
@media print, screen and (min-width:768px) {
  .p-gallery-slide__inner {
    width: 275px;
  }
}
.p-gallery-slide__inner img {
  width: 100%;
}
.p-gallery-slide__title {
  margin-top: 1em;
  font-size: min(4vw, 1.8rem);
  font-weight: bold;
  line-height: 1.4;
}
@media print, screen and (min-width:768px) {
  .p-gallery-slide__title {
    font-size: 1.5rem;
  }
}
.p-gallery-slide.swiper-horizontal > .swiper-scrollbar {
  width: calc(100% - 13.3333333333vw);
  margin: auto;
  max-width: 1000px;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 2px;
  background-color: #dedede;
}
@media print, screen and (min-width:768px) {
  .p-gallery-slide.swiper-horizontal > .swiper-scrollbar {
    height: 3px;
    max-width: 880px;
  }
}
.p-gallery-slide.swiper-horizontal .swiper-scrollbar-drag {
  background: var(--color-main);
}
.p-gallery-slide .swiper-button-prev,
.p-gallery-slide .swiper-button-next {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  text-indent: -9999px;
  background: var(--color-main);
}
.p-gallery-slide .swiper-button-prev {
  top: auto;
  left: auto;
  right: 53px;
  bottom: 0;
}
.p-gallery-slide .swiper-button-prev::before {
  content: "";
  display: block;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateX(25%) rotate(45deg);
          transform: translateX(25%) rotate(45deg);
}
.p-gallery-slide .swiper-button-next {
  top: auto;
  right: 0;
  bottom: 0;
}
.p-gallery-slide .swiper-button-next::before {
  content: "";
  display: block;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}

/*------------------------------------------------------
  ご予約フロー
  2カラムで手順説明するためのスタイル
-------------------------------------------------------*/
.p-flow {
  margin-bottom: 24vw;
}
@media print, screen and (min-width:768px) {
  .p-flow {
    margin-bottom: 160px;
  }
}
.p-flow__title {
  margin-bottom: 14.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .p-flow__title {
    margin-bottom: 80px;
  }
}
.p-flow__inner {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 6.6666666667vw 0;
}
@media print, screen and (min-width:768px) {
  .p-flow__inner {
    max-width: 830px;
    -ms-grid-columns: 1fr 22px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    grid-gap: 22px;
  }
}

.p-flow-sec {
  position: relative;
  margin: 0;
  width: 100%;
  border: 1px solid #707070;
  background-color: var(--color-base);
  color: #000000;
  padding: 6.6666666667vw 7.7333333333vw;
}
@media print, screen and (min-width:768px) {
  .p-flow-sec {
    padding: 40px 8.8888888889%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
}
.p-flow-sec__title .jp {
  margin-top: 0.35em;
  margin-bottom: 1.2em;
  font-size: min(4.5333333333vw, 2.04rem);
  line-height: 1.6470588235;
  letter-spacing: 0.25em;
}
@media print, screen and (min-width:768px) {
  .p-flow-sec__title .jp {
    font-size: min(23px, 2.3vw);
    letter-spacing: 0.25em;
  }
}
.p-flow-sec__text {
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  font-size: min(3.7333333333vw, 1.68rem);
  font-weight: 300;
  line-height: 1.7142857143;
  letter-spacing: 0.03em;
  font-family: var(--font-honbun);
}
@media print, screen and (min-width:768px) {
  .p-flow-sec__text {
    text-align: center;
    -moz-text-align-last: center;
         text-align-last: center;
    font-size: clamp(10px, 1.3vw, 13px);
    line-height: 1.7333333333;
  }
}

/*
*
店舗情報（トップページのスタイル）
*
*/
/*変数は、要素の外に設定！！！*/
.p-shop {
  margin-bottom: 24vw;
}
@media print, screen and (min-width:768px) {
  .p-shop {
    margin-bottom: 160px;
  }
}
.p-shop__title {
  margin-bottom: 14.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .p-shop__title {
    margin-bottom: 80px;
  }
}
.p-shop__link {
  margin-top: 6.9333333333vw;
}
@media print, screen and (min-width:768px) {
  .p-shop__link {
    margin-top: 80px;
  }
}

.p-shop-sec {
  position: relative;
}
@media print, screen and (min-width:768px) {
  .p-shop-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-shop-sec + .p-shop-sec {
  margin-top: 18.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .p-shop-sec + .p-shop-sec {
    margin-top: 85px;
  }
}
.p-shop-sec__map {
  width: 100%;
  position: relative;
  padding-top: 67.8899082569%;
  margin-bottom: 11.2vw;
}
@media print, screen and (min-width:768px) {
  .p-shop-sec__map {
    width: 46.5%;
    padding-top: 35.75%;
    margin-bottom: 0;
  }
}
.p-shop-sec__map iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
.p-shop-sec__textarea {
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media print, screen and (min-width:768px) {
  .p-shop-sec__textarea {
    width: 47%;
  }
}
.p-shop-sec__title {
  margin-bottom: 1em;
  font-size: min(4.8vw, 2.16rem);
  font-weight: 300;
  line-height: 1.7222222222;
  letter-spacing: 0.14em;
}
@media print, screen and (min-width:768px) {
  .p-shop-sec__title {
    margin-bottom: 0.7em;
    font-size: min(21px, 2.1vw);
    letter-spacing: 0.14em;
  }
}
.p-shop-sec table {
  width: 100%;
  border-collapse: collapse;
}
.p-shop-sec tr {
  display: table-row;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}
.p-shop-sec th,
.p-shop-sec td {
  font-family: var(--font-honbun);
  font-size: min(3.7333333333vw, 1.68rem);
  font-weight: 300;
  line-height: 1.7142857143;
  letter-spacing: 0em;
  padding: 1.4em 0;
  vertical-align: top;
  line-height: 1.7142857143;
}
@media print, screen and (min-width:768px) {
  .p-shop-sec th,
  .p-shop-sec td {
    padding: 1.2em 0;
    font-size: clamp(10px, 15px, 1.65vw);
  }
}
.p-shop-sec th {
  text-align: justify;
}
.p-shop-sec th > span {
  display: inline-block;
  width: 100%;
  height: 1.7142857143em;
  vertical-align: bottom;
  overflow: hidden;
}
.p-shop-sec th > span::after {
  content: "";
  display: inline-block;
  width: 100%;
}
@media only screen and (max-width:767px) {
  .p-shop-sec th {
    /*スマホのみ*/
    width: 14.9333333333vw;
  }
}
@media print, screen and (min-width:768px) {
  .p-shop-sec th {
    /*PCのみ*/
    width: 14%;
    min-width: 60px;
  }
}
@media only screen and (max-width:767px) {
  .p-shop-sec td {
    /*スマホのみ*/
    width: calc(100% - 14.9333333333vw);
    padding-left: 12.8289473684%;
  }
}
@media print, screen and (min-width:768px) {
  .p-shop-sec td {
    /*PCのみ*/
    width: 86%;
    padding-left: 9.0909090909%;
    letter-spacing: 0.01em;
  }
}

/**
 *
 * ニュース（トップページのスタイル）
 *
 */
.p-news {
  margin-top: 24vw;
  margin-bottom: 24vw;
}
@media print, screen and (min-width:768px) {
  .p-news {
    margin-top: 160px;
    margin-bottom: 160px;
  }
}
.p-news__title {
  margin-bottom: 14.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .p-news__title {
    margin-bottom: 80px;
  }
}
.p-news__note {
  margin: 3em auto 1.5em;
  font-size: min(4.5333333333vw, 2.04rem);
  font-weight: 300;
  line-height: 2.2941176471;
  letter-spacing: 0.15em;
}
@media print, screen and (min-width:768px) {
  .p-news__note {
    font-size: min(19px, 1.9vw);
  }
}
.p-news__link {
  margin-top: 6.9333333333vw;
}
@media print, screen and (min-width:768px) {
  .p-news__link {
    margin-top: 80px;
  }
}

.p-news-sec {
  position: relative;
}
.p-news-sec + .p-news-sec {
  margin-top: 18.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .p-news-sec + .p-news-sec {
    margin-top: 82px;
  }
}
@media print, screen and (min-width:768px) {
  .p-news-sec__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-news-sec__img {
  width: 100%;
  margin-bottom: 6.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .p-news-sec__img {
    width: 40.9%;
    margin-bottom: 0;
  }
}
.p-news-sec__img img {
  width: 100%;
}
.p-news-sec__textarea {
  position: relative;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  padding-bottom: 12vw;
}
@media print, screen and (min-width:768px) {
  .p-news-sec__textarea {
    width: 52.5%;
  }
}
@media print, screen and (min-width:768px) and (min-width:768px) {
  .p-news-sec__textarea {
    padding-bottom: min(53px, 5.3vw);
  }
}
.p-news-sec__date {
  display: block;
  margin-bottom: 0.5em;
  font-size: min(3.8666666667vw, 1.74rem);
  letter-spacing: 0.15em;
  color: var(--color-main);
}
@media print, screen and (min-width:768px) {
  .p-news-sec__date {
    margin-top: 0.3em;
    font-size: min(14.5px, 1.45vw);
  }
}
.p-news-sec__title {
  margin-bottom: 1em;
  font-size: min(4.5333333333vw, 2.04rem);
  font-weight: 300;
  line-height: 1.8235294118;
  letter-spacing: 0.11em;
}
@media print, screen and (min-width:768px) {
  .p-news-sec__title {
    margin-bottom: 1.6em;
    font-size: min(21px, 2.1vw);
    letter-spacing: 0.14em;
  }
}
.p-news-sec__text {
  font-size: min(3.7333333333vw, 1.68rem);
  line-height: 2;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width:768px) {
  .p-news-sec__text {
    font-size: min(16px, 1.6vw);
    line-height: 2.1875;
  }
}
.p-news-sec__text a {
  text-decoration: underline;
}
.p-news-sec__button-toggle {
  cursor: pointer;
  caret-color: transparent;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-top: 5.3333333333vw;
  height: 12vw;
  min-height: 42px;
}
@media print, screen and (min-width:768px) {
  .p-news-sec__button-toggle {
    padding-top: 0;
    height: 42px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.p-news-sec__button-toggle > span {
  font-size: min(4vw, 1.8rem);
  line-height: 1;
  letter-spacing: 0.15em;
  color: var(--color-main);
}
@media print, screen and (min-width:768px) {
  .p-news-sec__button-toggle > span {
    font-size: min(15px, 1.5vw);
  }
}
.p-news-sec__button-toggle > span::after {
  content: "";
  display: inline-block;
  margin-left: 1.5em;
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  border-right: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
  -webkit-transform: translateY(-25%) rotate(45deg);
          transform: translateY(-25%) rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media print, screen and (min-width:768px) {
  .p-news-sec__button-toggle > span::after {
    width: 9px;
    height: 9px;
  }
}
.p-news-sec__button-toggle > span .open-text {
  display: inline-block;
}
.p-news-sec__button-toggle > span .close-text {
  display: none;
}
.p-news-sec__hide-box {
  position: relative;
  height: 21.6vw;
  overflow: hidden;
  -webkit-transition: height 300ms ease;
  transition: height 300ms ease;
  will-change: height;
}
@media print, screen and (min-width:768px) {
  .p-news-sec__hide-box {
    height: 6.3em;
  }
}
.p-news-sec__hide-box::after {
  content: "...";
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
}
.p-news-sec .is-active .p-news-sec__button-toggle > span:after {
  -webkit-transform: translate(0%, 25%) rotate(225deg);
          transform: translate(0%, 25%) rotate(225deg);
}
.p-news-sec .is-active .p-news-sec__button-toggle > span .open-text {
  display: none;
}
.p-news-sec .is-active .p-news-sec__button-toggle > span .close-text {
  display: inline-block;
}
.p-news-sec .is-active .p-news-sec__hide-box {
  height: auto;
}
.p-news-sec .is-active .p-news-sec__hide-box::after {
  display: none;
}

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 0;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom, .glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left, .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe, .gslide video {
  outline: 0 !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

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

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: 0;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-bottom .gslide-image img, .desc-top .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img, .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  margin: auto;
}

.gslide-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.desc-bottom .gslide-media, .desc-top .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.gslide-description.description-left, .gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom, .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: 700;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gclose, .gnext, .gprev {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gclose svg, .gnext svg, .gprev svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gclose.disabled, .gnext.disabled, .gprev.disabled {
  opacity: 0.1;
}

.gclose .garrow, .gnext .garrow, .gprev .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gclose, .glightbox-closing .gnext, .glightbox-closing .gprev {
  opacity: 0 !important;
}

.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: 400;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gclose path, .glightbox-clean .gnext path, .glightbox-clean .gprev path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@-webkit-keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image, .glightbox-container .ginner-container.desc-top .gslide-image img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left, .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    -webkit-box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
    box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner, .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gclose:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}
/*
Glightboxをカスタマイズ
（ポップアップウィンドウのスタイル）

- ギャラリースライドと合わせて使う
- ※JavaScriptの設定が必要
*/
.glightbox-container .gcontainer {
  height: 102.1333333333vw;
}
@media print, screen and (min-width:768px) {
  .glightbox-container .gcontainer {
    height: 560px;
  }
}

.goverlay,
.glightbox-mobile .goverlay {
  background: rgba(255, 255, 255, 0.7);
}

.glightbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.glightbox-container .gcontainer {
  overflow: visible;
  max-width: 577px;
}
.glightbox-container .ginner-container {
  width: 100%;
  height: 100%;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media print, screen and (min-width:768px) {
  .glightbox-container .ginner-container {
    padding: 0;
  }
}
.glightbox-container .gslide {
  height: 100%;
  width: 70.8928571429%;
  margin: auto;
  background: transparent;
  overflow: visible;
}
.glightbox-container .gslide-media {
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.glightbox-mobile .glightbox-container .gprev,
.glightbox-mobile .glightbox-container .gnext,
.glightbox-clean .gprev,
.glightbox-clean .gnext {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: min(42px, 9.0666666667vw);
  height: min(42px, 9.0666666667vw);
  background: #fff;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  border: 1px solid var(--color-main);
}
@media print, screen and (min-width:768px) {
  .glightbox-mobile .glightbox-container .gprev,
  .glightbox-mobile .glightbox-container .gnext,
  .glightbox-clean .gprev,
  .glightbox-clean .gnext {
    width: 36px;
    height: 36px;
  }
}
.glightbox-mobile .glightbox-container .gprev svg,
.glightbox-mobile .glightbox-container .gnext svg,
.glightbox-clean .gprev svg,
.glightbox-clean .gnext svg {
  width: 15px;
}
.glightbox-mobile .glightbox-container .gprev path,
.glightbox-mobile .glightbox-container .gnext path,
.glightbox-clean .gprev path,
.glightbox-clean .gnext path {
  fill: var(--color-main);
}
.glightbox-mobile .glightbox-container .gprev:hover,
.glightbox-mobile .glightbox-container .gnext:hover,
.glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover {
  background-color: var(--color-main);
}
.glightbox-mobile .glightbox-container .gprev:hover path,
.glightbox-mobile .glightbox-container .gnext:hover path,
.glightbox-clean .gprev:hover path,
.glightbox-clean .gnext:hover path {
  fill: #fff;
}
.glightbox-mobile .glightbox-container .gprev,
.glightbox-clean .gprev {
  left: min(40px, 4%);
}
@media print, screen and (min-width:768px) {
  .glightbox-mobile .glightbox-container .gprev,
  .glightbox-clean .gprev {
    left: 5%;
  }
}
.glightbox-mobile .glightbox-container .gnext,
.glightbox-clean .gnext {
  right: min(40px, 4%);
}
@media print, screen and (min-width:768px) {
  .glightbox-mobile .glightbox-container .gnext,
  .glightbox-clean .gnext {
    right: 5%;
  }
}
.glightbox-mobile .glightbox-container .gclose,
.glightbox-clean .gclose {
  top: -22px;
  right: 2%;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media print, screen and (min-width:768px) {
  .glightbox-mobile .glightbox-container .gclose,
  .glightbox-clean .gclose {
    top: -38px;
    right: 2.3%;
    width: 70px;
    height: 60px;
  }
}
.glightbox-mobile .glightbox-container .gclose svg,
.glightbox-clean .gclose svg {
  width: 16px;
}
@media print, screen and (min-width:768px) {
  .glightbox-mobile .glightbox-container .gclose svg,
  .glightbox-clean .gclose svg {
    width: 18.5px;
  }
}
.glightbox-mobile .glightbox-container .gclose path,
.glightbox-clean .gclose path {
  fill: var(--color-main);
}
.glightbox-mobile .glightbox-container .gclose:hover,
.glightbox-clean .gclose:hover {
  background-color: transparent;
  opacity: 0.7;
}
.glightbox-mobile .glightbox-container .gslide-image img,
.glightbox-clean .gslide-image img {
  max-width: 100%;
  width: 100%;
}