/* 説明文を折り返したく無い箇所を画像にしています。
　 その際の画像の大きさのスタイルです。
   .explain-image1 = section1（siimでできること）のベン図
   .explain-image3 = section3（機能特色）の説明文
*/
.explain-image1 {
  width: 80%;
}
@media all and (max-width: 480px) {
  .explain-image1 {
    width: 86%;
  }
  .explain-image3 {
    width: 80%;
  }
}
@media all and (min-width: 481px) and (max-width: 767px) {
  .explain-image1 {
    width: 86%;
  }
  .explain-image3 {
    width: 70%;
  }
}
@media all and (min-width: 768px) and (max-width: 1199px) {
  .explain-image3 {
    width: 55%;
  }
}
@media all and (min-width: 1200px) {
  .explain-image3 {
    width: 50%;
  }
}

/* ------------------------------
色付きセクション */

.add_customizer_wrapper > .background {
  width: 100%;
  background-color: #e2f9fe;
  margin-top: -12px;
  position: relative;
}

/* ------------------------------
セクションタイトル */

.add_customizer_wrapper .content .title,
.add_customizer_wrapper .contaner .title {
  width: 100%;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 767px) {
  .add_customizer_wrapper .content .title,
  .add_customizer_wrapper .contaner .title {
    margin-bottom: 2em;
  }
}
.add_customizer_wrapper .content .title > .section_title {
  font-size: 32px;
  font-weight: 400;
  align-items: baseline;
  display: inline-block;
  position: relative;
}

/* 棒 */
.add_customizer_wrapper .content .title > .section_title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1.6em;
  background-color: #2196f3;
  margin-right: 16px;
  vertical-align: text-bottom;
}

/* 英語タイトル */
.add_customizer_wrapper .content .title > .section_title .first {
  color: #2196f3;
  font-size: 56px;
}
.add_customizer_wrapper .content .title > .section_title .rest {
  margin-left: -6px;
}
/* 日本語タイトル */
.add_customizer_wrapper .content .title > .section_title .subtitle {
  position: absolute;
  top: 8px;
  right: 0;
  font-size: 1.4rem;
}
.add_customizer_wrapper .content .title > .section_title .rest,
.add_customizer_wrapper .content .title > .section_title .subtitle {
  color: #000;
}

/* ------------------------------
セクションヘッダー */

.add_customizer_wrapper .header {
  width: 100%;
  text-align: center;
}

/* ------------------------------
セクション境界線（SVG） */

.svg-wave-bottom {
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .svg-wave {
    margin-top: -3em;
  }

  .u-pc {
    display: block;
  }

  .u-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .svg-wave {
    margin-top: -2em;
  }

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }
}

/* ------------------------------
背景風：境界線（SVG） */

.svg-wave.sections-borders-background {
  width: 100vw;
  z-index: -1;
  position: fixed;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.sections-borders-background .u-pc,
.sections-borders-background .u-sp {
  margin: 0;
  padding: 0;
}
.sections-borders-background .u-pc.bottom,
.sections-borders-background .u-sp.bottom {
  margin-top: -10px;
}

/* チェックアイコン */
.add_customizer_wrapper .content .sm-check-icon > .fa-check {
  color: #337db9;
  margin-right: 8px;
}
