@charset "utf-8";

/*============================================================
リセット
============================================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html{
    overflow-y: scroll;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

input, textarea {
	margin: 0;
	padding: 0;
}

ol, ul{
    list-style:none;
}

table{
	border-collapse: collapse;
	border-spacing:0;
}

caption, th{
    text-align: left;
}

a:focus {
	outline:none;
}

/*============================================================
共通
============================================================*/
body {
 font-family: "メイリオ",Meiryo,  Verdana, '新ゴR', 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック',sans-serif;
 line-height: 1.7;
 -webkit-text-size-adjust: 100%;
}

p {
 color: #000;
 font-size: 15px;
 line-height: 26px;
}
@media screen and (max-width:640px){
p {
 font-size: 90%;
}
}
img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	vertical-align: bottom;
}
li {
 color: #000;
}

a:link,
a:visited{
 color:#000;
 text-decoration: none;
}

a:hover,
a:active{
 text-decoration: underline;
 transition: all 0.5s ease 0s;
}

.tel a {
	pointer-events : none;
	color: #fff;
}
@media screen and (max-width:960px){
.tel a {
	pointer-events: auto;
}
}

strong {
	font-weight: bold;
}
.cf:after {
  content: "";
  clear: both;
  display: block;
}

/*============================================================
form
============================================================*/
input {
 border: 1px solid #d6d3ce;
 border:0;
 padding:10px;
 font-size:1.3em;
 color:#555;
 border:solid 1px #ccc;
 border-radius: 3px;
 -moz-border-radius: 3px;
 -webkit-border-radius: 3px;
}
/*Firefox 19以降*/
input::-moz-placeholder {
 color:#999;
 font-weight:normal;
}
/*Windows IE*/
input:-ms-input-placeholder {
 color:#999;
}

/*============================================================
display
============================================================*/
.block{
	display:block;
}
.inline{
	display:inline;
}
.none{
	display:none;
}
.center {
 text-align: center;
}

/*============================================================
オンマウス
============================================================*/
/* 透過 */
.transmission:hover {
	opacity:0.80;
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  -ms-filter: "alpha(opacity=80)";
}
.button {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	line-height: 54px;
	outline: none;
}
.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button,
.button::before,
.button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

/*============================================================
エラー文字
============================================================*/
.atention_font{
	color:#CC0033;
	font-weight:bold;
	*white-space:nowrap;
}

/*============================================================
注意書き文字
============================================================*/
.caution_font {
 color: #d75737;
 font-size: 80%;
 line-height: 160%;
}
.attention {
	color: #d75737;
}

/*============================================================
style
============================================================*/
.no-marker {
	list-style-type: none;
}
.line_dot {
 border-bottom-width: 1px;
 border-bottom-style: dotted;
 border-bottom-color: #CCC;
 padding-bottom: 15px;
}
.line_top {
 border-top-width: 1px;
 border-top-style: solid;
 border-top-color: #CCC;
}
.line_under {
 border-bottom-width: 1px;
 border-bottom-style: solid;
 border-bottom-color: #CCC;
}
.indent {
 padding-right: 5px;
 padding-left: 5px;
}
.time {
 font-size: 80%;
 color: #999;
 padding-right: 10px;
 padding-left: 5px;
}
li.style_gry {
	background-color: #f6f6f6;
	border: 1px solid #e8e8e7;
	padding: 10px 10px 10px 25px;
	margin-bottom: 5px;
	background-image: url(../images/list_mark_blue.png);
	background-repeat: no-repeat;
	background-position: 10px 17px;
	background-size: 7px 7px;
}

/*============================================================
エフェクト
============================================================*/
/* フェードイン+上移動 */
.fadein_top {
	opacity: 0;
	transform: translate(0,60px); 
	-webkit-transform: translate(0,60px); 
}
.mv01{
	opacity: 1.0;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
}

/* ズームイン */
.zoom_in{
	transform: scale(0, 0);
	-webkit-transform: scale(0, 0);
}
.mv02{
	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
}

/* フェードインのみ */
.fadein {
	opacity: 0;
}
.mv03 {
	opacity: 1.0;
}

/*============================================================
マージン・パディング
============================================================*/
.mdt5 {
	margin-top: 5px;
}
.mdt10 {
	margin-top: 10px;
}
.mdt15 {
	margin-top: 15px;
}
.mdt20 {
	margin-top: 20px;
}
.mdt25 {
	margin-top: 25px;
}
.mdt30 {
	margin-top: 30px;
}
.mdb5 {
	margin-bottom: 5px;
}
.mdb10 {
	margin-bottom: 10px;
}
.mdb15 {
	margin-bottom: 15px;
}
.mdb20 {
	margin-bottom: 20px;
}
.mdb25 {
	margin-bottom: 25px;
}
.mdb30 {
	margin-bottom: 30px;
}
.mdb50 {
	margin-bottom: 50px;
}
.mdr5 {
	margin-right: 5px;
}
.mdr10 {
	margin-right: 10px;
}
.mdr15 {
	margin-right: 15px;
}
.mdr20 {
	margin-right: 20px;
}
.mdr25 {
	margin-right: 25px;
}
.mdr30 {
	margin-right: 30px;
}
.mdl5 {
	margin-left: 5px;
}
.mdl10 {
	margin-left: 10px;
}
.mdl15 {
	margin-left: 15px;
}
.mdl20 {
	margin-left: 20px;
}
.mdl25 {
	margin-left: 25px;
}
.mdl30 {
	margin-left: 30px;
}

