@charset "utf-8";


/* effect
-------------------------------------------------- */

@keyframes fadeSlideImg01 {
  0% { /*開始*/
    opacity: 1;
  }
  50% { /*5秒目の指定*/
    opacity: 1;
  }
  60% {  /*6秒目の指定*/
    opacity: 0;
    transform: scale(1.2) ;
  }
  100%{ /*終了*/
    opacity: 0;
    transform: scale(1.2) ;
  }
}

@keyframes fadeSlideImg02 {
  0% { /*開始*/
    opacity: 1;
  }
  50% { /*5秒目の指定*/
    opacity: 1;
  }
  60% {  /*6秒目の指定*/
    opacity: 0;
    transform: scale(1.2) ;
  }
  100%{ /*終了*/
    opacity: 0;
    transform: scale(1.2) ;
  }
}



@keyframes fadeSlideImg03 {
	0% {
		opacity: 0;
	}

	8.33333% {
		opacity: 0;
	}

	16.66666% {
		opacity: 0;
	}

	25% {
		opacity: 0;
	}

	33.33333% {
		opacity: 0;
	}

	41.66666% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	58.33333% {
		opacity: 1;
	}

	66.66666% {
		opacity: 1;
	}

	75% {
		opacity: 0;
	}

	83.33333% {
		opacity: 0;
	}

	91.66666% {
		opacity: 0;
	}

	100% {
		opacity: 0;
		transform: scale(1.5);
	}
}

@keyframes fadeSlideImg04 {
	0% {
		opacity: 0;
	}

	8.33333% {
		opacity: 0;
	}

	16.66666% {
		opacity: 0;
	}

	25% {
		opacity: 0;
	}

	33.33333% {
		opacity: 0;
	}

	41.66666% {
		opacity: 0;
	}

	50% {
		opacity: 0;
	}

	58.33333% {
		opacity: 0;
	}

	66.66666% {
		opacity: 0;
	}

	75% {opacity: 1;
		
	}

	83.33333% {
		opacity: 1;
	}

	91.66666% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}


/* responsive
-------------------------------------------------- */

/* PC Only */

@media (min-width: 768px) {
	.pc {
		display: inline-block !important;
	}

	.sp {
		display: none !important;
	}
}

/* SP Only */

@media (max-width: 767px) {
	.pc {
		display: none !important;
	}

	.sp {
		display: inline-block !important;
	}
}


/* visual
-------------------------------------------------- */

#visual {
	position: relative;
	margin-top: 70px;
	height: 530px;
	opacity: 0;
	transition: opacity 1s;
}

.mainvisual.action {
	opacity: 1;
}

.mainvisual .hbg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.mainvisual .hbg span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background: center center no-repeat;
	background-size: cover;
}

.mainvisual .hbg span:nth-of-type(1) {
	background-image: url(../img/visual-bg1.jpg);
	background-position: center bottom;
}

.mainvisual .hbg span:nth-of-type(2) {
	background-image: url(../img/visual-bg2.jpg);
	background-position: center bottom;
}

.mainvisual .hbg span:nth-of-type(3) {
	background-image: url(../img/visual-bg1.jpg);
	background-position: center bottom;
	opacity: 0;
}

.mainvisual .hbg span:nth-of-type(4) {
	background-image: url(../img/visual-bg2.jpg);
	background-position: center 60%;
	opacity: 0;
}

.mainvisual.action .hbg span:nth-of-type(1) {
	animation: fadeSlideImg01 10s ease-out infinite;
}

.mainvisual.action .hbg span:nth-of-type(2) {
	animation: fadeSlideImg02 10s 5s ease-out infinite;
}

.mainvisual.action .hbg span:nth-of-type(3) {
	animation: fadeSlideImg03 20s ease-out infinite;
}

.mainvisual.action .hbg span:nth-of-type(4) {
	animation: fadeSlideImg04 20s ease-out infinite;
}

.mainvisual .inner {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#visual .inner h1 {
	max-width: 355px;
}

