@charset "utf-8";
/*--------------
基本設定
----------------------------------------------------------*/
.br_pc {
	display: none !important;
}
.br_sp {
	display: block !important;
}
/*-----------------------------------------------------------------------------
■┓サイト全体枠
┗┛
-------------------------------------------------------------------------------*/
#container {
	margin: 0;
	overflow: hidden;
	padding-top: 0;
	width: 100%;
}
/*-----------------------------------------------------------------------------
■┓ヘッダー用
┗┛
-------------------------------------------------------------------------------*/
/*--------------
ヘッダー全体枠
----------------------------------------------------------*/
header {
	background: #fff;
	width: 100%;
	height: 80px;
}
header .main {
	width: auto;
}
.site_logo {
	background: #fff;
	padding-left: 7px;
}
.header_wrap .header_contents {
	display: none;
}
/*--------------
ハンバーガーメニュー
----------------------------------------------------------*/
#gray_panel {
	background: #000;
	display: none;
	opacity: 0.6;
	position: fixed;
		top: 0;
		left: 0;
	width: 100%;
	height: 99999px;
	z-index: 9998; /* .fixedは10000　ハンバーガーメニュー表示時の重なり調整 */
}
#panel_menu ,
#panel_contents {
	display: block;
}
#panel_menu {
	position: fixed;
		top: 8px;
		right: 8px;
	z-index: 9999;
}
#panel_menu_btn {
	background: #20190b;
	border-radius: 50%;
	box-shadow: 2px 2px 2px rgba(100,100,100,0.4);
	display: inline-block;
	margin: 0 0 10px;
	position: relative;
	width: 50px;
	height: 50px;
}
#panel_menu_icon {
	background: #fff;
	display: block;
	margin: -1px 0 0 -7px;
	transition: .2s;
	position: absolute;
		top: 60%;
		left: 50%;
	width: 14px;
	height: 2px;
}
#panel_menu_icon::before, #panel_menu_icon::after {
	background: #fff;
	display: block;
	content: "";
	position: absolute;
		top: 50%;
		left: 0;
	transition: .3s;
	width: 14px;
	height: 2px;
}
#panel_menu_icon::before {
	margin-top: -6px;
}
#panel_menu_icon::after {
	margin-top: 4px;
}
#panel_menu_btn {
	text-decoration: none;
}
#panel_menu_btn .close {
	background: transparent;
}
#panel_menu_btn .close::before, #panel_menu_btn .close::after {
	margin-top: 0;
}
#panel_menu_btn .close::before {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
#panel_menu_btn .close::after {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
#panel_menu_btn .menu_text { /* MENUテキスト */
	color: #fff;
	font-size: 10px;
	margin-top: 5px;
	text-align: center;
}
#panel_contents {
	display: none;
	max-height: 100%;
	overflow-y: scroll;
	position: fixed;
		top: 0;
	width: 100%;
	height: 100%;
	z-index: 9998;
}
#panel_contents .contents {
	margin-bottom: 30px;
	width: 100%;
}
#panel_contents .contents ul.main_menu {
	background: #20190b;
}
#panel_contents .contents ul.main_menu li:nth-child(1) {
	background: #20190b;
	border-bottom: 1px solid rgba(0,0,0,0.3);
	box-shadow: 0 1px 0 rgba(255,255,255,0.3);
	margin-bottom:1px;
	padding: 20px 30px;
}
#panel_contents .contents ul.main_menu li a {
	background: #20190b;
	border-bottom: 1px solid rgba(0,0,0,0.3);
	box-shadow: 0 1px 0 rgba(255,255,255,0.3);
	color: #fff;
	display: block;
	margin-bottom:1px;
	padding: 13px 7px 13px 15px;
	position: relative;
	text-decoration: none;
}
#panel_contents .contents ul.main_menu li a:hover {
	color: #ff0;
}
#panel_contents .contents ul.main_menu li a::after {
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	content: "";
	display: block;
	position: absolute;
		top: calc(50% - 3px);
		right: 10px;
	transform: rotate(-45deg);
	width: 6px;
	height: 6px;
}
#panel_contents .contents ul.main_menu li a:hover::after {
	border-right: 3px solid #ff0;
	border-bottom: 3px solid #ff0;
}
#panel_contents .contents ul.main_menu li a.benefit,
#panel_contents .contents ul.main_menu li a.vc,
#panel_contents .contents ul.main_menu li a.eshinsei,
#panel_contents .contents ul.main_menu li a.situation10,
#panel_contents .contents ul.main_menu li a.pers,
#panel_contents .contents ul.main_menu li a.crems,
#panel_contents .contents ul.main_menu li a.me,
#panel_contents .contents ul.main_menu li a.kennin {
	box-shadow: 0 1px 0 rgba(255,255,255,0.7);
}
#panel_contents .contents ul.main_menu li a.benefit {
	background: #db3841;
}
#panel_contents .contents ul.main_menu li a.vc {
	background: #f99;
}
#panel_contents .contents ul.main_menu li a.eshinsei {
	background: #eece23;
}
#panel_contents .contents ul.main_menu li a.situation10 {
	background: #87cefa;
}
#panel_contents .contents ul.main_menu li a.pers {
	background: #39f;
}
#panel_contents .contents ul.main_menu li a.crems {
	background: #f93;
}
#panel_contents .contents ul.main_menu li a.me {
	background: #9c3;
}
#panel_contents .contents ul.main_menu li a.kennin {
	background: #2d61b8;
}
.close_btn {
	text-align: center;
}
#panel_close_btn {
	background: #999;
	border-radius: 0 0 40px 40px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
	display: inline-block;
	margin: 0 0 10px;
	position: relative;
	width: 80px;
	height: 40px;
}
#panel_close_btn:hover {
	text-decoration: none;
}
#panel_close_btn_icon {
	display: block;
	margin: -1px 0 0 -7px;
	position: absolute;
		top: 60%;
		left: 50%;
	width: 14px;
	height: 2px;
}
#panel_close_btn_icon::before, #panel_close_btn_icon::after {
	background: #fff;
	content: "";
	display: block;
	position: absolute;
		top: 50%;
		left: 0;
	width: 14px;
	height: 2px;
}
#panel_close_btn_icon::before {
	margin-top: 0;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
