@charset "utf-8";
/* CSS Document */
/*-------------------
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", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 7rem;
  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%;
  }
}
/*-------------------
part 1
---------------------*/
.section-profile__factors {
  padding-bottom: 30px;
}
.section-profile__factors img {
  width: 150px;
  height: 150px;
  border-radius: 150px;
}
.section-profile__factors h2 {
  font-size: 2.0rem;
  line-height: 3.0rem;
  padding-bottom: 30px;
}
.section-profile__factors ul {
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.section-profile__factors ul li {
  width: 30%;
  height: 100px;
  box-shadow: 5px 5px 5px #DBDBDB;
  list-style: none;
}
.section-profile__factors ul li p {
  font-size: 1.8rem;
  line-height: 2.7rem;
  padding-top: 23px;
}
@media screen and (max-width: 960px) {
  .section-profile__factors ul {
    display: block;
  }
  .section-profile__factors ul li {
    margin: 0 auto 20px;
    width: 100%;
    max-width: 400px;
  }
}
/*-------------------
part 2
---------------------*/
.section-hello {
  margin: 30px auto 50px;
  width: 100%;
  max-width: 960px;
  box-sizing: border-box;
  padding: 30px;
  background-color: #FFF1FB;
  text-align: left;
}
.section-hello p {
  padding-bottom: 15px;
}
.section-hello__signature {
  width: 100%;
  text-align: right;
}
.section-hello img {
  width: 25%;
  min-width: 130px;
}
/*-------------------
part 3
---------------------*/
.section-profile {
  width: 100%;
  height: 350px;
  margin-bottom: 80px;
  background-color: #F3F3F3;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.section-profile img {
  height: 100%;
}
.section-profile__text {
  text-align: left;
  font-size: 1.4rem;
  line-height: 2.1rem;
  padding-left: 30px;
}
.section-profile__text h3 {
  padding-bottom: 20px;
}
.section-profile__text p {
  padding-bottom: 10px;
}
.section-profile__text p:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 960px) {
  .section-profile {
    display: block;
    height: auto;
  }
  .section-profile img {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 0 24px 20px;
    box-sizing: border-box;
  }
  .section-profile__text {
    padding: 0 24px;
    display: inline-block;
    margin: 0 auto;
  }
}