/*reset*/

*, *:before, *:after {
	-webkit-box-sizing: border-box;
            box-sizing: border-box;
}

html {
	font-size: 62.5%;
	margin: 0;
	padding: 0;
}

body {
	font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue","游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN",メイリオ,Meiryo,sans-serif;
	font-size: 16px; 
	font-size: 1.6rem;
	line-height: 1.6;
	font-weight: 400;
	color: #000;
}

body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6,button,input,select,textarea {
	margin: 0;
	padding: 0;
}

h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: 600;
}

ul,dl {
	list-style: none;
}

img,embed,iframe,object,audio,video {
	height: auto;
	border: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,th {
	padding: 0;
	text-align: left;
}

a:link { color: #B70D10; }
a:visited { color: #B70D10; }
a:hover { color: #B70D10; }
a:active { color: #B70D10; }


input[type="submit"],input[type="button"] {
  	-webkit-box-sizing: content-box;
  	-webkit-appearance:none;
  	appearance: button;
  	cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  	display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}



/*container 調整-----------------------------------------------------------------------------*/

.container{
	width:100%;
	padding-right:0px;
	padding-left:0px;
	margin-right:auto;
	margin-left:auto
}

@media (min-width:576px){
	.container{max-width:767px}
}

@media (min-width:768px){
	.container{max-width:840px}
}

@media (min-width:992px){
	.container{max-width:840px}
}

@media (min-width:1200px){
	.container{max-width:840px}
}


/*表示-----------------------------------------------------------------------------*/

/*スマホ表示のみ*/
@media (min-width:768px){
	.hid_sm_xs {
		display: none !important;
	}
}

/*pc表示のみ*/
@media (max-width:767px){
	.hid_md_lg {
		display: none !important;
	}
}



	
