@charset "utf-8";
/* aboutページ共通css */
.about, .ceo, .member {
  padding: 0 5%;
  margin-bottom: 50px;
}

.about__common-title {
  text-align: center;
  margin-bottom: 30px;
}

.ceo, .comment {
  background: #f5f6f7;
  padding-top: 60px;
  padding-bottom: 70px;
}

.member, .comment {
  text-align: center;
}

/* ここからセクション毎のcss */

/* トップ */
.about__top {
  background-image: url(../images/pic-about-top-sp.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.about {
  text-align: center;
}

.about__message_sub {
  font-size: 20px;
  margin-bottom: 15px;
}

.about__message_main {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* 代表挨拶 */
.ceo {
  position: relative;
}

.img-ceo-pc {
  display: none;
}

.img-ceo-sp {
  display: block;
  width: 250px;
  height: 310px;
  object-fit: cover;
  position: absolute;
  top: 13%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 20px 15px 0px 0 #09017e;
}

.ceo__article {
  margin-top: 400px;
}

.ceo-name {
  font-weight: bold;
  text-align: right;
  padding-top: 30px;
}

/* メンバー */
.img-member-pc {
  display: none;
}

.img-member-sp {
  display: block;
  width: 300px;
  height: 200px;
  margin: 0 auto;
}

.member__list {
  margin-bottom: 40px;
}

.message {
  text-align: left;
}

.member__list_box {
  margin-bottom: 10px;
}

.message {
  line-height: 1.5rem;
  width: 300px;
  margin: 0 auto;
}

/* 社員からのコメント */
.comment__title {
  margin-bottom: 20px;
}

.img-employee {
  width: 330px;
  height: 230px;
  margin-bottom: 30px;
}

.comment__btn {
  position: relative;
  display: block;
  width: 250px;
	margin: 0 auto;
	text-align: center;
	font-weight: 300;
	font-size: 15px;
  border: 1px solid #999;
  background-color: #fff;
  color: #333;
  padding: 5px 40px;
  margin-top: 20px;
}

.comment__btn img {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 25%;
  right: 5%;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.img-link-w {
  display: none;
}

@media screen and (min-width:600px) {
  .ceo {
    padding-left: 15%;
    padding-right: 15%;
  }

  .img-ceo-sp {
    top: 15%;
  }

  .message {
    width: auto;
    text-align: center;
  }
}

@media screen and (min-width:1200px) {
  /* aboutページ共通css */
  .about__container {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
  }



  .about, .ceo, .member {
    padding-left: 0;
    padding-right: 0;
  }

  .ceo, .member, .comment {
    padding-top: 80px;
  }

  .about__common-title {
    margin-bottom: 60px;
  }

  .about__flex {
    display: flex;
    justify-content: space-between;
  }
  .about__flex_ceo {
    display: flex;
    justify-content: end;
  }
  .about__flex_comment {
    display: flex;
    justify-content: space-between;
  }

  .rev {
    flex-direction: row-reverse;
  }

/* ここからセクション毎のcss */

/* トップ */
  .about__top {
    background-image: url(../images/pic-about-top.webp);
    background-size: cover;
    background-repeat: no-repeat;
  }

  .about {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 80px;
  }

  .about__message_sub {
    margin-bottom: 30px;
  }

/* 代表挨拶 */
  .ceo {
    padding-left: 5%;
    padding-right: 5%;
  }

  .ceo__title {
    text-align: left;
  }

  .img-ceo-sp {
    display: none;
  }

  .img-ceo-pc {
    display: block;
    width: 300px;
    height: 400px;
    box-shadow: 20px 15px 0px 0 #09017e;
    opacity: 0;
    margin-bottom: 0;
    position: absolute;
    bottom: 180px;
    top: 80px;
  }

  .ceo__article {
    margin-top: 0;
  }

  .ceo-name {
    padding-top: 50px;
  }

/* メンバー */
  .member {
    padding-bottom: 70px;
  }

  .member__list {
    overflow: hidden;
    width: 380px;
    margin-bottom: 0;
  }

  .img-member-sp {
    display: none;
  }

  .img-member-pc {
    display: block;
    width: 380px;
    height: 255px;
  }

  .member__list_box {
    overflow: hidden;
    height: 255px;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .img-member-pc:hover {
    transform: scale(1.1, 1.1);
    transition: 0.5s;
  }

  .message {
    width: 380px;
    text-align: left;
  }

  .message p:hover {
    color: #09017e;
  }

/* 社員からのコメント */
  .comment {
    position: relative;
    margin-bottom: 100px;
  }

  .comment__box {
    width: 1000px;
    margin: 0 auto;
  }

  .comment__approach:before, .comment__approach::after {
    content: '';
    width: 50px;
    height: 2px;
    position: absolute;
    top: 20%;
    display: inline-block;
    background-color: #666;
  }

  .comment__approach:before {
    left: 30%;
  }

  .comment__approach:after {
    right: 30%;
  }

  .comment__title {
    font-size: 20px;
    white-space: nowrap;
  }

  .comment__article {
    line-height: 2rem;
  }

  .img-employee {
    margin-bottom: 0;
  }

  .comment__btn {
    width: 400px;
    color: #333;
    padding: 15px;
  }

  .comment__btn:hover {
    color: #e5e5e5;
    border: 1px solid #999;
    background: #333;
    transition:  0.6s;
  }
  .comment__btn:hover img:nth-of-type(2){
    opacity: 0;
  }
}