@charset "UTF-8";
/* CSS Document */
:root {
  --swiper-navigation-size: 0px;
}

/* =================================
   全体
================================= */
.gallery-detail-wrap {
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.gallery-detail-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-detail-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gallery-detail-slider .swiper-wrapper {
  width: 100%;
  height: 100%;
}

/* =================================
   スライド
================================= */
.gallery-detail-slide {
  width: 100%;
  height: 100%;
  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;
  overflow: hidden;
}

.gallery-detail-image {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 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;
  overflow: hidden;
}

.gallery-detail-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: center center;
     object-position: center center;
  opacity: 0;
  -webkit-filter: brightness(0.72) blur(3px);
          filter: brightness(0.72) blur(3px);
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-transition: opacity 1.2s ease, -webkit-filter 1.8s ease, -webkit-transform 2.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.2s ease, -webkit-filter 1.8s ease, -webkit-transform 2.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.2s ease, filter 1.8s ease, transform 2.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.2s ease, filter 1.8s ease, transform 2.2s cubic-bezier(0.22, 1, 0.36, 1), -webkit-filter 1.8s ease, -webkit-transform 2.2s cubic-bezier(0.22, 1, 0.36, 1);
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  will-change: transform, opacity, filter;
}

/* 横長画像 */
.gallery-detail-image.is-landscape img {
  -o-object-fit: cover;
     object-fit: cover;
}

/* 縦長画像 */
.gallery-detail-image.is-portrait img {
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* 正方形に近い画像 */
.gallery-detail-image.is-square img {
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* 現在表示中 */
.gallery-detail-slide.swiper-slide-active .gallery-detail-image img {
  opacity: 1;
  -webkit-filter: brightness(1) blur(0);
          filter: brightness(1) blur(0);
  -webkit-animation: gallery-detail-zoom 6.5s ease-out forwards;
          animation: gallery-detail-zoom 6.5s ease-out forwards;
}

/* 前のスライド */
.gallery-detail-slide.swiper-slide-prev .gallery-detail-image img {
  opacity: 0;
  -webkit-transform: scale(1.06) translateX(-2%);
          transform: scale(1.06) translateX(-2%);
}

/* 次のスライド */
.gallery-detail-slide.swiper-slide-next .gallery-detail-image img {
  opacity: 0;
  -webkit-transform: scale(1.06) translateX(2%);
          transform: scale(1.06) translateX(2%);
}

@-webkit-keyframes gallery-detail-zoom {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}

@keyframes gallery-detail-zoom {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
/* 縦長画像はズームを弱める */
.gallery-detail-slide.swiper-slide-active .gallery-detail-image.is-portrait img,
.gallery-detail-slide.swiper-slide-active .gallery-detail-image.is-square img {
  -webkit-animation-name: gallery-detail-zoom-portrait;
          animation-name: gallery-detail-zoom-portrait;
}

@-webkit-keyframes gallery-detail-zoom-portrait {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.035);
            transform: scale(1.035);
  }
}

@keyframes gallery-detail-zoom-portrait {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.035);
            transform: scale(1.035);
  }
}
/* =================================
   前後ボタン
================================= */
.gallery-detail-prev,
.gallery-detail-next {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 56px;
  height: 80px;
  padding: 0;
  border: 0;
  background: #0064c1;
  cursor: pointer;
  overflow: hidden;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: width 0.35s ease, background 0.35s ease, opacity 0.35s ease;
  transition: width 0.35s ease, background 0.35s ease, opacity 0.35s ease;
}

.gallery-detail-prev {
  left: 0;
}

.gallery-detail-next {
  right: 0;
}

.gallery-detail-prev:hover,
.gallery-detail-next:hover {
  width: 70px;
  background: #2e8ed2;
}

.gallery-detail-prev span,
.gallery-detail-next span {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}

.gallery-detail-prev span {
  left: 22px;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}

.gallery-detail-next span {
  right: 22px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.gallery-detail-prev:hover span {
  -webkit-transform: translateY(-50%) translateX(-4px) rotate(-135deg);
          transform: translateY(-50%) translateX(-4px) rotate(-135deg);
}

.gallery-detail-next:hover span {
  -webkit-transform: translateY(-50%) translateX(4px) rotate(45deg);
          transform: translateY(-50%) translateX(4px) rotate(45deg);
}

.gallery-detail-prev:focus-visible,
.gallery-detail-next:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}

/* =================================
   ページネーション
================================= */
.gallery-detail-pagination {
  position: absolute;
  bottom: 20px !important;
  left: 0;
  z-index: 20;
  width: 100%;
  text-align: center;
}

.gallery-detail-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 2px;
  margin: 0 4px !important;
  border-radius: 0;
  background: #fff;
  opacity: 0.3;
  -webkit-transition: width 0.4s ease, opacity 0.4s ease;
  transition: width 0.4s ease, opacity 0.4s ease;
}
.gallery-detail-pagination .swiper-pagination-bullet-active {
  width: 48px;
  opacity: 1;
}