#visual .inner h1 img {
	width: 100%;
}

/* SP Only */

@media (max-width: 767px) {
	#visual {
		margin-top: 50px;
		margin-top: 13.33333vw;
		height: 450px;
		height: 120vw;
	}

	#visual .inner h1 {
		max-width: 207px;
		max-width: 55.2vw;
	}

	#visual .bg span:nth-of-type(1) {
		background-position: 84% top;
		background-size: auto 140%;
	}

	#visual .bg span:nth-of-type(2) {
		background-position: 30% bottom;
	}
}


/* gallery
-------------------------------------------------- */

#gallery {
	padding-top: 55px;
	background-color: #e5e5e5;
}

#gallery h2 {
	font-size: 24px;
	font-weight: bold;
	line-height: 1em;
	letter-spacing: 0.02em;
	text-indent: 0.02em;
	text-align: center;
}

/* SP Only */

@media (max-width: 767px) {
	#gallery {
		padding-top: 40px;
		padding-top: 10.66666vw;
	}

	#gallery h2 {
		font-size: 18px;
		font-size: 4.8vw;
		line-height: 1.35em;
	}
}

/* thumb
-------------------------------------------------- */

#thumb {
	padding: 40px 10px 50px 10px;
	transition: opacity 0.5s;
}

#thumb.hide {
	opacity: 0;
}

#thumb ul {
	margin: 0 auto;
	width: 100%;
	max-width: 1360px;
	display: flex;
	flex-wrap: wrap;
}

#thumb ul li {
	position: relative;
	margin: 1.4706% 0.7353% 0 0.7353%;
	width: 18.52942%;
	overflow: hidden;
}

#thumb ul li.hide,
#thumb ul li.off {
	display: none;
}

#thumb.landing ul li:nth-of-type(n+21) {
	display: none;
}

#thumb ul li::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	transition: transform 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

#thumb ul li.action::after {
	transform: translateX(100%);
}

#thumb ul li img {
	width: 100%;
	transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

#thumb .more {
	position: relative;
	margin: 50px auto 0 auto;
	width: 278px;
	height: 63px;
	display: none;
	overflow: hidden;
	background-color: #fff;
	border-radius: 31.5px;
}

#thumb.min .more {
	display: block;
}

#thumb .more::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: inherit;
	height: inherit;
	display: block;
	background-color: #000;
	transform: translateX(-101%);
	transition: transform 0.5s;
}

#thumb .more span {
	position: relative;
	width: inherit;
	height: inherit;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	line-height: 1em;
	cursor: pointer;
	caret-color: transparent;
	transition: color 0.5s;
}

/* PC Only */

@media (min-width: 768px) {
	#thumb ul li a:hover img {
		transform: scale(1.05);
	}

	#thumb .more:hover::before {
		transform: translateX(0);
	}

	#thumb .more:hover span {
		color: #fff;
	}
}

/* IE Only */

@media screen\0 {
	#thumb .more span {
		padding-top: 5px;
	}
}

/* SP Only */

@media (max-width: 767px) {
	#thumb {
		padding: 20px 20px 40px 20px;
		padding: 5.33333vw 5.33333vw 10.66666vw 5.33333vw;
	}

	#thumb ul {
		justify-content: space-between;
	}

	#thumb ul li {
		margin: 20px 0 0 0;
		margin: 5.33333vw 0 0 0;
		width: 157.5px;
		width: 42vw;
	}

	#thumb .more {
		margin-top: 40px;
		margin-top: 10.66666vw;
		width: 250px;
		width: 66.66666vw;
		height: 60px;
		height: 16vw;
	}

	#thumb .more span {
		font-size: 18px;
		font-size: 4.8vw;
	}
}


/* banner
-------------------------------------------------- */

#banner {
	padding-bottom: 50px;
}

#banner .wrap {
	position: relative;
	margin: 50px auto 0 auto;
	max-width: 1000px;
	height: 200px;
	overflow: hidden;
}

