@charset "utf-8";
* {
	box-sizing: border-box;
}
html {
	-webkit-text-size-adjust: 100%; /* iPhoneでランドスケープにした時に文字サイズ自動変更禁止 */
	font-size: 62.5%;
}
body {
	line-height: 1.5;
	font-family: dnp-shuei-mgothic-std, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 1.6rem;
	color: #333;
	background: #fff;
	word-wrap: break-word;
  overflow-wrap: break-word;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

header {
  border-bottom: 2px solid #c03;
  box-shadow: 0px 2px 2px 0px #ededed;
}
#header_wrapper {
	max-width: 800px;
	margin: 0 auto;
	padding: 23px 15px 17px;
}
#wrapper {
	max-width: 800px;
	margin: 0 auto;
	padding: 30px 15px 70px;
}
.skb_app_title {
  font-size: 2.6rem;
	font-weight: normal;
}
.termslist_wrapper {
	margin-top: 19px;
	padding: 0.5em 1.25em 0.5em;
	background: #f9f9f9;
	border-radius: 0.5em;
}
ul {
	padding-left: 20px;
}
li + li {
	margin-top: 0.5em;
}
.termslist {
	list-style:none;
	font-size: 1.5rem;
	padding-left: 22px;
}
.item {
	position: relative;
	margin-top: 8px;
}
.item::before { /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 5px;
  left: -17px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #c03;
  border-right: 2px solid #c03;
  transform: rotate(135deg);
}
.item +.item {
  margin-top: 0.75em;
}
.item > a:link,
.item > a:visited {
	color: #333;
}
.item > a:hover,
.item > a:active {
  text-decoration: none;
	color: #c03;
  transition: all 0.4s;
}
a:link,
a:visited {
	color: #154d93;
}
a:hover,
a:active {
  text-decoration: none;
	color: #2b5e9f;
  transition: all 0.4s;
}
h2 {
	position: relative;
	padding-left: 12px;
	font-size: 2.2rem;
	font-weight: normal;
	border-left: 6px double #c03;
	border-bottom: 2px solid #ededed;
}
h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #c03;
	right: 0;
  bottom: -2px;
  width: 45%;
}
section > p,
section > .targetting,
section > ul {
	width: 97%;
}
section > p {
	margin: 0 auto;
}
section > dl,
section > ul {
	margin: 1em auto;
}
h2 + p {
	margin-top: 18px;
}
p + p {
	margin-top: 10px;
}
#item_Ex,#item_Pro,#item_Link,#item_Js,#item_Co,
#item_InG,#item_tAd,#item_adpr,#item_mAd,
#item_Con,#item_en {
	margin-top: 50px;
}
dt {
	position: relative;
	margin-top: 25px;
	padding: 0 0 0 23px;
	font-size: 1.8rem;	
}
dt::after {
  position: absolute;
  display: inline-block;
  content: "";
  top: 12px;
  left: -30px;
  width: 18px;
  height: 2px;
  background: #c03;
  margin: auto 0 auto 3rem;
}
dd + dt {
  margin: 24px 0 0;
}
dd {
  font-size: 1.5rem;
  padding: 8px 0 10px 0;
}
/*fadeinの記述*/
.fadein {
  opacity: 0;         /* 初期値は透明にしておく */
  transition: 1.5s;    /* 動くスピードを0.5秒に指定 */
  position: relative; /* 相対位置の設定 */
  top: 50px;
}
.active {
  opacity: 1;         /* 透明度を元に戻す */
  top: 0;             /* ずらしていた位置を戻すことで上に上がっているようにみえる */
}

/*ページトップボタン*/
#pageTop {
	position: relative;
  display: inline-block;
  width: 100%;
	text-align: center;
  padding: 2.5em 0 1em;
	background: #c03;
	color: #fff;
	text-decoration: none;
}
#pageTop::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(315deg);
}
