@charset "UTF-8";
/*--------------------------------------------------------------
.title_area(カテゴリーページ共通パーツです)
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
  .title_area {
    margin: 0;
    padding: 0;
    height: 150px;
    width: 100%;
    background: url("img/top.jpg") no-repeat; /*ページごとに変更する*/
    background-position: center;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .title_area h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
  }

  .section_title {
    color: #4e4e4e;
    font-size: 18px;
    font-weight: 600;
    padding-left: 13px;
    position: relative;
    line-height: 1;
    margin: 0 0 0 20px;
  }

  .section_title::before {
    background-color: #4a64aa;
    bottom: 0px;
    content: "";
    height: 18px;
    left: 0;
    position: absolute;
    width: 3px;
  }
	
	p {
		font-size: 14px;
	}
}

/* Small than tablet */
@media (min-width: 768px) {
}

/* Larger than tablet */
@media (min-width: 992px) {
  .title_area {
    height: 200px;
    background: url("img/top.jpg") no-repeat;
    background-position: center;
    background-size: cover;
  }

  .title_area h2 {
    font-size: 25px;
  }

  .section_title {
    padding-left: 15px;
  }

  .section_title::before {
    bottom: -1px;
    height: 20px;
    width: 5px;
  }
	
	p {
		font-size: 15px;
	}
}

/*↑↑ここまで共通↑↑*/

/*--------------------------------------------------------------
↓↓ここからコンテンツ↓↓
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
  .content {
    background: #f8f8f8;
    margin: 0;
    padding: 15px 0 23px;
  }

  .content-wrap {
    margin: 0;
    padding: 0;
  }

  /* reset css start */
  body {
    margin: 0;
    background-color: #f8f8f8;
  }
  /* reset css end */

  /* common css start */
  .container {
    max-width: 95vw;
    margin: 0 auto;
  }

  .sm-br {
    display: inline;
  }

  .lg-br {
    display: none;
  }
  /* common css end */

  /* strengths start */
  .first-strengths {
    background-color: #ffffff;
    padding-top: 15px;
    margin-top: 30px;
  }

  .second-strengths {
    background-color: #ffffff;
    padding: 30px 0;
    margin-top: 30px;
  }

  .third-strengths {
    background-color: #ffffff;
    padding: 30px 0 20px 0;
    margin-top: 30px;
  }
	
	.third-strengths .img-area {
		width: 100%;
		padding: 0 30px;
		margin: 30px 0 0;
	}

  .fourth-strengths {
    background-color: #ffffff;
    padding: 30px 0 20px 0;
    margin-top: 30px;
  }

  .fifth-strengths {
    display: none;
  }

  .fifth-strengths-sp {
    display: block;
    background-color: #ffffff;
    padding: 30px 0 20px 0;
    margin: 30px 0 50px 0;
  }

  .strengths-badge {
    width: 120px;
    height: 25px;
    background-color: #4a64aa;
    border-radius: 30px;
    margin: 0 auto;
  }

  .strengths-badge__text {
    color: white;
    font-size: 15px;
    margin: 0;
    padding-top: 2px;
    text-align: center;
  }

  .strengths-intro {
    text-align: center;
    margin-top: 10px;
  }

  .strengths-intro__text {
    font-size: 17px;
    color: #4e4e4e;
    font-weight: 600;
  }

  .strengths-intro__emphasis {
    font-size: 21px;
    line-height: 10px;
    color: #4a64aa;
    font-weight: 600;
  }

  .photo-tile {
    width: 100%;
    margin-top: 15px;
  }
	
	.photo-tile img {
		 width: 100%;
	}

  .strengths-detail {
    width: 80vw;
    margin: 0 auto;
    padding: 15px 0;
  }

  .strengths-detail__text {
    font-size: 15px;
    color: #4e4e4e;
    margin: 0;
  }

  .strengths-half-content {
    padding-bottom: 0;
  }

  .strengths-half-content-left {
	  padding: 0 50px;
    margin: 20px auto;
  }

  .strengths-half-content-right {
    width: 90%;
    margin: 0 auto;
  }

  .strengths-half-content-right__text {
    font-size: 15px;
  }

  .third-strengths-images-sp .third-strengths-images-first-line {
    display: flex;
    justify-content: center;
	  align-items: flex-start;
  }

  .third-strengths-images-sp .third-strengths-images-second-line {
    display: flex;
    justify-content: center;
    margin-top: 20px;
	  align-items: flex-start;
  }

  .third-strengths-images-sp .third-strengths-images-third-line {
    margin-top: 20px;
  }

  .third-strengths-images-sp .third-strengths-images-area {
    width: 45%;
    margin: 0 5px;
  }

  .third-strengths-images-sp .third-strengths-images__img {
    width: 100%;
    margin: 0;
  }

  .third-strengths-images-sp .third-strengths-images__caption {
    text-align: center;
    margin: 0;
    font-size: 12px;
  }

  .third-strengths-images {
    display: none;
  }

  .third-strengths-images-sp {
    display: block;
  }
  /* strengths end */
}

