@charset "UTF-8";
.sp {
  display: block;
  position: relative;
}

.pc {
  display: none;
  position: relative;
}

html {
  font-family: sans-serif;
  font-size: 62.5%;
  margin: 0;
  color: #000;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  font-size: 1.4em;
  line-height: 0;
  line-height: 1.7;
  background-color: #fff;
  padding-top: 80px;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.5;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

header > .inner,
footer > .inner,
section > .inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

footer {
  position: relative;
  background-color: #FFFA00;
  text-align: center;
  padding: 4rem 0;
}
footer .pagetop {
  position: fixed;
  bottom: 168px;
  right: 24px;
  width: 60px;
  height: 60px;
  z-index: 100;
}
footer .pagetop #scroll-top {
  cursor: pointer;
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
footer .pagetop #scroll-top img {
  width: 100%;
}
footer .copyright {
  font-size: 1.2rem;
  margin-top: 2rem;
  text-align: center;
}

header {
  width: 100%;
  height: 80px;
  padding: 20px 0;
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: #fff;
}
header .logo {
  height: 40px;
}
header .logo img {
  height: 100%;
  width: auto;
}
header .hamburger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 99;
  padding-top: 20px;
  display: none;
  opacity: 0;
  -webkit-transition: all 0.5s liner;
  transition: all 0.5s liner;
}
nav .logo {
  height: 40px;
  padding-left: 24px;
}
nav .logo img {
  height: 100%;
  width: auto;
}
nav ul li {
  border-bottom: 1px solid #F0F0F0;
}
nav ul li a {
  display: block;
  padding: 18px 24px;
}
nav.is-active {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.5s liner;
  transition: all 0.5s liner;
}

.overlay {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 80;
  visibility: hidden;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.overlay.is-active {
  visibility: visible;
  background-color: #000;
  opacity: 0.7;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

section {
  padding: 70px 0;
}
section h2 {
  text-align: center;
}
section .tac {
  text-align: center;
}
section .tal {
  -moz-text-align-last: left;
       text-align-last: left;
}
section .tar {
  text-align: right;
}
section .flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section .btn {
  background-color: #FFFA00;
  border: 1px solid #000;
  border-radius: 50px;
}
section .btn a {
  display: block;
  text-align: center;
  padding: 10px;
}
section.mv {
  padding: 0;
}
section#about h1 {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
section#about h1 span {
  display: block;
}
section#about h2 {
  margin-bottom: 30px;
}
section#about .box {
  margin-top: 50px;
}
section#about .box:first-of-type {
  margin-top: 70px;
}
section#about .box .pic {
  text-align: center;
  margin-bottom: 20px;
}
section#about .box h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
}
section#about .box h3 span {
  display: inline-block;
  border-bottom: 1px solid #000;
  padding: 0 6px;
}
section#works {
  background-color: #F0F0F0;
}
section#works h2 {
  margin-bottom: 50px;
}
section#works h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 16px;
}
section#works h3::before {
  content: "●";
  color: #FFFA00;
}
section#works p {
  line-height: 2rem;
}
section#works .flexbox {
  margin-bottom: 50px;
}
section#works .box {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
}
section#works .box + .box {
  margin-top: 50px;
}
section#works .box p {
  margin-top: 10px;
}
section#works .box img {
  width: 100%;
}
section#works .box img.fluid {
  width: 100%;
}
section#works .box img + img {
  margin-top: 10px;
}
section#works .box .btn {
  margin-top: 17px;
}
section#contact h2 {
  margin-bottom: 30px;
}
section#contact form {
  margin-top: 50px;
}
section#contact form input[type=text], section#contact form textarea {
  width: 100%;
  background-color: #F0F0F0;
  padding: 10px 1em;
}
section#contact form .radioblock {
  margin-top: 10px;
}
section#contact form textarea {
  height: 350px;
}
section#contact form input[type=submit],
section#contact form input[type=button],
section#contact form .errbtn {
  width: 100%;
  margin-top: 40px;
  border: 1px solid #000;
  border-radius: 50px;
  text-align: center;
  font-size: 1.6rem;
  background-color: #FFFA00;
  padding: 10px;
}
section#contact dl {
  font-size: 1.4rem;
}
section#contact dl + dl {
  margin-top: 40px;
}
section#contact dl dt {
  font-weight: 400;
}
section#contact dl dt span {
  margin-left: 10px;
  padding: 1px 5px;
  color: #fff;
  background-color: #f00;
  border-radius: 50px;
  font-size: 1.2rem;
  line-height: 14px;
}
section#contact dl dd {
  margin-top: 10px;
}
section#contact #formWrap {
  border: 1px solid #000;
  padding: 40px 24px;
}
section#contact #formWrap h3 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
}
section#contact #formWrap form {
  margin-top: 40px;
}
section#contact #formWrap table.formTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  border-bottom: 1px dashed #000;
  font-size: 1.4rem;
}
section#contact #formWrap table.formTable th {
  padding-top: 10px;
  display: block;
  border-top: 1px dashed #000;
  font-size: 1.2rem;
}
section#contact #formWrap table.formTable td {
  padding-bottom: 10px;
  display: block;
}
section#contact #formWrap input[type=button] {
  background-color: #fff;
}
section#contact #formWrap .error_messe {
  margin-top: 1em;
  color: #f00;
}
section#contact #formWrap .errbtn {
  width: 100%;
  margin-top: 40px;
  border: 1px solid #000;
  border-radius: 50px;
  text-align: center;
  font-size: 1.6rem;
  background-color: #FFFA00 !important;
  padding: 10px;
}
section#contact #formWrap p + p {
  margin-top: 1em;
}
section#contact #formWrap .btn {
  margin-top: 40px;
}
section#company {
  background-color: #F0F0F0;
}
section#company h2 {
  margin-bottom: 50px;
}
section#company .table {
  font-size: 1.6rem;
}
section#company .table th {
  padding-right: 20px;
  border-right: 1px solid #000;
  font-weight: 400;
}
section#company .table tr:first-of-type th,
section#company .table tr:first-of-type td {
  padding-top: 0;
}
section#company .table tr:last-of-type th,
section#company .table tr:last-of-type td {
  padding-bottom: 0;
}
section#company .table th {
  padding-top: 16px;
}
section#company .table td {
  padding-top: 16px;
  padding-left: 20px;
}

