@charset "UTF-8";
/* CSS Document */

/* normalize css */
@import url('/common/css/normalize.css');
/* FontAwesome5 css */
@import url('//use.fontawesome.com/releases/v5.0.6/css/all.css');
/* Remodal css */
@import url('/common/css/remodal.css');
@import url('/common/css/remodal-default-theme.css');

/* reset style */
* {
}
html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5% /*10px*/
}
body {
  width: 100%;
  height: 100%;
  background: #ffffff;
  font-family: "Zen Kaku Gothic N R", sans-serif;
  font-size: 1rem;
}
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

/* link style */
a {
	cursor: pointer;
	color: #222222;
	text-decoration: underline;
}
a:link,
a:visited {
	color: #222222;
	text-decoration: underline;
}
a:hover,
a:focus,
a:active {
	color: #666666;
	text-decoration: underline;
}

/* common style ======================================================== */
/* #container */
#container {
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #222222;
  text-align: left;
  background: #ffffff;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  #container {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
/* .wrap-width */
.wrap-width {
  width: 100%;
  max-width: 960px;
  margin: 1em auto;
  box-sizing: border-box;
}
h1, h2, h3 {
  font-family: "Zen Kaku Gothic N B", sans-serif;
}
.close-btn {
  margin-top: 35px;
  text-align: center;
}

/* header style ======================================================== */
/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 1px 1px rgba(50,50,50,0.1), inset 0 1px 1px rgba(255,255,255,0.1);
  box-sizing: border-box;
  transition: .8s;
  transition-timing-function: ease-in;
  opacity: 0;
}
header .wrap-width {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0.5em auto 0.25em;
  padding: 0 1.25em;
  width: 100%;
  box-sizing: border-box;
}
header .wrap-width h1 {
  width: 70%;
  max-width: 120px;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  text-align: left;
  vertical-align: middle;
  line-height: 1;
  box-sizing: border-box;
  transition: .3s;
  transition-delay: .5s;
  transition-timing-function: ease-in;
}
header .wrap-width h1 img {
  width: 100%;
  height: auto;
}
header .wrap-width nav {
  width: 30%;
  max-width: 200px;
  text-align: right;
  vertical-align: middle;
  box-sizing: border-box;
  transition: .3s;
  transition-delay: .5s;
  transition-timing-function: ease-in;
}
@media (max-width: 768px) {
  header .wrap-width h1 {
    width: 70%;
    max-width: 120px;
  }
}
@media (max-width: 425px) {
  header .wrap-width h1 {
    width: 70%;
    max-width: 100px;
  }
}
@media (max-width: 320px) {
  header .wrap-width h1 {
    width: 70%;
    max-width: 80px;
  }
}

/* nav style ======================================================== */
/* nav */
nav {
  position: absolute;
  top: 0.25em;
  right: 1.25em;
  box-sizing: border-box;
}
nav .menu-trigger,
nav .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
nav .menu-trigger {
  position: relative;
  width: 2em;
  height: 1.6em;
}
nav .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #222222;
}
nav .menu-trigger span:nth-of-type(1) {
  top: 0;
}
nav .menu-trigger span:nth-of-type(2) {
  top: 0.75em;
}
nav .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger span:nth-of-type(1) {
  -webkit-animation: menu-bar01 .5s forwards;
  animation: menu-bar01 .5s forwards;
}
@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(0.75em) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(0.75em) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(0.75em) rotate(45deg);
  }
  50% {
    transform: translateY(0.75em) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-trigger span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}
.menu-trigger span:nth-of-type(3) {
  -webkit-animation: menu-bar02 .5s forwards;
  animation: menu-bar02 .5s forwards;
}
@-webkit-keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-0.75em) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-0.75em) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-0.75em) rotate(-45deg);
  }
  50% {
    transform: translateY(-0.75em) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 .5s forwards;
  animation: active-menu-bar01 .5s forwards;
}
@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(0.75em) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0.75em) rotate(45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(0.75em) rotate(0);
  }
  100% {
    transform: translateY(0.75em) rotate(45deg);
  }
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 .5s forwards;
  animation: active-menu-bar03 .5s forwards;
}
@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-0.75em) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-0.75em) rotate(-45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-0.75em) rotate(0);
  }
  100% {
    transform: translateY(-0.75em) rotate(-45deg);
  }
}
nav ul {
  display: none;
  width: 100%;
  background: #fafafa;
  list-style-type: none;
  text-align: center;
  margin: 0;
  padding-left: 0;
  margin-block-start: 0;
  -webkit-margin-before: 0;
  padding-inline-start: 0;
  -webkit-padding-start: 0;
  box-sizing: border-box;
  border-top: 2px solid #ffffff;
  font-family: "Zen Kaku Gothic N B", sans-serif;
}
nav ul li {
  border-bottom: 2px solid #ffffff;
  box-sizing: border-box;
}
nav ul li a {
  display: block;
  padding: 1em;
  box-sizing: border-box;
}
#container nav ul li a:hover,
#container nav ul li a:focus,
#container nav ul li a:active {
  background: #eeeeee;
}
@media (max-width: 768px) {
  nav {
    top: 0.125em;
  }
}
@media (max-width: 425px) {
  nav {
    top: 0.1em;
  }
}

