*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}



/*////////////////////////////////////////////////////////////////////////////////////////////////////
	Common
////////////////////////////////////////////////////////////////////////////////////////////////////*/
html, body { height: 100%;}
body {
  font-family: Lato, Arial, "Hiragino Kaku Gothic Pro W3", Meiryo, sans-serif;
  color: #222;
  text-align: center;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 14px;
  letter-spacing: 1px;
}

h1 {
	position: absolute;
	top: 40px;
	left: 40px;
    z-index: 10;
}

#allBg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
#allBg .bgLeft {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 0%;
	background-color: #bbe6e0;
	-webkit-transition: all 0.5s ease-out 1s;
	-moz-transition: all 0.5s ease-out 1s;
	transition: all 0.5s ease-out 1s;
}
#allBg .bgRight {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 0%;
	background-color: #f8f0d2;
	-webkit-transition: all 0.5s ease-out 1s;
	-moz-transition: all 0.5s ease-out 1s;
	transition: all 0.5s ease-out 1s;
}


#wrap {
	opacity: 0;
    height: 100%;
    position: relative;
}

.copyright.pc {
	position: fixed;
	top: 50%;
    right: 30px;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 1px;
	-webkit-transform: rotate(90deg) translateX(50%);
	-ms-transform: rotate(90deg) translateX(50%);
	transform: rotate(90deg) translateX(50%);
	
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	
	-webkit-font-smoothing: antialiased;
	
	z-index: 100;
}

.copyright.sp { display: none;}


#container {
	position: relative;
	z-index: 1;
    padding: 40px 50px 80px;
	margin: 0 auto;
    max-width: 1260px;
	overflow: hidden;
}
#container h2 {
	font-family: 'Lato', sans-serif;
	text-align: center;
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 3px;
	text-indent: 3px;
	margin-bottom: 50px;
}

#menuBtn {
	position: fixed;
	top: 40px;
	right: 40px;
	width: 60px;
	height: 60px;
	cursor: pointer;
	z-index: 1000;
}
#menuBtn span {
	position: absolute;
	left: 50%;
	margin-left: -10px;
	width: 20px;
	height: 2px;
	background-color: #000;
	display: block;
	z-index: 1100;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
#menuBtn span:nth-child(1) { top: 40%; margin-top: -2px;}
#menuBtn span:nth-child(2) { top: 50%; margin-top: -1px;}
#menuBtn span:nth-child(3) { top: 60%;}

#menuBtn:hover span {
	background-color: #fff;
}

#menuBtn.active span:nth-child(1) {
	-webkit-transform: translateY(7px) rotate(45deg);
	-moz-transform: translateY(7px) rotate(45deg);
	transform: translateY(7px) rotate(45deg);
}
#menuBtn.active span:nth-child(2) { opacity: 0;}
#menuBtn.active span:nth-child(3) {
	-webkit-transform: translateY(-7px) rotate(-45deg);
	-moz-transform: translateY(-7px) rotate(-45deg);
	transform: translateY(-7px) rotate(-45deg);
}



#menuBtn p {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	box-sizing: border-box;
	z-index: 1050;
}
#menuBtn p:nth-child(4) {
	border: #000 solid 2px;
	-webkit-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
#menuBtn:hover p:nth-child(4) {
	-webkit-transform: scale(1.2,1.2);
	-ms-transform: scale(1.2,1.2);
	transform: scale(1.2,1.2);
	opacity: 0;
}
#menuBtn p:nth-child(5) {
	background-color: #000;
	-webkit-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	
	-webkit-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	opacity: 0;
	
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
#menuBtn:hover p:nth-child(5) {
	-webkit-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	opacity: 1;
}



#menu {
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 0;
	-webkit-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
#menu.active {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	z-index: 900;
}
#menu ul {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
#menu ul li {
	font-size: 24px;
	letter-spacing: 2px;
	text-indent: 2px;
	padding: 10px 0;
    color: #ccc;
}
#menu ul li a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
#menu ul li:nth-child(odd) a:hover {
	color: #bbe6e0;
}
#menu ul li:nth-child(even) a:hover {
	color: #f8f0d2;
}



