@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, figure, font, 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 {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
	font-weight:normal;
    vertical-align: baseline;
    background: transparent;
}

* {
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	height:100%;
	-webkit-text-size-adjust:100%; /*iPhone 文字サイズ調整*/
	overflow-x: hidden; /*横スクロール非表示*/
} 

body {
	background: #F6F6F6;
	width: 100%;
	height:100%;
	font:normal 1.3rem/1.8 "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	color: #1D1D1D;
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}
 
/* remember to highlight inserts somehow! */
ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

address {
	font-style:normal;
}


/*------------------------------------------------------------
	LINK
------------------------------------------------------------*/

a:link {
	color: #0B5652;
	text-decoration: underline;
}

a:visited {
	color: #0B5652;
	text-decoration: underline;
}

a:hover {
	color:#0E6964;
	text-decoration: underline;
}

a:active {
	color: #0E6964;
}

a:focus { 
	outline:none;
}

a[href^="http"].exlink {
  background:url(../img/bg_exlink.png) no-repeat right 1px;/* 外部リンクの後ろにアイコン*/ 
  padding-right:18px;
  margin-right:5px;
}

a[href^="http"].exlink {
  background:url(../img/bg_exlink.png) no-repeat right 2px\9;/* IE8*/ 
}


/*------------------------------------------------------------
	clearFix
------------------------------------------------------------*/

* html .clearFix,
*+html .clearFix {
	zoom: 1;
}

section:after,
.clearFix:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

.clearFix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix { height: 1%;}
.clearFix {display: block;}
/* End hide from IE-mac */

.zoom {
	overflow: hidden;
	zoom: 1;
}


/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/


/* 改行 */


br.pc {
	display: none;
}

@media only screen and (min-width: 481px) {
	
	br.sp {
		display:none;
	}
	
	br.pc {
		display: block;
	}

}


/* リスト */

ol, ul {
    list-style: none;
}


/* 画像 */

img {
	max-width: 100%;
	height: auto;
	display:block;/*画像の下の余白を消す*/
}

#preview img {
	margin: 10px auto 10px auto;
}


/* 太字・注意書き */

.bold {
	font-weight:bold;
}

.boldBorder {
	font-weight:bold;
	text-decoration:underline;
}

.redBold {
	font-weight:bold;
	color:#D0011B;
}

.redBoldBorder {
	font-weight:bold;
	text-decoration:underline;
	color:#D0011B;
}

.orgBold {
	font-weight:bold;
	color: #F07457;
}

.attention {
	color:#D0011B;
}


/* float */

.floatL {
	float: left;
}

.floatR {
	float: right;
}


/* 見出し体裁 */

.dropcap01,
.dropcap02,
.dropcap03 {
	display: block;
	float: left;
	margin: 0px 8px 0px 0px;
	font-size: 24px;
	font-weight:bold;
	line-height: 40px;
	background:#333;
	color: #FFF;
	width: 40px;
	height: 40px;
	text-align: center;
	text-shadow: none;
}

.dropcap02 {
	border-radius: 50px;
}

.dropcap03 {
	background:none;
	color:#333;
	margin:0;
}


/* テーブル ** tables still need 'cellspacing="0"' in the markup */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

table tr th,
table tr td {
	border:1px solid #ccc;
	display:block;
}

@media only screen and (min-width: 641px) {
	
	table tr th,
	table tr td {
		display:table-cell;
	}

}


/* 引用 */

blockquote {
  display:block;
  background: #fff;
  padding: 15px 20px 15px 45px;
  margin: 0 0 20px;
  position: relative;
  /*Font*/
  text-align: justify;
  /*Borders - (Optional)*/
  border-left: 15px solid #000;
  border-right: 2px solid #000;

}

blockquote::before{
  content: "\201C"; /*Unicode for Left Double Quote*/
  /*Font*/
  font-family: Georgia, serif; /* フォントを変えると"マークが変わる*/
  font-size: 60px;
  font-weight: bold;
  color: #999;
  /*Positioning*/
  position: absolute;
  left: 10px;
  top:5px;
}

blockquote::after{
  /*Reset to make sure*/
  content: "";
}

blockquote a {
  text-decoration: none;
  background: #eee;
  padding: 0 3px;
  color: #c76c0c;
}

/*------------------------------------------------------------
	iOS スタイル削除
------------------------------------------------------------*/

input[type="button"],
input[type="text"],
input[type="submit"] {
   -webkit-appearance: none;
}


/*------------------------------------------------------------
	マージン
------------------------------------------------------------*/

.mb5 {
	margin-bottom:5px;
}

.mb10 {
	margin-bottom:10px;
}

.mb15 {
	margin-bottom:15px;
}

.mb20 {
	margin-bottom:20px;
}

.mb25 {
	margin-bottom:25px;
}

.mb30 {
	margin-bottom:30px;
}

.mb35 {
	margin-bottom:35px;
}

.mb40 {
	margin-bottom:40px;
}

.mb45 {
	margin-bottom:45px;
}

.mb50 {
	margin-bottom:50px;
}

.mb60 {
	margin-bottom:60px;
}

.mb70 {
	margin-bottom:70px;
}

.mb80 {
	margin-bottom:80px;
}

.mb90 {
	margin-bottom:90px;
}

.mb100 {
	margin-bottom:100px;
}


/*------------------------------------------------------------
	IE11以上 Skype電話番号横の「FREE」を削除
------------------------------------------------------------*/


span.skype_c2c_free_text_span {
display:none !important;
}
span.skype_c2c_text_span {
color:#000000 !important;
font-weight:bold!important;
font-family:"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif !important;
}
img.skype_c2c_logo_img {
display:none !important;
}

/*------------------------------------------------------------
	google conversion tagのheightでデザインが崩れる
------------------------------------------------------------*/
iframe[name="google_conversion_frame"] { 
	position: absolute; top: 0;
}