@charset "utf-8";
/* CSS Document */
.wrapper {
  margin-bottom: 120px;
}
/*-------------------
top title
---------------------*/
.top-title {
  margin-top: 170px;
  width: 100%;
  height: 120px;
  position: relative;
}
.top-title__background {
  width: 40%;
  height: 100%;
  background-image: url("../images/common/rose.png");
  text-align: center;
}
.top-title__background h2 {
  color: #D9009F;
  font-family: "Great Vibes";
  font-size: 7rem;
  font-weight: 500;
  padding-top: 55px;
}
.top-title__line {
  width: 65%;
  height: 55px;
  position: absolute;
  border-bottom: solid 1px #333;
  top: 0px;
  right: 0;
}
.top-title__ja {
  display: block;
  font-size: 2.4rem;
  padding: 50px 0 60px;
}
@media screen and (max-width: 1140px) {
  .top-title {
    margin-top: 80px;
  }
  .top-title__line {
    display: none;
  }
  .top-title__background {
    width: 100%;
  }
}
/*-------------------
main
---------------------*/
.section-menu__text {
  font-size: 1.8rem;
  line-height: 2.7rem;
  text-align: left;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 50px;
  padding: 0 24px;
  box-sizing: border-box;
}
.section-menu {
  margin-bottom: 100px;
}
.section-menu__wrapper {
  max-width: 1150px;
  display: flex;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 24px;
}
.section-menu ul li {
  width: 350px;
  text-align: left;
  list-style: none;
  margin-right: 40px;
}
.section-menu ul li:last-child {
  margin-right: 0;
}
.section-menu ul li img {
  width: 100%;
  margin-bottom: 30px
}
.section-menu ul li h4 {
  font-size: 2.4rem;
  padding-bottom: 10px;
  border-bottom: solid 1px #333;
}
.section-menu ul li p {
  font-size: 2.0rem;
  line-height: 3.0rem;
  padding-top: 30px;
}
.section-menu__detail {
  display: block;
  text-align: right;
  font-size: 1.8rem;
  padding-top: 20px;
}
@media screen and (max-width: 1000px) {
  .section-menu__wrapper {
    display: block;
  }
  .section-menu ul li, .section-menu ul li:last-child {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 50px;
  }
  .section-menu ul li img {
    height: 270px;
    object-fit: cover;
    object-position: center;
  }
}
/*-------------------
contact button
---------------------*/
#btn-contact {
  width: 90%;
  max-width: 1100px;
  height: 180px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 80px;
  border: 1px solid #333;
}
.btn-contact__link {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.btn-contact__link:hover { /* マウスオーバー時に色変更*/
  background-color: rgba(217, 0, 159, 0.1)
}
.btn-contact__link h2 {
  position: absolute;
  top: 80px;
  left: 50px;
  font-size: 3.2rem;
  color: #D9D9D9;
  display: block;
}
.btn-contact__link p {
  font-size: 2.0rem;
  color: #333;
  position: absolute;
  top: 77px;
  left: 250px;
}
.btn-contact__link img {
  width: 20%;
  position: absolute;
  top: 85px;
  right: 50px;
}
@media screen and (max-width: 740px) {
  #btn-contact {
    height: 130px;
  }
  .btn-contact__link img {
    display: none;
  }
  .btn-contact__link h2 {
    left: 0;
    right: 0;
    top: 40px;
    margin: auto;
  }
  .btn-contact__link p {
    left: 0;
    right: 0;
    top: 75px;
    margin: auto;
  }
}