/*////////////////////////////////////////////////////////////////////////////////////////////////////
	Top page - PC
////////////////////////////////////////////////////////////////////////////////////////////////////*/

#topLogo {
    position: absolute;
	top: 5%;
	left: 50%;
	width: auto;
    height: 16.7%;
	max-height: 122px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 500;
	line-height: 0;
	text-align: center;
}
#topLogo img {
	height: 100%;
	width: auto;
}

article .item-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

article .item-content .concept {
	font-size: 20px;
	margin-top: 30px;
	-webkit-perspective: 400px;
			perspective: 400px;
}

article .item-wrapper,
article .item-content {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
article .item-wrapper,
article figure,
article .item-content {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

article {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  vertical-align: top;
  width: 480px;
  height:480px;
  margin: 0;
  -webkit-perspective: 1600px;
          perspective: 1600px;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

article .item-wrapper {
  width: 100%;
  height: 100%;
}
article .item-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 480px;
	height: 480px;
	margin: auto;
	background: #fff;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	overflow: hidden;
    /*box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);*/
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}

article .item-wrapper:hover::before { /*box-shadow: 0 14px 64px rgba(0, 0, 0, 0.20);*/}
article .item-wrapper.enter.ease, article .item-wrapper.leave {
	-webkit-transition: all .1s ease-in;
			transition: all .1s ease-in;
}

article .item-content {
  pointer-events: none;
  padding: 20% 0 20px;
  color: #000;
	-webkit-transition: all .1s ease-in;
			transition: all .1s ease-in;
}
article .item-wrapper:hover .item-content {
  /*text-shadow: 0 3px 10px rgba(0, 0, 0, 0.30);*/
}
article .item-content h2 {
    position: absolute;
    top: 126px;
    width: 100%;
	-webkit-transform: translateZ(100px);
			transform: translateZ(100px);
    font-size: 20px;
	font-weight: bold;
}
article .item-content h2 span { display: inline-block; margin: 0 43px;}
article .item-content h3 {
	font-size: 30px;
	font-weight: 900;
	letter-spacing: 3px;
	text-indent: 3px;
    margin-bottom: 10px;
	-webkit-transform: translateZ(150px);
			transform: translateZ(150px);
}
article .item-content p {
	font-size: 13px;
    margin-bottom: 1%;
	-webkit-transform: translateZ(50px);
			transform: translateZ(50px);
}
article .item-content .copy {
	font-size: 16px;
	-webkit-transform: translateZ(70px);
			transform: translateZ(70px);
}
article .item-content .author {
	-webkit-transform: translateZ(70px);
			transform: translateZ(70px);
}

#conceptMenu {
	font-family: 'Lato', sans-serif;
	position: absolute;
	top: 50%;
	left: 5%;
	text-align: left;
	font-size: 24px;
	letter-spacing: 4px;
	font-weight: 900;
	line-height: 30px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}
#conceptMenu li {
	position: relative;
    margin-bottom: 20px;
}
#conceptMenu li a {
	color: #000;
	text-decoration: none;
}
#conceptMenu a p {
	padding: 3px 25px;
}
#conceptMenu a p.ov {
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	overflow: hidden;
	padding: 0;
	-webkit-transition: all 0.5s cubic-bezier(0.68, 0.2, 0.265, 1.55);
	-moz-transition: all 0.5s cubic-bezier(0.68, 0.2, 0.265, 1.55);
	transition: all 0.5s cubic-bezier(0.68, 0.2, 0.265, 1.55);
}
#conceptMenu a:hover p.ov,
#conceptMenu a.current p.ov {
	width: 220px;
}
#conceptMenu a.current p.ov span {
	color: #000;
	background-color: transparent;
}
#conceptMenu p.ov span {
	display: block;
	padding: 3px 25px;
	color: #fff;
	background-color: #000;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

#conceptMenu p span.pc {
}


.contentLeft {
	width: 48%;
	float: left;
}
.contentRight {
	width: 48%;
	float: right;
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////
	Works - PC
////////////////////////////////////////////////////////////////////////////////////////////////////*/

#worksMain ul {
	overflow: hidden;
}
#worksMain ul li {
	float: left;
	width: 25%;
	box-sizing: border-box;
	padding: 0 10px;
	margin-bottom: 30px;
}
#worksMain ul li div {
	line-height: 0;
	margin-bottom: 10px;
}
#worksMain ul li div img { width: 100%; height: auto;}
#worksMain ul li p {
	font-size: 12px;
}


