﻿@charset "utf-8";

/* ==========================================
	frame.css フレームCSS
	Last Up Date 16/10/11
 --------------------------------------------
	INDEX
 --------------------------------------------

	0.00.00 common サイト共通の枠組み
	0.01.00 common_body 共通のボディ
	0.02.00 common_wrapper 共通のラッパー
	0.03.00 common_header 共通のヘッダー
	0.04.00 common_contents 共通のコンテンツ
	0.05.00 common_footer 共通のフッター
	0.06.00 common_font 共通のフォント
	0.07.00 common_img 共通のイメージ
	0.08.00 common_link 共通のリンク
	　0.08.01 common_a:link 未訪問のリンク
　　　0.08.02 common_a:visited  訪問済のリンク
　　　0.08.03 common_a:active  クリック中
　　　0.08.04 common_a:hover  カーソルを乗せた時
	0.09.00 common_display:table 共通の疑似テーブル
	0.10.00 common_display:none 共通の非表示
	　0.10.01 common_display:none_pc PC非表示
	　0.10.02 common_display:none_tb タブレット非表示
	　0.10.03 common_display:none_sph スマートフォン横非表示
	　0.10.04 common_display:none_spv スマートフォン縦非表示
	0.11.00 common_form 共通のフォーム
	  0.11.01 common_form_input 共通のフォームのインプット
	0.12.00 common_GoogleMaps 共通のグーグルマップ
	0.13.00 common_border 共通の枠組み
	0.14.00 common_btn-submit 共通のサブミットボタン
	0.15.00 common_lightbox 共通のライトボックス

	1.00.00 PC_media screen PC用サイトの枠組み
	1.01.00 PC_body PC用のボディ
	1.02.00 PC_wrapper PC用のラッパー
	1.03.00 PC_header PC用のヘッダー
	1.04.00 PC_contents PC用のコンテンツ
	1.05.00 PC_footer PC用のフッター
	1.06.00 PC_font PC用のフォント
	1.07.00 PC_img PC用の画像
	1.08.00 PC_margin_bottom 共通の余白
	1.09.00 PC_pseudo-table PC用疑似テーブル
	1.10.00 PC_top-arrow PC用トップへ戻る

	2.00.00 TB_media screen TB用サイトの枠組み
	2.01.00 TB_body TB用のボディ
	2.02.00 TB_wrapper TB用のラッパー
	2.03.00 TB_header TB用のヘッダー
	2.04.00 TB_contents TB用のコンテンツ
	2.05.00 TB_footer TB用のフッター
	2.06.00 TB_font TB用ののフォント
	2.07.00 TB_img TB用の画像
	2.08.00 TB_margin_bottom 共通の余白
	2.09.00 TB_pseudo-table Tb用疑似テーブル
	2.10.00 TB_top-arrow TB用トップへ戻る

	3.00.00 SP_media screen SP用サイトの枠組み
	3.01.00 SP_body SP用のボディ
	3.02.00 SP_wrapper SP用のラッパー
	3.03.00 SP_header SP用のヘッダー
	3.04.00 SP_contents SP用のコンテンツ
	3.05.00 SP_footer SP用のフッター
	3.06.00 SP_font SP用ののフォント
	3.07.00 SP_img SP用の画像
	3.08.00 SP_margin_bottom 共通の余白
	3.09.00 SP_pseudo-table SP用疑似テーブル
	3.10.00 SP_top-arrow SP用トップへ戻る
	3.11.00 SP_input SP用のインプット
	3.12.00 SP_form_select SP用のフォームのセレクト
	3.13.00 SP_btn-submit SP用のサブミットボタン

========================================== */

/* ==========================================
0.00.00 common サイト共通の枠組み
========================================== */
/* ==========================================
0.01.00 common_body 共通のボディ
========================================== */
body {
	width:100%;
	background-color:#FFFFFF;
}

/* ==========================================
0.02.00 common_wrapper 共通のラッパー
========================================== */
#wrapper{
	margin: 0 auto;
}

/* ==========================================
0.03.00 common_header 共通のヘッダー
========================================== */
#header {
	position: fixed;
	width:100%;
	background-color:rgba(255,255,255,0.8);
}

/* ==========================================
0.04.00 common_contents 共通のコンテンツ
========================================== */
#contents{
}

/* ==========================================
0.05.00 common_footer 共通のフッター
========================================== */
#footer {
	zoom:1;
	clear: both;
	margin-left:auto;
	margin-right:auto;
	width:100%;
}

