@charset "UTF-8";
/* ===================================================================
CSS information

file name  : gallery.css
author     : Abilive
style info : フォトギャラリー
=================================================================== */
/* ===================================================================
CSS information

file name  : _settings.scss
author     : Abilive
style info : 汎用設定
=================================================================== */
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeUp {
  0% {
    transform: translateY(-200%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
}
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */
.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  --pswp-root-z-index: 100000;
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;
  --pswp-error-text-color: var(--pswp-icon-color);
}

  /*
	  Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
  */
.pswp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--pswp-root-z-index);
  display: none;
  touch-action: none;
  outline: 0;
  opacity: 0.003;
  contain: layout style size;
  -webkit-tap-highlight-color: transparent;
}

  /* Prevents focus outline on the root element,
	(it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
  display: block;
}

.pswp,
.pswp__bg {
  transform: translateZ(0);
  will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
  background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
  overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
  width: auto;
  height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
  cursor: zoom-out;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__item {
  /* z-index for fade transition */
  z-index: 1;
  overflow: hidden;
}

.pswp__hidden {
  display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}

.pswp__content > * {
  pointer-events: auto;
}

  /*

	PhotoSwipe UI

  */
  /*
	  Error message appears when image is not loaded
	  (JS option errorMsg controls markup)
  */
.pswp__error-msg-container {
  display: grid;
}

.pswp__error-msg {
  margin: auto;
  font-size: 1em;
  line-height: 1;
  color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
  opacity: 0.005;
  will-change: opacity;
  transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
  z-index: 10;
  /* always overlap slide content */
  pointer-events: none;
  /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
  opacity: 1;
  pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 0.85;
  -webkit-appearance: none;
  -webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
  outline: 0;
}

  /*
	  div element that matches size of large image,
	  large image loads on top of it,
	  used when msrc is not provided
  */
div.pswp__img--placeholder,
.pswp__img--with-bg {
  background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  z-index: 10;
  /* allow events to pass through top bar itself */
  pointer-events: none !important;
}

.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}

  /*

	Close button

  */
.pswp__button--close {
  background: url(../../files/images/common/ic_close.svg) no-repeat center/100% !important;
  width: 6em !important;
  height: 2.5em !important;
}
@media only screen and (min-width: 768px) {
  .pswp__button--close {
    margin: 3em 4% 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .pswp__button--close {
    margin: 3em 42% 0 0;
  }
}

.pswp__button--close .pswp__icn {
  width: 4em;
  height: 4em;
  position: relative;
  top: auto;
  left: auto;
  display: none;
}

  /*

	Arrow buttons

  */
.pswp__button--arrow {
  position: absolute;
  top: 0;
  top: 50%;
  background: #fff;
  border-radius: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
  .pswp__button--arrow {
    width: 4.29em;
  }
}
@media only screen and (max-width: 767px) {
  .pswp__button--arrow {
    width: 3.21em;
  }
}
@media only screen and (min-width: 768px) {
  .pswp__button--arrow {
    height: 4.29em;
  }
}
@media only screen and (max-width: 767px) {
  .pswp__button--arrow {
    height: 3.21em;
  }
}
.pswp__button--arrow:before {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../../files/images/common/ic_arrow.svg) no-repeat center/contain;
  transform: scale(2);
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  background: none;
  border-radius: 0;
  fill: #797979;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
}
@media only screen and (min-width: 768px) {
  .pswp__button--arrow .pswp__icn {
    width: 3.57em;
  }
}
@media only screen and (max-width: 767px) {
  .pswp__button--arrow .pswp__icn {
    width: 2.5em;
  }
}
@media only screen and (min-width: 768px) {
  .pswp__button--arrow .pswp__icn {
    height: 3.57em;
  }
}
@media only screen and (max-width: 767px) {
  .pswp__button--arrow .pswp__icn {
    height: 2.5em;
  }
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
}
@media only screen and (min-width: 768px) {
  .pswp__button--arrow--prev {
    left: 1em;
  }
}
@media only screen and (max-width: 767px) {
  .pswp__button--arrow--prev {
    left: 0.5em;
  }
}
.pswp__button--arrow--prev:before {
  transform: scaleX(-1) scale(2);
}