/*////////////////////////////////////////////////////////////////////////////////////////////////////
	Company - PC
////////////////////////////////////////////////////////////////////////////////////////////////////*/

#companyMain {
	background-color: #fff;
    padding: 60px 50px;
	margin-bottom: 60px;
}

#companyMain h3 {
	font-size: 20px;
	margin-bottom: 60px;
}

#companyMain ul li {
	overflow: hidden;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: #ccc solid 1px;
}
#companyMain ul li h4 {
	float: left;
	width: 20%;
    text-align: left;
}
#companyMain ul li p {
	text-align: left;
	padding-left: 22%;
}


/*////////////////////////////////////////////////////////////////////////////////////////////////////
	Contact - PC
////////////////////////////////////////////////////////////////////////////////////////////////////*/
#contactMain {
    background-color: #fff;
    padding: 60px 15%;
}
#contactMain.top {
    background-color: #fff;
    padding: 60px 50px;
}

#contactMain h3 {
	font-size: 20px;
	margin-bottom: 60px;
}

#contactMain ul li {
	overflow: hidden;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: #ccc solid 1px;
}
#contactMain ul li h4 {
	float: left;
    width: 32%;
    text-align: left;
    font-size: 12px;
}

#contactMain ul li div {
	text-align: left;
    padding-left: 34%;
}

input[type="button"],
input[type="text"],
input[type="submit"],
textarea {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	border-radius: 0;
	border: none;
	font-size: 16px;
}

input[type="text"],
textarea {
	background-color: #efefef;
	width: 100%;
    line-height: 1.6;
	padding: 5px 15px;
	box-sizing: border-box;
}

textarea { height: 100px;}

input[type="text"]:focus,
textarea:focus {
	outline: none;
}

input[type="button"],
input[type="submit"],
.btnArea a {
	display: inline-block;
	width: 140px;
	line-height: 40px;
	margin: 0 10px;
	background-color: #000;
	color: #fff;
	text-decoration: none;
	text-align: center;
	border: #000 solid 1px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
input[type="button"]:hover,
input[type="submit"]:hover,
.btnArea a:hover {
	background-color: #fff;
	color: #000;
}

#formWrap {
	text-align: left;
}
#formWrap h4 {
	font-size: 16px;
	margin-bottom: 30px;
}
#formWrap p {
	margin-bottom: 5px;
}
#formWrap p.btnArea {
	text-align: center;
}

#formWrap .formTable {
	width: 100%;
	margin-bottom: 50px;
}
#formWrap .formTable th {
	width: 30%;
	font-weight: bold;
}
#formWrap .formTable th,
#formWrap .formTable td {
	padding: 5px 0;
}

#formWrap.thanks {
	text-align: center;
}
#formWrap.thanks .thanks {
	margin-bottom: 50px;
}


@media screen and (max-width: 736px) {

/*////////////////////////////////////////////////////////////////////////////////////////////////////
	Common - SP
////////////////////////////////////////////////////////////////////////////////////////////////////*/

img { max-width: 100%; height: auto;}

#wrap {
	width: 100%;
	overflow: hidden;
    padding-bottom: 40px;
}

h1 {
    top: 20px;
    left: 20px;
	width: 75px;
}

#menuBtn {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
}
#menuBtn.active span:nth-child(1) {
    -webkit-transform: translateY(5px) rotate(45deg);
    -moz-transform: translateY(5px) rotate(45deg);
    transform: translateY(5px) rotate(45deg);
}
#menuBtn.active span:nth-child(3) {
    -webkit-transform: translateY(-5px) rotate(-45deg);
    -moz-transform: translateY(-5px) rotate(-45deg);
    transform: translateY(-5px) rotate(-45deg);
}

#menu ul li {
    font-size: 20px;
    padding: 5px 0;
}

.copyright.sp {
	display: block;
    position: relative;
    top: inherit;
    right: inherit;
    font-size: 10px;
}
.copyright.pc { display: none;}


