@charset "UTF-8";
/*common/module.css*/
/*==================
 ▼ブレイクポイントのルール▼
 -モバイルファースト-
 *〜479px：SP縦
 *480px〜：SP横
 *600px〜タブレット
 *960px〜小型PC
 *1280px〜大型PC
==================*/

/*-----------------------------------------------------------*/
/*　normalizeと枠組みのCSSです。
/*　キャンペーン用の元CSSなので直接手を加えることは禁止。
/*　レイアウト関係は別のCSSファイルを作成すること。

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:0;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit;font-weight:bolder}code,kbd,samp{font-family:monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type="button"]{-webkit-appearance:button}[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}[hidden],template{display:none}


/*------------------------------------------------------------------------------*/
/*  大枠デザインCSS
/*------------------------------------------------------------------------------*/
p, dl, dt, dd {margin: 0; padding: 0;}
ul {margin: 0; padding: 0; list-style: none;}
img {vertical-align: bottom;}
label{cursor: pointer;}
textarea,input,select {border: 1px solid #ccc; padding: 2px;}
table {border-collapse: collapse; border-spacing: 0;}
body {font: 16px/1.5 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; color: #333; background: #FFF;}
@media screen and (min-width:1280px) {
	body {font: 14px/1.5;}
}
a {text-decoration: none; color: #333;}

/*--------------------------------------------------*/
/*  メイン画像
/*--------------------------------------------------*/
@media screen and (min-width:960px) {
 #mainWrap {
		background: url(../../images/common/bg_main.png) no-repeat center bottom #efefef; /* Old Browsers */
		background: url(../../images/common/bg_main.png) no-repeat 50% 100%, -webkit-linear-gradient(to bottom, #fff 10%, #efefef); /*For Old WebKit*/
		background: url(../../images/common/bg_main.png) no-repeat 50% 100%, linear-gradient(to bottom, #fff 10%, #efefef); /*For Modern Browser*/
	 	border-bottom: 3px solid #E0E0E0;
	 	padding: 0;
	 	width: 100%;
	}
}
@media screen and (min-width:1280px) {
	#mainWrap {
    	min-width: 1024px;
    	padding: 32px 0;
	}
}
#mainWrap .mainImg {
    background-color: #FFF;
    margin: 0 auto;
	overflow: hidden;
    padding: 0;
	text-align: center;
}
@media screen and (min-width:1280px) {
	#mainWrap .mainImg {
    	width: 1000px;
	}
}
#mainWrap .mainImg img {
    width: 100%;
}
@media screen and (min-width:960px) {
	#mainWrap .mainImg img {
		max-width: 1000px;
	}
}

/*--------------------------------------------------*/
/*各ページタイトルなど
/*--------------------------------------------------*/
.pageTitle {
	color: #00BEF2;
    font-size: 20px;
	font-weight: bold;
    padding: 32px 0 16px;
	text-align: center;
}
@media screen and (min-width:1280px) {
	.pageTitle {
    	font-size: 24px;
	}
}

/*--------------------------------------------------*/
/*footer
/*--------------------------------------------------*/
footer {
    border-top: 1px solid #9DD8F6;
    clear: both;
    padding: 0;
	width: 100%;
}
@media screen and (min-width:960px) {
	footer {
    	min-width: 960px;
    	padding-top: 20px;
	}
}

/*--ボックス--*/
.box1000 {
	margin: 0 auto;
	max-width: 1000px;
}

