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

/*******************
	top page
*******************/

/**** fv__area ****/
#fv__area .fv video{
	width: 100%;
}

/**** about__area ****/
#about__area{
	text-align: center;
	padding: 210px 0 360px;
}
#about__area h2{
	font-size: 120px;
	line-height: 1;
}
#about__area .about__text{
	font-size:26px;
	margin-top: 140px;
}
#about__area .about__text p{
	padding-bottom: 60px;
}

#about__area .about__menu{
	font-size: 48px;
	padding: 60px 5% 0;
}
#about__area .about__menu li{
	border-top:1px #000 solid;
}
#about__area .about__menu li:last-child{
	border-bottom:1px #000 solid;
}
#about__area .about__menu li a{
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	padding: 50px 0;
}
#about__area .about__menu li span{
	display: inline-block;
}
#about__area .about__menu li .menu__photo{
	width: 0;
	margin: 0;
}
#about__area .about__menu li .menu__photo img{
	width: 100%;
}
@media (min-width: 751px) {
	#about__area .about__menu li a,
	#about__area .about__menu li .menu__photo{
		transition: all 0.6s ease;
	}
	#about__area .about__menu li:hover .menu__photo{
		width: 340px;
		margin: 0 5px;
	}
	#about__area .about__menu li:hover a{
		letter-spacing: 0.1em;
	}
}
@media (max-width: 750px) {
	#about__area{
		padding: 12.66vw 0 32vw;
	}
	#about__area h2{
		font-size: 12.53vw;
		line-height: 1.3;
	}
	#about__area .about__text{
		font-size:5.33vw;
		margin-top: 12.66vw;
	}
	#about__area .about__text p{
		padding-bottom: 8vw;
	}

	#about__area .about__menu{
		font-size: 6.4vw;
		padding: 6.66vw 5% 0;
	}
	#about__area .about__menu li a{
		padding: 6.66vw 0;
	}
}

/**** photo__area ****/
#photo__area{
	max-width: 1440px;
	padding: 0 20px 55px;
	margin: 0 auto;
}
#photo__area img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#photo__area li{
	position: relative;
}
#photo__area li .play__btn{
	position: relative;
}
#photo__area li .play__btn {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	border: 4px solid #FFF;
	width: 120px;
	height: 120px;
}
#photo__area li .play__btn:after {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-40%, -50%);
	border-style: solid;
	border-color: transparent transparent transparent #FFF;
	border-width: 30px 0 30px 45px;
}
@media (max-width: 750px) {
	#photo__area{
		padding: 0 0 10.66vw;
	}
	#photo__area li .play__btn {
		border: 2px solid #FFF;
		width: 60px;
		height: 60px;
	}
	
	#photo__area li .play__btn:after {
		transform: translate(-40%, -50%);
		border-width: 15px 0 15px 22px;
	}
}



/*******************
	service page
*******************/
.service__up{
	max-width: 1240px;
	margin: 80px auto 160px;
	padding: 0 20px;
}
.service__list{
	position: relative;
}
.service__list ul{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}
.service__list ul li{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
	width: 100%;
	height: 320px;
	font-size: 20px;
	background: #f1ebe4;
}
.service__list ul li:nth-child(2),
.service__list ul li:nth-child(3){
	background: #f4f1ec;
}
.service__list ul li:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.service__list ul li:nth-child(2){ grid-area: 2 / 1 / 3 / 2; }
.service__list ul li:nth-child(3){ grid-area: 1 / 2 / 2 / 3; }
.service__list ul li:nth-child(4){ grid-area: 2 / 2 / 3 / 3; }

.service__list ul li .service__title{
	display: block;
	width: 100%;
	text-align: center;
	font-size: 32px;
}

.service__list .circle{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 260px;
	height: 260px;
	background-color: #785fb2;
	color: #FFF;
	font-size: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	line-height: 1.2;
	font-weight: 900;
}

.service__menu{
	margin-top: 100px;
	display: flex;
	justify-content: space-between;
	padding: 0 2%;
}
.service__menu .service__menu__box{
	width: 21%;
}
.service__menu .service__menu__box dl{
	margin-bottom: 20px;
}
.service__menu .service__menu__box dl dt{
	font-size: 20px;
	font-weight: bold;
}
.service__menu .service__menu__ist p{
	margin-bottom: 20px;
}

.service__down{
	background-color: #f4f1ec;
	padding: 60px 0 80px;
}
.service__down .sub__title{
	text-align: center;
	font-size: 18px;
}