.cmp_icon {
  position: relative;
}
.cmp_icon.icon-arrow {
  color: #000;
  position: absolute;
  margin-left: 10px;
  margin-top: 3px;
  width: 1px;
  height: 16px;
  background-color: currentColor;
}
.cmp_icon.icon-arrow::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 1px;
  width: 10px;
  height: 10px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cmp_button a {
  background-color: #ddd;
  border: 1px solid #ccc;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 560px) {
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }

  body {
    font-size: 1.6em;
    padding-top: 138px;
  }

  header > .inner,
footer > .inner,
section > .inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  footer {
    padding: 2rem 0 2.6rem;
  }
  footer .pagetop {
    bottom: 116px;
  }
  footer .copyright {
    margin-top: 0;
  }

  header {
    background-color: #fff;
    width: 100%;
    height: auto;
    padding: 30px;
  }
  header .logo {
    height: 78px;
    width: auto;
  }

  nav {
    position: absolute;
    width: auto;
    left: auto;
    right: 20px;
    display: block;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  nav ul li {
    border-bottom: none;
    margin-left: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  nav ul li a {
    padding: 0;
    display: inline;
  }
  nav ul li a img {
    vertical-align: middle;
  }

  .overlay {
    display: none;
  }

  section {
    padding: 100px 0;
  }
  section .flexbox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  section.mv img {
    max-width: 960px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  section#about h1 {
    font-size: 3rem;
    margin-bottom: 21px;
  }
  section#about h1 span {
    display: inline;
    margin-left: 1em;
  }
  section#about h1 + p {
    text-align: center;
  }
  section#about h2 {
    margin-bottom: 50px;
  }
  section#about .box {
    width: 47.5%;
    margin-top: 55px;
  }
  section#about .box:nth-of-type(-n+2) {
    margin-top: 120px;
  }
  section#about .box .pic {
    float: right;
    margin-top: 22px;
    width: 35%;
  }
  section#about .box .txtbox {
    width: 60%;
  }
  section#about .box h3 {
    text-align: left;
  }
  section#about .box p {
    max-width: 272px;
  }
  section#works h2 {
    margin-bottom: 50px;
  }
  section#works p {
    margin-top: 100px;
  }
  section#works .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 450px;
    padding: 35px 30px;
  }
  section#works .box + .box {
    margin-top: 0;
  }
  section#works .box:nth-of-type(n+3) {
    margin-top: 60px;
  }
  section#works .box .pict {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: auto;
    margin-bottom: auto;
  }
  section#works .box img:last-of-type {
    margin-bottom: 1em;
  }
  section#works .box p {
    margin-top: auto;
  }
  section#works .box .btn {
    width: 35%;
  }
  section#contact h2 {
    margin-bottom: 50px;
  }
  section#contact form {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  section#contact form .radioblock {
    display: inline-block;
    margin-left: 1em;
  }
  section#contact form dl + dl {
    margin-top: 22px;
  }
  section#contact form input[type=submit],
section#contact form input[type=button],
section#contact form .errbtn {
    display: block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
  section#contact #formWrap {
    padding: 38px 46px;
  }
  section#contact #formWrap h3 {
    font-size: 2.5rem;
    font-weight: 500;
  }
  section#contact #formWrap form {
    max-width: 100%;
  }
  section#contact #formWrap table.formTable {
    width: 100%;
    font-size: 1.6rem;
    border-bottom: none;
  }
  section#contact #formWrap table.formTable th, section#contact #formWrap table.formTable td {
    padding: 20px;
  }
  section#contact #formWrap table.formTable th {
    width: 358px;
    padding-right: 60px;
    font-size: 1.6rem;
    display: table-cell;
    text-align: right;
    border-top: 1px dashed #000;
  }
  section#contact #formWrap table.formTable td {
    font-size: 1.6rem;
    border-top: 1px dashed #000;
    display: table-cell;
  }
  section#contact #formWrap input[type=submit],
section#contact #formWrap input[type=button] {
    text-align: center;
    display: inline-block;
    width: 140px;
    margin-left: 10px;
    margin-right: 10px;
  }
  section#contact #formWrap .btn {
    width: 140px;
    margin-left: auto;
    margin-right: auto;
  }
  section#company h2 {
    margin-bottom: 50px;
  }
  section#company .table {
    margin-left: auto;
    margin-right: auto;
    font-size: 2rem;
  }
  section#company .table th {
    padding-right: 26px;
  }
  section#company .table tr:first-of-type th,
section#company .table tr:first-of-type td {
    padding-top: 0;
  }
  section#company .table tr:last-of-type th,
section#company .table tr:last-of-type td {
    padding-bottom: 0;
  }
  section#company .table th {
    padding-top: 10px;
  }
  section#company .table td {
    padding-top: 10px;
    padding-left: 42px;
  }
}
/*# sourceMappingURL=common.css.map */