/* article style ======================================================== */
/* article.contents */
article.contents {
  text-align: left;
}
article.contents > span {
  display: block;
  margin: 1em 0;
}
/* section.img-main */
section.img-main {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
section.img-main .wrap-width {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 50%;
  height: 15%;
  text-align: center;
  box-sizing: border-box;
}
section.img-main h1 {
  display: block;
  width: 50%;
  height: auto;
  margin: 0 auto 3em;
}
section.img-main img {
  width: 100%;
  height: auto;
}
section.img-main a.arrow{
  position: relative;
  display: inline-block;
  padding: 0;
  color: #222222;
  vertical-align: middle;
  text-decoration: none;
  font-size: 3rem;
  text-indent: -9999px;
}
section.img-main a.arrow::before,
section.img-main a.arrow::after{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
section.img-main a.arrow.for-img-main::before{
  left: -0.3em;
  width: 0.6em;
  height: 0.6em;
  border-top: 1px solid #222222;
  border-right: 1px solid #222222;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* section.contents-main */
section.contents-main {
  text-align: left;
}
section.contents-main .effect {
  transition: .5s;
  transition-timing-function: ease-in;
}
section.contents-main .effect h1 {
  transition: .5s;
  transition-delay: .5s;
  transition-timing-function: ease-in;
}
section.contents-main .effect h2,
section.contents-main .effect ul,
section.contents-main .effect p,
section.contents-main .effect iframe,
section.contents-main .effect #tongpoo-map {
  transition: .5s;
  transition-delay: .5s;
  transition-timing-function: ease-in;
}
section.contents-main .wrap-width {
  padding: 0 1.25em;
  box-sizing: border-box;
}
section.contents-main h1 {
  font-size: 1.4rem;
  line-height: 1.6;
}
section.contents-main h2 {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  section.contents-main h1 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  section.contents-main h2 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
section.contents-main ul {
  padding-left: 0;
  margin-block-end: 2em;
  -webkit-margin-after: 2em;
  padding-inline-start: 0;
  -webkit-padding-start: 0;
  list-style-type: none;
  line-height: 1.25;
}
section.contents-main li {
  margin-left: 1.25em;
  margin-bottom: 0.75em;
  text-indent: -0.25rem;
}
section.contents-main li.lastChild {
  text-indent: 0;
}
section.contents-main li i {
  margin: -0.5em 0.5em 0 -1em;
  font-size: 1rem;
}
section.contents-main p {
  text-align: left;
}
section.contents-main img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  section.img-main .wrap-width {
    width: 100%;
  }
  section.contents-main .wrap-width {
    width: 100%;
  }
}
/* section.contents-main .wrap-works-pickup */
section#works {
}
section.contents-main .wrap-works-pickup {
  text-align: left;
  margin: 0 0 2em;
}
section.contents-main .wrap-works-pickup ul {
  width: 100%;
  padding-left: 0;
  padding-inline-start: 0;
  -webkit-padding-start: 0;
  margin-block-end: 0;
  -webkit-margin-after: 0;
}
section.contents-main .wrap-works-pickup li.img-items {
  float: left;
  width: 50%;
  box-sizing: border-box;
  margin-left: 0;
  margin-bottom: 0;
  text-indent: 0;
  transition: .5s;
  transition-timing-function: ease-in;
}
section.contents-main .wrap-works-pickup li.img-items .wrap-works-pickup_items {
  transition: .5s;
  transition-delay: .5s;
  transition-timing-function: ease-in;
}
section.contents-main .wrap-works-pickup li.img-items a {
  display: block;
  overflow: hidden;
  width: 100%;
}
section.contents-main .wrap-works-pickup li.img-items a:hover {
  opacity: 0.8;
}
.remodal-overlay {
  background: rgba(0, 0, 0, 0.75);
}
div .remodal.remodal-is-initialized.remodal-is-opened {
  text-align: left;
}
div .remodal.remodal-is-initialized.remodal-is-opened h1 {
  width: 100%;
  margin: 0;
  margin-block-start: 0.175em;
  margin-block-end: 0.175em;
  -webkit-margin-before: 0.175em;
  -webkit-margin-after: 0.175em;
}
div .remodal.remodal-is-initialized.remodal-is-opened p {
  font-size: 1.2rem;
  line-height: 1.4;
}
div .remodal.remodal-is-initialized.remodal-is-opened img {
  width: 100%;
  height: auto;
}
.remodal-wrapper {
  animation: fadeIn 0.8s ease-in 0s 1 normal;
  -webkit-animation: fadeIn 0.8s ease-in 0s 1 normal;
}
@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
.remodal-close {
  top: 0;
  left: auto;
  right: 0;
  width: 35px;
  height: 35px;
}
.remodal-close::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 10px;
  left: 10px;
  width: 1px;
  height: 25px;
  border: 0;
  margin: 0;
  padding: 0;
  background-color: #222222;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.remodal-close::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 10px;
  left: 10px;
  width: 1px;
  height: 25px;
  border: 0;
  margin: 0;
  padding: 0;
  background-color: #222222;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.remodal-close:hover {
  color: #444444;
}
@media (max-width: 768px) {
  section.contents-main .wrap-width.wrap-pickup {
    padding: 0;
    box-sizing: border-box;
  }
  section.contents-main .wrap-works-pickup ul li.img-items {
    float: left;
    width: 50%;
  }
  .remodal-wrapper {
    margin: 0;
    padding: 0;
  }
  .remodal.remodal-is-initialized.remodal-is-opened {
    width: 100%;
    height: auto;
    margin: 0;
  }
}
@media (max-width: 425px) {
  section.contents-main .wrap-width.wrap-pickup {
    padding: 0;
    box-sizing: border-box;
  }
  section.contents-main .wrap-works-pickup ul li.img-items {
    float: none;
    width: 100%;
  }
}
/* section.contents-main #contact */
section.contents-main .wrap-contact {
}
section.contents-main .wrap-contact .wrap-contact-map {
}
section.contents-main .wrap-contact .wrap-contact-map .wrap-contact-map-inner {
  float: left;
  width: 40%;
  box-sizing: border-box;
}
section.contents-main .wrap-contact .wrap-contact-map #tongpoo-map {
  float: right;
  width: 60%;
  box-sizing: border-box;
}
section.contents-main .wrap-contact .wrap-contact-mail {
  box-sizing: border-box;
}
section.contents-main iframe {
  width: 100%;
  height: 400px;
}
section.contents-main #tongpoo-map {
  width: 100%;
  height: 400px;
}
@media (max-width: 768px) {
  section.contents-main .wrap-contact .wrap-contact-map {
  }
  section.contents-main .wrap-contact .wrap-contact-map .wrap-contact-map-inner {
    float: none;
    width: 100%;
    box-sizing: border-box;
  }
  section.contents-main .wrap-contact .wrap-contact-map #tongpoo-map {
    float: none;
    width: 100%;
    box-sizing: border-box;
  }
  section.contents-main .wrap-contact .wrap-contact-mail {
    margin-top: 2em;
    box-sizing: border-box;
  }
}