#banner .wrap a {
	width: 100%;
	height: inherit;
	display: block;
}

#banner .wrap .bg {
	position: absolute;
	top: 50%;
	left: 50%;
	padding-bottom: 56.25%;
	min-width: 100%;
	background-color: #000;
	transform: translate(-50%, -50%);
}

#banner .wrap .bg iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

#banner .wrap .inner {
	height: inherit;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#banner .wrap .inner h2 {
	position: relative;
	margin-top: 5px;
}

#banner .wrap .inner h2 img {
	width: 100%;
}

#banner .wrap .inner h3 {
	position: relative;
	margin-top: 15px;
	color: #fff;
	font-size: 15px;
	line-height: 1.6em;
	letter-spacing: 0.02em;
	text-indent: 0.02em;
}

#banner .wrap .inner .button {
	position: absolute;
	bottom: 23px;
	right: 26px;
	width: 174px;
	height: 47px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	line-height: 1em;
	letter-spacing: 0.02em;
	text-indent: 0.02em;
	background-color: #fff;
	border-radius: 23.5px;
	transition: color 0.3s, background 0.3s;
}

/* PC Only */

@media (min-width: 768px) {
	#banner .wrap a:hover .bg iframe {
		transform: scale(1.04);
	}

	#banner .wrap a:hover .inner .button {
		color: #fff;
		background-color: #000;
	}
}

/* IE Only */

@media screen\0 {
	#banner .wrap .inner .button {
		padding-top: 5px;
	}
}

/* SP Only */

@media (max-width: 767px) {
	#banner {
		padding-bottom: 40px;
		padding-bottom: 10.66666vw;
	}

	#banner .wrap {
		margin: 40px auto 0 auto;
		margin: 10.66666vw auto 0 auto;
		max-width: 335px;
		max-width: 89.33333vw;
		height: 160px;
		height: 42.66666vw;
	}

	#banner .wrap .inner h2 {
		margin-top: 0;
		max-width: 110px;
		max-width: 29.33333vw;
	}

	#banner .wrap .inner h3 {
		margin-top: 12px;
		margin-top: 3.2vw;
		font-size: 11px;
		font-size: 2.93333vw;
	}

	#banner .wrap .inner .button {
		position: relative;
		margin-top: 15px;
		margin-top: 4vw;
		bottom: auto;
		right: auto;
		width: 124px;
		width: 33.06666vw;
		height: 36px;
		height: 9.6vw;
		font-size: 11px;
		font-size: 2.93333vw;
		border-radius: 18px;
		border-radius: 4.8vw;
	}
}


/* modal
-------------------------------------------------- */

body.modal {
	height: 100%;
	overflow: hidden;
}

#modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	overflow-x: hidden;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	opacity: 0;
	background-color: rgba(255, 255, 255, 0.95);
	z-index: -1;
	transition: visibility 0.5s, opacity 0.5s, z-index 0.5s;
}

body.modal #modal {
	visibility: visible;
	opacity: 1;
	z-index: 100;
}

#modal .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
}

#modal .wrap {
	position: relative;
	padding: 80px 0 60px 0;
	max-width: 106vh;
	width: 93%;
}

#modal .photo {
	position: relative;
	margin: 0 auto;
	max-width: 1000px;
}

#modal .photo .image {
	position: relative;
	text-align: center;
}

#modal .photo .image img {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 100%;
	display: block;
	transition: visibility 0.5s, opacity 0.5s, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#modal .photo .image img.back,
#modal .photo .image img.left {
	visibility: hidden;
	opacity: 0;
	transform: translateX(-100%);
}

#modal .photo .image img.go,
#modal .photo .image img.right {
	visibility: hidden;
	opacity: 0;
	transform: translateX(100%);
}

#modal .photo .image img.current,
#modal .photo .image img.center {
	position: relative;
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
}

#modal .photo .image img.vertical {
	margin: 0 27.75%;
	width: 44.5%;
	height: 100%;
}

