/*------------------------------
* anime
------------------------------*/

.anime {
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	z-index: 9000;
}

.anime div{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
}

.anime span{
	color:#434242;
	font-size: 4.4rem;
	padding:0 0.1em;
	visibility:hidden;
	opacity:0;
	-webkit-animation:load 3s ease-in-out;
	-moz-animation:load 3s ease-in-out;
	-ms-animation:load 3s ease-in-out;
	-o-animation:load 3s ease-in-out;
	animation:load 3s ease-in-out;
	-webkit-animation-iteration-count:1;
	-moz-animation-iteration-count:1;
	-ms-animation-iteration-count:1;
	-o-animation-iteration-count:1;
	animation-iteration-count:1;
}

.anime span:first-of-type{
	-webkit-animation-delay:0s;
	-moz-animation-delay:0s;
	-ms-animation-delay:0s;
	-o-animation-delay:0s;
	animation-delay:0s;
	color: #EFD593;
}

.anime span:nth-of-type(2) {
	-webkit-animation-delay:0.3s;
	-moz-animation-delay:0.3s;
	-ms-animation-delay:0.3s;
	-o-animation-delay:0.3s;
	animation-delay:0.3s;
}

.anime span:nth-of-type(3) {
	-webkit-animation-delay:0.6s;
	-moz-animation-delay:0.6s;
	-ms-animation-delay:0.6s;
	-o-animation-delay:0.6s;
	animation-delay:0.6s;
}

.anime span:nth-of-type(4) {
	-webkit-animation-delay:0.9s;
	-moz-animation-delay:0.9s;
	-ms-animation-delay:0.9s;
	-o-animation-delay:0.9s;
	animation-delay:0.9s;
	letter-spacing: 0.1em;
}

.anime span:nth-of-type(5) {
	-webkit-animation-delay:1.2s;
	-moz-animation-delay:1.2s;
	-ms-animation-delay:1.2s;
	-o-animation-delay:1.2s;
	animation-delay:1.2s;
}

.anime span:nth-of-type(6) {
	-webkit-animation-delay:1.5s;
	-moz-animation-delay:1.5s;
	-ms-animation-delay:1.5s;
	-o-animation-delay:1.5s;
	animation-delay:1.5s;
}

.anime span:nth-of-type(7) {
	-webkit-animation-delay:1.8s;
	-moz-animation-delay:1.8s;
	-ms-animation-delay:1.8s;
	-o-animation-delay:1.8s;
	animation-delay:1.8s;
}

.anime span:nth-of-type(8) {
	-webkit-animation-delay:2.1s;
	-moz-animation-delay:2.1s;
	-ms-animation-delay:2.1s;
	-o-animation-delay:2.1s;
	animation-delay:2.1s;
	color: #EFD593;
}

.anime span:nth-of-type(9) {
	-webkit-animation-delay:2.4s;
	-moz-animation-delay:2.4s;
	-ms-animation-delay:2.4s;
	-o-animation-delay:2.4s;
	animation-delay:2.4s;
}

.anime span:last-of-type{
	-webkit-animation-delay:2.7s;
	-moz-animation-delay:2.7s;
	-ms-animation-delay:2.7s;
	-o-animation-delay:2.7s;
	animation-delay:2.7s;
}

@-webkit-keyframes load {
	0% {visibility:hidden; opacity:0;}
	50% {visibility:visible; opacity:1;}
	100% {visibility:hidden; opacity:0;}
}

@-moz-keyframes load {
	0% {visibility:hidden; opacity:0;}
	50% {visibility:visible; opacity:1;}
	100% {visibility:hidden; opacity:0;}
}

@-ms-keyframes load {
	0% {visibility:hidden; opacity:0;}
	50% {visibility:visible; opacity:1;}
	100% {visibility:hidden; opacity:0;}
}

@-o-keyframes load {
	0% {visibility:hidden; opacity:0;}
	50% {visibility:visible; opacity:1;}
	100% {visibility:hidden; opacity:0;}
}

