@charset "UTF-8";
/* CSS Document */

/************************************
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
************************************/

/*2018追加*/
sup {
	font-size: 70%;
	vertical-align: top;
	position: relative;
	top: -0.5em;
}
sub {
	font-size: 70%;
	vertical-align: bottom;
	position: relative;
	bottom: -0.1em;
}

/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    vertical-align:baseline;
    background:transparent;
}

/*行の高さをフォントサイズと同じにしています*/
body {
    line-height:1;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
nav ul {
    list-style:none;
}

/*引用符の表示が出ないようにしています*/
blockquote, q {
    quotes:none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
    text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
    border-collapse:collapse;
    border-spacing:0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
    vertical-align:middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
　　　vertical-align: top;
　　　font-size:0;
　　　line-height: 0;
}

.alt {
	text-indent:-9999px;
	font-size:0px;
	line-height:0;
}

.clear {
	clear:both;
}


.clearfix:after {  
    content: ".";  
     display: block;       
	 visibility: hidden;  
    height: 0.1px;  
    font-size: 0.1em;  
     line-height: 0;  
   clear: both;  
 }
 
 .clearfix {
 display: inline-block;
 }


 * {
	/*font-family:"メイリオ",Meiryo,"ＭＳ Ｐゴシック","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",sans-serif;*/
	/*font-family:"メイリオ",Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",sans-serif;*/
	font-size:14px;
	line-height:1.8em;
/*	color: #686767; */
	letter-spacing:1px;
	word-break: break-all;
}

a {
	text-decoration:none;
}

a:hover {
	color:#39F;
	text-decoration:underline;
}

.shadow {
	-webkit-box-shadow:0px 0px 6px 0px #ccc; /* Safari, Chrome逕ｨ */
	-moz-box-shadow:0px 0px 6px 0px #ccc; /* Firefox逕ｨ */
	box-shadow:0px 0px 6px 0px #ccc; /* CSS3 */
}

.round {
	-webkit-border-top-right-radius: 24px;
      -moz-border-radius-topright: 24px;
      border-top-right-radius: 24px;
	  -webkit-border-top-left-radius: 24px;
      -moz-border-radius-topleft: 24px;
      border-top-left-radius: 24px;
	  
	  -webkit-border-bottom-right-radius: 24px;
      -moz-border-radius-bottomright: 24px;
      border-bottom-right-radius: 24px;
	  -webkit-border-bottom-left-radius: 24px;
      -moz-border-radius-bottomleft: 24px;
      border-bottom-left-radius: 24px;
}

body{
  -webkit-text-size-adjust: 100%;/*文字サイズの自動調整をオフ*/
}

@media screen and (max-width: 479px){
	body{padding-top:60px;}
} 
/*mediaquery*/
@media screen and (min-width: 479px) and (max-width: 767px) {
	.show_sm{display: none;}
}
/*mediaquery*/
@media screen and (min-width: 767px) {
	.show_sm{display: none;}
}
/*mediaquery*/
@media print {
	body{padding-top:0;}
	div{background-color: none;border:none;}
}
/*mediaquery*/

/***********************************/
/****        BASE STYLE           **/
/***********************************/

div.wrapper{
	width:100%;
	text-align: center;
}
div.container{
	text-align: left;
	position: relative;
	margin-left:auto;
	margin-right:auto;
	width:100%;
	max-width:720px;
	padding-bottom:20px;
}

/*mediaquery*/
@media print {
div.container{
	text-align: left;
	position: relative;
	margin-left:auto;
	margin-right:auto;
	width: 90%;
	max-width: 90%;
	padding-bottom:20px;
}
}
/*mediaquery*/

div.dbl_left15,div.dbl_left15_s{
	width:15%;
	float: left;
}
div.dbl_left20,div.dbl_left20_s{
	width:20%;
	float: left;
}

div.dbl_left40,div.dbl_left40_s{
	width:45%;
	float: left;

}
div.dbl_right85,div.dbl_right85_s{
	width:83%;
	float:right;
}
div.dbl_right80,div.dbl_right80_s{
	width:80%;
	float:right;
}
div.dbl_right60,div.dbl_right60_s{
	width:50%;
	float:right;

}
div.dbl_left50,div.dbl_left50_s{
	width:50%;
	float: left;	
}

div.dbl_left48,div.dbl_left48_s{
	width:48%;
	float: left;
	margin-left: 10px;
}
div.dbl_right50,div.dbl_right50_s{
	width:50%;
	float:right;	
}

div.fullsize_container{
	clear: both;
	width:100%;
	padding-bottom:30px;
	text-align: center;
	overflow: hidden;
}
div.fullsize_container>p.caption{
	width:94%;max-width:700px;
}

div.light_grey{
	background-color: #f1f1f1;
}

@media print {
	div.light_grey{
	background-color: #FFF !important;
}
}

div.with_border{
	border-top:#e2e2e3 solid 1px;
	border-bottom: #e2e2e3 solid 1px;
}
div.bottom_border{
	border-bottom: #e2e2e3 solid 1px;
}
div.container p{
	margin-bottom:20px;
}


@media screen and (max-width: 479px){
	div.container{padding-left:5%;padding-right:5%;width:90%;}
	div.dbl_left40,div.dbl_right60,div.dbl_left50,div.dbl_left48,div.dbl_right50,div.dbl_left15,div.dbl_left20,div.dbl_right85,div.dbl_right80{float: none;width:100%;}
	br.hide_sm{display: none;}
} 
/*mediaquery*/
@media screen and (min-width: 479px) and (max-width: 767px) {
	div.container{padding-left:3%; padding-right:3%; width:94%;}
}
/*mediaquery*/
@media screen and (max-width: 767px) {
	div.dbl_left40_s,div.dbl_right60_s,div.dbl_left50_s,div.dbl_left48_s,div.dbl_right50_s,div.dbl_left15_s,div.dbl_left20_s,div.dbl_right85_s,div.dbl_right80_s{float: none;width:100%;}
	br.hide_tab{display: none;}
}
/*mediaquery*/
@media print {
}
/*mediaquery*/
