@charset "utf-8";
main {
  width: 100%;
}

/* 共通 */
html,
body {
  font-family: "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  user-select: none;
  color: #333;
}

/* header */
header {
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  position: fixed;
  top: 0%;
  z-index: 5;
}
header > div {
  max-width: 1200px;
  margin: 15px auto 10px;
}

header > div,
.title_logo,
header ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.title_logo,
.header_navs {
  margin: 0 10px;
}
.title_logo>a p{
  line-height:1.2;
}
h1 img {
  width: 100px;
  height: auto;
  margin-right: 15px;
}
.title_min {
  display: block;
  font-size: 0.9em;
}
.title_big {
  font-weight: 700;
  font-size: 1.5em;
}

nav li a {
  padding: 15px 20px;
  margin-left: unset;
  color: #fff;
}
.nav1 a {
  margin-left: 10px;
  display: inline-block;
  letter-spacing: 1px;
}

.nav1 .menu_online {
  padding: 7px 20px;
  text-align: center;
}
.nav2 ul {
  margin: 10px auto 0;
  justify-content: flex-end;
}
.nav2 li a {
  font-size: 0.85rem;
  padding: 0;
  color: #333;
}

.nav2 li::after {
  display: inline-block;
  content: "/";
  padding: 0 10px;
}
.nav2 li:last-of-type::after {
  display: none;
}
.nav2 li:last-of-type {
  margin-right: 20px;
}

/* メニューボタン設定 */
.hamburger {
  display: none;
}
nav li a {
  transition: all 0.2s;
  border-radius: 50px;
}
.nav1 {
  font-weight: 700;
}
.menu_phone {
  background: #f78180;
  background: linear-gradient(0deg, #f13f79 0%, #f78180 60%);
}
.menu_document {
  background: #ffcc66;
  background: linear-gradient(0deg, #f0991f 0%, #ffcc66 60%);
}
.menu_order {
  background: #7db0ff;
  background: linear-gradient(0deg, #3c89ff 0%, #7db0ff 60%);
}
.menu_online {
  background: #33cc99;
  background: linear-gradient(0deg, #00ae35 0%, #33cc99 60%);
  color: #ffff00;
}
.menu_online span {
  color: #fff;
  font-size: 0.75em;
}

.menu_insta {
  background: #8500de;
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%);
  font-family: cursive;
}
@media screen and (min-width: 800px){
.nav1 li a:hover {
  -webkit-transform: translate(0, -5px);
  transform: translate(0, -5px);
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}}

/* メニュー回りのレスポンシブ */
@media screen and (max-width: 1200px) {
  .title_logo>a {
    display: none;
  }
  nav li a,.menu_online {
    letter-spacing: unset;
    padding: 15px 10px;
  }
  .nav1 .menu_online {
    padding: 7.5px 10px;
  }
  .nav2 li:last-of-type {
    margin-right: 15px;
  }
}

/* ハンバーガーメニュー */
@media screen and (max-width: 880px) {
  header > div{
    justify-content: space-between;
  }
  /* メニューボタン */
  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  .hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /* header_navs_880 */
  .nav1 li a {
    background: unset;
    border-radius: unset;
    width: 100%;
    font-size: 1.25rem;
    margin: 0;
  }
  .header_navs {
    margin: 0;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background: #80d6f5;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
  }
  .header_navs .nav1 ul {
    background: #80d6f5;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    flex-direction: column;
  }
  .nav1 ul li {
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  .header_navs ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .nav2 ul {
    margin: 10px auto 20px;
    padding-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
    border-top: #008ade dotted 1px;
    color: #fff;
  }
  .nav2 li {
    margin: 10px 15px;
  }
  .nav2 li::after {
    display: none;
  }
  .nav2 ul a {
    color: #fff;
    padding: 10px;
  }

  .header_navs.active {
    transform: translateY(0%);
  }
}

/* main */
.section#map::before {
  display: unset;
}

.section > div,
footer {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
  clear: both;
  overflow: hidden;
  position: relative;
}
main {
  margin-top: 100px;
}

/* footer */
.footer_list > ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer_list li {
  line-height: 1.5;
  margin-top: 5px;
}

.footer_list a {
  margin: 10px;
  padding: 5px;
  font-size: small;
}
footer {
  text-align: center;
  margin: 10px auto;
}
small {
  font-size: 0.75rem;
}

/* topに戻るボタン */
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 50px;
  bottom: 40px;
  transition: all 0.6s;
  z-index: 5;
}
@media screen and (min-width: 1000px){
  #page_top:hover {
    opacity: 0.6;
    width: 60px;
    height: 60px;
    bottom: 50px;
  }
}

@media screen and (max-width: 880px) {
  main {
    margin-top: 66px;
  }
  #page_top {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 20px;
    bottom: 20px;
  }
}
