a{
  color: #000;
}

.cta, .price, .gallery, .point, .about {
  padding: 100px 20%;
}
@media (max-width: 1280px) {
  .cta, .price, .gallery, .point, .about {
    padding: 80px 10%;
  }
}
@media (max-width: 768px) {
  .cta, .price, .gallery, .point, .about {
    padding: 80px 5%;
  }
}

html,
body {
  font-family: "Noto Sans JP", sans-serif;
}

.fd-in {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
}

.fd-done {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

section {
  overflow: hidden;
  transition: 0.8s;
}

.section__title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}
.section__title--discription {
  font-size: 16px;
  text-align: center;
  margin-bottom: 50px;
}

.hero {
  padding: 50px 10%;
  background-image: linear-gradient(-45deg, #96c3ff 0%, #55537c 100%);
  color: #fff;
}
.hero h1 {
  font-size: 30px;
  text-align: center;
  line-height: 1;
  font-weight: 900;
}
.hero p {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero p {
    line-height: 1.5;
  }
}
.hero a {
  display: inline-block;
  background: #fff;
  padding: 15px 40px 15px 20px;
  margin: 40px 0 0;
  font-size: 18px;
  font-weight: 900;
  color: #FF6B95;
  text-decoration: none;
  transition: 0.5s;
  border: 2px solid #fff;
  position: relative;
}
@media (max-width: 768px) {
  .hero a {
    display: block;
  }
}
.hero a::after {
  position: absolute;
  content: "";
  right: 20px;
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  border-top: 2px solid #FF6B95;
  border-right: 2px solid #FF6B95;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hero a:hover {
  background: #FF6B95;
  color: #fff;
}
.hero a:hover::after {
  border-color: #fff;
}

.about__container {
  display: flex;
  flex-wrap: wrap;
}
.about__image {
  width: 50%;
}
@media (max-width: 768px) {
  .about__image {
    width: 100%;
  }
}
.about__image img {
  width: 100%;
  height: auto;
}
.about__text {
  width: 100%;
}
@media (max-width: 768px) {
  .about__text {
    width: 100%;
  }
}
.about__text p {
  line-height: 2;
  margin-left: 50px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .about__text p {
    margin: 20px 0 0;
  }
}

.point {
  background: #f7f7f7;
}
.point__list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.point__item {
  text-align: center;
  width: calc(33.3333333333% - 14px);
}
.point__item:not(:first-child) {
  margin-left: 21px;
}
@media (max-width: 768px) {
  .point__item {
    width: 100%;
  }
  .point__item:not(:first-child) {
    margin: 30px 0 0;
  }
}
.point__item i {
  font-size: 44px;
  font-weight: 900;
  width: 50px;
  border-bottom: 4px solid #000;
  display: inline-block;
  text-align: center;
  padding: 0 0 8px;
  margin: 0 0 20px;
}
.point__item p {
  text-align: left;
  font-size: 18px;
}

.gallery__list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}
.gallery__item {
  width: calc(50% - 10px);
}
.gallery__item:not(:nth-child(-n+2)) {
  margin-top: 20px;
}
.gallery__item:nth-child(2n) {
  margin-left: 20px;
}
.gallery__item img {
  width: 100%;
  height: auto;
}
.gallery__item a {
  transition: 0.5s;
}
.gallery__item a:hover {
  opacity: 0.7;
}
.gallery__item a:hover img {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.price {
  background: #f7f7f7;
}
.price__list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.price__item {
  background: #fff;
  text-align: center;
  box-shadow: 0 px 10px rgba(0, 0, 0, 0.15);
  padding: 50px 30px;
  width: calc(50% - 15px);
}
.price__item:nth-child(2n) {
  margin-left: 30px;
}
@media (max-width: 768px) {
  .price__item {
    width: 100%;
  }
  .price__item:not(:first-child) {
    margin: 30px 0;
  }
}
.price__item h3 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 15px;
}
.price__item .yen {
  font-size: 64px;
  font-weight: 100;
  line-height: 1;
}
.price__item .yen span {
  font-size: 30px;
}
.price__item .cando {
  margin: 0;
}
.price__item .cando ol {
  list-style-type: none;
}
.price__item .cando li {
  background: #f7f7f7;
  padding: 10px;
  font-size: 18px;
  border-radius: 6px;
}
.price__item .cando li:not(:first-child) {
  margin: 15px 0 0;
}
.price__item .cando a {
  text-decoration: none;
}

.cta__btn {
  text-align: center;
}
.cta__btn a {
  display: inline-block;
  background: #FF6B95;
  padding: 15px 40px 15px 20px;
  margin: 0px 0 0;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  transition: 0.5s;
  border: 2px solid #fff;
  position: relative;
}
@media (max-width: 768px) {
  .cta__btn a {
    display: block;
  }
}
.cta__btn a::after {
  position: absolute;
  content: "";
  right: 20px;
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cta__btn a:hover {
  border-color: #FF6B95;
  background: #fff;
  color: #FF6B95;
}
.cta__btn a:hover::after {
  border-color: #FF6B95;
}

footer {
  padding: 15px 0;
  background: #444;
  text-align: center;
  color: #fff;
}
footer small {
  font-size: 14px;
  line-height: 1;
}

dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}

dt {
  flex-basis: 15%;
  padding: 5px;
  border-bottom: 2px dotted #545454;
  margin-right: 1rem;
  font-weight: bold;
  vertical-align: middle;
  align-items: center;
  display: flex;
}

dd {
  flex-basis: 83%;
  padding: 20px;
  background-color: #fff;
  border-bottom: 1px dotted #545454;
}

.company__container {
  margin-bottom: 80px;
}

iframe {
  margin-top: 20px;
}/*# sourceMappingURL=style.css.map */


@media (max-width: 768px) {
 dl,dt,dd {
 width: 100%;
 flex-basis: 100%;
  }

dd{
  border-bottom: none;
}
}