@charset "UTF-8";
/*
	BASE
*******************************/

/*
font-family: 'Noto Sans JP', sans-serif;

*/
* {
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,'Hiragino Kaku Gothic Pro',Osaka, "ＭＳ Ｐゴシック", "MS PGothic",sans-serif;
	margin: 0;
	padding: 0;
	box-sizing:border-box;
	font-feature-settings: "palt";
	line-height:1;
}

html {
	font-size:62.5%;
	line-height:1;
	body {
		font-size:1.6rem;
		background-color: #FFFFFF;
		min-width: 1200px;
		img {
			-webkit-backface-visibility: hidden;
			vertical-align:bottom;
			line-height:0;
			max-width: 100%;
			height: auto;
		}
		p,th,td,dt,dd,li,h1,h2,h3,h4,h5,h6,label {
			color:#333333;
		}
		a {
			color:#333333;
			text-decoration:none;
			outline:none;
			border:none;
			transition:.3s;
			&:hover {
				text-decoration:none;
			}
			img {
				outline:none;
				border:none;
				-webkit-backface-visibility: hidden;
			}
		}
		area {
			border:none;
			outline:none;
		}
		.clear { clear:both;}
	}
}

/*//////////////////////////////////////////////////////////////////////////*/

/*
	BASE LAYOUT
******************/

:root {
	--color_main:#0C7CE3;
}

#main {
	min-height: calc(100vh - 120px);
	min-height: calc(100dvh - 120px);
	.wrap {
		width:100%;
		padding:30px 0 60px;
		.contents {
			max-width:1200px;
			margin:0 auto;
			box-sizing:border-box;
			position: relative;
			p {
				font-size: 1.6rem;
				line-height: 1.6;
			}
		}
	}
}