@charset "utf-8";
/*-------------------
フォント（/kenpo-site/gXXX/css/main.css に記載のフォントが読み込めないため）
--------------------------------------------------*/
@import url('/vc/base/usr/docs/fonts/notosans/css/font.css');
@import url('/vc/base/usr/docs/fonts/yakuhanjp-master/css/yakuhanjp.min.css');
@import url('/vc/base/usr/docs/fonts/fontawesome/css/fontawesome_ver4.css');
@import url('/vc/base/usr/docs/fonts/fontawesome/css/fontawesome_ver5.css');
/*==================================================================================================

共通スタイル
基本設定（PC版想定：769px以上）

初期認証ページでも使用

==================================================================================================*/
body {
	background-color: #f7f7f7;
	overflow-x: visible;
	overflow-y: visible;
}
a {
	text-decoration: none !important;
}
/*==================================================================================================

基本設定

==================================================================================================*/
/*
body設定など/vc/kenpo/css/common.cssに共通属性セレクタとして設定
*/

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

サイト全体枠

########################################################################################*/
main#main {
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: auto;
	z-index: 1;
}
.contents {
	width: 960px;
	margin: 0 auto;
	padding: 56px 20px 40px;
}
.contents_shrink {
	margin: 0 auto;
	width: 700px;
}
h2 {
	margin-bottom: 16px;
	text-align: left;
}
main#main p {
	margin-bottom: 1em;
}
main#main .tit {
	font-family: "Noto Sans Japanese";
}
/*########################################################################################

ヘッダー

########################################################################################*/
/*-----------------------------------------------------------------------------
■┓ヘッダー全体枠
┗┛
-----------------------------------------------------------------------------*/
#header {
	background: #fff;
	border-bottom: 2px solid #0b5ed7;
}
header {
	margin: 0 auto;
	width: 950px;
}

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

コンテンツ

########################################################################################*/
/*-----------------------------------------------------------------------------

■┓ログインボックス
┗┛
-----------------------------------------------------------------------------*/
.login_box {
	background: #fff;
	border: 1px solid #ccc;
	display: flex;
		flex-wrap: wrap;
}
.login_box > .left_container {
	border-right: 1px solid #ccc;
	padding: 48px;
	width: 55%;
}
.login_box > .left_container .ttl_login {
	font-size: 28px;
	font-size: 2.8rem;
	font-weight: bold;
	margin: 0 auto .5em;
	text-align: center;
}
.login_form {
	margin-bottom: 3px;
}
.login_form input {
	font-family: FontAwesome;
	font-size: 18px;
	font-size: 1.8rem;
	padding: 8px;
	width: 100%;
}
.login_btn {
	display: flex;
		flex-direction: column;
		align-items: flex-end;
	margin: 18px 24px 8px;
}
.login_btn a.btn_login {
	background: #c84302;
	color: #fff;
	display: flex;
		align-items: center;
		justify-content: center;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.0;
	margin-bottom: 8px;
	padding: 18px 12px;
	transition: all .2s;
	width: 100%;
}
.login_btn a:hover.btn_login {
	opacity: .6;
}
.login_box > .right_container {
	display: flex;
		flex-direction: column;
	width: 45%;
}
.howto,
.system_requirements {
	padding: 24px 32px;
}
.howto {
	border-bottom: 1px solid #ccc;
}
.requirements_txt a {
	border-bottom: 1px solid #333;
}
.requirements_txt a:hover {
	border-bottom: none;
}
.title {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	text-indent: -.5em;
	margin: .5em 0;
	padding-left: 1em;
}
.title i {
	margin-right: 4px;
}
.register_btn a.btn_registration {
	display: flex;
		align-items: center;
		justify-content: center;
	background: #0b5ed7;
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	margin: 1em 0 8px 32px;
	padding: 8px 0;
}
.register_btn a:hover.btn_registration {
	opacity: .6;
}
.login_box > .bottom_container {
	border-top: 1px solid #ccc;
	padding: 28px 32px 32px;
	width: 100%;
}
.login_box > .bottom_container .ttl_notice {
	font-size: 16px;
	font-size: 1.6rem;
	text-align: center;
	margin-bottom: 16px;
	font-weight: bold;
}
/* input type="checkbox" */
input[type="checkbox"] + label {
	display: inline-block;
	margin-right: 0.8em;
	padding: 3px 3px 3px 22px;
	position: relative;
}
input[type="checkbox"] + label::before,
input[type="checkbox"] + label::after {
	content: "";
	display: block;
	position: absolute;
	transition: all .2s;
}
input[type="checkbox"] + label::before {
	background: #f4f4f4;
	border: 1px solid #ccc;
	border-radius: 3px;
	top: 0.5em;
	left: 0;
	width: 14px;
	height: 14px;
}
input[type="checkbox"] + label::after {
	border-left: 2px solid #767676;
	border-bottom: 2px solid #767676;
	top: calc(0.5em + 4px);
	left: 3px;
	width: 8px;
	height: 4px;
	opacity: 0;
	transform: rotate(-45deg) scale(.5);
}
input[type="checkbox"] + label:hover::before {
	background: #fff;
}
input[type="checkbox"]:checked + label::before {
	background: #fff;
	border: 1px solid #767676;
}
input[type="checkbox"]:checked + label::after {
	transform: rotate(-45deg) scale(1);
	opacity: 1;
}
/* パスワード表示切替 */
.login_box .show_pass {
	user-select: none;
}
.login_form:has(+ .show_pass) {
	margin-bottom: 0;
}
/* パスワード変更時のログイン画面 */
.login_box.login_cp {
	justify-content: center;
}
.login_box.login_cp .left_container {
	border: none;
	width: 384px;
}
.login_box.login_cp .login_btn {
	align-items: center;
}

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

