@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

html { height: 100%; }

body {
  display: flex;
  flex-direction: column;
  color: #212121;
  font-size: 12px;
  font-family: Lato, "Noto Sans JP", YuGothic, '游ゴシック', sans-serif;
}

a {
  color: #212121;
  text-decoration: none;
}

@media (min-width: 767px){

  body {
    font-size: 14px;
  }

}

.container {
  flex: 1;
}

@media (max-width: 768px) {
	.br-sp { display:none; }
}

.button {
  flex: 1 1 auto;
  display: block;
  margin: 10px auto;
  width: 70%;
  padding: 15px 20px;
  border: 2px solid #212121;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  -webkit-transition: .3s;
  transition: .3s;
  box-sizing: border-box;
}
.button:after {
  position: absolute;
  -webkit-transition: .3s;
  transition: .3s;
  content: '';
  width: 0;
  left: 50%;
  bottom: 0;
  height: 3px;
  background: #212121;
}

.button:hover {
  box-shadow: inset 0px 0px 0px 3px #212121;
}
.button:hover:after {
  width: 0%;
}

/*///////////////////////////////
header
///////////////////////////////*/
.top {
  background: url(../../images/main-bg.png);
  background-position: center;
  background-size: cover;
  box-sizing: border-box;
}

.top .inner .logoArea  {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.top .inner .logoArea svg {
  position: relative;
  top: -40px;
}

/* subpage */
.subpage .inner {
  position: relative;
  max-width: 100%;
  border-bottom: 1px dashed #8c8b8b;
}

.subpage .inner h1 {
  padding: 20px;
}

.subpage .inner .logo {
  max-width: 30%;
  height: auto;
}

@media (min-width: 767px){

    .top .inner .logoArea svg {
      top: 0;
      width: 496px;
      height: auto;
    }

    /* subpage */
    .subpage .inner {
      position: relative;
      max-width: 960px;
      margin: 0 auto;
    }

    .subpage .inner h1 {
      padding: 40px 0px 40px 10px;
    }

    .subpage .inner .logo {
      max-width: 100%;
      height: auto;
    }

}

.cls-1 {
  fill:#fff;
  stroke:#fff;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 1;
  -webkit-animation: logo 3s ease-in 0s;
  animation: logo 3s ease-in 0s;
}

@-webkit-keyframes logo {
    0% {
      stroke-dashoffset: 2000;
      fill:transparent;
    }
    50% {
      fill:transparent;
    }
    100% {
      stroke-dashoffset: 0;
      fill:#fff;
    }
}

/* main vavigation */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top .outer-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1;
}

.subpage .outer-menu {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}

@media (min-width: 768px){

  .subpage .outer-menu {
    top: 40px;
    right: 0;
  }

}

.outer-menu a,
.subpage .outer-menu a {
  color: #fff;
  text-decoration: none;
}

.outer-menu .checkbox-toggle,
.subpage .outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.outer-menu .checkbox-toggle:checked + .hamburger > div,
.subpage .outer-menu .checkbox-toggle:checked + .hamburger > div {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:before,
.outer-menu .checkbox-toggle:checked + .hamburger > div:after,
.subpage .outer-menu .checkbox-toggle:checked + .hamburger > div:before,
.subpage .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  top: 0;
  -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
}

.outer-menu .checkbox-toggle:checked + .hamburger > div:after,
.subpage .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked ~ .menu,
.subpage .outer-menu .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div,
.subpage .outer-menu .checkbox-toggle:checked ~ .menu > div {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-duration: .75s;
          transition-duration: .75s;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div > div,
.subpage .outer-menu .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease 0.4s;
  transition: opacity 0.4s ease 0.4s;
}

.outer-menu .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 30px;
  height: 30px;
  padding: 10px;
  background: rgba(33, 34, 34, 0.8);
  cursor: pointer;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subpage .outer-menu .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 30px;
  height: 30px;
  padding: 10px;
  background: rgba(255, 255, 255, 0);
  cursor: pointer;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-menu .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subpage .outer-menu .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #212121;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-menu .hamburger > div:before,
.outer-menu .hamburger > div:after,
.subpage .outer-menu .hamburger > div:before,
.subpage .outer-menu .hamburger > div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.outer-menu .hamburger > div:after,
.subpage .outer-menu .hamburger > div:after {
  top: 10px;
}