/* ==========================================
0.06.00 common_font 共通のフォント
========================================== */
h1,h2,h3,h4,h5,p,dl, dt, dd, ol, ul, li,form, label,table,tbody,tr, th, td,a,span,textarea{
	font-family: -apple-system, 'Helvetica Neue', 'Hiragino Kaku Gothic ProN', '游ゴシック Medium', 'メイリオ', meiryo, sans-serif;
}

/* ==========================================
0.07.00 common_img 共通のイメージ
========================================== */
img {
	max-width:100%;
	height:auto;
}

/* ==========================================
0.08.00 common_link 共通のリンク
========================================== */

/* 0.08.01 common_a:link 未訪問のリンク */
a:link {
	color:#0066a1;
	text-decoration:none;
}

/* 0.08.02 common_a:visited  訪問済のリンク */
/*訪問後のリンク*/
a:visited {
	color:#0066a1;
	text-decoration:none;

}

/* 0.08.03 common_a:active  クリック中 */
a:active {
	color:#0066a1;
	text-decoration:none;

}

/* 0.08.04 common_a:hover  カーソルを乗せた時 */
a:hover {
	opacity: 0.6 ; /* Safari,Opera用 */
	filter: alpha(opacity=60) ;	/* Ie用 */
	-moz-opacity: 0.6; /* Firefox（Mozilla）用 */
}

a:hover h3{
	opacity: 0.6 ; /* Safari,Opera用 */
	filter: alpha(opacity=60) ;	/* Ie用 */
	-moz-opacity: 0.6; /* Firefox（Mozilla）用 */
}

/* ==========================================
0.09.00 common_display:table 共通の疑似テーブル
========================================== */

.table{
	display:table;
}
.table-cell{
	display:table-cell;
}
.table-row{
	display:table-row;
}

/* ==========================================
0.10.00 common_display:none 共通の非表示
========================================== */

/* 0.10.01 common_display:none_pc PC非表示 */
@media screen and (min-width: 1024px){
.none_pc{display:none;}
}

/* 0.10.02 common_display:none_tb タブレット非表示 */
@media screen and (max-width: 1023px) and (min-width:768px){
.none_tb{display:none;}
}

/*0.10.03 common_display:none_sph スマートフォン横非表示 */
@media screen and (max-width: 767px) and (min-width:568px){
.none_sph{display:none;}
}

/* 0.10.04 common_display:none_spv スマートフォン縦非表示 */
@media screen and (max-width: 567px){
.none_spv{display:none;}
}

/* ==========================================
0.11.00 common_form 共通のフォーム
========================================== */

/* ==========================================
0.12.00 common_GoogleMaps 共通のグーグルマップ
========================================== */
.ggmap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}


.ggmap iframe,.ggmap object,.ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ==========================================
0.13.00 common_border 共通の枠組み
========================================== */
div.box {
	display: inline-block;
	border: 1px solid black;
	padding: 5px;
	width: 100%;
	box-sizing: border-box;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

div.gray-box {
	display: inline-block;
	border: 1px solid lightgray;
	padding: 5px;
	width: 100%;
	box-sizing: border-box;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

/* ==========================================
0.14.00 common_btn-submit 共通のサブミットボタン
========================================== */
.btn-submit{
	-moz-box-shadow: 0px 0px 0px 2px #0066a1;
    -webkit-box-shadow: 0px 0px 0px 2px #0066a1;
    box-shadow: 0px 0px 0px 2px #0066a1;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #0393e0), color-stop(1, #0066a1));
    background: -moz-linear-gradient(top, #0393e0 5%, #0066a1 100%);
    background: -webkit-linear-gradient(top, #0393e0 5%, #0066a1 100%);
    background: -o-linear-gradient(top, #0393e0 5%, #0066a1 100%);
    background: -ms-linear-gradient(top, #0393e0 5%, #0066a1 100%);
    background: linear-gradient(to bottom, #0393e0 5%, #0066a1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0393e0', endColorstr='#0066a1',GradientType=0);
    background-color: #0393e0;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #ffffff;
    color: #ffffff;
	width: 200px;
    height: 40px;
    font-size: 1em;
	margin:1%;
}

.btn-submit:hover{
	opacity: 0.8 ; /* Safari,Opera用 */
	filter: alpha(opacity=80) ;	/* Ie用 */
	-moz-opacity: 0.8; /* Firefox（Mozilla）用 */
}


/* ==========================================
0.15.00 common_lightbox 共通のライトボックス
========================================== */

div#lightbox {
	display: none;
	height: 90%;
	background-color: rgba(0, 0, 0, 0.6);
	padding: 20px 20px 5px 20px;
	text-align: center;
	vertical-align: middle;
	border-radius: 3px;
}

div#lightbox div.close {
    float: right;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}

div#lightbox .close:focus,div.lightbox .close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5;
}

div.lightbox p#lightbox-comment{
	color:#FFFFFF;
}
/**************** ライトボックスの画像位置調整 ****************/
div#lightbox #lightbox-slider{
	height:inherit;
}

div#lightbox #lightbox-slider .sp-slide{
	height:inherit;
}

div#lightbox #lightbox-slider .sp-slides-container{
	height:100%;
}

