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

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

初期認証ページでも使用

==================================================================================================*/
/*-------------------
フォント（/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');

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: 16px 20px;*/
	padding: 80px 20px 0;
	width: 100%;
	z-index: 1;
}
main#main p {
	margin-bottom: 1em;
}
main#main .tit {
	font-family: "Noto Sans Japanese";
}
main#main .ls_0 {
	letter-spacing: 0;
}
/*########################################################################################

ヘッダー

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

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

ログインページスタイル

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

■┓ログインボックス
┗┛
-----------------------------------------------------------------------------*/
.login_wrap {
	/*margin: 40px auto 64px;*/
	margin: 0 auto;
	width: 700px;
}
.login_wrap > .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 h2 {
	font-size: 28px;
	font-size: 2.8rem;
	font-weight: bold;
	margin: .5em auto;
	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 {
	margin: 18px 24px 8px;
}
.login_btn a.btn_submit {
	background: #e72731;
	font-size: 18px;
	font-size: 1.8rem;
	padding: 18px 12px;
	margin-bottom: 8px;
}
.login_box > .right_container {
	display: flex;
		flex-direction: column;
	width: 45%;
}
.howto,
.system_requirements {
	padding: 24px 32px;
}
.requirements_txt a {
	border-bottom: 1px solid #333;
}
.requirements_txt a:hover {
	border-bottom: none;
}
.howto {
	border-bottom: 1px solid #ccc;
}
.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_submit {
	background: #000088;
	font-size: 16px;
	font-size: 1.6rem;
	margin: 1em 0 8px 32px;
	padding: 12px 0;
}
.login_box > .bottom_container {
	border-top: 1px solid #ccc;
	padding: 28px 32px 32px;
	width: 100%;
}
.login_box > .bottom_container .ttl_notice {
	font-size: 24px;
	font-size: 2.4rem;
	text-align: center;
	margin-bottom: 16px;
}
/* パスワード表示切替 */
input[type="checkbox"] + label::before,
input[type="checkbox"] + label::after {
	content: "";
	display: block;
	position: absolute;
	transition: all .2s;
}
input[type="checkbox"] + label::before {
	top: 0.5em;
}
input[type="checkbox"] + label::after {
	border-left: 2px solid #767676;
	border-bottom: 2px solid #767676;
	top: calc(0.5em + 4px);
}
input[type="checkbox"]:checked + label::before {
	border: 1px solid #767676;
}
.login_box .show_pass {
	user-select: none;
}
.login_form:has(+ .show_pass) {
	margin-bottom: 0;
}

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

フッター

########################################################################################*/
#footer .footer_nav {
	margin: 0;
	padding: 30px 0;
}
#footer .footer_nav .knp_contact_wrap {
	color: #fff;
	display: flex;
		align-items: end;
		justify-content: space-between;
	margin: auto;
	padding: 0 40px;
	width: 960px;
}
#footer .footer_nav .knp_contact_wrap span{
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: normal;
}
.knp_contact_wrap > .left_container {
	font-size: 17px;
	font-size: 1.7rem;
	font-weight: bold;
}
.knp_contact_wrap > .right_container {
	display: flex;
		flex-flow: column;
}
.contact_method {
	display: flex;
		align-items: center;
		flex-wrap: wrap;
}
.contact_method .tel {
	color: #fff;
	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 {
	display: flex;
		align-items: flex-end;
}
.contact_method .tel i {
	font-size: 16px;
	font-size: 1.6rem;
	vertical-align: top;
	margin-top: 12px;
}
.contact_method .tel span {
	padding-bottom: 4px;
}
.contact_method .email {
	font-size: 16px;
	font-size: 1.6rem;
	margin: 0 0 0 1em;
}
.contact_method .email a {
	border-bottom: 1px dotted #fff;
}
.contact_method .email a:hover {
	border-bottom: none;
}
.copy_right {
	background-color: #fff;
}

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

■┓「次へ」等のボタン　→　（a.btn_submit）
┗┛
-----------------------------------------------------------------------------*/
a.btn_submit {
	color: #fff !important;
	display: flex;
		align-items: center;
		justify-content: center;
	font-weight: bold;
	transition: all .2s;
}
a.btn_submit span {
	display: block;
	line-height: 1.0;
}
a.btn_submit:hover {
	opacity: .6;
}
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;
}
/*-----------------------------------------------------------------------------

■┓プライバシーマークなど
┗┛
-----------------------------------------------------------------------------*/
.privacy_mark {
	padding: 28px 0 14px;
}
.privacy_mark section {
	display: flex;
		align-items: center;
}
.privacy_mark section div:nth-of-type(1) {
	padding-right: 16px;
}
.privacy_mark section div:nth-of-type(2) {
	font-size: 12px;
	font-size: 1.2rem;
}
.privacy_mark section img {
	width: 75px;
}

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

■┓ログアウト
┗┛
-----------------------------------------------------------------------------*/
.logout_wrap {
	margin: 40px auto 120px;
	width: 700px;
}
#main .btn_knp_top {
	border: 1px solid #000088;
	display: inline-block;
	padding: 10px;
	text-align: center;
	margin: 70px auto 0;
	text-decoration: none;
}
#main .btn_knp_top:hover {
	background: #000088;
	color: #fff;
}
#main .btn_knp_top:hover::before {
	color: #fff;
}
#main .btn_knp_top::before {
	color: #000088;
	content: "\f0a9";
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 5px;
}
/*-----------------------------------------------------------------------------

■┓パスワード変更のメッセージ
┗┛
-----------------------------------------------------------------------------*/
.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;
}
.alert_contents {
}
/*----------------------------
ログインに戻る
----------------------------------------------------------*/
.page_transition {
	margin-top: 7rem;
	text-align: center;
}
.page_transition a {
	border: 1px solid #E72731;
	color: #E72731;
	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: #E72731;
	color: #fff;
}
#main .btn_knp_top::before {
	color: #0071bb;
	content: "\f0a9";
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 5px;
}
#main .btn_knp_top:hover::before {
	color: #fff;
}
#main .next_btn_two {
	display: flex;
		justify-content: center;
		flex-wrap: wrap;
}
#main .next_btn_two > div {
	margin: 0 8px;
	width: 30%;
	min-width: 240px;
}
#main .next_btn_two > div > a {
	width: 100%;
}
#main .btn_knp_top {
	border: 1px solid #000088;
	display: inline-block;
	padding: 10px;
	text-align: center;
	margin: 70px auto 0;
	text-decoration: none;
}
#main .btn_knp_top:hover {
	background: #000088;
	color: #fff;
}
#main .btn_knp_top:hover::before {
	color: #fff;
}
#main .btn_knp_top::before {
	color: #000088;
	content: "\f0a9";
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 5px;
}
