@charset "utf-8";

/* -----------------------------------------------------
 Page Title
------------------------------------------------------- */
#Container {
	position: relative;
}

.icon-loading {
	width: 60px;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	color: #fff;
	transition: .1s linear;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.is-clicked .icon-loading {
	opacity: 1;
}
.icon-loading span,
.icon-loading:before,
.icon-loading:after {
	content: "";
	width: 25%;
	height: 0;
	padding-top: 25%;
	display: inline-block;
	background: currentColor;
	border-radius: 50%;
	-webkit-animation: loading 1.4s infinite 0s;
	animation: loading 1.4s infinite 0s;
}

.icon-loading span {
	margin: 0 12.5%;
	-webkit-animation-delay: .2s;
	animation-delay: .2s;
}

.icon-loading:after {
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
}

@-webkit-keyframes loading {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0;
  }
}

@keyframes loading {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0;
  }
}
/*----------------------------------------------------------
 *      メインビジュアル
 *---------------------------------------------------------- */
.main-visual {
	background: url("../../gallery/_img/mv.jpg") center center/cover;
}
@media only screen and (max-width: 768px) {
	.main-visual {
		background: url("../../gallery/_img/mv_sp.jpg") center center/cover;
	}
}

/* -----------------------------------------------------
 ナビ
------------------------------------------------------- */
.gallery__choice--list {
  /*margin-bottom: 30px;*/
  /*margin-bottom: 9.375vw;*/
	margin: -120px 0 20px 0;
	padding: 40px 0 20px 0;
	background: #eff4f2;
}
.gallery__choice--title {
  font-size: 13px;
  font-size: 4.0625vw;
  font-weight: bold;
}
.gallery__choice--title img {
  width: 17px;
  width: 5.3125vw;
  margin-right: 7px;
  margin-right: 2.1875vw;
  display: inline-block;
  vertical-align: middle;
}
.gallery__choice--item:nth-child(1) .gallery__choice--title img {
  vertical-align: -2px;
  vertical-align: -.6250vw;
}
.gallery__choice {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.gallery__choice li {
  padding: 2px 0;
  padding: .6250vw 0;
}
.gallery__choice li:after {
  margin-left: 6px;
  margin-left: 1.875vw;
}

@media screen and (max-width: 768px) {
	.gallery__choice--list {
		margin: 0;
		padding: 20px;
	}
  .gallery__choice--item + .gallery__choice--item {
    margin-top: 16px;
    margin-top: 5vw;
  }
  .gallery__choice--title {
    margin-bottom: 20px;
    margin-bottom: 6.25vw;
  }
  .gallery__choice {
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .gallery__choice li {
    width: 270px;
    width: 42.1875vw;
  }
  .gallery__choice li:nth-child(n+3) {
    margin-top: 10px;
    margin-top: 3.125vw;
  }
}

@media screen and (min-width: 769px) {
  .gallery__choice--list {
    margin-bottom: 60px;
  }
  .gallery__choice--item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	
	width: 1120px;
	margin: 0 auto;
  }
  .gallery__choice--item:first-child .gallery__choice--title,
  .gallery__choice--item:first-child .gallery__choice {
    padding-top: 18px;
  }
  .gallery__choice--item:last-child .gallery__choice--title,
  .gallery__choice--item:last-child .gallery__choice {
    padding:0 0 18px 0;
  }
  .gallery__choice--item + .gallery__choice--item .gallery__choice--title,
  .gallery__choice--item + .gallery__choice--item .gallery__choice {
    padding-top: 40px;
  }
  .gallery__choice--title {
    width: 205px;
    font-size: 16px;
  }
  .gallery__choice--title img {
    width: 28px;
    margin-right: 8px;
  }
  .gallery__choice--item:nth-child(1) .gallery__choice--title img {
    vertical-align: -2px;
  }
  .gallery__choice {
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 34px;
    border-left: 1px solid #111;
    box-sizing: border-box;
  }
  .gallery__choice li {
    width: 160px;
    margin-left: 20px;
    padding: 7px 0;
    box-sizing: border-box;
  }
  /*.gallery__choice li:nth-child(n+6) {
    margin-top: 20px;
  }*/
  /*.gallery__choice li:nth-child(5n+1) {
    margin-left: 0;
  }*/
  .gallery__choice li:after {
    width: 8px;
    height: 8px;
    margin-left: 10px;
  }
}

/* 選択する角丸のやつ */
.c-choice {
  position: relative;
	display:flex;
	justify-content:space-around;
}
.c-choice li {
  padding: 7px 0;
  padding: 2.1875vw 0;
  /*color: #413023;*/
  /*font-size: 12px;
  font-size: 3.75vw;*/
	font-size:1em;
  text-align: center;
  border-radius: 9999px;
  border: 1px solid #fff;
  cursor: pointer;
  transition: .15s;
	
	width: calc(45%);
	margin-bottom: 5px;
	background:#fff;
	color: #111111;
}
.c-choice li.li-blanc {
	opacity: 1;
	display:none;
}
.c-choice li:after {
  /*content: '';
  width: 6px;
  width: 1.875vw;
  height: 6px;
  height: 1.875vw;
  margin-left: 8px;
  margin-left: 2.5vw;
  display: inline-block;
  border-bottom: 1px solid #413023;
  border-right: 1px solid #413023;
  -webkit-transform: translateY(-40%) rotate(45deg);
      -ms-transform: translateY(-40%) rotate(45deg);
          transform: translateY(-40%) rotate(45deg);
  box-sizing: border-box;
  transition: .15s;*/
}
.c-choice li:hover,
.c-choice li.is-active {
	color: #fff;
	background-color: #7bc99b;
	border-color: #7bc99b;
}
.c-choice li:hover:after,
.c-choice li.is-active:after {
  border-color: #7bc99b;
}
.c-choice li em {
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .c-choice li {
    padding: 12px 0;
    font-size: 16px;
	
	width: calc(22%);
	margin-bottom: 18px;
  }
	.c-choice li.li-blanc {
	opacity: 0;
	display:block;
}
  .c-choice li:after {
    /*content: '';
    width: 10px;
    height: 10px;
    margin-left: 10px;
    -webkit-transform: translateY(-35%) rotate(45deg);
        -ms-transform: translateY(-35%) rotate(45deg);
            transform: translateY(-35%) rotate(45deg);*/
  }
}
.page__inside {
  padding-top: 25px;
  padding-top: 7.8125vw;
  padding-bottom: 30px;
  padding-bottom: 9.375vw;
	padding: 0 6.25%;
}
@media screen and (min-width: 769px) {
  .page__inside {
    width: 1120px;
    margin: 0 auto;
    padding: 0;
  }
}

/*----------------------------------------------------------
 *      フォトギャラリー　レイアウト
 *---------------------------------------------------------- */
.gallery__area {
	margin-top: 80px;
}
.gallery__area__wrap h1 {
	margin: 9px 0 0 0;
	font-weight: bold;
	letter-spacing: 0.05rem; }
.gallery__area__wrap .description {
	margin: 0 0 52px 0;
	line-height: 1.8;
	text-align: center;
}
.area .index__list__wrap {
	margin: 0 0 20px 0;
	padding: 40px 0 20px 0;
	background: #eff4f2;
}
.area .index__list__wrap .category__group__wrap {
	width: 1120px;
	margin: 0 auto;
}
.area .index__list__wrap h2 {
	display: block;
	float: left;
	position: relative;
	width: 200px;
	margin: 20px 0 0 0;
	padding: 0 0 0 35px;
	font-weight: bold;
}
.area .index__list__wrap .category__tenpo:before {
	content: " ";
	display: block;
	position: absolute;
	top: -2px;
	left: 0;
	width: 25.312px;
	height: 21px;
	background: url("../gallery/images/tenpo__icon.svg") no-repeat;
}
.area .index__list__wrap .category__naiyo:before {
	content: " ";
	display: block;
	position: absolute;
	top: -1px;
	left: 0;
	width: 26px;
	height: 21px;
	background: url("../gallery/images/photo__icon.svg") no-repeat;
}
.area .index__list__wrap ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 0 204px;
	padding: 10px 0 20px 25px;
	border-left: 1px solid #111111;
}
.area .index__list__wrap ul.low {
	padding: 10px 0 0 25px;
}
.area .index__list__wrap li {
	flex-basis: calc(100%/4 - 20px);
	margin: 0 10px 20px 10px;
}
.area .index__list__wrap a {
	display: block;
	position: relative;
	width: 100%;
	height: 40px;
	padding: 10px 0 0 0;
	background: #fff;
	border-radius: 20px;
	font-size: 1.066rem;
	text-align: center;
	color: #111111;
}
.area .index__list__wrap a:hover {
	background-color: #7bc99b;
	color: #fff;
}
.area .index__list__wrap .is-active a {
	padding: 9px 0 0 0;
	border: 2px solid #7bc99b;
	color: #7bc99b;
}
.area .index__list__wrap .is-active a:hover {
	color: #fff;
}
.area .index__list__wrap .is-active a:focus {
	text-decoration: none;
}
.area .index__list__wrap .modal__close {
	width: 46px !important;
	height: 3px !important;
	margin-left: -23px !important;
}
.inside__page {
	padding: 0 0 20px 0 !important;
}
.gallery__list img, .slick-track img {
	width: 100%;
}