@keyframes load {
	0% {visibility:hidden; opacity:0;}
	50% {visibility:visible; opacity:1;}
	100% {visibility:hidden; opacity:0;}
}





/*------------------------------
* hero-image
------------------------------*/

.hero-list{
	z-index: 10;
}

.hero{
	width: 760px;
	height: 100%;
}

.hero-item{
	padding-left: 5.7%;
}

/*------------------------------
* square
------------------------------*/

.ornament{
	padding-left: 17%;
}

.ornament-square{
	width: 160px;
	height: 160px;
	background-color: #EAE6DE;
	margin-top: -40px
}

.news{
	padding-left: 27%;
	margin-top: -20px;
	position: relative;
	z-index: 100;
}

.news a{
	width: 200px;
    height: 200px;
    display: block;
}

.news a span{
	width: 200px;
	height: 200px;
	background-color: #fdf8f2;
	border: solid #efd593 1px;
	vertical-align: middle;
	display: table-cell;
	font-size: 1.3rem;
	line-height: 30px;
	-moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
	position: relative;
}

.news a span:hover{
	color: #a9a9a9;
}



/*動き*/

.fadeInDown1 {
	 -webkit-animation-fill-mode:both;
	 -ms-animation-fill-mode:both;
	 animation-fill-mode:both;
	 -webkit-animation-duration:.4s;
	 -ms-animation-duration:.4s;
	 animation-duration:.4s;
	 -webkit-animation-name: fadeInDown;
	 animation-name: fadeInDown;
	 visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
	 0% { opacity: 0; -webkit-transform: translateY(-20px); }
	 100% { opacity: 1; -webkit-transform: translateY(0); }
}

@keyframes fadeInDown {
	 0% { opacity: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); }
	 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}



.fadeInDown2 {
	 -webkit-animation-fill-mode:both;
	 -ms-animation-fill-mode:both;
	 animation-fill-mode:both;
	 -webkit-animation-duration:1s;
	 -ms-animation-duration:1s;
	 animation-duration:1s;
	 -webkit-animation-name: fadeInDown;
	 animation-name: fadeInDown;
	 visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
	 0% { opacity: 0; -webkit-transform: translateY(-20px); }
	 100% { opacity: 1; -webkit-transform: translateY(0); }
}

@keyframes fadeInDown {
	 0% { opacity: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); }
	 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}


/*------------------------------
* profile
------------------------------*/

.profile{
	position: relative;
    height: 400px;
    padding-left: 62%;
	margin-top: -120px;
}

.profile-inner h2{
	margin-left: 12px;
}

.profile-inner{
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
	-webkit-text-orientation: upright;
}

.job{
	-webkit-text-orientation: mixed;
	text-orientation: mixed;
	font-size: 1.2rem;
	display: block;
	line-height: 35px;
}

.name{
	font-size: 2.0rem;
}

.detail{
	font-family: '游明朝','Yu Mincho','YuMincho','ヒラギノ明朝 ProN W3','Hiragino Mincho ProN','Noto Serif JP','MS P明朝','MS 明朝','MS PMincho',serif;
	transform:rotate(0.001deg);
	font-size: 1.2rem;
	line-height: 28px;
    padding-top: 45px;
}

.profile-jp{
	letter-spacing: 0.7em;
	height: 311px;
}

.illustration{
	position: absolute;
    left: 74%;
    top: 58%;
}

.illustration img{
	width: 90px;
	height: auto;
}


/*動き*/

.fadeInDown3 {
	 -webkit-animation-fill-mode:both;
	 -ms-animation-fill-mode:both;
	 animation-fill-mode:both;
	 -webkit-animation-duration:2s;
	 -ms-animation-duration:2s;
	 animation-duration:2s;
	 -webkit-animation-name: fadeInDown;
	 animation-name: fadeInDown;
	 visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
	 0% { opacity: 0; -webkit-transform: translateY(-20px); }
	 100% { opacity: 1; -webkit-transform: translateY(0); }
}

