@charset "UTF-8";
/* CSS Document */

/*---------- SPが最初　----------*/

/*---------- トップ始まり　----------*/
.main {
  background-color: #f6f8f9;
}

.section-top__img-area {
  height: 100vh;
  background-image: url("../imgs/top_img/top_image.jpg");
  background-position: center;
  background-size: auto 120%;
  background-repeat: no-repeat;
}

.section-top__img-area-filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.30);
}

.section-top__img-massage-container {
  color: #fff;
  font-weight: 600;
  width: 100%;
}

.section-top__massage {
  padding-bottom: 20px;
  border-bottom: #fff solid 2px;
  width: 90%;
  font-size: 3.2rem;
  margin: 0 auto 30px;
  
}

/*---------- /トップ終わり　----------
-----------------------------------*/

/*---------- ニュース始まり　----------*/
.section-news {
  background-color: #fff;
  padding: 25px 24px;
  text-align: left;
}

.section-news__title {
  display: none;
}

.section-news__links {
  list-style-type: none;
  margin-bottom: 8px;
}

.section-news__link {
  display: none;
  color: #72acff;
}

.section-news__link a {
  color: #72acff;
  text-decoration: none;
}

.section-news__link:first-child {
  display: block;
}

.section-news__link-category {
  color: #333;
  font-weight: 600;
}

.section-news__link-category-new {
  
}

.section-news__link-title {
  font-weight: 500;
}

.section-news__link-time {
  font-size: 1.3rem;
  font-style: italic;
}

.section-news__more-link a {
  text-decoration: none;
  color: #72acff;
}


/*---------- /ニュース終わり　----------
-----------------------------------*/

/*---------- PCトップとニュース始まり　----------*/
@media(min-width: 960px) {
  /*トップセクションとニュースセクションを囲ってあるラッパー*/
  .top-wrapper {
    display: flex;
    max-width: 1160px;
    margin: 0 auto;
  }
  
  .section-top {
    flex: 6;
    height: 515px;
  }
  
  .section-top__massage {
    width: 60%;
  }
  
  .section-top__img-area {
    height: 100%;
  }
  
  .section-news {
    flex: 4;
    padding: 30px 40px;
  }
  
  .section-news__title {
    display: block;
    padding-bottom: 40px;
    border-bottom: solid 2px #eee;
    margin-bottom: 14px;
  }
  
  .section-news__link {
    display: block;
    margin-bottom: 20px;
  }
  
  .section-news__link-category.new::after {
    content: " NEW";
    color: #f33;
  }
}


/*---------- /PCトップとニュース終わり　----------
-----------------------------------------------------------------------*/

/*---------- サービス一覧始まり　----------*/
.section-service {
  padding: 40px 0 60px;
}

.section-service__title {
  margin-bottom: 40px;
}

.section-service__items {
  margin: 0 24px;
  list-style: none;
}

.section-service__item {
  max-width: 480px;
  margin: 0 auto;
  background-color: #fff;
  margin-bottom: 40px;
  border-radius: 6px;
  text-align: left;
}

.section-service__item-img {
  width: 100%;
  height: 154px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px 6px 0 0;
}

.section-service__item-title-link {
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  color: #333;
}

.section-service__item-title {
  display: inline-block;
  font-size: 1.6rem;
}

.section-service__item-title-external {
  font-size: 1.3rem;
}

.section-service__item-lead {
  padding: 0 20px 20px 20px;
}

.section-service__video {
  margin-top: 12px;
  width: 100%;
}

/*---------- /サービス一覧終わり----------
-----------------------------------*/

/*---------- PCサービス一覧始まり　----------*/
@media(min-width: 960px) {
  .section-service {
    padding: 60px 0 92px;
  }
  
  .section-service__content-wrapper {
    max-width: 1160px;
    margin: 0 auto;
  }
  
  .section-service__items {
    display: flex;
    margin: 0 auto 67px auto;
    justify-content: space-between;
  }
  
  .section-service__item {
    margin: 0;
  }
  
  .section-service__item:first-child {
    margin-right: 40px;
  }
  
  .section-service__item:last-child {
    margin-left: 40px;
  }
  
  .section-service__video {
    border-radius: 6px;
  }
}

/*---------- /PCサービス一覧終わり----------
-----------------------------------------------------------------------------------*/




















