*{
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-webkit-text-size-adjust: 100%;
	text-decoration: none;
	text-shadow: none;
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}


html{
	height: 100%;
}

html,body{
	min-height: 100%;
}

body{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: normal;
	word-wrap:break-word;
	opacity: 0;
	color: #262828;
	counter-reset: list-counter;
	font-size: 18px;
}
.serif{
	font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}
/* font-family: 'Noto Sans JP', sans-serif; */
/* font-family: 'Noto Serif JP', serif; */
/* font-family: 'Oswald', sans-serif; */


/* element
---------------------*/
a,
a:active,
a:hover,
a:visited{
	color: #262828;
	cursor: pointer;
}

a,
a:hover,
a:before,
a:after{
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
}

a:hover{
	opacity: 0.7;
}
a.hover01{
	display: block;
	overflow: hidden;
	position: relative;
}
a.hover01:before {
	position: absolute;
	top: -3px;
	left: -3px;
	z-index: -1;
	content: '';
	width: 150%;
	height: 150%;
	transform-origin: right top;
	transform: skewX(-30deg) scale(0, 1);
	transition: transform 0.5s;
}
a.hover01:hover:before {
	transform-origin: left top;
	transform: skewX(-30deg) scale(1, 1);
}
a.hover02{
	display: block;
	overflow: hidden;
	position: relative;
}
a.hover02:before {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	width: 100%;
	height: 1px;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform 0.3s;
}
a.hover02:hover:before {
	transform-origin: left top;
	transform: scale(1, 1);
}



.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button,
.button::before,
.button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
}




ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
li{
	line-height: 1.6;
}
p{
	margin: 0 0 20px;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: 0.06rem;
}

figure{
	margin: 0;
}

.ol{
	padding-left: 30px;
	list-style: decimal outside;
}

ol li{
	margin-bottom: 15px;
	letter-spacing: 1px;
	line-height: 1.6;
}
ul li{
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: 0.06rem;
}
/*.list li:before{
	content: '';
	display: inline-block;
	width: 22px;
	height: 22px;
	background: #007CCA;
	vertical-align: middle;
	margin-right: 5px;
}*/
table{
	font-size: 18px;
	line-height: 1.5;
}
.table{
	width: 100%;
	border: 1px solid #E3E0E0;
	margin-bottom: 30px;
}
.table thead{
	background: #eeead6;
}
.table thead th{
	text-align: center;
	vertical-align: middle;
}
.table thead th .note{
	font-size: 12px;
}
.table caption.bottom{
	caption-side: bottom;
	padding: 10px 0;
	font-size: 14px;
	line-height: 1.5;
}
.table caption.left{
	text-align: left;
}
.table caption.right{
	text-align: right;
}
.table th,
.table td{
	font-weight: normal;
	border: 1px solid #E3E0E0;
	padding: 20px;
	vertical-align: middle;
	line-height: 1.5;
	letter-spacing: 0.1rem;
}

.table .classify{
	width: 12%;
}
.table .summary{
	width: 76%;
}
.table .result{
	width: 12%;
	text-align: center;
}

table.lineTable{
	width: 100%;
	margin: 0 auto 60px;
}
table.lineTable tr{
	border-bottom: 1px solid #E3E0E0;
}
table.lineTable th,
table.lineTable td{
	padding: 20px;
	text-align: left;
	font-weight: normal;
	line-height: 1.5;
}
table.lineTable th{
	width: 20%;
	white-space: nowrap;
}
table.lineTable td{
	width: 80%;
}
table.lineTable caption.left{
	text-align: left;
}
input[type="text"],
input[type="email"],
textarea{
	width: 100%;
}
input[type="submit"],
button{
	background: none;
	border: none;
}
iframe{
	vertical-align: bottom;
}



.flexContainer{
	display: flex;
}
.flexContainer.wrap{
	flex-wrap: wrap;
}
.flexContainer.around{
	justify-content: space-around;
}
.flexContainer.between{
	justify-content: space-between;
}
.flexContainer.w-center{
	justify-content: center;
}
.flexContainer.v-center{
	align-items: center;
}
.flex-2 .flex{
	width: 48%;
}
.flex img{
	width: 100%;
	height: auto;
}
@media screen and (max-width: 768px){
	.flexContainer.col2 .flex{
		width: 100%;
	}
}


/* Util
---------------------*/
.note{
	font-size: 13px !important;
}
.img100{
	width: 85%; height: auto;
}
.block{display: block;}
.txtC{text-align: center;}
.txtR{text-align: right;}
.indent{text-indent: -1em !important;}
.bold{font-weight: bold !important;}
.w-auto{width: auto !important;}

.mb0{margin-bottom: 0px !important;}
.mb10{margin-bottom: 10px !important;}
.mb20{margin-bottom: 20px !important;}
.mb30{margin-bottom: 30px !important;}
.mb40{margin-bottom: 40px !important;}
.mb50{margin-bottom: 50px !important;}
.mb70{margin-bottom: 70px !important;}
.mb80{margin-bottom: 80px !important;}
.mb100{margin-bottom: 100px !important;}

.mt0{margin-top: 0px !important;}
.mt10{margin-top: 10px !important;}
.mt20{margin-top: 20px !important;}
.mt30{margin-top: 30px !important;}
.mt40{margin-top: 40px !important;}
.mt50{margin-top: 50px !important;}
.mt100{margin-top: 100px !important;}

.ml20{margin-left: 20px;}
.ml40{margin-left: 40px;}

.mr20{margin-right: 20px;}
.mr40{margin-right: 40px;}

