@charset "UTF-8";
/*===================================

 breakpoint

===================================*/
/*===================================

float

===================================*/
.float {
  display: none;
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  z-index: 9;
  transition: all 0.5s;
}
@media screen and (max-width: 991px) {
  .float {
    display: block;
  }
}

.float.is-active {
  bottom: 1.6rem;
}

.float .globalNav_btns {
  max-width: 28rem;
  margin: 0 auto;
}

.float .globalNav__btn a {
  font-size: 1.25rem;
}

.float .globalNav__btn a img {
  width: 1.6rem;
}

/*===================================

header

===================================*/
.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: -100%;
  background: white;
  height: 100px;
  z-index: 10;
  transition: top 0.8s, background 0.3s;
}
@media screen and (max-width: 991px) {
  .header {
    height: 4.5rem;
    padding-bottom: 0.25rem;
  }
}

.header.is-active {
  top: 0;
}

.header_top {
  background: none;
}

.header_inner {
  display: flex;
  align-items: center;
  max-width: 1190px;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .header_inner {
    padding-inline: 1rem;
  }
}

.header_logo a {
  display: block;
  transition: all 0.3s;
}

@media (hover: hover) {
  .header_logo a:hover {
    opacity: 0.8;
  }
}
.header_logo img {
  width: 24.4rem;
}
@media screen and (max-width: 991px) {
  .header_logo img {
    width: 23rem;
  }
}

.header_globalNav {
  margin-left: auto;
}

.header_logo p {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/*===================================

globalNav

===================================*/
.globalNav {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .globalNav {
    display: none;
  }
}

.globalNav_links {
  display: flex;
  height: 100%;
  gap: 30px;
}

.globalNav_link {
  height: 100%;
}

.globalNav_link a {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #333333;
}

.globalNav_link_white a {
  color: white;
}

.globalNav_link a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background-color: #333;
  left: 0;
  bottom: 32px;
  transition: all 0.3s;
}

@media (hover: hover) {
  .globalNav_link a:hover::after {
    width: 100%;
  }
}
.globalNav_btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.globalNav__btn {
  width: 15rem;
  height: 50px;
}

.globalNav__btn a {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-radius: 25px;
  box-shadow: 0px 5px 6px rgba(20, 36, 116, 0.25);
  transition: all 0.3s;
}

@media (hover: hover) {
  .globalNav__btn a:hover {
    box-shadow: none;
    transform: translate(0, 6px);
  }
}
.globalNav__btn a img {
  width: 25px;
}

.globalNav__btn:nth-child(1) a {
  background-color: #89cfe3;
}

.globalNav__btn:nth-child(2) a {
  background-color: #c7179b;
}

/*===================================

hamburger

===================================*/
.hamburger {
  display: none;
}
@media screen and (max-width: 991px) {
  .hamburger {
    display: block;
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #89cfe3;
    padding: 0;
    border: none;
    border-radius: 50%;
    margin-left: auto;
    margin-top: 0.5rem;
    transition: all 0.3s;
    z-index: 1;
  }
}

.hamburger span {
  position: absolute;
  width: 1.7rem;
  height: 1.5px;
  background-color: white;
  border-radius: 0.2rem;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

.hamburger span:nth-child(1) {
  top: calc(50% - 0.8rem);
  /* opacity: 0; */
}

.hamburger span:nth-child(2) {
  top: calc(50% - 0.45rem);
}

.hamburger span:nth-child(3) {
  top: calc(50% - 0.1rem);
  /* opacity: 0; */
}

.hamburger span:nth-child(4) {
  color: white;
  font-size: 0.925rem;
  top: 68%;
  text-align: center;
  height: auto;
  width: auto;
  background: none;
}

.hamburger.is-active {
  background: none;
}
.hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 1;
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(4) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 1;
}

/*===================================

nav

===================================*/
.nav_link {
  transition: all 0.3s;
}

.drawer .nav_link:nth-child(1) {
  transform: translateY(10px);
  transition-delay: 0.4s;
  opacity: 0;
}
.drawer .nav_link:nth-child(2) {
  transform: translateY(10px);
  opacity: 0;
  transition-delay: 0.5s;
}
.drawer .nav_link:nth-child(3) {
  transform: translateY(10px);
  opacity: 0;
  transition-delay: 0.6s;
}
.drawer.is-active .nav_link {
  opacity: 1;
  transform: translateY(0);
}

.nav_link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #3167ec;
  padding-block: 1.4rem;
  padding-inline: 1.25rem;
}

.nav_link a::after {
  display: block;
  content: ">";
  font-size: 1.4rem;
}

.nav_link:not(:first-child) a {
  border-top: 1px solid #3167ec;
}

.nav_link_white a {
  border-top: 1px solid white;
}

.nav_link_white:not(:first-child) a {
  border-color: white;
}

.nav_link_white a {
  color: white;
  border-color: white;
}