div#lightbox .lightbox-thumbnaul-table{
	margin:0 auto;
}

div#lightbox img{
	max-width:100%;
}

/* ==========================================
1.00.00 PC_media screen PC用サイトの枠組み
========================================== */
@media screen and (min-width: 768px),print{

/* ==========================================
1.01.00 PC_body PC用のボディ
========================================== */
body{
}

/* ==========================================
1.02.00 PC_wrapper PC用のラッパー
========================================== */
#wrapper{
	max-width:1024px;
}

/* ==========================================
1.03.00 PC_header PC用のヘッダー
========================================== */
#header {
	max-width: 1024px;
	width:100%;
	padding-bottom:5px;
	z-index:3;
}

#header #headertext {
	background-color:#0066a1;
	height:18px;
	text-align:center;
}

#header #headertext > img{
	height: 13px;
    vertical-align: middle;
}

#header .headerTable{
	display:table;
	width:98%;
	margin:0 1%;
}

#header #headerLogo {
	display:table-cell;
	vertical-align:bottom;
	width:25%;
	text-align: left;
}

#header #headerLogo a{
}

#header #headerLogo img{
	max-height:65px;
}

#header #headerTell{
	display:table-cell;
	vertical-align:bottom;
	width:27%;
	text-align: right;
}
#header #headerTell #auth-member{
	position: absolute;
    font-size: 0.8em;
    right: 1%;
}

#header .hedearIcon{
	display:table-cell;
	vertical-align:bottom;
	width:8%;
	text-align:center;
}

/* ==========================================
1.04.00 PC_contents PC用のコンテンツ
========================================== */
#contents{
	padding-top: 85px;
}

/* ==========================================
1.05.00 PC_footer PC用のフッター
========================================== */
#footer{
	padding-top:2%;
}

#footer #foterBorderBlue{
	height: 1px;
	background-color: #0066a1;
	margin:2% 0;
}

#footer #footerNavi{
    display: table;
    width: 96%;
    margin: 0 auto;
}

#footer #footerNavi .footerNaviCell{
    display: table-cell;
    width: 20%;
}

#footer #footerBottom{
	margin-top: 3%;
}

/* ==========================================
1.06.00 PC_font PC用のフォント
========================================== */
h1 {
	font-size:1.3em;
	line-height:1.5em;
	font-weight:bold;
}

h2 {
	font-size:1.2em;
	line-height:1.5em;
	font-weight:bold;
}

h3 {
	font-size:1.1em;
	line-height:1.5em;
	font-weight:bold;
}

h4,h5,p,dl, dt, dd, ol, ul, li,form, label,table,tbody,tr, th, td,a,span{
	font-size:1em;
	line-height:1.5em;
}

/* ==========================================
1.07.00 PC_img PC用の画像
========================================== */
img[src$=".svg"] {
	height:63px;
}

/* ==========================================
1.08.00 PC_margin_bottom PC用の余白
========================================== */
.margin-bottom-mini {
	margin-bottom: 4px;
}
.margin-bottom-short {
	margin-bottom: 8px;
}
.margin-bottom-standard {
	margin-bottom: 10px;
}

/* ==========================================
1.09.00 PC用擬似テーブル
========================================== */
.pseudo-table {
	display:table;
	width:100%;
}

.pseudo-table-tr {
	display:table-row;
}

.pseudo-table-th {
	display:table-cell;
}

.pseudo-table-td {
	display:table-cell;
}


/* ==========================================
1.10.00 PC_top-arrow PC用のトップへ戻る
========================================== */
div.top-arrow{
	text-align: right;
	position:fixed;
	right:1%;
	bottom:1%;
}

