@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:700&display=swap&subset=japanese');

/**********************************************
** Site Name: 不正対策.com
** Site URI: https://www.fuseitaisaku.com/
** Description: 不正対策LP
** Author: a-yamamoto
** Last Update: 2019/09/03
** Updater: a-yamamoto
**********************************************/

/*-------------------------------------------*/
/*  CONTENTS:
/*--------------------------------------------
1.0 - 汎用スタイル
    1.1 - 見出し
    1.2 - テキストリンク
    1.3 - カラム
    1.4 - グラデーション
    1.5 - Block Reveal Effects
2.0 - スタートアニメ
3.0 - メインビジュアル
    3.1 - 背景動画
    3.2 - スクロール
4.0 - ヘッダー
5.0 - グローバルナビ
    5.1 - お問い合わせボタン
6.0 - フッター
7.0 - こんなことで悩んでいませんか？
8.0 - 導入する3つのメリット
9.0 - 他社の導入実績
10.0 - 不正対策の特徴
11.0 - お客様の声
12.0 - お問い合わせ
13.0 - 固定フッター
14.0 - 不正の手口事例

---------------------------------------------*/

/*-------------------------------------------*/
/*  1.0 - 汎用スタイル
/*-------------------------------------------*/
html { font-size: 62.5%;}
body {
  background: #fff;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
li { list-style: none;}
div, ul, li, a { box-sizing: border-box;}

/*  1.1 - 見出し
/*-------------------------------------------*/
h1 {
  font-size: 35px;
}
h1, h2, h3 { font-family: 'Noto Sans JP', sans-serif;}
.prlp h2.heading {
  text-align: center;
  font-weight: 700px;
}
.prlp .sub {
  position: relative;
  display: block;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
}
.prlp .sub::before {
  width: 60px;
  height: 4px;
  content: "";
  position: absolute;
  top: 100px;
  left: 50%;
  margin-left: -30px;
  border-radius: 15px;
  background: #139eff;
  background: -moz-linear-gradient(to right, #139eff 0%, #21d5e0 100%);
  background: -webkit-gradient(linear, left, right, color-stop(0%,#139eff), color-stop(100%,#21d5e0));
  background: -webkit-linear-gradient(right, #139eff 0%, #21d5e0 100%);
  background: linear-gradient(to right, #139eff 0%, #21d5e0 100%);
}

@media screen and (max-width: 767px) {
  .prlp h2.heading {
    padding: 25px 10px 30px;
    line-height: 1.4;
    font-size: 3.0rem;
  }
  .prlp .sub {
    padding: 45px 0 0;
    font-size: 2.4rem;
  }
  .prlp .sub::before { top: 90px;}
}

@media screen and (max-width: 480px) {
  .prlp h2.heading {
    font-size: 2.8rem;
  }
  .prlp .sub {
    padding: 55px 0 0;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 768px) {
  .prlp h2.heading {
    padding: 30px 10px 40px;
    font-size: 4.8rem;
  }
  .prlp .sub {
    padding: 35px 0 0;
    font-size: 3.8rem;
  }
}

@media screen and (min-width: 1100px) {
  .prlp h2.heading {
    padding: 30px 10px 60px;
    font-size: 5.8rem;
  }
}

/*  1.2 - テキストリンク
/*-------------------------------------------*/
a { color: #333;}
a:hover { text-decoration: none;}

/*  1.3 - カラム
/*-------------------------------------------*/
main {
  position: relative;
  z-index: 100;
  background: #fff;
}

/*  1.4 - グラデーション
/*-------------------------------------------*/
.grade {
  background: -moz-linear-gradient(to right,  #139eff 0%, #21d5e0 100%);
  background: -webkit-gradient(linear, left, right, color-stop(0%,#139eff), color-stop(100%,#21d5e0));
  background: -webkit-linear-gradient(right,  #139eff 0%, #21d5e0 100%);
  background: linear-gradient(to right,  #139eff 0%, #21d5e0 100%);
}

/*  1.5 - Block Reveal Effects
/*-------------------------------------------*/
.block-revealer__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
  opacity: 0;
}

/*  1.6 - カラム
/*-------------------------------------------*/

.inner {
	width: 100%;
	max-width: 1140px;
	box-sizing: border-box;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .inner {
		padding-right: 20px;
		padding-left: 20px;
	}
}

@media screen and (min-width: 768px) {
  .inner {
		padding-right: 20px;
		padding-left: 20px;
	}
}

/*  1.7 - 改行
/*-------------------------------------------*/

@media screen and (max-width: 767px) {
  .br_pc { display: none;}
  .br_sp { display: block;}
}

@media screen and (min-width: 768px) {
  .br_pc { display: block;}
  .br_sp { display: none;}
}

/*-------------------------------------------*/
/*  3.0 - メインビジュアル
/*-------------------------------------------*/
.mainvisual {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 0;
  background-color: #303030;
  color: #fff;
}
.mainvisual .detail {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 20;
  text-align: center;
  font-weight: bold;
}
.mainvisual .detail .sub {
  position: relative;
  border: 1px solid #fff;
  border-radius: 3px;
  margin: 0 auto 15px;
  padding: 10px;
}
.mainvisual .detail .sub:before {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  height: 1px;
  width: 24px;
  background-color: #32586e;
  content: "";
}
.mainvisual .detail .sub:after {
  box-sizing: border-box;
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  margin-left: -10px;
  transform: translateY(45%) rotate(45deg);
  width: 20px;
  height: 20px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
.mainvisual .detail h1 {
  margin-bottom: 20px;
}
.mainvisual .detail .txt {
  letter-spacing: 1px;
  margin-bottom: 60px;
}
.mainvisual .detail .txt_cp {
  margin-bottom: 10px;
}
.mainvisual .detail .txt span {
  color: #fff729;
}
.mainvisual .detail a.btn_entry {
  width: 400px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 35px;
  box-shadow: 0 0 10px #0d2744, 0 0 10px #0d2744;
  margin: 0 auto;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  transition: .2s linear;
}
.mainvisual .detail a.btn_entry:hover {
  opacity: 0.6;
}
.mainvisual .detail a.btn_entry::after {
  box-sizing: border-box;
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
  width: 15px;
  height: 15px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

@media screen and (max-width: 767px) {
  .mainvisual .detail {
    top: 120px;
  }
  .mainvisual .detail .sub {
    width: 80%;
    font-size: 2.0rem;
  }
  .mainvisual .detail h1 { font-size: 5.3vw;}
  .mainvisual .detail .txt {
    padding: 0 20px;
    font-size: 1.5rem;
  }
  .mainvisual .detail .txt_cp {
    line-height: 1.4;
    font-size: 5.3vw;
  }
  .mainvisual .detail a.btn_entry  { font-size: 2.0rem;}
}

@media screen and (max-width: 480px) {
  .mainvisual .detail {
    top: 80px;
  }
  .mainvisual .detail .sub {
    width: 80%;
    font-size: 4.0vw;
  }
  .mainvisual .detail h1 { font-size: 5.1vw;}
  .mainvisual .detail .txt {
    padding: 0 20px;
    font-size: 1.5rem;
  }
  .mainvisual .detail a.btn_entry  {
    width: 330px;
    font-size: 2.0rem;
  }
}

@media screen and (min-width:768px) {
  .mainvisual .detail {
    max-width: 768px;
    top: 120px;
  }
  .mainvisual .detail .sub {
    width: 600px;
    font-size: 2.4rem;
  }
  .mainvisual .detail h1 {
    line-height: 1.6;
    font-size: 3.9rem;
  }.mainvisual .detail .txt { font-size: 1.8rem;}
  .mainvisual .detail .txt_cp { font-size: 3.4rem;}
  .mainvisual .detail a.btn_entry  { font-size: 2.4rem;}

}
@media screen and (min-width:1100px) {
  .mainvisual .detail {
    max-width: 1100px;
    top: 100px;
  }
  .mainvisual .detail h1 {
    line-height: 1.8;
    font-size: 5.0rem;
  }
  .mainvisual .detail .sub {
    width: 600px;
    font-size: 2.4rem;
  }
  .mainvisual .detail .txt_cp { font-size: 4.5rem;}
}



/*  3.1 - 背景動画
/*-------------------------------------------*/
.mainvisual video {
  min-width: 100%;
  min-height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.mainvisual .bg {
  background: url(../img/bg.png);
  min-width: 100%;
  min-height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}


/*-------------------------------------------*/
/*  4.0 - ヘッダー
/*-------------------------------------------*/
header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  z-index: 20;
}
header .logo a {
  display: block;
}

@media screen and (max-width: 767px) {
  header {
    height: 80px;
    padding: 0 20px;
  }
  header .logo img  {
    height: 20px;
  }
  header .tel img  {
    height: 40px;
  }
}

@media screen and (max-width: 480px) {
  header {
    padding: 0 15px;
  }
  header .logo img  {
    height: 15px;
  }
  header .tel img  {
    height: 35px;
  }
}

@media screen and (min-width: 768px) {
  header {
    height: 90px;
    padding: 0 50px;
  }
  header .logo img  {
    height: 30px;
  }
  header .tel img  {
    height: 50px;
  }
}

/*-------------------------------------------*/
/*  6.0 - フッター
/*-------------------------------------------*/
footer {
  position: relative;
  z-index: 60;
  background: #fff;
  padding-bottom: 120px;
}
footer nav {
  padding: 35px 0;
  text-align: center;
}
footer nav li {
  display: inline-block;
  position: relative;
  margin-right: 12px;
  font-size: 12px;
}
footer nav li a {
  text-decoration: none;
  transition: .1s linear;
}
footer nav li a:hover {
  text-decoration: underline;
  color: #139eff;
}
footer nav li:last-child { margin-right: 0;}
footer nav li::before {
  width: 1px;
  height: 13px;
  content: "";
  position: absolute;
  top: 2px;
  background: #333;
  right: -8px;
}
footer nav li:last-child::before { position: static;}
footer .copyright {
  padding-bottom: 20px;
  text-align: center;
  font-size: 12px;
  color: #919191;
}

/*-------------------------------------------*/
/*  7.0 - こんなことで悩んでいませんか？
/*-------------------------------------------*/

.trouble {
  background-color: #ecf5fb;
}
.trouble h2.heading,
.trouble .sub{
  color: #1d50a2;
}
.trouble .trouble01,
.trouble .trouble02,
.trouble .trouble03,
.trouble .trouble04 {
  background-repeat: no-repeat;
}
.trouble .trouble01 {
  background-image: url(../img/img_trouble01.jpg);
}
.trouble .trouble02 {
  background-image: url(../img/img_trouble02.jpg);
}
.trouble .trouble03 {
  background-image: url(../img/img_trouble03.jpg);
}
.trouble .trouble04 {
  background-image: url(../img/img_trouble04.jpg);
}
.trouble .r_box .inner {
  box-sizing: border-box;
}
.trouble h3 {
  height: 110px;
  position: relative;
  margin-bottom: 40px;
  color: #1d50a2;
}
.trouble h3 span {
  height: 110px;
  position: relative;
  padding-left: 135px;
  vertical-align: middle;
}
.trouble h3 span::before {
  width: 1px;
  height: 50px;
  content: "";
  position: absolute;
  top: 32px;
  left: 130px;
  background: #1d50a2;
}
.trouble h3 span::after {
  height: 1px;
  content: "";
  position: absolute;
  top: 125px;
  left: -70px;
  background: #1d50a2;
}
.trouble .trouble01 h3 span::before { left: 117px;}
.trouble .trouble02 h3 span::after,
.trouble .trouble04 h3 span::after { left: 0;}
.trouble .trouble01 h3 span { background: url("../img/ico_num01_blue.png") no-repeat 0 center;}
.trouble .trouble02 h3 span { background: url(../img/ico_num02_blue.png) no-repeat 0 center; padding-left: 150px;}
.trouble .trouble03 h3 span { background: url(../img/ico_num03_blue.png) no-repeat 0 center; padding-left: 150px;}
.trouble .trouble04 h3 span { background: url(../img/ico_num04_blue.png) no-repeat 0 center; padding-left: 150px;}
.trouble .trouble02 h3,
.trouble .trouble04 h3 {
  width: 620px;
}
.trouble .trouble_detail {
  width: 100%;
  position: relative;
  font-weight: bold;
}
.trouble .trouble_detail::before,
.trouble .trouble_detail::after {
  width: 0;
  height: 0;
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 10;
  border: 30px solid transparent;
  border-right: 0 solid transparent;
  pointer-events: none;
}
.trouble .trouble_detail::before {
  top: -5px;
  left: 25px;
  border-top: 30px solid #fff;
  transform: rotate(-90deg);
}
.trouble .trouble_detail::after {
  bottom: -5px;
  right: 25px;
  border-top: 30px solid #1d50a2;
  transform: rotate(90deg);
}
.trouble .trouble_title {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #1293ed;
  font-size: 2.3rem;
  color: #fff;
}
.trouble .trouble_title::before {
    content: "";
    display: inline-block;
    position: absolute;
    z-index: 10;
    bottom: -30px;
    width: 0;
    height: 0;
    border: 35px solid transparent;
    border-bottom: 0 solid transparent;
    border-top: 30px solid #1293ed;
    pointer-events: none;
}
.trouble .trouble_title span {
  display: inline-block;
  padding-top: 8px;
}
.trouble .trouble_title img {
  height: 30px;
  margin-right: 3px;
  vertical-align: bottom;
}
.trouble .trouble_answer {
  background-color: #fffec8;
  text-align: center;
  color: #1d50a2;
}

@media screen and (max-width: 767px) {
  .trouble {
    padding-bottom: 30px;
  }
  .trouble .l_box,
  .trouble .r_box {
    width: 100%;
  }
  .trouble .trouble01,
  .trouble .trouble02,
  .trouble .trouble03,
  .trouble .trouble04 {
    background-position: top 0 center;
    background-size: 100%;
    margin-bottom: 50px;
    padding-top: 70%;
  }
  .trouble .trouble02 h3,
  .trouble .trouble04 h3 {
    width: 100%;
  }
  .trouble h3 {
    height: 80px;
    margin-bottom: 30px;
    line-height: 1.4;
    font-size: 2.0rem;
  }
  .trouble h3 span {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }
  .trouble .trouble01 h3 span,
  .trouble .trouble02 h3 span,
  .trouble .trouble03 h3 span,
  .trouble .trouble04 h3 span {
    background-size: 55px 55px;
    padding-left: 75px;
  }
  .trouble .trouble01 h3 span {
    padding-left: 75px;
  }
  .trouble .trouble01 h3 span::before,
  .trouble h3 span::before {
    top: 15px;
    left: 65px;
  }
  .trouble h3 span::after {
    width: 100%;
    top: 85px;
    left: 0;
  }
  .trouble .trouble_answer {
    padding: 40px 25px 25px;
    line-height: 1.5;
    font-size: 2.5rem
  }
}

@media screen and (max-width: 480px) {
  .trouble {
    padding-bottom: 10px;
  }
  .trouble h3 {
    font-size: 1.8rem;
  }
  .trouble .trouble_answer {
    padding: 40px 30px 30px;
    line-height: 1.5;
    font-size: 2.0rem
  }
}

@media screen and (min-width: 768px) {
  .trouble {
    padding-bottom: 30px;
  }
  .trouble .l_box,
  .trouble .r_box {
    width: 100%;
  }
  .trouble .trouble01,
  .trouble .trouble02,
  .trouble .trouble03,
  .trouble .trouble04 {
    background-position: top 0 center;
    background-size: 100%;
    margin-bottom: 50px;
    padding-top: 70%;
  }
  .trouble .trouble02 h3,
  .trouble .trouble04 h3 {
    width: 100%;
  }
  .trouble h3 {
    font-size: 3.0rem;
  }
  .trouble h3 span {
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }
  .trouble h3 span::after {
    width: 100%;
    left: 0;
  }
  .trouble .trouble_answer {
    padding: 50px 30px 30px;
    font-size: 2.6rem
  }
}

@media screen and (min-width: 960px) {
  .trouble {
    height: 2100px;
    position: relative;
    z-index: 20;
  }
  .trouble .trouble01,
  .trouble .trouble02,
  .trouble .trouble03,
  .trouble .trouble04 {
    background-size: 45%;
  }
  .trouble .trouble01 {
    background-position: 0 5px;
    padding-top: 0;
  }
  .trouble .trouble02,
  .trouble .trouble04 {
    background-position: right 0;
     padding-top: 0;
  }
  .trouble .trouble03 {
    background-position: 0 0;
    padding-top: 0;
  }
  .trouble h3 {
    line-height: 1.4;
    font-size: 2.4rem;
  }
  .trouble h3 span::before {
    left: 130px;
  }
  .trouble h3 span::after {
    width: 520px;
    left: -60px;
  }
  .trouble .l_box,
  .trouble .r_box {
    width: 960px;
    position: absolute;
  }
  .trouble .l_box {
    left: 49%;
    margin-left: -480px;
  }
  .trouble .r_box {
    right: 50%;
    margin-right: -470px;
  }
  .trouble .trouble01 {
    height: 400px;
  }
  .trouble .trouble02 {
    height: 485px;
    top: 720px;
  }
  .trouble .trouble03 {
    height: 340px;
    top: 1200px;
  }
  .trouble .trouble04 {
    height: 485px;
    top: 1650px;
  }

  .trouble .l_box .inner {
    padding-right: 470px;
  }
  .trouble .r_box .inner {
    padding-left: 470px;
  }
  .trouble .trouble_answer {
    padding: 50px 30px 30px;
    font-size: 2.4rem
  }
}

@media screen and (min-width: 1280px) {
  .trouble {
    height: 2300px;
    position: relative;
    z-index: 20;
  }
  .trouble .trouble01,
  .trouble .trouble02,
  .trouble .trouble03,
  .trouble .trouble04 {
    background-size: auto;
  }
  .trouble .trouble01 {
    background-position: 0 5px;
    padding-top: 0;
  }
  .trouble .trouble02,
  .trouble .trouble04 {
    background-position: right 0;
    padding-top: 0;
  }
  .trouble .trouble03 {
    background-position: 0 0;
    padding-top: 0;
  }
  .trouble h3 span::before {
    left: 130px;
  }
  .trouble h3 span::after {
    width: 580px;
    left: -60px;
  }
  .trouble .l_box,
  .trouble .r_box {
    width: 1220px;
    position: absolute;
  }
  .trouble .l_box {
    left: 50%;
    margin-left: -600px;
  }
  .trouble .r_box {
    right: 50%;
    margin-right: -600px;
  }
  .trouble .trouble01 {
    height: 500px;
  }
  .trouble .trouble02 {
    height: 500px;
    top: 780px;
  }
  .trouble .trouble03 {
    height: 500px;
    top: 1280px;
  }
  .trouble .trouble04 {
    height: 500px;
    top: 1780px;
  }
  .trouble .l_box .inner {
    padding-right: 600px;
  }
  .trouble .r_box .inner {
    padding-left: 600px;
  }
  .trouble .trouble_answer {
    padding: 50px 25px 40px;
    font-size: 2.7rem
  }
}




/*-------------------------------------------*/
/*  8.0 - 導入する3つのメリット
/*-------------------------------------------*/
.prlp .merit {
  background: url(../img/bg_merit.gif) repeat center 0;
}
.prlp .merit .merit01,
.prlp .merit .merit02,
.prlp .merit .merit03 {
  background-repeat: no-repeat;
}
.prlp .merit .merit01 {
  background-image: url(../img/img_merit01.png);
}
.prlp .merit .merit02 {
  background-image: url(../img/img_merit02.png);
}
.prlp .merit .merit03 {
  background-image: url(../img/img_merit03.png);
}
.prlp .merit .r_box .inner {
  box-sizing: border-box;
}
.prlp .merit h3 {
  height: 110px;
  position: relative;
  margin-bottom: 30px;
  color: #139eff;
}
.prlp .merit h3 span {
  height: 110px;
  position: relative;
  padding-left: 135px;
  vertical-align: middle;
}
.prlp .merit h3 span::before {
  width: 1px;
  height: 50px;
  content: "";
  position: absolute;
  top: 32px;
  left: 130px;
  background: #139eff;
}
.prlp .merit h3 span::after {
  height: 1px;
  content: "";
  position: absolute;
  top: 125px;
  left: -70px;
  background: #333;
}
.prlp .merit .merit01 h3 span::before { left: 117px;}
.prlp .merit .merit02 h3 span::after { left: 0;}
.prlp .merit .merit01 h3 span { background: url(../img/ico_num01.png) no-repeat 0 center;}
.prlp .merit .merit02 h3 span { background: url(../img/ico_num02.png) no-repeat 0 center; padding-left: 150px;}
.prlp .merit .merit03 h3 span { background: url(../img/ico_num03.png) no-repeat 0 center; padding-left: 150px;}
.prlp .merit .merit02 h3,
.prlp .merit .merit02 ul {
  width: 620px;
}
.prlp .merit .inner ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 5px;
  margin: 50px 0 20px;
}
.prlp .merit .inner ul li {
  font-weight: bold;
  font-size: 1.6rem;
}
.prlp .merit .inner ul li:nth-child(1) { padding-top: 4px;}
.prlp .merit .inner ul li:nth-child(n+2) {
  padding: 6px 12px 5px;
  border-radius: 3px;
  background: #139eff;
  font-size: 14px;
  color: #fff;
}
.prlp .merit .inner .txt {
  line-height: 2.0em;
  letter-spacing: 1px;
}
.prlp .machine_learning {
  width: 100%;
  height: 130px;
  position: relative;
  z-index: 40;
  top: -65px;
  text-align: center;
}
.prlp .machine_learning object { box-sizing: border-box;}

@media screen and (max-width: 767px) {
  .prlp .merit {
    padding-bottom: 80px;
  }
  .prlp .merit .l_box,
  .prlp .merit .r_box {
    width: 100%;
  }
  .prlp .merit .merit01,
  .prlp .merit .merit02,
  .prlp .merit .merit03 {
    background-position: top 0 center;
    background-size: 100%;
  }
  .prlp .merit .merit01 {
    margin-bottom: 30px;
    padding-top: 78%;
  }
  .prlp .merit .merit02 {
    margin-bottom: 30px;
    padding-top: 85%;
  }
  .prlp .merit .merit03 {
    margin-bottom: 30px;
    padding-top: 58%;
  }
  .prlp .merit .merit02 h3,
  .prlp .merit .merit02 ul {
    width: 100%;
  }
  .prlp .merit h3 {
    height: 80px;
    margin-bottom: 10px;
    font-size: 2.2rem;
  }
  .prlp .merit h3 span {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }
  .prlp .merit .merit01 h3 span,
  .prlp .merit .merit02 h3 span,
  .prlp .merit .merit03 h3 span {
    background-size: 55px 55px;
    padding-left: 75px;
  }
  .prlp .merit .merit01 h3 span {
    padding-left: 75px;
  }
  .prlp .merit .merit01 h3 span::before,
  .prlp .merit h3 span::before {
    top: 15px;
    left: 65px;
  }
  .prlp .merit h3 span::after {
    width: 100%;
    top: 85px;
    left: 0;
  }
  .prlp .merit .inner ul {
    margin: 30px 0 20px;
  }
  .prlp .merit .inner ul li { font-size: 1.4rem;}
  .prlp .merit .inner .txt {
    width: 100%;
    font-size: 1.8rem;
  }
  .prlp .machine_learning object {
    width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 480px) {
  .prlp .merit .inner .txt {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 768px) {
  .prlp .merit {
    padding-bottom: 120px;
  }
  .prlp .merit .l_box,
  .prlp .merit .r_box {
    width: 100%;
  }
  .prlp .merit .merit01,
  .prlp .merit .merit02,
  .prlp .merit .merit03 {
    background-position: top 0 center;
    background-size: 100%;
  }
  .prlp .merit .merit01 {
    margin-bottom: 30px;
    padding-top: 78%;
  }
  .prlp .merit .merit02 {
    margin-bottom: 30px;
    padding-top: 85%;
  }
  .prlp .merit .merit03 {
    margin-bottom: 30px;
    padding-top: 58%;
  }
  .prlp .merit .merit02 h3,
  .prlp .merit .merit02 ul {
    width: 100%;
  }
  .prlp .merit h3 {
    font-size: 3.0rem;
  }
  .prlp .merit h3 span {
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }
  .prlp .merit h3 span::after {
    width: 100%;
    left: 0;
  }
  .prlp .merit .inner .txt {
    width: 100%;
    font-size: 1.8rem;
  }
}


@media screen and (min-width: 960px) {
  .prlp .merit {
    height: 1680px;
    position: relative;
    z-index: 20;
  }
  .prlp .merit .merit01,
  .prlp .merit .merit02,
  .prlp .merit .merit03 {
    background-size: 45%;
  }
  .prlp .merit .merit01 {
    background-position: 0 5px;
    padding-top: 0;
  }
  .prlp .merit .merit02 {
    background-position: right 0;
     padding-top: 0;
  }
  .prlp .merit .merit03 {
    background-position: 0 0;
    padding-top: 0;
  }
  .prlp .merit h3 {
    font-size: 2.8rem;
  }
  .prlp .merit h3 span::before {
    left: 130px;
  }
  .prlp .merit h3 span::after {
    width: 520px;
    left: -60px;
  }
  .prlp .merit .l_box,
  .prlp .merit .r_box {
    width: 960px;
    position: absolute;
  }
  .prlp .merit .l_box {
    left: 49%;
    margin-left: -480px;
  }
  .prlp .merit .r_box {
    right: 50%;
    margin-right: -470px;
  }
  .prlp .merit .merit01 {
    height: 400px;
  }
  .prlp .merit .merit02 {
    height: 485px;
    top: 695px;
  }
  .prlp .merit .merit03 {
    height: 340px;
    top: 1200px;
  }
  .prlp .merit .l_box .inner {
    padding-right: 470px;
  }
  .prlp .merit .r_box .inner {
    padding-left: 470px;
  }
  .prlp .merit .inner .txt {
    width: 470px;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1280px) {
  .prlp .merit {
    height: 1930px;
    position: relative;
    z-index: 20;
  }
  .prlp .merit .merit01,
  .prlp .merit .merit02,
  .prlp .merit .merit03 {
    background-size: auto;
  }
  .prlp .merit .merit01 {
    background-position: 0 5px;
    padding-top: 0;
  }
  .prlp .merit .merit02 {
    background-position: right 0;
     padding-top: 0;
  }
  .prlp .merit .merit03 {
    background-position: 0 0;
    padding-top: 0;
  }
  .prlp .merit h3 span::before {
    left: 130px;
  }
  .prlp .merit h3 span::after {
    width: 580px;
    left: -60px;
  }
  .prlp .merit .l_box,
  .prlp .merit .r_box {
    width: 1220px;
    position: absolute;
  }
  .prlp .merit .l_box {
    left: 50%;
    margin-left: -600px;
  }
  .prlp .merit .r_box {
    right: 50%;
    margin-right: -600px;
  }
  .prlp .merit .merit01 {
    height: 485px;
  }
  .prlp .merit .merit02 {
    height: 585px;
    top: 795px;
  }
  .prlp .merit .merit03 {
    height: 340px;
    top: 1450px;
  }
  .prlp .merit .r_box .inner {
    padding-left: 600px;
  }
  .prlp .merit .inner .txt {
    width: 540px;
  }
}

/*-------------------------------------------*/
/*  9.0 - 導入実績
/*-------------------------------------------*/
.prlp .results .sub { padding-top: 0;}
.prlp .results .results01 { background: url(../img/img_results01.png) no-repeat center 0;}
.prlp .results .results02 { background: url(../img/img_results02.png) no-repeat center 0;}
.prlp .results .results03 { background: url(../img/img_results03.png) no-repeat center 0;}
.prlp .results .results_bg .results_box {
  width: 100%;
  background: #fff;
}
.prlp .results .results_box .inner {
  background: #fff;
}
.prlp .results .results_box .inner h3 {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  color: #139eff;
}
.prlp .results .results_box .inner h3::before,
.prlp .results .results_box .inner h3::after {
  width: 20px;
  height: 20px;
  content: "";
  position: absolute;
  z-index: 1;
}
.prlp .results .results_box .inner h3::before {
  border-top: #333 1px solid;
  border-left: #333 1px solid;
}
.prlp .results .results_box .inner h3::after {
  border-bottom: #333 1px solid;
  border-right: #333 1px solid;
}
.prlp .results .results_box .inner h3 span {
  box-sizing: border-box;
  position: relative;
}
.prlp .results .results_box .inner h3 span:nth-child(1) {
  width: 100px;
  font-size: 2.8rem;
}
.prlp .results .results_box .inner h3 span:nth-child(2) {
  flex: 1;
}
.prlp .results .results_box .inner h3 span:nth-child(1)::before {
  width: 1px;
  height: 60px;
  content: "";
  position: absolute;
  top: -5px;
  left: 80px;
  background: #139eff;
}
.prlp .results .results_box .inner h3 span:nth-child(2) {
  width: 470px;
  padding-right: 10px;
}
.prlp .results .results_box .inner .detail {
  position: relative;
  box-sizing: border-box;
  background: #fff;
}
.prlp .results .results_box .inner .detail .cliant {
  margin-bottom: 20px;
  font-size: 18px;
  color: #333;
}
.prlp .results .results_box .inner .detail .cliant span {
  display: inline-block;
  box-sizing: border-box;
  margin-right: 10px;
  padding: 2px 8px;
  border-radius: 2px;
  background: #139eff;
  font-size: 14px;
  color: #fff;
}
.prlp .results .results_box .inner .detail .txt {
  box-sizing: border-box;
  margin-bottom: 20px;
  padding-bottom: 30px;
  border-bottom: #333 1px solid;
  line-height: 2.2em;
  font-size: 1.5rem;
  color: #333;
}
.prlp .results .results_box .inner .detail ul {
  width: 100%;
  display: table;
  table-layout: fixed;
}
.prlp .results .results_box .inner .detail ul li {
  display: table-cell;
  vertical-align: top;
  text-align: center;
}
.prlp .results .results_box .inner .detail ul li p:nth-child(1) {
  text-align: center;
  font-size: 1.8rem;
}

.prlp .results .results_box .inner .detail ul li p:nth-child(2) {
  height: 45px;
  display: inline-block;
  position: relative;
  padding: 0 5px 15px;
  background: linear-gradient(transparent 60%, #ffe721 60%);
  font-weight: bold;
  font-size: 2.3rem;
  color: #ff1356;
}
.prlp .results .results_box .inner .detail ul li p.num span {
  font-size: 4.3rem;
}
.prlp .results .results_box .inner .detail ul li span.cost {
  display: inline-block;
  margin-left: 5px;
  font-weight: bold;
  font-size: 25px;
  color: #333;
}

@media screen and (max-width: 767px) {
  .prlp .results .sub::before { top: 35px;}
  .prlp .results .results_bg { background-size: contain;}
  .prlp .results .results_bg {
    box-sizing: border-box;
    padding-top: 150px;
  }
  .prlp .results .results_box .inner h3 {
    width: 100%;
    margin-bottom: 30px;
    padding: 35px 20px 10px;
    font-size: 2.0rem;
  }
  .prlp .results .results_box .inner h3::before {
    top: 20px;
    left: 0px;
  }
  .prlp .results .results_box .inner h3::after {
    bottom: -5px;
    right: 0;
  }
  .prlp .results .results_box .inner .detail {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
  }
  .prlp .results .results_box .inner .detail ul li p:nth-child(2) {
    padding-bottom: 5px;
    font-size: 1.8rem;
  }
  .prlp .results .results_box .inner .detail ul li p.num span { font-size: 3.8rem;}
}

@media screen and (max-width: 480px) {
  .prlp .results .results_bg {
    box-sizing: border-box;
    padding-top: 100px;
  }
  .prlp .results .results_box .inner .detail ul li p:nth-child(1) { font-size: 1.6rem;}
  .prlp .results .results_box .inner .detail ul li p:nth-child(2) { font-size: 1.5rem;}
  .prlp .results .results_box .inner .detail ul li p.num span { font-size: 3.5rem;}
}

@media screen and (min-width: 768px) {
  .prlp .results .results_bg {
    background-size: 100%;
  }
  .prlp .results .results_bg { background-size: 120%;}
  .prlp .results .results_bg {
    box-sizing: border-box;
    padding-top: 250px;
  }
  .prlp .results .results_box .inner {
    display: block;
    table-layout: auto;
    margin: 0 auto;
  }
  .prlp .results .results_box .inner .detail {
    display: block;
  }
  .prlp .results .results_box .inner .detail {
    width: 100%;
    margin-bottom: 20px;
    padding: 25px;
  }
  .prlp .results .results_box .inner h3 {
    width: 100%;
    margin-bottom: 30px;
    padding: 35px 20px 10px;
    font-size: 2.5rem;
  }
  .prlp .results .results_box .inner h3::before {
    top: 20px;
    left: 0px;
  }
  .prlp .results .results_box .inner h3::after {
    right: 0;
  }
}
@media screen and (min-width:1100px) {
  .prlp .results .results_bg {
    background-size: 120%;
  }
  .prlp .results .results_bg { background-size: 140%;}
  .prlp .results .results_bg {
    box-sizing: border-box;
    padding-top: 350px;
  }
  .prlp .results .results_box .inner {
    display: table;
    table-layout: fixed;
  }
  .prlp .results .results_box .inner .detail {
    display: table-cell;
    vertical-align: top;
  }
  .prlp .results .results_box .inner .detail {
    width: 470px;
    top: -50px;
    padding: 23px 25px 0;
  }
  .prlp .results .results_box .inner h3 {
    width: 550px;
  }
  .prlp .results .results_box .inner h3::before {
    left: -20px;
  }
  .prlp .results .results_box .inner h3::after {
    top: 120px;
    right: 0;
  }
  .prlp .results .results_box .inner h3 span:nth-child(2) { font-size: 2.2rem;}
}

@media screen and (min-width:1280px) {
  .prlp .results .results_box .inner .detail {
    width: 550px;
  }
}

/*-------------------------------------------*/
/*  10.0 - 不正対策の特徴
/*-------------------------------------------*/
.prlp .feature {
  height: auto;
  overflow: hidden;
  position: relative;
  background: url(../img/bg_feature01.gif) no-repeat center 0,
              url(../img/bg_feature03.png) no-repeat center bottom,
              url(../img/bg_feature02.gif) no-repeat center bottom;
  background-color: #012232;
  background-size: 120%, auto, 100%;
  padding-bottom: 30px;
}
.prlp .feature #particles {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  z-index: 20;
}
.prlp .feature h2.heading,
.prlp .feature .sub {
  color: #fff;
}
.prlp .feature .feature_box {
  position: relative;
  z-index: 40;
  color: #fff;
}
.prlp .feature .feature_box .feature01,
.prlp .feature .feature_box .feature02 { position: relative;}
.prlp .feature .feature_box .txt {
  line-height: 2.2em;
  font-size: 18px;
}
.prlp .feature .feature_box .txt span { color: #fffc0b;}
.prlp .feature .feature_box .feature01 .inner_vertical::before {
  width: 80%;
  height: 1px;
  content: "";
  position: absolute;
  top: 135px;
  left: 0;
  z-index: 40;
  background: #fff;
}
.prlp .feature .feature_box .feature01 h3 {
  width: 100%;
  max-width: 1100px;
  box-sizing: border-box;
  position: relative;
  margin: 0 auto 30px;
  padding:  40px 0 40px 260px;
  background: url(../img/ico_feature01.png) no-repeat 0 center;
  font-size: 3.5rem;
}
.prlp .feature .feature_box .feature01 h3::before {
  width: 1px;
  height: 50px;
  content: "";
  position: absolute;
  top: 43px;
  left: 250px;
  background: #fff;
}
.prlp .feature .feature_box .feature01 .inner_vertical {
  width: 100%;
  height: 500px;
  background: #0e9bfd;
  background: -moz-linear-gradient(to right,
              rgba(14, 155, 253, 0.8) 0%,
              rgba(13, 223, 220, 0.8) 50%,
              rgba(13, 223, 220, 0.8) 78%,
              rgba(13, 223, 220, 0) 98%);
  background: -webkit-gradient(linear, left, right,
              color-stop(0%,rgba(14, 155, 253, 0.8)),
              color-stop(50%,rgba(13, 223, 220, 0.8)),
              color-stop(78%,rgba(13, 223, 220, 0.8)),
              color-stop(98%,rgba(13, 223, 220, 0)));
  background: -webkit-linear-gradient(right,
              rgba(14, 155, 253, 0.8) 0%,
              rgba(13, 223, 220, 0.8) 50%,
              rgba(13, 223, 220, 0.8) 78%,
              rgba(13, 223, 220, 0) 98%);
  background: linear-gradient(to right,
              rgba(14, 155, 253, 0.8) 0%,
              rgba(13, 223, 220, 0.8) 50%,
              rgba(13, 223, 220, 0.8) 78%,
              rgba(13, 223, 220, 0) 98%);
}
.prlp .feature .feature_box .feature01 .txt {
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1.8rem;
}
.prlp .feature .feature_box .feature01 .image {
  width: 100%;
  max-width: 1100px;
  box-sizing: border-box;
  position: relative;
  top: -70px;
  margin: 0 auto 7px;
  padding: 0 20px;
  text-align: center;
}
.prlp .feature .feature_box .feature01 .image img {
  width: 100%;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .prlp .feature .feature_box .feature01 .inner_vertical { padding-top: 30px;}
  .prlp .feature .feature_box .feature01 .inner_vertical::before { top: 85px;}
  .prlp .feature .feature_box .feature01 h3 {
    background-size: 123px 30px;
    background-position:  top 50% left 20px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 165px;
    font-size: 2.4rem;
  }
  .prlp .feature .feature_box .feature01 h3::before {
    height: 30px;
    top: 5px;
    left: 155px;
  }
  .prlp .feature .feature_box .feature01 .txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .prlp .feature {
    background-size: 120%, 170%, 100%;
  }
  .prlp .feature .feature_box .feature01 .inner_vertical::before {
    width: 90%;
  }
  .prlp .feature .feature_box .feature01 h3 {
    font-size: 2.0rem;
  }
  .prlp .feature .feature_box .feature01 h3::before {
    top: 0;
  }
  .prlp .feature .feature_box .feature01 .inner_vertical {
    height: 620px;
  }
}

@media screen and (min-width: 768px) {
  .prlp .feature .feature_box .feature01 h3 {
    background-position:  top 50% left 20px;
    padding-left: 265px;
  }
}

/*-------------------------------------------*/
/*  11.0 - お客様の声
/*-------------------------------------------*/
.prlp .voice .voice01 {
  height: auto;
  background-image: url(../img/img_voice01.jpg);
  background-repeat: no-repeat;
}
.prlp .voice .voice02 {
  height: auto;
  background-image: url(../img/img_voice02.jpg);
  background-repeat: no-repeat;
}
.prlp .voice .voice03 {
  height: auto;
  background-image: url(../img/img_voice03.jpg);
  background-repeat: no-repeat;
}

.prlp .voice .task,
.prlp .voice .intro,
.prlp .voice .improvement {
  width: 680px;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 20px;
  border: #333 1px solid;
  border-radius: 4px;
}
.prlp .voice .task {
  margin-top: 20px;
}
.prlp .voice .improvement {
  margin-bottom: 0;
  border: #dcbc09 2px solid;
  background: #fffbda;
}
.prlp .voice h3 {
  height: 110px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1.6em;
  color: #139eff;
}
.prlp .voice h3 span{
  height: 110px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  padding-left: 135px;
  vertical-align: middle;
}

.prlp .voice h3 span::before {
  width: 1px;
  height: 50px;
  content: "";
  position: absolute;
  top: 32px;
  left: 130px;
  background: #139eff;
}
.prlp .voice .voice01 h3 span::before { left: 117px;}
.prlp .voice .voice01 h3 span { background: url(../img/ico_num01.png) no-repeat 0 center;}
.prlp .voice .voice02 h3 span{ background: url(../img/ico_num02.png) no-repeat 0 center; padding-left: 150px;}
.prlp .voice .voice03 h3 span{ background: url(../img/ico_num03.png) no-repeat 0 center; padding-left: 150px;}
.prlp .voice .cliant {
  display: inline-block;
  padding:  15px 0 0;
  font-size: 16px;
}
.prlp .voice .voice01 .cliant,
.prlp .voice .voice03 .cliant {
  top: -25px;
}
.prlp .voice h4 {
  margin-bottom: 10px;
  font-size: 2.5rem;
}
.prlp .voice ul li {
  padding-left: 1em;
  text-indent:  -1em;
}
.prlp .voice ul li,
.prlp .voice .txt {
  letter-spacing: 0;
  line-height: 2.0em;
  font-size: 1.6rem;
}
.prlp .voice #bre24,.prlp .voice #bre25, .prlp .voice #bre26, .prlp .voice #bre27,
.prlp .voice #bre32,.prlp .voice #bre33, .prlp .voice #bre34, .prlp .voice #bre35 {
  width: 680px;
}

@media screen and (max-width: 767px) {
  .prlp .voice .voice01,
  .prlp .voice .voice02,
  .prlp .voice .voice03 {
    background-position: top 0 center;
    background-size: 80%;
    margin-bottom: 50px;
  }
  .prlp .voice .voice01 { padding-top: 72%;}
  .prlp .voice .voice02 { padding-top: 87%;}
  .prlp .voice .voice03 { padding-top: 52%;}
  .prlp .voice h3 {
    line-height: 1.4;
    font-size: 2.2rem;
  }
  .prlp .voice .voice01 h3 span,
  .prlp .voice .voice02 h3 span,
  .prlp .voice .voice03 h3 span {
    background-size: 55px 55px;
    padding-left: 80px;
  }
  .prlp .voice h3 span::before { left: 65px}
  .prlp .voice .voice01 h3 span::before { left: 65px}
  .prlp .voice .task,
  .prlp .voice .intro,
  .prlp .voice .improvement {
    width: 100%;
    font-size: 1.5rem;
  }
  .prlp .voice h4 {
    font-size: 2.0rem;
  }
  .prlp .voice #bre24,.prlp .voice #bre25, .prlp .voice #bre26, .prlp .voice #bre27,
  .prlp .voice #bre32,.prlp .voice #bre33, .prlp .voice #bre34, .prlp .voice #bre35 {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .prlp .voice h3 {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 768px) {
  .prlp .voice .voice01,
  .prlp .voice .voice02,
  .prlp .voice .voice03 {
    background-position: top 0 center;
    margin-bottom: 50px;
  }
  .prlp .voice .voice01 { padding-top: 500px;}
  .prlp .voice .voice02 { padding-top: 550px;}
  .prlp .voice .voice03 { padding-top: 440px;}
  .prlp .voice h3 { font-size: 3.5rem;}
  .prlp .voice .task,
  .prlp .voice .intro,
  .prlp .voice .improvement {
    width: 100%;
  }
  .prlp .voice #bre24,.prlp .voice #bre25, .prlp .voice #bre26, .prlp .voice #bre27,
  .prlp .voice #bre32,.prlp .voice #bre33, .prlp .voice #bre34, .prlp .voice #bre35 {
    width: 100%;
  }
}


@media screen and (min-width: 960px) {
  .prlp .voice .l_box,
  .prlp .voice .r_box {
    width: 100%;
    position: static;
  }
  .prlp .voice .l_box {
    left: none;
    margin-left: 0;
  }
  .prlp .voice .r_box {
    right: none;
    margin-right: 0;
  }
  .prlp .voice .r_box .inner {
    padding-left: 20px;
  }
}

@media screen and (min-width: 1100px) {
.prlp .voice {
    height: 2720px;
    overflow: hidden;
    position: relative;
    z-index: 20;
  }
  .prlp .voice .l_box,
  .prlp .voice .r_box {
    width: 1280px;
    position: absolute;
  }
  .prlp .voice .l_box {
    left: 50%;
    margin-left: -640px;
  }
  .prlp .voice .r_box {
    right: 50%;
    margin-right: -640px;
  }
  .prlp .voice .r_box .inner {
    box-sizing: border-box;
    padding-left: 420px;
  }
  .prlp .voice .l_box .inner {
    box-sizing: border-box;
    padding-right: 420px;
  }
  .prlp .voice .voice01,
  .prlp .voice .voice02,
  .prlp .voice .voice03 { padding-top: 0;}
  .prlp .voice .voice01 {
    background-position: right 85px;
  }
  .prlp .voice .voice02 {
    top: 1010px;
    background-position: 0 120px;
  }
  .prlp .voice .voice03 {
    top: 1820px;
    background-position: right 85px;
  }
}

/*-------------------------------------------*/
/*  12.0 - お問い合わせ
/*-------------------------------------------*/
.prlp .contact_bottom {
  height: 250px;
  box-sizing: border-box;
  padding-top: 75px;
  font-weight: bold;
}
.prlp .contact_bottom a {
  height: 100px;
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 20;
  margin: 0 auto;
  padding-top: 12px;
  border: #fff 2px solid;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 2px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #fff;
}
.prlp .contact_bottom a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: '';
  width: 120%;
  height: 100%;
  background: #fff;
  transform-origin: right top;
  transform: skewX(-30deg) scale(0, 1);
  transition: transform .5s;
}
.prlp .contact_bottom a:hover::before {
  transform-origin: left top;
  transform: skewX(-30deg) scale(1, 1);
}
.prlp .contact_bottom a:hover {
  color: #139eff;
}
.prlp .contact_bottom a span {
  display: block;
  letter-spacing: 1px;
  font-size: 18px;
}
.prlp .contact_bottom a::after {
  width: 10px;
  height: 10px;
  content: "";
  box-sizing: border-box;
  position: absolute;
  z-index: 1;
}
.prlp .contact_bottom a::after {
  bottom: 5px;
  right: 5px;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #fff;
  border-right: 10px solid #fff;
}

@media screen and (max-width: 767px) {
  .prlp .contact_bottom a {
    width: 90%;
    margin: 0 auto;
    font-size: 2.0rem;
  }
}

@media screen and (max-width: 480px) {
  .prlp .contact_bottom a {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 768px) {
  .prlp .contact_bottom a {
    width: 600px;
    font-size: 2.5rem;
  }
}


/*-------------------------------------------*/
/*  13.0 - 固定フッター
/*-------------------------------------------*/

.footer_fix {
  width: 100%;
  position: fixed;
	bottom: 0;
	left: 0;
	z-index: 9999;
  border-top: #fff 1px solid;
	background-color: #139eff;
	background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0.25, #2098eb), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, #2098eb), color-stop(0.75, #2098eb), color-stop(0.75, transparent), to(transparent));
	background-image: -webkit-linear-gradient(-45deg, #2098eb 25%, transparent 25%, transparent 50%, #2098eb 50%, #2098eb 75%, transparent 75%, transparent);
	background-image: -moz-linear-gradient(-45deg, #2098eb 25%, transparent 25%, transparent 50%, #2098eb 50%, #2098eb 75%, transparent 75%, transparent);
	background-image: linear-gradient(-45deg, #2098eb 25%, transparent 25%, transparent 50%, #2098eb 50%, #2098eb 75%, transparent 75%, transparent);
	background-size: 6px 6px;
	color: #fff;
}
.footer_fix ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_fix ul li {
  width: 50%;
}
.footer_fix ul li a {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  transition: .2s linear;
}
.footer_fix ul li a:hover {
  opacity: 0.6;
}
.footer_fix ul li a::after {
  box-sizing: border-box;
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
  width: 15px;
  height: 15px;
}
.footer_fix ul li a.btn_mail::after {
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}
.footer_fix ul li a.btn_document::after {
  border-bottom: 3px solid #139eff;
  border-right: 3px solid #139eff;
}
.footer_fix ul li .btn_mail {
  position: relative;
  background-color: #ffb400;
  color: #fff;
}
.footer_fix ul li .btn_mail::before {
  display: block;
  position: absolute;
  content: "";
  background-color: #fff;
  background-image: url("../img/icon_footer_mail.png");
  background-repeat: no-repeat;
  background-position: center;;
}
.footer_fix ul li .btn_document {
  background-color: #fff;
  background: #fff url("../img/icon_footer_document.png") no-repeat top 50% left 25px;
  color: #139eff;
}

@media screen and (max-width: 767px) {
  .footer_fix ul {
    width: 100%;
    margin: 0 auto;
    padding: 15px 2%;
    gap: 0 15px;
  }
  .footer_fix ul li a {
    height: 60px;
    box-shadow: 0 0 8px #126fb0, 0 0 8px #126fb0;
  }
  .footer_fix ul li .btn_mail {
    line-height: 1.3;
    font-size: 1.8rem;
  }
  .footer_fix ul li .btn_mail::before {
    width: 32px;
    height: 32px;
    top: 12px;
    left: 10px;
    border-radius: 16px;
    background-size: 20px 15px;
  }
  .footer_fix ul li .btn_document {
    border: #139eff 2px solid;
    background-size: 18px 27px;
    background-position: top 48% left 15px;
    line-height: 1.3;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 480px) {
  .footer_fix ul {
    width: 100%;
    margin: 0 auto;
    padding: 15px 2%;
    gap: 0 10px;
  }
  .footer_fix ul li .btn_mail {
    font-size: 1.5rem;
  }
  .footer_fix ul li .btn_document {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 768px) {
  .footer_fix ul {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 15px;
    gap: 0 15px;
  }
  .footer_fix ul li a {
    height: 80px;
    box-shadow: 0 0 10px #126fb0, 0 0 10px #126fb0;
  }
  .footer_fix ul li .btn_mail {
    font-size: 2.2rem;
  }
  .footer_fix ul li .btn_mail::before {
    width: 64px;
    height: 64px;
    top: 8px;
    left: 8px;
    border-radius: 32px;
    background-size: 40px 25px;
  }
  .footer_fix ul li .btn_document {
    border: #139eff 4px solid;
    background-size: 27px 36px;
    font-size: 2.0rem;
  }
}

@media screen and (min-width: 1100px) {
  .footer_fix ul {
    padding: 20px 30px;
    gap: 0 20px;
  }
  .footer_fix ul li .btn_mail {
    font-size: 2.8rem;
  }
  .footer_fix ul li .btn_document {
    font-size: 2.6rem;
  }

}

/*-------------------------------------------*/
/*  14.0 - 不正の手口事例
/*-------------------------------------------*/

.cases .cases_list {	border-bottom: #fff 1px solid;}
.cases .cases_list li:nth-child(1) { background: url("../img/bg_cases01.jpg") no-repeat center; background-size: cover;}
.cases .cases_list li:nth-child(2) { background: url("../img/bg_cases02.jpg") no-repeat center; background-size: cover;}
.cases .cases_list li {
  box-sizing: border-box;
  position: relative;
  color: #fff;
}
.cases .cases_list li::before {
  height: 1px;
  content: "";
  position: absolute;
  top: 58px;
  left: 0;
  background: #fff;
}
.cases .cases_list li .cases_num {
  position: relative;
  font-weight: bold;
  font-size: 2.4rem;
}
.cases .cases_list li .detail { position: relative;}
.cases .cases_list li .detail h3 {
  position: relative;
  margin-bottom: 30px;
  font-size: 1.8rem;
}
.cases .cases_list li .detail h3::before {
  width: 80px;
  height: 2px;
  content: "";
  position: absolute;
  top: 40px;
  border-radius: 10px;
  background: #139eff;
  background: -moz-linear-gradient(to right,  #139eff 0%, #21d5e0 100%);
  background: -webkit-gradient(linear, left, right, color-stop(0%,#139eff), color-stop(100%,#21d5e0));
  background: -webkit-linear-gradient(right,  #139eff 0%, #21d5e0 100%);
  background: linear-gradient(to right,  #139eff 0%, #21d5e0 100%);
}
.cases .cases_list li .detail .txt {
  text-align: left;
  line-height: 1.8;
}
.cases .contact {
  box-sizing: border-box;
  padding: 75px 0;
  font-weight: bold;
}
.cases .contact a {
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 20;
  margin: 0 auto;
  padding: 20px 10px;
  border: #fff 2px solid;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 2px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #fff;
}
.cases .contact a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: '';
  width: 120%;
  height: 100%;
  background: #fff;
  transform-origin: right top;
  transform: skewX(-30deg) scale(0, 1);
  transition: transform .5s;
}
.cases .contact a:hover::before {
  transform-origin: left top;
  transform: skewX(-30deg) scale(1, 1);
}
.cases .contact a:hover {
  color: #139eff;
}
.cases .contact a:hover p span {
  background-color: #139eff;
  color: #fff;
}
.cases .contact a p:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cases .contact a span {
  display: inline-block;
  border-radius: 30px;
  background-color: #fff;
  margin-right: 5px;
  padding: 2px 20px;
  font-size: 2.0rem;
  color: #139eff;
}
.cases .contact a::after {
  width: 10px;
  height: 10px;
  content: "";
  box-sizing: border-box;
  position: absolute;
  z-index: 1;
}
.cases .contact a::after {
  bottom: 5px;
  right: 5px;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #fff;
  border-right: 10px solid #fff;
}

@media screen and (max-width:767px) {
  .cases .cases_list li {
    width: 100%;
    min-height: 370px;
    padding: 40px 40px 15px;
  }
  .cases .cases_list li::before {
    width: 30px;
  }
  .cases .cases_list li .detail { padding-top: 30px;}
  .cases .cases_list li .detail .txt {
    line-height: 1.9;
    font-size: 2.0rem;
  }
  .cases .contact a {
    width: 90%;
    margin: 0 auto;
    font-size: 2.0rem;
  }
  .cases .contact a p:nth-child(1) { font-size: 3.5vw;}
  .cases .contact a span { font-size: 1.6rem;}
  .cases .contact a p:nth-child(2) { font-size: 4.5vw;}
}

@media screen and (max-width:480px) {
  .cases .cases_list li {
    padding: 40px;
  }
  .cases .cases_list li .detail .txt {
    font-size: 1.8rem;
  }
  .cases .contact { padding: 50px 0;}
  .cases .contact a p:nth-child(1) {
    flex-flow: column;
    font-size: 4.3vw;
  }
  .cases .contact a span {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
  .cases .contact a p:nth-child(2) {
    margin-bottom: 10px;
    font-size: 4.6vw;
  }
}

@media screen and (min-width:768px) {
  .cases .cases_list {
    width: 100%;
    display: table;
    table-layout: fixed;
  }
  .cases .cases_list li {
    width: 50%;
    display: table-cell;
    padding: 40px 50px;
  }
  .cases .cases_list li::before {
    width: 40px;
  }
  .cases .cases_list li:nth-child(2) {
    border-left: #fff 1px solid;
    border-right: #fff 1px solid;
  }
  .cases .cases_list li .detail { padding-top: 30px;}
  .cases .cases_list li .detail .txt {
    font-size: 1.7rem;
  }
  .cases .contact a {
    width: 740px;
    font-size: 2.5rem;
  }
  .cases .contact a p:nth-child(1) { font-size: 2.5rem;}
  .cases .contact a p:nth-child(2) { font-size: 3.3rem;}
}

@media screen and (min-width:960px) {
  .cases .cases_list li {
    padding: 40px 110px 60px;
  }
  .cases .cases_list li::before {
    width: 100px;
  }
  .cases .cases_list li .detail .txt {
    font-size: 1.9rem;
  }
  .cases .contact a p:nth-child(1) { font-size: 3.0rem;}
  .cases .contact a p:nth-child(2) { font-size: 3.8rem;}
}





