@charset "UTF-8";
/*#########################################################

基本設定

#########################################################*/
/* ========================================================
単位用設定
=========================================================*/
/* ========================================================
色用設定
=========================================================*/
/* ========================================================
フォント用設定
=========================================================*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&display=swap");
/*#########################################################

レイアウト用設定

#########################################################*/
/* ========================================================
mixin mq用の変数設定
=========================================================*/
/*
▼iOSデバイス
iPhone5: 320 × 568
iPhone 6-8: 375 × 667（1334x750）
iPhone 6-8 plus: 414 × 736（1920x1080）
iPhone X,XS,11Pro: 375 × 812（1125x2436）.sellingpoint .sellingpoint-container .sellingpoint-list .inr .txt-box
iPhone XR,11: 414 × 896（828x1792）

iPad/iPad Mini: 768 × 1024
iPad Pro: 1024 × 1366
https://www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions

▼ブートストラップ
xs： ～767px
sm： 768～991px
md： 992～1119px
lg： 1120px～
*/
/* ========================================================
メディアクエリ用Mixin
=========================================================*/
/*
ステップ1.モバイルファーストかデスクトップファーストかを選ぶ
ステップ2.該当する設定を有効化、その他をコメントアウトする。
ステップ3.選択したタイプにより、「▼モバイルファーストの例」、「▼デスクトップファーストの例」のどちらかを参考にブレイクポイントを設定する。
→実際の設定は_base.scssではなく、インポート元で行う。
*/
/*
// ステップ2：モバイルファースト用（デスクトップファーストの場合はコメントアウト）
$breakpoints: (
	// タブレット
	'md': 'screen and (min-width: ' + ($screen-sm-max + 1) + ') and (max-width: ' + ($screen-md-max) + ')',
	// デスクトップ
	'lg': 'screen and (min-width: ' + ($screen-sm-max + 1) + ')',
) !default;
*/
/*
// ステップ3：▼モバイルファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// モバイルファーストでは小さい画面サイズから順々に指定。
main{
	// デフォルト
	background: yellow;
	// タブレット
	@include mq(md){
		background: orange;
	}
	// デスクトップ
	@include mq(lg){
		background: red;
	}
}
//------------------------------
*/
/*
// ステップ3：▼デスクトップファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// デスクトップファーストでは大きい画面サイズから順々に指定。
main{
	// デフォルト
	background: red;
	// タブレット
	@include mq(md){
		background: orange;
	}
	// スマートフォン
	@include mq(sm){
		background: yellow;
	}
}
//------------------------------
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap");

/* ========================================================
選ばれる理由
=========================================================*/

/* @media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container {
    padding: 0;
  }
} */
.sellingpoint .sellingpoint-container h3.tit {
  margin-bottom: 16px;
  line-height: 0.8;
  font-size: 25px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container h3.tit {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.8;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 14px;
  }
}

.sellingpoint .sellingpoint-container .lead {
  margin-bottom: 48px;
}

@media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container .lead {
    margin-bottom: 35px;
    line-height: 1.8;
  }
}

.sellingpoint .sellingpoint-container .sellingpoint-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px 15px;
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container .sellingpoint-list{
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-bottom: 20px;
  }
}

.sellingpoint .sellingpoint-container .sellingpoint-list li {
  background: #fff;
    border: 0.2rem solid #eaeaea;
}

@media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container .sellingpoint-list li {
    margin-bottom: 15px;
  }
}
.sellingpoint .sellingpoint-container .sellingpoint-list li .text-box{
padding: 25px;
}

.sellingpoint .sellingpoint-container .sellingpoint-list li img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.sellingpoint .sellingpoint-container .sellingpoint-list li h4 {
  font-size: 19px;
}
@media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container .sellingpoint-list li h4 {
    font-size: 16px;
  }
}
.sellingpoint .sellingpoint-container .sellingpoint-list li .text-box p{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /* -webkit-line-clamp: 5; */
  overflow: hidden;
  margin-top: 10px;
}

@media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container .sellingpoint-list li:nth-of-type(2n) .inr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }
}

.sellingpoint .sellingpoint-container .sellingpoint-list li:nth-of-type(2n) .inr:after {
  left: 0;
  right: 0;
}

.sellingpoint .sellingpoint-container .sellingpoint-list li:nth-of-type(2n) .inr .txt-box {
  padding-right: 33px;
}

@media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container .sellingpoint-list li:nth-of-type(2n) .inr .txt-box {
    padding: 25px 0 50px 25px;
  }
}

.sellingpoint .sellingpoint-container .sellingpoint-list li:nth-of-type(2n) .inr .txt-box h3.tit::before {
  left: -10px;
}

@media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container .sellingpoint-list li:nth-of-type(2n) .inr .txt-box h3.tit::before {
    left: 20px;
    top: -50px;
  }
}

@media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container .sellingpoint-list li:nth-of-type(2n) .img-box {
    text-align: right;
  }
}

@media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container .sellingpoint-list li:nth-of-type(3) .txt-box h3.tit::before {
    top: -50px;
    left: 84%;
    white-space: nowrap;
  }
}

.sellingpoint .sellingpoint-container .sellingpoint-list li:last-of-type {
  margin-bottom: -20px;
}

.sellingpoint .sellingpoint-container .sellingpoint-list .inr {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sellingpoint .sellingpoint-container .sellingpoint-list .inr:after {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 25px;
  right: 0;
  z-index: -1;
  display: block;
  width: 61%;
  background: #f1f5f9;
}

@media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container .sellingpoint-list .inr:after {
    top: 190px;
    width: 92%;
  }
}

.sellingpoint .sellingpoint-container .sellingpoint-list .inr .img-box {
  width: 394px;
}

@media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container .sellingpoint-list .inr .img-box {
    width: 100%;
  }
}

.sellingpoint .sellingpoint-container .sellingpoint-list .inr .img-box img {
  width: 100%;
}

@media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container .sellingpoint-list .inr .img-box img {
    width: 86%;
    height: auto;
  }
}

.sellingpoint .sellingpoint-container .sellingpoint-list .inr .txt-box {
  position: relative;
  padding: 96px 0 75px 36px;
  width: 447px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

@media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container .sellingpoint-list .inr .txt-box {
    padding: 20px 0 50px 57px;
    width: 77%;
  }
}

.sellingpoint .sellingpoint-container .sellingpoint-list .inr .txt-box h4.tit {
  margin-bottom: 28px;
  font-size: 2.2rem;
  line-height: 1.4;
}

@media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container .sellingpoint-list .inr .txt-box h4.tit {
    margin-bottom: 19px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}

.sellingpoint .sellingpoint-container .sellingpoint-list .inr .txt-box h4.tit::before {
  position: absolute;
  top: -20px;
  left: 20px;
  display: block;
  color: #fff100;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12rem;
  font-weight: 400;
  line-height: 1;
  content: attr(data-counter);
}

@media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container .sellingpoint-list .inr .txt-box h4.tit::before {
    top: -40px;
    left: 78%;
    font-size: 8rem;
  }
}

.sellingpoint .sellingpoint-container .sellingpoint-list .inr .txt-box p {
  margin-bottom: 16px;
}

@media screen and (max-width: 599px) {
  .sellingpoint .sellingpoint-container .sellingpoint-list .inr .txt-box p {
    line-height: 1.8;
  }
}

.sellingpoint .sellingpoint-container .sellingpoint-list .inr .txt-box p:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 599px) {
  .sellingpoint .bnr-box {
    padding: 0 5.333vw;
  }
}