@charset "UTF-8";
body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 18px;
  color: #000;
  font-weight: 400;
  line-height: 1.818;
}

.sp_br {
  display: none;
}

.load_ele {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  opacity: 1;
  visibility: visible;
  transition: 1s;
}
.load_ele img {
  display: block;
  width: 100%;
  max-width: 200px;
  padding-bottom: 0.5em;
  -webkit-animation-name: load_anime;
          animation-name: load_anime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
.load_ele.loaded {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(-100%);
}

@-webkit-keyframes load_anime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes load_anime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 42px 0 33px 0;
  max-width: 1710px;
  width: 95%;
  margin: 0 auto;
  z-index: 2;
}
header .logo {
  max-width: 234px;
}
header .logo img {
  width: 100%;
}
header .open_button {
  padding: 0 0 0 19px;
  position: relative;
}
header .open_button:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #000;
  display: block;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  left: 0;
}
header .header_nav_wrap {
  color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transform: translateX(100%);
  transition: 0.7s;
  will-change: transform;
  opacity: 0;
  background-image: url("../images/top/header_nav_back.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: -1;
}
header .header_nav_wrap.open {
  transform: translateX(0);
  opacity: 1;
  transition: 0.7s;
  z-index: 1;
  overflow-y: scroll;
  will-change: transform;
}
header .header_nav_wrap .nav_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 42px 0 33px 0;
  max-width: 1710px;
  width: 95%;
  margin: 0 auto;
}
header .header_nav_wrap .nav_top .nav_logo {
  max-width: 234px;
}
header .header_nav_wrap .nav_top .nav_logo img {
  width: 100%;
}
header .header_nav_wrap .nav_top .close_button {
  padding: 0 0 0 19px;
  position: relative;
}
header .header_nav_wrap .nav_top .close_button:before {
  content: "";
  width: 15px;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%) rotate(45deg);
  left: 0;
  background-color: #fff;
}
header .header_nav_wrap .nav_top .close_button:after {
  content: "";
  width: 15px;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%) rotate(-45deg);
  left: 0;
  background-color: #fff;
}
header .header_nav_wrap .list_wrap {
  width: 100%;
  padding: 50px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 280px;
}
header .header_nav_wrap .list_wrap .list_nav li {
  margin: 0 0 32px 0;
}
header .header_nav_wrap .list_wrap .list_nav li a {
  line-height: 1.77;
  display: block;
  position: relative;
  padding: 0px 0 0 120px;
}
header .header_nav_wrap .list_wrap .list_nav li a:before {
  content: "";
  display: block;
  width: 85px;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(50%);
  background-color: #fff;
  left: 0;
}
header .header_nav_wrap .list_wrap .bn_nav .bn_nav_title {
  line-height: 1.77;
  display: block;
  position: relative;
  padding: 0px 0 0 120px;
  margin: 0 auto 20px auto;
}
header .header_nav_wrap .list_wrap .bn_nav .bn_nav_title:before {
  content: "";
  display: block;
  width: 85px;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(50%);
  background-color: #fff;
  left: 0;
}
header .header_nav_wrap .list_wrap .bn_nav ul {
  padding: 0 0 0 120px;
}
header .header_nav_wrap .list_wrap .bn_nav ul li {
  margin: 0 auto 24px auto;
}

