﻿@charset "utf-8";

/*

	スマホ： 320px - 480px
	タブレット： 480px - 768px
	PC： それ以上

	MyKempoカラー：rgba(153, 218, 153, 1.0);

*/

/* 共通の設定 */

body {
    -webkit-text-size-adjust:100%;
    font-family: 'Meiryo UI',"ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック","Osaka", sans-serif;
	/*font-family: "Meiryo UI";*/
	font-size:13px;
	width: 100%;
	margin: 0 auto;
	line-height:1.1;
}

#header {
	border-bottom: 2px solid #3385C9;
	margin-bottom: 2px;
	overflow:hidden;
    height: 45px;
}

#header #logo{
	float: left;
    height: 100%;
}

#header #logo img{
	margin: 7px auto;
}

#footer {
	background: #3385C9;
}

#container {
	margin-bottom:50px;
}

#main {
	background: orange;
}

#sub {
	background: yellow;
}

#footerNavLink{
	float:right;
}

#headerNav ul{
	list-style: none;
	overflow:hidden;
}

#headerNav li{
	float: left;
	width: 33%;
	text-align: center;
}

img {
	max-width: 100%;
}

#loginfield{
	width: 80%;
	margin: 0 auto;
	padding: 15px 5px 5px 5px;
	background: white;
	border: #3385C9 5px solid;
	border-radius: 5px;
	font-size:13px;
}

input[type="text"],
input[type="password"],
input[type="number"] {
	-webkit-appearance: none;
	border: 1px solid #333333;
	border-radius: 2px;
	padding:2px;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
	background: #EEEEEE;
}

input[type="radio"],
input[type="checkbox"] {
	-webkit-transform: scale(1.3);
	transform: scale(1.2);
	margin:2px;
}

select {
	padding:1px 0;
	border: 1px solid #333;
	border-radius: 2px;
	margin: 0;
}

label {
	vertical-align:middle;
}

