@charset "UTF-8";
@media screen and (max-width: 767px) {
  .only-lg {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}
body {
  color: #000;
}

.top_logo {
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top_logo {
    left: 10px;
  }
}

.fv {
  position: relative;
  text-align: center;
  background: #dce6ec;
  padding-top: 160px;
}
@media screen and (max-width: 767px) {
  .fv {
    padding-top: 130px;
  }
}
.fv::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/fv-bg.png) no-repeat;
  background-size: cover;
  background-position: center top;
  top: -4%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .fv::before {
    height: 30%;
    top: 8%;
  }
}
.fv::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10%;
  background: #fff;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .fv::after {
    height: 64%;
  }
}
.fv__wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
}
.fv__ttl {
  width: 95%;
  margin: 0 auto;
  max-width: 1000px;
}
.fv__img {
  width: 90%;
  margin: 0 auto;
  max-width: 720px;
  margin-top: 40px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .fv__img {
    margin-top: 20px;
    padding-bottom: 60px;
  }
}

.con {
  background: #dce6ec;
}
.con__line {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.con__line span {
  display: block;
  height: 10px;
}
.con__line span.blue {
  background: #006cb8;
}
.con__line span.pink {
  background: #c70079;
}
.con__line span.yellow {
  background: #caa846;
}
.con__wrap {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .con__wrap {
    padding: 40px 0;
  }
}
.con__ttl {
  text-align: center;
  width: 95%;
  max-width: 840px;
  margin: 0 auto;
}
.con__question {
  position: relative;
  padding: 16px;
  background: #fff;
  border-radius: 50px;
  text-align: center;
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .con__question {
    margin: 20px 0 30px;
  }
}
.con__question::before {
  content: "";
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  background: #fff;
  transform: rotate(45deg);
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -0.5em;
}
.con__question p {
  font-weight: 800;
  font-size: 1.8em;
}
@media screen and (max-width: 767px) {
  .con__question p {
    font-size: 1.3em;
  }
}
.con__img {
  text-align: center;
}
.con__notice p {
  font-size: 0.9em;
  padding-left: 2em;
  text-indent: -2em;
  margin-bottom: 4px;
}
.con__notice p a {
  color: #000;
  border-bottom: 1px solid #000;
}
.con__notice--right {
  text-align: right;
}
.con__txt {
  margin: 20px 0;
  background: #fff;
  border-radius: 14px;
  padding: 1em;
}
.con__txt p {
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .con__txt p {
    font-size: 1em;
  }
}
.con__txt p span.pink {
  color: #c70079;
}

.price {
  width: 95%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .price {
    padding: 40px 0;
  }
}
.price__img {
  margin: 0 auto;
}
.price__notice {
  font-size: 0.9em;
  margin-top: 10px;
}
.price__txt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 20px;
}
@media screen and (max-width: 767px) {
  .price__txt {
    display: block;
  }
}
.price__txt-lineup {
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .price__txt-lineup {
    margin: 0;
    width: 55%;
    margin: 0 auto;
    margin-bottom: 8px;
  }
}
.price__tenpo {
  padding: 0.5em;
  border: 1px solid #000;
}
.price__tenpo p {
  font-size: 1.1em;
}
.price__tenpo p span.bold {
  font-weight: 700;
}

/*アニメーション*/
.anime-l {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateX(-40px);
}

.anime-b {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(30px);
}

.anime-o {
  opacity: 0;
  visibility: hidden;
  transition: 2.5s;
}

.anime-o2 {
  opacity: 0;
  visibility: hidden;
  transition: 3.5s;
  transition-delay: 0.4s;
}

.anime-o3 {
  opacity: 0;
  visibility: hidden;
  transition: 3.5s;
  transition-delay: 1.6s;
}

.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}