@charset "UTF-8";
@import url("grid.css");

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #000;
    --link-color: #666;
    --linkhover-color: #999;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
}

/* 全体の設定
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	font-size: 62.5%;
}
body{
	margin: 0;
	padding: 0;
}


.container{
	margin: 0;
	padding: 32px;
	text-align: center;
}

.container .col{
 text-align: left;
}

.container video{
	padding: 0;
	width: 100%;
	max-width: 1920px;
	/*max-width: 100%;*/

	/*min-height: 480px;*/
	height: auto;
	max-height: 1080px;
	margin: 0 auto 32px;
	background: #fff;
}
.container p{
	font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	margin-bottom: 16px;
}


