@charset "utf-8";

* {
	word-break: break-word;
}

body {
	background-color: #F3F3F3;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体, YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-family: 'Quicksand', sans-serif;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.inner_wrapper {
	max-width: 1000px;
	min-width: 320px;
	/* width: 100%; */
	margin: 0 auto;
	box-sizing: border-box;
}

p {
	line-height: 1.8;
    letter-spacing: 0.8px;
	color: rgb(51, 51, 51);
}

/*--------------------------------
 header
---------------------------------*/
/********** Arlee logo **********/
.logo {
	position: fixed;
	top: 10px;
	left: 30px;
	z-index: 1000;
}

.logo img {
	width: 45%;
	height: 45%;
}

.logo:hover {
	 animation: poyooon .9s linear 1 forwards;
}

@keyframes poyooon {
      0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
      10%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
      40%  { transform: scale(1.15, 0.8) translate(0%, 10%); }
      50%  { transform: scale(1.0, 1.0) translate(0%, 0%); }
      60%  { transform: scale(0.9, 1.1) translate(0%, -25%); }
      75%  { transform: scale(0.9, 1.0) translate(0%, -20%); }
      85%  { transform: scale(1.2, 0.8) translate(0%, 10%); }
      100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}

/*--------------------------------
 gnav
---------------------------------*/
#gnav {
	width: 100%;
	height: 70px;
	line-height: 70px;
	box-sizing: border-box;
	
	background-color: rgba(255,255,255,0.8);
	-webkit-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, .2);
    box-shadow: 0 3px 3px -3px rgba(0, 0, 0, .2);
	
	position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
}

#gnav ul {
	text-align: center;
	box-sizing: border-box;
}

#gnav ul li {
	font-family: 'Quicksand', sans-serif;
	display: inline-block;
	padding: 0 10px;
	font-size: 95%;
	box-sizing: border-box;
}

#gnav ul li a {
	text-decoration: none;
	color: #000;
	position: relative;
}

#gnav ul li a:after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: "";
	height: 3px;
	width: 100%; /* 文字の幅全体 */
	background-color: #444444;
	transform: scale(0); /* 最初は出ていない*/
	transform-origin: center top; /* 真ん中からトップへ */
	transition: 0.3s;
}

#gnav ul li a:hover::after {
	transform: scale(1);
}

/*--------------------------------
 snav
---------------------------------*/
#snav_r {
    display: none;
}

#snav_res {
	display: none;
}

#snav {
    padding-top: 90px;
}

#snav ul {
	text-align: center;
}

#snav ul li {
	font-family: 'Quicksand', sans-serif;
	box-sizing: border-box;
	display: inline-block;
	padding: 0 2px;
	font-size: 100%;
	position: relative;
	}

#snav ul li.underline:after {
	position: absolute;
	bottom: -2px;
	left: 0;
	content: "";
	width: 100%;
	height: 2px;
	background-color: skyblue;
	}

#snav ul li a {
	text-decoration: none;
	color: #000;
}

#snav ul li.borderR {
	border-right: 1px solid #999;
	padding: 0 9px;
}

/*--------------------------------
 hello slider - ch design ver.
---------------------------------*/
@keyframes hello_fadeinLR {
	0% {opacity: 0; transform: translateX(-100px)}
	50% {opacity: 1;}
	100% {opacity: 0.4; transform: translateX(0px)}
}

.helloL,.helloR {
	font-family: 'Montserrat', sans-serif;
}

.helloL {
	font-size: 200px;
	font-weight: bold;
	color: white;
	position: fixed;
	top: 80px;
	left: -100px;
	z-index: -1;
	
	opacity: 0;
	animation-name: hello_fadeinLR;
	animation-duration: 3s;
	animation-fill-mode: forwards; 
	animation-timing-function: ease;
}

.helloR {
	font-size: 240px;
	font-weight: bold;
	color: white;
	position: fixed;
	bottom: 10px;
	right: -100px;
	z-index: -1;
	
	opacity: 0;
	animation-name: hello_fadeinLR;
	animation-duration: 3s;
	animation-delay: 0.4s;
	animation-fill-mode: forwards; 
	animation-timing-function: ease;
}