#container {
	padding: 0 10px 40px;
    margin: 0 auto;
}

#container h2 {
    font-size: 24px;
    letter-spacing: 2px;
    text-indent: 2px;
    margin-bottom: 30px;
}


/*////////////////////////////////////////////////////////////////////////////////////////////////////
	Top page - SP
////////////////////////////////////////////////////////////////////////////////////////////////////*/

#topLogo {
    width: 150px;
	height: auto;
}
#topLogo img { height: auto;}

#wrap.topWrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-bottom: 0;
}
#wrap.topWrap .copyright {
    position: absolute;
    bottom: 20px;
    width: 100%;
}

article {
    width: 300px;
    height: 300px;
}
article .item-wrapper::before {
    width: 300px;
    height: 300px;
}

article .item-content .concept {
    font-size: 14px;
    margin-top: 15px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 70px;
}

article .item-content h2 {
    top: 74px;
    font-size: 16px;
}
article .item-content h2 span {
    margin: 0px 23px;
}
article .item-content p {
    margin: 0 auto 1%;
    width: 140px;
}

article .item-content h3 {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 2px;
    text-indent: 2px;
    margin-bottom: 5px;
}

article .item-content .copy {
    font-size: 14px;
}
article .item-content .author {
    font-size: 11px;
    margin: 0 18%;
}

#conceptMenu {
    font-size: 18px;
    letter-spacing: 4px;
    line-height: 20px;
}
#conceptMenu li {
    position: relative;
    margin-bottom: 20px;
}
#conceptMenu a p {
    padding: 2px 15px;
}
#conceptMenu a:hover p.ov,
#conceptMenu a.current p.ov {
    width: 10px;
}
#conceptMenu a p span.pc { display: none;}

.contentLeft {
    width: 100%;
    float: none;
}
.contentRight {
    width: 100%;
    float: none;
	margin-bottom: 60px;
}


/*////////////////////////////////////////////////////////////////////////////////////////////////////
	Works - SP
////////////////////////////////////////////////////////////////////////////////////////////////////*/
#worksMain ul li {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 15px;
}
#worksMain ul li div {
    line-height: 0;
    margin-bottom: 5px;
}
#worksMain ul li p {
    font-size: 10px;
}


/*////////////////////////////////////////////////////////////////////////////////////////////////////
	Company - SP
////////////////////////////////////////////////////////////////////////////////////////////////////*/
#companyMain {
    padding: 30px 20px;
}
#companyMain h3 {
    font-size: 16px;
    margin-bottom: 30px;
}

#companyMain ul li h4 {
    float: none;
    width: 100%;
    text-align: left;
    font-size: 12px;
	font-weight: bold;
    margin-bottom: 5px;
}
#companyMain ul li p {
    padding-left: 0;
    font-size: 12px;
}


/*////////////////////////////////////////////////////////////////////////////////////////////////////
	Contact - SP
////////////////////////////////////////////////////////////////////////////////////////////////////*/
#contactMain {
    padding: 30px 20px;
}
#contactMain.top {
    padding: 30px 20px;
}
#contactMain ul li div {
    padding-left: 0;
    font-size: 12px;
}

#contactMain h3 {
    font-size: 16px;
    margin-bottom: 30px;
}

#contactMain ul li h4 {
    float: none;
    width: 100%;
    text-align: left;
    font-size: 12px;
	font-weight: bold;
    margin-bottom: 5px;
}

#contactMain ul li {
    padding-bottom: 0;
    margin-bottom: 20px;
    border-bottom: none;
}

#formWrap h4 {
    font-size: 12px;
    margin-bottom: 30px;
}

#formWrap p {
    font-size: 12px;
}

#formWrap .formTable {
    margin-bottom: 40px;
}

#formWrap .formTable th {
    width: 40%;
    font-size: 12px;
    letter-spacing: 0;
}

input[type="button"],
input[type="submit"],
.btnArea a {
    width: 110px;
    line-height: 40px;
    font-size: 14px;
    margin: 0 5px;
}

#formWrap.thanks .thanks {
    margin-bottom: 50px;
    font-size: 10px;
}

}