@charset "UTF-8";
/* CSS Document */
.main {
  overflow: hidden;
}
.section-top {
  position: relative;
  margin: 0 auto 120px auto;
}
.section-top__image {
  height: 350px;
  background-image: url("../images/price/price_img_01.jpg");
  background-position: right 20% bottom 0%;
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 15%;
  margin-right: -15%;
  border-radius: 0 0 0 50px;
  position: relative;
  z-index: 5;
}
.section-top__image-shadow {
  z-index: 1;
  display: inline-block;
  height: 400px;
  width: 100%;
  top: 65px;
  left: 0px;
  background-color: #fff1d9;
  position: absolute;
  border-radius: 0 0 0 50px;
}
.section-top__image-message h2 {
  position: absolute;
  bottom: -80px;
  color: #333;
  font-size: 2.8rem;
  line-height: 2.6rem;
  font-weight: 500;
  left: 35%;
  transform: translate(-50%, 0)
}
.section-top__image-message span {
  color: #ffa000;
  font-size: 1.8rem;
  font-weight: 400;
}
@media(min-width:960px) {
  .section-top {
    max-width: 1160px;
    margin: 0 auto 0px auto;
  }
  .section-top__image {
    height: 552px;
    background-position: right 20% bottom 0%;
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: 30%;
    margin-right: 0%;
    z-index: 5;
  }
  .section-top__image-shadow {
    z-index: 1;
    display: inline-block;
    height: 552px;
    width: 100%;
    top: 65px;
    left: 0px;
    background-color: #fff1d9;
    position: absolute;
    border-radius: 0 0 0 50px;
  }
  .section-top__image-message h2 {
    bottom: 200px;
    left: -300px;
    font-size: 3.6rem;
    line-height: 2.6rem;
    text-align: left;
    transform: translate(0%, 0);
  }
  .section-top__image-message span {
    font-size: 2.4rem;
  }
}
.section-top__lead {
  margin-bottom: 65px;
}
.section-top__lead h2 {
  display: block;
  color: #333;
  font-size: 1.8rem;
  line-height: 3.2rem;
  font-weight: 400;
  text-align: left;
  padding-top: 50px;
  margin: 0px 24px 50px 24px;
}
@media(min-width:960px) {
  .section-top__lead {
    margin-bottom: 15px;
  }
  .section-top__lead h2 {
    max-width: 850px;
    display: inline-block;
    color: #333;
    font-size: 1.8rem;
    line-height: 3.2rem;
    font-weight: 400;
    text-align: center;
    padding: 112px 0px 0px 0px;
    margin: 0px 0px 50px 0px;
  }
}
.section-price {
  background-color: #fff1d9;
  padding-top: 60px;
  padding-bottom: 50px;
}
.section-price h2 {
  color: #ffa000;
  font-size: 2.0rem;
  font-weight: 500;
  margin-bottom: 30px;
}
.section-price__subtitle-2 {
  margin-top: 105px;
}
.section-price h3 {
  color: #ee869a;
  font-size: 2.0rem;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.section-price__text-left {
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 3.2rem;
  margin-top: 15px;
  margin-left: 56px;
  text-align: left;
}
.section-price__text-center {
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 3.2rem;
  margin-top: 15px;
  text-align: center;
}
.section-price__text-size {
  font-size: 2.0rem;
}
.section-price__text-color {
  color: #ee869a;
  font-size: 1.6rem;
}
.section-price hr {
  border-top: 5px dotted #ffa000;
  border-right: none;
  border-bottom: none;
  border-left: none;
  width: 235px;
  margin: 0 auto;
}
.section-price ul li {
  height: 172px;
  width: 300px;
  background-color: #fff;
  margin: 0 auto 40px;
  border-radius: 30px;
  box-shadow: 10px 10px #ffcf80;
  list-style: none;
  padding-top: 20px;
}
@media(min-width:960px) {
  .section-price ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: space-between;
  }
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.5s
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}