.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  outline: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-menu .menu > div,
.subpage .outer-menu .menu > div {
  width: 200vw;
  height: 200vw;
  color: #FEFEFE;
  background: rgba(33, 34, 34, 0.8);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  flex: none;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-menu .menu > div > div,
.subpage .outer-menu .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-menu .menu > div > div > ul,
.subpage .outer-menu .menu > div > div > ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 100vh;
}

.outer-menu .menu > div > div > ul > li,
.subpage .outer-menu .menu > div > div > ul > li {
  padding: 0;
  margin: 1em;
  font-size: 24px;
  display: block;
}

.outer-menu .menu > div > div > ul > li > a,
.subpage .outer-menu .menu > div > div > ul > li > a {
  position: relative;
  display: inline;
  cursor: pointer;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.outer-menu .menu > div > div > ul > li > a:hover,
.subpage .outer-menu .menu > div > div > ul > li > a:hover {
  color: #e5e5e5;
}
.outer-menu .menu > div > div > ul > li > a:hover:after,
.subpage .outer-menu .menu > div > div > ul > li > a:hover:after {
  width: 100%;
}
.outer-menu .menu > div > div > ul > li > a:after,
.subpage .outer-menu .menu > div > div > ul > li > a:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: 2px;
  background: #e5e5e5;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

/*///////////////////////////////
contents-common
///////////////////////////////*/
section h2 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.18em;
  margin-left: 0.18em;
}

section h3 {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-left: 0.1em;
}

section p {
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-left: 0.1em;
}

@media (min-width: 767px) {

  section h2 {
    margin-bottom: 10px;
    font-size: 24px;
    letter-spacing: 0.2em;
    margin-left: 0.2em;
  }

  section h3 {
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-left: 0.1em;
  }

  section p {
    font-size: 14px;
    line-height: 2.0;
  }

}

.titleImg {
  margin-bottom: 20px;
  text-align: center;
  max-width: 10%;
  height: auto;
}

@media (min-width: 768px) {

  .titleImg {
    margin-bottom: 50px;
    max-width: 100%;
  }

}

/*///////////////////////////////
about
///////////////////////////////*/
.about {
  padding: 50px 10px;
  text-align: center;
  box-sizing: border-box;
}

.mainTxt {
  margin-bottom: 30px;
  box-sizing: border-box;
}

.subTxt {
    width:100%;
    background:#f5f5f5;
    margin: 0 auto;
    padding:40px;
    box-sizing: border-box;
}

