@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
html{
  font-size: 62.5%;
  font-family: 'Noto Sans', sans-serif;
}
body{
	margin-top: 0px;
	background-color: #fff;
	animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
	font-size: 1.6rem;
}

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

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

h1,h2,h3,h4,h5,.sub_title {
	font-weight: bold;
	text-align: center;
}

p {
  font-size: 0.857rem;
  line-height: 180%;
  //font-weight: bold;
}

img{
max-width: 100%;
height: auto;
//width /***/:auto;
vertical-align:bottom;　
}
a:hover img.over{
opacity:0.6;
filter:alpha(opacity=60);
-ms-filter: "alpha( opacity=60 )";
}
a {
transition: color 0.3s ease 0s;
	text-decoration: none;
}
a:hover {
	color: #999;
}
a:visited {
	color: #fff;
}

.pc {
	display: block;
}
.mob {
	display: none;
}
.indentback1 {
	text-indent: -1em;
	padding-left: 1em;
}
.indentback2 {
	text-indent: -2em;
	padding-left: 2em;
}
.indentback3 {
	text-indent: -3em;
	padding-left: 3em;
}

main {
	width: 100%;
	margin: 50px auto;
}
strong {
	font-weight: bold;
}
.container {
	
}
h2 {
	font-size: 3rem;
	margin-bottom: 50px;
}

@media (max-width: 767px) {
	html{
		font-size: calc(100vw / 32);/*iPhoneの最小サイズ320pxに10px*/
	}
	h1 {
		font-size:2.0rem !important;/*320pxの時30pxに*/
	}
	p {
		font-size: 1.4rem !important;/*320pxの時14pxに*/
	}
	h2 {
		font-size: 1.8rem !important;
		margin-bottom: 30px;
	}
	h3 {
		font-size: 1.6rem !important;
	}
	.container {
	padding: 10px;
	}
	.pc {
	display: none;
	}
	.mob {
	display: block;
	}
}