@media only screen and (min-width: 768px) {
  .pswp__button--arrow--next {
    right: 1em;
  }
}
@media only screen and (max-width: 767px) {
  .pswp__button--arrow--next {
    right: 0.5em;
  }
}

.pswp__button--arrow--next .pswp__icn {
  /* flip horizontally */
  transform: scale(-1, 1);
  display: none;
}
@media only screen and (min-width: 768px) {
  .pswp__button--arrow--next .pswp__icn {
    margin-right: 1em;
  }
}
@media only screen and (max-width: 767px) {
  .pswp__button--arrow--next .pswp__icn {
    margin-right: 0.7em;
  }
}

.pswp__button--arrow--prev .pswp__icn {
  display: none;
}
@media only screen and (min-width: 768px) {
  .pswp__button--arrow--prev .pswp__icn {
    margin-left: 1em;
  }
}
@media only screen and (max-width: 767px) {
  .pswp__button--arrow--prev .pswp__icn {
    margin-left: 0.7em;
  }
}

  /*

	Zoom button

  */
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: none;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}

  /*

	Loading indicator

  */
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
  /*

	"1 of 10" counter

  */
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

.pswp--touch .pswp__button--arrow {
  visibility: visible;
}

.c-tab {
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 1025px) {
  .c-tab {
    width: calc(1100 / 1440 * 100%);
    max-width: calc(1100px);
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1441px) {
  .c-tab {
    max-width: calc(1100px * ((16 + 3) / 14));
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1441px) and (max-width: 1600px) {
  .c-tab {
    max-width: calc(1100px * ((16 + 2) / 14));
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .c-tab {
    width: calc(1200 / 1440 * 100%);
  }
}
.c-tab__btn .inner li a {
  min-width: 10.71rem;
}
@media only screen and (max-width: 767px) {
  .c-tab__btn .inner li a {
    min-width: 6.5rem;
  }
}

.p-gal {
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1025px) {
  .p-gal {
    width: calc(1100 / 1440 * 100%);
    max-width: calc(1100px);
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1441px) {
  .p-gal {
    max-width: calc(1100px * ((16 + 3) / 14));
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1441px) and (max-width: 1600px) {
  .p-gal {
    max-width: calc(1100px * ((16 + 2) / 14));
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-gal {
    width: calc(1200 / 1440 * 100%);
  }
}
@media only screen and (max-width: 767px) {
  .p-gal {
    width: calc(388 / 428 * 100%);
  }
}
@media only screen and (min-width: 1025px) {
  .p-gal {
    margin-top: 7.14rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-gal {
    margin-top: 5.71rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-gal {
    margin-top: 4em;
  }
}
.p-gal .inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.p-gal .inner .gallery-item img {
  aspect-ratio: 234 / 162;
  object-fit: cover;
}
.p-gal .inner .gallery-item a {
  display: block;
}
.mouse .p-gal .inner .gallery-item a {
  -moz-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.mouse .p-gal .inner .gallery-item a:hover, .touch .p-gal .inner .gallery-item a.touchstart {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
.touch .p-gal .inner .gallery-item a {
  -webkit-tap-highlight-color: transparent;
}
.touch .p-gal .inner .gallery-item a.touchend {
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}
@media only screen and (min-width: 768px) {
  .p-gal .inner.lay_block6 .gallery-item:nth-of-type(1), .p-gal .inner.lay_block6 .gallery-item:nth-of-type(2), .p-gal .inner.lay_block6 .gallery-item:nth-of-type(5), .p-gal .inner.lay_block6 .gallery-item:nth-of-type(6) {
    width: calc(234 / 1100 * 100%);
  }
}
@media only screen and (max-width: 767px) {
  .p-gal .inner.lay_block6 .gallery-item:nth-of-type(1), .p-gal .inner.lay_block6 .gallery-item:nth-of-type(2), .p-gal .inner.lay_block6 .gallery-item:nth-of-type(5), .p-gal .inner.lay_block6 .gallery-item:nth-of-type(6) {
    width: 48%;
  }
}
@media only screen and (min-width: 768px) {
  .p-gal .inner.lay_block6 .gallery-item:nth-of-type(3), .p-gal .inner.lay_block6 .gallery-item:nth-of-type(4) {
    width: calc(523 / 1100 * 100%);
  }
}
@media only screen and (max-width: 767px) {
  .p-gal .inner.lay_block6 .gallery-item:nth-of-type(3), .p-gal .inner.lay_block6 .gallery-item:nth-of-type(4) {
    width: 100%;
  }
}
.p-gal .inner.lay_block6 .gallery-item:nth-of-type(3) img, .p-gal .inner.lay_block6 .gallery-item:nth-of-type(4) img {
  aspect-ratio: 523 / 362;
}
@media only screen and (min-width: 1025px) {
  .p-gal .inner.lay_block6 .gallery-item:nth-of-type(4) {
    margin-top: -10.2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-gal .inner.lay_block6 .gallery-item:nth-of-type(4) {
    margin-top: -11.1vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-gal .inner.lay_block6 .gallery-item:nth-of-type(4) {
    margin-top: -3.5em;
  }
}
@media only screen and (min-width: 768px) {
  .p-gal .inner.lay_block6 .gallery-item:nth-of-type(n+2) {
    margin-left: calc(54 / 1100 * 100%);
  }
}
@media only screen and (max-width: 767px) {
  .p-gal .inner.lay_block6 .gallery-item:nth-of-type(n+2) {
    margin-left: 4%;
  }
}
.p-gal .inner.lay_block6 .gallery-item:nth-of-type(3n+1) {
  margin-left: 0;
}
@media only screen and (min-width: 768px) {
  .p-gal .inner.lay_block6 .gallery-item:nth-of-type(n+5) {
    margin-top: calc(54 / 1100 * 100%);
  }
}
@media only screen and (max-width: 767px) {
  .p-gal .inner.lay_block6 .gallery-item:nth-of-type(n+5) {
    margin-top: 4%;
  }
}
@media only screen and (max-width: 767px) {
  .p-gal .inner.lay_block6 .gallery-item:nth-of-type(3), .p-gal .inner.lay_block6 .gallery-item:nth-of-type(4) {
    margin-left: 0;
    margin-top: 4%;
  }
  .p-gal .inner.lay_block6 .gallery-item:nth-of-type(5) {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) {
  .p-gal .inner.lay_block2 {
    margin-top: calc(54 / 1100 * 100%);
  }
}
@media only screen and (max-width: 767px) {
  .p-gal .inner.lay_block2 {
    margin-top: 4%;
  }
}
@media only screen and (min-width: 768px) {
  .p-gal .inner.lay_block2 .gallery-item {
    width: calc(523 / 1100 * 100%);
  }
}
@media only screen and (max-width: 767px) {
  .p-gal .inner.lay_block2 .gallery-item {
    width: 48%;
  }
}
@media only screen and (min-width: 768px) {
  .p-gal .inner.lay_block2 .gallery-item:nth-of-type(n+2) {
    margin-left: calc(54 / 1100 * 100%);
  }
}
@media only screen and (max-width: 767px) {
  .p-gal .inner.lay_block2 .gallery-item:nth-of-type(n+2) {
    margin-left: 4%;
  }
}
.p-gal .inner.lay_block2 .gallery-item img {
  aspect-ratio: 523 / 362;
}
@media only screen and (min-width: 768px) {
  .p-gal .inner.lay_block1 {
    margin-top: calc(54 / 1100 * 100%);
  }
}
@media only screen and (max-width: 767px) {
  .p-gal .inner.lay_block1 {
    margin-top: 4%;
  }
}
.p-gal .inner.lay_block1 .gallery-item {
  width: 100%;
}
.p-gal .inner.lay_block1 .gallery-item img {
  aspect-ratio: 1100 / 362;
}
@media only screen and (min-width: 768px) {
  .p-gal * + .lay_block6 {
    margin-top: calc(54 / 1100 * 100%);
  }
}
@media only screen and (max-width: 767px) {
  .p-gal * + .lay_block6 {
    margin-top: 4%;
  }
}
.p-gal .com_pager {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1025px) {
  .p-gal .com_pager {
    margin-top: 5.35rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .p-gal .com_pager {
    margin-top: 3.92rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-gal .com_pager {
    margin-top: 3em;
  }
}

.pswp__counter {
  display: none;
}

.box_pager {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 4em auto 0;
}
.box_pager p {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.box_pager p a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  width: 2em;
  height: 2em;
}
.box_pager p.current {
  color: var(--color-main);
  text-decoration: underline;
}