/* =================================
   プロフィールカード
================================= */
.gallery-profile {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: min(420px, 100% - 80px);
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(1, 45, 130, 0.35)), to(rgba(1, 45, 130, 0.45)));
  background: linear-gradient(rgba(1, 45, 130, 0.35), rgba(1, 45, 130, 0.45));
  background-size: cover;
  border: 1px solid rgba(60, 71, 177, 0.2);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: gallery-profile-show 1s 0.6s ease forwards;
          animation: gallery-profile-show 1s 0.6s ease forwards;
  border-bottom-right-radius: 40px;
}

.gallery-profile-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
  overflow: hidden;
}

.gallery-profile-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.gallery-profile-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 22px 24px;
}

.gallery-profile-label {
  margin: 0 0 10px;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  opacity: 0.55;
  font-family: "Cinzel", serif;
}

.gallery-profile-name {
  margin: 0 0 18px;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.gallery-profile-name span {
  display: block;
  margin-top: 4px;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  opacity: 0.6;
  font-family: "Cinzel", serif;
}

.gallery-profile-data {
  margin: 0 0 18px;
}

.gallery-profile-data div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-profile-data dt,
.gallery-profile-data dd {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.5;
}

.gallery-profile-data dt {
  letter-spacing: 0.12em;
  opacity: 0.5;
  font-family: "Cinzel", serif;
}

.gallery-profile-data dd {
  letter-spacing: 0.05em;
}

.gallery-profile-link {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-decoration: none;
}

.gallery-profile-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #fff;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -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;
}

.gallery-profile-link:hover::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

@-webkit-keyframes gallery-profile-show {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes gallery-profile-show {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.gallery-profile-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.gallery-profile-link {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-decoration: none;
}

.gallery-profile-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #fff;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -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;
}

.gallery-profile-link:hover::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.gallery-profile-link-separator {
  font-size: 0.7rem;
  line-height: 1;
  opacity: 0.45;
}

.gallery-profile-link-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .gallery-profile-link-pc {
    display: none;
  }
  .gallery-profile-link-sp {
    display: inline-block;
  }
  .gallery-profile-links {
    display: block;
  }
}
/* =================================
   スマートフォン
================================= */
@media screen and (max-width: 767px) {
  /*
   * スライドの下にプロフィールを置くので、
   * ページ全体は高さ自動＋スクロール可能にする
   */
  .gallery-detail-wrap {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }
  .gallery-detail-inner {
    height: auto;
  }
  .gallery-detail-slider {
    width: 100%;
    height: 100svh;
  }
  .gallery-detail-slide,
  .gallery-detail-image {
    width: 100%;
    height: 100%;
  }
  /* 横長画像はスマホ画面を全面表示 */
  .gallery-detail-image.is-landscape img {
    width: 100%;
    height: 100%;
    max-width: none;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  /* 縦長画像は全体が見える */
  .gallery-detail-image.is-portrait img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .gallery-detail-image.is-square img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  /* 矢印 */
  .gallery-detail-prev,
  .gallery-detail-next {
    width: 42px;
    height: 64px;
  }
  .gallery-detail-prev:hover,
  .gallery-detail-next:hover {
    width: 42px;
  }
  .gallery-detail-prev span,
  .gallery-detail-next span {
    width: 14px;
    height: 14px;
  }
  .gallery-detail-prev span {
    left: 17px;
  }
  .gallery-detail-next span {
    right: 17px;
  }
  .gallery-detail-prev:hover span {
    -webkit-transform: translateY(-50%) rotate(-135deg);
            transform: translateY(-50%) rotate(-135deg);
  }
  .gallery-detail-next:hover span {
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .gallery-detail-pagination {
    bottom: 16px !important;
  }
  /* プロフィールは通常配置 */
  .gallery-profile {
    position: static;
    width: 100%;
    max-width: none;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), url(../img/common/bg_companion.jpg) no-repeat;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/common/bg_companion.jpg) no-repeat;
    background-size: cover;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-animation: none;
            animation: none;
  }
  .gallery-profile-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
    width: auto;
    height: auto;
    margin: 0;
    border: 0;
    border-radius: 0;
  }
  .gallery-profile-image img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
  .gallery-profile-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    padding: 22px 20px;
  }
  .gallery-profile-label {
    margin-top: 0;
  }
  .gallery-profile-name {
    font-size: 1.1rem;
  }
  .gallery-profile-data {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }
  .gallery-profile-data div {
    grid-template-columns: 62px minmax(0, 1fr);
  }
}
/* さらに狭いスマホ */
@media screen and (max-width: 480px) {
  .gallery-profile {
    display: block;
  }
  .gallery-profile-image {
    width: 100%;
    height: 260px;
  }
  .gallery-profile-image img {
    min-height: 0;
  }
  .gallery-profile-content {
    padding: 26px 22px 32px;
  }
}
/* 動きを減らす設定を使用しているユーザー向け */
@media (prefers-reduced-motion: reduce) {
  .gallery-detail-image img,
  .gallery-profile,
  .gallery-detail-prev,
  .gallery-detail-next {
    -webkit-animation: none !important;
            animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .gallery-detail-slide.swiper-slide-active .gallery-detail-image img {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
    -webkit-transform: none;
            transform: none;
  }
}/*# sourceMappingURL=gravureslide.css.map */