/* Small than tablet */
@media (min-width: 768px) {
}

/* Larger than tablet */
@media (min-width: 992px) {
  /* reset css start */
  body {
    margin: 0;
    background-color: #f8f8f8;
  }
  /* reset css end */

  /* common css start */
  .container {
    max-width: 900px;
    margin: 0 auto;
  }

  .sm-br {
    display: none;
  }

  .lg-br {
    display: inline;
  }
  /* common css end */

  /* strengths start */
  .first-strengths {
    background-color: #ffffff;
    padding-top: 30px;
    margin-top: 30px;
  }

  .second-strengths {
    background-color: #ffffff;
    padding: 30px 60px;
    margin-top: 30px;
  }

  .third-strengths {
    background-color: #ffffff;
    padding: 30px 0 50px 0;
    margin-top: 30px;
  }

  .fourth-strengths {
    background-color: #ffffff;
    padding: 30px 60px 70px;
    margin-top: 30px;
  }

  .fifth-strengths {
    display: block;
    background-color: #ffffff;
    padding: 30px 60px 70px;
    margin: 30px 0 50px 0;
  }

  .fifth-strengths-sp {
    display: none;
  }

  .strengths-badge {
    width: 160px;
    height: 35px;
    background-color: #4a64aa;
    border-radius: 30px;
    margin: 0 auto;
  }

  .strengths-badge__text {
    color: white;
    font-size: 20px;
    margin: 0;
    padding-top: 3px;
    text-align: center;
  }

  .strengths-intro {
    text-align: center;
    margin-top: 30px;
  }

  .strengths-intro__text {
    font-size: 24px;
    color: #4e4e4e;
    font-weight: 600;
  }

  .strengths-intro__emphasis {
    font-size: 26px;
    line-height: 10px;
    color: #4a64aa;
    font-weight: 600;
  }

  .photo-tile {
    width: 100%;
    margin-top: 40px;
  }

  .strengths-detail {
    width: 700px;
    margin: 0 auto;
    padding: 30px 0 50px;
  }

  .strengths-detail__text {
    color: #4e4e4e;
    margin: 0;
  }

  .strengths-half-content {
    margin-top: 40px;
    padding-bottom: 60px;
  }

  .strengths-half-content-left {
    width: 375px;
    margin: 0px 30px 0 0;
	  padding: 0;
	  float: left;
  }

  .strengths-half-content-right {
    width: 375px;
	  margin: 0;
	  float: left;
  }
	
	.third-strengths .img-area {
		width: 700px;
		margin: 30px auto 0;
	}

  .third-strengths-detail {
    width: 60vw;
    margin: 0 auto;
    padding: 15px 0 30px 0;
  }

  .third-strengths-detail__text {
    font-size: 16px;
    color: #4e4e4e;
    margin: 0;
  }

  .third-strengths-images-first-line {
    display: flex;
    justify-content: center;
	  align-items: flex-start;
  }

  .third-strengths-images-second-line {
    display: flex;
    justify-content: center;
    margin-top: 20px;
	  align-items: flex-start;
  }

  .third-strengths-images-area {
    width: 30%;
    margin: 0 5px;
  }

  .third-strengths-images__img {
    width: 100%;
    margin: 0;
  }

  .third-strengths-images__caption {
    text-align: center;
    margin: 0;
  }

  .third-strengths-images-sp {
    display: none;
  }

  .third-strengths-images {
    display: block;
  }
  /* strengths end */
}

/*--------------------------------------------------------------
@media
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
}

/* Small than tablet */
@media (min-width: 768px) {
}

/* Larger than tablet */
@media (min-width: 992px) {
}
