/****************************************************
    header
***************************************************/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 768px) {
  .pc_only {
    display: block !important;
  }
  .sp_only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block !important;
  }
  .pc_only {
    display: none !important;
  }
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  width: 100%;
  height: 90px;
  padding: 10px 20px;
  background: #fff;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
  z-index: 10;
}
header a {
  text-decoration: none !important;
}
header h1 {
  height: 100%;
}
header h1 img {
  height: 100%;
}
header .nav_list {
  display: flex;
  align-items: center;
}
header .nav_list .nav_item {
  position: relative;
  margin-left: 55px;
}
@media screen and (min-width: 769px) {
  header .nav_list .nav_item:nth-child(-n+4):hover::after {
    content: "";
    position: absolute;
    display: block;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #3ca9d4;
    margin: 10px auto;
  }
  header .nav_list .nav_item.contact {
    position: relative;
    width: 130px;
    height: 40px;
    background-color: #3ca9d4;
    border-radius: 3px;
    color: #fff;
    text-align: center;
  }
  header .nav_list .nav_item.contact:hover {
    background-color: #89d3de;
    transition: all 0.3s ease;
  }
  header .nav_list .nav_item.contact a {
    position: absolute;
    top: 7px;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 900px) {
  header .nav_list .nav_item.contact a {
    top: 9px;
  }
}
header button {
  display: none;
}
@media screen and (max-width: 900px) {
  header .nav_list .nav_item {
    font-size: 0.9rem;
    margin-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  header {
    height: 85px;
  }
  header .burger_btn {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background-color: inherit;
    border: none;
    z-index: 3;
  }
  header .burger_btn .bar_top {
    top: 10px;
  }
  header .burger_btn .bar_mid {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  header .burger_btn .bar_bottom {
    bottom: 10px;
  }
  header .burger_btn.close .bar_top {
    transform: translate(-50%, 14px) rotate(45deg);
    transition: transform 0.3s;
  }
  header .burger_btn.close .bar_mid {
    opacity: 0;
    transition: opacity 0.3s;
  }
  header .burger_btn.close .bar_bottom {
    transform: translate(-50%, -14px) rotate(-45deg);
    transition: transform 0.3s;
  }
  header .bar {
    display: block;
    background-color: #3ca9d4;
    height: 2px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 40px;
  }
  header .noscroll {
    overflow: hidden;
  }
  header .nav_wrapper {
    visibility: hidden;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 2;
  }
  header .nav_wrapper.fade {
    opacity: 1;
    visibility: visible;
  }
  header .nav_wrapper .header_nav {
    height: 100%;
    width: 100%;
    background-color: #3ca9d4;
    z-index: 2;
  }
  header .nav_wrapper .header_nav .nav_list {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
  }
  header .nav_wrapper .header_nav .nav_list .nav_item {
    margin: 0 0 40px 0;
    font-size: 1.2rem;
  }
}

/****************************************************
    footer
***************************************************/
footer {
  width: 100%;
  border-top: 10px solid #89d3de;
  box-sizing: border-box;
}
footer a {
  text-decoration: none !important;
}
footer .footerNav_wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}
footer .footerNav_wrap .footerLogo_wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer .footerNav_wrap .footerLogo_wrap img {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  footer .footerNav_wrap .footerLogo_wrap {
    flex-direction: column;
    margin-bottom: 20px;
  }
  footer .footerNav_wrap .footerLogo_wrap img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
footer .footerNav_wrap nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .footerNav_wrap nav ul {
  display: flex;
  flex-wrap: wrap;
}
footer .footerNav_wrap nav ul li {
  margin: 0 20px 0 0;
}
@media screen and (max-width: 767px) {
  footer .footerNav_wrap nav ul li {
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 767px) {
  footer .footerNav_wrap nav ul {
    flex-direction: column;
    align-items: center;
  }
}
footer .footerNav_wrap nav .upper {
  margin-bottom: 15px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  footer .footerNav_wrap nav {
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  footer .footerNav_wrap {
    width: 100%;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
  }
}
footer .copyright {
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
  background: linear-gradient(0deg, #3ca9d4 0%, #89D3DE 100%);
  -moz-background: linear-gradient(0deg, #3ca9d4 0%, #89D3DE 100%);
  -webkit-background: linear-gradient(0deg, #3ca9d4 0%, #89D3DE 100%);
  color: #fff;
  text-align: center;
}/*# sourceMappingURL=common.css.map */