@charset "UTF-8";
/* CSS Document */


/******************************************************

PC設定 1200px以上の場合に適用 

*******************************************************/

/* mv */
.mv {
	background-image: url("/img/works/mv.jpg");
}



/* pageTitle */
.pageTitle__h1 {
	font-size: 40px!important;
}

.pageTitle__date {
	text-align: center;
	color: #AAA;
}



/* thumbnail */
.thumbnail {
	width: calc(100% - 140px);
	margin: 0 auto;
	position: relative;
}

.thumbnail::before {
	display: block;
	content: "";
	padding-top: 60%;
}

.thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	max-width: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .2s;
}



/* gallery */
.gallery {
	background-color: #F9F9F9;
}

.gallery__box--new {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.gallery__box--new::before{
  content: "";
  display: block;
  width: 23%;
  order: 1;
}

.gallery__box--new::after{
  content: "";
  display: block;
  width: 23%;
}

.gallery__box--new li {
	width: 23%;
	position: relative;
	margin-bottom: 40px;
	display: block;
	transition: .2s;
	overflow: hidden;
}

.gallery__box--new li::before {
	display: block;
	content: "";
	padding-top: 100%;
}

.gallery__box--new li img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	max-width: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .2s;
}

.gallery__box--new li img:hover {
	-webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.gallery__box--reform {
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
	position: relative;
}

.gallery__box--reform::after {
	display: inline-block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 26px solid #ec9821;
	border-right: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.gallery__box--reform li {
	width: calc(50% - 40px);
	position: relative;
}

.gallery__box--reform li img {
	display: block;
	width: 100%;
	height: auto;
}

.gallery__txt-before {
	position: absolute;
	background-color: #80dd80;
	width: 100px;
	text-align: center;
	color: #FFF;
	left: 0;
	bottom: 0;
	font-size: 24px;
	font-weight: 600;
}

.gallery__txt-after {
	position: absolute;
	background-color: #019064;
	width: 100px;
	text-align: center;
	color: #FFF;
	left: 0;
	bottom: 0;
	font-size: 24px;
	font-weight: 600;
}



/* outline */
.outline__tbl {
	width: 100%;
	border-top: 1px solid #DDD;
}

.outline__tbl tr th {
	width: 30%;
	padding: 20px;
	border-bottom: 1px solid #DDD;
	font-weight: 600;
}

.outline__tbl tr td {
	width: 70%;
	padding: 20px;
	border-bottom: 1px solid #DDD;
	line-height: 1.8;
}



/******************************************************

タブレットの設定 960px~1199pxの場合に適用 

*******************************************************/

@media screen and (max-width: 1199px){




	
	
}



/******************************************************

タブレットの設定 768px~959pxの場合に適用 

*******************************************************/

@media screen and (max-width: 959px){


	
	

}



/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

@media screen and (max-width: 767px){

/* pageTitle */
.pageTitle__h1 {
	font-size: 20px!important;
}
	
.pageTitle__date {
	font-size: 12px;
}



/* thumbnail */
.thumbnail {
	width: 100%;
}

.thumbnail::before {
	padding-top: 65%;
}



/* gallery */
.gallery {
	padding-bottom: 30px;
}
	
.gallery__box--new {
	margin-bottom: 15px;
}
	
.gallery__box--new li {
	width: 47%;
	margin-bottom: 25px;
}

.gallery__box--reform {
	display: block;
	margin-bottom: 50px;
}
	
.gallery__box--reform::after {
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-top: 17px solid #ec9821;
	border-bottom: 0;
}

.gallery__box--reform li {
	width: 100%;
}

.gallery__box--reform li:first-child {
	margin-bottom: 30px;
}

.gallery__txt-before {
	width: 80px;
	font-size: 18px;
}

.gallery__txt-after {
	width: 80px;
	font-size: 18px;
}

	
	
/* outline */
.outline__tbl tr th {
	display: block;
	width: 100%;
	padding: 15px 5px 5px 5px;
	border-bottom: none;
	font-weight: 600;
}

.outline__tbl tr td {
	display: block;
	width: 100%;
	padding: 0 5px 15px 5px;
	border-bottom: 1px solid #DDD;
}

	
	
}