﻿@charset "utf-8";


/*
==================================================
style.css　temp20140303
--------------------------------------------------

■サイトの基礎
■レイアウト
■レイアウト
■コンテンツごとの固有スタイル
■サイト内で共通のスタイル
■その他

==================================================
*/

/*---------------------------------------------------------------

    10px = 77%     11px = 85%     12px = 93%     13px = 100%
    14px = 108%    15px = 116%    16px = 123.1%  17px = 131%
    18px = 138.5%  19px = 146.5%  20px = 153.9%  21px = 161.6%
    22px = 167%    23px = 174%    24px = 182%    25px = 189%
    26px = 197%
	
----------------------------------------------------------------*/



/* ----------------------------------------
 サイトの基礎
---------------------------------------- */

/* CSS リセット
---------------------------------------- */
h1,h2,h3,h4,h5,h6,p { margin:0;padding:0; }
input[type="text"]:focus{ outline:none; }

/* ブラウザによるフォームのズレを回避 */
form { vertical-align: bottom; }
input,button { vertical-align:middle; }

/* 全要素にbox-sizing:boder-boxを指定
※パディングとボーダーを幅と高さに含める
---------------------------------------- */
* {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	}

/* フォント・カラー・テキストスタイル
---------------------------------------- */
body, input, button, select, textarea {
	background-color:#e7e5e3;
	color:#000000 !important;
	font-size:13px;
	font-family: Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	}

::selection {
    background-color: #fcc27e !important;
    color: #fff;
}

/* 段落 */
p { line-height: 1.6; }

/* リンク */
a:link {
  color: #3F4F8F;
}
a:hover {
	color: #EE1F47;
	opacity:.7;
	transition: color 0.5s, opacity 0.5s;
	}