/*--------------------------------
 h1 h2 title
---------------------------------*/
h1 {
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size: 68px;
	text-align: center;
	color: #333333;
	margin: 30px 0 10px;
	
	opacity: 0;
	animation-duration: 2s;
	animation-delay : .4s;
	animation-name: fadein;
	animation-iteration-count: 1;
	animation-fill-mode: forwards; /*これで値を保持*/
}

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

h2.Jcdesign, p, h3 {
	text-align: center;
}

h2.Jcdesign {
	font-size: 120%;
	font-weight: 500;
	margin-bottom: 40px;
}

/*--------------------------------
 detail nav
---------------------------------*/
#dnav {
	padding: 12px 0 20px;	
}

#dnav ul {
	text-align: center;
}

#dnav ul li {
	display: inline-block;
	padding: 0 10px;
	font-size: 15px;
	}

#dnav ul li a {
	text-decoration: none;
	color: #000;
}

#dnav ul li a:hover {
	color: deepskyblue;
}

#dnav ul li.borderR {
	border-right: 1px solid #999;
}

/*--------------------------------
 arlee on the planet
---------------------------------*/
#arleetheAnt {
	max-width: 100%;
	position: relative;
	text-align:center;
}

.planet_uno {
	width:10%;
	position: absolute;
	top: -5%;
	right: 1%;
}

.planet_uno img {
	width: 80%;
}

.planet_dos {
	width: 10%;
	position: absolute;
	top: 6%;
	left: 2%;
}

.planet_dos img {
	width: 85%;
}

.starB01 {
	width: 10%;
	position: absolute;
	top: 13%;
	right: 7%;
}

.starB01 img {
	width: 74%;
}

.starM01 {
	width: 9%;
	position: absolute;
	top: 20%;
	left: 8%;
}

.starM01 img {
	width: 85%;
}

.starS01 {
	width:10%;
	position: absolute;
	top: 30%;
	right: 10%;
}

.starS01 img {
	width: 60%;
}

.planet_tres img {
	width: 60%;
}

.planet_tres {
	width: 10%;
	position: absolute;
	top: 45%;
	right: 5%;
}

.planet_quatro img {
	width: 45%;
}

.planet_quatro {
	width: 10%;
	position: absolute;
	bottom: 30%;
	left: 5%;
}

.family {
	width: 20%;
	position: absolute;
	bottom: -11px;
	right: 5px;
	z-index:100;
}

.family img {
	width:60%;
}

/******Arlee on the planet ********/

#arleeOnPlanet img {
	width: 46%;
}
	
#arleeOnPlanet {
	animation: floating 3s linear infinite;
	transform-origin: 50% 50%;
	margin: 1rem 0 !important;
	
	padding-right: 20%;
}
 
@keyframes floating {
  0% { transform: translateY(0) }
  33.33333% { transform: translateY(-10px) }
  66.66667% { transform: translateY(0) }
  100% { transform: translateY(0px) }
}


/****** lands ********/

#lands {
	max-width: 100%;
	position: relative;
}


#land {
	background-image: url("../images/works/cdesign/land.png");
	background-repeat: repeat-x;
	background-size: 40% 40%;
	width:100%;
	height: 50px;
	position: absolute;
	top: -10px;
	left: 0;
	color: #5B5249;
}

/*--------------------------------
 arlee introduction
---------------------------------*/
#arlee_info {
	background-color: #726658;
	background-color: #5B5249;
}

#info {
	padding: 0 0 30px;
	text-align: center;
}

h3#arlee_title {
	width: 100%;
	padding: 30px 0 10px;
	text-align: center;
}

h3#arlee_title img {
	width: 35%; /* all characters are 80% of original size */
}

.flex_arlee {
	display: flex;
	justify-content: center;
}

.flex_arlee img {
	width: 80%;
}

.arlee_p {
	margin-bottom: 15px;
	text-align: center;
	color: #fff;
}

.align_center {
	width: 50%;
	text-align: center;
}

.margin_right {
	margin-right: 10px;
}

.margin_left {
	margin-left: 10px;
}

.margin_bottom {
	margin-bottom: 15px;
}

.arlee_p_name {
	font-weight: 500;
	font-size: 125%;
	color: orange;
}
.arlee_pl {
	color: #fff;
	width: 80%;
	margin: 0 auto;
	padding-bottom: 20px;
}

