@charset "utf-8";

/*** クリア ***/
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 {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin:0;
    outline:0;
    font-size:100%;
/*  vertical-align:baseline;
    vertical-align:inherit;
    background:transparent;
    text-align: center;*/
}
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	/*
	border-collapse: separate;
	border-spacing: 2px;
	*/

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

/* @import url(//fonts.googleapis.com/earlyaccess/notosansjp.css); */

@font-face {
 font-family: "NotoSansCJKjp";
 font-style: normal;
 font-weight: 400;
 src: url('./fonts/notosans-regular.eot');
 src: local('Noto Sans CJK JP Regular'),
 url('./fonts/notosans-regular.eot?#iefix') format('embedded-opentype'),
 url('./fonts/notosans-regular.woff') format('woff'),
 url('./fonts/notosans-regular.otf') format('opentype')
}

/*** 基本設定 ***/
body {
	font-family:'Noto Sans JP','Droid Sans','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','ＭＳ Ｐゴシック','MS PGothic','Osaka','sans-serif';
	color:#555555;
	font-size: 85%;
	line-height: 1.4em;
	word-wrap: break-word;
	background: #FFF;
	/*text-align: center;*/
}

@media screen and (orientation: landscape) {
   /* 横向きの場合のスタイル */

	body {
	}
}

img , iframe{
	vertical-align:bottom
}