#modal .photo nav .prev,
#modal .photo nav .next {
	position: absolute;
	top: 0;
	width: 48px;
	height: 667px;
	max-height: 73.37vh;
}

#modal .photo nav .prev {
	left: -60px;
}

#modal .photo nav .next {
	right: -60px;
}

#modal .photo nav .prev span,
#modal .photo nav .next span {
	position: absolute;
	top: 50%;
	margin-top: -28.5px;
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	caret-color: transparent;
}

#modal .photo .prev span {
	padding-left: 16px;
}

#modal .photo .next span {
	padding-right: 16px;
}

#modal .photo .prev span::before,
#modal .photo .next span::before {
	content: "";
	width: 30px;
	height: 30px;
	border-top: #000 1px solid;
	border-right: #000 1px solid;
}

#modal .photo .prev span::before {
	transform: rotate(-135deg);
}

#modal .photo .next span::before {
	transform: rotate(45deg);
}

#modal .photo nav .prev span.off,
#modal .photo nav .next span.off {
	pointer-events: none;
	opacity: 0.5;
}

#modal .photo .detail {
	margin-top: 8px;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.4s, opacity 0.4s;
}

#modal .photo .detail.show {
	visibility: visible;
	opacity: 1;
}

#modal .photo .detail .exif,
#modal .photo .detail .info {
	margin: 0 auto;
	height: 1em;
	display: block;
	font-size: 12px;
	line-height: 1em;
	letter-spacing: 0.02em;
	text-align: right;
}

#modal .photo .detail .info {
	margin-top: 8px;
}

#modal .photo.vertical .detail .exif,
#modal .photo.vertical .detail .info {
	width: 44.5%;
}

#modal .photo .detail ul {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	border-right: #000 1px solid;
}

#modal .photo .detail ul li {
	flex: auto;
	text-align: center;
	border-left: #000 1px solid;
}

#modal .photo .detail ul li .inner {
	padding: 2px 0;
	display: inline-block;
	font-size: 14px;
	line-height: 1.5em;
	letter-spacing: 0.02em;
	text-indent: 0.02em;
	background: left center no-repeat;
	background-size: auto 100%;
}

#modal .photo .detail ul li.camera .inner {
	padding-left: 46px;
	background-image: url(../img/index/modal-icon-camera.png);
}

#modal .photo .detail ul li.lens .inner {
	padding-left: 44px;
	background-image: url(../img/index/modal-icon-lens.png);
}

#modal .photo .detail ul li.lens .inner .accessory {
	margin-left: 0.5em;
}

#modal .photo .detail ul li.photographer .inner {
	padding-left: 34px;
	background-image: url(../img/index/modal-icon-photographer.png);
}

#modal .close {
	position: absolute;
	top: -61px;
	right: 0;
	width: 34px;
	height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

#modal .close::before,
#modal .close::after {
	content: "";
	width: 1px;
	height: 135%;
	background-color: #000;
}

#modal .close::before {
	margin-right: -0.5px;
	transform: rotate(-45deg);
}

#modal .close::after {
	margin-left: -0.5px;
	transform: rotate(45deg);
}

/* PC Only */

@media (min-width: 768px) {
	#modal .photo .image::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	#modal .photo .detail {
		max-width: 1000px;
	}

	#modal .photo .prev span::before,
	#modal .photo .next span::before {
		transition: transform 0.2s cubic-bezier(0.5, 1, 0.89, 1);
	}

	#modal .photo .prev span:hover::before {
		transform: translateX(-20%) rotate(-135deg);
	}

	#modal .photo .next span:hover::before {
		transform: translateX(20%) rotate(45deg);
	}

	#modal .close {
		transition: transform 0.2s cubic-bezier(0.5, 1, 0.89, 1);
	}

	#modal .close:hover {
		transform: scale(1.2);
	}
}

/* IE Only */

@media screen\0 {
	#modal .photo .detail ul li span {
		padding: 6px 0 0 0;
	}
}

/* Break 1200px */