/*--------------------------------
 who
---------------------------------*/
.who_line {
	background-color: #5B5249;
	background-image: url("../images/works/cdesign/line.png");
	background-repeat: repeat-x;
	background-position: top;
	height: 35px;
	color: #F9ED32;
	font-size: 1px;
}

#who {
	background-color: #F9ED32;
	padding: 30px 0 50px;
}

h3.who_title {
	font-size: 130%;
	font-weight: 500;
	padding: 10px 0 20px;
}

#who ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width:100%;
	padding: 0 5%;
}

#who ul li {
	width: 30%;
}

#who img {
	width: 100%;
}

.drop_shadow{
	transition-duration: 0.5s;
}

.drop_shadow img{
	cursor: pointer;
}

.drop_shadow:hover{
	filter: drop-shadow(10px 10px 10px #FC0);
	transform: translateY(-10px);
	transition-duration: 0.5s;
}

/*--------------------------------
 music materials
---------------------------------*/

#materials,
#paper_theater,
.section-title-area {
	background-color: #fff;
}

h3.section_title {
	font-size: 130%;
	font-weight: 500;
	padding: 70px 0 20px;
}

p.padding_b {
	padding-bottom: 30px;
}

.flex {
	display: flex;
	text-align: center;
	box-sizing: border-box;
}

figure.material_itemsL {
	width: 48%;
	margin-right: 2%;
	box-sizing: border-box;
}

figure.material_itemsR {
	width: 48%;
	margin-left: 2%;
	box-sizing: border-box;
}

figure.material_itemsL img,
figure.material_itemsR img,
figure.pmaterials img {
	width: 100%;
	box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
}

figcaption {
	width: 100%;
	margin: 10px 0 20px;
	line-height: 1.4;
    letter-spacing: 0.8px;
    word-break: break-all;
	color: rgb(51, 51, 51);
	text-align: center;
	box-sizing: border-box;
}
/* hover and make img bigger */
.img_wrap {
  width: 50%;
  margin: 20px auto 0;
  transition-duration: 0.5s;
}

.img_wrap img{
  width: 100%;
  cursor: pointer;
}

.img_wrap:hover{
  box-shadow: 10px 10px 10px rgba(0,0,0,0.3);
  transform: translateY(-10px);
  transition-duration: 0.5s;
}

/*--------------------------------
 paper theater
---------------------------------*/
#paper_theater {
    padding-bottom: 20px;
	box-sizing: border-box;
}

figure.pmaterials {
	width: 100%;
	box-sizing: border-box;
    text-align: center;
}

/*--------------------------------
 footer
---------------------------------*/
footer {
    background-color: #1A1A1A;
}

footer small p {
	font-family: 'Quicksand', sans-serif;
	text-align: center;
    color: #fff;
	font-size: 70%;
	padding: 40px 0;
}

/************ pageTop ************/

#pageTop {
	position: fixed;
	bottom: 110px;
	right: 20px;
	font-size: 60%;
}

#pageTop a {
	text-decoration: none;
	color: #000;
	text-align: center;
	display: inline-block;
}

#pageTop img {
	width: 90%;	
}


#pageTop a:hover {
	color: #666;
}

/*media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 767px) {
	
	.logo {
		position: fixed;
		top: 14px;
		left: 12px;
		z-index: 1000;
	}
	
	.logo img {
		width: 38%;
	}
	
	.helloR {
		display: none;
	}

/* Responsive - gnav
---------------------------------*/
	#gnav ul li {
		font-size: 95%;
		/*font-weight: bold;*/
		padding: 0 1.5%;
	}
	

/* Responsive - snav
---------------------------------*/
    
    #snav {
        display:none;
    }
    
	#snav_r {
        display: block;
        padding-top: 80px;
		max-width:100%;
		text-align: center;
		margin-bottom: 15px;
	} 
	
	#snav_r ul li {
        position: relative;
        display: inline-block;
        font-family: 'Quicksand', sans-serif;
		box-sizing: border-box;
		font-size: 90%;
	}
	
    #snav_r ul li a {
        text-decoration: none;
        color: #000;
    }
    
    #snav_r ul li.underline:after {
	position: absolute;
	bottom: -2px;
	left: 0;
	content: "";
	width: 100%;
	height: 2px;
	background-color: skyblue;
	}

	#snav_r ul li.borderR {
	border-right: 1px solid #999;
	padding: 0 9px;
    }
	
		#snav_r {display:none;}	