footer .google_map iframe {
  display: block;
  width: 100%;
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  transform: 0.5s;
}
footer .google_map iframe:hover {
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
  transform: 0.5s;
}
footer .footer_wrap {
  padding: 88px 0 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 1508px;
  width: 95%;
  margin: 0 auto;
  height: 357px;
}
footer .footer_wrap .box_left {
  padding: 0 101px 0 0;
  border-right: 1px solid #000;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
footer .footer_wrap .box_left .sns_icon {
  width: 45px;
  margin: 20px 20px 0 30px;
}
footer .footer_wrap .box_right {
  padding: 0 0 0 70px;
  max-width: 890px;
  display: flex;
  align-items: center;
}
footer .footer_wrap .box_right ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 70px;
}
footer .footer_wrap .box_right ul li {
  margin: 0 0 30px 0;
}
footer small {
  display: block;
  text-align: right;
  padding: 49px 176px 49px 0;
}
footer .scroll_top {
  width: 65px;
  height: 65px;
  border: 1px solid #000;
  position: fixed;
  right: 75px;
  bottom: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
footer .scroll_top span {
  width: 21px;
  display: block;
  border-bottom: 15px solid #000;
  border-top: 0px solid transparent;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
footer .scroll_top.close {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

@media screen and (max-width: 1300px) and (min-width: 1025px) {
  header .header_nav_wrap .list_wrap {
    gap: 0;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  body {
    font-size: 16px;
  }
  header .header_nav_wrap .list_wrap {
    padding: 0;
    display: block;
  }
  footer .footer_wrap {
    display: block;
  }
  footer .footer_wrap .box_left {
    justify-content: center;
    padding: 0;
    margin: 0 0 2em 0;
  }
  footer .footer_wrap .box_right {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  footer .footer_wrap .box_right ul {
    gap: 0 2em;
    justify-content: center;
    max-width: 600px;
    margin: auto;
  }
  footer small {
    padding: 49px 0;
    text-align: center;
  }
  footer .scroll_top {
    right: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sp_br {
    display: block;
  }
  body {
    font-size: 14px;
  }
  header {
    padding: 0 0 0 0;
    width: 100%;
  }
  header .logo {
    max-width: 136px;
    margin: 0 0 0 12px;
  }
  header .open_button {
    padding: 23px 0 0 0;
    font-size: 11px;
    width: 70px;
    height: 70px;
    text-align: center;
    background: #fff;
  }
  header .open_button:before {
    width: 40%;
    height: 2px;
    border-radius: 0;
    top: 22px;
    left: 0;
    right: 0;
    transform: translate(0);
    margin: 0 auto;
  }
  header .open_button:after {
    content: "";
    display: block;
    top: 29px;
    width: 40%;
    height: 2px;
    left: 0;
    right: 0;
    background-color: #000;
    position: absolute;
    margin: 0 auto;
  }
  header .header_nav_wrap .nav_top {
    padding: 0 0 0 0;
    width: 100%;
  }
  header .header_nav_wrap .nav_top .nav_logo {
    max-width: 136px;
    margin: 0 0 0 12px;
  }
  header .header_nav_wrap .nav_top .close_button {
    padding: 23px 0 0 0;
    font-size: 11px;
    width: 70px;
    height: 70px;
    text-align: center;
  }
  header .header_nav_wrap .nav_top .close_button:before {
    width: 40%;
    height: 2px;
    top: 29px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  header .header_nav_wrap .nav_top .close_button:after {
    content: "";
    display: block;
    top: 29px;
    width: 40%;
    height: 2px;
    left: 0;
    right: 0;
    position: absolute;
    margin: 0 auto;
  }
  header .header_nav_wrap .list_wrap {
    padding: 0;
    display: block;
  }
  header .header_nav_wrap .list_wrap .list_nav li {
    margin: 0 0 1em 0;
  }
  header .header_nav_wrap .list_wrap .list_nav li a {
    font-size: 14px;
  }
  header .header_nav_wrap .list_wrap .bn_nav .bn_nav_title {
    font-size: 14px;
  }
  header .header_nav_wrap .list_wrap .bn_nav ul {
    padding: 0 0 0 120px;
  }
  header .header_nav_wrap .list_wrap .bn_nav ul li {
    margin: 0 auto 24px 0;
  }
  footer {
    position: relative;
  }
  footer .google_map iframe {
    height: 180px;
  }
  footer .footer_wrap {
    display: block;
    height: auto;
    padding: 34px 0 0 0;
    width: 86%;
  }
  footer .footer_wrap .box_left {
    padding: 0;
    margin: 0 0 24px 0;
    border: none;
  }
  footer .footer_wrap .box_left img {
    width: 168px;
  }
  footer .footer_wrap .box_right {
    padding: 0 0 0 0;
  }
  footer .footer_wrap .box_right ul {
    display: block;
  }
  footer .footer_wrap .box_right ul li {
    margin: 0 0 12px 0;
  }
  footer .footer_wrap .box_right ul li a {
    font-size: 16px;
  }
  footer small {
    text-align: center;
    padding: 96px 0 77px 0;
    font-size: 14px;
  }
  footer .scroll_top {
    position: absolute;
    right: 22px;
    bottom: 128px;
  }
}
/*# sourceMappingURL=common.css.map */