.pdt5 {
	padding-top: 5px;
}
.pdt10 {
	padding-top: 10px;
}
.pdt15 {
	padding-top: 15px;
}
.pdt20 {
	padding-top: 20px;
}
.pdt25 {
	padding-top: 25px;
}
.pdt30 {
	padding-top: 30px;
}
.pdb5 {
	padding-bottom: 5px;
}
.pdb10 {
	padding-bottom: 10px;
}
.pdb15 {
	padding-bottom: 15px;
}
.pdb20 {
	padding-bottom: 20px;
}
.pdb25 {
	padding-bottom: 25px;
}
.pdb30 {
	padding-bottom: 30px;
}
.pdr5 {
	padding-right: 5px;
}
.pdr10 {
	padding-right: 10px;
}
.pdr15 {
	padding-right: 15px;
}
.pdr20 {
	padding-right: 20px;
}
.pdr25 {
	padding-right: 25px;
}
.pdr30 {
	padding-right: 30px;
}
.pdl5 {
	padding-left: 5px;
}
.pdl10 {
	padding-left: 10px;
}
.pdl15 {
	padding-left: 15px;
}
.pdl20 {
	padding-left: 20px;
}
.pdl25 {
	padding-left: 25px;
}
.pdl30 {
	padding-left: 30px;
}

/*============================================================
フロート
============================================================*/
.fll {
	float: left;
}
.flr {
	float: right;
}

/*============================================================
サイズ
============================================================*/
.lage {
 font-size: 16px;
}
.small {
	font-size: 80%;
}

/*============================================================
カラー
============================================================*/
.white {
	color: #FFF;
}
.black {
 color: #222;
}
.red {
 color: #8f1000;
}
.green {
 color: #089C4A;
}
.purple {
 color: #b98ebc;
}
.yellow {
 color: #F5AA00;
}


/*============================================================
テキストシャドウ
============================================================*/
.shadow {
 text-shadow: 0px 1px 0px rgba(255, 255, 255, 1);
 -webkit-text-shadow: 0px 1px 0px rgba(255, 255, 255, 1);
 -moz-text-shadow: 0px 1px 0px rgba(255, 255, 255, 1);
}


/*============================================================
form
============================================================*/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type=""],
textarea {
 border: 1px solid #e6e6e6;
 border:0;
 padding:8px;
 font-size: 100%;
/* color:#999; */
 border:solid 1px #ccc;
 margin:0;
 border-radius: 3px;
 -moz-border-radius: 3px;
 -webkit-border-radius: 3px;
 width: 80%;
}
select {
border: 1px solid #e6e6e6;
 border:0;
 padding:8px;
 font-size: 100%;
/* color:#999; */
 border:solid 1px #ccc;
 margin:0;
 border-radius: 3px;
 -moz-border-radius: 3px;
 -webkit-border-radius: 3px;
}
/*
input[type="submit"],
input[type="reset"],
input[type="button"] {
 color: #FFFFFF;
 padding: 8px 15px;
 cursor: pointer;
 background: #1C8CCD;
 border: 1px solid #ededed;
 border-radius: 3px;
 -moz-border-radius: 3px;
 -webkit-border-radius: 3px;
 font: 14px "Lucida Grande", "segoe UI", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", Meiryo, Arial, sans-serif;
 margin: 15px 10px 10px;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
 background: #4BB1EC;
 transition: all .3s;
}
*/

/*Firefox 19以降*/
input::-moz-placeholder {
 color:#999;
 font-weight:normal;
}
/*Windows IE*/
input:-ms-input-placeholder {
 color:#999;
}


/* メモCSS start

img {
	max-width:100%;
}

table {
	width:100%;
}

a,a:hover {
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}

a img:hover {
	filter: alpha(opacity=75);
	-moz-opacity:0.75;
	opacity:0.75;
}

よく使うCSS end -----
時々使うCSS3 start ---

テキストシャドウ {
	text-shadow: 1px 1px 3px #000;
}

テキストシャドウ {
	text-shadow: 1px 1px 3px #000;
}

ボックスシャドウ {
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

ボックスシャドウ内側 {
	-moz-box-shadow: inset 1px 1px 3px #000;
	-webkit-box-shadow: inset 1px 1px 3px #000;
	box-shadow: inset 1px 1px 3px #000;
}

角丸 {
	border-radius: 10px; 
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px; 
}

トランジション {
	-webkit-transition: 1.5s;
	-moz-transition: 1.5s;
	-o-transition: 1.5s;
	transition: 1.5s;
}

透明 {
	filter: alpha(opacity=25);
	-moz-opacity:0.25;
	opacity:0.25;
}

背景のみ透明 {
	background-color:rgba(255,255,255,0.2);
}

グラデーション {
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000')";
	background-image: -moz-linear-gradient(top, #ffffff, #000000);
	background-image: -ms-linear-gradient(top, #ffffff, #000000);
	background-image: -o-linear-gradient(top, #ffffff, #000000);
	background-image: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#000000));
	background-image: -webkit-linear-gradient(top, #ffffff, #000000);
	background-image: linear-gradient(top, #ffffff, #000000);
}

スマホ対応
@media screen and (max-width:768px){
	
}
@media screen and (max-width:640px){
	
}

メモCSS3 end */