/* #snav_res
---------------------------------*/
	#snav_res {
		display: block;
		padding-top: 70px;
	}
	
	#snav_res ul {
		display: flex;
	}
	
	#snav_res ul li {
		font-family: 'Quicksand', sans-serif;
		font-size: 90%;
		width: 50%;
		text-align: center;
		padding: 3% 0;
		border-bottom: 1px solid rgba(200,200,200,1.00);
		box-sizing: border-box;
		background-color: rgba(255,255,255,.2);
	}
	
	#snav_res ul li:last-child {
		border-left: 1px solid  rgba(200,200,200,1.00);
	}
	
	#snav_res ul li a {
		display: block;
		text-decoration: none;
		color: black;	
	}
	
	#snav_res ul li:hover {
		background-color: #fff;
	}
	#snav_res li#cd {
		background-color: #fff;		
	}
   
	.info {
		margin: 0 2%;
		text-align: center;
	}	

	#dnav ul li {
		padding: 0 5px;
	}

	h1 {
		font-size: 52px;
		margin-top: 1%;
	}

/* Responsive - stars
---------------------------------*/

	.planet_uno,
	.planet_dos,
	.planet_tres,
	.planet_quatro {
		display: none;
	}

	#arleetheAnt {
	max-width: 100%;
	position: relative;
	text-align:center;
	}

	.starB01 {
		width: 10%;
		position: absolute;
		top: 40%;
		right: 5%;
	}

	.starB01 img {
	width: 90%;
	}

	.starM01 {
		width: 10%;
		position: absolute;
		top: 30%;
		left: 5%;
	}
	
	.starM01 img {
		width: 100%;
	}

/* Responsive - Arlee on planet
---------------------------------*/
#arleeOnPlanet img {
	width: 70%;
}
	
#arleeOnPlanet {
	padding-right: 0;
}
	
/* Responsive - Arlee info
---------------------------------*/
	#lands {
	max-width: 100%;
	position: relative;
}
	
	#land {
	background-image: url("../images/works/cdesign/land.png");
	background-repeat: repeat-x;
	background-size: 60% 60%;
	position: absolute;
	top: -18px;
	left: 0;
	}
	
.family {
	display:none;
}

.flex_arlee {
	width: 95%;
	margin: 0 auto;
	display: flex;
	text-align: center;
}

.arlee_p {
	margin-bottom: 15px;
	text-align: center;
	color: #fff;
}

	.arlee_pl {
		font-size: 90%;
		text-align: left;
	}
	
	.margin_bottom {
		margin-bottom: 40px;
	}


/* Responsive - introduction
---------------------------------*/
	h3#arlee_title img {
		width: 60%;
	}
	
	.flex_arlee {
		disply: flex;
		flex-direction: column;
	}
	
	.align_center {
		width: 100%;
	}
	
	.margin_right {
		margin-right: 0;
	}

	.margin_left {
		margin-left: 0;
	}
	
	.margin_bottom {
		margin-bottom: 0;
	}
	
	.flex_arlee img {
		width: 55%;
	}	
	
	.arlee_p_name {
		font-size: 110%;
	}
	
	.arlee_pl {
		text-align: center;
		font-size: 95%;
	}

/* Responsive - who
---------------------------------*/
	
	#who ul {
		max-width:100%;
	}
	
	.material_itemsL,.material_itemsR {
		width: 50%;
	}

/* Responsive - Materials
---------------------------------*/

	#materials {
		max-width: 100%;
	}
	
	.flex {
		width: 100%;
	}
	
	figcaption {
		font-size: 80%;
		box-sizing: border-box;
	}
	
/* Responsive -paper theater
---------------------------------*/
	#paper_theater .pmaterials img {
		max-width:100%;
	}
	
	#paper_theater p.padding_b {
		font-size:95%;
		box-sizing: border-box;
		margin: 0 1%;
	}
	
}