.service__down .service__step{
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
    margin: 60px auto 0;
	position: relative;
	padding: 0 40px;
}
.service__down .service__step:after{
	content: "";
	width: 100%;
	height: 350px;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	background: #FFF;
}
.service__down .service__step__box{
	width: 22%;
	position: relative;
	z-index: 1;
}
.service__down .service__step__box:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 25px solid #cdccd0;
	border-right: 0;
	position: absolute;
	top: 195px;
	right: -35px;
}
.service__down .service__step__box:last-child:after{
	display: none;
}
.service__down .service__step__box dl{
	text-align: center;
	padding-top: 30px;
}
.service__down .service__step__box dl dd{
	font-size: 26px;
	line-height: 1.3;
}
.service__down .service__step__box .circle{
	text-align: center;
	width: 220px;
	height: 220px;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	border-radius: 100%;
	background-color: #785fb2;
	text-align: center;
	color: #FFF;
	margin:10px auto 50px;
}

.service__down .service__step__box .circle ul{
	width: 60%;
}
.service__down .service__step__box .circle li{
	border-bottom: 1px #FFF solid;
	padding: 10px 0;
}
.service__down .service__step__box .circle li:last-child{
	border-bottom:none;
}
.service__down .service__step__desc{
	padding: 0 0 0 50px;
	font-size: 13px;
}
.service__down .service__step__desc .step__title{
	margin-bottom: 25px;
}
.service__down .service__step__desc .step__title b{
	font-size: 18px;
}

.page__service footer{
	background: #FFF;
}

@media (min-width: 751px) {
	.service__list ul li:nth-child(1),
	.service__list ul li:nth-child(3){
		padding-bottom: 20px;
	}
	.service__list ul li:nth-child(2),
	.service__list ul li:nth-child(4){
		padding-top: 20px;
	}
	.service__menu .service__menu__box{
		font-size: 13px;
	}
	.service__menu .service__menu__box .txt{
		min-height: 95px;
	}
	.service__menu .service__menu__box dl dd{
		font-size: 14px;
	}
}
@media (max-width: 750px) {
	.service__up{
		margin: 21.33vw auto 32vw;
		padding: 0;
		overflow: hidden;
	}
	.service__list{
		padding: 0 4vw;
	}
	.service__list ul li{
		height: 50.66vw;
	}

	.service__list ul li .service__title{
		font-size: 4.2vw;
		line-height: 1.3;
	}
	.service__list ul li .service__title b{
		font-size: 6.0vw;
		display: block;
	}
	.service__list ul li .service__title__txt{
		display: none;
	}
	.service__list ul li:nth-child(1),
	.service__list ul li:nth-child(3){
		padding-bottom: 25%;
	}
	.service__list ul li:nth-child(2),
	.service__list ul li:nth-child(4){
		padding-top: 20%;
	}

	.service__list .circle{
		width: 40.8vw;
		height: 40.8vw;
		font-size: 6.0vw;
	}

	.service__menu{
		margin-top: 0;
		display: block;
		padding: 0;
		text-align: center;
	}
	.service__menu .service__menu__box{
		width: 100%;
		margin:20vw 0 0;
		font-size: 4.26vw;
	}
	.service__menu .service__menu__box dl{
		margin-bottom: 8vw;
	}
	.service__menu .service__menu__box dl dt{
		font-size: 6.4vw;
	}
	.service__menu .service__menu__box .txt{
		margin-bottom: 8vw;
	}
	.service__menu .service__menu__ist p{
		margin-bottom: 0;
	}

	.service__down{
		padding: 18.66vw 0 32vw;
		overflow: hidden;
	}
	.service__down .sub__title{
		font-size: 6.4vw;
	}

	.service__down .service__step{
		margin: 13.33vw auto 0;
		width: 80%;
		display: block;
		text-align: center;
	}
	.service__down .service__step:after{
		height: 100%;
	}
	.service__down .service__step__box{
		width: 100%;
		padding:12vw 0;
	}
	.service__down .service__step__box:after{
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
		border-left: 13px solid #cdccd0;
		top: auto;
		bottom: -5px;
		left: 50%;
		right: auto;
		transform: translateX(-50%) rotate(90deg);
	}
	.service__down .service__step__box:last-child:after{
		display: none;
	}
	.service__down .service__step__box dl{
		font-size: 3.2vw;
		padding-top: 0;
	}
	.service__down .service__step__box dl dd{
		font-size: 5.333vw;
	}
	.service__down .service__step__box .circle{
		width: 53.33vw;
		height: 53.33vw;
		margin: 5.33vw auto 9.33vw;
	}

	.service__down .service__step__box .circle li{
		font-size: 3.8333vw;
		padding: 3vw 0;
	}
	.service__down .service__step__box .circle li:last-child{
		border-bottom:none;
	}
	.service__down .service__step__desc{
		font-size: 3.566vw;
		padding: 0;
	}
	.service__down .service__step__desc .step__title{
		margin-bottom: 8vw;
	}
	.service__down .service__step__desc .step__title b{
		font-size: 4.83vw;
	}
}