div.top-arrow a{
	width:100%;
}

div.top-arrow a img{
	width:100%;
	max-width:70%;
}

/* ==========================================
1.11.00 PC_form_input PC用のフォームのインプット
========================================== */

input[type=text], input[type=email], input[type=tel], input[type=password]{
   	border: 1px solid black;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	width: 150px;
    height: 30px;
	vertical-align: bottom;
	 padding-left: 1%;
}


input[type=radio].original,
input[type=checkbox].original {
	display: inline-block;
	margin-right: 6px;
}

input[type=radio].original + label.original,
input[type=checkbox].original + label.original {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    line-height: 1.5px;
    cursor: pointer;
}

input[type=radio].original,
input[type=checkbox].original {
	display: none;
	margin: 0;
}

input[type=radio].original + label.original,
input[type=checkbox].original + label.original {
	padding-left: 22px;
	padding-bottom: 5px;
}

input[type=radio] + label.original:before,
input[type=checkbox] + label.original:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 18px;
	height: 18px;
	margin-top: -12px;
	background-color: white;
}

input[type=radio].original + label.original:before,
input[type=checkbox].original + label.original:before {
	border: 1px solid black;
}

input[type=radio].original:checked + label.original:after,
input[type=checkbox].original:checked + label:after {
	content: "";
	position: absolute;
	top: 50%;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
}

input[type=radio].original:checked + label.original:after,
input[type=checkbox].original:checked + label.original:after {
	left: 3px;
    width: 18px;
    height: 11px;
    margin-top: -12px;
	border-left: 4px solid #17bcdf;
    border-bottom: 4px solid #17bcdf;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/*
body#mypage_user #mypage input[type="password"],
body#mypage_user #mypage input[type="tel"] ,
body#mypage_user #mypage input[type="email"] {
	padding-left:1%;
	height:30px;
	width: 300px;
    border: 1px solid #000000;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
*/

/* ==========================================
1.12.00 PC_form_select PC用のフォームのセレクト
========================================== */
select{
    padding-left: 1%;
	border: 1px solid black;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
	vertical-align: bottom;
	width: 150px;
    height: 30px;
}

}

/* ==========================================
2.00.00 TB_media screen タブレット用サイトの枠組み
========================================== */
@media screen and (min-width: 568px) and (max-width: 767px) {

/* ==========================================
2.01.00 TB_body タブレット用のボディ
========================================== */
body{
}

/* ==========================================
2.02.00 TB_wrapper タブレット用のラッパー
========================================== */
#wrapper{
	max-width:769px;
}

/* ==========================================
2.03.00 TB_header タブレット用のヘッダー
========================================== */
#header {
	max-width:768px;
	padding-bottom:2px;
	width:100%;
	z-index:3;
}

#header #headertext {
	background-color:#0066a1;
	height:15px;
	text-align:center;
}

#header #headertext > img{
	height: 13px;
    vertical-align: initial;
}

#header .headerTable{
	display:table;
	width:98%;
	margin:0 1%;
}

#header #headerLogo {
	display:table-cell;
	vertical-align:bottom;
	text-align:left;
}

#header #headerTell{
	display:none;
}

#header .hedearIcon{
	display:table-cell;
	vertical-align:bottom;
	text-align:right;
}

/* ==========================================
2.04.00 TB_contents タブレット用のコンテンツ
========================================== */
#contents{
	padding-top: 82px;
}

/* ==========================================
2.05.00 TB_footer タブレット用のフッター
========================================== */
#footer{
	padding-top:2%;
}

#footer #foterBorderBlue{
	height: 1px;
	background-color: #0066a1;
	margin:2% 0;
}

#footer #footerNavi{
    display: table;
    width: 96%;
    margin: 0 auto;
}

#footer #footerNavi .footerNaviCell{
    display: table-cell;
    width: 25%;
}

#footer #footerBottom{
	margin-top: 3%;
}

/* ==========================================
2.06.00 TB_font タブレット用のフォント
========================================== */
h1 {
	font-size:1.3em;
	line-height:1.5em;
	font-weight:bold;
}

h2 {
	font-size:1.2em;
	line-height:1.5em;
	font-weight:bold;
}

h3 {
	font-size:1.1em;
	line-height:1.5em;
	font-weight:bold;
}

h4,h5,p,dl, dt, dd, ol, ul, li,form, label,table,tbody,tr, th, td,a,span{
	font-size:1em;
	line-height:1.5em;
}