/* ページトップ */
.pTop {
	padding-top: 20px;
    padding-right: 10px;
	text-align: right;
}
.pTop a {
	background: linear-gradient(to bottom, #69C5F1, #9DD8F6);
	border-radius: 5px 5px 0 0; /*CSS3草案*/
	-webkit-border-radius: 5px 5px 0 0; /*Safari,Google Chrome用*/
    -moz-border-radius: 5px 5px 0 0; /*Firefox用*/
	color: #FFF;
    display: inline-block;
	font-size: 12px;
    padding: 4px 16px 4px 32px;
    position: relative;
}
@media screen and (min-width:960px) {
	.pTop a {
		background: #69C5F1;/* Old Browsers */
		background: -webkit-linear-gradient(to bottom, #69C5F1, #9DD8F6); /*For Old WebKit*/
		background: linear-gradient(to bottom, #69C5F1, #9DD8F6); /*For Modern Browser*/
	}
}

.pTop a::after {
	border-top: 2px solid #fff;
    border-left: 2px solid #fff;
	content: '';
	display: block;
	height: 4px;
	left: 14px;
	margin-top: -1px;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
    transform: rotate(45deg);
	width: 4px;
}
footer .fWrap {
	margin: 0 auto;
    min-height: 96px;
    position: relative;
	text-align:  center;
	width: 90%;
}
@media screen and (min-width:960px) {
		footer .fWrap {
			text-align: left;
	}
}
@media screen and (min-width:1280px) {
	footer .fWrap {
		margin: 0 auto;
    	min-height: 96px;
    	position: relative;
		width: 1000px;
	}
}
footer h1 {
    font-size: 14px;
    font-weight: normal;
	margin-top: 20px;
}
footer h1 img {
	margin-left: 10px;
	max-width: 400px;
    min-width: 160px;
    vertical-align: middle;
	width: 20%;
}
@media screen and (min-width:960px) {
	footer h1 img {
    	width: 160px;
	}
}
footer .fBox {
    width: 100%;
}
@media screen and (min-width:960px) {
	footer .fBox {
		left: 0;
		position: absolute;
		top: 60px;
		width: 550px;
	}
}
footer ul.fNavi {
    margin-bottom: 16px;
}
footer ul.fNavi li {
	display: inline-block;
    font-size: 12px;
    padding: 10px;
	width: 100%;
}
@media screen and (min-width:480px) {
	footer ul.fNavi li {
		width: auto;
	}	
}
@media screen and (min-width:960px) {
	footer ul.fNavi li {
    	padding: 0 16px 0 0;
	}
}
footer dl.fInfo {
	font-size: 12px;
    padding: 8px 0 0;
	width: 100%;
}
@media screen and (min-width:960px) {
	footer dl.fInfo {
		border-left: 1px solid #CCC;
		padding: 8px 0 8px 32px;
		position: absolute;
		right: 0;
		top: 0;
		width: 282px;
	}
}

footer dl.fInfo dd img {
    margin: 0 4px 4px 0;
	vertical-align: middle;
	width: 60px;
}
@media screen and (min-width:960px) and ( max-width:1280px) {
	footer dl.fInfo dd img {
    	height: 26px;
	}
}
footer dl.fInfo dd {
    font-size: 11px;
    line-height: 1.4;
}
footer dl.fInfo li.tell {
    font-size: 24px;
}

/*--問い合わせボタン--*/
.contact {
	background: #CFCFCF;
	border-radius: 12px;
	box-sizing: border-box;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 20px;
	height: 50px;
	letter-spacing: .2em;
	line-height: 2.5;
	margin: 10px auto 0;
	max-width: 320px;
	padding: 0 0 0 40px;
	text-align: center;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	width: 100%;
}
@media screen and (min-width:960px) {
	.contact {
		max-width: 282px;
	}
}
.contact:hover {
	background: #00BEF2;
}
/*ボタンアイコン_メール*/
.contact::before {
	background: transparent;
	content: '\f0e0';
	font-family: FontAwesome;
	font-size: 28px;
	line-height: normal;
	margin: 0 20px 0 -40px;
}

.copyright {
    background: #9DD8F6;
    clear: both;
	color: #FFF;
    font-size: 12px;
	margin-top: 16px;
    padding: 8px 10px;
    text-align: center;
}
@media screen and (min-width:1280px) {
	.copyright {
		margin-top: 32px;
    	min-width: 1024px;
    	padding: 8px 0;
	}
}

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