@charset "UTF-8";

/* ----------------------------------------------------
	galleryMain
---------------------------------------------------- */
.mainGallery {
	padding: 5em 0;
}

.mainGallery .mainTitle {
	margin: 0 auto 2em;
	max-width: 250px;
	width: 22.72013%;
}

.mainGallery .mainGallery_lead {
	text-align: center;
}

.mainGallery .mainGallery_lead dt {
	margin-bottom: 1em;
	font-size: 34px;
}

.mainGallery .mainGallery_lead dd {
	margin-bottom: 3em;
}

@media(max-width:768px) {
	.mainGallery .mainTitle {
		max-width: 180px;
		width: 100%;
	}

	.mainGallery .mainGallery_lead dt {
		font-size: 5.59896vw;
	}
}

/*
	gallery_list
------------------------------ */
.gallery_modal {
	background: rgba(0, 0, 0, 0.85);
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2000;
	display: none;
}

.gallery_list {
	margin: 0 auto;
	max-width: 1000px;
}

.gallery_list .gallery_item {
	padding: 0 25px;
	max-width: 1000px;
	width: 100%;
	height: 100vh;
}

.gallery_list .gallery_item .wrap {
	padding: 0 30px;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media(max-width:768px) {
	.gallery_list .gallery_item .wrap {
		padding: 0;
	}
}

/* image(横長、正方形) */
.gallery_list .gallery_item .wrap .gallery_image {
	width: 100%;
	height: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* image(縦長) */
.gallery_list .gallery_item .wrap .gallery_image.vertical {
	padding: 1em 0;
}

.gallery_list .gallery_item .wrap .gallery_image.vertical img {
	margin: 0 auto;
	width: auto;
	height: 100%;
}

@media(max-width:768px) {
	.gallery_list .gallery_item .wrap .gallery_image.vertical img {
		width: 100%;
		height: auto;
	}
}

/* movie */
.gallery_list .gallery_item .wrap .gallery_mov {
	padding-top: 56.25%;
	width: 100%;
	display: flex;
	position: relative;
}

.gallery_list .gallery_item .wrap .gallery_mov iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

/* caotion */
.gallery_list .gallery_item .wrap .caption {
	margin-top: 1em;
	color: #fff;
}

/* close */
.gallery_modal .close {
	position: fixed;
	top: 1em;
	right: 1em;
	cursor: pointer;
}

.gallery_modal .close span {
	width: 36px;
	height: 36px;
	display: block;
	position: relative;
}

.gallery_modal .close::before,
.gallery_modal .close::after {
	background: #fff;
	width: 100%;
	height: 2px;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 100;
	content: "";
}

.gallery_modal .close::before {
	transform: rotate(45deg);
}

.gallery_modal .close::after {
	transform: rotate(-45deg);
}

/* arrow */
.slick-arrow {
	width: 18px;
	height: 18px;
	display: inline-block;
	z-index: 100;
}

.slick-arrow::before {
	display: none;
}

.slick-prev {
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	left: 5px;
}

.slick-next {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	right: 5px;
}

/*
	tmb_list
------------------------------ */
.tmb_list {
	padding: 0.5em 0.5em 0.5em 0;
}

.tmb_list .slick-track {
	width: 100% !important;
	display: flex;
	flex-wrap: wrap;
}

.tmb_list li {
	padding: 0.5em;
	width: 25% !important;
	overflow: hidden;
	position: relative;
}

.tmb_list li.mov::after {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 20px;
	border-color: transparent transparent transparent #ffffff;
	display: block;
	position: absolute;
	bottom: 1em;
	left: 1em;
	content: "";
}

.tmb_list li img {
	cursor: pointer;
}

@media(max-width:768px) {
	.tmb_list {
		padding: 1em 0.25em;
	}

	.tmb_list li {
		padding: 0.25em;
		width: 50% !important;
	}

	.tmb_list li img {
		cursor: pointer;
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: rgba(18, 23, 44, 1);
	color: #fff;
}

.footer .copy {
	margin-top: 0;
}