フッター

########################################################################################*/
#footer .footer_nav {
	margin: 0;
	padding: 30px 0;
}
#footer .footer_nav .knp_contact_wrap {
	color: #fff;
	display: flex;
		justify-content: space-between;
	margin: auto;
	padding: 0 40px;
	width: 960px;
}
.knp_contact_wrap > .left_container {
	display: flex;
		flex-direction: column;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: normal;
	margin-bottom: 12px;
}
.knp_contact_wrap > .left_container .knp_name {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.2;
}
.knp_contact_wrap > .right_container {
	display: flex;
		flex-flow: column;
}
.contact_method {
	display: flex;
		flex-wrap: wrap;
}
.contact_method .tel {
	color: #fff;
	display: flex;
		flex-direction: column;
		align-items: flex-start;
	font-size: 22px;
	font-size: 2.2rem;
	font-weight: bold;
}
.contact_method .tel span {
	font-weight: normal;
}
.contact_method .tel a,
.contact_method .email a {
	color: #fff;
}
.contact_method .tel i {
	font-size: 16px;
	font-size: 1.6rem;
	vertical-align: top;
	margin-top: 12px;
}
.contact_method .tel .reception_time {
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: normal;
	margin: -8px 0 4px 16px;
}
.contact_method .email {
	font-size: 16px;
	font-size: 1.6rem;
	margin: 4px 0 0 2em;
}
.contact_method .email a {
	border-bottom: 1px dotted #fff;
}
.contact_method .email a:hover {
	border-bottom: none;
}
.knp_address {
	font-size: 12px;
	font-size: 1.2rem;
}

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

■┓テキストリンク
┗┛
-----------------------------------------------------------------------------*/
a.link_arrow {
	font-size: 12px;
	font-size: 1.2rem;
	position: relative;
}
a.link_arrow::before {
	content: "\f061"; /* fa-chevron-right */
	color: #333;
	display: inline-block;
	font-family: FontAwesome;
	padding-right: 4px;
}
a.link_arrow span {
	border-bottom: 1px solid #000;
}
a.link_arrow:hover span {
	border-bottom: none;
}

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

■┓「健保サイトへ戻る」「戻る」「閉じる」ボタン
┗┛sso_logout.jsp
　　ja-update_password_ok.jsp
　　ja-update_password_ng.jsp
-----------------------------------------------------------------------------*/
.page_transition {
	margin-top: 7rem;
	text-align: center;
}
.page_transition a {
	border: 1px solid #0b5ed7;
	color: #0b5ed7;
	display: inline-block;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 10px 14px;
	min-width: 160px;
}
.page_transition a i {
	margin-right: 10px;
}
.page_transition a:hover {
	background-color: #0b5ed7;
	color: #fff;
}

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

■┓パスワード変更ページ
┗┛
-----------------------------------------------------------------------------*/
.alert_box {
	background: #fffcfc;
	border: 1px solid #e66;
	border-radius: 4px;
	margin-bottom: 2em;
	padding: 16px;
}
.alert_ttl {
	color: #f00;
	margin-bottom: 8px;
}
.alert_ttl::before {
	content: "\f06a";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
.tbl_input_pw td input {
	width: 100%;
}
.submit_area {
	display: flex;
		justify-content: center;
	margin: 2em 0;
}
input.btn_submit {
	background-image: url(/vc/base/usr/docs/images/ic_arrow@2x.png);
	background-repeat: no-repeat;
	background-position: 64px calc(50% + 1px);
	background-size: 16px 13px;
	background-color: #c84302;
	border: none;
	color: #fff;
	cursor: pointer;
	display: flex;
		align-items: center;
		justify-content: center;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.0;
	padding: 18px 16px 18px 28px;
	margin-bottom: 8px;
	transition: all .2s;
	width: 240px;
	height: 56px;
}
input:hover.btn_submit {
	opacity: .6;
}