#panel_close_btn_icon::after {
	margin-top: 0;
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
#panel_close_btn .menu_text { /* MENUテキスト */
	color: #fff;
	font-size: 10px;
	margin-top: 2px;
	text-align: center;
}
/*--------------
ヘッダーナビ
----------------------------------------------------------*/
.header_wrap .header_contents .header_nav {
	display: none;
}
/*--------------
文字サイズ変更ボタン
----------------------------------------------------------*/
header .textsize {
	display: none;
}
/*--------------
検索フォーム
----------------------------------------------------------*/
#search_box {
	display: none;
}
.search_wrapper {
	border: 1px solid #fff;
	width: 100%;
	height: 40px;
}
.search_wrapper .btn_search_submit {
	padding: 5px;
		right: 0;
	width: 60px;
	height: 38px;
}
.search_wrapper input {
	font-size: 108%;
	height: 40px;
}
/*--------------
グローバルナビゲーション
----------------------------------------------------------*/
nav#gnavi {
	display: none;
	box-shadow: none;
	 -webkit-box-shadow: none;
	-moz-box-shadow: none;
}
/*-----------------------------------------------------------------------------
■┓サイトトップ用
┗┛
-------------------------------------------------------------------------------*/
/*--------------
メインコンテンツ
----------------------------------------------------------*/
#main_index {
	padding: 0;
	width: auto;
}
/*--------------
イメージ、キャッチコピー
----------------------------------------------------------*/
section.top_catch {
	display: none;
}
/*--------------
SP版サイトトップ用イメージ、キャッチコピー
----------------------------------------------------------*/
.top_catch_sp {
	display: block;
	line-height: 0;
	width: auto;
}
/*--------------
USB KW21-Connectログイン画面
----------------------------------------------------------*/
.ubs_login_box {
	padding: 32px;
	width: auto;
}
.ubs_login_box > div {
	width: 48%;
}
/*--新型コロナウイルスのお知らせ設置時---*/
.attention_cr {
	width: auto;
}

