@charset "utf-8";
/*--------------------------------------*/
/* PCと共通スタイル                     */
/*--------------------------------------*/
body {
		font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka,"游ゴシック体","YuGothic","ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		font-weight: normal;
}
p {
	margin-bottom: 1em;
}
a {
	text-decoration: none;
	color: #23788D;
}
a:hover {
	color: #6EB82B;
}
.txt10 {
	font-size: 10px;
}
.txt-red {
	color: #FF0000;
}
.aline-left {
	text-align: left;
}
.aline-right {
	text-align: right;
}
.aline-center {
	text-align: center;
}
.photo-left {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}
.photo-right {
	float: right;
	margin-bottom: 10px;
	margin-left: 10px;
}
.nomal-dl dt{
	margin-bottom: 5px;
	font-weight: bold;
}
.nomal-dl dd {
	margin-left: 2em;
	margin-bottom: 10px;
}
.nomal-ul {
	margin-bottom: 10px;
}
.nomal-ul li{
	list-style-type: disc;
	margin-left: 20px;
	margin-bottom: 10px;
}
.border-table {
	border: 1px solid #CCC;
}
.border-table th {
	border: 1px solid #CCC;
	text-align: center;
	padding: 5px;
	background-color: #999;
	color: #FFF;
	vertical-align: middle;
}
.border-table td {
	border: 1px solid #CCC;
	padding: 5px;
}
/*======================================
	.clrFix関係
======================================*/
.clrFix{
  overflow:hidden;
}
.clrFix:after{
  content:".";
  display:block;
  height:0;
  clear:both;
  visibility:hidden;
}
* html .clrFix{
  zoom:1;/* for hasLayout */
  overflow:visible;
}

/*--------------------------------------*/
/* PCスタイル                           */
/*--------------------------------------*/
@media screen and (min-width: 481px) {
	body {
		font-size: 12px;
		line-height: 170%;
		letter-spacing: 0.1em;
	}
	h1 {
		font-size: 26px;
	}
	h2 {
		font-size: 24px;
	}
	h3 {
		font-size: 22px;
	}
	h4 {
		font-size: 20px;
	}
	h5 {
		font-size: 18px;
	}
	h6 {
		font-size: 16px;
	}
	.float-left {
		float: left;
	}
	.float-right {
		float: right;
	}
	.float-clear {
		clear: both;
	}
}
/*--------------------------------------*/
/* スマホスタイル                       */
/*--------------------------------------*/
@media screen and (max-width: 480px) {
	html { font-size: 62.5%; }
	body {
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 170%;
	}
	h1 {
		font-size: 26px;
		font-size: 2.6rem;
	}
	h2 {
		font-size: 24px;
		font-size: 2.4rem;
	}
	h3 {
		font-size: 22px;
		font-size: 2.2rem;
	}
	h4 {
		font-size: 20px;
		font-size: 2.0rem;
	}
	h5 {
		font-size: 18px;
		font-size: 1.8rem;
	}
	h6 {
		font-size: 16px;
		font-size: 1.6rem;
	}
	.txt10 { font-size: 10px; font-size: 1.0rem; }
	
	/*--------------------------------------------------*/
	/*以下CSS3での装飾スタイル。色やサイズは変更すること*/
	.STR {//背景にストライプ
		margin: 0;
		padding: 10px 15px;
		background-color: #e56183;
		background-image: -webkit-linear-gradient(-45deg, #de3d66 25%, transparent 25%, transparent 50%, #de3d66 50%, #de3d66 75%, transparent 75%, transparent);
		background-image: linear-gradient(-45deg, #de3d66 25%, transparent 25%, transparent 50%, #de3d66 50%, #de3d66 75%, transparent 75%, transparent);
		background-size: 12px 12px;
		text-shadow:1px 1px 2px rgba(0,0,0,.3);
	}
	.BUT {//ボタン
		display: inline-block;
		width: 200px;
		height: 50px;
		background-color: #f56778;
		background-image: -webkit-linear-gradient(top, #f997b0, #f56778);
		background-image: linear-gradient(to bottom, #f997b0, #f56778);
		box-shadow: inset 1px 1px 0 #fbc1d0;
		border-bottom: 4px solid #cb5462;
		border-radius: 4px;
		color: #fff;
		text-align: center;
		text-decoration: none;
		text-shadow: 0px 1px 0px #f56778;
		line-height: 50px;
		outline: none;
	}
	.ARW a::after {//リンクの右に＞をCSSで作る。色や太さを変えたい時borderの値を変更
		position: absolute;
		top: 50%;
		right: 10px;
		display: block;
		content: '';
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 1px solid #888;
		border-right: 1px solid #888;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}
/*--------------------------------------------------*/
/*高解像度ディスプレー対応画像を別途設定したい時    */
/* devicePixelRatio=1.5  主にAndroid                */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),only screen and (min-device-pixel-ratio: 1.5) {
	/* style here... */
}

/* devicePixelRati=2  主にiPhone                    */
@media only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (min-device-pixel-ratio: 2) {
	/* style here... */
}