body {
	font-family: MyYuGothicM , YuGothic , -appple-system , BlinkMacSystemFont , "Hiragino Kaku Gothic ProN" , Meiryo , sans-serif ;
	color:#222;
	text-align:center;
	line-height:1.75;
	font-feature-settings : "palt";
	letter-spacing:1px;
	font-size:18px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background:linear-gradient(rgba(255,255,255,.8),rgba(255,255,255,.7)),url(../img/bg_pattern2.jpg)center/cover fixed;
    animation: fadeIn 3s;
    -webkit-animation: fadeIn 3s;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/**** header ****/
header{
	background:url(../img/bg_pattern.jpg) center/cover;
	padding: 3%;
}

/**** contents ****/
.inner{
	max-width:1000px;
	margin:1% auto 0;
	padding:3%;
	text-align:left;
	clear:both;
}
section{ 
	padding-bottom:3%;
}
.cvr{
	background:url(../img/bg_chart.jpg) center/cover;
	padding:1px;
}
.box{
	background:#fff;
	padding:3%;
	border:#eee 5px solid;
	border-radius:5px;
	margin-bottom:3%;
}
.boxWhite{
	background:#fff;
	padding:3%;
	border:#e4cdaa 8px solid;
	border-radius:5px;
	margin-bottom:3%;
	overflow:hidden;
}
.bgWhite{
	background:#fff;
}

/**** headline ****/
h2 {
	position: relative;
	background: #f4f4f4;
	font-size:2.5em;
	line-height:1.5;
	padding:.7em .3rem;
	margin-bottom: 1em;
	border-top: .01em solid #cfa972;
	border-bottom: .15em solid #cfa972;
}
h2:before{
	content: "";
	position: absolute;
	bottom: -1.65em;
	left: 50%;
	margin-left: -.95em;
	border: .85em solid transparent;
	border-top: .85em solid #f4f4f4;
	z-index: 2;
}
h2:after{
  content: "";
  position: absolute;
  bottom: -2em;
  left: 50%;
  margin-left: -1.1em;
  border: 1em solid transparent;
  border-top: 1em solid #cfa972;
  z-index: 1;
}
h3{
	background:linear-gradient(100deg,#c6b86a,#806325);
	font-size:1.6em;
	text-align:center;
	margin:0 0 1em;
	padding:.3em;
	color:#fff;
	border-radius:10px;
}

/**** inline ****/

p{
	margin-bottom:2em;
	line-height:2;
	text-align: justify;
}
p:last-child{
	margin-bottom:0;
}
p.columns{
	columns: 2;
	column-gap: 3em;
}
a{
	color:#333;
	transition:.3s;
}
a:visited,a:active,a:link{
	text-decoration:none;
	color:#333;
}
a:hover{
	text-decoration:none;
	opacity:.75;
}

/**** list ****/
ul{ margin-bottom:3%; }
li{ list-style:none; }
.check li{
	background:url(../img/check.png) center left no-repeat;
	background-size:2em;
	font-family: "Noto Sans Japanese";
	list-style:none;
	text-align:left;
	font-size:1.3em;
	font-weight:bold;
	border-bottom:#ccc 1px dotted;
	padding:.5em 0 .5em 3em;
}
.batsu li{
	background:url(../img/batsu.png) center left no-repeat;
	background-size:2em;
	font-family: "Noto Sans Japanese";
	list-style:none;
	text-align:left;
	font-size:1.3em;
	font-weight:bold;
	border-bottom:#ccc 1px dotted;
	padding:.5em 0 .5em 3em;
}
.maru li{
	background:url(../img/maru.png) center left no-repeat;
	background-size:2em;
	font-family: "Noto Sans Japanese";
	list-style:none;
	text-align:left;
	font-size:1.3em;
	font-weight:bold;
	border-bottom:#ccc 1px dotted;
	padding:.5em 0 .5em 3em;
}

/**** Q&A ****/
.q{ 
	min-height:2em; 
	background:url(../img/qa01.png) left top no-repeat;
	background-size:2.5em;
	padding:4px 0 20px 3em; 
	border-bottom:1px #CCC dashed;
	margin-bottom:1em;
	color:#06F;
	font-weight:bold; 
}
.a{ 
	min-height:2.5em; 
	background:url(../img/qa02.png) left top no-repeat;
	background-size:2.5em; 
	padding:4px 0 0 3em;
}


/**** table ****/
table{
	width:100%;
	margin-bottom:3%;
}
th,td{
	padding:.5em;
	border:#e6e6e6 1px solid;
	background:rgba(255,255,255,1);
	text-align: center;
}
th{
	vertical-align: middle;
	text-align: center;
	background:#23b1ff;
	color:#fff;
}
form th{width:11em !important;}

/***** form *****/
form{
	text-align:left;
	margin:0 auto;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea{
	font-size:2em;
	width:100%;
	padding:1em;
	border:none;
	outline:none;
	background:#fff;
	font-size:2em;
	border-radius:10px;
	transition:.3s;
}
textarea{
	height:10em !important;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus{
	background:#ff6;
	border:none;
	outline:none;
}
input[type="submit"],.button{
	font-size:1.3em;
	background:#0024ac;
	color:#fff;
	padding:1em 2em;
	border-radius:3em;
	line-height:1.5;
	transition:.3s;
	margin:0 auto;
	display:block;
	text-align:center;
	max-width:30em;
	border:none;
	outline:none;
}
a.button{ color:#fff !important;}
input[type="submit"]:hover{
	background:#3357df;
}
input[type="image"]{
	transition:.3s;
}
input[type="image"]:hover{
	opacity:.7;
}
.rei{
	font-size:.7em;
	color:#999;
}

/**** footer ****/
footer{
	clear:both;
	background:#ccc;
	color:#666;
	font-size:8px;
	padding:1em 3%;
}
footer .content2{
	text-align:right !important;
}
footer span{
	display:inline-block;
	font-size:.6em;
}
footer a{
	color:#666 !important;
}
/**** back to top btn ****/
.back{
	position:fixed;
	display:block;
	bottom:18vh;
	right:10px;
	width:44px;
	height:60px;
	border-right:#999 1px solid;
	z-index:10;
	transition:.3s;
}
.back:after{
	content:"";
	position:absolute;
	top:6px;
	right:-5px;
	width:18px;
	height:1px;
	background:#999;
	transform:rotate(-60deg);
}
.back:hover{
	height:90px;
}

.fuwatAnime {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fuwatAnime;
 -ms-animation-name: fuwatAnime;
 animation-name: fuwatAnime;
 visibility: visible !important;
}
.fuwatAnimeNone *{ visibility: visible !important;}

@-webkit-keyframes fuwatAnime {
 0% { opacity: 0; -webkit-transform: translateY(3em); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fuwatAnime {
 0% { opacity: 0; -webkit-transform: translateY(3em); -ms-transform: translateY(3em); transform: translateY(3em); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}
	
@media screen and (max-width:640px){
body{font-size:13px;}
h2{	font-size:1.3em;}
h3{ font-size:1.3em;}
h4{ font-size:1.2em;}
h5{ font-size:1.3em;}
.check li{font-style: 1.1em;}

.box2{
	padding:3%;
	border-radius:20px;
}
table{
	font-size:.7em;
}
p.columns{columns: 1;column-gap: 3em;}
#timer {font-size: 15px;}
.inner{
	margin:0 auto 0;
}
.sp_only{
	display: block;
}
section{ 
	padding-bottom:0;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea{
	font-size:1.5em;
}

}