/*******************
	about page
*******************/
.page__about .movie{
	max-width: 1160px;
	margin: 170px auto 240px;
	padding: 0 20px;
}
.page__about .movie video{
	width: 100%;
}
.about__up{
	max-width: 1120px;
	margin: 0 auto 70px;
}

.about__up .about__sub{
	font-size: 30px;
	font-weight: 900;
	line-height: 1.3;
}
.about__up .about__tit{
	font-size: 56px;
	font-weight: 900;
	line-height: 1;
	margin: 20px 0 30px;
}
.about__up .about__tit small{
	font-size: 34px;
}
.about__up .about__tit__sub{
	font-size: 30px;
	font-weight: 900;
	line-height: 1.3;
}
.about__up .about__text p{
	margin-top: 25px;
}

.about__down{
	font-size: 18px;
	font-weight: 300;
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 0 180px 3%;
}
.about__down .headline{
	font-weight: bold;
}

@media (min-width: 751px) {
	.about__up dl{
		display: flex;
		justify-content: space-between;
		margin-bottom: 90px;
	}
	.about__up dl dt{
		width: 48%;
	}
	.about__up dl dt img{
		width: 100%;
		height: auto;
	}
	.about__up dl dd{
		width: 50%;
	}
	.about__up dl:nth-child(2n){
		flex-direction: row-reverse;
	}
	.about__up dl:nth-child(2n+1) dd{
		padding-left: 3%;
	}
	.about__up dl:nth-child(2n) dd{
		padding-right: 3%;
		text-align: right;
	}
	
	.about__down dl{
		display: flex;
		margin-top: 45px;
	}
	.about__down dl dt{
		width: 160px;
	}
	.about__down dl dd{
		width: calc( 100% - 160px);
	}
	.about__down dl dd span{
		display: flex;
		padding-left: 0.5em;
		position: relative;
	}
	.about__down dl dd span::before{
		content: ":";
		position: absolute;
		top: 0;
		left: 0;
	}
}
@media (max-width: 750px) {
	.page__about .movie{
		margin: 21.33vw auto 10.66vw;
		padding: 0;
	}
	.about__up{
		margin: 0 auto 26.66vw;
		padding: 0;
		overflow: hidden;
	}
	.about__up dl{
		margin:21.33vw 0 0;
	}
	.about__up dl dt{
		padding: 0 10vw;
	}
	.about__up dl:nth-child(2n+1) dd{
		padding: 0 0 0 10vw;
	}
	.about__up dl:nth-child(2n) dd{
		padding: 0 10vw 0 0;
		text-align: right;
	}

	.about__up .about__sub{
		font-size: 4vw;
		margin-top: 6vw;
	}
	.about__up .about__tit{
		font-size: 8vw;
		margin: 2.33vw 0 4vw;
	}
	.about__up .about__tit small{
		font-size: 4.8vw;
	}
	.about__up .about__tit__sub{
		font-size: 4.8vw;
	}
	.about__up .about__text p{
		margin-top: 8vw;
		font-size: 4vw;
	}

	.about__down{
		font-size: 4.26vw;
		letter-spacing: 0.05em;
		padding: 0 10vw 32vw;
	}
	.about__down dl{
		margin-top: 6.66vw;
	}
	.about__down dl dt:after{
		content: "/";
		margin-left: 5px;
	}
}

/*******************
	works page
*******************/
.works__menu{
	padding: 100px 0 80px;
}
.works__menu ul{
	display: flex;
	justify-content: center;
}
.works__menu ul li{
	font-size: 16px;
	line-height: 1;
	margin: 0 10px;
}
.works__menu ul li span{
	display: block;
	padding: 8px 20px;
	text-align: center;
	min-width: 90px;
	color:#717070;
	background-color:#f5f5f5;
	border-radius: 5px;
	transition: all 0.6s ease;
}
.works__menu ul li.now span{
	color:#FFF;
	background-color:#404040;
}

