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

/*font*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap'); /* Google Fonts*/

/*reset*/
.pc_none{display: block;}
.sp_none{display: none;}
*{
 margin: 0;
 padding: 0;
 list-style: none;
 box-sizing: border-box;
 outline: none;
}
body{
	width: 100%;
	min-width: auto;
}
html{
 font-family:'Noto Sans JP',sans-serif;
	font-weight: 300;
 font-size: 62.5%;
 color: #333;
 background: #EFEFEF;
 line-height: 1.15;
 -webkit-text-size-adjust: 100%;
}
h1,h2,h3,h4,h5,h6{ font-size: inherit;}
main{
	min-width: auto;
	width: 100%;
	display: inline-block;
	margin-bottom: 0;
}

input,select,textarea{
 appearance: none;
 -webkit-appearance: none;
 border-radius: 0;
}
select::-ms-expand{ display: none;}
input:invalid{ box-shadow: none;}/*バリデーション時の赤枠消す*/
.textnone{
	display: block;
 text-indent: 100%;
 white-space: nowrap;
 overflow: hidden;
}
a{
	color: #4DB473;
	text-decoration: underline;
}
a[target="_blank"] {
	background: url("../images/common/blank.png") no-repeat right 50%;
	padding-right: 20px;
	margin-right: 5px;
}
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
textarea {
  resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
  display: none;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}

/*header*/
header{
	width: 100%;
	height: 50px;
	min-width: 100%;
}
.headerInner{
 width: 100%;
	padding: 0;
	display: block;
}
.logo a{
	width: 84px;
	height: 30px;
	margin: 10px 0 0 15px;
}

.menuBtn{
	width: 50px;
	height: 50px;
	position: fixed;
	top: 0;
	right: 0;
}
.menuBtn span{
 display: block;
 width: 28px;
 height: 2px;
 background-color: #333;
 position: absolute;
 right: 16px;
 transition: transform 0.2s, right 0.2s, opacity 0.2s;
 transform-origin: top left;
}
.menuBtn span:nth-of-type(1){ top: 14px;}
.menuBtn span:nth-of-type(2){ top: 24px; opacity: 1;}
.menuBtn span:nth-of-type(3){ top: 34px;}
.menuBtn.active span:nth-of-type(1){ transform: rotate(45deg);}
.menuBtn.active span:nth-of-type(2){ opacity: 0;}
.menuBtn.active span:nth-of-type(3){ transform: rotate(-45deg); right: 17px;}

.nav{
	background: #FFF;
	width: auto;
	display: none;
	flex-flow: column;
	justify-content: center;
	font-size: 2rem;
	font-weight: 400;
	padding: 20px 0 50px;
}
.nav li{
	text-align: center;
}
.nav li a{
	color: #333;
	width: auto;
	height: auto;
	text-decoration: none;
	display: inline-block;
	padding: 15px 10px;
}
.nav li a[target="_blank"] {
	background: none;
	padding-right: 10px;
	margin-right: 0;
}

.nav li a span{
	width: auto;
	height: auto;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.nav li a:hover span::after {
	width: auto;
	opacity: 0;
}



/*pankuzu*/
.pankuzu{
	width: 100%;
	padding: 0 15px;
	margin: 0 auto 30px;
	font-size: 1.2rem;
	display: flex;
	flex-wrap: wrap;
}
.pankuzu a:hover{
	text-decoration: none;
}
.pankuzu li:not(:last-of-type){
	margin-bottom: 10px;
}
.pankuzu li:not(:last-of-type)::after{
	content: '>';
	display: inline-block;
	padding: 0 5px;
	font-size: 1.2rem;
}
/*footer*/
footer{
	width: 100%;
	padding: 0 15px;
	min-width: 100%;
	font-size: 1.1rem;
}
footer .footerInner{
	width: 100%;
	height: auto;
	padding: 40px 0 20px;
	flex-flow: column;
}
footer .footerInner ul.policyList{
	width: auto;
	margin: 0 auto 40px;
	justify-content: flex-start;
}
footer .footerInner ul.policyList li{
	margin-right: 30px;
}
footer .footerInner ul.policyList li:last-child{
	margin-right: 0;
}
footer .footerInner ul.policyList li a:hover{
	text-decoration: underline;
}
footer .footerInner .footerSub{
	display: flex;
	flex-flow: column;
}
footer .footerInner .footerSub ul{
	display: flex;
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 40px;
}
footer .footerInner .footerSub ul li{
	display: flex;
	flex-flow: column;
	margin-right: 10px;
	text-align: center;
}
footer .footerInner .footerSub ul li:last-child{
	margin-right: 0;
}
footer .footerInner .footerSub ul li img{
	height: 54px;
	margin-bottom: 5px;


