@charset "UTF-8";


.slideArea {
	height: 100vh;
	width: 100%;
	padding-left: 10%;
}


.slideArea img {
	width: 87%;
	height: 100vh;
	object-fit: cover;
	object-position: bottom;
	border-radius: 60px;
	padding: 40px;
	margin: 0 auto;
}

.ContentsArea {
	padding-top: 200px;
	padding-bottom: 100px;
	padding-left:10%;
}
.ContentsArea > div {
	width: 87%;
	padding: 0 40px;
	margin: 0 auto;
} 
.ContentsArea .copy {
	font-size: 33px;
	font-weight: 500;
	margin-bottom: 60px;
}

.fadeUpTrigger:first-child {
	margin-bottom: 100px;
}
.ContentsArea .lead {
	font-weight: 500;
}
.ContentsArea .works {
	background-color: #d1ebda;
	margin-bottom: 100px;
	padding: 5% 10%;
}
.ContentsArea h2 {
	font-size: 30px;
	text-align: center;
	padding: 0 0 20px;
	font-weight: 500;
}
.ContentsArea h3 {
	font-size: 25px;
	font-weight:500;
	margin-bottom: 10px;
}
.ContentsArea section.works ul  {
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
    padding: 0px;
    list-style: none;
}
.ContentsArea section.works ul li {
	overflow: hidden;
	width: calc(100% / 3 - 35px);
	border-radius: 15px;
	background-color: #ffffff;
}
.ContentsArea section.works ul li a {
	position: relative;
    overflow: hidden;
    padding-top: 70%;
	border-radius: 15px;
}

.ContentsArea section.works ul li a span.mask{
    display: block;
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;/*拡大してはみ出る要素を隠す*/
}

.ContentsArea section.works ul li a span.mask img{
	width: 100%;
    height: 100%;
    object-fit: cover;
	-webkit-transition: all.5s ease; /*移り変わる速さを変更したい場合はこの数値を変更*/
	transition: all.5s ease; /*移り変わる速さを変更したい場合はこの数値を変更*/
	border-radius: 15px;
	z-index: 1;
}

.ContentsArea section.works ul li a span.mask:hover img{/*hoverした時の変化*/
	-webkit-transform: scale(1.2);/*拡大の値を変更したい場合はこの数値を変更*/
	transform: scale(1.2);/*拡大の値を変更したい場合はこの数値を変更*/
	border-radius: 15px;
	z-index: 1;
}

.ContentsArea section .more {
	margin-top: 20px;
	font-weight: 500;
	text-align: right;
}
.ContentsArea section .more a {
	position: relative;
    padding: 2px 60px 6px 30px;
    display: inline-block;
    text-align: center;
    color: #333;
    text-decoration: none;
    outline: none;
	transition: ease .2s;
	font-size: 20px;
	border-radius: 50px;
	border:solid 1px #333333;
}
.ContentsArea section .more a::before {
	content: "";
    position: absolute;
    top: 50%;
	right:28px;
    width: 30px;
    height: 1px;
    background: #333;
    transition: ease .2s;
}

.ContentsArea section .more a::after {
	content: '';
    position: absolute;
    top: 43%;
    right: 21px;
    border: 4px solid transparent;
    border-top-width: 4px;
    border-bottom-width: 4px;
    border-left-color: #333;
	transition: ease .2s;
}
.ContentsArea section .more a:hover::before {
	width:40px;
	right:18px;
    transition: ease .2s;
}
.ContentsArea section .more a:hover::after {
	right: 14px;
    transition: ease .2s;
}
.ContentsArea section.profile section{
	border: solid 2px #333333;
	border-radius: 20px;
	padding: 2% 5% 5% 5%;
}
.ContentsArea section.profile section div {
	display: flex;
	align-items: center;
	margin-top: 20px;
}
.ContentsArea section.profile section div p {
	font-weight: 500;
}
.ContentsArea section.profile section div p.icon {
	width: 30%;
	
    background: #d1ebda;
    border-radius: 50%;
	margin-right: 30px;
}

.ContentsArea section.info .info {
	margin-top: 100px;
	font-weight: 500;
	text-align: center;
}
.ContentsArea section.info .info a {
	position: relative;
    padding: 10px 60px 10px 30px;
    display: inline-block;
    text-align: center;
    color: #333;
    text-decoration: none;
    outline: none;
	transition: ease .2s;
	font-size: 20px;
	border-radius: 50px;
	background-color: #f8f05e;
}
.ContentsArea section.info .info a::before {
	content:"";
    /*絶対配置で線の位置を決める*/
	position: absolute;
	top:50%;
	right:28px;
    /*線の形状*/
	width:30px;
	height:1px;
	background:#333;
    transition: ease .2s;
}

.ContentsArea section.info .info a::after {
	content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 44%;
    right: 21px;
    /*矢印の形状*/
    border: 4px solid transparent;
    border-top-width: 4px;
    border-bottom-width: 4px;
    border-left-color: #333;
    /*アニメーションの指定*/
    transition: ease .2s;
}
.ContentsArea section.info .info a:hover::before {
	width:40px;
	right:18px;
    transition: ease .2s;
}
.ContentsArea section.info .info a:hover::after {
	right: 14px;
    transition: ease .2s;
}

.sp {
	display: none;
}
@media screen and (max-width:599px) {
	main {
		display: block;
	}
	.slideArea {
		height: inherit;
		padding-left: 0;
		padding-top: 75px;
	}
	
	.slideArea img {
		padding: 25px;
		width: 100%;
		height: 75vh;
	}
	
	.ContentsArea {
		padding: inherit;
		padding: 80px 25px;  
	}
	.ContentsArea div {
		width: 100%;
		padding: 0;
	}
	.ContentsArea .copy {
		font-size: 21px;
	}
.ContentsArea section.works  {
	margin: 50px 0;
	padding: 5%;
}
.ContentsArea h2  {
	font-size: 25px;
}
.ContentsArea h3  {
	font-size: 20px;
}

.ContentsArea section.works ul li {
	width: calc(100% / 3 - 5px);
}

.ContentsArea section.works .more a {
	padding: 0px 60px 3px 30px;
}

.ContentsArea section.profile section div {
	display: block;
}
.ContentsArea section.profile section div p.icon {
	margin: 0 auto;
	margin-bottom: 20px;
}

.sp {
	display: block;
}
}