.subTxt h4 {
  position: relative;
  display: inline-block;
  padding: 0 55px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.subTxt h4:before, .subTxt h4:after{
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 20%;
  height: 1px;
  background-color: #212121;
}

.subTxt h4:before {left:0;}
.subTxt h4:after {right: 0;}


@media (min-width: 768px) {

  .about {
    max-width: 960px;
    margin: 0 auto;
    padding: 70px 0;
  }

  .mainTxt {
    margin-bottom: 50px;
  }

  .subTxt {
    padding:40px;
  }

  .subTxt h4 {
    margin-bottom: 20px;
    font-size: 18px;
  }

}

/*///////////////////////////////
Portfolio
///////////////////////////////*/
.portfolio {
  background: url(../../images/portfolio-bg2.png);
  padding: 50px 10px;
  text-align: center;
}

.portfolio .list {
  margin-bottom: 50px;
}

.portfolio .leadTxt {
  margin-bottom: 50px;
}

.portfolio .list h4 {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
  font-size: 14px;
  font-weight: bold;
}

.portfolio .list h4:before {
  content: '';
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 40px;
  height: 2px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #db3d2a;
}

.innerPhoto {
  margin-bottom: 20px;
}

.innerPhoto .topList {
  margin-bottom: 10px;
}

.innerPhoto .topList img ,.innerPhoto .bottomList img {
  max-width: 100%;
  height: auto;
}

.innerPhoto .topList ul, .innerPhoto .bottomList ul  {
  display: flex;
}

.innerPhoto .topList li:first-child  {
  margin-right: 10px;
}

.innerPhoto .bottomList li  {
  margin-right: 10px;
}

.innerPhoto .bottomList li:last-child  {
  margin-right: 0;
}

.portfolio .listInner .innerTxt  {
  padding: 0 10px;
  font-size: 12px;
  line-height: 1.8;
  text-align: left;
  letter-spacing: 0.1em;
  margin-left: 0.1em;
  box-sizing: border-box;
}

@media (min-width: 767px){

  .portfolio {
    padding: 70px 0;
  }

  .portfolio .inner {
    max-width: 960px;
    margin: 0 auto;
  }

  .portfolio .list h4 {
    margin-bottom: 50px;
    font-size: 16px;
  }

  .portfolio .list h4:before {
    bottom: -20px;
    width: 50px;
  }

  .portfolio .listInner {
    display: flex;
  }

  .portfolio .listInner .innerPhoto  {
    flex: 0 0 660px;
    margin-right: 40px;
    margin-bottom: 0;
  }

  .innerPhoto .topList {
    margin-bottom: 30px;
  }

  .innerPhoto .topList li:first-child  {
    margin-right: 30px;
  }

  .innerPhoto .bottomList li  {
    margin-right: 30px;
  }

  .portfolio .listInner .innerTxt  {
    flex: 0 0 260px;
    padding: 10px 0 0;
  }

}

/*///////////////////////////////
information
///////////////////////////////*/
.information {
  padding: 65px 10px;
  text-align: center;
}

.information dl {
  padding: 0 50px;
  font-size: 12px;
  line-height: 1.8;
  text-align: left;
}
.information dt {
  width: 20%;
  float: left;
  clear: left;
  font-weight: bold;
}
.information dd{
  margin: 0 0 15px 25%;
}

.information dd:last-child {
  margin: 0 0 0 25%;
}

.information a {
  color: #212121;
  text-decoration: none;
}

.information a:hover {
  opacity: 0.7;
}

@media (min-width: 768px){

  .information {
    max-width: 450px;
    margin: 0 auto;
    padding: 130px 0;
  }

  .information dl{
    margin: 0 auto 30px;
    padding: 0;
    font-size: 14px;
    line-height: 2.0;
  }

  .information dt{
    width: 20%;
  }

  .information dd:last-child {
    margin: 0 0 0 25%;
  }

}

/*///////////////////////////////
contact
///////////////////////////////*/
.contact {
  background: #d6dddb;
  text-align: center;
  padding: 50px 10px;
  box-sizing: border-box;
}

.contact .recruit {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px dotted #212121;
}

.contact p {
  margin-bottom: 30px;
}

@media (min-width: 768px) {

  .contact {
    padding: 0px;
    box-sizing: border-box;
  }

  .contact .inner {
    display: flex;
    max-width: 960px;
    margin: 0 auto;
    padding: 65px 0;
  }

  .contact .recruit {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
    border-right: 1px dotted #212121;
  }

  .contact .recruit,
  .contact .inquiry {
    flex: 1;
    padding: 0 40px;
    box-sizing: border-box;
  }

  .contact p {
    margin-bottom: 50px;
  }

}

/*///////////////////////////////
footer
///////////////////////////////*/
footer {
  width: 100%;
  background: #212121;
  color: #fff;
  padding: 35px 0;
  box-sizing: border-box;
}

footer ul {
  display: flex;
  justify-content: center;
}

footer ul li {
  font-size: 12px;
  margin-bottom: 15px;
}

footer ul li:first-child {
  border-right: 1px solid #fff;
  margin-right: 15px;
  padding-right: 15px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  opacity: 0.7;
}

footer small {
  display: block;
  font-size: 10px;
  text-align: center;
}

@media (min-width: 767px) {

  footer {
    padding: 45px 0;
  }

  footer ul li {
    font-size: 14px;
    margin-bottom: 25px;
  }

  footer small {
    font-size: 12px;
  }

}

/*///////////////////////////////
index - infomation
///////////////////////////////*/
.infoArea {
  padding: 50px 10px;
  text-align: center;
}

.infoArea h4 {
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-left: 0.1em;
}

.infoArea .detailTxt p {
  margin-bottom: 30px;
  padding: 0 30px;
}

.infoArea dl{
  margin-bottom: 30px;
  line-height: 1.8;
  text-align: left;
}

.infoArea dt{
  width: 20%;
  float: left;
  clear: left;
  font-weight: bold;
}
.infoArea dd{
  margin: 0 0 15px 25%;
}

@media (min-width: 768px){

  .infoArea {
    max-width: 550px;
    margin:0 auto;
  }

  .infoArea h4 {
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: bold;
  }

  .infoArea dl{
    margin: 0 auto 30px;
    line-height: 2.0;
  }

  .infoArea dt{
    width: 20%;
  }
  .infoArea dd{
    margin: 0 0 15px 25%;
  }

}

/*///////////////////////////////
index - privacy
///////////////////////////////*/
.privacy {
  padding: 50px 10px;
  text-align: center;
  box-sizing: border-box;
}

.privacy .inner {
  text-align: left;
}

.privacy h4 {
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-left: 0.1em;
  margin-bottom: 10px;
}

.privacy .inner p {
  margin-bottom: 30px;
}

.privacy .inner ul {
  margin-top: -30px;
  margin-bottom: 30px;
}

.privacy .inner ul li {
  line-height: 1.8;
}

.privacy .inner .note {
　margin-bottom: -30px;
}

@media (min-width: 768px){

  .privacy {
    max-width: 550px;
    margin: 0 auto;
  }

  .privacy h4 {
    margin-bottom: 20px;
  }

  .privacy .inner p {
    margin-bottom: 40px;
  }

  .privacy .inner ul {
    margin-top: -40px;
    margin-bottom: 40px;
  }

  .privacy .inner ul li {
    line-height: 2.0;
  }

}

/*///////////////////////////////
index - company
///////////////////////////////*/
.companyArea {
  padding: 50px 10px;
  text-align: center;
  box-sizing: border-box;
}

.companyArea table {
  padding: 0 10px;
  text-align: left;
}

.companyArea th, .companyArea td {
  padding: 10px;
  text-align: left;
}

.companyArea th {
  width: 25%;
}

.companyArea li {
  text-indent: -0.8em;
  padding-left: 0.8em;
  line-height: 1.8;
}

@media (min-width: 768px){

  .companyArea {
    max-width: 550px;
    margin: 0 auto;
  }

  .companyArea th, .companyArea td {
    padding: 30px 10px;
  }

  .companyArea th {
    width: 30%;
  }

  .companyArea li {
    line-height: 2.0;
  }

}

/*///////////////////////////////
index - form
///////////////////////////////*/
.formArea {
  padding: 50px 10px;
  text-align: center;
  box-sizing: border-box;
}

.formArea .contactTxt {
	margin-bottom: 40px;
}

.formArea table {
	border-collapse: collapse;
	width:100%;
	margin-bottom:30px;
}

.formArea th, .formArea td {
	width: 100%;
	display: block;
  text-align: left;
  letter-spacing: 0.1em;
  margin-left: 0.1em;
}

.formArea th {
	padding: 20px 20px 10px;
	font-weight:bold;
	box-sizing: border-box;
}

.formArea td {
	padding: 0 20px 20px;
	box-sizing: border-box;
}

input[type="text"], input[type="tel"], input[type="email"],
input[type="submit"], textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
}