/* 通常ボタン */
button.css3button {
	font-size: 13px;
	color: #050505;
	width:90%;
	padding: 5px 0px;
	background: -ms-linear-gradient(
		top,
		#ffffff 0%,
		#ebebeb 50%,
		#dcdcdc 50%,
		#d2d2d2);
	background: -moz-linear-gradient(
		top,
		#ffffff 0%,
		#ebebeb 50%,
		#dcdcdc 50%,
		#d2d2d2);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#ffffff),
		color-stop(0.50, #ebebeb),
		color-stop(0.50, #dcdcdc),
		to(#d2d2d2));
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #949494;
	-moz-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 2px rgba(255,255,255,1);
	-webkit-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 2px rgba(255,255,255,1);
	box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 2px rgba(255,255,255,1);
	text-shadow:
		0px -1px 0px rgba(000,000,000,0.2),
		0px 1px 0px rgba(255,255,255,1);
	cursor: pointer;
}

/* メニューヘッダボタン */
button.menuheaderbutton {
	font-size: 12px;
    border: 1px solid #ccc;
    color: #ffffff;
    padding: 8px;
    padding-left: 13px;
    padding-right: 13px;
    margin: 3px;
    background: #3385C9;
    border-radius: 5px;
	cursor:pointer;
}

/* エラーチップ */
td.clsTdErrorChipMsg
{
	background-color: #FF6611;
	color: #FFFFFF;
	font-size: 12px;
	padding: 1px 2px 0px 2px;
}

/* 帯 */
div.obi {
	background:#3385C9;
	padding:5px;
	color:white;
	text-shadow:1px 1px 2px rgba(0, 0, 0, 0.3);
	font-size:14px;
}

div.obiKenkoClub {
	background:#3385C9;
}

h1 {
	background:#3385C9;
	padding:5px;
	color:white;
	text-shadow:1px 1px 2px rgba(0, 0, 0, 0.3);
	font-size:14px;
}

h2 {
	border-left:5px solid #3385C9;
	border-bottom:1px solid #3385C9;
	padding:2px 0px 2px 5px;
	color:#222222;
	font-size:14px;
	margin-bottom:5px;
}

/* ガイド */
#guidefield {
	border:2px solid #aaaaaa;
	border-radius: 3px;
	width: 95%;
	margin: 10px auto;
}

.guidetext {
	font-size: 11px;
	margin: 3px 0 0 12px;
}

/* リストリンク */
ul.bar_list li a {
	position: relative;
	display: block;
	padding: 10px 25px 10px 10px;
	border-bottom: 1px solid #ccc;
	text-decoration: none;
	color: #222222;
	font-size:13px;
}
ul.bar_list li:first-child a {
	border-top: 1px solid #ccc;
}
ul.bar_list li a:hover {
	background: #EEEEEE;
}
ul.bar_list li a::before,
ul.bar_list li a::after {
	position: absolute;
	top: 50%;
	right: 5px;
	display: block;
	content: '';
	width: 12px;
	height: 3px;
	background-color: #888;
	border-radius: 4px;
}
ul.bar_list li a::before {
	margin-top: -4px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
ul.bar_list li a::after {
	margin-top: 3px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

ul.bar_list_nolink li {
	position: relative;
	display: block;
	padding: 10px 25px 10px 10px;
	border-bottom: 1px solid #ccc;
	text-decoration: none;
	color: #222222;
	font-size:13px;
}
ul.bar_list li:first-child {
	border-top: 1px solid #ccc;
}

ul.bar_list li:nth-child(even) {
	background:#FFFFDE;
}

ul.nocolor li:nth-child(even) {
	background:#FFFFFF;
}

ul#guidelist li:nth-child(even) {
	background:#FFFFDE;
}

ul#guidelist li:last-child a {
	border-bottom: 0;
}

ul.default {
	padding: 0 0 5px 20px;
	list-style-type:disc;
}
ul.default li {
	padding: 10px 25px 10px 0px;
}

ul.default2 {
	padding: 5px 0 5px 20px;
	list-style-type:disc;
}
ul.default2 li {
	padding: 0px 25px 2px 0px;
}

/* アイコンリスト */
ul.icon_list li {
	padding: 5px;
	border-bottom: 1px solid #ccc;
}

ul.icon_list li table {
	width: 100%;
}

ul.icon_list li table tr {
	vertical-align: top;
}

ul.icon_list li table tr td:first-child {
	width: 70px;
	padding-top: 5px;
}

ul.icon_list li table tr td:last-child {
	padding-left: 5px;
	padding-top: 5px;
	text-align: left;
}

ul.icon_list li table tr:first-child td:first-child {
	padding-top:0px;
}

ul.icon_list li table tr:first-child td:last-child {
	padding-top:0px;
}

ul.icon_list li table tr td:first-child a {
	color: #222222;
	text-decoration: none;
}

ul.icon_list li:nth-child(even) {
	background:#e6f4ff;
}

div.icon {
	width:100px;
	height:70px;
	font-size:15px;
	font-weight:bold;
	line-height:1.2;
	color:#525252;
	text-align:center;
	border:1px solid #adadad;
	border-radius:8px;
	/*box-shadow:2px 2px 2px rgba(0,0,0,0.3);*/
	/*text-shadow:
		0px -1px 2px #eee,
		-1px 0px 2px #eee,
		0px 1px 2px #eee,
		1px 0px 2px #eee,
		1px 1px 1px #222,
		2px 2px 2px #888;*/   
    background: linear-gradient(#FFFFFF, #EFEFEF);
}

div.icon.edtMail {
    float:right;
    margin-top:13px;
    padding-top:5px;
    font-size:12px;
	width:60px;
	height:23px;
}

/* 直営保養所 */
div.chokuei {
    background: linear-gradient(#FFFFFF, #CBE7FC);
}

/* ウォーキングチャレンジ */
div.walking {
    background: linear-gradient(#FFFFFF, #CBE7FC);
}

div.walkingDisabled {
	background: #aaaaaa;
}

/* 健康CLUB */
div.kenkoclub {
    background: linear-gradient(#FFFFFF, #CBE7FC);
}

/* 会員保養施設 */
div.stay,
div.member,
div.hawaii {
    background: linear-gradient(#FFFFFF, #CBE7FC);
}

div.icon div.line1 {
	margin:24px auto;
}
div.icon div.line2 {
	margin:18px auto;
}
div.icon div.line3 {
	margin:8px auto;
}


div.kenkoclubnews {
	width: 75%;
	margin: 10px auto;
	padding: 20px 30px;
	font-size: 14px;
	color: white;
	background: #036617;
	box-shadow:2px 2px 2px rgba(0,0,0,0.3);
}

/* 機関誌Healthリスト */
ul.healthinfo_list li {
	padding: 5px;
	border-bottom: 1px solid #ccc;
}

ul.healthinfo_list li table {
	width: 100%;
}

ul.healthinfo_list li table tr {
	vertical-align: top;
}

ul.healthinfo_list li table tr td:first-child {
	width: 70px;
}

ul.healthinfo_list li table tr td:last-child {
	padding-left: 5px;
	text-align: left;
	font-size: 11px;
	line-height: 1.2;
}

.webhealthplanfield {
	text-align:right;
	margin-top:5px;
}

.webhealthfield {
	text-align:right;
	line-height:1.2;
}

/* プロフィール一覧
--------------------*/
#profilelist {
	width: 95%;
	margin: 10px auto;
}

#profilelist div {
	overflow: hidden;
	margin:3px 0;
}

#profilelist div div:first-child {
	width: 110px;
	float: left;
}

#profilelist div div:last-child {
	margin-left: 110px;
	height:16px;
	display:block;
}

/* 入力フィールド */
div.inputfield {
	font-size: 12px;
	margin: 2px;
	padding: 0 5px;
	background: #FFFFFF;
	border-radius: 5px;
}

div.inputfield > .row {
	overflow: hidden;
	margin: 10px auto;
}

div.inputfield > .row > .title {
	float: left;
	width: 34%;
	margin:0;
	padding: 0;
}

div.inputfield > .row > .title > span {
	background: #C8E7FF;
	display: inline-block;
	padding: 5px 10px;
	margin:0 5px;
	border-radius: 8px;
}

div.inputfield > .row > .value {
	float: left;
	width: 63%;
	margin-top:1px;
}

input.display {
	border: 1px solid #ccc;
	background: transparent;
	padding-top:3px;
}

input.display2 {
	border: none;
	background: transparent;
	padding-top:3px;
}


input.hidden {
	display:none;
}

input.right {
	text-align: right;
}

/* 入力フィールド
--------------------*/
.explainfield {
	width: 95%;
	margin: 10px auto;
	font-size:13px;
}

.explainfield ul {
	list-style-type:disc;
	padding: 0 0 5px 20px;
}

.explainfield ul li {
	padding: 0 0 5px 0px;
}


/* ニュース
--------------------*/
#news{
	padding:5px 0;
	border-top:solid 1px #3385C9;
	border-bottom:solid 1px #3385C9;
}

#news li{
	padding:.5em;
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
	-o-text-overflow:ellipsis;
}

#news li div{
	color:#333333;
	font-size:10px;
	font-weight:bold;
}

ul.news{
	margin-left:15px;
	padding:5px 0 5px 15px;
	list-style-type:disc;
}
.news li{
	padding: 5px 5px 5px 0px;
	list-style-type:disc;
}

.news li div{
	color:#333333;
	font-size:10px;
	font-weight:bold;
}

.syokiteititle {
	margin: 15px 0 0 9px;
}

.newstime {
	color:#333333;
	font-size:10px;
	font-weight:bold;
}

/* レイヤーメニュー
--------------------*/
div#sp_bg {
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
	opacity: 0.3;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 50;
	width: 100%;
	height: 200%;
	background-color: #000;
	display:none;
}

div#sp_menu {
	position:absolute;
	top:2px;
	z-index:53;
	display:block;
	width:100%;
	display:none;
}


