@charset "UTF-8";


/* ==================================================================

  style.css

================================================================== */

/* --------------------------------------------------
  common
-------------------------------------------------- */
html,
body {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 100%;
}

/* --------------------------------------------------
  bg
-------------------------------------------------- */
html,
body,
#loading,
#nav,
.inline_content {
  /* background-color: #fffcec; */
  /* background-image: url("../images/bg.png"); */
  /* background-repeat: repeat; */
  background-image: url("../images/bg_white.png"), url("../images/bg/16.png");
  background-repeat: repeat, no-repeat;
  background-size: auto auto, cover;
}

/* --------------------------------------------------
  pc / sp
-------------------------------------------------- */
.pc-obj {
  display: block;
}
.sp-obj {
  display: none;
}

/* --------------------------------------------------
    loading
-------------------------------------------------- */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  z-index: 50;
}

/* --------------------------------------------------
  wrapper
-------------------------------------------------- */
#wrapper {
	position: relative;
	margin: 0;
	padding: 0;
	visibility: hidden;
}

/* --------------------------------------------------
  logo
-------------------------------------------------- */
#logo {
  width: 200px;
  position: absolute;
  top: 35px;
  left: 40px;
  z-index: 3000;
}

/* --------------------------------------------------
  nav
-------------------------------------------------- */
#nav {
  float: none;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin-bottom: 0px;
  padding-top: 0px;
  z-index: 200;
}
#nav .inner {
  position: static;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
#nav ul.gnav li {
  display: block;
  font-size: 56px;
  font-family: 'Londrina Solid', cursive;
  font-weight: bold;
  line-height: 1;
  padding: 0;
  margin-bottom: 0.4em;
}
#nav ul.gnav li.logo img {
  width: 300px;
  margin-bottom: 0.4em;
}
#nav ul.gnav li.home {
  cursor: pointer;
}
#nav ul.gnav li:last-child {
  margin-bottom: 0;
}
#nav ul.gnav li a:link, #nav ul.gnav li a:visited {
  text-decoration: none;
}

/* --------------------------------------------------
  menu, menu-trigger
-------------------------------------------------- */
.menu {
  position: absolute;
  top: 52px;
  right: 40px;
  line-height: 1;
  z-index: 300;
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 32px;
  height: 15px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  bottom: 0;
}
.menu-trigger.active span {
  background-color: #000;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}

/* --------------------------------------------------
  socials
-------------------------------------------------- */
ul.socials {
  position: absolute;
  top: 45px;
  right: 100px;
  line-height: 1;
  /* z-index: 80; */
  z-index: 3000;
}
ul.socials li {
  display: inline-block;
}
ul.socials li:last-child {
  margin-left: 15px;
}
ul.socials li img {
  width: 30px;
}

/* --------------------------------------------------
  copyright
-------------------------------------------------- */
ul.copyright {
  position: absolute;
  bottom: 20px;
  left: 40px;
  z-index: 3000;
}
ul.copyright li {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}

/* --------------------------------------------------
  items
-------------------------------------------------- */
#items {
  margin: 0;
  padding: 0;
}
#items .item span {
  display: block;
  position: absolute;
}
#items .item span img {
  display: block;
}
#items .item span img.rotateR,
#items .item span img.rotateL {
	width: 50%;
	height: 50%;
}
#items .item span img.rotateR {
    -webkit-animation: spinL 45s linear infinite;
    -moz-animation: spinR 45s linear infinite;
    -ms-animation: spinR 45s linear infinite;
    -o-animation: spinR 45s linear infinite;
    animation: spinR 45s linear infinite;
}
@-webkit-keyframes spinR {
  0% {-webkit-transform: rotate(0deg);}
  100% {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes spinR {
  0% {-moz-transform: rotate(0deg);}
  100% {-moz-transform: rotate(360deg);}
}
@-ms-keyframes spinR {
  0% {-ms-transform: rotate(0deg);}
  100% {-ms-transform: rotate(360deg);}
}
@-o-keyframes spinR {
  0% {-o-transform: rotate(0deg);}
  100% {-o-transform: rotate(360deg);}
}
@keyframes spinR {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}
#items .item span img.rotateL {
    -webkit-animation: spinL 45s linear infinite;
    -moz-animation: spinL 45s linear infinite;
    -ms-animation: spinL 45s linear infinite;
    -o-animation: spinL 45s linear infinite;
    animation: spinL 45s linear infinite;
}
@-webkit-keyframes spinL {
  0% {-webkit-transform: rotate(360deg);}
  100% {-webkit-transform: rotate(0deg);}
}
@-moz-keyframes spinL {
  0% {-moz-transform: rotate(360deg);}
  100% {-moz-transform: rotate(0deg);}
}
@-ms-keyframes spinL {
  0% {-ms-transform: rotate(360deg);}
  100% {-ms-transform: rotate(0deg);}
}
@-o-keyframes spinL {
  0% {-o-transform: rotate(360deg);}
  100% {-o-transform: rotate(0deg);}
}
@keyframes spinL {
  0% {transform: rotate(360deg);}
  100% {transform: rotate(0deg);}
}

/* --------------------------------------------------
  inline_content
-------------------------------------------------- */
.inline_content {
  position: relative;
  width: 100%;
  min-height: 100%;
  z-index: 500;
}
.inline_content .inner {
  width: 800px;
  min-height: 85%;
  margin: 0 auto;
  padding: 12% 0 12% 0;
}

/* --------------------------------------------------
  close
-------------------------------------------------- */
.close {
  position: fixed;
  top: 52px;
  right: 40px;
  line-height: 1;
  z-index: 1000;
}
.close-trigger,
.close-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.close-trigger {
  position: relative;
  width: 32px;
  height: 15px;
}
.close-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
}
.close-trigger span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}
.close-trigger span:nth-of-type(2) {
  bottom: 0;
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}

