@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Shippori+Mincho+B1&display=swap');
body {
	/* overflow-x: hidden; */
	min-width: 980px;
}


.fade-in {
	opacity: 0;
	transition-duration: 1000ms;
	transition-property: opacity, transform;
	transform: translate(0, 50px);
	transition-timing-function: ease;
}

.fade-in-up {
	opacity: 0;
	transition-duration: 800ms;
	transition-property: opacity, transform;
	transform: translate(0, 50px);
	transition-timing-function: ease;
}
.fade-in-up2 {
	opacity: 0;
	transition-duration: 800ms;
	transition-delay: 300ms;
	transition-property: opacity, transform;
	transform: translate(0, 50px);
	transition-timing-function: ease;
	display: block;
}
.fade-in-down {
	opacity: 0;
	transition-duration: 1600ms;
	transition-delay: 500ms;
	transition-property: opacity, transform;
	transform: translate(0, -80px);
	transition-timing-function: ease;
}
.scroll-in {
	opacity: 1;
	transform: translate(0, 0);
}


#feature {
	font-family: 'Noto Serif JP', serif;
	color: #333;
	font-size: 13px;
	line-height: 1.6em;
	background: #fff0e8;
	padding-bottom:120px;
}

#feature img {
	display: block;
}

#feature h1 {
	width: 980px;
}

#feature h1 img {
	width: 980px;
	height: auto;
}

#feature .stickyBgImg{
	position: sticky;
	top:0;
	opacity: 0.6;
}

#feature h2,
#feature h2 a{
	font-family: "Shippori Mincho B1", serif;
	color: #a19d99;
	font-size: 50px;
	font-weight:500;
	line-height: 1.1em;
	margin: 0 0 0 0;
	min-height:4.6em;
	display: flex;
	align-items: center;
}
#feature h2 a:hover{
	color:#cc7376;
	text-decoration: none;
}




.itemWrapper {
	width: 980px;
	box-sizing: border-box;
	margin: 120px auto 0 auto;
	padding: 0 80px 0 80px;
	position: relative;
}
.itemWrapper.first{
	margin-top: -580px;
}
.itemWrapper img{
	width: 100%;
	height: auto;
	box-shadow: 0px 0px 20px 0px rgba(124, 45, 53, 0.15);
}
.itemWrapper a img{
	background:#ffefe7;
	transition: box-shadow 0.5s ease;
}
.itemWrapper a:hover img{
	box-shadow: 0px 0px 20px 0px rgba(124, 45, 53, 0.3);
}
.imgBlock{
	width:820px;
	display:flex;
	flex-shrink:0;
	flex-direction: row-reverse;
}


.itemWrapper:nth-of-type(even) .imgBlock{
	flex-direction: row;
}
.itemWrapper .mainImg{
	width: 500px;
	flex-basis: 500px;
	z-index: 1;
}
.itemWrapper .subImg{
	width: 375px;
	flex-basis: 375px;
	margin-left:-55px;
	z-index: 2;
}


.itemWrapper:nth-of-type(even) img{
	box-shadow: 0px 0px 20px 0px rgba(102, 102, 102, 0.15);
}
.itemWrapper:nth-of-type(even) a:hover img{
	box-shadow: 0px 0px 20px 0px rgba(102, 102, 102, 0.3);
}

.itemWrapper:nth-of-type(even) .imgBlock .mainImg{
	width: 500px;
	flex-basis: 500px;
	margin-left:-55px;
	z-index: 1;
}
.itemWrapper:nth-of-type(even) .imgBlock .subImg{
	width: 375px;
	flex-basis: 375px;
	margin-left:0;
	z-index: 2;
}




.mainImg p{
	margin-top: 1em;
	font-size: 14px;
	font-weight: 500;
}
.description p{
	width: 100%;
	margin: 1em auto 0 auto;
	font-size:14px;
	line-height: 1.8em;
	color:#666666;
}

.itemWrapper:nth-of-type(even) .mainImg p{
	text-align: right;
}
.itemWrapper:nth-of-type(even) .description p{
	text-align: right;
}

.itemWrapper a{
	color:#666666;
	font-size: 14px;
	font-weight: 400;
}
.itemWrapper a:hover{
	color:#cc7376;
	text-decoration: underline;
}








.btnAllWrapper {
	text-align: center;
	width: 900px;
	margin: 0 auto;
	padding-top: 0;
	padding-top: 120px;
}

.btnAllWrapper img {
	width: 100%;
	height: 100px;
}

.btnAllWrapper .btnAll {
	font-family: "Shippori Mincho B1", serif;
	font-weight: 500;
	font-size: 28px;
	line-height: 1em;
	display: inline-block;
	padding: 0.625em 6em 0.775em 6em;
	color: #fff;
	background: #e3c1c2;
	position: relative;
	transition: all 0.2s ease;
}

.btnAllWrapper .btnAll::before {
	content: "";
	width: 0.25em;
	height: 0.25em;
	display: block;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
	position: absolute;
	top: calc(50% - 0.14em);
	right: 1.5em;
	transition: all 0.4s ease;
}

.btnAllWrapper .btnAll:hover {
	background: #d39a9c;
	color: #fff;
}

.btnAllWrapper .btnAll:hover::before {
	right: 1.3em;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
}