@media (max-width: 1200px) {
	#modal .photo nav {
		margin-top: 40px;
		display: flex;
		justify-content: center;
	}

	#modal .photo nav .prev,
	#modal .photo nav .next {
		position: static;
		width: auto;
		height: auto;
		max-height: none;
	}

	#modal .photo nav .prev span,
	#modal .photo nav .next span {
		position: static;
		margin: 0 10px;
		width: 48px;
		height: 48px;
		border-width: 1px;
	}

	#modal .photo nav .prev span::before,
	#modal .photo nav .next span::before {
		width: 30px;
		height: 30px;
		border-width: 1px;
	}

	#modal .photo nav .prev span::before {
		margin-left: 4px;
	}

	#modal .photo nav .next span::before {
		margin-right: 4px;
	}

	#modal .photo .detail {
		position: static;
	}
}

/* SP Only */

@media (max-width: 767px) {
	#modal .wrap {
		padding: 60px 0 30px 0;
		padding: 16vw 0 8vw 0;
		width: 335px;
		width: 89.33333vw;
	}

	#modal .photo .image {
		padding-top: 0;
		height: 59.55556vw;
		transition: height 0.3s;
	}

	#modal .photo.vertical .image {
		width: 100%;
		height: 107.12067vw;
	}

	#modal .photo .image img {
		width: 100%;
		height: auto;
		max-height: none;
	}

	#modal .photo .image img.vertical {
		margin: 0 10%;
		width: 80%;
		height: 107.12067vw;
	}

	#modal .photo .image img.current,
	#modal .photo .image img.center {
		position: absolute;
	}

	#modal .photo nav {
		margin-top: 15px;
		margin-top: 4vw;
	}

	#modal .photo nav .prev span,
	#modal .photo nav .next span {
		width: 40px;
		width: 10.66666vw;
		height: 40px;
		height: 10.66666vw;
	}

	#modal .photo nav .prev span::before,
	#modal .photo nav .next span::before {
		width: 20px;
		width: 5.33333vw;
		height: 20px;
		height: 5.33333vw;
	}

	#modal .photo nav .prev span::before {
		margin-left: 4px;
		margin-left: 1.06666vw;
	}

	#modal .photo nav .next span::before {
		margin-right: 4px;
		margin-right: 1.06666vw;
	}

	#modal .photo .detail {
		justify-content: flex-start;
		font-size: 11px;
		font-size: 2.93333vw;
	}

	#modal .photo .detail .exif. #modal .photo .detail .info {
		font-size: 10px;
		font-size: 2.66666vw;
	}

	#modal .photo .detail .info {
		margin-top: 5px;
		margin-top: 1.33333vw;
	}

	#modal .photo.vertical .detail .exif,
	#modal .photo.vertical .detail .info {
		width: 80%;
	}

	#modal .photo .detail ul {
		margin-top: 10px;
		margin-top: 2.66666vw;
	}

	#modal .photo .detail ul li .inner {
		font-size: 11px;
		font-size: 2.93333vw;
		background-position: center top;
		background-size: auto 18px;
		background-size: auto 4.8vw;
	}

	#modal .photo .detail ul li.camera .inner {
		padding: 22px 0 0 0;
		padding: 5.86666vw 0 0 0;
		background-image: url(../img/index/modal-icon-camera.png);
	}

	#modal .photo .detail ul li.lens .inner {
		padding: 22px 0 0 0;
		padding: 5.86666vw 0 0 0;
		background-image: url(../img/index/modal-icon-lens.png);
	}

	#modal .photo .detail ul li.lens .inner .accessory {
		display: block;
	}

	#modal .photo .detail ul li.photographer .inner {
		padding: 22px 0 0 0;
		padding: 5.86666vw 0 0 0;
		background-image: url(../img/index/modal-icon-photographer.png);
	}

	#modal .close {
		top: -40px;
		top: -10.66666vw;
		width: 22px;
		width: 5.86666vw;
		height: 22px;
		height: 5.86666vw;
	}
}