@charset "UTF-8";

.page-title {
	background: url("../img/report/title.jpg") center no-repeat;
	background-size: cover;
	min-height: 450px;
	text-align: left;
	position: relative;
	margin-bottom: 0;
	display: flex;
	align-items: center;
}
@media only screen and (max-width: 768px) {
	.page-title {
		min-height: 200px;
		margin-top: 50px;
		margin-bottom: 0;
	}
}

.content {
	color: #1C0C00;
}
.inner{
	margin: 0 auto;
	text-align: center;
	padding: 0;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
	.inner{
		display: block;
	}
}

figure {
	position: relative;
}
figure figcaption {
	color: #1C0C00;
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 1.1rem;
	font-family: 'Shippori Mincho B1', serif;
	padding: 0.1em 0.5em;
}
figure figcaption.cap_bg {
	color: #fff;
	background-color: rgba(0,0,0,.5);
}

.sec01 {
	padding: 80px 0;
	font-family: 'Shippori Mincho B1', serif;
}
.sec01 > div {
	width: 1004px;
	margin: 0 auto;
}
.sec01 > div + div {
	margin-top: 50px;
}
.sec01 h5 {
	font-size: 1.8rem;
	text-align: left;
	line-height: 2;
	padding: 0 10px 10px;
	margin: 0 auto 10px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	border-bottom: 1px solid #1C0C00;
}
.sec01 h5 small {
	font-size: 1.4rem;
	display: flex;
	align-items: center;
}
.sec01 h5 small i {
	color: #fff;
	font-size: 1.1rem;
	font-style: normal;
	line-height: 1;
	border-radius: 3px;
	padding: 0.2em 1em 0.4em;
	margin-right: 10px;
	background: transparent linear-gradient(98deg, #B3A78C 0%, #A6946D 100%) 0% 0% no-repeat padding-box;
}
.sec01 h5 + p {
	font-size: 1.6rem;
	text-align: left;
	padding-left: 10px;
	margin-bottom: 20px;
}
.sec01 ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 1.33%;
	row-gap: 20px;
}
.sec01 ul li {
	width: 24%;
	position: relative;
	overflow: hidden;
}
.sec01 ul li a {
	display: block;
	transition: .4s;
}
.sec01 ul li a:hover {
	opacity: .7;
}
.sec01 ul li a::before {
	content: "";
	padding-top: 100%;
	display: block;
}
.sec01 ul li figure,
.sec01 ul li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}
.sec01 ul li p {
	font-size: 1.2rem;
	text-align: left;
	margin-top: 5px;
	color: #000;
}
.modaal-gallery-next-inner {
	left: auto;
	margin: 0;
}
.modaal-gallery-control {
	top: 50%;
}
.modaal-gallery-prev {
	left: 0;
	transform: translate(-150%,-50%)
}
.modaal-gallery-next {
	right: 0;
	transform: translate(150%,-50%)
}
@media only screen and (max-width: 768px) {
	.sec01 {
		padding: 60px 0;
	}
	.sec01 > div {
		width: 90%;
		margin: 0 auto;
	}
	.sec01 h5 {
		font-size: 1.5rem;
		padding: 0 0 10px;
		margin: 0 auto 10px;
	}
	.sec01 h5 small {
		font-size: 1.2rem;
	}
	.sec01 h5 + p {
		font-size: 1.3rem;
		padding-left: 0;
		margin-bottom: 20px;
	}
	.sec01 ul {
		justify-content: space-between;
		gap: 0;
		row-gap: 20px;
	}
	.sec01 ul li {
		width: 47%;
	}
	.sec01 ul li p {
		font-size: 1.1rem;
		letter-spacing: 0;
	}
	.modaal-gallery-prev {
		left: 0;
		transform: translate(-50%,-50%)
	}
	.modaal-gallery-next {
		right: 0;
		transform: translate(50%,-50%)
	}
}



.scrolldown1{
  position:absolute;
  left:50%;
  bottom:10px;
  height:50px;
}
.scrolldown1 span{
  position: absolute;
  left:-15px;
  top: -15px;
  color: #1C0C00;
  font-size: 1.2rem;
	padding: 0;
}
.scrolldown1::after{
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #1C0C00;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}

@media only screen and (max-width: 768px) {
    .scrolldown1{
      bottom: -30px;
    }
}

.slideEffectWrap {
	overflow: hidden;
}
.slideEffectUp {
	transform: translateY(-100%);
  overflow: hidden;
  transition: transform 1.2s ease-in-out;
	display: block;
}
.slideEffectUp img {
	transform: translateY(100%);
	filter: blur(5px) grayscale(100%);
	transition: transform 1.2s ease-in-out,filter 3s ease-in-out;
}
.slideEffectUp.is-active {
	transform: translateY(0);
}
.slideEffectUp.is-active img {
	transform: translateY(0);
	filter: blur(0) grayscale(0);
}

.inview-zoom figure {
	overflow: hidden;
}
.inview-zoom figure img {
	transform: scale(1.15);
	opacity: 0;
}
.inview-zoom.show figure img {
	animation-fill-mode: forwards;
	animation-duration: 2.4s;
	animation-name: zoom;
	filter: grayscale(100%);
	transform: scale(1);
}
@keyframes zoom {
	0% {
		filter: grayscale(100%);
		transform: scale(1.1);
		opacity: 0;
	}
	100% {
		filter: grayscale(0%);
		transform: scale(1);
		opacity: 1;
	}
}

.modaal-overlay {
	z-index: 9999
}
.modaal-wrapper {
	z-index: 99999
}