/*--------------
各システムへリンク
----------------------------------------------------------*/
section.sys_link {
	margin-bottom: 50px;
	width: auto;
	height: auto;
}
section.sys_link ul {
	width: 100%;
	height: auto;
}
section.sys_link ul li:first-child,
section.sys_link ul li:nth-child(2) { /*カフェテリアプラン,イベント*/
	padding: 0;
	width: 100%;
	height: auto;
}
section.sys_link ul li {
	width: 100%;
	height: auto;
}
section.sys_link ul li a {
	border-bottom: 1px solid rgba(0,0,0,0.3);
	box-shadow: 0 1px 0 rgba(255,255,255,0.7);
	color: #fff;
	display: block;
	padding: 13px;
	text-decoration: none;
}
section.sys_link ul li a.benefit {
	background: #db3841;
}
section.sys_link ul li a.vc {
	background: #f99;
}
section.sys_link ul li a.situation10 {
	background: #87cefa;
}
section.sys_link ul li a.eshinsei {
	background: #eece23;
}
section.sys_link ul li a.event {
	background: #5f5f5f;
}
section.sys_link ul li a.pers {
	background: #39f;
}
section.sys_link ul li a.crems {
	background: #f93;
}
section.sys_link ul li a.me {
	background: #9c3;
}
section.sys_link ul li a.kennin {
	background: #2d61b8;
}
section.sys_link ul li a:hover {
	color: yellow;
	text-decoration: none;
}
section.sys_link ul li:hover {
	background: #999;
	cursor: pointer;
}
section.sys_link ul li span {
	visibility: visible;
}
section.sys_link ul li img {
	display: none;
}