@keyframes fadeInDown {
	 0% { opacity: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); }
	 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}



/*------------------------------
* works-slide
------------------------------*/

.works-slide{
	width: 100%;
	margin-bottom: 120px;
}

.works-slide-title{
	position: absolute;
}

.works-slide h2{
	height: 120px;
	font-size: 2.4rem;
	border-left: solid #434242 1px;
	padding-left:12px;
}

.works-slide-list{
	position: relative;
	top: 90px;
}

.slide-image{
	margin-right: 1px;
	width: 150px;
	height: 150px;
}

.works-slide-1{
	background: url(../images/slide/slide_magazine01.jpg) no-repeat;
	background-size: 100%;
}

.works-slide-2{
	background: url(../images/slide/slide_magazine02.jpg) no-repeat;
	background-size: 100%;
}

.works-slide-3{
	background: url(../images/slide/slide_magazine03.jpg) no-repeat;
	background-size: 100%;
}

.works-slide-4{
	background: url(../images/slide/slide_magazine04.jpg) no-repeat;
	background-size: 100%;
}

.works-slide-5{
	background: url(../images/slide/slide_magazine05.jpg) no-repeat;
	background-size: 100%;
}

.works-slide-6{
	background: url(../images/slide/slide_magazine06.jpg) no-repeat;
	background-size: 100%;
}

.works-slide-7{
	background: url(../images/slide/slide_magazine07.jpg) no-repeat;
	background-size: 100%;
}

.works-slide-8{
	background: url(../images/slide/slide_magazine08.jpg) no-repeat;
	background-size: 100%;
}

.works-slide-9{
	background: url(../images/slide/slide_magazine09.jpg) no-repeat;
	background-size: 100%;
}

.works-slide-10{
	background: url(../images/slide/slide_magazine10.jpg) no-repeat;
	background-size: 100%;
}

.works-slide-11{
	background: url(../images/slide/slide_magazine11.jpg) no-repeat;
	background-size: 100%;
}

.works-slide-12{
	background: url(../images/slide/slide_magazine12.jpg) no-repeat;
	background-size: 100%;
}

.works-slide-13{
	background: url(../images/slide/slide_magazine13.jpg) no-repeat;
	background-size: 100%;
}