.nav_privacy {
  margin-top: 1rem;
  margin-left: 1.25rem;
}

.drawer .nav_privacy {
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0.7s;
}

.drawer.is-active .nav_privacy {
  opacity: 1;
  transform: translateY(0);
}

.nav_privacy a {
  font-size: 1rem;
  color: #27455d;
  letter-spacing: 0.1em;
}

.nav_btns {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.nav_btn {
  width: 18rem;
  height: 3.8rem;
  margin: 0 auto;
}

.drawer .nav_btn {
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(10px);
}
.drawer .nav_btn:nth-child(1) {
  transition-delay: 0.8s;
  display: none;
}
.drawer .nav_btn:nth-child(2) {
  transition-delay: 0.9s;
}
.drawer.is-active .nav_btn {
  transform: translateY(0);
  opacity: 1;
}

.nav_btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 5px;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-radius: 6px;
}

.nav_btn a img {
  width: 1.2rem;
}

.nav_btn_tel a {
  color: #012a9f;
  border: 1px solid #012a9f;
}

.nav_btn_contact a {
  background-color: #c7179b;
  color: white;
  border: 1px solid #c7179b;
}

.nav_btn_contact a img {
  width: 1.6rem;
}

/*===================================

drawer

===================================*/
.drawer {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  top: 0;
  left: 0;
  background: url(../img/img-common/bg.webp) center center/cover no-repeat;
  padding-top: 0.5rem;
  padding-bottom: 4rem;
  transform: translateY(-105%);
  transition: all 0.5s;
}

.drawer.is-active {
  transform: translateY(0%);
}

.logo_white {
  width: 11rem;
}

.drawer_nav {
  background-color: white;
  border-top-left-radius: 2.5rem;
  padding: 2rem 2.5rem 3.5rem;
  margin-top: 1.6rem;
}

.drawer_close {
  margin-top: 2rem;
  text-align: center;
  color: white;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

/*===================================

footer 

===================================*/
.footer {
  position: relative;
  background-color: #01172f;
  color: white;
  padding-top: 50px;
  padding-bottom: 16px;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .footer {
    padding-top: 3rem;
    padding-bottom: 8rem;
  }
}

@media screen and (max-width: 991px) {
  .form + .footer {
    padding-bottom: 2rem;
  }
}

.footer_inner.inner {
  max-width: 1000px;
}

.footer_wrap {
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 991px) {
  .footer_wrap {
    display: contents;
  }
}

@media screen and (max-width: 991px) {
  .footer_info {
    margin-top: 1.25rem;
    padding-inline: 1.25rem;
  }
}

.footer_logo {
  width: 230px;
}
@media screen and (max-width: 991px) {
  .footer_logo {
    width: 9.4rem;
  }
}

.footer_address {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: 0.05em;
  color: white;
  margin-top: 14px;
}
@media screen and (max-width: 991px) {
  .footer_address {
    font-size: 1rem;
    line-height: 1.65;
    margin-top: 0.6rem;
  }
}

.footer_privacy {
  margin-top: 24px;
}

.footer_privacy a {
  position: relative;
  color: white;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 3.0769230769;
  letter-spacing: 0.05em;
  padding-bottom: 5px;
}

.footer_privacy a:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background-color: white;
  left: 0;
  bottom: 0;
  transition: all 0.3s;
}

@media (hover: hover) {
  .footer_privacy a:hover::before {
    width: 100%;
  }
}
.footer_globalNav {
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.footer_globalNav .globalNav_links {
  flex-direction: column;
  gap: 6px;
  height: fit-content;
}

.footer_globalNav .globalNav_link a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding: 0;
  gap: 10px;
  width: fit-content;
}

.footer_globalNav .globalNav_link a::before {
  display: block;
  content: ">";
  font-size: 1.8rem;
}

.footer_globalNav .globalNav_link a::after {
  background-color: white;
  bottom: 0;
}

.footer_copy {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 400;
  color: white;
  margin-top: 34px;
}
@media screen and (max-width: 991px) {
  .footer_copy {
    font-size: 0.9rem;
    margin-top: 1rem;
  }
}

@media screen and (max-width: 991px) {
  .footer_nav .nav_links {
    margin-top: 1.7rem;
    border-bottom: 1px solid white;
  }
}

@media screen and (max-width: 991px) {
  .footer_nav .nav_btn {
    height: 3rem;
  }
}

/*===================================

上へ戻る

===================================*/
.totop {
  position: fixed;
  cursor: pointer;
  width: 40px;
  height: 40px;
  bottom: 30px;
  right: 20px;
  right: calc(50% - min(47vw,525px));
  z-index: 9;
}
@media screen and (max-width: 991px) {
  .totop {
    width: 2.3rem;
    height: 2.3rem;
    bottom: 7rem;
    right: 1rem;
  }
}/*# sourceMappingURL=default.css.map */