/* --------------------------------------------------
  inline_content
-------------------------------------------------- */
.inline_content {
  text-align: center;
}

.inline_content h2 {
  font-size: 56px;
  font-family: 'Londrina Solid', cursive;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1em;
}
.inline_content h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1em;
}
.inline_content p {
  margin-bottom: 5em;
}

/* --------------------------------------------------
  about
-------------------------------------------------- */
#about h3.ttl {
  font-size: 56px;
  font-family: 'Londrina Solid', cursive;
  margin-bottom: 1.5em;
}
#about ul.col1 {
  width: 100%;
  margin-bottom: 10em;
}
#about ul.col2 {
  width: 100%;
}
#about ul.col2 h3 {
  margin-bottom: 1.5em;
}
#about ul.col2 .left {
  float: left;
  width: 45%;
}
#about ul.col2 .right {
  float: right;
  width: 45%;
}
#about ul img {
  margin-bottom: 1em;
}

/* --------------------------------------------------
  contact
-------------------------------------------------- */
#contact h2 {
  margin-bottom: 2em;
}
#contact a {
  font-size: 32px;
  font-family: 'Londrina Solid', cursive;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
}
#contact a:hover {
  text-decoration: underline;
}


/* ==================================================================

  mediaquery.css

================================================================== */
@media screen and (max-width: 768px) {

/* --------------------------------------------------
  pc / sp
-------------------------------------------------- */
.pc-obj {
  display: none;
}
.sp-obj {
  display: block;
}

/* --------------------------------------------------
  logo
-------------------------------------------------- */
#logo {
  width: 40%;
  top: 25px;
  left: 20px;
}

/* --------------------------------------------------
  nav
-------------------------------------------------- */
#nav ul.gnav li {
  font-size: 40px;
}
#nav ul.gnav li:first-child {
  margin-top: 0.6em;
}

/* --------------------------------------------------
  menu, menu-trigger
-------------------------------------------------- */
.menu {
  right: 20px;
}

/* --------------------------------------------------
  socials
-------------------------------------------------- */
ul.socials {
  right: 80px;
}

/* --------------------------------------------------
  copyright
-------------------------------------------------- */
ul.copyright {
  bottom: 10px;
  left: 20px;
}
ul.copyright li {
  font-size: 10px;
}

/* --------------------------------------------------
  close
-------------------------------------------------- */
.close {
  right: 20px;
}

/* --------------------------------------------------
  inline_content
-------------------------------------------------- */
.inline_content .inner {
  width: auto;
  min-height: 70%;
  margin: 0 auto;
  padding: 40% 8% 30% 8%;
}

/* --------------------------------------------------
  inline_content
-------------------------------------------------- */
.inline_content h2 {
  font-size: 40px;
}
.inline_content h3 {
  font-size: 18px;
}

/* --------------------------------------------------
  about
-------------------------------------------------- */
#about h3.ttl {
  font-size: 40px;
}
#about ul.col2 .left {
  float: none;
  width: 100%;
}
#about ul.col2 .right {
  float: none;
  width: 100%;
}

/* --------------------------------------------------
  contact
-------------------------------------------------- */
#contact h2 {
  margin-bottom: 2em;
}

}