.works__box .works__menu{
	padding: 180px 0 0 20px;
}
.works__box .works__menu ul{
	justify-content: left;
}
.works__box .works__menu ul li{
	margin: 0 16px;
}
.works__box .works__menu ul li span{
	padding: 0;
	min-width: auto;
	color:#717070;
	background-color:transparent;
	transition: all 0.6s ease;
}
.works__box .works__menu ul li.now span{
	color:#000000;
	font-weight: bold;
	text-decoration: underline;
}

.works__box{
	display: flex;
	justify-content: space-between;
	padding: 0 2% 180px;
}
.works__box .grid{
	width: 64%;
}
.works__box .grid2{
	width: 35%;
}

.grid-item{
    width:40%;
	width:calc( 40% - 1px );
	padding: 5px;
    margin-bottom:0.5%;
	position: relative;
}
.grid-item img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

.grid-item.small{
    width:20%;
	width:calc( 20% - 1px );
}
.grid-item.medium{
    width:60%;
	width:calc( 60% - 1px );
}
.grid-item.large{
	width:calc( 40% - 2.5px );
}

.text__item .text__box{
	padding: 1.5vw 0.5vw 0.55vw;
    font-size: 0.9vw;
    display: block;
	    height: 21.85vw;
}
.text__item .text__box b{
	font-size: 1.3vw;
	line-height: 1.2;
	display: block;
	width: 100%;
}
.text__item .text__box small{
	font-size: 0.8vw;
    color: #8b8888;
	display: block;
}
.text__item .text__box.text__fixed{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
}
.text__item.small .text__box{
	padding: 1.5vw 0.1vw 1vw;
	font-size: 0.62vw;
}
.text__item.small .text__box b{
	font-size: 0.78vw;
	margin-bottom: 1vw;
}

.text__item .text__box.text__fixed.text__center{
	padding: 0 0 0 2vw;
	font-size: 0.92vw;
}
.text__item .text__box.text__fixed.text__center b{
	font-size: 1.0vw;
	margin-bottom: 0.2vw;
}

.text__item.large .text__box{
	padding: 0 0 0 2vw;
}
.text__item.large .text__box b{
	padding: 0.8vw 0;
}
@media (min-width: 751px) {
	.grid2 .grid-item.medium{
		width:50%;
		width:calc( 50% - 0.1px );
	}
	.grid2 .grid-item.small{
		width:25%;
		width:calc( 25% - 0.1px );
	}
	.grid-item.medium .image__box{
		display: block;
		padding-right: 20%;
		background-color: #ecebe7;
	}
	.text__item .image__box{
		display: block;
		border: 2px #d6d3d3 solid;
		padding: 8px;
	}
	.text__item .image__box__fixed::before{
		content: "";
		width: calc( 100% - 2px );
		height: calc( 100% - 2px );
		display: block;
		border: 1px #d6d3d3 solid;
		position: absolute;
		top: 0;
		left: 0;
	}
	
	.works__menu ul li:hover span{
		color:#FFF;
		background-color:#404040;
	}
	.works__box .works__menu ul li:hover span{
		color: #000000;
		font-weight: bold;
		text-decoration: underline;	
		background-color: transparent;
	}
}
@media (max-width: 750px) {
	body.page__works #page__content .page__title{
		text-align: center;
	}
	.works__menu{
		padding: 0 2% 2vw;
		overflow-x: auto;
	}
	.works__menu ul{
		display: block;
		white-space:nowrap;
	}
	.works__menu ul li{
		display: inline-block;
		font-size: 3vw;
		margin: 0 1%;
	}
	.works__menu ul li span{
		padding: 2vw 4vw;
		min-width: auto;
	}

	.works__box .works__menu{
		padding:21.33vw 0 0;
	}
	.works__box .works__menu ul{
		display: block;
		width: 35%;
		margin-left: 65%;
	}
	.works__box .works__menu ul li{
		display: block;
		margin: 20px 0;
	}
	.works__box .works__menu ul li span{
		text-align: left;
		font-size:4.26vw;
	}

	.works__box{
		display: block;
		padding:  9.33vw 0 21.33vw;
	}
	.works__box .grid{
		width: 100%;
	}
	.works__box .grid2{
		width: 100%;
	}

	.grid-item{
		width:calc( ( 100% / 3 ) * 2 - 1px );
		padding: 0.5%;
		margin-bottom:2.5%;
	}

	.grid-item.small{
		width:calc( ( 100% / 3 ) - 1px );
	}
	.grid-item.medium{
		width:calc( 100% - 1px );
		padding: 5% 8% 2.5%;
	}
	.grid-item.sp_s_medium{
		width:calc( 100% - 1px );
		padding: 2.5% 20% 5%;
	}
	.grid-item.sp__half{
		width:calc( 50% - 1px );
		padding: 1% 2% 1%;
	}
	.grid-item.large{
		width:calc( 100% - 2.5px );
	}

	.works__slider .grid-slideitem{
		width: 40vw;
		margin: 0 3vw 0 0;
	}

	.text__item .text__box{
		padding: 5vw 0 0 3vw;
		font-size: 2.4vw;
		height: auto;
	}
	.text__item .text__box b{
		font-size: 3.2vw;
		line-height: 1.2;
		display: block;
		width: 100%;
	}
	.text__item .text__box small{
		font-size: 2.1vw;
	}
	.text__item.small .text__box{
		padding: 1.5vw 0 1vw 3vw;
		font-size: 2.4vw;
	}
	.text__item.small .text__box b{
		font-size: 3.0vw;
		margin-bottom: 3vw;
	}

	.text__item .text__box.text__fixed.text__center{
		padding: 0 0 0 10vw;
		font-size: 3.22vw;
	}
	.text__item .text__box.text__fixed.text__center b{
		font-size: 4.0vw;
		margin-bottom: 0.2vw;
	}

	.text__item.large .text__box{
		font-size: 3.1vw;
		padding: 0 0 0 12vw;
	}
	.text__item.large .text__box b{
		font-size: 3.6vw;
		padding: 4vw 0;
	}
}