a { color:#555555; }

h2 {
	font-weight:bold;
	border-left: 7px solid #92cffc;
	padding: 5px 0px 5px 10px;
	margin-bottom: 5px;
}
h2.b_green  { border-left: 7px #D5EEBA solid;}
h2.b_blue   { border-left: 7px #c4e3fa solid;}
h2.b_pink   { border-left: 7px #f7c4fa solid;}
h2.b_yellow { border-left: 7px #fcdb68 solid;}

input[type="checkbox"] {
	margin:5px;
}
input[type="radio"] {
	margin:5px;
}
input[type="text"] {
	-webkit-appearance: none;
	appearance: none;
	padding:5px;
	border: solid 1px #ccc;
	box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-moz-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
input[type="number"] {
	-webkit-appearance: none;
	appearance: none;
	padding:5px;
	border: solid 1px #ccc;
	box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-moz-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
input[type="password"] {
	-webkit-appearance: none;
	appearance: none;
	padding:5px;
	border: solid 1px #ccc;
	box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-moz-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
input[type="email"] {
	-webkit-appearance: none;
	appearance: none;
	padding:5px;
	border: solid 1px #ccc;
	box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-moz-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
input[type="submit"] {
	-webkit-appearance: none;
	appearance: none;
	padding:10px;
	background-color:#DDDDDD;
	border-style: none;
	border-radius: 5px;
}
textarea {
	-webkit-appearance: none;
	appearance: none;
	padding:5px;
	border: solid 1px #ccc;
	box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-moz-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/*** ユーティリティ ***/

.center { text-align:center; }
.right  { text-align:right; }
.left   { text-align:left; }
.tcenter { text-align:center; }
.tright  { text-align:right; }
.tleft   { text-align:left; }


.bold { font-weight:bold; }

.fclear { clear:both; }
.fleft  { float: left; }
.fright { float: right; }

.pad3  { padding:3px; }
.pad5  { padding:5px; }
.pad8  { padding:8px; }
.pad10 { padding:10px; }

.pad3_w  { padding:0px 3px; }
.pad5_w  { padding:0px 5px; }
.pad8_w  { padding:0px 8px; }
.pad10_w { padding:0px 10px; }

.pad3_h  { padding:3px 0px; }
.pad5_h  { padding:5px 0px; }
.pad8_h  { padding:8px 0px; }
.pad10_h { padding:10px 0px; }

.margin3  { margin:3px; }
.margin5  { margin:5px; }
.margin10 { margin:10px; }

.red    { color: #e13333; }
.green  { color: #1c9652; }
.orange { color: #e14833; }
.blue   { color: #4356b9; }
.pink   { color: #de7791; }
.purple { color: #b646df; }
.aqua   { color: #41c1e8; }
.yellow { color: #fda005; }

.btn_area{
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}
.btn_orange ,.btn_green ,.btn_blue{
	color: #FFFFFF;
	font-size: 1.1em;
	line-height: 1.2em;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	font-weight: bold;
	padding: 8px 36px 8px 8px ;
	text-decoration: none;
	margin: 3px auto;
	background: url(../images/baseline_navigate_next_white_18dp.png) no-repeat 100% 50%;


}

.btn_orange ,.btn_green ,.btn_blue{
	background-color: #FF7E60;
}

.btn_green {
	background-color: #51B416;
}

.btn_blue {
	background-color: #658eec;
}

.btn_orange:active ,.btn_green:active,.btn_blue:active{
	filter:alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
	-moz-opacity: 0.7;
	opacity: 0.7;
}

.hide { display: none; }
.show { display: block; }

.text_s_w {
	text-shadow:
	1px 1px 0px #FFFFFF,
	-1px 1px 0px #FFFFFF,
	1px -1px 0px #FFFFFF,
	-1px -1px 0px #FFFFFF,
	1px 0px 0px #FFFFFF,
	-1px 0px 0px #FFFFFF,
	0px -1px 0px #FFFFFF,
	0px 1px 0px #FFFFFF;
}

.comment {
	font-size: small;
	color: #999999;
	font-weight: normal;
}

.tcenter p {
    display: table-cell;
    vertical-align: middle;
    margin: 0;
}

/* aタグボタン */
.a_button01 {
	width: 80%;
	margin: auto;
}
.a_button01 a {
	color:#444;
	font-size:90%;
	text-align:center;
	text-decoration: none;
}
.a_button01 a p {
	line-height:1em;
	padding: 10px;
	background-color:#DDD;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.a_button01 a p:hover {
	color: #444;
	opacity:0.7;
	filter:alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}
.a_button01 a p.bc_green  { background-color:#D5EEBA !important;}
.a_button01 a p.bc_blue   { background-color:#c4e3fa !important;}
.a_button01 a p.bc_pink   { background-color:#f7c4fa !important;}
.a_button01 a p.bc_yellow { background-color:#fcdb68 !important;}

/* バナー */
.banner {
	text-align: center;
	padding: 5px 0px 5px 0px;
}
.banner img { width: 100%; }

/* 引用 */
.reference {
	color: #999999;
	font-size: small;
}

/*** 見出し ***/

/* 左青線 */
.headline01 {
	font-weight:bold;
	padding: 15px;
	background-color:#F0F0F0;
	text-align:center;
	line-height: 1.6em;
}
/* 水色背景 */
.headline02 {
	font-weight:bold;
	padding: 8px 0px 8px 12px;
	color: #FFFFFF;
	background-color: #59b4d9;
	border-radius: 5px;
}
/* 緑背景 */
.headline03 {
	font-weight:bold;
	padding: 8px;
	color: #FFFFFF;
	background-color:#7BCD44;
	border-radius: 5px;
}
/* 水色背景 */
.headline04 {
	font-weight:bold;
	padding: 8px;
	color: #FFFFFF;
	background-color:#46A0EC;
	border-radius: 5px;
}
/* 水色背景 */
.headline_table01 {
	padding: 0px 5px;
	color:#FFFFFF;
	text-align:left;
	background-color: #59b4d9;
	background-size:30px 100%;
	border-radius: 5px;
}
.headline_table01 table {
	width: 100%
}
.headline_table01 td {
	vertical-align: middle;
	padding: 8px 0px;
}
.headline_table01_img { height: 25px; }
.headline_table01_body {
	font-weight: bold;
	color: #FFFFFF;
	text-align: left;
}
.headline_table01_link { text-align: right; }
.headline_table01_link a {
	background-color: #FFFFFF;
	color: #59b4d9;
	font-size: small;
	border-radius: 5px;
	padding: 3px 8px;
	margin-right: 5px;
	text-decoration: none;
}



/* インフォ */
.info_01 {
	text-align:center;
	font-size:small;
	font-weight:normal;
	border-radius:8px;
	padding:5px 8px;
	background-color:#EEEEEE;
	color:#666666;
}

/* 灰色背景タイトル */
.title01 {
	font-weight:bold;
	padding: 10px 0px 10px 10px;
	background-color:#DDDDDD;
}

/* エリアOPEN */
.area_open01 {
	font-size:small;
	font-weight:normal;
	border-radius:8px;
	padding:8px;
	background-color:#EEEEEE;
	color:#333333;
}
/* エリアClose */
.area_close01 {
	font-size:small;
	font-weight:normal;
	border-radius:8px;
	padding:8px;
	background-color:#EEEEEE;
	color:#333333;
}

/* 写真風の枠 */
.photo_frame {
	text-align: center;
	margin:5px auto;
	background: #FFFFFF;
	padding: 8px;
	box-shadow:rgba(233, 233, 233, 0.8) 2px 2px 2px 2px;
	-webkit-box-shadow:rgba(233, 233, 233, 0.8) 2px 2px 2px 2px;
	-moz-box-shadow:rgba(233, 233, 233, 0.8) 2px 2px 2px 2px;
}

/* 矢印付きリスト(Basic) */
.list01 ul {
	border-bottom: 1px dashed #59b4d9;
}
.list01 ul li {
	border-top: 1px dashed #59b4d9;
	margin: 0px;
}
.list01 ul li:first-child {
	border-top: none;
	margin: 0px;
}
.list01 ul li a {
	color: #555555;
	background: url(../images/css/list_mark01.png) no-repeat 100% 50%;
	display: block;
	margin: 0;
	padding: 10px 15px 10px 10px;
	overflow: hidden;
	text-decoration: none;
	line-height:1.2em;
}

/* 画像対応矢印リスト */
.list02 ul {
	border-bottom: 1px dashed #59b4d9;
}
.list02 ul li {
	border-top: 1px dashed #59b4d9;
	margin: 0px;
}
.list02 ul li:first-child {
	border-top: 0px dashed #59b4d9;
	margin: 0px;
}
.list02 ul li a {
	background: url(../images/css/list_mark01.png) no-repeat 100% 50%;
	display: block;
	margin: 0;
	padding: 0 17px 0 0;
	overflow: hidden;
	text-decoration: none;
}
.list02 ul li img {
	float: left;
	width: 20%;
	margin: 5px 10px 5px 5px;
}
.list02 ul li .main {
	color: #555;
	display: block;
	font-weight: bold;
	padding-top: 10px;
	padding-bottom: 5px;
	line-height:1.2em;
}
.list02 ul li .sub {
	font-size:small;
	color: #999;
	display: block;
	line-height:1.2em;
	padding-bottom: 5px;
}

/* 角丸囲い系矢印リスト */
.list03 ul li {
	border: 1px #ccc solid;
	border-top: none;
	margin: 0px;
}
.list03 ul li:first-child {
	border-top: 1px #ccc solid;
	border-radius: 8px 8px 0 0;
}
.list03 ul li:last-child {
	border-radius: 0 0 8px 8px;
}
.list03 ul li a {
	color: #555;
	background: url(../images/css/list_mark01.png) no-repeat 100% 50%;
	display: block;
	margin: 0 5px 0 0;
	padding: 10px 15px 10px 10px;
	overflow: hidden;
	text-decoration: none;
	line-height:1.2em;
}

/* 矢印付きリンク */
.arrow_link01 a {
	display: block;
	color: #1e69ea;
	text-align: right;
	background: url(../images/css/arrow02.png) right center no-repeat;
	background-position: right center;
	padding: 5px 25px 5px 0px ;
	text-decoration: none;
}
/* 外部リンク */
.outside_link01 a {
	display: block;
	color: #1e69ea;
	text-align: right;
	background: url(../images/css/outlink01.png) right center no-repeat;
	background-position: right center;
	padding: 5px 28px 5px 0px ;
	text-decoration: none;
}

/* 円 */
.circle_01 {
	display: inline-block;
	width: 2.0em;
	height: 2.0em;
	border-radius: 50%;
	background-color: #137cc3;
	color: #ffffff;
	vertical-align: middle;
	text-align: center;
	line-height: 2.0em;
}

/* ボタン */
.button01 {
	font-weight:bold;
	margin: 10px 0px 15px 0px;
	padding: 10px 5px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	background: #92cffc;
	color: #FFFFFF;
	text-align: center;
	text-decoration:none;
	display: block;
}

/* ボタン */
.button02 {
	font-weight:bold;
	margin: 10px 0px 15px 0px;
	padding: 10px 5px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	background: #d84a38;
	color: #FFFFFF;
	text-align: center;
	text-decoration:none;
	display: block;
}

/* ページャー */
/*
#pager {
	padding: 8px 0px;
	text-align:center;
}
#pager a {
	border: 1px solid #CCCCCC;
	background-color: #EEEEEE;
	color: #555555;
	padding: 8px 12px;
	text-decoration: none;
	border-radius:5px;
}
*/
/*** ページ ***/

#header {
	background-color:#ffffff;
	border-bottom: 2px solid #0069b3;
	text-align: center;
}
#header table {
	width: 100%;
}
#header td {
	vertical-align: middle;
}
#contents {
	background-color:#FFFFFF;
	padding: 5px;
}

#contents2 {
}

.contents_area {
	border: 2px solid #c0c0c0;
	background-color:#FFFFFF;
	padding: 10px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}


.contents_area_head {
	border: 2px solid #c0c0c0;
	border-top: 0px solid #c0c0c0;
	background-color:#FFFFFF;
	padding: 10px;
	border-radius: 10px 10px 0px 0px;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	background-image: url('../images/bg_content_head.png');
	background-size: 5px 100%;
	margin: 0px 5px;
}

.contents_area_body {
	border: 2px solid #c0c0c0;
	border-top: 0px solid #c0c0c0;
	background-color:#FFFFFF;
	padding: 0px 10px;
	border-radius: 0px 0px 10px 10px;
	-moz-border-radius: 0px 0px 10px 10px;
	-webkit-border-radius: 0px 0px 10px 10px;
	margin: 0px 5px;
}

.contents_area_body-link{
	border-bottom: 1px dashed #c0c0c0;
	padding: 5px 0px;
}

.contents_area_body-link:first-child{

}

.contents_head_arrow{
	display: block;
	text-align: left;
	background-position: left;
	padding: 0px  0px 0px 18px;
	text-decoration: none;
	font-size: 1.2em;
}

.contents_head_arrow_green{
	background: url(../images/arrow_green.png) left center no-repeat;
}

.contents_head_arrow_blue{
	background: url(../images/arrow_blue.png) left center no-repeat;
}

.contents_head_arrow_orange{
	background: url(../images/arrow_orange.png) left center no-repeat;
}

.contents_head_arrow_red{
	background: url(../images/arrow_red.png) left center no-repeat;
}

.contents_head_arrow_pink{
	background: url(../images/arrow_pink.png) left center no-repeat;
}

.contents_head_arrow_gray{
	background: url(../images/arrow_gray.png) left center no-repeat;
}

.link_arrow_gray{
	display: block;
	background: url(../images/arrow_gray.png) left center no-repeat;
	background-position: right center;
	padding: 0px 18px 0px 0px;
	text-decoration: none;
	color:#555555;
}

/* スライドメニュー */
.menu-item {
	float: left;
	width: 50%;
	color: #FFFFFF;
	text-align: center;
    margin-bottom: 10px;
}

.menu-item a {
	display: block;
	color: #555555;
	text-decoration: none;
}

.menu-item img {
	width: 75%;
}


/* ページトップへ */
#page-top {
	position: fixed;
	text-align: right;
	padding-bottom: 20px;
	width:60px;
	bottom: 0px;
	right: 5px;
}
/* ジャスラックロゴ */
.kyoka-logo {
	font-size:10pt;
	background-color:#dddddd;
}
.kyoka-logo table {
	text-align: left;
	margin: auto;
}
.kyoka-logo td {
	padding: 6px;
}
.kyoka-text {
	vertical-align: middle;
}
/* フッター */
#footer {
	position: relative;
	border-top: 0px solid #2b96e4;
	border-top: 2px solid #b1c2ce;
	padding-top:0px;
	text-align:center;
	background: #FFF;

}
#footer .link {
	padding:5px;
	font-size:small;
}
#footer .link a { color: #666666; }
#footer .copyright {
	padding:10px 0px;
	background-color:#004ca2;
	color: #FFFFFF;
}

.footer-area {
	padding: 5px 0px;
	margin-left:auto;
	margin-right:auto;
	border-top: 0px solid #c0c0c0;
	border-bottom: 1px solid #c0c0c0;
	background-image: url(../../images/bg_footerback.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-color: #c9d6de;
	background-size: 100% auto;
}

.footer-list{
	margin: 5px 0px;
}

.footer-area a {
	color: #0056b8;
	text-decoration: none;
}
.footer-area a:hover {
	color: #5f9500;
}
.footer-area a:visited {
	color: #0056b8;
}
.footer-area a:visited:hover {
	color: #5f9500;
}


#footer-area2 {
	background-color:#ffffff;
	padding: 5px;
}
.footer-area2-in {

}
#footer-area3 {
	background-color:#afd3fb;
	padding: 5px;
}
.footer-area3-in {
	text-align: left;
}

.footer-logo{
	padding: 5px;
}
/* 前へ 次へ ボタン */
#btn_pagenation {
	text-align: center;
}
#btn_pagenation a {
	background-color: #DDDDDD;
	color: #555555;
	padding: 10px;
	text-decoration: none;
	border-radius:5px;
}

/* SNSボタン */
.sns_button {
	right:0px;
}
.sns_button li {
	float: right;
	padding-left: 10px;
}
.sns_button li img {
	width: 35px;
}

.rank_no {
	font-size:small;
	font-weight:normal;
	border-radius:5px;
	padding:3px;
	background-color:#59b4d9;
	color:#FFFFFF;
}


.top_menu {
	font-size:small;
	font-weight:normal;
	border-radius:8px;
	padding:8px;
	background-color:#EEEEEE;
	color:#333333;
}
.top_menu a {
	color: #333333;
	text-decoration: none;
}

/* 記事 */
#article_body {
	line-height: 1.5em;
}
.article_comment {
	font-size: small;
	line-height: 1.2em;
	font-weight:normal;
}

.site-search {
	text-align:center;
}
.site-search input[type="text"]{
	color: #666666;
	width: 70%;
}
.site-search input[type="image"]{
	vertical-align: middle;
	height: 28px;
}

.youtube{
	position:relative;
	padding-bottom: 56.25%;
	height:0;
	overflow:hidden;
	margin-bottom:5px;
}
.youtube iframe{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.youtube_play_btn{
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
}

.youtube_play_btn img{
	width: 64px;
}

.imag_width img {
    max-width: 100% !important;
    height: auto !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.imag_width table {
	max-width: 100% !important;
}

.click_img:hover { /* マウスオーバーで画像を明るく */
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}

/* セカンドページ　ページャー */
/* CSS Badoo style pagination */
/* http://blog.shuffleee.com/2374/  ->  No.4 */
/* http://mis-algoritmos.com/some-styles-for-your-pagination?page=4 */

.sub-photoblock-pager {

}
div.pagination {
	color:#48b9ef;
	padding:14px 0 14px 0;

	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	text-align:center;
}
div.pagination a {
	color:#48b9ef;
	padding:8px 12px;
	margin:0 2px;
	text-decoration:none;
	border:2px solid #f0f0f0;
	background-color: #ffffff;
}

div.pagination a:hover, div.pagination a:active {
	border:2px solid #ff5a00;
	color:#ff5a00;
}

div.pagination span.current {
	padding:4px 8px;
	border:2px solid #ff5a00;
	color:#fff;
	font-weight:bold;
	background-color:#ff6c16;
}
div.pagination span.disabled {
	display:none;
}


/* アップルバースデイの戻るボタン */
.apple_rtn_btn {
	display: block;
	padding: 15px 40px;
	margin: 0 auto;
	font-size: 1.2em;
	border-style: none;
	background-color: #dc4c48;
	color: #ffffff !important;
	font-weight: bold;
	border-radius: 8px;
  	-webkit-border-radius: 8px;
  	-moz-border-radius: 8px;
  	text-decoration: none;
  	text-align: center;
}
.apple_rtn_btn:hover {
	background-color: #db3a35;
}

.bg-tv-erab img {
	max-width: 100%;
	height: auto;
}