@charset "UTF-8";
/*-------------------------
nav
-------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
  padding: 25px 2% 15px;
  transition: 0.1s;
  /*  max-height: 95px;*/
}
h1 {
  margin: 0;
  padding: 0;
}
.site-logo img {
  width: 220px;
  height: auto;
  padding-bottom: 10px;
}
header .pc-menu {
  margin: 0 0 0 auto;
}
.pc-menu ul {
  list-style: none;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
/* nav style changed */
header ul li a {
  display: inline-block;
  margin-left: 20px;
  color: #0E172C;
  text-decoration: none;
  transition: 0.1s;
  font-weight: 600;
  font-size: 14px;
}
header ul li a:hover {
  opacity: 0.7;
  color: #172C66;
}
/* scroll, class name-scroll-nav */
header.scroll-nav {
  padding: 25px 2% 15px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: brightness(100%) blur(10px);
  box-shadow: rgba(33, 33, 36, 0.1) 0px 10px 10px -10px;
}
header.scroll-nav .btn-linetop, header.scroll-nav .btn-linemedium, header.scroll-nav .btn-linebottom {
  background-color: #0E172C;
}
.sp-menu {
  display: none;
}
@media (max-width: 1024px) {
  /*-------------------------
sp menu
-------------------------*/
  .pc-menu {
    display: none;
  }
  .sp-menu {
    display: block;
  }
  .sp-nav {
    position: fixed;
    overflow-y: scroll;
    top: 0;
    right: 0;
    z-index: 20;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background-color: #FFF;
    transform: translateX(100%);
    transition: all 0.3s;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  .sp-nav__list {
    width: 100%;
    padding: 50px 20px 0 20px;
  }
  .sp-nav__list-item {
    border-bottom: 2px dotted rgba(116, 141, 174, .7);
    width: 100%;
    padding: 20px 0 20px 30px;
    font-weight: 600;
    list-style: none;
  }
  a.list-item__link {
    color: #0E172C;
  }
  a.list-item__link:hover {
    opacity: 0.7;
    color: #172C66;
  }
  .NavIsOpen {
    transform: translateX(0);
  }
  .sp-menu__btn {
    position: fixed;
    top: 1%;
    right: 1%;
    z-index: 30;
    height: 50px;
    padding: 0 20px 0 15px;
    border: none;
    background-color: transparent;
  }
  .btn-linetop {
    position: absolute;
    top: 18px;
    width: 25px;
    height: 2px;
    background-color: #0E172C;
    transition: all 0.3s;
  }
  .ButtonIsOpen .btn-linetop {
    transform: translateX(-5px) translateY(9px) rotate(45deg);
    opacity: 0.7;
    background-color: #172C66;
  }
  .btn-linemedium {
    width: 25px;
    height: 2px;
    background-color: #0E172C;
    transition: all 0.3s;
  }
  .ButtonIsOpen .btn-linemedium {
    opacity: 0;
  }
  .btn-linebottom {
    position: absolute;
    bottom: 18px;
    width: 25px;
    height: 2px;
    background-color: #0E172C;
    transition: all 0.3s;
  }
  .ButtonIsOpen .btn-linebottom {
    transform: translateX(-5px) translateY(-3px) rotate(-45deg);
    opacity: 0.7;
    background-color: #172C66;
  }
  .overlay {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    background-color: rgba(33, 33, 36, 0.6);
    opacity: 0;
    transition: all 0.3s;
  }
  .OverlayIsOpen {
    visibility: visible;
    opacity: 1;
  }
  .IsScrollAllowed {
    overflow: hidden;
  }
  .site-logo img {
    width: 70%;
    height: auto;
    padding-bottom: 5px;
  }
  header {
    padding: 10px 4% 15px;
  }
  header.scroll-nav {
    padding: 10px 4% 15px;
  }
  .sp-menu__btn .scroll-nav {
    top: 15%;
  }
  .site-footer__inner {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-block: 160px 60px;
  }
  p.site-footer__mgmt, p.site-footer__address {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .site-logo img {
    width: 60%;
    height: auto;
    padding-bottom: 5px;
  }
  .site-footer__inner {
    flex-direction: column-reverse;
    padding-block: 120px 20px;
  }
}
@media (max-width: 520px) {
  .site-logo img {
    width: 50%;
    height: auto;
    padding-bottom: 13px;
  }
  header {
    padding: 10px 4% 15px;
  }
  header.scroll-nav {
    padding: 10px 4% 15px;
  }
  .sp-nav__list {
    padding: 50px 50px 0 20px;
  }
  .sp-nav__list-item {
    padding: 15px 0 15px 20px;
  }
  .sp-nav__list-item a {
    font-size: 14px;
  }
}