@charset "utf-8";
/*==================================================================================================

基本設定（768px以下）

==================================================================================================*/
body {
	min-width: auto;
}
.br_pc {
	display: none !important;
}
/*########################################################################################

サイト全体枠

########################################################################################*/
#container {
	width: 100%;
}
/*########################################################################################

ヘッダー

########################################################################################*/
/*-----------------------------------------------------------------------------
■┓ヘッダー全体枠
┗┛
-----------------------------------------------------------------------------*/
#header {

}
header {
	width: 100%;
}
header .main {
	display: flex;
}
.header_wrap {
	background: url(../images/login_catch.png) 280px 8% no-repeat;
}
.header_wrap h1 {
	/*font-size: 24px;*/
	padding-left: 16px;
}
.header_wrap h1 span {
	font-size: 14px;
}

.header_wrap .header_contents {
	padding-right: 0;
}
/*--------------
ハンバーガーメニュー
----------------------------------------------------------*/
#panel_menu ,
#panel_contents {
	display: block;
}
#panel_menu {
	position: fixed;
	top: 8px;
	right: 8px;
	z-index: 9999;
}
#panel_menu_btn {
	display: inline-block;
	position: relative;
	width: 50px;
	height: 50px;
	margin: 0 0 10px;
	border-radius: 50%;
	background: #004098;
	box-shadow: 2px 2px 2px rgba(100,100,100,0.4);
}
#panel_menu_icon {
	display: block;
	position: absolute;
	top: 60%;
	left: 50%;
	width: 14px;
	height: 2px;
	margin: -1px 0 0 -7px;
	background: #fff;
	transition: .2s;
}
#panel_menu_icon::before, #panel_menu_icon::after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 14px;
	height: 2px;
	background: #fff;
	transition: .3s;
}
#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テキスト */
	font-size: 10px;
	color: #fff;
	text-align: center;
	margin-top: 5px;
}
#panel_contents {
	display: none;
	height: auto;
	width: 100%;
}
#panel_contents .contents {
	width: 100%;
	margin-bottom: 30px;
}
#panel_contents .contents ul.main_menu {
	background: #fff;
}
#panel_contents .contents ul.main_menu li:nth-child(1) { /* 検索窓スタイル */
	padding: 0 16px 16px 16px;
}
#panel_contents .contents ul.main_menu li a {
	background: #004098;
	border-bottom: 1px solid #999;
	color: #fff;
	display: block;
	text-decoration: none;
	padding: 16px;
	position: relative;
}
#panel_contents .contents ul.main_menu li a:hover {
	opacity: .6;
}
#panel_contents .contents ul.main_menu li:nth-last-child(1) {
	margin-bottom: 1px;
}
#panel_contents .contents ul.main_menu li a:hover {
	color: #ff0;
}
#panel_contents .contents ul.main_menu li a::after {
	position: absolute;
	display: block;
	top: calc(50% - 3px);
	right: 10px;
	content: "";
	width: 6px;
	height: 6px;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transform: rotate(-45deg);
}
#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 {
	box-shadow: 0 1px 0 rgba(255,255,255,0.8);
	color: #000;
}


#panel_contents .contents ul.main_menu li a.pers {
	background: #e7f0f7;
}
#panel_contents .contents ul.main_menu li a.crems {
	background: #fee4d8;
}
#panel_contents .contents ul.main_menu li a.me {
	background: #f5fbdf;
}


#panel_contents .contents ul.main_menu li a.pers::after,
#panel_contents .contents ul.main_menu li a.crems::after ,
#panel_contents .contents ul.main_menu li a.me::after {
	border-right: 3px solid #000;
	border-bottom: 3px solid #000;
}
.close_btn {
	margin-top: -4px;
	text-align: center;
}
#panel_close_btn {
	background: #666;
	border-radius: 0 0 40px 40px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
	display: inline-block;
	margin-bottom: 16px;
	position: relative;
	width: 80px;
	height: 40px;
}
#panel_close_btn:hover {
	text-decoration: none;
}
#panel_close_btn_icon {
	display: block;
	position: absolute;
	top: 60%;
	left: 50%;
	width: 14px;
	height: 2px;
	margin: -1px 0 0 -7px;
}
#panel_close_btn_icon::before, #panel_close_btn_icon::after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 14px;
	height: 2px;
	background: #fff;
}
#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テキスト */
	font-size: 10px;
	color: #fff;
	text-align: center;
	margin-top: 2px;
}
/*--------------
ヘッダーナビ
----------------------------------------------------------*/
.header_wrap .header_contents .header_nav {
	display: none;
}
/*--------------
文字サイズ変更ボタン
----------------------------------------------------------*/
header .textsize {
	display: none;
}
/*--------------
検索フォーム
----------------------------------------------------------*/
.search_box {
	display: none;
}
.search_wrapper {
	width: 100%;
	height: 40px;
	border: 1px solid #004098;
}
.search_wrapper .btn_search_submit {
	right: 0;
	width: 60px;
	height: 38px;
	padding: 5px;
}
.search_wrapper input {
	font-size: 16px;
	font-size: 1.6rem;
	height: 40px;
	width: 100%;
}
/*########################################################################################

グローバルナビゲーション

########################################################################################*/
nav#gnavi {
	display: none;
}
nav#gnavi .container {
	margin: 0 auto;
	padding: 0 0;
}
nav#gnavi ul {
	flex-flow: wrap;
}
nav#gnavi li {
	width: 100%;
}
nav#gnavi li::before {
	display: none;
}