.formArea td .company, .formArea td .name,
.formArea td .furigana, .formArea td .zip1, .formArea td .zip2,
.formArea td .tel, .formArea td .mail, .formArea td .scale,
.formArea td .wpcf7-textarea {
	width: 100%;
  padding: 10px;
	border: 1px solid #222;
	box-sizing: border-box;
}

.formArea td .other {
	width: 30%;
  margin-left: 10px;
  padding: 10px;
	border: 1px solid #222;
	box-sizing: border-box;
}

.formArea td .age, .formArea td .year {
	width: 40%;
  padding: 10px;
	border: 1px solid #222;
	box-sizing: border-box;
}

input[type="submit"] {
	display: block;
	width: 80%;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background-color: #212121;
	padding: 15px 0;
	margin: 0 auto;
	border: none;
	border-radius: 3px;
	box-sizing: border-box;
}

.formArea th span {
  color:#96281B;
}

.formArea td span.sup {
  display: block;
	line-height: 1.6;
	margin: 10px 0;
}

@media (min-width: 768px){
  .formArea {
    max-width: 960px;
    margin: 0 auto 50px;
    padding: 70px 0;
    font-size: 14px;
  }

  .formArea .contactTxt {
    margin-top: 30px;
  	margin-bottom: 40px;
  }

  .formArea th {
    display: table-cell;
    width: 30%;
    padding: 30px 20px 10px;
  }

  .formArea td {
    display: table-cell;
    width: 70%;
    padding: 0 20px 30px;
  }

  .formArea td .age, .formArea td .year {
    width: 10%;
    padding: 10px;
  }

  input[type="submit"] {
    width: 50%;
    font-size: 16px;
    padding: 20px 0;
  }

}
