html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "sans-serif";
  text-align: center;
  color: #494949;
  font-weight: 500;
  line-height: 2;
  font-size: 1.6rem;
}
body a {
  text-decoration: none;
  display: block;
  color: inherit;
}
body .inner {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
body .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
body span.small {
  font-size: 1.2rem;
}
body .kiwi {
  font-family: "Kiwi Maru", serif;
  font-weight: 200;
}
body .material-icons, body .material-icons-outlined, body .material-icons-round {
  vertical-align: text-bottom;
}
body .btn {
  width: 270px;
  border: 2px solid #000;
  border-radius: 50px;
  -webkit-box-shadow: 0px 3px 0px rgb(197, 197, 197);
          box-shadow: 0px 3px 0px rgb(197, 197, 197);
  padding-top: 24px;
  padding-bottom: 24px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
body .btn:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
body span.break {
  display: inline-block;
}
@media screen and (max-width: 600px) {
  body .row.btn_wrap {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  body header .inner .row {
    border-bottom: 5px solid #AFD8D8;
  }
}
body header .inner .row p.logo {
  width: 30%;
  padding: 30px;
  padding-left: 0;
}
@media screen and (max-width: 600px) {
  body header .inner .row p.logo {
    width: 40%;
    padding: 15px;
  }
}
body header .inner .row .title {
  margin-right: 0;
  width: 70%;
  padding-top: 5%;
}
@media screen and (max-width: 600px) {
  body header .inner .row .title {
    padding-top: 0;
    width: 100%;
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
  }
}
body header .inner .row .title p {
  height: 100%;
  text-align: left;
  font-size: 3rem;
  border-top: 5px solid #AFD8D8;
}
@media screen and (max-width: 600px) {
  body header .inner .row .title p {
    font-size: 2rem;
    border-top: none;
  }
}
@media screen and (max-width: 400px) {
  body header .inner .row .title p {
    font-size: 1em;
  }
}
body header .inner .row .title .row {
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 5px solid #AFD8D8;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 20px;
}
body .hamb {
  width: 24%;
  max-width: 80px;
  min-width: 55px;
  height: 6%;
  z-index: 15;
  position: fixed;
  top: 20%;
  margin-left: 0;
  background-color: rgb(126, 126, 126);
  border-bottom-right-radius: 30px;
  border-top-right-radius: 30px;
}
@media screen and (max-width: 800px) {
  body .hamb {
    top: 13%;
  }
}
@media screen and (max-width: 600px) {
  body .hamb {
    top: 15%;
    width: 14%;
    height: 3.5%;
  }
}
body .hamb span {
  display: block;
  position: absolute;
  width: 50%;
  border-bottom: solid 2px #fff;
  left: 25%;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
body .hamb span:nth-child(1) {
  top: 25%;
}
body .hamb span:nth-child(2) {
  top: 45%;
}
body .hamb span:nth-child(3) {
  top: 65%;
}
body .nav_wrapper {
  position: fixed;
  top: 15%;
  width: 65%;
  height: 0;
}
@media screen and (max-width: 600px) {
  body .nav_wrapper {
    top: 8%;
  }
}
body .nav {
  position: absolute;
  top: 25%;
  width: 100%;
  text-align: left;
  display: none;
}
@media screen and (max-width: 1000px) {
  body .nav {
    top: 25%;
    width: 40%;
  }
}
@media screen and (max-width: 600px) {
  body .nav {
    width: 70%;
  }
}
body .nav li {
  margin-bottom: 30px;
}
body .nav p {
  width: 80px;
  height: 80px;
  border-radius: 100px;
}
body .nav.open {
  display: block;
}
body .nav.open li a {
  color: #333;
  text-align: center;
  padding-left: 0;
}
body footer {
  background-color: #AFD8D8;
  margin-top: 300px;
  color: #fff;
  padding: 50px 10px;
}
@media screen and (max-width: 1100px) {
  body footer {
    margin-top: 150px;
  }
}
body footer .page_top {
  width: 50px;
  height: 50px;
  background-color: #e0cc3b;
  border-radius: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
body footer .page_top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}
@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
body footer .page_top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}
@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}
body footer .page_top a {
  height: -webkit-fill-available;
  line-height: 45px;
}
@media screen and (max-width: 1100px) {
  body footer .inner > .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
body footer .left {
  text-align: left;
}
@media screen and (max-width: 1100px) {
  body footer .left {
    text-align: center;
    margin-top: 30px;
  }
}
body footer .left img.f_logo {
  margin-left: 0;
}
@media screen and (max-width: 1100px) {
  body footer .left img.f_logo {
    margin-left: 13%;
    width: 70%;
    max-width: 320px;
  }
}
body footer .left p.com_name {
  font-size: 2.4rem;
}
@media screen and (max-width: 600px) {
  body footer .left p.com_name {
    font-size: 2rem;
  }
}
body footer .left address {
  font-style: normal;
}
@media screen and (max-width: 600px) {
  body footer .left address {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  body footer .left span.tel_fax {
    font-size: 1.2rem;
  }
}
body footer .left span.tel_fax a {
  display: inline-block;
}
body footer .left p.ns {
  line-height: 1.5;
  padding: 20px;
  border: 1px solid #fff;
  margin-top: 10px;
}
body footer .left p.ns a {
  display: inline-block;
}
body footer .right {
  width: 60%;
}
@media screen and (max-width: 1100px) {
  body footer .right {
    width: 90%;
  }
}
@media screen and (max-width: 700px) {
  body footer .right .row {
    display: block;
  }
}
body footer .right .row .foot_nav li {
  padding-right: 10px;
  padding-left: 10px;
}
body footer small {
  display: block;
  margin-top: 50px;
}/*# sourceMappingURL=common.css.map */