@charset "utf-8";
/* CSS Document */


body {
	overflow: hidden;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
}

p {
	margin-bottom: 1rem;
}

hr {
	border: none;
	margin: 30px 0;
}

/*
########################################################
  TABLE
########################################################
*/

table {
	width: 100%;
	margin: 5px 0;
	border-collapse: collapse;
}

th,
td {
	border-collapse: collapse;
	padding: 10px;
}

th {
	white-space: nowrap;
    width: 100px;
	padding-right: 60px;
}

@media screen and (max-width: 600px) {	
	th {
		white-space: pre-wrap;
		padding-right: 10px;
		width: auto;
	}
}

.table-style-border,
.table-style-border th,
.table-style-border td {
    border: 1px solid #e6e6e6;
}

.table-style-thead thead th {
    background-color: #f1f1f1;
}

.table-style-tbody tbody th {
    background-color: #f1f1f1;
}


/* レスポンシブテーブル　見出し1個
==================================*/
table.table-respo-style-1midashi th,
table.table-respo-style-1midashi td{
	border: solid 1px #999;
}

@media only screen and (max-width:568px){
    table.table-respo-style-1midashi th,
    table.table-respo-style-1midashi td{
		width: 100%;
		display: block;
		border-top: none;
    }
  table.table-respo-style-1midashi tr:first-child th {
	  border-top: 1px solid #999;
	}
}

/* レスポンシブテーブル　見出し２個
==================================*/
table.table-respo-style-2midashi {
	border: 1px solid #999;
}

table.table-respo-style-2midashi thead th {
	background: #999;
	color: #fff;
	border-right: #fff solid 1px;
	text-align: center;
	padding-right: 18px;
}

table.table-respo-style-2midashi thead th:last-child {
	border-right: #999 solid 1px;
}

table.table-respo-style-2midashi tbody th {
	border-bottom: #999 solid 1px;
	border-left: #999 solid 1px;
	vertical-align: top;
}

table.table-respo-style-2midashi tbody td {
	border-left: #999 solid 1px;
	border-bottom: #999 solid 1px;
	vertical-align: top;
}

@media screen and (max-width: 568px) {
	table.table-respo-style-2midashi {
		margin-top: 30px;
	}
	
	table.table-respo-style-2midashi thead {
		display: none;
	}
	
	table.table-respo-style-2midashi tbody th {
		display: block;
		background-color: #999;
		color: #fff;
	}

	table.table-respo-style-2midashi tbody td {
		display: block;
	}

	table.table-respo-style-2midashi tbody td::before {
		content: attr(label);
		display: block;
		clear: both;
		font-weight: bold;
	}
}

/*
########################################################
  Decoration
########################################################
*/