/**** under page ****/
.works__box .grid3{
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}
.works__box .grid3 .grid__inner{
	display: flex;
	flex-wrap: wrap;
}
.works__box .grid3 .grid__inner .grid-item{
	width: calc( 25% - 10px );
	padding: 0;
	margin: 0 5px 1%;
}
@media (max-width: 750px) {
	.works__box .grid3{
		padding: 0;
	}
	.works__box .grid3 .grid__inner{
		display: block;
		padding: 0 8% 0;
	}
	.works__box .grid3 .grid__inner .grid-item{
		width: 100%;
		padding: 0;
		margin: 0 0 8%;
	}
}

/*******************
	contact page
*******************/
.contact__box{
	max-width: 1200px;
	margin: 0 auto;
	padding: 75px 0 110px;
	background: #f5f3f3;
}
.contact__box form{
	max-width: 900px;
	padding: 0 15px;
	margin: 0 auto;
}
.contact__box .form__section{
	margin-bottom: 40px;
}
.contact__box form input[type="text"],
.contact__box form textarea{
	width: 100%;
	border:1px #dddddd solid;
	padding:1%;
}
.contact__box form input[type="text"].half{
	width: 30%;
	margin-right: 10px;
}

.contact__box .policy__section{
	width: 100%;
	height: 320px;
	border:1px #dddddd solid;
	background: #FFF;
	padding:2%;
	overflow-y: auto;
}
.contact__box form .policy__btn__section{
	margin: 10px 0 40px;
	text-align: center;
}
.contact__box .btn__section{
	text-align: center;
}
.contact__box .btn__section input[type="submit"]{
	display: inline-block;
	cursor: pointer;
    font-size: 1.15rem;
    padding: 1rem 8rem;
	color: #ffffff;
	background-color: #1e88e5;
	border:none;
	border-radius:0.5rem;
}

.page__contact footer{
	padding-top: 0;
	background: #FFF;
}

@media (max-width: 750px) {
	.contact__box{
		margin: 0 auto;
		width: 94%;
		padding: 10vw 5vw 10vw;
	}
	.contact__box form{
		padding: 0;
	}
	.contact__box .form__section{
		margin-bottom: 5vw;
	}
	.contact__box form input[type="text"],
	.contact__box form textarea{
		padding:2.5% 1%;
	}
	.contact__box form input[type="text"].half{
		width: 35%;
		margin-right: 10px;
	}

	.contact__box .policy__section{
		height: 50vw;
	}
	.contact__box form .policy__btn__section{
		margin: 1.33vw 0 5.33vw;
	}
	.contact__box .btn__section input[type="submit"]{
		font-size: 4vw;
		padding: 3vw 25vw;
	}

}