@media only screen and (max-width: 768px) {
	.gallery__area {
		margin-top: 0;
	}
	.gallery__area__wrap h1 {
		margin: 6px 0 0 0;
		font-size: 0.769rem;
	}
	.gallery__area__wrap .description {
		margin: 0 20px 29px 20px;
		line-height: 1.53;
		text-align: left;
	}
	.gallery__area .index__list__wrap {
		margin: 0 0 10px 0;
		padding: 23px 0 12px 0;
	}
	.gallery__area .index__list__wrap .category__group__wrap {
		width: 100%;
		padding: 0 15px;
	}
	.gallery__area .index__list__wrap h2 {
		float: none;
		margin: 5px 0 10px 0;
		padding: 0 0 0 25px;
	}
	.gallery__area .index__list__wrap .category__tenpo:before {
		top: -1px;
		width: 19.5px;
		height: 15.015px;
		background: url("../gallery/images/tenpo__icon--sp.svg") no-repeat;
	}
	.gallery__area .index__list__wrap .category__naiyo:before {
		width: 19.5px;
		height: 15.015px;
		background: url("../gallery/images/photo__icon--sp.svg") no-repeat;
	}
	.gallery__area .index__list__wrap ul {
		margin: 0 0 0 0;
		padding: 5px 0 10px 0;
		border: none;
	}
	.gallery__area .index__list__wrap ul.low {
		padding: 5px 0 0 0;
	}
	.gallery__area .index__list__wrap li {
		flex-basis: calc(100%/3 - 10px);
		margin: 0 5px 10px 5px;
	}
	.gallery__area .index__list__wrap a {
		height: 30px;
		padding: 8px 0 0 0;
		font-size: 0.846rem;
	}
	.gallery__area .index__list__wrap .is-active a {
		padding: 7px 0 0 0;
	}
	.gallery__area .index__list__wrap .modal__close {
		width: 30px !important;
		height: 2px !important;
		top: 17px !important;
		right: 17px !important;
	}
	.gallery__area .index__list__wrap .modal__close:before, .gallery__area .index__list__wrap .modal__close:after {
		width: 30px !important;
		height: 2px !important;
	}
	.inside__page {
		padding: 0 0 10px 0 !important;
	}
	
}

