@charset "UTF-8";

/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/

html,body{
	height:100%;
	background-color:white;
}

html{
	font-size:62.5%;
	overflow-y: scroll;
}

body{
	-webkit-text-size-adjust: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family: "Hiragino Sans","メイリオ",Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",Arial,Verdana,sans-serif;
	text-align: left;
	color:#333333;
}

h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, form, input, textarea, select{
	font-size: 1.4rem;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
			box-sizing: border-box; }

table{
	border-spacing: 0;
}

.wrap{
	width: 90%;
	margin: 0 auto;
}

.pc{
	display: none;
}

@media screen and (min-width: 769px) {
	h1, h2, h3, h4, h5, h6, p, address,
	ul, ol, li, dl, dt, dd,
	table, th, td, form, input, textarea, select{
		font-size: 1.6rem;
	}

	.wrap{
		max-width: 1000px;
	}

	.pc{
		display: block;
	}
	.sp{
		display: none;
	}
}




/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/
header{
	padding: 25px 0;
	background: #efefef;
}
header .main_ttl{
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.3;
}


@media screen and (min-width: 769px) {
	header .main_ttl{
		font-size: 2.8rem;
	}
}




/* ----------------------------------------------------------------------------------------------------
*  共通
* --------------------------------------------------------------------------------------------------*/
.txt{
	line-height: 1.6;
}

.bold{
	font-weight: bold;
}

.txt_up{
	text-transform: uppercase;
}
.txt_noup{
	text-transform: none;
}

.center{
	text-align: center;
}


@media screen and (min-width: 769px) {
}


/* box */
.flex{
	display: flex;
	justify-content: space-between;
}


@media screen and (min-width: 769px) {
}



/* ------------------------------
    content
------------------------------ */
.content{
	padding: 25px 0 40px;
}

.content *{
	word-break: break-all;
}

.content > *:first-child{
	margin-top: 0 !important;
}

.content .space{
	margin-top: 25px;
}

.content .ttl{
	margin: 25px 0 5px;
	padding-bottom: 2px;
	border-bottom: 1px solid #aaa;
	font-weight: 600;
	line-height: 1.6;
}

.content.law .ttl{
	margin-top: 30px;
}

.list li{
	margin: 2px 0;
	line-height: 1.6;
	text-indent: -3.5em;
	padding-left: 3.5em;
}

.list li .num{
	display: inline-block;
	width: 3.5em;
	text-indent: 0;
	letter-spacing: -0.05em;
	white-space: nowrap;
}

.list li.alp{
	text-indent: -2em;
	padding-left: 2em;
}
.list li.alp .num{
	width: 2em;
	letter-spacing: 0;
}


@media screen and (min-width: 769px) {
	.content{
		padding: 40px 0 60px;
	}

	.content .space{
		margin-top: 40px;
	}

	.content .ttl,
	.content.law .ttl{
		padding-bottom: 5px;
		margin-bottom: 10px;
		margin-top: 40px;
	}
}




/* ------------------------------
    clearfix
------------------------------ */

.cf:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.cf {display: inline-block;}

/* Hides from IE Mac */
* html .cf {height: 1%;}
.cf {display:block;}
/* End Hack */