/* ==========================================
2.07.00 TB_img タブレット用の画像
========================================== */
img[src$=".svg"] {
	height:63px;
}

/* ==========================================
2.08.00 TB_margin_bottom タブレット用の余白
========================================== */
.margin-bottom-mini {
	margin-bottom: 5px;
}
.margin-bottom-short {
	margin-bottom: 10px;
}
.margin-bottom-standard {
	margin-bottom: 10px;
}

/* ==========================================
2.09.00 TB用擬似テーブル
========================================== */
.pseudo-table {
	display:table;
	width:100%;
}

.pseudo-table-tr {
	display:table-row;
}

.pseudo-table-th {
	display:table-cell;
}

.pseudo-table-td {
	display:table-cell;
}

/* ==========================================
2.10.00 PC_top-arrow TB用のトップへ戻る
========================================== */
div.top-arrow{
	text-align: right;
	position:fixed;
	right:1%;
	bottom:1%;
}

div.top-arrow a{
	width:100%;
}

div.top-arrow a img{
	width:100%;
	max-width:70%;
}



/* ==========================================
2.11.00 TB_form_input TB用のフォームのインプット
========================================== */

input[type=text]{
   	border: 1px solid black;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	width: 150px;
    height: 30px;
	vertical-align: bottom;
	 padding-left: 1%;
}


input[type=radio].original,
input[type=checkbox].original {
	display: inline-block;
	margin-right: 6px;
}

input[type=radio].original + label.original,
input[type=checkbox].original + label.original {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    line-height: 1.5px;
    cursor: pointer;
}

input[type=radio].original,
input[type=checkbox].original {
	display: none;
	margin: 0;
}

input[type=radio].original + label.original,
input[type=checkbox].original + label.original {
	padding-left: 22px;
	padding-bottom: 5px;
}

input[type=radio] + label.original:before,
input[type=checkbox] + label.original:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 18px;
	height: 18px;
	margin-top: -12px;
	background-color: white;
}

input[type=radio].original + label.original:before,
input[type=checkbox].original + label.original:before {
	border: 1px solid black;
}

input[type=radio].original:checked + label.original:after,
input[type=checkbox].original:checked + label:after {
	content: "";
	position: absolute;
	top: 50%;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
}

input[type=radio].original:checked + label.original:after,
input[type=checkbox].original:checked + label.original:after {
	left: 3px;
    width: 18px;
    height: 11px;
    margin-top: -12px;
	border-left: 4px solid #17bcdf;
    border-bottom: 4px solid #17bcdf;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

body#mypage_user #mypage input[type="password"],
body#mypage_user #mypage input[type="tel"] ,
body#mypage_user #mypage input[type="email"] {
	padding-left:1%;
	height:30px;
/*	width: 300px;*/
    border: 1px solid #000000;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

/* ==========================================
2.12.00 TB_form_select TB用のフォームのセレクト
========================================== */
select{
    padding-left: 1%;
	border: 1px solid black;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
	vertical-align: bottom;
	width: 150px;
    height: 30px;
}


}


/* ==========================================
3.0.0 SP_media screen スマートフォン用に切り替え
========================================== */
@media screen and (max-width: 567px) {

/* ==========================================
3.01.00 SP_body スマートフォン用のボディ
========================================== */
body{
}

/* ==========================================
3.02.00 SP_wrapper スマートフォン用のラッパー
========================================== */
#wrapper{
	min-height:568px;
}

/* ==========================================
3.03.00 SP_header スマートフォン用のヘッダー
========================================== */
#header {
	max-width:567px;
	padding-top: 2px;
	padding-bottom:2px;
	width:100%;
	z-index:3;
}

#header #headertext {
	display:none;
}


#header .headerTable{
	display:table;
	width:98%;
	margin:0 1%;
}

#header #headerLogo {
	display:table-caption;
	vertical-align:bottom;
}

#header #headerLogo img{
	max-height:60px;
}

#header #headerTell{
	display:none;
}

#header .hedearIcon{
	display:table-cell;
	vertical-align:bottom;
	width:15%;
}

#header .hedearIcon img{
	max-width: 100%;
	max-height:60px;
}



/* ==========================================
3.04.00 SP_contents スマートフォン用のコンテンツ
========================================== */
#contents{
	min-height:100%;
	padding-top: 124px;
	width:100%;
	background-color:#FFFFFF;
}