/* -----------------------------------------------------
 ギャラリー（前撮りより移植した部分）
------------------------------------------------------- */
.gallery__wrap {
  /*position: relative;*/
  min-height: 1200px;
  min-height: 100vh;
}
.gallery__wrap .icon-loading {
  top: 100px;
  transition: .7s linear .3s;
}
.gallery__wrap.is-active .icon-loading {
  opacity: 0;
}
.gallery__transit {
  opacity: 0;
  transition: .8s;
}
.gallery__wrap.is-active .gallery__transit {
  opacity: 1;
}
.gallery__list {
  margin: -1px;
  margin: -0.3125vw;
}
.gallery__item {
  width: 50%;
  padding: 1px;
  padding: 0.3125vw;
  line-height: 0;
  box-sizing: border-box;
}

@media screen and (min-width: 769px) {
  .gallery__list {
    margin: -10px;
  }
  .gallery__item {
    width: 33.3%;
    width: calc(100% / 3);
    padding: 10px;
  }
  .gallery__wrap .icon-loading {
    width: 100px;
    opacity: 1;
    color: #000;
  }
}

/* -----------------------------------------------------
 Modal
------------------------------------------------------- */
.modal__common {
  visibility: hidden;
  opacity: 0;
  transition: opacity .15s linear, z-index .15s .15s, visibility .15s .15s;
}
.modal__common.is-active {
  visibility: visible;
  opacity: 1;
  transition: opacity .15s linear;
}
.modal__overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -100;
  position: absolute;
  position: fixed;
  z-index: 100;
  background: rgba(21, 11, 3, .9);
  cursor: pointer;
}
.modal__overlay.is-active {
  z-index: 9999;
}
.modal__body {
  position: absolute;
  z-index: -1000;
}
.modal__body.is-active {
  z-index: 9999;
}
.modal__close {
  width: 30px;
  width: 9.38vw;
  height: 30px;
  height: 9.38vw;
  position: fixed;
  z-index: -10000;
  top: 25px;
  top: 7.81vw;
  right: 20px;
  right: 6.25vw;
  cursor: pointer;
}
.modal__close.is-active {
  z-index: 10000;
}
.modal__close:before,
.modal__close:after {
  content: '';
  width: 43px;
  width: 13.4375vw;
  height: 1px;
  height: 0.3125vw;
  position: absolute;
  background: #fff;
  top: 50%;
  left: 0;
}
.modal__close:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal__close:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 769px) {
  .modal__close {
    width: 60px;
    height: 60px;
    top: 40px;
    right: 26px;
  }
  .modal__close:before,
  .modal__close:after {
    width: 84px;
    height: 1px;
    top: 50%;
    left: 50%;
    margin-left: -42px;
  }
}