/* footer style ======================================================== */
/* footer */
footer {
  margin: 0;
  background: #222222;
  color: #ffffff;
  text-align: center;
}
footer .wrap-width {
  margin: 0 auto;
}
/* footer .copyright */
footer .copyright {
  margin: 0 1.25em;
  padding: 0.5em 0;
  font-size: 1.1rem;
  text-align: left;
}
/* .container-footer .create */
footer .create {
  width: 230px;
  height: auto;
  margin: auto;
  padding: 0 0 3em;
  font-size: 1rem;
}
footer .create a {
  display: inline-block;
  color: #ffffff;
}
footer .create img {
  width: 60%;
  height: auto;
  margin:0 0 0.5em;
}
/* footer #pageTop */
footer #pageTop {
  display: block;
  position: fixed;
  right: 0px;
  bottom: 60px;
  z-index: 999;
}
@media (max-width: 768px) {
  footer #pageTop {
    bottom: 30px;
  }
}
footer #pageTop a.arrow {
  position: relative;
  display: inline-block;
  padding: 0;
  color: #222222;
  vertical-align: middle;
  text-decoration: none;
  font-size: 3rem;
  text-indent: -9999px;
  text-align: left;
}
footer #pageTop a.arrow::before,
footer #pageTop a.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
footer #pageTop a.arrow.for-pagetop::before {
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  border: 1px solid #222222;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
footer #pageTop a.arrow.for-pagetop::after {
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid #222222;
  border-right: 1px solid #222222;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@-moz-document url-prefix() {
  footer #pageTop {
    right: 45px;
  }
  footer #pageTop a.arrow.for-pagetop::after {
    left: 10px;
  }
}
