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


/*reset*/
.pc_none{display: none !important;}
@media only screen and (max-width:768px) {
.pc_none{display: inherit !important;}
.sp_none{display: none !important;}
}
*{
 margin: 0;
 padding: 0;
 list-style: none;
 box-sizing: border-box;
 outline: none;
}
body{
	width: 100%;
	min-width: 1180px;
	position: relative;
	font-family: "Hiragino Sans","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ","Meiryo","ＭＳ Ｐゴシック","sans-serif","Helvetica","Arial";
 image-rendering: -webkit-optimize-contrast;
}
@media only screen and (max-width:768px) {
body{
	min-width: auto;
}
}
html{
	font-weight: 300;
 font-size: 62.5%;
 color: #444;
 background: #FFF;
 line-height: 1.15;
 -webkit-text-size-adjust: 100%;
}
h1,h2,h3,h4,h5,h6{ font-size: inherit;}

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: #4369D1;
	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;
}
::selection {
}




/*SP MENU*/
#menu {
 width: 100%;
 height: 100%;
	display: flex;
	justify-content:flex-start;
	flex-flow: column;
 position: fixed;
 z-index : 2;
 top  : 0;
 left : 0;
 background: #FFF;
 text-align: center;
 opacity: 0;
 transition: opacity .6s ease, visibility .6s ease;	
	visibility: hidden;
}
	/* このクラスを、jQueryで付与・削除する */
#menu.open {
  opacity: 100;
	visibility: inherit;
}
#menu ul.mainNav{
 margin: 0 auto 20px;;
 padding: 40px 40px 0;
 width: 100%;
}

/*メニューボタン*/
#menu_btn{
	width: 70px;
	height: 70px;
}
#menu_btn span{
 display: block;
 width: 17px;
 height: 1px;
 border-radius: 1px;
 background-color: #D41876;
 position: absolute;
 right: 22px;
 transition: transform 0.2s, right 0.2s, opacity 0.2s;
 transform-origin: top left;
}
#menu_btn span:nth-of-type(1){ top: 28px;}
#menu_btn span:nth-of-type(2){ top: 34px; opacity: 1;}
#menu_btn span:nth-of-type(3){ top: 40px;}
#menu_btn.active span:nth-of-type(1){ transform: rotate(45deg);}
#menu_btn.active span:nth-of-type(2){ opacity: 0;}
#menu_btn.active span:nth-of-type(3){ transform: rotate(-45deg); right: 23px;}
}



