html {
font-size : 100%;
line-height: 1.5;
font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, 'sans-serif';
}

body {
	margin: 0;
	height: 100vh;
	animation-name: fadein;
	animation-delay: 0.5s;
	animation-duration: 2s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadein{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

p {
    font-size: 24pt;
}

h1 {
    font-size: 24pt;
}

h2 {
	font-size: 18pt;
}

h3 {
	font-size: 14pt;
}

h4 {
	font-size: 12pt;
}

a {
    color: #0000EE;
    text-decoration: none;
}

/* -------------------- spanタグ -------------------- */
.text_bold {
	font-weight: bold;
}

.header_install_word {
	background-color: #f96f21;
	font-size: 3vw;
	font-weight: 300;
	padding: 2vw 7vw;
	border-radius: 50px;
}

a.white_link {
    color: #fff;
}

a.black_link {
    color: #000;
}

.theme_main {
	color: #19ab9e;
	font-weight: 900;
}

.theme_gray {
	color: #797979;
	font-weight: 900;
}

.theme_darkgray {
	color: #545253;
	font-weight: 900;
}

section.logo {
	height: 20%;
}

section.note {
	display: block;
	height: 80%;
	margin: -10% 5vw 0 5vw;
}

div.note_wrap {
	display: flex;
    justify-content: center;
    align-items: center;
	height: 100%;
}

p.note_p {
	font-size: 6vw;
}

img.footer_logo {
	padding: 0 2vw 2vw 1vw;
	width: 50vw;
}

div.footer_logo_background {
	background-color: white;
	background-image: url("/images/logo_Abc_beside_clear.png");
	background-size: 50vw;
	background-repeat: no-repeat;
	background-position: center center;
	height: 20vw;
}




/* -------------------- TOS -------------------- */
/* section */
section.tos_top {
	text-align: center;
	margin: 0;
	margin-bottom: 60px;
	padding-bottom: 20px;
}

section.tos_foreword {
	margin: 10px;
	margin-bottom: 100px;
}

section.tos_body {
	margin: 10px;
	margin-top: 20px;
	margin-bottom: 60px;
	border-top: solid 2px #BEBEBE;
	border-bottom: solid 2px #BEBEBE;
}
/* body */
p.title_text {
	font-size: 24px;
	font-weight: bold;
}

div.void_box {
	margin: 0 auto;
	font-size: inherit;
}

div.tos_body_box {
	margin-left: 30px;
	margin-top: -10px;
	padding-bottom: 20px;
}

div.margin_box_u20 {
	margin-top: 20px;
}

li.tos_li {
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}

ol.list_brackets {        /* (1),(2)...の箇条書き */
	padding: 0 0 0 2em;
	margin: 0;
}
ol.list_brackets li{
	list-style-type: none;
	counter-increment: cnt;
	margin-top: 20px;
	margin-bottom: 20px;
}
ol.list_brackets li::before {
	content: "(" counter(cnt) ")";
	display: inline-block;
	margin-left: -2em;
	width: 1.6em;
	font-size: 100%;
}

ol.list_square {        /* □の箇条書き */
	padding: 0 0 0 1.4em;
	margin: 0;
}
ol.list_square li{
	list-style-type: none;
	counter-increment: none;
	margin-top: 20px;
	margin-bottom: 20px;
}
ol.list_square li::before {
	content: "□";
	display: inline-block;
	margin-left: -1.4em;
	width: 1em;
}

@media screen and (min-width: 1000px) {
	
	section.logo {
		height: 100px;
	}
	
	div.footer_logo_background {
		display: absolute;
		background-size: 300px;
	}
	
	section.note {
		margin: 1vh 0 0 0;
	}
	
	p.note_p {
		font-size: 18pt;
		text-align: center;
	}
		
}

/* -------------------- D-prime -------------------- */