.pt10{padding-top: 10px !important;}
.pt20{padding-top: 20px !important;}
.pt30{padding-top: 30px !important;}
.pt40{padding-top: 40px !important;}
.pt50{padding-top: 50px !important;}

.bdt{border-top: 1px solid #7a7a7a;}
.bdb{border-bottom: 1px solid #717171;}
.bdn{border: none !important;}
.underline{text-decoration: underline;}

.tb{
	display: table;
}
.tc{
	display: table-cell;
	vertical-align: middle;
}

.br{display: block;}
br.pcNoBr{display: none;}

.icon{
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
	line-height: 1;
	position: relative;
}
.icon:before,
.icon:after{
	font-weight: 900 !important;
}
.bg-fix{
	background-attachment: fixed;
}


.btn{
  /* border-top-left-radius: 45px 45px;
  border-top-right-radius: 45px 45px;
  border-bottom-right-radius: 45px 45px;
	border-bottom-left-radius: 45px 45px; */
	font-size: 18px;
}

/* btn
---------------------*/
.btn01{
	position: relative;
	/* width: 240px; */
	margin: 40px auto;
	display: inline-block;
	/* color: #fff !important; */
	border: 2px solid #fff;
	padding: 15px 20px;
	text-align: center;
	border: 2px solid #2c2e7b;
	color: #2c2e7b !important;
	cursor: pointer;
	overflow: hidden;
	opacity: 1 !important;
}
.btn01:before {
	position: absolute;
	top: -3px;
	left: -3px;
	z-index: -1;
	content: '';
	width: 150%;
	height: 150%;
	background: #2c2e7b;
	transform-origin: right top;
	transform: skewX(-30deg) scale(0, 1);
	transition: transform 0.5s;
}
.btn01:hover{
	color: #fff !important;
}
.btn01:hover:before {
	transform-origin: left top;
	transform: skewX(-30deg) scale(1, 1);
}

.btn02{
	position: relative;
	width: 240px;
	margin: 20px auto;
	display: inline-block;
	border: 1px solid #fb729b;
  	padding: 15px 0;
	text-align: center;
	background: #fff;
	color: #fb729b;
	cursor: pointer;
}
.btn02:hover{
	background: #fb729b;
	color: #fff;
}
.btn03{
	display: inline-block;
	border: 1px solid #1E2844;
	font-size: 20px;
	color: #1E2844;
	letter-spacing: 0.05rem;
	text-align: center;
	padding: 20px 50px;
	margin-top: 30px;
	background: #fff;
}
.btn03:after{
	font-family: Font Awesome\ 5 Free;
	content: '\f105';
	position: absolute;
	top: 50%;
	right: 30px;
	margin-top: -8px;
	color: #1E2844;
}
.btn03.extarnal:after{
	content: "\f2d2";
	right: 20px;
}
.btn03:hover{
	background: #1E2844;
	color: #fff;
	opacity: 1;
}
.btn03:hover:after{
	right: 20px;
	color: #fff;
}




.btn04{
	margin: 0 1%;
	border: 1px solid #1E2844;
	position: relative;
	font-size: 16px !important;
	display: inline-block;
	margin: auto;
	text-align: center;
}
.btn04:before,
.btn04:after{
	content: '';
	display: inline-block;
	width: 14px;
	height: 1px;
	background: #1E2844;
	position: absolute;
}
.btn04:before{
	top: 4px;
    right: -3px;
	transform: rotate(45deg);
}
.btn04:after{
	bottom: 4px;
	left: -3px;
	transform: rotate(45deg);
}
.btn04 i{
	margin-left: 5px;
}
.btn04 span{
	position: relative;
	display: block;
	padding: 15px 50px;
}
.btn04 span:after{
	font-family: Font Awesome\ 5 Free;
	content: '\f105';
	position: absolute;
	top: 50%;
	right: 30px;
	margin-top: -7px;
	color: #1E2844;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
}
.btn04:hover{
	background: #1E2844;
	color: #fff;
	opacity: 1;
}
.btn04:hover:before,
.btn04:hover:after{
	background: #fff;
}
.btn04:hover span:after{
	right: 20px;
	color: #fff;
}


#formReset.btn02{
	border: 2px solid #aaa;
	color: #aaa;
}
#formBack.btn02{
	background: #ffabab;
}
#formBack.btn02 i{
	left: 20px !important;
	right: auto !important;
}


@media screen and (max-width: 768px){
}

@media screen and (max-width: 640px){

	table.lineTable th,
	table.lineTable td{
		display: block;
	}
	table.lineTable th{
		width: 100%;
		padding-top: 20px;
		font-weight: bold;
		background: #E3E0E0;
	}
	table.lineTable td{
		width: 100%;
	}

}




.wp-block-table table{
	width: 100%;
	margin: 0 auto 60px;
}
.wp-block-table table tr{
	border-bottom: 1px solid #E3E0E0;
}
.wp-block-table table th,
.wp-block-table table td{
	padding: 20px;
	text-align: left;
	font-weight: normal;
	line-height: 1.5;
}
.wp-block-table table tr td:first-child{
	width: 20%;
    white-space: nowrap;
}
.wp-block-table table tr td:last-child{
	width: 80%;
}
.wp-block-table table caption.left{
	text-align: left;
}


@media screen and (max-width: 640px){
	.spnobr{
		display: none;
	}
	.wp-block-table table th,
	.wp-block-table table td{
		display: block;
	}
	.wp-block-table table td:first-child{
		width: 100% !important;
		padding-top: 20px;
		font-weight: bold;
        background: #E3E0E0;
	}
	.wp-block-table table td{
		width: 100%;
	}
	.img100{
		width: 100%; height: auto;
	}
}
