main {
  overflow: hidden;
}

.fade {
  opacity: 0;
}
.fade.is-active {
  -webkit-animation-name: animeFade;
          animation-name: animeFade;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
          animation-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes animeFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes animeFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.rtol, .ltor {
  opacity: 0;
}
.rtol.is-active, .ltor.is-active {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.13, 0.18, 0.21, 1.27);
          animation-timing-function: cubic-bezier(0.13, 0.18, 0.21, 1.27);
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.rtol.is-active {
  -webkit-animation-name: animeRtoL;
          animation-name: animeRtoL;
}

.ltor.is-active {
  -webkit-animation-name: animeLtoR;
          animation-name: animeLtoR;
}

@-webkit-keyframes animeRtoL {
  from {
    opacity: 0;
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes animeRtoL {
  from {
    opacity: 0;
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes animeLtoR {
  from {
    opacity: 0;
    left: -200px;
  }
  to {
    opacity: 1;
    left: 0;
  }
}
@keyframes animeLtoR {
  from {
    opacity: 0;
    left: -200px;
  }
  to {
    opacity: 1;
    left: 0;
  }
}
.sec__heading {
  margin: 0 auto 8.205vw;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .sec__heading {
    margin: 0 auto 64px;
  }
}
.sec__heading h2 {
  display: inline-block;
  color: #EA4645;
  font-size: min(40px, 6.154vw);
  border: 2px solid #EA4645;
  background: #fff;
  position: relative;
  text-align: center;
  position: relative;
  overflow: hidden;
  line-height: 1.2;
  width: 90%;
}
@media only screen and (min-width: 768px) {
  .sec__heading h2 {
    line-height: 1;
    font-size: 40px;
    height: 75px;
    min-width: 480px;
    width: auto;
  }
}
.sec__heading h2::before, .sec__heading h2::after {
  position: absolute;
  content: "";
  display: inline-block;
  height: 100%;
  width: 27px;
  top: 0;
}
.sec__heading h2::before {
  background: url(/assets/images/heading_line_l.svg) no-repeat right center;
  background-size: cover;
  left: 0;
}
.sec__heading h2::after {
  background: url(/assets/images/heading_line_r.svg) no-repeat left center;
  background-size: cover;
  right: 0;
}
.sec__heading h2 span {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.65em;
}
@media only screen and (min-width: 768px) {
  .sec__heading h2 span {
    padding: 0 2em;
  }
}
.sec__heading h2 span::after {
  position: absolute;
  border: 1px solid #EA4645;
  content: "";
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  padding: 0 48px;
}

@media only screen and (min-width: 768px) {
  .header-nav {
    opacity: 0;
  }
  .header.is-change .header-nav {
    opacity: 1;
  }
}
@media only screen and (min-width: 768px) {
  .fv {
    background-color: #FFFDEA;
  }
}
.fv .visual {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .fv .visual img {
    position: relative;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media only screen and (min-width: 768px) {
  .fv .visual .mv img {
    width: 100%;
    max-width: none;
    top: 0;
    left: 50%;
  }
}

.contents .lead {
  background-color: #FFFDEA;
  position: relative;
  padding: 0 0 120px;
  z-index: 0;
}
@media only screen and (min-width: 768px) {
  .contents .lead {
    padding: 0 0 170px;
  }
}
.contents .lead__txt {
  text-align: center;
  font-size: min(22px, 4.103vw);
  line-height: 1.7;
  color: #EA4645;
  font-weight: 700;
  padding: 1.5em 0;
  border-top: 3px solid #EA4645;
  border-bottom: 3px solid #EA4645;
  max-width: 560px;
  width: 100%;
  margin: auto;
  position: relative;
}
.contents .lead__txt::before, .contents .lead__txt::after {
  width: 100%;
  content: "";
  display: block;
  height: 1px;
  background: #EA4645;
  position: absolute;
  left: 0;
}
.contents .lead__txt::before {
  top: 4px;
}
.contents .lead__txt::after {
  bottom: 4px;
}
.contents .lead .about {
  position: relative;
  background-color: #FBE7E6;
}
.contents .lead .about__container {
  padding: 114px 23px;
}
@media only screen and (min-width: 768px) {
  .contents .lead .about__container {
    padding: 150px 23px;
  }
}
.contents .lead .about__box {
  background-color: #fff;
  border-radius: 400px;
  padding: 100px 0;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 3;
}
.contents .lead .about__deco {
  position: absolute;
  width: 123px;
  bottom: 40px;
  left: 40px;
}
@media only screen and (min-width: 768px) {
  .contents .lead .about__deco {
    width: 153px;
    bottom: calc(150px - (1440px - 100vw) * 0.2);
    left: 15%;
  }
}
.contents .lead .about__deco__box {
  padding: 57px 0;
}
.contents .lead .about__ttl {
  width: min(327px, 63.692vw);
  position: relative;
  margin: 0 auto min(12.821vw, 30px);
}
.contents .lead .about__ttl img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .contents .lead .about__txt {
    margin-bottom: 0;
  }
}
.contents .lead .about__txt p {
  font-size: min(20px, 4.359vw);
  line-height: 2;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .contents .lead .about__txt p {
    line-height: 2.2;
  }
}
.contents .lead .about__txt p + p {
  margin-top: 1em;
}
.contents .lead .bunner {
  background: -webkit-gradient(linear, left top, left bottom, from(#FBE7E6), color-stop(30%, #FFFDEA), to(#FFFDEA));
  background: linear-gradient(to bottom, #FBE7E6 0%, #FFFDEA 30%, #FFFDEA 100%);
  position: relative;
}
.contents .lead .bunner__container {
  padding-top: 50px;
}
.contents .lead .bunner__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
  position: relative;
}
.contents .lead .bunner__img2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 22%;
  min-width: 178px;
  margin: 0 auto;
  z-index: 3;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .contents .lead .bunner__img2 {
    width: 100%;
  }
}
.contents .lead .bunner__txt {
  text-align: center;
  font-size: 16px;
  margin-top: 100px;
  z-index: 3;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .contents .lead .bunner__txt {
    font-size: 24px;
    margin-top: 120px;
  }
}
.contents .lead .bunner__txt p {
  margin-bottom: 20px;
}
.contents .lead .bunner__deco1 {
  position: absolute;
  width: 49px;
  top: 40px;
  left: 5%;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .contents .lead .bunner__deco1 {
    width: 379px;
    left: 10%;
  }
}
.contents .lead .bunner__deco2 {
  position: absolute;
  width: 46px;
  top: 60px;
  right: 5%;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .contents .lead .bunner__deco2 {
    width: 73px;
    right: 15%;
  }
}
.contents .lead .deco-img01_sp {
  width: 100vw;
  top: 40px;
  position: absolute;
  z-index: 1;
}
.contents .lead .deco-img02_sp {
  width: 100vw;
  top: 700px;
  position: absolute;
  z-index: 1;
}
.contents .lead .deco-img01_pc {
  width: 36vw;
  top: 40px;
  margin-left: -9.72vw;
  position: absolute;
  z-index: 1;
}
.contents .lead .deco-img02_pc {
  width: 51vw;
  top: calc(160px + (1440px - 100vw) * 0.5);
  right: 0%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  margin-left: 34.72vw;
  position: absolute;
  z-index: 1;
}
.contents .lead .deco-img03_sp {
  /* width: 100vh;*/
  top: 1100px;
  position: absolute;
  z-index: 1;
}
.contents .lead .deco-img03_pc {
  width: 40vw;
  top: 900px;
  margin-left: -70px;
  position: absolute;
  z-index: 1;
}
.contents .lead .deco-img04_pc {
  width: 23vw;
  top: 1100px;
  top: calc(1100px + (1440px - 100vw) * 0.3);
  right: 0%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  margin-left: 76.39vw;
  position: absolute;
  z-index: 1;
}/*# sourceMappingURL=top.css.map */