html {
  font-family: Roboto, "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #333;
  line-height: normal !important;
  scroll-behavior: smooth;
}
@media screen and (max-width: 1000px) and (min-width: 768px) {
  html {
    font-size: 1vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

.text-link {
  color: #0099ff;
  text-decoration: underline;
  transition: 0.2s;
}
.text-link:hover {
  opacity: 0.7;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.sp-view {
  display: block;

  @media screen and (min-width: 768px) {
    display: none;
  }
}

.pc-view {
  display: none;

  @media screen and (min-width: 768px) {
    display: block;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 0 1.6rem 0 1rem;
  width: 100%;
  max-width: 1344px;
  min-height: 6.7rem;
  margin: 0 auto;
}
.header__logo {
  width: 20rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 15rem;
  }
}
.header__logo img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.header__tel {
  display: flex;
  align-items: center;
}
.header__group {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.cta{
  position: relative;
  width: 100%;

  @media screen and (min-width: 768px) {
    max-width: 476px;
    margin: 0 auto;
  }

  & .cta_btn {
    display: block;
    transition: 0.2s;

    & :hover {
      transform: translateY(-5px);
      transition: 0.2s;
    }

    & img{
      margin: 0 auto;
      display: block;
    }
  }

  & .cta_text {
    color: #333;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -1rem;
    padding: 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: underline;
    text-align: center;

    @media screen and (min-width: 1300px) {
      font-size: 1.8rem;
    }
  }

  & .cta_text--white {
    color: #fff;
  }
}


.main {
  position: relative;
  height: 100%;
  margin-top: 6.7rem;
  padding-bottom: 10rem;
  background-color: #E6F5FF;
}

.mv{
  position: relative;
  & .cta_wrap {
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 2.5rem;

    @media screen and (min-width: 768px) {
      left: 16%;
      right: initial;
      bottom: 16%;
    }
  }

  & .cta{

    & .cta_btn img {
      @media screen and (min-width: 768px) {
        width: 30vw;
      }

      @media screen and (min-width: 1300px) {
        width: 100%;
      }
    }

    & .cta_text {

      @media screen and (min-width: 768px) {
        color: #EAF7FF;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
      }
    }
  }

}

.section.lp{
  margin-top: -1rem;
  position: relative;

  & .cta_wrap{
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 4.5rem;

    @media screen and (min-width: 768px) {
      bottom: -2vw;
    }
  }

  & .cta_btn img {
    @media screen and (min-width: 768px) {
      width: 50vw;
    }

    @media screen and (min-width: 1300px) {
      width: 100%;
    }
  }

  & .cta_text{
    @media screen and (min-width: 768px) {
      font-size: 1.8rem;
    }
  }
}

.section.lp-2{
  & .cta_wrap{
    @media screen and (min-width: 768px) {
      bottom: 4vw;
    }
  }
}

.footer__inner {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 6rem 0 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8rem;
  width: 100%;
  margin: -10rem auto 0;
  padding: 9rem 0;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
}
.footer__links--ne {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.footer__links--ne a img {
  vertical-align: top;
}
.footer__links--ne-policy {
  color: #09f;
  font-size: 1.1rem;
  text-align: center;
  text-decoration: underline;
}
.footer__links .copyright {
  font-size: 1.1rem;
}
