@charset "utf-8";

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

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

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

p {
	line-height: 1.8;
    letter-spacing: 0.8px;
    word-break: break-all;
	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: 90%;
	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: 240px;
	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;
}

/*--------------------------------
 contents
---------------------------------*/
/* #titles
---------------------------------*/
/*h1 h2 title
----------------------------*/
h1 {
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size: 72px;
	color: #333;
	margin: 35px 0 10px;
	
	opacity: 0;
	animation-duration: 2s;
	animation-delay : .2s;
	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 {
	font-size: 110%;
	font-weight: 500;
	margin-bottom: 35px;
}

#titles p {
	width: 50%;
	margin: 0 auto;
	text-align: left;
}

/* planet_uno, dos
----------------------------*/
#titles {
	position: relative;
	text-align: center;
}

.planet_uno {
	position: absolute;
	top: -55px;
	right: 2%;
}

.planet_uno img {
	width: 100px;
}

.planet_dos {
	position: absolute;
	top: 85px;
	left: 3%;
}

.planet_dos img {
	width: 95px;
}

.starB01 {
	position: absolute;
	top: 80px;
	right: 8%;
	z-index: -1;
}

.starB01 img {
	width: 80px;
}

.starM01 {
	position: absolute;
	top: 300px;
	left: 5%;
		z-index: -1;
}

.starS01 {
	position: absolute;
	top: 250px;
	right: 15%;
		z-index: -1;
}

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

#dnav ul {
	text-align: center;
}

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

#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;
}

/* LINE Stamp
----------------------------*/
#line_stamp {
	text-align: center;
	margin: 10px 10px 30px;
	z-index: 1000;
}

#line_stamp img {
	max-width: 800px;
	width: 100%;
	filter: drop-shadow(0px 3px 10px rgba(0,0,0,0.2));
	cursor: pointer;
}

.lstamp_d_shadow {
	transition-duration: 0.5s; /* duration for back */
}

.lstamp_d_shadow:hover{
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.2));
	transform: translateY(-10px);
	transition-duration: 0.3s;
}


/* Arlee on the planet
----------------------------*/
#arleetheAnt {
	height: 500px;
	position: relative;
}

#arleeOnPlanet img {
	width: 65%;
}
	
#arleeOnPlanet {
	position: absolute;
	z-index: -1;
	top: 0px;
	left: 300px;
	animation: floating 3s linear infinite;
	transform-origin: 50% 50%;
	margin: 1rem 0 !important;
}
 
@keyframes floating {
  0% { transform: translateY(0) }
  33.33333% { transform: translateY(-10px) }
  66.66667% { transform: translateY(0) }
  100% { transform: translateY(0px) }
}

.planet_tres img,
.planet_quatro img {
	width: 60%;
}

.planet_tres {
	position: absolute;
	top: 120px;
	right: 6%;
}

.planet_quatro {
	position: absolute;
	bottom: 200px;
	right: 100px;
}

/*--------------------------------
 arlee introduction
---------------------------------*/
/* lands
----------------------------*/
#lands {
	position: relative;
	height: 100px;
}

.fl {
	position: absolute;
	bottom: -3px;
	left: 0;
}

.fr {
	position: absolute;
	bottom: -3px;
	right: 0;
}

.fl img,
.fr img {
	width: 100px;
}

.family {
	position: absolute;
	top: 0px;
	right: 40px;
	z-index: 1;
}

/* Arlee info
----------------------------*/
#arlee_info {
	background-color: #726658;
}

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

h3#arlee_title {
	width: 100%;
	padding: 40px 0 10px;
}

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

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

.flex_arlee img {
	width: 70%;
}

.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: 70%;
	margin: 0 auto;
	padding-bottom: 20px;
	text-align: left;
}

/*--------------------------------
 who
---------------------------------*/
.who_line {
	background-color: #726658;
	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;
	text-align: center;
}

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

#who ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	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;
	text-align: center;
}

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%;
	z-index: 100;
}

#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;
	}

/*--------------------------------
 gnav responsive
---------------------------------*/	
	#gnav ul li {
		font-size: 95%;
		/*font-weight: bold;*/
		padding: 0 1.5%;
	}
	
/*--------------------------------
 snav responsive
---------------------------------*/
    
    #snav {
        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;
	}

/* planets and stars responsive
---------------------------------*/
	
	.planet_uno,
	.planet_dos {
		display: none;
	}

	.starB01,
	.starM01,
	.starS01 {
		display: none;
	}
	
/* title responsive
---------------------------------*/
	p.info,
	.section-title-area p  {
		
		text-align: left;
		padding: 0 3%;
		font-size: 95%;
	}
	
	#titles p {
	width: 80%;
	margin: 0 auto;
	text-align: left;
}
	
/* arlee info responsive
---------------------------------*/
#lands {
	display: none;
}

#arlee_info {
	position:relative;
}

.family {
	position: absolute;
	top:-90px;
	right: 30px;
}

.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;
	}

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

#arleetheAnt {
	height: 600px;
	position: relative;
}

#arleeOnPlanet img {
	width: 85%;
}
	
#arleeOnPlanet {
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
}
 
.planet_tres,
.planet_quatro {
	display:none;
}

/***** arlee 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: 100%;
	}
	
	.arlee_pl {
		text-align: left;
		font-size: 90%;
		width: 60%;
	}

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

/***** material ****/

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