/*--------------
インフォーメーションエリア
----------------------------------------------------------*/
section.info {
	clear: both;
	width: auto;
	height: auto;
}
/*--------------
健保からのお知らせ
----------------------------------------------------------*/
.kenpo_info {
	float: none;
	width: auto;
	height: auto;
}
.kenpo_info .info_head {
	background: none;
	width: auto;
}
.kenpo_info .info_head span {
	background: url(../images/sp_headline.png) 0 0 no-repeat;
	font-size: 18px;
	line-height: 32px;
	margin: 30px 10px 0;
	padding-left: 30px;
	visibility: visible;
}
.kenpo_info .info_head .info_list {
	bottom: 25px;
}
.kenpo_info .bottom {
	background: none;
}
.kenpo_info .contents {
	background: none;
	width: auto;
}
.kenpo_info .contents .infotext {
	max-height: 220px;
	width: auto;
	height: auto;
}
.kenpo_info .contents .infotext::-webkit-scrollbar{ 
	width: 15px;
}
.kenpo_info .contents .infotext::-webkit-scrollbar-thumb{ 
	background: #ccc;
	border-radius: 10px;
}
.kenpo_info .contents .infotext::-webkit-scrollbar-track-piece:start{
	background: #efefef;
}
.kenpo_info .contents .infotext::-webkit-scrollbar-track-piece:end{
	background: #fff;
}
/*--------------
こんな時はどうするの？
----------------------------------------------------------*/
.other_info {
	width: 320px;
	height: auto;
}
.other_info_tab ul.other_info_tab1 li:first-child,
.other_info_tab ul.other_info_tab2 li:first-child {
	display: none;
}
.other_info_tab ul.other_info_tab2 {
	background: none;
	width: 320px;
}
.other_info_tab ul.other_info_tab2 li {
	cursor: default;
	display: block;
	margin: 30px 10px 0;
	visibility: visible;
}
.other_info_tab ul.other_info_tab2 li span {
	background: url(../images/sp_headline.png) 0 0 no-repeat;
	display: block;
	font-size: 18px;
	line-height: 32px;
	padding-left: 30px;
	visibility: visible;
	width: auto;
	height: 35px;
}
.other_info .bottom,
.other_info .contents {
	background: none !important;
}
.other_info .contents {
	width: auto;
	height: auto;
}
.situation_block {
	display: none ;
}
.service_block {
	margin: 20px 0 0 10px;
	width: auto;
	height: auto;
}
.service_block ul li {
	background: none !important;
	float: none;
	text-align: left;
	width: 100%;
}
.service_block ul li a img {
	display: none;
}
.service_block ul li span {
	display: block;
	width: auto;
	height: auto;
}
.service_block li a {
	font-size: 18px;
	margin-bottom: 20px;
	position: relative;
	padding-left: 20px;
}
.service_block li a::before {
	background: #20190b;
	border-radius: 50%;
	content: "";
	display: block;
	position: absolute;
		top: 2px;
		left: 0;
	width: 14px;
	height: 14px;
}
.service_block li a::after {
	border: 3px solid transparent;
	border-left: 5px solid #fff;
	box-sizing: border-box;
	display: block;
	content: "";
	position: absolute;
		top: 6px;
		left: 5px;
	width: 3px;
	height: 3px;
}
/*-----------------------------------------------------------------------------
■┓セカンダリページ用
┗┛
-------------------------------------------------------------------------------*/
/*--------------
パンくずリスト
----------------------------------------------------------*/
nav#breadcrumbs{
	display: none;
}
/*--------------
メインコンテンツ
----------------------------------------------------------*/
#main {
	padding: 0 10px;
	width: auto;
	margin: 0;
}
#main h1 {
	background: #20190b;
	margin: 0 0 0.5em -10px;
	width: auto;
}
#main h1 span {
	border-left: none;
	color: #fff;
	font-weight: normal;
	padding: 13px 13px 13px 4px;
	text-decoration: none;
	width: auto;
	height: auto;
}
#main h1:first-child {
	margin-top: 0;
	margin-right: -10px;
}
#main h2 {
	background: none;
	border-bottom: none;
	color: #303;
	font-size: 18px;
	font-weight: normal;
	letter-spacing: 0.05em;
	margin: 70px 0 1em;
	padding: 0;
}
#main h2 span {
	background: url(../images/sp_headline.png) 0 0 no-repeat;
	font-size: 18px;
	line-height: 21px;
	margin: 0;
	min-height: 30px;
	padding: 4px 0 0 30px;
}
#main h3 span{
	padding: 4px 0px 0px 7px;
}
#main h4 {
	padding: 5px;
}
/*--------------
健保からのお知らせ　アーカイブページレイアウト
----------------------------------------------------------*/
#info_container {
	background: none;
}
#info_header #title {
	background: none;
	width: 100%;
	height: auto;
}
#info_menu {
	margin-bottom: 20px;
	width: auto;
}
#info_menu div.selectYear {
	background: none;
	padding: 3px 0 0 0;
}
#info_menu ul {
	margin: 0;
}
#info_main ul {
	margin: 5px 0 15px 10px;
	width: auto;
}
/*--------------
各種申請書用スタイル
----------------------------------------------------------*/
.application_flow img {
	display: none;
	margin-bottom: 20px;
}
.application_pdf_wrap {
	width: 100%;
}
.application_pdf {
	width: 100%;
}
.application_pdf h5 span{
	padding: 4px 0 0 7px;
}
.application_pdf:first-child {
	margin-right: 0;
}
.application_pdf th,
.application_pdf td {
	width: auto;
}
.application_pdf td div {
	white-space: nowrap;
}
/*--------------
こんな時はどうする？ページ用スタイル
----------------------------------------------------------*/
.situation_menu ul li {
	float: none;
}
.situation_menu ul li div {
	font-size: 12px;
	margin: 0;
	width: auto;
}
.situation_menu ul li img {
	display: none;
}
.situation_menu ul li span {
	display: block;
	font-size: 18px;
	margin-bottom: 5px;
	padding-left: 20px;
	position: relative;
}
.situation_menu ul li span::before {
	background: #d79b00;
	border-radius: 50%;
	content: "";
	display: block;
	position: absolute;
		top: 2px;
		left: 0;
	width: 14px;
	height: 14px;
}
.situation_menu ul li span::after {
	border: 3px solid transparent;
	border-left: 5px solid #fff;
	box-sizing: border-box;
	content: "";
	display: block;
	position: absolute;
		top: 6px;
		left: 5px;
	width: 3px;
	height: 3px;
}
/*--------------
健保のしくみページ用スタイル
----------------------------------------------------------*/
.shikumi_index li {
	width: auto;
}
.shikumi ul {
	margin-left: 0;
	width: 100%;
}
/*----------------------------
健保のしくみ
> 保険証としてのマイナンバーカード利用(guide_13.jsp)
----------------------------------------------------------*/
.mynumber .mynum_contact_free .hour_tit {
	margin: 0 8px 4px 0;
}
.mynumber .mynum_contact_free .hour_tit:not(:first-of-type),
.mynumber .mynum_contact_free2 > div:not(:first-of-type) {
	margin-left: 0;
}

