@charset "utf-8";

/*================================================================================================

* RESET *

================================================================================================*/


/* Asterisk ================================================*/
* {
	margin: 0;
	padding: 0;
}

/* LINK ================================================*/
a {
	color: #24C19F;
	text-decoration: none;
	outline:none;
}

a:focus {
	outline: none;
}

/* IMG ================================================*/
img {
	width: 100%;
	height: auto;
	border: none;
	vertical-align: middle;
}

/* hr ================================================*/
hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

/* h ================================================*/
h1,h2,h3,h4,h5,h6 {
	padding: 0rem;
	margin: 0rem;
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.7;
}

/* p ================================================*/
p {
	padding: 0rem;
	margin: 0rem;
	line-height: 1.7;
}

/* pre ================================================*/
pre {
	padding: 0rem;
	margin: 0rem;
	line-height: 1.7;
	
	/* preタグの場合、書式をここで指定しないと適応されない */
	font-family: 'roboto-r', "notosans-r", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    /* 文字列が長くなった場合に折り返す */
    /* Mozilla */
    white-space: -moz-pre-wrap;
    /* Opera 4-6 */
    white-space: -pre-wrap;
    /* Opera 7 */
    white-space: -o-pre-wrap;
    /* CSS3 */
    white-space: pre-wrap;
    /* IE 5.5+ */
		word-wrap: break-word;
		
		/* ワードブレイク用 */
		overflow-wrap : break-word;
	  word-break: break-all;
}

/* div ================================================*/
div {
	line-height: 1.7;
}

/* 構造タグ ================================================*/
article,aside,details,footer,header,main,menu,nav,section,summary {
	display: block;
}

/* ul ================================================*/
ul,ol {
	list-style: none;
}
ul{
	font-size: 0;
}
ul li{
	font-size: 1rem;
	margin: 0rem;
	display: inline-block;
}

/* font face ================================================*/
@font-face {
	font-family: "notosans-r";
	font-style: normal;
	font-weight: 400;
	src: url(../font/notosans-r.woff) format("woff");
}
@font-face {
	font-family: "notosans-b";
	font-style: normal;
	font-weight: 700;
	src: url(../font/notosans-b.woff) format("woff");
}
@font-face {
	font-family: "roboto-r";
	font-style: normal;
	font-weight: 400;
	src: url(../font/robot-r.woff) format("woff");
}
@font-face {
	font-family: "roboto-b";
	font-style: normal;
	font-weight: 700;
	src: url(../font/robot-b.woff) format("woff");
}

/*================================================================================================

* BASE *

================================================================================================*/
*,
*:after,
*::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	width: 100%;
	font-size: 17px;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	width: 100%;
	font-weight: normal;
	color: #666666;
	font-family: 'roboto-r', "notosans-r", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	overflow-x: hidden;
	line-height: 1.7;
	letter-spacing: 1px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	tap-highlight-color: rgba(0, 0, 0, 0);
	overflow-y: scroll;
}

/*================================================================================================

* SELECTION *

================================================================================================*/

::selection {
	background:#00B0FF;
	color: #fff;
}

::-moz-selection {
	background:#00B0FF;
	color: #fff;
}
/*================================================================================================

* GLOBAL *

================================================================================================*/

.root-wrap{
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	background: #fafafa;
	position: relative;
}

footer {
	padding: 2rem 1rem;
	text-align: center;
	background: -webkit-linear-gradient(342deg, #256aaa 0%, #2B8DCC 100%);
	background: -o-linear-gradient(342deg, #256aaa 0%, #2B8DCC 100%);
	background: linear-gradient(72deg, #256aaa 0%, #2B8DCC 100%);
	color: #fff;
	font-size: 0.8rem;
}

/* INNER ================================================*/
.p768{
	max-width: 768px;
	margin: 0 auto;
}
.p960{
	max-width: 960px;
	margin: 0 auto;
}
.p1024{
	max-width: 1024px;
	margin: 0 auto;
}
.p1240{
	max-width: 1240px;
	margin: 0 auto;
}

/* ** */
@media only screen and (max-width: 1440px) {
.p960{
	max-width: 880px;
}
/* ** */}
@media only screen and (max-width: 1280px) {
.p960{
	max-width: 768px;
}
/* ** */}
@media only screen and (max-width: 1024px) {
/* ** */}
@media only screen and (max-width: 768px) {
/* ** */}
@media only screen and (max-width: 480px) {
/* ** */}
