@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック";
}
body main {
  padding: 0 10px;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

p {
  margin: 0;
}

footer {
  margin-top: 100px;
}
footer .phone_menu,
footer #gnavwrap {
  display: none;
}
footer .footer .last_footer {
  width: 100%;
  text-align: center;
  background-color: #0098db;
  color: white;
}
footer .footer .logo {
  width: 50%;
  display: flex;
  align-items: center;
}
footer .footer .logo a {
  display: inline-block;
  width: 50%;
  height: 100%;
}
footer .footer .logo a h1 {
  height: 50px;
  margin: 15px 0;
  width: 100%;
  color: gray;
}
footer .footer .logo .access {
  width: 50%;
  font-size: 0.8rem;
  color: gray;
}
footer .footer .logo .access div {
  width: 100%;
  margin: 10px 0;
}
footer .footer .logo .access div .address_1 {
  background-color: rgba(128, 128, 128, 0.4392156863);
  padding: 3px;
}
footer .footer .footer_list {
  width: 40%;
}
footer .footer .footer_list ul li a {
  color: black;
}

@media screen and (max-width: 1000px) {
  footer .footer {
    flex-direction: column;
    align-items: center;
  }
  footer .footer .logo {
    width: 100%;
  }
  footer .footer .logo h1 {
    width: 50%;
    text-align: center;
  }
  footer .footer .logo .access {
    text-align: left;
    font-size: 1rem;
  }
  footer .footer .footer_list {
    width: 450px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 700px) {
  footer .phone_menu {
    display: block;
    position: fixed;
    top: 0;
    height: 70px;
    width: 100%;
    z-index: 10;
  }
  footer .phone_menu ul {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
  }
  footer .phone_menu ul li {
    height: 100%;
  }
  footer .phone_menu ul li a {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-around;
    color: #6f6f6f;
  }
  footer .phone_menu ul li a svg {
    width: 23px;
    height: 23px;
  }
  footer .phone_menu ul li a p {
    width: 100%;
  }
  footer .phone_menu ul li:nth-child(1),
  footer .phone_menu ul li:nth-child(2) {
    height: 100%;
    width: 25%;
    background-image: linear-gradient(180deg, rgb(240, 240, 240) 59%, rgb(170, 170, 170));
    border-right: 1px solid #6f6f6f;
  }
  footer .phone_menu ul li:nth-child(3) {
    height: 100%;
    width: 50%;
    background-color: #0098db;
  }
  footer .phone_menu ul li:nth-child(3) a {
    display: flex;
    flex-direction: row;
    color: white;
  }
  footer .phone_menu ul li:nth-child(3) a .phone_str {
    text-align: left;
  }
  footer .phone_menu ul li:nth-child(3) a .phone_str p {
    font-size: 0.7rem;
  }
  footer .phone_menu ul .menu_hot {
    border-left: 1px solid white;
    border-right: 1px solid white;
  }
  footer #gnavwrap {
    display: block;
    z-index: 5;
  }
  footer #gnavwrap .toggle {
    z-index: 10;
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 10px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
  }
  footer #gnavwrap .toggle div {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 8px auto;
    transition-duration: 0.3s;
  }
  footer #gnavwrap .toggle .one {
    margin-top: 13px;
  }
  footer #gnavwrap nav {
    position: fixed;
    width: 100%;
  }
  footer #gnavwrap nav ul {
    text-align: center;
    list-style: none;
    margin: 50px 0 0 0;
    padding: 0;
    overflow: hidden;
  }
  footer #gnavwrap nav ul li:hover {
    background-color: rgba(0, 0, 0, 0.5);
  }
  footer #gnavwrap nav ul li {
    padding: 10px 0;
  }
  footer #gnavwrap nav ul li a {
    color: white;
    font-size: 1.5em;
    text-decoration: none;
    line-height: 1.5;
    width: 100%;
    display: block;
    box-sizing: border-box;
  }
  footer #gnavwrap nav ul li a span {
    font-size: 0.8rem;
    margin-left: 20px;
  }
  footer #gnavwrap.off nav ul {
    display: none;
  }
  footer #gnavwrap.on {
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    min-height: 100%;
    z-index: 10;
  }
  footer #gnavwrap.on .one {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: white;
  }
  footer #gnavwrap.on .two {
    opacity: 0;
  }
  footer #gnavwrap.on .three {
    transform: rotate(-45deg) translate(8px, -9px);
    background-color: white;
  }
  footer #gnavwrap.on nav {
    z-index: 10;
  }
  footer #gnavwrap.on #mask {
    transition-duration: 0.5s;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: block;
    position: fixed;
    top: 0;
    z-index: 2;
  }
  footer .footer .last_footer {
    margin-bottom: 70px;
  }
  footer .footer .logo {
    flex-direction: column;
  }
  footer .footer .logo h1 {
    width: 100%;
  }
  footer .footer .logo .access {
    width: 100%;
    text-align: center;
  }
  footer .footer .footer_list {
    width: 95%;
  }
}/*# sourceMappingURL=footer.css.map */