.top-image {
  background-image: url("../images/top-image.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.top-image:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.top-image p {
  color: #ffffff;
  font-weight: bold;
  line-height: 1.5;
  position: absolute;
  z-index: 10;
}
.top-image p span {
  display: block;
}

@media (min-width: 769px) {
  .top-image {
    height: 400px;
    background-position: center -150px;
    overflow: hidden;
  }
  .top-image p {
    font-size: 20px;
    bottom: 30px;
    left: 20%;
  }
  .top-image p span {
    font-size: 40px;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 768px) {
  .top-image {
    aspect-ratio: 3/2;
  }
  .top-image p {
    bottom: 30px;
    left: 30px;
  }
  .top-image p span {
    font-size: 28px;
    margin: 0 0 10px 0;
  }
}
.our-service {
  padding: 60px 30px;
  position: relative;
}
.our-service p {
  line-height: 1.5;
  font-weight: bold;
}

@media (min-width: 769px) {
  .our-service {
    width: 800px;
    margin: 0 auto;
  }
  .our-service p {
    line-height: 2;
  }
}
.system {
  background: #ffffff;
  padding: 60px 15px;
}
.system .price {
  font-weight: bold;
  text-align: center;
}
.system .price span {
  color: #ec6ca8;
}
.system p {
  color: #777777;
  font-size: 10px;
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 769px) {
  .system .price {
    font-size: 20px;
  }
  .system .price span {
    font-size: 36px;
    margin: 0 0 0 30px;
  }
  .system p {
    margin: 30px auto 0;
  }
}
@media (max-width: 768px) {
  .system .price {
    font-size: 16px;
  }
  .system .price span {
    font-size: 28px;
    margin: 0 0 0 20px;
  }
  .system p {
    margin: 30px 0 0 0;
  }
}
.shop-list {
  padding: 60px 0;
}
.shop-list ul li {
  margin: 0 0 20px 0;
}
.shop-list ul li a {
  display: block;
  background: #ffffff;
  -webkit-box-shadow: 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 15px;
  color: #555555;
}
.shop-list ul li a img {
  margin: 0 0 20px 0;
}
.shop-list ul li a h3 {
  text-align: center;
}
.shop-list ul li a h3 span {
  display: inline-block;
  border-radius: 3px;
  color: #ffffff;
  font-size: 10px;
  vertical-align: middle;
  padding: 4px;
  margin: 0 0 0 5px;
}
.shop-list ul li a h3 span.girlsbar {
  background: #ec6ca8;
}
.shop-list ul li a h3 span.lounge {
  background: #0677f6;
}
.shop-list p {
  color: #777777;
  line-height: 1.5;
}

@media (min-width: 769px) {
  .shop-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 800px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
  .shop-list ul li {
    width: 50%;
    padding: 0 10px;
  }
  .shop-list p {
    width: 780px;
    font-size: 12px;
    margin: 20px auto 0;
  }
}
@media (max-width: 768px) {
  .shop-list ul {
    padding: 0 10px;
  }
  .shop-list p {
    font-size: 10px;
    padding: 0 15px;
    margin: 20px 0 0 0;
  }
}
.faq {
  background: #ffffff;
  padding: 60px 20px;
}
.faq ul li {
  line-height: 1.5;
  margin: 0 0 30px 0;
}
.faq ul li .question {
  font-weight: bold;
  margin: 0 0 5px 0;
}
.faq ul li .question span {
  color: #f78c79;
  margin: 0 5px 0 0;
}
.faq ul li .answer {
  background: #efefef;
  padding: 15px;
}

@media (min-width: 769px) {
  .faq ul {
    width: 800px;
    margin: 0 auto;
  }
}
.contact {
  background-image: url("../images/bg_contact.webp");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 50px 0;
  position: relative;
}
.contact:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.contact > h2 {
  color: #ffffff;
  position: relative;
  z-index: 10;
}
.contact p {
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 1px;
  position: relative;
  z-index: 10;
}
.contact p a {
  display: inline-block;
  background-image: url("../images/icon_phone.png");
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: 0 6px;
  color: #ffffff;
  font-size: 30px;
  font-weight: bold;
  padding: 0 0 0 40px;
  margin: 0 0 10px 0;
}
.contact p span {
  display: block;
  font-weight: bold;
}
.contact p i {
  font-size: 10px;
}

@media (min-width: 769px) {
  .fixed-contact {
    display: none;
  }
}
@media (max-width: 768px) {
  .fixed-contact {
    width: 100%;
    height: 60px;
    background: #10d562;
    color: #ffffff;
    position: fixed;
    bottom: 0;
    left: 0;
  }
  .fixed-contact p {
    font-size: 12px;
    vertical-align: middle;
  }
  .fixed-contact p span {
    font-weight: bold;
    margin: -6px 0 0 0;
    position: absolute;
    left: 20px;
    top: 50%;
  }
  .fixed-contact p a {
    background-image: url("../images/icon_phone.png");
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: 15px 10px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px 10px 40px;
    margin: -20px 0 0 0;
    position: absolute;
    top: 50%;
    right: 20px;
  }
}
.item {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0s linear 0.6s, -webkit-transform 1.6s ease;
  transition: opacity 0.6s ease, visibility 0s linear 0.6s, -webkit-transform 1.6s ease;
  transition: opacity 0.6s ease, transform 1.6s ease, visibility 0s linear 0.6s;
  transition: opacity 0.6s ease, transform 1.6s ease, visibility 0s linear 0.6s, -webkit-transform 1.6s ease;
}

.item.is-visible {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  visibility: visible;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}