/* -----------------------------------------------------
 Zoom
------------------------------------------------------- */
.zoom {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1000;
  opacity: 0;
  top: 0;
  left: 0;
}
.is-active .zoom {
  z-index: 9999;
}
.zoom .icon-loading {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.zoom.is-loaded .icon-loading  {
  opacity: 0;
}
.zoom__area {
  z-index: -1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1000;
  overflow: hidden;
  box-sizing: border-box;
  transition: .2s linear;
}
.is-active .zoom__area{
  z-index: 9999;
}
.zoom__item {
  width: 100vw;
  padding: 20px 0;
  box-sizing: border-box;
}
.zoom__item--inside,
.zoom__item > img {
  opacity: 0;
}
.zoom.is-loaded .zoom__item--inside,
.zoom.is-loaded .zoom__item > img {
  opacity: 1;
  transition: .2s linear;
	max-height: 95vh;
}
@media screen and (max-width: 768px){
	.zoom.is-loaded .zoom__item--inside,
	.zoom.is-loaded .zoom__item > img{
		max-width: 90vw;
		margin: 0 auto;
	}
}


.zoom__title {
  margin-bottom: 20px;
  margin-bottom: 6.25vw;
  font-size: 14px;
  font-size: 4.38vw;
  color: #fff;
}
.zoom__title span {
  display: block;
  font-size: 10px;
  font-size: 3.13vw;
  text-indent: -.5em;
}
.zoom__image {
  margin-bottom: 15px;
  margin-bottom: 4.69vw;
}
.zoom__desc {
  font-size: 11px;
  font-size: 3.44vw;
  line-height: 1.6;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .zoom__title {
    min-height: 40px;
    min-height: 12.5vw;
    padding-left: 20px;
    padding-left: 6.25vw;
  }
  .zoom__desc {
    padding-left: 20px;
    padding-left: 6.25vw;
  }
  .zoom .slick-arrow {
    display: none!important;
  }
}
@media screen and (min-width: 769px) {
  .zoom__item {
    padding: 30px 0 0;
  }
  .zoom__item--inside {
    width: 720px;
    margin: 0 auto;
  }
  .zoom__title {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
  .zoom__title span {
    font-size: 1.5rem;
  }
  .zoom__image {
    margin-bottom: 30px;
  }
  .zoom__desc {
    font-size: 1.5rem;
  }
  .zoom .slick-arrow {
    position: fixed;
    z-index: 9999;
    top: 50%;
    background: none;
    border: none;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    cursor: pointer;
  }
  .arrow-prev {
    left: 27px;
  }
  .arrow-next {
    right: 27px;
  }
  .zoom .slick-arrow:focus {
    outline: none;
  }
  .zoom .icon-loading {
    width: 100px;
  }
}

@media screen and (min-width: 769px) {
  .zoom__item {
    text-align: center;
  }
  .zoom__item.portrait {
    height: 100%;
    padding: 30px 0;
    box-sizing: border-box;
  }
  .zoom__item img {
    width: auto;
    max-width: 1120px;
    display: inline-block;
  }
  .zoom__item.portrait img {
    height: 100%;
  }
}