.works-slide-14{
	background: url("../images/slide/slide_magazine14.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-15{
	background: url("../images/slide/slide_magazine15.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-16{
	background: url("../images/slide/slide_magazine16.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-17{
	background: url("../images/slide/slide_magazine17.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-18{
	background: url("../images/slide/slide_magazine18.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-19{
	background: url("../images/slide/slide_magazine19.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-20{
	background: url("../images/slide/slide_booklet01.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-21{
	background: url("../images/slide/slide_booklet02.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-22{
	background: url("../images/slide/slide_booklet03.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-23{
	background: url("../images/slide/slide_booklet04.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-24{
	background: url("../images/slide/slide_booklet05.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-25{
	background: url("../images/slide/slide_booklet06.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-26{
	background: url("../images/slide/slide_booklet07.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-27{
	background: url("../images/slide/slide_booklet08.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-28{
	background: url("../images/slide/slide_booklet09.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-29{
	background: url("../images/slide/slide_booklet10.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-30{
	background: url("../images/slide/slide_booklet11.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-31{
	background: url("../images/slide/slide_booklet12.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-32{
	background: url("../images/slide/slide_booklet13.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-33{
	background: url("../images/slide/slide_booklet15.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-34{
	background: url("../images/slide/slide_booklet16.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-35{
	background: url("../images/slide/slide_booklet17.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-36{
	background: url("../images/slide/slide_booklet14.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-37{
	background: url("../images/slide/slide_booklet18.jpg") no-repeat;
	background-size: 100%;
}

.works-slide-38{
	background: url("../images/slide/slide_booklet19.jpg") no-repeat;
	background-size: 100%;
}

.works-btn{
    position: absolute;
    top: 220px;
	left: 80%;
}

.works-btn a{
	display: block;
	width: 140px;
    height: 38px;
}

.works-btn-inner{
	display: block;
    width: 140px;
    height: 38px;
	font-size: 1.2rem;
	line-height: 1;
	background-color: #fdf8f2;
	border: solid #efd593 1px;
	vertical-align: middle;
	display: table-cell;
	-moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}

.works-btn-inner:hover{
	color: #a9a9a9;
}

.slide-title-btn{
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 100;
}


/*------------------------------
* snap-slide
------------------------------*/

.snap-slide{
	width: 100%;
}

.snap-slide-title{
    position: absolute;
}

.snap-slide h2{
	height: 120px;
	font-size: 2.4rem;
	border-left: solid #434242 1px;
	padding-left:12px;
}

.snap-slide-list{
	position: relative;
	top: 90px;
	margin-bottom: 150px;
}

.snap-slide-1{
	background: url("../images/slide/slide_snap01.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-2{
	background: url("../images/slide/slide_snap02.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-3{
	background: url("../images/slide/slide_snap03.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-4{
	background: url("../images/slide/slide_snap04.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-5{
	background: url("../images/slide/slide_snap05.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-6{
	background: url("../images/slide/slide_snap06.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-7{
	background: url("../images/slide/slide_snap07.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-8{
	background: url("../images/slide/slide_snap08.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-9{
	background: url("../images/slide/slide_snap09.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-10{
	background: url("../images/slide/slide_snap10.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-11{
	background: url("../images/slide/slide_snap11.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-12{
	background: url("../images/slide/slide_snap12.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-13{
	background: url("../images/slide/slide_snap13.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-14{
	background: url("../images/slide/slide_snap14.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-15{
	background: url("../images/slide/slide_snap15.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-16{
	background: url("../images/slide/slide_snap16.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-17{
	background: url("../images/slide/slide_snap17.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-18{
	background: url("../images/slide/slide_snap18.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-19{
	background: url("../images/slide/slide_snap19.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-20{
	background: url("../images/slide/slide_snap20.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-21{
	background: url("../images/slide/slide_snap21.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-22{
	background: url("../images/slide/slide_snap22.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-23{
	background: url("../images/slide/slide_snap23.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-24{
	background: url("../images/slide/slide_snap24.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-25{
	background: url("../images/slide/slide_snap25.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-26{
	background: url("../images/slide/slide_snap26.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-27{
	background: url("../images/slide/slide_snap27.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-28{
	background: url("../images/slide/slide_snap28.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-29{
	background: url("../images/slide/slide_snap29.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-30{
	background: url("../images/slide/slide_snap30.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-31{
	background: url("../images/slide/slide_snap31.jpg") no-repeat;
	background-size: 100%;
}

.snap-slide-32{
	background: url("../images/slide/slide_snap32.jpg") no-repeat;
	background-size: 100%;
}

.snap-btn{
    position: absolute;
    top: 220px;
	left: 80%;
}

.snap-btn a{
	display: block;
	width: 140px;
    height: 38px;
}

.snap-btn-inner{
	display: block;
    width: 140px;
    height: 38px;
	font-size: 1.2rem;
	line-height: 1;
	background-color: #fdf8f2;
	border: solid #efd593 1px;
	vertical-align: middle;
	display: table-cell;
	-moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}

.snap-btn-inner:hover{
	color:#a9a9a9;
}


/*------------------------------
* copyright
------------------------------*/

.copyright {
    padding-top: 90px;
}

@media screen and (max-width:1200px){
	
	.hero {
		width: 88%;
		height: 100%;
	}
	
}


@media screen and (max-width:900px){
	
	
	.ornament-square {
		width: 120px;
		height: 120px;
		margin-top: -20px;
	}
	
	.news a {
		width: 180px;
		height: 180px;
		display: block;
	}
	
	.news a span {
		width: 180px;
		height: 180px;
		font-size: 1.2rem;
	}
	
	.slide-title-btn{
		width: 650px;
	}
	
}

@media screen and (max-width:768px){
	
	.pc-img{
		display: none;
	}
	
	.sp-img{
		display: block;
	}
	
	
/*------------------------------
* anime-sp
------------------------------*/	
	
	.anime span{
		font-size: 2.2rem;
		padding:0 0.05em;
	}
	
		
/*------------------------------
* hero-image-sp
------------------------------*/

	.hero-item{
		padding: 0;
		margin-top: 70px;
	}

	.hero{
		width: 100vw;
	}
	
	.slick-track{
		width: 100%;
	}
	
/*------------------------------
* 順番入れ替え
------------------------------*/
	
	.change-order{
		display:flex;/* Flexコンテナ―に設定 */
		flex-direction:column;
		height: 660px;
	}
	
	.profile-inner{
		order:1;
		height: 270px;
	}
	
	.illustration{
		order:2;
	}
	
	.ornament{
		order:3;
	}
	
	.news{
		order:4;
	}
	
	.square{
		order:5;
		width: 375px;
		margin: 0 auto;
		margin-top: 60px;
	}
	
/*------------------------------
* profile-sp
------------------------------*/
	
	.profile {
		padding-right: 0;
		padding-left: 0;
		padding-top: 60px;
		padding-bottom: 75px;
		width: 200px;
		margin: 0 auto;
		position: relative;
	}
	
	.job{
		font-size: 1.0rem;
    	line-height: 30px;
	}
	
	.name {
    	font-size: 1.6rem;
	}
	
	.detail{
		line-height: 26px;
		font-size: 1.1rem;
		
	}
	
	.illustration {
		width: 80px;
		height: 80px;
		left: 60%;
    	top: 70%;
	}
	
	
/*------------------------------
* square-sp
------------------------------*/
	
	.ornament {
		padding-left: 82px;
	}
	
	.ornament-square {
		width: 90px;
		height: 90px;
		margin-top: -20px;
	}
	
	.news {
		padding-left: 145px;
		margin-top: -40px;
	}
	
	.news a{
		width: 150px;
		height: 150px;
	}
	
	.news a span{
		width: 150px;
		height: 150px;
		font-size: 1.1rem;
		line-height: 28px;
	}
	
	
/*------------------------------
* works-slide-sp
------------------------------*/
	
	.works-slide {
		width: 100%;
		margin-top: 30px;
		margin-bottom: 80px;
	}
	
	.works-slide h2 {
		height: 60px;
		font-size: 1.7rem;
		padding-left: 8px;
	}
	
	.slide-image{
		width: 124px;
    	height: 124px;
	}
	
	.works-slide-list {
		top: 45px;
	}
	
	.works-btn-inner {
		font-size: 1.1rem;
		width: 130px;
		height: 36px;
	}
	
	.works-btn {
		top: 150px;
		left: 55%;
	}
	
	.works-btn a{
		width: 130px;
		height: 36px;
	}
	
	.slide-title-btn {
		width: 290px;
		margin: 0 auto;
	}
	
/*------------------------------
* snap-slide-sp
------------------------------*/
	
	.snap-slide {
		width: 100%;
	}

	.snap-slide h2 {
		height: 60px;
		font-size: 1.7rem;
		padding-left: 8px;
	}
	
	.snap-slide-list {
		top: 45px;
		margin-bottom: 150px;
	}
	
	.snap-btn-inner {
		font-size: 1.1rem;
		width: 130px;
		height: 36px;
	}
	
	.snap-btn {
		top: 150px;
		left: 55%;
	}
	
	.snap-btn a{
		width: 130px;
		height: 36px;
	}
	
/*------------------------------
* copyright-sp
------------------------------*/

.copyright {
    padding-top: 20px;
}


	
}