/* 角丸
==================================*/
.radius {
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

/* ボックス横並び　均等
==================================*/
.row {
	letter-spacing: -.40em;
}

.row .col {
	margin-bottom: 10px;
	display: inline-block;
	letter-spacing: normal;
	vertical-align: top;
}

.row.row-2 .col {/* 2列 */
	width: 49%;
	margin-right: 2%;
}

.row.row-2 .col:nth-child(2n) {
	margin-right: 0;
}

.row.row-3 .col {/* 3列 */
	width: 32%;
	margin-right: 2%;
}

.row.row-3 .col:nth-child(3n) {
	margin-right: 0;
}

@media screen and (max-width: 960px) {
	.row.row-clear-forTablet .col {
		display: block;
	}
	
	.row.row-clear-forTablet.row-2 .col {/* 2列 */
		width: auto;
		margin-right: 0;
	}
	
	.row.row-clear-forTablet.row-3 .col {/* 3列 */
		width: auto;
		margin-right: 0;
	}
}

@media screen and (max-width: 600px) {
	.row.row-clear-forSp .col {
		display: block;
	}
	
	.row.row-clear-forSp.row-2 .col {/* 2列 */
		width: auto;
		margin-right: 0;
	}
	
	.row.row-clear-forSp.row-3 .col {/* 3列 */
		width: auto;
		margin-right: 0;
	}
}

@media screen and (max-width: 480px) {
	.row.row-clear-forSptate .col {
		display: block;
	}
	
	.row.row-clear-forSptate.row-2 .col {/* 2列 */
		width: auto;
		margin-right: 0;
	}
	
	.row.row-clear-forSptate.row-3 .col {/* 3列 */
		width: auto;
		margin-right: 0;
	}
}

/* リスト
==================================*/
.list-style-disc li,
.list-style-disc dd {
    display: list-item;
	list-style-type: disc;
	margin-left: 20px;
}

.list-style-disc .list-style-none {
    display: block;
    list-style-type: none;
    margin-left: 0;
}

.list-style-number {
	counter-reset: li;
	list-style: none;
	padding-left: 0;
}
.list-style-number > li {
	position: relative;
	padding-left: 1.5em;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}
.list-style-number > li:before {
	content: counter(li) "";
	counter-increment: li;
	position: absolute;
	left: 0;
    top: 3px;
	width: 1.1em;
	height: 1.1em;
    border: 1px solid #333;
	border-radius: 50px;
	line-height: 1.2;
	text-align: center;
}

dl.list-style-number {
	counter-reset: dd;
	list-style: none;
	padding-left: 0;
}
dl.list-style-number > dd {
	position: relative;
	padding-left: 1.5em;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}
dl.list-style-number > dd:before {
	content: counter(dd) "";
	counter-increment: dd;
	position: absolute;
	left: 0;
    top: 3px;
	width: 1.1em;
	height: 1.1em;
    border: 1px solid #333;
	border-radius: 50px;
	line-height: 1.2;
	text-align: center;
}

.list-style-number.number-color-black > li::before,
.list-style-number.number-color-black > dd::before{
    background: #333;
    color: #fff;
}

/*
########################################################
  BOX
########################################################
*/

.fieldBlock {
	clear: both;
	width: 100vw;
}

.innerBlock {
	max-width: 1000px;
	width: 100%;
	padding: 0 10px;
	margin: 0 auto;
}

/*
########################################################
  float
########################################################
*/

.flexbox {
	display: flex;
    justify-content: space-between;
}

.flexbox-justify-around {
    justify-content: space-around;
}

.flexbox-justify-between {
    justify-content: space-between;
}

.fix-wide {
	flex-shrink: 0;
}

.auto-wide {
	flex-basis: 100%;
}

.flexbox div:nth-child(1) {
	margin-right: 30px;
}

@media screen and (max-width: 960px) {	
	.flexbox div:nth-child(1) {
		margin-right: 10px;
	}
	
	.fix-wide {
		flex-shrink: 1;
	}
    
    .flexbox.clear-forTablet {
        display: block;
    }
    
    .flexbox.clear-forTablet .fix-wide,
    .flexbox.clear-forTablet .auto-wide {
        margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 600px) {
    .flexbox.clear-forSp {
        display: block;
    }
    
    .flexbox.clear-forSp .fix-wide,
    .flexbox.clear-forSp .auto-wide {
        margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .flexbox.clear-forSptate {
        display: block;
    }
    
    .flexbox.clear-forSptate .fix-wide,
    .flexbox.clear-forSptate .auto-wide {
        margin-bottom: 1.5rem;
    }
}

/*
########################################################
  IMAGES
########################################################
*/

.imgfloatR {
	float: right;
	margin: 0 0 10px 10px;
}

.imgfloatL {
	float: left;
	margin: 0 10px 10px 0;
}

@media screen and (max-width: 480px) {
	.imgfloatR {
		float: none;
		margin: 0 0 10px 0;
	}
	
	.imgfloatL {
		float: none;
		margin: 0 0 10px 0;
	}
}

@media screen and (max-width: 960px) {
	.imgfloatR.clear-forTablet {
		float: none;
		margin: 0 0 10px 0;
	}
	
	.imgfloatL.clear-forTablet {
		float: none;
		margin: 0 0 10px 0;
	}
}

/*
########################################################
  iframe
########################################################
*/

.responsive_iframe {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	overflow: hidden;
}
.responsive_iframe iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%!important;
	height: 100%!important;
}

/*
########################################################
  Responsive
########################################################
*/

@media screen and (max-width: 480px) {	
	.display-none {
		display: none;
	}
	
	.float-clear {
		float: none;
		width: auto;
	}
}

@media screen and (max-width: 960px) {	
	.display-none-forTablet {
		display: none;
	}
	
	.float-clear-forTablet {
		float: none;
		width: auto;
	}
}

.only_sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.only_sp {
		display: inline-block;
	}
	
	.only_pc {
		display: none;
	}
}