@charset "UTF-8";

/* -------------------------- PC/Tablet/SmartPhone ------------------- */



/* -------------------------- PC/Tablet ------------------------------------- */
@media print,screen and (min-width:768px){
	.container-thumbnail {
		/*max-width: 1200px; */
		width: 80%;
	}
	.item {
    font-size: 18px;
    line-height: 2.25;
    letter-spacing: 2px;
    text-align: justify; 	/* 両端揃え */
	}

/* ---------------------------------------------- */
/*			work_list																	*/
/* ---------------------------------------------- */

	.work_list li {
		float: left;
		width: 20vw;
		/* max-width: 425px; */

		margin-left: 1.8vw;		/* 1.8vw */
		margin-right: 1.8vw;
		margin-top: 1.8vw;
		margin-bottom: 1.8vw;
	}

	.fadeIn.is-visible {
		opacity: 1;
		-webkit-transform: scale(1) translate3d(0, 0, 0);
		transform: scale(1) translate3d(0, 0, 0);
	}
	.workList_item {
		width: 33.3%;
		display: block;
		-webkit-transform: translate3d(0, 30px, 0);
		transform: translate3d(0, 30px, 0);
	}

	.fadeIn {
		opacity: 0;
		-webkit-transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1),-webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
		transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1),transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	a:active, a:hover {
		outline: 0;
	}

	.workList_link {
    display: block;
    position: relative;
	}

	.workList_item_inr {
    position: relative;
    margin: 0;
    -webkit-transition: background 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: background 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 16%);
    overflow: hidden;
    padding: 0 0 56px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
	}

	a {
		color: #000;
		text-decoration: none;
		background-color: transparent;
	}
	a:-webkit-any-link {
		 cursor: pointer;
	}

	.workList_link:hover .workList_img_wrap {
		-webkit-transform: scale(1.05, 1.05);
		-ms-transform: scale(1.05, 1.05);
		transform: scale(1.05, 1.05);
	}
	.workList_item.has-loaded .workList_img_wrap {
		opacity: 1;
	}
	.workList_img_wrap {
    position: relative;
    z-index: 1;
    opacity: 0;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 67% 0 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1),opacity 0.36s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1),opacity 0.36s cubic-bezier(0.215, 0.61, 0.355, 1);
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%;
}

.workList_item_inr .tatenaga {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}
.workList_link:hover .workList_caption {
    opacity: 1;
}
.workList_caption {
    position: absolute;
    z-index: 2;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 51px;		/* 56px */
    background: #fff;
    border-radius: 0 0 6px 6px;
}
.workList_txt {
    color: #000;
    text-align: left;
    padding-top: 5px;
    padding-right: 30px;
    padding-bottom: 0px;
    padding-left: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.picture_size {
    color: #000;
    text-align: right;
    padding-right: 35px;
    padding-left: 35px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}



/* ---------------------------------------------- */
/*			modal-wrapper															*/
/* ---------------------------------------------- */
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 70%;
  max-width: 800px;		/* 600px */
  padding-top: 27px;
  padding-right: 27px;
  padding-bottom: 0px;
  padding-left: 27px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

.modal-content img {
	width: 100%;
}

.tatenaga img {
	width: 60%;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important
}

.picture_size.tatenaga {
	max-width: 82%;
}
}



/* -------------------------- PC ------------------------------------- */
@media (min-width: 1021px) {

}

/* -------------------------- Tablet ----------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1020px) {

}

/* -------------------------- SmartPhone ----------------------------- */
@media (max-width: 767px) {
	.slider {
		width: 100%;
		/* height: 125vw; */
	}

	#active-c {
		text-align: center;
	}
	#active-ps {
		font-size: 1.0rem;
		text-align: right;
		padding-right: 3.5vw;
	}
}