/*--------------
PC版用２カラム（こんな時はどうする？レイアウト）
----------------------------------------------------------*/
#two_column .menu {
	float: none;
	margin-bottom: 20px;
	width: 100%;
}
#two_column .menu ul {
	float: none;
	margin-right: 10px !important;
	width: auto;
}
:root *> #two_column .menu ul {/* IE6,7,8以外対応 */
	float: none;
	margin: 0;
	width: auto;
}
/*--------------
お問い合わせ
----------------------------------------------------------*/
#inquiry table.arrow {
	width: 100%;
}
#inquiry table.arrow th,
#inquiry table.arrow td {
	display: block;
	width: 100%;
}
#inquiry table.arrow th {
	white-space: normal;
}
#inquiry table.arrow td:before {
	display: none;
}
#inquiry table.contact_personal_data td input.name {
	margin-left: 10px;
	width: calc(100% - 3em);
}
#inquiry table.contact_personal_data td input.email {
	width: 100%;
}
#inquiry table.contact_personal_data td input.email_conf1 {
	margin-right: 0;
	width: 100%;
}
#inquiry table.contact_personal_data td input.email_conf2 {
	width: calc(100% - 1.5em);
}
#inquiry table.contact_personal_data td input.tel {
	width: 100%;
}
#inquiry .contact_textarea {
	width: 100%;
	height: 100px;
}
/*--------------
テーブルスタイル
----------------------------------------------------------*/
/* provision_tbl */
table.provision_tbl th:first-of-type {
	width: auto;
}
/*--------------
フッター
----------------------------------------------------------*/
footer {
	margin: 0 auto;
	width: 100%;
}
footer small {
	display: block;
	padding: 5px;
	position: relative;
		bottom: 5px;
		right: 0;
	text-align: center;
	width: auto;
}
footer .footer_menu {
	display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	font-size: 100%;
	margin: 20px;
	padding: 0;
	width: auto;
}
footer ul.parent {
	display: block;
	margin-left: 0;
	width: calc(50% - 0px);
}
footer ul.parent:first-of-type {
	display: block;
}
footer ul.parent:nth-child(4) {
	display: block;
	visibility: hidden;
}
footer ul.parent li{
	line-height: 1.2em;
	padding-bottom: 0.5em;
}
footer ul.parent li a::before {
	position: absolute;
		top: 8px;
		left: -2px;
}
footer ul.parent li a::after {
	position: absolute;
		top: 4px;
		left: 3px;
}
footer ul.parent li.bg_none li {
	padding-bottom: 1.0em;
}
footer ul.inside_parent {
	margin-left: 0;
	width: auto;
}
footer ul.child {
	padding-top: 1em;
}
footer ul.child li {
	padding-bottom: 1.0em;
}
footer ul.child li a {
	padding-left: 9px;
}
footer ul.child li a::after {
		top: calc(50% - 3px);
}
footer .footer_bottom {
		flex-direction: row;
		flex-wrap: wrap;
	margin: 20px;
	padding-bottom: 10px;
	width: auto;
}
footer .kenpo_details,
footer .browser {
	margin: 10px 0 20px;
	width: 100%;
}
footer .browser ul li::before {
	position: absolute;
		top: 2px;
		left: 2px;
}
.registered_icon {
	line-height: 1.5em;
}
/*--------------
ページのトップへ（#totop）
----------------------------------------------------------*/
.page_top {
	position: fixed;
		right: 8px;
	z-index: 9999;
}
.page_top a {
	background: #fff;
	border-radius: 50%;
	display: inline-block;
	line-height: 50px;
	position: relative;
}
/*--------------
SSO用ログインページスタイル
----------------------------------------------------------*/
#error{
	margin: 20px auto 0;
	width: 100%;
}
#login{
	width: 100%;
}
.login_box {
	width: 100%;
}
.login_box dl {
	width: 100%;
}
.login_box dt,
.login_box dd{
	display: block;
	width: 100%;
}
.login_box dt {
	padding-top: 0;
	padding-right: 0;
	text-align: left;
	width: 100%;
}
.login_box dd {
	margin: 0;
	width: 100%;
}
.login_box dd input{
	width: 100%;
}
.login_box dd input:first-child {
	margin-bottom: 1em;
}
.login_box dd ul {
	margin: 0.5rem auto 0;
}
.login_button a{
	margin:0.5rem auto 0;
	text-align:center;
}
.help_menu {
	width: 100%;
}
.help_menu ul {
	padding: 20px 0;
}
.seal_verify {
	width: 100%;
}
