@charset "utf-8";
/* ===================================================================
 style info : コンテンツエリア関係 他

fonts
 10px = 77%     11px = 85%     12px = 93%     13px = 100%
 14px = 108%    15px = 116%    16px = 123.1%  17px = 131%
 18px = 138.5%  19px = 146.5%  20px = 153.9%  21px = 161.6%
 22px = 167%    23px = 174%    24px = 182%    25px = 189%
 26px = 197%
=================================================================== */

/*----------------------------------------------------
	共通
----------------------------------------------------*/
/* スクロールバーの有無によるズレ対策 */
html {
	overflow-y: scroll;
}

body {
	font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}

input, textarea {
	font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}

/* リンク
----------------------------------------------------*/
a {
}

a:hover {
}

a:active {
}

/* よく使いそうなCSS3
----------------------------------------------------*/
#selectors {
/* 角丸 */
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;

/* 角丸個別 */
	-webkit-border-top-right-radius: 15px;
	-moz-border-radius-topright: 15px;
	border-top-right-radius: 15px;

/* ボックスに影 */
	-webkit-box-shadow: 1px 1px 3px #999;
	-moz-box-shadow: 1px 1px 3px #999;
	box-shadow: 1px 1px 3px #999;

/* テキストに影 */
	text-shadow: 1px 1px 0px #999;
}

/* 汎用
----------------------------------------------------*/
/* clerfix */
#contents:after {
	content: "."; display: block; visibility: hidden; height: 0.1px; font-size: 0.1em; line-height: 0; clear: both;
}

.imgR {
	float: right;
	margin: 0 0 10px 10px;
}

.imgL {
	float: left;
	margin: 0 10px 10px 0;
}

.tC,
.btn {
	text-align: center;
}

.tR,
.sign {
	text-align: right;
}


/*----------------------------------------------------
	.wrapper（ページ全体）
----------------------------------------------------*/
.wrapper {
	min-height: 100vh;
	position: relative;/*←相対位置*/
	padding-bottom: 100px;/*←footerの高さ*/
	box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
	width: 100%;
	margin: 0 auto;
	padding: 0;
	font-size: 100%;
	color: #333;
}


/*----------------------------------------------------
	header（ヘッダー）
----------------------------------------------------*/
header {
	width: 100%;
	/*background: tomato;*/
	text-align: center;
	padding: 30px;
}
header img.logo {
	width: 300px;
	height: auto;
	margin: 0 0 10px 0;
	padding: 0;
}
header h1 {
	font-size: 100%;
	margin: 0;
	padding: 0;
}
header h2 {
	font-size: 120%;
	color: #555;
}


/*----------------------------------------------------
	.container（メインとサイド）
----------------------------------------------------*/
.container {
	display: flex;
}


/*----------------------------------------------------
	.main（メインコンテンツ）
----------------------------------------------------*/
.main {
	/*background: pink;*/
	width: 100%;
	padding: 20px 0 80px 0;
}

.main table,
.main ol,
.main ul,
.main dl,
.main blockquote,
.main pre,
.main p {
	margin-bottom: 10px;
}
.main img {
	display: block;
}

.main .pageTop {
	clear: both;
	margin: 0;
	text-align: right;
}

.main ol li,
.main ul li {
	margin-left: 1.5em;
}

.main h3 {
	text-align: center;
	font-size: 300%;
	margin: 0 0 40px 0;
	padding: 0;
	line-height: 1.2;
	font-weight: bold;
}

.main .sampleimage {
	/*background: orange;*/
	width: 100%;
	height: 375px;
	margin-bottom: 40px;
	text-align: center;
	background-image: url(../img/comingsoon.jpg);
	background-repeat: repeat-x;
}
.main .sampleimage img {
	margin: 0 auto;
}
@media screen and (max-width: 500px) { 
.main .sampleimage {
	height: 375px;
	background-size: cover;
}
}
@media screen and (max-width: 499px) { 
.main .sampleimage {
	max-height: 200px;
	background-size: cover;
}
}

.main .text {
	padding: 0 20px;
	margin-bottom: 40px;
}

.main .keioTop {
	margin: 0 auto;
	padding: 0 20px;
	margin-bottom: 40px;
	text-align: center;
	width: 360px;
	height: 80px;
}
.main .keioTop a {
	display: block;
	text-decoration: none;
	font-weight: bold;
	padding: 24px;
	border: 3px solid #9c7852;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	
	background: #9c7852;
	color: #FFF;
}
.main .keioTop a:hover {
	background: #FFF;
	color: #9c7852;
}
.main .keioTop a:active {
	background: #FFF;
	color: #9c7852;
}

/*----------------------------------------------------
	footer（フッター）
----------------------------------------------------*/
footer {
	position: absolute;/*←絶対位置*/
    bottom: 0; /*下に固定*/
	width: 100%;
	/*background: plum;*/
	text-align: center;
	font-size: 90%;
	background: #555;
	color: #FFF;
	padding: 20px 0;
	
}