/*########################################################################################

セカンダリページ

########################################################################################*/
/*-----------------------------------------------------------------------------
■┓メインコンテンツ
┗┛
-----------------------------------------------------------------------------*/
#main {
	width: auto;
	margin: 0;
	padding: 0 16px;
}
#main h1 {
	font-size: 24px;
	font-size: 2.4rem;
	margin: 1em 0 1em  -8px;
}
#main h1:first-child {
	margin-top: 0;
}
#main h2 {
	font-size: 20px;
	font-size: 2.0rem;
	margin: 3em 0 .5em -8px;
}
#main h2 span {
}
#main h3 {
	font-size: 18px;
	font-size: 1.8rem;
	margin: 40px 0 .5em -8px;
}
#main h4 {
	font-size: 16px;
	font-size: 1.6rem;
	margin: 1em 0 .5em -8px;
}
/*----------------------------
パンくずリスト
----------------------------------------------------------*/
nav#breadcrumbs{
	display: none;
}
/*----------------------------
健保からのお知らせ
----------------------------------------------------------*/
#info_kenpo .icon_list {
	position: absolute;
	top: 8px;
	right: 0;
}
/*----------------------------
こんな時はどうする？
----------------------------------------------------------*/
.situation_menu ul li {
	float: none;
}
.situation_menu ul li div {
	width: auto;
	margin: 0;
	font-size: 14px;
	font-size: 1.4rem;
}
.situation_menu ul li img {
	display: none;
}
.situation_menu ul li span {
	position: relative;
	display: block;
	padding-left: 20px;
	margin-bottom: 5px;
	font-size: 20px;
	font-size: 2.0rem;
}
.situation_menu ul li span::before {
	position: absolute;
	display: block;
	content: "";
	top: calc(50% - 6px);
	left: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #004098;
}
.situation_menu ul li span::after {
	position: absolute;
	display: block;
	content: "";
	top: calc(50% - 2px);
	left: 5px;
	box-sizing: border-box;
	width: 3px;
	height: 3px;
	border: 3px solid transparent;
	border-left: 5px solid #fff;
}
/*----------------------------
各種申請書
----------------------------------------------------------*/
.application_flow img {
	display: none;
	margin-bottom: 20px;
}
.application_pdf_wrap {
	width: 100%;
}
.application_pdf {
	width: 100%;
}
.application_pdf:first-child {
	margin-right: 0;
}
.application_pdf th,
.application_pdf td {
	width: auto;
}
.application_pdf td div {
	white-space: nowrap;
}
.application_flow_sp {
	display: block;
}
/*----------------------------
健保のしくみ
----------------------------------------------------------*/
.shikumi_index li {
	width: auto;
}
.shikumi ul {
	width: 100%;
	margin-left: 0;
}
/*----------------------------
お問い合わせ
----------------------------------------------------------*/
#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 {
	width: calc(100% - 3em);
	margin-left: 10px;
}
#inquiry table.contact_personal_data td input.email {
	width: 100%;
}
#inquiry table.contact_personal_data td input.email_conf1 {
	width: 100%;
	margin-right: 0;
}
#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;
}
/*########################################################################################

フッター

########################################################################################*/
footer {
	width: 100%;
	margin: 0 auto;
}
footer small {
	display: block;
	position: relative;
	text-align: center;
	width: auto;
}
footer .footer_bottom {
	flex-direction: row;
	flex-wrap: wrap;
	margin: 20px;
	padding-bottom: 10px;
	width: auto;
}
footer .inquiry_details,
footer .recommended_browser {
	width: 100%;
}
/*########################################################################################

汎用クラス

########################################################################################*/
/*--------------
PC版用２カラム（こんな時はどうする？レイアウト）
----------------------------------------------------------*/
#two_column {
	flex-flow: wrap;
}
#two_column .menu {
	margin-bottom: 40px;
	padding-right: 0;
	width: 100%;
}
#two_column .contents {
	padding: 0 0 0 0;
	width: 100%;
}
/*--------------
テーブルスタイル
----------------------------------------------------------*/
.tbl_scroll { /* テーブル、オーバーフローで横スクロールバー表示 */
	overflow-x: auto;
	width: 100%;
}
table.provision_tbl th:first-of-type {
	width: auto;
}



/*########################################################################################

ログインページスタイル

########################################################################################*/
#main_login {
	margin: 8px auto 0;
	padding: 0 16px;
}
/*-----------------------------------------------------------------------------

■┓ログインボックス
┗┛
-----------------------------------------------------------------------------*/
.login_wrap {
	width: 100%;
}
.login_box table {
	width: 80%;
}
.login_box table td input {
	width: 100%;
}
/*-----------------------------------------------------------------------------

■┓ヘルプメニュー
┗┛
-----------------------------------------------------------------------------*/
.help_menu {
	display: flex;
	align-items: center; /* 縦方向位置揃え */
	justify-content: center; /* 横方向位置揃え */
	width: 100%;
}
/*-----------------------------------------------------------------------------

■┓ログイン注意書き
┗┛
-----------------------------------------------------------------------------*/
.login_notes {
	padding: 16px 0 0 0;
}

.login_box table th,
.login_box table td {
	display: block;
	text-align: left;
	width: 100%;
}

.login_box table th {
	padding-bottom: 0;
}

/*-----------------------------------------------------------------------------

■┓プライバシーマークなど
┗┛
-----------------------------------------------------------------------------*/
.privacy_mark section img {
	min-width: 75px;
}