a:visited { color: #494179; }
a:active { color: #AA396B; }


/* ----------------------------------------
 レイアウト
---------------------------------------- */

.wrapper {
	margin:0 auto;
	width:1000px;
	}

/* ヘッダー
--------------------------------- */
.header:before {
	display: block;
	height:10px;
	background-color:#00b050;
	content: " ";
	}
.header {
	height:110px;
	background-color:#FFF;
	}

/* サイトタイトル */
.siteTitle {
	float:left;
	margin-top:27px;
	text-indent:-9999px;
	}
.siteTitle a {
	display:block;
	width:437px;
	height:50px;
	background:url(../image/fuminTitle_2018.png) no-repeat left top;
	}


/* 20160202 ADD_START 赤松*/
/*携帯サイト*/
.mobileSite {
	float:right;
	margin-right:20px;
	padding:10px;
	width:90px;
	height:80px;
	}
.mobileSite a {
	display:block;
	width:90px;
	height:80px;
	background:url(../image/myMenu_keitai_small_2018.png);
	}
/* 20160202 ADD_END 赤松*/




/* コンテンツ
--------------------------------- */
.contents {
	padding:20px 0;
	}

.mainCol {
	float:left;
	margin-right:2%;
	width:68%;
	}

.subCol {
	float:left;
	width:30%;
	}
	
.col-wrap {
	margin-bottom:20px;
	background-color:#FFF;
	}
.col-body {
	padding:10px;   
}

.col-body a {
	text-decoration :none 
}


/* フッター
--------------------------------- */
.footer {
	padding:10px 0;
	background-color:#FFF;
	text-align:center;
	}



/* ----------------------------------------
 コンテンツごとの固有スタイル
---------------------------------------- */

/* ヘッダー
--------------------------------- */

/* 文字サイズ変更 */
.fontSize {
	float:right;
	margin-top:10px;
	padding:10px;
	width:130px;
	height:80px;
	background-color:#00b050;
	}
.fontSize p {
	margin-bottom:10px;
	padding-top:5px;
	color:#fff;
	text-align:center;
	font-size:116%;
	line-height:1;
	}
.fontSize .clearfix {
	margin-right:-10px;
	}
.fontSize a {
	display:block;
	float:left;
	margin-left:10px;
	line-height: 29px;
	width:30px;
	height:30px;
	background-color:#f5f5f5;
	color:#00b050;
	text-align:center;
	text-decoration:none;
	font-weight:bold;
	}
.fontSize a:first-child {
	margin-left:0;
	}

.fontSize a.selected {
	background-color:#f0404c;
	color:#ffffff;
	}

.fontSize .fontSize-buttons .fontSize-small {
	font-size: small;
	}

.fontSize .fontSize-buttons .fontSize-large {
	font-size: large;
	}


/* コンテンツ部分
--------------------------------- */

/* キーワード検索 */



.keySearch input, .keySearch button {
	font-size:153.9%;
	}
.keySearch input {
	margin-right:-105px;
	padding:10px 110px 10px 10px;
	width:100%;
	border:1px solid #bdc3c7;
	background-color:#FFF;
	}
.keySearch button {
	padding:10px 0;
	width:100px;
	border: 1px solid #bdc3c7;
	background-color:#bdc3c7;
	color:#fff !important;
	text-align:center;
	}

/* タブエリア */

.tabs {
	margin-bottom:20px;
	}

/* タブエリア - メニュー部分 */
.tabs-tab {
	float:left;
	margin-top:5px;
	width:32%;
	height:75px;
	}
.tabs-tab:first-child {
	margin-right:2%;
	}
.tabs-tab:last-child {
	float:right;
	}
.tabs-tab:hover, .tabs-head .selected {
	margin-top:0;
	height:80px;
	}
.tabs-tab a {
	display:block;
	height:100%;
	background-position:center top;
	text-indent:-9999px;
	}
.tabs-tab a:hover {
	opacity: 1;
	}

.medical-tab a { background-image:url(../image/tab_medical_2017.png); }
.english-tab a { background-image:url(../image/tab_english_2017.png); }
.links-tab a { background-image:url(../image/tab_links_2017.png); }


/* タブエリア - 表示領域部分 */

.tabs-body.selected { display: block; }
.tabs-body.hidden { display: none; }

.tabs-body {
	padding:20px;
	border:10px solid #f0404c;
	background-color:#FFF;
	}
.tabs-body img {
	max-width:100%;
	height:auto;
	}

.english-body { border-color:#00b0f0; }
.links-body { border-color:#f89419; }


/* ボタン部分 */
.tab-search-btn {
	margin-bottom:20px;
	text-align:center;
	}
.tab-search-btn:last-child {
	margin-bottom:0;
	}
.tabs-search-avaliable ,
.tabs-search-various {
	border:3px solid #f0404c;
	}

/* 20160108 ADD_START 赤松*/
.tabs-search-various2 {
	border:3px solid #f0404c;
	}
/* 20160108 ADD_END 赤松*/

.tabs-body h3 {
	color:#f0404c;
	font-weight: normal;
	font-size:250%;
	}

.tabs-body h3 a {
	display:block;
	padding:40px 20px;
	width:100%;
	height:100%;
	color:#f0404c;
	text-decoration: none;
	}
.tabs-body h3 a:hover {
	background-color:#f0404c;
	color:#fff;
	}

.tabs-search-avaliable {
	padding:20px;
	}
a.tab-search-department, 
a.tab-search-address {
	display: inline-block;
	margin-top:10px;
	padding-top:25px;
	width:45%;
	height:80px;
	background-color:#f0404c;
	color:#fff;
	text-decoration: none;
	font-size:200%;
	}
.tab-search-department {
	margin-right:3%;
	}
	
/* Search by English */
.english-body h3 {	color:#00b0f0;	}
.english-body h3 a { color:#00b0f0; }
.english-body h3 a:hover { background-color:#00b0f0; }
.english-body .tab-search-btn {	border:3px solid #00b0f0;	}

/* リンク */

.tab-search-btn-links ul {
	padding:0;
	margin:0;
	margin-left:-4px;
	}
.tab-search-btn-links li {
	list-style-type: none;
	float:left;
	margin-left:4px;
	margin-bottom:5px;
	border:2px solid #e9c871;
	line-height:1;
	}
.tab-search-btn-links a {
	display:block;
	text-decoration:none;
	color: #997000;
	background-color:#ffffff;
	}
.tab-search-btn-links li:nth-child(odd) a {
	background-color:#fffcf3;
	}
.tab-search-btn-links a:hover,
.tab-search-btn-links li:nth-child(odd) a:hover {
	/*01 - 20140903 - ThienNHQ - NewCR: Change text color on mouse over*/
	/*BEGIN*/ 
	/*color:#fff;*/
	color:#000000;
	/*END*/
	background-color:#ffd966;
	}
.tab-search-btn-links span {
	display: table-cell;
	width:200px;
	height:50px;
	vertical-align:middle;
	padding:5px;
	}

/* 20160106 ADD_START 赤松*/
/*医療機関を探す機能リンク追加*/
.tab-search-btn-small ul {
	padding:0;
	margin:0;
	margin-left:-4px;
    text-align:center;
	}

.tab-search-btn-small li {
	list-style-type: none;
	float:left;
	margin-left:4px;
	margin-bottom:5px;
	border:2px solid #f0404c;
	line-height:1;
	}

/*項目の設定*/
.tab-search-btn-small a {
	display:block;
	text-decoration:none;
	color: #f0404c;
    font-size:150%;
	}
/*背景色*/
.tab-search-btn-small li:nth-child(odd) a {
	background-color:#fff;
	}
/*マウスカーソルが重なったとき*/
.tab-search-btn-small a:hover,
.tab-search-btn-small li:nth-child(odd) a:hover {
	color:#fff;
	background-color:#f0404c;
	}
/*枠の大きさ設定*/
.tab-search-btn-small span {
	display: table-cell;
	width:304px;
	height:63px;
	vertical-align:middle;
	padding-top:2.7px;
	}
/* 20160106 ADD_END 赤松*/

/* お知らせ */
.info ul {
	margin:0;
	padding:0;
	border-top: 1px dotted #00b050;
	font-size:108%;
	}
.info li {
	padding:5px 0;
	border-bottom: 1px dotted #00b050;
	list-style-type: none;
	}
.info-date {
	display: inline-block;
	margin-right:20px;
	color:#00b050;
	font-weight:bold;
	}

.readMore {
	margin-top:10px;
	text-align:right;
	}
.readMore a {
	display: inline-block;
	padding:5px 10px;
	background-color:#00b050;
	color:#fff;
	text-decoration:none;
	}

.return {
	margin-top:10px;
	text-align:right;
	}
.return a {
	display: inline-block;
	padding:5px 10px;
	background-color:#f0404c;
    font-size:150%;
	color:#fff;
	text-decoration:none;
    width:150px;
    text-align:center;
	}

/* サブメニュー */
.subMenu {
	margin-bottom:20px;
	}
.subMenu ul, .subMenu li {
	margin:0;
	padding:0;
	list-style-type: none;
	}

.subMenu a {
	display: block;
	margin-bottom: 3px;
	padding: 5px 9px 5px 23px;
	background-color: #FFF;
	color: #2e75b6;
	text-decoration: none;
	text-indent: -13px;
	font-size: 108%;
    border: 3px solid #2e75b6;
	}
.subMenu a:before {
	margin-right:5px;
	content: "\f0da";
	font-weight: normal;
	font-style: normal;
	font-family: FontAwesome;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	}

/* ブロックメニュー（マイメニュー） */
ul.block-buttons , .block-buttons li {
	margin:0;
	padding:0;
	list-style-type: none;	
	}
ul.block-buttons {
	margin-right:-20px;
	}
.block-buttons li a {
	display:block;
	float:left;
	margin:0 20px 20px 0;
	width:140px;
    /* 20160205 EDIT_START 赤松*/
	/*height:130px;*/
    height:110px;
    /* 20160205 EDIT_END 赤松*/
	background-color:#fcc27e;
	text-indent:-9999px;
	}
/* 20160205 EDIT_START 赤松*/
/*.myMenu-home a { background-image:url(../image/myMenu_home.png); }*/
/*.myMenu-doctor a { background-image:url(../image/myMenu_doctor.png); }*/
.myMenu-home a { background-image:url(../image/myMenu_home_2017.png); }
.myMenu-doctor a { background-image:url(../image/myMenu_doctor_2017.png); }
/* 20160205 EDIT_END 赤松*/
.myMenu-keitai a { background-image:url(../image/myMenu_keitai2014.png); }
/* 20160205 EDIT_START 赤松*/
/*.myMenu-drugStore a { background-image:url(../image/myMenu_drugStore.png); }*/
.myMenu-drugStore a { background-image:url(../image/myMenu_drugStore_2017.png); }
/* 20160205 EDIT_END 赤松*/
.info-medical a { background-image:url(../image/login_medical_2017.png); }
.info-emergency a { background-image:url(../image/login_emergency_2017.png); }
/* 20160118 ADD_START 赤松*/
.myMenu-suddenClinic a { background-image:url(../image/myMenu_SuddenClinic_2017.png); }
.myMenu-emergencyClinic a { background-image:url(../image/myMenu_EmergencyClinic_2017.png); }

.block-buttons li.myMenu-homeRegist a {
	background-image:url(../image/myMenu_HomeRegistration_2017.png);
	width: 300px;
	height: 65px;
}

.myMenu-psychiatry a { background-image:url(../image/myMenu_psychiatry_2017.png); }

/* ブロックメニュー（関係者ログイン部分共通） */
ul.block-buttons2 , .block-buttons2 li {
	margin:0;
	padding:0;
	list-style-type: none;	
	}
ul.block-buttons2 {
	margin-right:-20px;
	}
.block-buttons2 li a {
	display:block;
	float:left;
	margin:0 20px 20px 0;
	width:140px;
	height:130px;
	background-color:#fcc27e;
	text-indent:-9999px;
	}
/* 20160118 ADD_END 赤松*/

ul.block-buttons3 , .block-buttons3 li {
	margin:0;
	padding:0;
	list-style-type: none;	
	}
ul.block-buttons3 {
	margin-right:-20px;
	}
.block-buttons3 li a {
	display:block;
	float:left;
	margin:0 20px 20px 0;
	width:125px;
	height:100px;
	background-color:#fcc27e;
	text-indent:-9999px;
	}


ul.block-buttons4 , .block-buttons4 li {
	margin:0;
	padding:0;
	list-style-type: none;	
	}
ul.block-buttons4 {
	margin-right:-20px;
	}
.block-buttons4 li a {
	display:block;
	float:left;
	margin:0 20px 20px 0;
	width:140px;
	height:100px;
	background-color:#fcc27e;
	text-indent:-9999px;
	}
/* 20160118 ADD_END 赤松*/

/* 緊急連絡先 */
.emergency p {
	margin:10px 0;
	line-height:1.2;
	}
.emergency-dial {
	color:#2e75b6;
	font-size:220%;
	font-family: 'Varela', sans-serif;
	}


/* おおさかメディカルネット */

.block-buttons li.myMenu-osakaMedicalNet
{
	float:left;
	margin-bottom:20px;
	padding: 0 0 0 0;
	width:300px;
	background-color:#00b050;
	color:#ffffff;
}

.block-buttons li.myMenu-osakaMedicalNet div.HeadLine
{
	margin:10px 0 5px 0;
	text-align:center;
	font-size: 16px;
	font-weight:bolder;
}

.block-buttons li.myMenu-osakaMedicalNet div.Link
{
	padding:0 5px 0 5px;
}

.block-buttons li.myMenu-osakaMedicalNet div.Link ul
{
	margin:0;
	padding:0;
}

.block-buttons li.myMenu-osakaMedicalNet div.Link li 
{
	display:block;
	float:none;
	height:40px;
	margin:0 0 5px 0;
	border:1px solid #ffffff;
}

.block-buttons li.myMenu-osakaMedicalNet div.Link li a:before
{
	margin-right:5px;
	content: "\f0da";
	font-weight: normal;
	font-style: normal;
	font-family: FontAwesome;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.block-buttons li.myMenu-osakaMedicalNet div.Link li a 
{
	display:block;
	float:none;
	vertical-align:middle;
	width:100%;
	height:100%;
	margin:0;
	padding:12px 0 0 0;
	background-color:inherit;
	text-indent:10px;
	text-decoration:none;
	color:#ffffff;
}



/* ----------------------------------------
 サイト内で共通のスタイル
---------------------------------------- */

/* 見出し
--------------------------------- */
.headline {
	padding:7px;
	height:30px;
	background-color:#00b050;
	color:#fff;
	font-weight: normal;
	font-size:123.1%;
	}



/* テキスト
--------------------------------- */
.bold, strong,b { font-weight:bold; }
em { font-weight:bold;font-style: italic;}
.big { font-size:116%; /* 文字サイズ大：デフォルト13pxの場合 116%＝15px */ }
.small { font-size:85%; } /* 文字サイズ小：デフォルト13pxの場合 85%＝11px */
.red { color:#f0404c; }
.blue { color:#00b0f0; }

/* レイアウト
--------------------------------- */
.ta_c { text-align:center; } /* テキスト中央揃え */
.ta_r { text-align:right; } /* テキスト右揃え */
.ta_l { text-align:left; } /* テキスト左揃え */
.fl_l { float:left; } /* 左にフロート */
.fl_r { float:right; } /* 右にフロート */
.w_full { width:100%; } /* 横幅を100%に */
.mb30 { margin-bottom:30px; } /* 下マージン30px */


/* ----------------------------------------
 その他
---------------------------------------- */

/* clearfix
---------------------------------------- */

.clearfix:after {
	display:block;
	clear:both;
	content:"";
	}

input#txtSearch {
	border-right: 100px;
    /*' 20160105 EDIT_START 赤松*/
	/*border-right-style: solid;*/
    border-right-style:none;
    /*' 20160105 EDIT_END 赤松*/
	padding-right: 10px;
    /*' 20160105 ADD_START 赤松*/
     width:650px
    /*' 20160105 ADD_END 赤松*/
}
