@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@600&family=Noto+Sans+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@500&display=swap");
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #555555;
}

* {
  line-height: 1.0;
  letter-spacing: 0.05em;
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

@-webkit-keyframes title {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1.0;
  }
}

@keyframes title {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1.0;
  }
}

.btn {
  position: relative;
  background: linear-gradient(178deg, #4356b9 64%, #3c39a3 100%);
  width: 300px;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.btn a {
  color: #ffffff;
  width: 100%;
  padding: 15px 0;
}

.btn:hover {
  background: linear-gradient(178deg, rgba(67, 86, 185, 0.9) 64%, rgba(60, 57, 163, 0.9) 100%);
}

.btn::after {
  position: absolute;
  right: 20px;
  content: "";
  display: block;
  border-top: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  border-left: 4px solid transparent;
  border-bottom: 4px solid transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.red {
  color: #e03;
}

header {
  width: 100%;
  height: 120px;
  background: #ffffff;
  position: fixed;
  z-index: 99999;
}

header .menu-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header .menu-area img {
  width: 200px;
  vertical-align: middle;
  margin: 0 30px 0 0;
}

header .menu-area small {
  font-size: 0.9rem;
}

header .menu-area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .menu-area ul li {
  margin: 0 0 0 25px;
}

header .menu-area ul li a {
  color: #999;
}

header .menu-area ul li .active {
  color: #000;
}

header .menu-area ul li a.active::after {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.1)), color-stop(50%, #0033ff), to(rgba(255, 255, 255, 0.1)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, #0033ff 50%, rgba(255, 255, 255, 0.1) 100%);
  width: 100%;
  height: 2px;
  content: "";
  display: block;
  border-radius: 10%;
  margin: 5px 0 0 0;
}

header .menu-area ul li a:hover {
  color: #000;
}

.header-resize {
  height: 100px;
  border-bottom: 1px solid #eef;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.top {
  background: url(img/bg01.gif) #ffffff center/100% 100% no-repeat;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
}

.top .top-main {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 0 6vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(img/top-img02.png) right 50%/55vw no-repeat;
  -webkit-animation: title 2.5s ease 0s normal 1 forwards;
          animation: title 2.5s ease 0s normal 1 forwards;
}

.top .top-main .top-img {
  display: none;
}

.top .top-main h1 {
  font-size: max(2.4vw,2.5rem);
  color: #06f;
  line-height: 1.5;
  -webkit-animation: title 5s ease 0s normal 1 forwards;
          animation: title 5s ease 0s normal 1 forwards;
  margin: 0 0 30px 0;
}

.top .top-main h2 {
  font-size: max(1.4vw,1.4rem);
  line-height: 1.5;
  opacity: 0;
  -webkit-animation: title 2s ease 1s normal 1 forwards;
          animation: title 2s ease 1s normal 1 forwards;
}

section {
  padding: 180px 0;
}

section .title {
  position: relative;
  padding: 0 0 120px 0;
  text-align: center;
  z-index: 999;
}

section h3 {
  font-size: max(2.0rem,2.0vw);
  color: #000;
  margin: 0 0 30px;
}

section h3::after {
  content: "";
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.1)), color-stop(50%, #0033ff), to(rgba(255, 255, 255, 0.1)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, #0033ff 50%, rgba(255, 255, 255, 0.1) 100%);
  width: 120px;
  height: 3px;
  margin: 30px auto 0;
}

section .title-en {
  font-size: 1.3rem;
  font-family: 'EB Garamond', serif;
  color: #aaa;
}

.top-about {
  position: relative;
  background-color: #eeeeff;
}

.top-about .box {
  position: relative;
  background: #fff url(img/about-img01.png) no-repeat right/contain;
  height: 400px;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 0 100px auto;
  z-index: 999;
}

.top-about .box .box-img {
  display: none;
}

.top-about .box .text {
  text-align: left;
  text-shadow: 2px 1px 1px #ffffff;
  margin: 0 0 0 80px;
}

.top-about .box h4 {
  color: #36f;
  font-size: max(2.0rem,2.0vw);
  line-height: 1.5;
  margin: 0 0 35px;
}

.top-about .box .sub {
  font-size: max(1.0rem,1.2vw);
  line-height: 1.5;
}

.top-about .box::after {
  content: "";
  display: block;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.top-about .box-a::after {
  top: -25px;
  left: -25px;
  border-top: 30px solid transparent;
  border-left: 30px solid transparent;
  border-right: 30px solid #36f;
  border-bottom: 30px solid transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.top-about .box-b::after {
  top: -25px;
  right: -25px;
  border-top: 30px solid transparent;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid #06f;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.top-about .box-b {
  background: #fff url(img/about-img02.png) no-repeat left/contain;
  margin: 0px auto 100px 0;
}

.top-about .box-b .text {
  margin: 0 5vw 0 auto;
}

.top-about .box-c {
  background: #fff url(img/about-img03.png) no-repeat right/contain;
}

.top-about .btn {
  margin: 100px auto 0;
}

.top-about::after {
  content: "EARTHTER";
  position: absolute;
  top: 10vw;
  right: 3vw;
  font-size: 20vw;
  color: #e7e7ff;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  z-index: 1;
}

.top-maker .area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 95vw;
  padding: 80px 0 80px 5%;
  background: #f5f9ff;
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f9ff), to(#d7dfff));
  background: linear-gradient(180deg, #f5f9ff 0%, #d7dfff 100%);
  margin: 0 0 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.top-maker .area ul {
  width: 20%;
}

.top-maker .area ul li {
  color: #000;
  margin: 0 0 15px 0;
}

.top-maker .area ul li a {
  color: #36f;
  margin: 0 0 0 15px;
}

.top-maker .area ul li a span.icon {
  font-size: 13px;
  margin: 0 0 0 5px;
}

.top-maker .area .img-area {
  width: 80%;
}

.top-maker .area .img-area a {
  display: inline-block;
  margin: 0 30px 30px 0;
}

.top-maker .area .img-area img {
  width: 15vw;
}

footer {
  background: #092a5d;
  background: -webkit-gradient(linear, left top, left bottom, from(#092a5d), to(black));
  background: linear-gradient(180deg, #092a5d 0%, black 100%);
  width: 100%;
  color: #ffffff;
  text-align: center;
  padding: 100px 10vw 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

footer .inner {
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  margin: 0 auto 100px;
}

footer .inner a {
  color: #ffffff;
}

footer .inner img.logo {
  width: 220px;
  height: 100%;
  display: block;
}

footer .inner address {
  text-align: left;
  font-style: normal;
  font-size: 0.9rem;
  margin: 0 100px 0 50px;
}

footer .inner address p {
  margin: 5px 0;
}

footer .inner address .title {
  font-size: 1.1rem;
  margin: 0 0 15px;
}

footer .inner address .post-num {
  font-size: 0.75rem;
  margin: 0 0 5px;
}

footer .inner ul {
  border-left: 2px solid #99c;
  text-align: left;
  padding-left: 30px;
}

footer .inner ul li {
  margin: 15px 0;
}

footer small {
  font-size: 0.85rem;
}

.page {
  padding: 120px 0 0;
}

.page .top-about .box {
  background: #ffffff;
  width: 80%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-shadow: 0px 5px 3px #aaa;
          box-shadow: 0px 5px 3px #aaa;
  margin: 0px auto 100px;
  padding: 150px 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.page .top-about .box .box-img {
  display: block;
  width: 40%;
}

.page .top-about .box .text {
  width: 50%;
  margin: 0;
}

.page .top-about .box h4 {
  font-size: max(1.7rem,1.8vw);
}

.page .top-about .box .sub {
  color: #333;
  font-size: max(0.85rem,1.0vw);
  margin: 0 0 15px;
}

.company {
  text-align: center;
}

.company table {
  position: relative;
  margin: auto;
  width: 1200px;
  text-align: left;
  border-collapse: separate;
  border-spacing: 2px 5px;
  border: 0;
  z-index: 999;
}

.company table tr td {
  padding: 20px 20px 20px 25px;
}

.company table tr td.left {
  background: #f5fff5;
  width: 40%;
}

.company table tr td.right {
  background: #fff;
  line-height: 1.5;
  width: 60%;
}

.company iframe {
  background: #ffffff;
  width: 1196px;
  height: 500px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
}

.contact {
  max-width: 1200px;
  background: #ffffff;
  padding: 80px 30px;
  margin: auto;
  position: relative;
  z-index: 999;
}

.contact form {
  max-width: 768px;
  text-align: left;
  margin: auto;
}

.contact form label {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact form label span {
  background: #f35;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 2em;
  letter-spacing: 1.1;
  padding: 0px 10px 2px;
  margin: 0 0 0 15px;
}

.contact form input {
  display: block;
  width: 100%;
  height: 30px;
  margin: 7px 0 25px;
}

.contact form select {
  display: block;
  width: 100%;
  height: 30px;
  margin: 7px 0 25px;
}

.contact form textarea {
  display: block;
  width: 100%;
  height: 150px;
  margin: 7px 0 50px;
}

.contact form .checkbox {
  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;
  text-align: center;
  font-size: 1.2rem;
  margin: 0 0 25px;
}

.contact form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
}

.contact form input[type="submit"] {
  width: 200px;
  height: auto;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  -webkit-box-shadow: 2px 2px 3px #aaa;
          box-shadow: 2px 2px 3px #aaa;
  cursor: pointer;
  padding: 7px 0px;
  margin: auto;
}

.contact .tel {
  text-align: center;
  font-size: 1.2rem;
  max-width: 768px;
  border: 3px solid #36f;
  border-radius: 15px;
  padding: 50px 0;
  margin: 80px auto 0;
}

.contact .tel .text {
  line-height: 1.5;
  margin: 0 0 15px;
}

.contact .tel .text span {
  font-size: 0.85rem;
}

.contact .tel .number {
  font-size: 1.2rem;
  font-weight: 700;
}

.contact .tel .number a {
  color: #36f;
}

.contact .tel .number a .fa-square-phone {
  margin: 0 7px 0 0;
}

.thanks-txt {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 768px;
  text-align: left;
  margin: auto;
}

@media (max-width: 1400px) {
  header {
    height: 100px;
  }
  header .menu-area {
    padding: 0 4%;
  }
  header .menu-area img {
    width: 160px;
    margin: 0 30px 0 0;
  }
  header .menu-area small {
    font-size: 0.8rem;
  }
  header .menu-area ul li {
    font-size: 0.9rem;
    margin: 0 0 0 25px;
  }
  .top .top-main {
    padding: 0 0 0 6vw;
  }
  .top .top-main h1 {
    font-size: 2.6vw;
    line-height: 1.5;
    margin: 0 0 30px 0;
  }
  .top .top-main h2 {
    font-size: 1.6vw;
    line-height: 1.5;
  }
  .top-about .box {
    height: 300px;
    width: 97%;
    margin: 0px 0 100px auto;
  }
  .top-about .box .text {
    padding: 50px 30px;
    margin: 0 0 0 80px;
  }
  .top-about .box h4 {
    margin: 0 0 35px;
  }
  .top-about .box .sub {
    font-size: max(1.0rem,1.2vw);
    line-height: 1.5;
  }
  .top-about .box-b {
    width: 96%;
    margin: 0px auto 100px 0;
  }
  .top-about .box-b .text {
    margin: 0 5vw 0 auto;
  }
  .top-about .btn {
    margin: 100px auto 0;
  }
  .top-about::after {
    display: none;
  }
  .top-maker .area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 95vw;
    padding: 80px 0 80px 5%;
    margin: 0 0 0 auto;
  }
  .top-maker .area ul {
    width: 20%;
  }
  .top-maker .area ul li {
    font-size: 0.9rem;
    margin: 0 0 15px 0;
  }
  .top-maker .area ul li a {
    margin: 0 0 0 15px;
  }
  .top-maker .area ul li a span.icon {
    font-size: 13px;
    margin: 0 0 0 5px;
  }
  .top-maker .area .img-area {
    width: 80%;
  }
  .top-maker .area .img-area a {
    margin: 0 2% 2% 0;
  }
  .top-maker .area .img-area img {
    width: 15vw;
  }
  footer {
    text-align: center;
    padding: 100px 5vw 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  footer .inner {
    max-width: 800px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: center;
    margin: 0 auto 100px;
  }
  footer .inner img.logo {
    width: 200px;
    height: 100%;
  }
  footer .inner address {
    margin: 0 100px 0 50px;
  }
  footer .inner address p {
    font-size: 0.9rem;
    margin: 5px 0;
  }
  footer .inner address .post-num {
    font-size: 0.75rem;
    margin: 0 0 5px;
  }
  footer .inner ul {
    border-left: 2px solid #99c;
    text-align: left;
    padding-left: 30px;
  }
  footer .inner ul li {
    font-size: 0.9rem;
    margin: 15px 0;
  }
  footer small {
    font-size: 0.85rem;
  }
  .page {
    padding: 100px 0 0;
  }
  .page .top-about .box {
    width: 92%;
    height: auto;
    margin: 0px auto 100px;
    padding: 150px 5%;
  }
  .page .top-about .box .box-img {
    width: 40%;
  }
  .page .top-about .box .text {
    width: 50%;
    margin: 0;
  }
  .page .top-about .box h4 {
    font-size: max(1.7rem,1.8vw);
  }
  .page .top-about .box .sub {
    font-size: max(0.85rem,1.0vw);
  }
  .company table {
    width: 980px;
  }
  .company iframe {
    width: 976px;
  }
  .contact {
    width: 90%;
  }
}

@media (max-width: 992px) {
  header {
    height: 60px;
  }
  header .menu-area img {
    width: 21vw;
  }
  header .menu-area small {
    display: none;
  }
  header .menu-area ul {
    position: fixed;
    top: 0;
    right: -100vw;
    display: block;
    background: rgba(0, 0, 0, 0.9);
    width: 50%;
    height: 100vh;
    text-align: left;
    padding: 70px 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  header .menu-area ul li:first-child {
    border-top: 1px dotted #777777;
  }
  header .menu-area ul li {
    width: 90%;
    border-bottom: 1px dotted #777777;
  }
  header .menu-area ul li a {
    color: #ffffff;
    width: 100%;
    height: 100%;
    display: block;
    padding: 25px 0 25px 5%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  header .menu-area ul li a.active {
    color: #ffffff;
  }
  header .menu-area ul li a.active::after {
    display: none;
  }
  header .menu-area ul li a:hover {
    color: #aaa;
  }
  header .open ul {
    right: 0;
  }
  .header-resize {
    height: 60px;
  }
  .top {
    background: url(img/bg01.gif) #ffffff center/cover no-repeat;
  }
  .top .top-main {
    width: 100%;
    height: 100%;
    position: relative;
    top: 60px;
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 3%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: none;
    -webkit-animation: title 2.5s ease 0s normal 1 forwards;
            animation: title 2.5s ease 0s normal 1 forwards;
  }
  .top .top-main .top-img {
    display: block;
    padding: 50px 0 50px;
  }
  .top .top-main .top-img img {
    width: 100%;
  }
  .top .top-main .text {
    position: relative;
  }
  .top .top-main h1 {
    font-size: max(1.2rem,4.2vw);
    color: #0033ff;
    line-height: 1.5;
    -webkit-animation: title 5s ease 0s normal 1 forwards;
            animation: title 5s ease 0s normal 1 forwards;
    margin: 0 0 20px 0;
  }
  .top .top-main h2 {
    font-size: max(0.8rem,3.0vw);
    line-height: 1.5;
    opacity: 0;
    -webkit-animation: title 2s ease 1s normal 1 forwards;
            animation: title 2s ease 1s normal 1 forwards;
  }
  .menu-btn {
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    z-index: 99999;
  }
  .menu-area .menu-btn span, .menu-area .menu-btn span::before, .menu-area .menu-btn span::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 25px;
    height: 3px;
    background: #777777;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
  }
  .menu-area .menu-btn span::before {
    top: -8px;
  }
  .menu-area .menu-btn span::after {
    top: 11px;
  }
  .open .menu-btn span {
    width: 0;
  }
  .open .menu-btn span::before {
    top: 0;
    width: 25px;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
    background: #ffffff;
  }
  .open .menu-btn span::after {
    top: 0;
    width: 25px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    background: #ffffff;
  }
  section {
    padding: 80px 0;
  }
  section .title {
    padding: 0 0 50px 0;
  }
  section h3 {
    font-size: max(1.05rem,3.0vw);
    margin: 0 0 30px;
  }
  section h3::after {
    width: 100px;
    margin: 30px auto 0;
  }
  section .title-en {
    font-size: 1.0rem;
  }
  .top-about .box {
    background-image: none;
    height: auto;
    width: 95%;
    display: block;
    padding: 0;
    margin: 0px auto 50px;
  }
  .top-about .box .text {
    position: relative;
    text-align: left;
    padding: 15px 15px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0px;
  }
  .top-about .box .text br {
    display: none;
  }
  .top-about .box h4 {
    font-size: max(1.0rem,3.0vw);
    border-left: 5px solid #36f;
    line-height: 1.5;
    padding: 0 0 0 10px;
    margin: 0 0 15px;
  }
  .top-about .box .sub {
    font-size: max(0.9rem,1.9vw);
    line-height: 1.5;
  }
  .top-about .box .box-img {
    display: block;
    width: 100%;
    margin: 25px 0 0;
  }
  .top-about .box::after {
    display: none;
  }
  .top-about .btn {
    margin: 100px auto 0;
  }
  .top-maker .area {
    display: block;
    width: 95vw;
    padding: 20px 0 20px 5%;
    margin: 0 0 0 auto;
  }
  .top-maker .area ul {
    width: 100%;
  }
  .top-maker .area ul li {
    display: inline-block;
    font-size: 0.9rem;
    margin: 0 0 15px 0;
  }
  .top-maker .area ul li a {
    margin: 0 0 0 15px;
  }
  .top-maker .area ul li a span.icon {
    font-size: 13px;
    margin: 0 0 0 5px;
  }
  .top-maker .area ul li.list-title {
    display: block;
    margin: 10px 0 10px;
  }
  .top-maker .area .img-area {
    width: 100%;
    margin: 50px 0 0;
  }
  .top-maker .area .img-area a {
    margin: 0 2% 2% 0;
  }
  .top-maker .area .img-area img {
    width: max(150px,20vw);
  }
  footer {
    text-align: center;
    padding: 100px 5vw 5px;
  }
  footer .inner {
    max-width: 100%;
    display: block;
    text-align: center;
    margin: 0 auto 20px;
  }
  footer .inner img.logo {
    display: inline-block;
    width: 180px;
    height: 100%;
  }
  footer .inner address {
    max-width: 500px;
    text-align: center;
    margin: 30px auto 80px;
  }
  footer .inner address p {
    font-size: 0.8rem;
    margin: 7px 0;
  }
  footer .inner address .title {
    font-size: 0.9rem;
  }
  footer .inner address .post-num {
    display: none;
  }
  footer .inner ul {
    width: 100%;
    border-left: none;
    border-top: 1px solid #99c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 30px 0 0;
    margin: auto;
  }
  footer .inner ul li {
    font-size: 0.75rem;
    margin: 0 10px;
  }
  footer small {
    font-size: 0.7rem;
  }
  .page {
    padding: 60px 0 0;
  }
  .page .top-about .box {
    width: 92%;
    height: auto;
    margin: 0px auto 100px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page .top-about .box .box-img {
    width: 100%;
    padding: 0 2% 2%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .page .top-about .box .text {
    width: 100%;
    margin: 0;
  }
  .page .top-about .box h4 {
    font-size: max(1.0rem,3.0vw);
  }
  .page .top-about .box .sub {
    font-size: max(0.9rem,1.9vw);
    margin: 0 0 15px;
  }
  .page .top-about .box-b {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .company {
    padding: 80px 10px;
  }
  .company table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 2px 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .company table tr td {
    font-size: 0.8rem;
    padding: 10px 5px;
  }
  .company table tr td.left {
    width: 35%;
  }
  .company table tr td.right {
    width: 65%;
  }
  .company iframe {
    width: 100%;
  }
  .contact {
    width: 98%;
    padding: 50px 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .contact form {
    width: 100%;
    margin: 0;
  }
  .contact form label {
    font-size: 0.9rem;
  }
  .contact form label span {
    font-size: 0.7rem;
    padding: 0px 10px 2px;
    margin: 0 0 0 15px;
  }
  .contact form input {
    height: 20px;
    margin: 7px 0 25px;
  }
  .contact form select {
    height: 20px;
    margin: 7px 0 25px;
  }
  .contact form textarea {
    height: 150px;
    margin: 7px 0 50px;
  }
  .contact form .checkbox {
    font-size: 0.8rem;
    margin: 0 0 25px;
  }
  .contact form input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin: 0 10px 0 0;
  }
  .contact form input[type="submit"] {
    width: 200px;
    font-size: 0.9rem;
    -webkit-box-shadow: 2px 2px 3px #aaa;
            box-shadow: 2px 2px 3px #aaa;
    padding: 7px 0px;
  }
  .contact .tel {
    font-size: 0.9rem;
    width: 100%;
    border: 3px solid #36f;
    padding: 50px 0;
    margin: 80px auto 0;
  }
  .contact .tel .text {
    margin: 0 0 15px;
  }
  .contact .tel .text span {
    font-size: 0.85rem;
  }
  .contact .tel .number {
    font-size: 1.2rem;
  }
  .contact .tel .number a .fa-square-phone {
    margin: 0 7px 0 0;
  }
}
/*# sourceMappingURL=style.css.map */