@charset "utf-8";

* {
	box-sizing: border-box;
}


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

body{
	margin: 0;
	padding: 0;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, pre, form, 
blockquote, fieldset, input, address,figure {
margin: 0;
	padding: 0;
	font-size: 1.4rem;
	line-height: 2;
	letter-spacing: 0.05em;
	font-weight: 400;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, nav, section, summary {
    display: block;
}
ul,ol {
	list-style-position: outside;
	list-style-type: none;
}

img {
	max-width: 100%;
}

@media screen and (min-width:769px) {
	html {
		font-size: 12px;
		/*
		1.1rem = 13px
		1.2rem = 14px
		1.25rem = 15px
		1.33rem = 16px
		*/
	}
}
@media screen and (max-width:768px) {
	html {
		font-size: cale(0.75rem + ((1vw - 7.68px)*0.463));
	}
	
}

body {
	font-family: 'IBM Plex Serif', serif;
	color: #372121;
}

a { outline: none; }

address { font-style: normal; }

table {
	border-collapse: collapse;
	border-spacing: 0;
}
th, td {
	font-weight: normal;
	vertical-align: top;
	text-align: left;
}

caption { text-align: left; }

fieldset { border: none; }

legend { display:none; }

input[type=radio], 
input[type=checkbox], 
select {
	vertical-align: middle;
}
img {
	border: none;
	vertical-align: top;
}

/**
 * --------------------------------------------------------------------------
 * link
 * --------------------------------------------------------------------------
 */
a {
	color: #372121;
}
a:link {
	color: #372121;
}

a:visited {
	color: #372121;
}

a:hover {
	color: #bde2df;
	text-decoration: none;
}
 
a:active {
	color: #372121;
}

/**
 * --------------------------------------------------------------------------
 * clearfix
 * --------------------------------------------------------------------------
 */
.clearfix:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
}

.clearfix {
	*zoom: 1;
}

/**
 * --------------------------------------------------------------------------
 * common class
 * --------------------------------------------------------------------------
 */
.hidden {
	display: none;
}
.img_hover,
.jqHover {}
.jqHidden {
	display: none;
}
.jqInv {
	visibility: hidden;
}
.cssHover {
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	transition: opacity 0.3s;
	opacity: 1;	
}
.cssHover:hover {
	opacity: 0.6;
}
.fitImg {
	width: 100%;
	max-width: 100%;
}
@media screen and (min-width:769px) {
	.onlySp {
		display: none;
	}
}
@media screen and (max-width:768px) {
	.onlyPc {
		display: none;
	}
}