/* ==========================================
3.05.00 SP_footer スマートフォン用のフッター
========================================== */
#footer{
	padding-top:2%;
}

#footer #foterBorderBlue{
	height: 1px;
	background-color:#0066a1;
	margin:2% 0;
}

#footer #footerNavi{
    display: table;
    width: 96%;
    margin: 0 auto;
}

#footer #footerNavi .footerNaviCell{
	width: 50%;
    float: left;
    text-align: center;
	margin-top: 1%;
}

#footer #footerBottom{
	margin-top: 3%;
}

/* ==========================================
3.06.00 SP_font スマートフォン用のフォント
========================================== */
h1 {
	font-size:1.2em;
	line-height:1.5em;
	font-weight:bold;
}

h2 {
	font-size:1.1em;
	line-height:1.5em;
	font-weight:bold;
}

h3 {
	font-size:1em;
	line-height:1.5em;
	font-weight:bold;
}

h4,h5,p,dl, dt, dd, ol, ul, li,form, label,table,tbody,tr, th, td,a,span{
	font-size:0.8em;
	line-height:1.5em;
}

/* ==========================================
3.07.00 SP_img スマートフォン用の画像
========================================== */
/* ==========================================
3.08.00 SP_margin_bottom スマートフォン用の余白
========================================== */
.margin-bottom-mini {
	margin-bottom: 1px;
}
.margin-bottom-short {
	margin-bottom: 2px;
}
.margin-bottom-standard {
	margin-bottom: 4px;
}

/* ==========================================
3.09.00 SP用擬似テーブル
========================================== */
.pseudo-table {
	display:block;
	width:100%;
}

.pseudo-table-tr {
	display:block;
	width:100%;
}

.pseudo-table-th {
	display: block;
}

.pseudo-table-td {
	display:block;
}

/* ==========================================
3.10.00 SP_top-arrow SP用のトップへ戻る
========================================== */
div.top-arrow{
	text-align: right;
	position:fixed;
	right:1%;
	bottom:1%;
}

div.top-arrow a{
	width:100%;
}

div.top-arrow a img{
	width:100%;
	max-width:70%;
}

/* ==========================================
3.11.00 SP_input SP用のインプット
========================================== */
input[type=radio].original,
input[type=checkbox].original {
	display:none;
}

input[type=checkbox].original + label.original {
	padding:2% 3%;
	margin-top:4px;
	margin-bottom:2%;
}

input[type=radio].original + label.original {
	width:32%;
	text-align:center;
	padding:2% 0;
	margin-bottom:2%;
}


input[type=radio].original + label.original,
input[type=checkbox].original + label.original {
	display:inline-block;
	text-decoration: none;
    color: #fff;
    font-weight: bold;
    background-color: #538fbe;
    border: 1px solid #2d6898;
	font-size:0.9em;
    background-image: linear-gradient(bottom, rgb(73,132,180) 0%, rgb(97,155,203) 100%);
    background-image: -o-linear-gradient(bottom, rgb(73,132,180) 0%, rgb(97,155,203) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(73,132,180) 0%, rgb(97,155,203) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(73,132,180) 0%, rgb(97,155,203) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(73,132,180) 0%, rgb(97,155,203) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(57,126,183)),
        color-stop(1, rgb(49,111,161))
    );
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    text-shadow: 0px -1px 0px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 2px 0px #2b638f, 0px 3px 5px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    -moz-box-shadow: 0px 2px 0px #2b638f, 0px 3px 5px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    box-shadow: 0px 2px 0px #2b638f, 0px 3px 5px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);

}

input[type=radio]:checked + label.original,
input[type=checkbox]:checked + label.original {
	background-image: linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -o-linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(18,92,148)),
        color-stop(1, rgb(20,86,136))
    );
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

}

/*
body#mypage_user #mypage input[type="password"],
body#mypage_user #mypage input[type="tel"] ,
body#mypage_user #mypage input[type="email"] {
	padding-left:1%;
	height:30px;
	width: 300px;
    border: 1px solid #000000;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
*/

/* ==========================================
3.12.00 SP_form_select SP用のフォームのセレクト
========================================== */
select{
    padding-left: 1%;
	border: 1px solid black;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
	vertical-align: bottom;
	width: 150px;
    height: 30px;
}

/* ==========================================
3.13.00 SP_btn-submit SP用のサブミットボタン
========================================== */
.btn-submit {
	margin:2% 1%;

}

.btn-submit p{
	font-size:1em;

}

}

