/********************************************/
/* header */
/********************************************/
.header .inner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  padding: 1.5rem 2rem;
  margin: auto;
  background-color: #FFFFFF;
  width: 100%;
  max-width: 45rem;
  z-index: 999;
}
.header .inner .flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
.header .inner .flex .logo {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.header .inner .flex .logo a {
  display: block;
  width: 11rem;
}
.header .inner .flex .logo a img {
  display: block;
  width: 100%;
}
.header .inner .flex .logo .txt {
  display: block;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.header .inner .flex .nav_btn {
  position: relative;
  display: block;
  width: 2.5rem;
  height: 1.5rem;
  cursor: pointer;
}
.header .inner .flex .nav_btn span {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  background-color: #271920;
  width: 100%;
  height: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}
.header .inner .flex .nav_btn span:nth-child(1) {
  top: 0;
}
.header .inner .flex .nav_btn span:nth-child(2) {
  top: 0;
  bottom: 0;
}
.header .inner .flex .nav_btn span:nth-child(3) {
  bottom: 0;
}
.header .inner .flex .nav_btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 0.7rem;
}
.header .inner .flex .nav_btn.active span:nth-child(2) {
  opacity: 0;
}
.header .inner .flex .nav_btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 0.7rem;
}

.header .header_nav {
  position: fixed;
  top: 6.6rem;
  left: 0;
  right: 0;
  display: block;
  padding: 0 3rem;
  margin: auto;
  width: 100%;
  max-width: 45rem;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
.header .header_nav.active {
  opacity: 1;
  visibility: visible;
}
.header .header_nav .scroll {
  padding: 3rem 0 8rem;
  height: 100dvh;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.header .header_nav .scroll::-webkit-scrollbar {
  display: none;
}
.header .header_nav .list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-size: 1.6rem;
}
.header .header_nav .list .item {
  font-size: 1em;
}
.header .header_nav .list .item a {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .header_nav .list .item a:before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  display: block;
  width: 0.8rem;
  aspect-ratio: 1;
  background-color: #B63B6C;
  border-radius: 50%;
  z-index: 1;
}
.header .header_nav .list .item a:hover {
  color: #B63B6C;
}

/********************************************/
/* PC fixed */
/********************************************/
.fixed_cta_wrapper {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 99;
}
@media (max-width: 1024px) {
  .fixed_cta_wrapper {
    display: none;
  }
}
.fixed_cta_wrapper .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  padding: 6rem 7rem;
  margin: auto;
  background-color: #FFFFFF;
  width: 100%;
  max-width: 46rem;
  height: fit-content;
  border-radius: 5rem;
  box-shadow: 0px 0px 3rem rgba(86, 29, 52, 0.05);
  text-align: center;
  z-index: 1;
}
.fixed_cta_wrapper .inner .logo {
  width: 26rem;
  margin: 0 auto 3rem;
}
.fixed_cta_wrapper .inner .logo a {
  display: block;
}
.fixed_cta_wrapper .inner .logo a img {
  display: block;
  width: 100%;
}
.fixed_cta_wrapper .inner .txt_box {
  margin-bottom: 3rem;
}
.fixed_cta_wrapper .inner .txt_box .fukidashi {
  position: relative;
  display: inline-block;
  padding: 0.8rem 2.5rem;
  margin-bottom: 1rem;
  background-color: #FBF5F7;
  border-radius: 5rem;
  color: #B63B6C;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}
.fixed_cta_wrapper .inner .txt_box .fukidashi:after {
  content: "";
  position: absolute;
  top: 99%;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  background-color: #FBF5F7;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 1.8rem;
  height: 1.3rem;
  z-index: 1;
}
.fixed_cta_wrapper .inner .txt_box .main_txt {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.fixed_cta_wrapper .inner .txt_box .sub_txt {
  display: block;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.fixed_cta_wrapper .inner .btn {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fixed_nav_wrapper {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 99;
}
@media (max-width: 1024px) {
  .fixed_nav_wrapper {
    display: none;
  }
}
.fixed_nav_wrapper .nav_box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 11rem;
  display: block;
  margin: auto;
  width: fit-content;
  height: fit-content;
  z-index: 1;
}
.fixed_nav_wrapper .nav_box .list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  font-size: 1.8rem;
}
.fixed_nav_wrapper .nav_box .list .item {
  font-size: 1em;
}
.fixed_nav_wrapper .nav_box .list .item a {
  position: relative;
  display: inline-block;
  padding-left: 1.8rem;
  font-size: 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.fixed_nav_wrapper .nav_box .list .item a:before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  display: block;
  width: 0.8rem;
  aspect-ratio: 1;
  background-color: #B63B6C;
  border-radius: 50%;
  z-index: 1;
}
.fixed_nav_wrapper .nav_box .list .item a:hover {
  color: #B63B6C;
}

/********************************************/
/* Tablet SP fixed */
/********************************************/
.cta_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background-color: #FFFFFF;
  padding: 1rem 2rem;
  width: 100%;
  box-shadow: 0px -0.2rem 2rem rgba(86, 29, 52, 0.1);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transform: translateY(10rem);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cta_bottom.active {
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .cta_bottom {
    opacity: 1;
    visibility: visible;
  }
}
.cta_bottom .txt {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.cta_bottom .btn {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 1rem;
  max-width: 50rem;
  margin: auto;
}
.cta_bottom .btn a {
  padding: 0.8rem 1rem;
  font-size: 1.6rem;
}
.cta_bottom .btn a:after {
  right: 1rem;
  width: 0.9rem;
  height: 0.9rem;
}

/********************************************/
/* footer */
/********************************************/
.footer {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  padding: 1rem 2rem;
  margin: auto;
  width: 100%;
  max-width: 45rem;
  text-align: center;
  z-index: 2;
}
@media (max-width: 1024px) {
  .footer {
    padding-bottom: 11rem;
  }
}
.footer .company {
  display: block;
  margin-bottom: 1.5rem;
  color: #A9A3A6;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.footer .copyright {
  display: block;
  color: #A9A3A6;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}/*# sourceMappingURL=navigation.css.map */