@charset "UTF-8";
/*--- import -------------------------------------*/
* {
  margin: 0;
  padding: 0;
  outline: 0;
  font-size: 100%;
  word-break: break-word;
  box-sizing: border-box;
  vertical-align: baseline;
  background: transparent;
}

html,
body {
  overflow-x: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

li {
  list-style-type: none;
}

blockquote,
q {
  quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture {
  vertical-align: top;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
select {
  vertical-align: middle;
}

/* safariでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*------------------------------------- import ---*/
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.burger {
  width: 30px;
  height: 21px;
  cursor: pointer;
  position: fixed;
  z-index: 99;
  right: 15px;
  top: 20px;
}
.burger > div {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 6px;
  position: absolute;
}

.normal:first-child {
  top: 0;
  left: 0;
  transition: 0.2s;
}
.normal:nth-child(2) {
  top: 9px;
  left: 0;
}
.normal:last-child {
  top: 18px;
  left: 0;
  transition: 0.2s;
}

.burger:hover .normal:first-child {
  top: -3px;
}
.burger:hover .normal:last-child {
  top: 21px;
}

.topline {
  animation: top 0.5s;
  transform: rotate(45deg);
  top: 10px;
}

.bottomline {
  animation: bottom 0.5s;
  transform: rotate(-45deg);
  top: 10px;
}

@keyframes top {
  0% {
    transform: rotate(0deg);
  }
  0% {
    top: 0;
  }
  100% {
    transform: rotate(45deg);
  }
  100% {
    top: 10px;
  }
}
@keyframes bottom {
  0% {
    transform: rotate(0deg);
  }
  0% {
    top: 21px;
  }
  100% {
    transform: rotate(-45deg);
  }
  100% {
    top: 10px;
  }
}
.nav {
  width: 100%;
  background: rgba(0, 104, 53, 0.95);
  color: white;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  height: 100vh;
  padding: 0px 0 90px;
  overflow-y: scroll;
}
.nav::-webkit-scrollbar {
  display: none;
}
.nav .tell_area {
  padding-top: 28px;
  padding-bottom: 28px;
  background: #000;
  color: #fff;
  margin-top: 0px;
  border-bottom: none !important;
}
.nav .tell_area .logo {
  display: inline-block;
  padding: 0;
  margin: 0px 0 10px;
  line-height: 1;
  width: 100%;
}
.nav .tell_area a {
  font-size: 31px;
  font-weight: bold;
  -webkit-text-stroke: 0px #000000;
  text-stroke: 0px #000000;
}
.nav .tell_area a:before {
  content: "";
  display: inline-block;
  background: url("../images/tel_icon.png") no-repeat;
  background-size: contain;
  width: 19px;
  height: 20.5px;
  margin-right: 5px;
}
.nav .tell_area a:after {
  content: "(代表)";
  font-size: 14px;
  right: -8px;
  position: relative;
  top: -4px;
}
@media screen and (max-width: 750px) {
  .nav .tell_area {
    padding-top: 3.7333333333vw;
    padding-bottom: 3.7333333333vw;
  }
}
.nav-list {
  text-align: center;
  margin-top: 40px;
}
.nav-list a {
  font-size: 18px;
  display: block;
}
.nav-list a {
  font-size: 18px;
  display: block;
  line-height: 22px;
}
.nav-list a span {
  font-size: 0.6rem;
  letter-spacing: 1px;
  opacity: 0.6;
}
