@charset "utf-8";

/**********************************************
** Site Name: 不正対策.com
** Site URI: https://www.fuseitaisaku.com/
** Description: 不正対策.comの仕組み
** Author: a-yamamoto
** Last Update: 2020/03/24
** Updater: a-yamamoto
**********************************************/

/*-------------------------------------------*/
/*  CONTENTS:
/*--------------------------------------------
1.0 - 汎用スタイル
    1.1 - 見出し
2.0 - 不正回避の仕組みと判別
    2.1 - 管理画面トップ
3.0 - 機能を利用して不正排除
4.0 - サイト毎の不正対策例
    4.1 - ビフォーアフター
---------------------------------------------*/

/*-------------------------------------------*/
/*  1.0 - 汎用スタイル
/*-------------------------------------------*/

/*  1.1 - 見出し
/*-------------------------------------------*/

/*タブレット・スマホ*/
/* 959px以下 */
@media screen and (max-width:959px) {
  .system h1.heading {
	  margin-bottom: 20px;
		padding: 0 10px;
	}
	.system .heading_sub { padding: 0 10px;}
}

/*PC*/
/* 960px以上 */
@media screen and (min-width:960px) {
  .system h1.heading,
	.system .heading_sub {
    min-width: 940px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .system h1.heading { margin-bottom: 50px;}	
}

/*-------------------------------------------*/
/*  2.0 - 不正回避の仕組みと判別
/*-------------------------------------------*/

.system .about {
  box-sizing: border-box;
	position: relative;
  background: url("../img/common/bg_sky.jpg") no-repeat center top;
	background-size: cover;
  color: #fff;
}
.system .about .txt { margin-bottom: 30px;}
.system .about .system_flow {
  box-sizing: border-box;
	border-radius: 2px;
	background: #fff;
	margin-bottom: 20px;
	padding: 10px;
}
.system .about .system_flow img { width: 100%;}
.system .about .about_scroll {
  width: 100%;
  position: relative;
  bottom: -40px;
  letter-spacing: 1px;
  text-align: center;
  font-weight: bold;
}
.system .about .about_scroll .line {
  display: block;
  position: relative;
}
.system .about .about_scroll .line::before,
.system .about .about_scroll .line::after {
  content: "";
  position: absolute;
}
.system .about .about_scroll .line::before {
  width: 1px;
  height: 50px;
  top: 5px;
  left: 50%;
  background: #c1c1c1;
}
.system .about .about_scroll .line::after {
  width: 1px;
  height: 15px;
  top: 5px;
  left: 50%;
  background: #333;
  animation: about_line_anime 1.5s infinite ease-in-out;
}

/*タブレット・スマホ*/
/* 959px以下 */
@media screen and (max-width:959px) {
  .system .about { padding: 30px 10px 0}
  .system .about .about_scroll {
    width: 100%;
    position: static;
  }
  .system .about .about_scroll {
    padding-bottom: 30px;
    font-size: 4.5vw;
  }
}

/*PC*/
/* 960px以上 */
@media screen and (min-width:960px) {
  .system .about { padding: 40px 0 70px}
	.system .about .about_scroll { font-size: 3.0rem;}
}

@keyframes about_line_anime {
  0% { transform: translateY(1px);}
  100% { transform: translateY(50px); opacity: 0;}
}

/*  2.1 - 管理画面トップ
/*-------------------------------------------*/

.system .about_detail .image {
  box-sizing: border-box;
  border: #e1e1e1 1px solid;
  border-radius: 4px;
}
.system .about_detail .image img {
  width: 100%;
  vertical-align: bottom;
}

/*タブレット・スマホ*/
/* 959px以下 */
@media screen and (max-width:959px) {
  .system .about_detail { padding: 40px 0 60px;}
  .system .about_detail .image {
    box-shadow: #c5c5c5 0 8px 45px;
    margin: 0 3% 40px;
  }
  .system .about_detail .txt { padding: 0 10px;}
}

/*PC*/
/* 960px以上 */
@media screen and (min-width:960px) {
  .system .about_detail { padding: 50px 0 70px;}
  .system .about_detail .image {
    box-shadow: #c5c5c5 0 12px 55px;
    margin-bottom: 70px;
  }
}

/*-------------------------------------------*/
/*  3.0 - 機能を利用して不正排除
/*-------------------------------------------*/

.system .function { position: relative;}
.system .function .image_left,
.system .function .image_right {
  box-sizing: border-box;
  border-radius: 4px;
  padding: 1px;
}
.system .function .inner img {
  width: 100%;
  vertical-align: bottom;
}
.system .function .inner .detail {
  box-sizing: border-box;
  background: #fff;
}
.system .function .inner h3 {
  width: 100%;
	display: table;
	table-layout: fixed;
  border-bottom: #333 1px solid;
}
.system .function .inner h3 span:nth-child(1),
.system .function .inner h3 span:nth-child(2) {
  box-sizing: border-box;
  display: table-cell;
	vertical-align: top;
}
.system .function .inner h3 span:nth-child(1) {
	box-sizing: border-box;
  position: relative;
	text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
  color: #1d50a2;
}
.system .function .inner h3 span:nth-child(1)::before {
  width: 1px;
	height: 30px;
	content: "";
	position: absolute;
	background: #333;
	top: 4px;
	right: -10px;
}
.system .function .inner h3 span:nth-child(2) {
  width: 100%;
	padding: 3px 0 0 25px;
	line-height: 1.5em;
  font-weight: bold;
}

/*タブレット・スマホ*/
/* 959px以下 */
@media screen and (max-width:959px) {
  .system .function h2 { padding: 0 10px;}
  .system .function .inner .image_left,
  .system .function .inner .image_right {
    box-shadow: #c5c5c5 0 8px 20px;
    margin: 0 3% 20px;
  }
  .system .function .inner h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  .system .function .inner h3 span:nth-child(1) {
    width: 140px;
    font-size: 2.2rem;
  }
  .system .function .inner h3 span:nth-child(1)::before { top: 1px;}
  .system .function .inner h3 span:nth-child(2) { font-size: 1.8rem;}
  .system .function .inner .detail { padding: 20px 20px 40px;}
}

/*PC*/
/* 960px以上 */
@media screen and (min-width:960px) {
  .system .function { padding: 0 0 40px;}
  .system .function h2 {
    min-width: 940px;
    max-width: 1100px;
    margin: 0 auto 70px;
  }
  .system .function .image_left,
  .system .function .image_right {
    position: relative;
    z-index: 100;
    box-shadow: #c5c5c5 10px -3px 40px;
  }
  .system .function .image_left {
    margin-left: calc((-99vw + 1100px) / 2);
  }
  .system .function .image_right {
    margin-right: calc((-98.6vw + 1100px) / 2);
  }
  .system .function .inner .detail {
    position: relative;
    z-index: 200;
    top: -50px;
  }
  .system .function .inner h3 {
    margin-bottom: 30px;
    padding-bottom: 15px;
  }
  .system .function .inner h3 span:nth-child(1) {
    width: 145px;
    font-size: 2.5rem;
  }
  .system .function .inner h3 span:nth-child(2) { font-size: 2.1rem;}
  .system .function .inner .detail { padding: 40px 40px 20px;}
}

/*-------------------------------------------*/
/*  4.0 - サイト毎の不正対策例
/*-------------------------------------------*/

.system .case { background: #eef0f2;}
.system .case .case_detail .inner .title {
  width: 100%;
	display: table;
	table-layout: fixed;
  border-bottom: #333 1px solid;
	margin-bottom: 20px;
}
.system .case .case_detail .inner .title .case_num,
.system .case .case_detail .inner .title .title_txt {
  box-sizing: border-box;
  display: table-cell;
	vertical-align: top;
}
.system .case .case_detail .inner .title .case_num {
  width: 80px;
	box-sizing: border-box;
  position: relative;
	text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
  font-size: 4.5rem;
  color: #1d50a2;
}
.system .case .case_detail .inner .title .case_num::before {
  width: 1px;
	height: 30px;
	content: "";
	position: absolute;
	background: #333;
	top: 18px;
	right: -10px;
}
.system .case .case_detail .inner .title .case_num span {
  position: absolute;
	top: -5px;
	left: 50%;
  margin-left: -36px;
  letter-spacing: 1px;
  font-size: 1.0rem;
}
.system .case .case_detail .inner .title .title_txt {
  width: 100%;
	padding: 19px 0 0 25px;
	line-height: 1.5em;
  font-weight: bold;
}
.system .case .case_detail .inner .detail p {
  margin-bottom: 10px;
  font-weight: bold;
}
.system .case .case_detail .inner .detail li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 2.0em;
}

/*タブレット・スマホ*/
/* 959px以下 */
@media screen and (max-width:959px) {
  .system .case { padding: 30px 0 30px;}
  .system .case h2 { padding: 0 10px;}
  .system .case .case_detail .inner .thumb { margin-bottom: 20px;}
  .system .case .case_detail .inner img { width: 100%;}
  .system .case .case_detail .inner .title .title_txt { font-size: 1.8rem}
  .system .case .case_detail .inner .detail p { font-size: 1.5rem}
  .system .case .case_detail .inner .detail ul { margin-bottom: 25px;}
  .system .case .case_detail .inner .detail li { font-size: 1.2rem}
  .system .case .case_detail .inner .detail,
  .system .case .case_detail .before,
  .system .case .case_detail .after { padding: 0 10px;}
}

/*PC*/
/* 960px以上 */
@media screen and (min-width:960px) {
  .system .case { padding: 50px 0 70px;}
  .system .case .case_detail .inner {
    display: flex;
    margin-bottom: 30px;
  }
  .system .case .case_detail .inner .thumb { margin-right: 35px;}
  .system .case .case_detail .inner img { width: 340px;}
  .system .case .case_detail .inner .title { padding-bottom: 5px;}
  .system .case .case_detail .inner .title .title_txt { font-size: 2.1rem}
  .system .case .case_detail .inner .detail p { font-size: 1.8rem}
  .system .case .case_detail .inner .detail li { font-size: 1.5rem}
}

/*  4.1 - ビフォーアフター
/*-------------------------------------------*/
.system .case .case01 { margin-bottom: 70px;}
.system .case .before_after.before,
.system .case .before_after.after {
  box-sizing: border-box;
  border-radius: 2px;
  padding: 20px;
}
.system .case .before_after.before { 
  background: #fff;
  margin-bottom: 40px;
}
.system .case .before_after.after { background: #fffbd4;}
.system .case .before_after h3 {
  width: 100%;
	display: table;
	table-layout: fixed;
  margin-bottom: 20px;
}
.system .case .before_after h3 span:nth-child(1),
.system .case .before_after h3 span:nth-child(2) {
  box-sizing: border-box;
  display: table-cell;
	vertical-align: top;
}
.system .case .before_after h3 span:nth-child(1) {
	box-sizing: border-box;
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 2.8rem;
  color: #1d50a2;
}
.system .case .before_after h3 span:nth-child(1)::before {
  width: 1px;
	height: 30px;
	content: "";
	position: absolute;
	background: #333;
	top: 5px;
	right: -10px;
}
.system .case .before_after h3 span:nth-child(2) {
  width: 100%;
	padding: 5px 0 0 25px;
	line-height: 1.5em;
  font-weight: bold;
  font-size: 1.8rem;
}
.system .case .before_after.before h3 span:nth-child(1) { width: 110px;}
.system .case .before_after.after h3 span:nth-child(1) { width: 90px;}
.system .case .before_after.before ul { overflow: hidden;}
.system .case .before_after.before li { box-sizing: border-box;}
.system .case .case01 .before_after.before li:nth-child(1),
.system .case .case02 .before_after.before li:nth-child(1) { background-image: url("../img/system/ico_system_case_before01.gif");}
.system .case .case01 .before_after.before li:nth-child(2) { background-image: url("../img/system/ico_system_case_before02.gif");}
.system .case .case01 .before_after.before li:nth-child(3) { background-image: url("../img/system/ico_system_case_before03.gif");}
.system .case .case01 .before_after.before li:nth-child(4) { background-image: url("../img/system/ico_system_case_before04.gif");}
.system .case .case01 .before_after.before li:nth-child(5) { background-image: url("../img/system/ico_system_case_before05.gif");}
.system .case .case01 .before_after.before li:nth-child(6),
.system .case .case02 .before_after.before li:nth-child(2) { background-image: url("../img/system/ico_system_case_before06.gif");}
.system .case .case01 .before_after.before li:nth-child(7),
.system .case .case02 .before_after.before li:nth-child(3) { background-image: url("../img/system/ico_system_case_before07.gif");}
.system .case .case01 .before_after.before li:nth-child(8),
.system .case .case02 .before_after.before li:nth-child(4) { background-image: url("../img/system/ico_system_case_before08.gif");}
.system .case .case01 .before_after.before li:nth-child(9) { background-image: url("../img/system/ico_system_case_before09.gif");}
.system .case .case01 .before_after.before li:nth-child(10) { background-image: url("../img/system/ico_system_case_before10.gif");}
.system .case .case02 .before_after.before li:nth-child(5) { background-image: url("../img/system/ico_system_case_before11.gif");}
.system .case .case02 .before_after.before li:nth-child(6) { background-image: url("../img/system/ico_system_case_before12.gif");}
.system .case .case01 .before_after.before li,
.system .case .case02 .before_after.before li {
  height: 60px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  float: left;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 50px;
  padding-left: 60px;
  font-weight: bold;
}
.system .case .before_after.after li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 2.2em;
}

/*タブレット・スマホ*/
/* 959px以下 */
@media screen and (max-width:959px) {
  .system .case .before_after { margin: 0 10px 40px;}
  .system .case .before_after.before li {
    width: 33.3%;
    margin-bottom: 30px;
    padding-right: 10px;
    font-size: 1.2rem;
  }
  .system .case .before_after.before h3 span:nth-child(1) { width: 105px;}
  .system .case .before_after.after h3 span:nth-child(1) { width: 85px;}
  .system .case .before_after h3 span:nth-child(1)::before { top: 2px;}
  .system .case .before_after h3 span:nth-child(1) { font-size: 2.2rem;}
  .system .case .before_after h3 span:nth-child(2) { font-size: 1.8rem;}
  .system .case .before_after.after ul { margin-top: 10px;}
  .system .case .before_after.after li { font-size: 1.2rem;}
}
/*スマホ*/
/* 480px以下 */
@media screen and (max-width:480px) {
  .system .case .before_after.before li { width: 50%;}
}

/*PC*/
/* 960px以上 */
@media screen and (min-width:960px) {
  .system .case .before_after h3 span:nth-child(1) { font-size: 2.5rem;}
  .system .case .before_after h3 span:nth-child(2) { font-size: 2.1rem;}
  .system .case .before_after.before li {
    width: 353px;
    margin-bottom: 20px;
    padding-right: 20px;
    font-size: 1.6rem;
  }
  .system .case .before_after.after ul { margin-top: 20px;}
  .system .case .before_after.after li { font-size: 1.5rem;}
}