/* 2018/12/17 医療費通知リリース時追加 */
/* メニューヘッダボタン */
button.menuclosebutton {
	font-size: 16px;
	color: #ffffff;
	background: -ms-linear-gradient(top,#0166BB 0%,#3385C9);
    background: -moz-linear-gradient(top,#0166BB 0%,#3385C9);
	background: -webkit-gradient(linear, left top, left bottom,from(#0166BB),to(#3385C9));
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 1px;
	border: 1px solid #111111;
	-moz-box-shadow:0px 1px 3px rgba(000,000,000,0.5),inset 0px 0px 3px rgba(255,255,255,1);
	-webkit-box-shadow:	0px 1px 3px rgba(000,000,000,0.5),inset 0px 0px 3px rgba(255,255,255,1);
	box-shadow:	0px 1px 3px rgba(000,000,000,0.5),inset 0px 0px 3px rgba(255,255,255,1);
	text-shadow:0px 2px 0px rgba(000,000,000,0.3),0px 3px 0px rgba(255,255,255,0.3);
	cursor:pointer;
}

button.butonNone {
    background: #CECECE;
    color: #FFF;
    cursor: default;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

/* ログイン時メール認証用画面で使用 */
/* HCSWMK0010、0030、0050 */
#container .contents {
    margin: 10px 5px 30px 5px;
}

.text{
    line-height:1.5rem;
}

/* 新規加入者登録画面 */
.clsHonnin {
    display: none;
}

/* Web表示確認 */
.clsWebDispTitle {
    display: inline-block;
    margin-top: 10px;
    color: #0166BB;
    padding: 3px 10px;
    background: #FFFFFF;
    border-radius: 5px;
}

.clsWebDispItem {
    padding: 10px 0 0 10px;
    text-align: left;
}

.clsWebDispItem ul {
        margin: 0px 0 0 5px;
        padding: 0;
        line-height: 1.3;
}

/* 利用者系項目説明文字赤 */
span.clsSpanCharRed{
    font-size         : 12px    ;
    color             : #FF0000 ;
}

