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

基本設定

■ベースカラー：#c00 , #333(text) ,#ccc(border) , #eee(bg)

■サブカラー：#fcf1e6

■コンテンツ横幅：950px

■hover時のopacity設定：0.6とする

■ヘッダー、フッダー各二種類あり
　header.jsp：グロナビありフルバーション
　header_s.jsp：グロナビなし簡易バーション
　footer.jsp：ナビありフルバーション
　footer_s.jsp：ナビなし簡易バーション

==================================================================================================*/
/*-------------------
共通class
--------------------------------------------------*/
@import url('https://secure.apap.jp/vc/base/usr/docs/css/html5reset-1.6.1.css'); /*ブラウザのデフォルトスタイルをリセット*/
@import url('https://secure.apap.jp/vc/base/usr/docs/css/common.css');
/*-------------------
フォント
--------------------------------------------------*/
@import url('/share/fonts/notosans/css/font.css');
@import url('/share/fonts/fontawesome/css/fontawesome_ver4.css');
@import url('/share/fonts/fontawesome/css/fontawesome_ver5.css');

/*--------------
■┓基本設定
┗┛
----------------------------------------------------------*/
/* html5用 */
article,aside,canvas,details,figcaption,figure,
header,footer,main,menu,nav,section,summary {
	display: block;
}
html {
	font-size: 62.5%; /* sets the base font to 10px for eaiser math */
	overflow-x: auto;
}
body {
	background-color: #f9f9f9;
	color: #333;
	font-family: "Noto Sans Japanese","ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	letter-spacing: 0.03em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	overflow-x: visible;
}
.container {
	max-width: 950px;
	margin: 0 auto;
}
p {
	margin-bottom: 1em;
}
br {
	letter-spacing: normal;
}
label {
	cursor: pointer;
}
img {
	vertical-align: bottom;
}
a {
	color: #333;
	outline: none;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
a img {
	transition: all .2s;
}
a:hover {
	text-decoration: underline;
}
a:hover img {
	opacity: 0.6;
}
#main a {
	text-decoration: none;
}
#main a:hover {
	text-decoration: none;
}
h1,h2,h3,h4,h5 {
	line-height: 1.4;
}
/*--------------
input  textarea  select
----------------------------------------------------------*/
/* input type="checkbox" */
input[type="checkbox"] {
	display: none;
}
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: calc(0.5em + -1px);
		left: 0;
	width: 14px;
	height: 14px;
}
input[type="checkbox"] + label::after {
	border-left: 2px solid #767676;
	border-bottom: 2px solid #767676;
	opacity: 0;
		top: calc(0.5em + 3px);
		left: 3px;
	transform: rotate(-45deg) scale(.5);
	width: 8px;
	height: 4px;
}
input[type="checkbox"] + label:hover::before {
	background: #fff;
}
input[type="checkbox"]:checked + label::before {
	background: #fff;
	border: 1px solid #767676;
	opacity: 1;
}
input[type="checkbox"]:checked + label::after {
	opacity: 1;
	transform: rotate(-45deg) scale(1);
}

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

ヘッダー
header

########################################################################################*/
#header {
	background: #fff;
	border-bottom: 2px solid #c00;
}
header {
	margin: 0 auto;
	padding: 0 20px;
	width: 960px;
}
.hd_top {
	padding: 28px 0 24px;
}
/*----------------------------
上部左ロゴ
----------------------------------------------------------*/
.hd_top h1 {
	background-size: 25px 25px;
	display: flex;
		flex-direction: column;
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.2;
	padding: 0;
}
.hd_top h1 .knp_en {
	color: #c00;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: normal;
	letter-spacing: 0;
	margin-top: 4px;
}

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

コンテンツ

########################################################################################*/
/*-----------------------------------------------------------------------------
■┓共通
┗┛
-----------------------------------------------------------------------------*/
#main {
	min-height: unset;
}
main#main {
	margin: 0;
	padding: 0;
	width: 100%;
	z-index: 1;
}
.contents {
	margin: 0 auto;
	padding: 56px 20px 40px;
	width: 960px;
}
.contents_shrink {
	margin: 0 auto;
	width: 700px;
}
em {
	text-decoration: underline;
}
/*----------------------------
見出し
----------------------------------------------------------*/
#main h2 {
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: 600;
	margin-bottom: 16px;
}

/*----------------------------
テーブルスタイル
----------------------------------------------------------*/
.tbl_scroll {
	overflow-x: auto;
	width: 100%;
}
/* normal */
table.normal th ,
table.normal td {
	border: 1px solid #ddd;
	padding: 16px ;
	vertical-align: middle;
}
table.normal th {
	background: #efefef;
	white-space: nowrap;
}
table.normal thead th {
	background: #999;
	border: 1px solid #fff;
	border-top: 1px solid #999;
	color: #fff;
}
table.normal thead th:nth-child(1) {
	border-left: 1px solid #999;
}
table.normal thead th:nth-last-child(1) {
	border-right: 1px solid #999;
}
table.normal tbody th {
	background: #efefef;
	text-align: left;
}
table.normal tbody td {
	background: #fff;
}
table.normal .delete_cell {
	background-color: #fff;
	border: none !important;
}
/* arrow */
table.arrow {
	border: none;
	border-collapse: separate;
	border-spacing: 0 5px;
	width: 100%;
}
table.arrow th,
table.arrow td {
	border:0 ;
	padding: 16px;
	text-align: left;
	vertical-align: middle;
}
table.arrow th {
	background: #999;
	color: #fff;
	font-weight: normal;
	overflow: visible;
	position: relative;
	white-space: nowrap;
	width: 30%;
}
table.arrow td {
	background: #f0f0f0;
	padding-left: 20px;
	position: relative;
}
table.arrow td:before {
	border: solid transparent;
	border-color: rgba(136, 183, 213, 0);
	border-left-color: #999;
	border-width: 8px;
	content: " ";
	margin-top: -8px;
	position: absolute;
		left: 0;
		top: 50%;
	pointer-events: none;
	width: 0;
	height: 0;
}
/*----------------------------
リンクテキスト
----------------------------------------------------------*/
a.link_arrow {
	font-size: 12px;
	font-size: 1.2rem;
	position: relative;
}
a.link_arrow::before {
	content: "\f061"; /* fa-chevron-right */
	color: #156;
	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;
}

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

■┓パスワード変更のメッセージ
┗┛
-----------------------------------------------------------------------------*/
.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;
}

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

■┓ログインボックス
┗┛
-----------------------------------------------------------------------------*/
.login_box {
	background: #fff;
	border: 1px solid #ccc;
	display: flex;
		flex-wrap: wrap;
}
.login_box > .left_container {
	border-right: 1px solid #ccc;
	border-bottom: 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;
	line-height: 1;
	padding: 8px;
	width: 100%;
}
.login_btn {
	display: flex;
		align-items: center;
		flex-direction: column;
	margin: 18px 24px 8px;
}
.login_btn a.btn_login {
	background: #c00;
	color: #fff;
	display: flex;
		align-items: center;
		justify-content: center;
	font-family: "Noto Sans Japanese";
	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 {
	border-bottom: 1px solid #ccc;
	display: flex;
		flex-direction: column;
	width: 45%;
}
.howto {
	padding: 24px 24px 0;
}
.titbig {
	border-bottom: 1px solid #ccc;
	color: #156;
	font-family: "Noto Sans Japanese";
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 20px;
	padding: 0 .5em .5em;
	text-align: center;
}
.system_requirements {
	padding: 16px 24px;
}
.requirements_txt {
	font-size: 14px;
	font-size: 1.4rem;
}
.requirements_txt a {
	border-bottom: 1px solid #333;
}
.requirements_txt a:hover {
	border-bottom: none;
}
.title {
	font-family: "Noto Sans Japanese";
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	margin: .5em .25em;
	padding-left: calc(1em + 10px);
	padding-right: 24px;
	text-indent: -.72em;
}
.title i {
	margin-right: 4px;
}
.register_btn {
	padding: 0 24px 24px 0;
}
.bd_btm {
	border-bottom: solid 1px #ccc;
}
.register_btn a.btn_registration {
	display: flex;
		align-items: center;
		justify-content: center;
	background: #156;
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	margin: 1em 0 8px 32px;
	padding: 12px 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: 24px;
	font-size: 2.4rem;
	text-align: center;
	margin-bottom: 16px;
}
.login_box.login_cp {
		justify-content: center;
}
.login_box.login_cp .left_container {
	border: none;
	width: 384px;
}
/* ポップアップ画面 */
.popup_base_contents span.info_tel::before,
.popup_base_contents span.info_mail::before {
	color: #333;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: .2em;
}
.popup_base_contents span.info_tel::before {
	content: "\f095";
	font-size: 15px;
	font-size: 1.5rem;
}
.popup_base_contents span.info_mail::before {
	content: "\f0e0";
}

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

■┓健診・VCお問い合わせ
┗┛
-----------------------------------------------------------------------------*/
.contact_info {
	font-family: "Noto Sans Japanese";
	margin: 2em 0 1em;
}
.contact_info .info_wrap {
	margin: 24px .2em 0;
}
.contact_info .info_wrap {
	border-bottom: 1px solid #ccc;
	padding-bottom: 16px;
}
.contact_info .info_wrap > div:first-of-type {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	margin: 0 0 .5em 1.2em;
	position: relative;
}
.contact_info .info_wrap > div:first-of-type::before {
	color: #c00;
	content: "\f0c8";
	font-family: "Font Awesome 5 Free";
	font-size: 12px;
	font-size: 1.2rem;
	position: absolute;
		top: .2em;
		left: -1.2em;
}
.contact_info .info_wrap .info_contents {
	display: flex;
		flex-wrap: wrap;
}
.contact_info .info_wrap .info_contents > div:first-of-type {
	letter-spacing: -.02em;
	margin-bottom: 12px;
	width: calc(44% + 5px);
}
.contact_info .info_wrap .info_contents > div:nth-of-type(2) {
	display: flex;
		flex-wrap: wrap;
}
.contact_info .info_wrap .info_contents .info_tel {
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
	margin-right: .6em;
}
.contact_info .info_wrap .info_contents .info_mail {
	font-size: 15px;
	font-size: 1.5rem;
}
.contact_info .info_wrap .info_contents .info_tel::before,
.contact_info .info_wrap .info_contents .info_mail::before {
	color: #c00;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: .2em;
}
.contact_info .info_wrap .info_contents .info_tel::before {
	content: "\f095";
	font-size: 15px;
	font-size: 1.5rem;
}
.contact_info .info_wrap .info_contents .info_mail::before {
	content: "\f0e0";
}
.contact_info .info_wrap .info_contents .info_tel span {
	display: block;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: normal;
	margin-left: 1.2em;
}
.contact_info .info_wrap .info_contents .info_mail a {
	border-bottom: 1px dotted #c00;
}
/*-----------------------------------------------------------------------------

■┓プライバシーマークなど
┗┛
-----------------------------------------------------------------------------*/
.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;
	width: 700px;
}
#main .btn_knp_top {
	border: 1px solid #c00;
	display: inline-block;
	margin: 70px auto 0;
	padding: 10px;
	text-align: center;
	text-decoration: none;
}
#main .btn_knp_top:hover {
	background: #c00;
	color: #fff;
}
#main .btn_knp_top:hover::before {
	color: #fff;
}
#main .btn_knp_top::before {
	color: #c00;
	content: "\f0a9";
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 5px;
}

/*-----------------------------------------------------------------------------
■┓パスワード変更ページ
┗┛
-----------------------------------------------------------------------------*/
#main .tbl_input_pw {
	font-size: 16px;
	font-size: 1.6rem;
	width: 100%;
}
#main .tbl_input_pw td input {
	width: 100%;
}
#main .submit_area {
	display: flex;
		justify-content: center;
	margin: 2em 0;
}
#main .btn_submit {
	background-image: url(https://secure.apap.jp/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: #c00;
	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;
	margin-bottom: 8px;
	padding: 18px 16px 18px 28px;
	transition: all .2s;
	width: 240px;
}
#main input:hover.btn_submit {
	opacity: .6;
}
/*----------------------------
ログインに戻る
----------------------------------------------------------*/
.page_transition {
	margin-top: 7rem;
	text-align: center;
}
.page_transition a {
	border: 1px solid #c00;
	color: #c00;
	display: inline-block;
	font-size: 12px;
	font-size: 1.2rem;
	min-width: 160px;
	padding: 10px 14px;
}
.page_transition a i {
	margin-right: 10px;
}
.page_transition a:hover {
	opacity: .6;
}

/*-----------------------------------------------------------------------------
■┓お問い合わせフォーム
┗┛
-----------------------------------------------------------------------------*/
#inquiry {
	margin: 0 auto;
	width: 90%;
}
#inquiry .disabled {
	background: #ddd;
}
.tel_width input[type="text"],
.email_width input[type="text"] {
	width: 400px;
}
.email_area {
	width: 100%;
}
.email_conf {
	display: flex;
		flex-wrap: wrap;
}
.email_conf1_width {
	width: auto;
}
.email_conf1_width input[type="text"] {
	width: 185px;
}
.email_conf2_width input[type="text"] {
	width: 185px;
}
.email_conf2_width {
	display: flex; /* @マーク横並び用 */
	width: auto;
}
.email_conf2_width_contents {
	display: flex;
	width: 100%;
}
.email_conf2_width .mark{
	display: flex;
		align-items: center;
		justify-content: center;
	width: 30px;
	height: 40px; /* input[type="text"]の高さ */
}
.email_conf1_width input {
	width: 185px;
}
.email_conf2_width input {
	width: 185px;
}
.inquiry_textarea {
	width: 100%;
	height: 100px;
}
.wrap_qes {
	width: 95%;
	margin: 0 auto;
}
.wrap_qes div {
	padding: 5px 0;
}
#inquiry table.arrow td.name_width_flex {
	display: flex;
		flex-wrap: wrap;
}
.name_width input {
	margin-right: 1em;
	width: 200px;
}
.radio, .checkbox {
	border-radius: 8px;
	cursor: pointer;
	display: inline-block;
	margin: 0 20px 0 0;
	padding: 12px 12px 12px 42px;
	position: relative;
	transition: background-color 0.2s linear;
	-webkit-transition: background-color 0.2s linear;
	vertical-align: middle;
}
.radio:hover::after, .checkbox:hover::after {
	border-color: #999;
}
.radio::after, .checkbox::after {
	border: 2px solid #999;
	border-radius: 10px;
	content: '';
	display: block;
	margin-top: -10px;
	position: absolute;
		top: 50%;
		left: 15px;
	transition: border-color 0.2s linear;
	-webkit-transition: border-color 0.2s linear;
	width: 16px;
	height: 16px;
}
.radio::before {
	background-color: #c00;
	border-radius: 50%;
	content: '';
	display: block;
	margin-top: -5px;
	opacity: 0;
	position: absolute;
		left: 20px;
		top: 50%;
	transition: opacity 0.2s linear;
	-webkit-transition: opacity 0.2s linear;
	width: 10px;
	height: 10px;
}
.checkbox::before {
	border-right: 3px solid #c00;
	border-bottom: 3px solid #c00;
	content: '';
	display: block;
	margin-top: -7px;
	opacity: 0;
	position: absolute;
		top: 50%;
		left: 21px;
	transition: opacity 0.2s linear;
	-webkit-transition: opacity 0.2s linear;
	transform: rotate(45deg);
	width: 5px;
	height: 9px;
}
.button {
	display: flex;
		flex-wrap: wrap;
		justify-content: center;
	margin: 40px 10px;
}
.button input {
	font-size: 16px;
	font-size: 1.6rem;
	height: 40px;
	margin: 10px;
	min-width: 200px;
	padding: 8px 16px;
}
input[type=submit], input[type=reset] {
	-webkit-box-shadow: none;
}
.qes_tel {
	border-style: dotted;
	border-width: 1px 0;
	display: inline-block;
	padding: 12px;
}
.qes_tel br {
	display: none;
}
#inquiry span.note{
	color: #f00;
	font-size: 12px;
	font-size: 1.2rem;
}

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

フッター
#footer

########################################################################################*/
/*----------------------------
フッターメイン
----------------------------------------------------------*/
#footer .footer_nav {
	background-color: #c00;
	font-size: 14px;
	font-size: 1.4rem;
	margin: 0;
	padding: 30px 0;
}
#footer .footer_nav .knp_contact_wrap {
	color: #fff;
	display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	margin: auto;
	padding: 0 20px;
	width: 960px;
}
.knp_contact_wrap > .left_container {
	display: flex;
		flex-direction: column;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: normal;
	margin-bottom: 8px;
	width: 45%;
}
.knp_contact_wrap > .left_container .knp_name {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6;
}
.knp_contact_wrap > .right_container {
	display: flex;
		flex-flow: column;
	width: 55%;
}
.knp_contact_wrap > .bottom_container {
	display: flex;
		flex-flow: column;
	width: 100%;
}
.contact_method {
	display: flex;
		flex-wrap: wrap;
}
.contact_method .tel {
	display: flex;
		align-items: flex-start;
		flex-direction: column;
	font-size: 22px;
	font-size: 2.2rem;
	font-weight: bold;
}
.contact_method .tel i {
	font-size: 16px;
	font-size: 1.6rem;
	margin-top: 9px;
	vertical-align: top;
}
.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 .tel a,
.contact_method .email a {
	color: #fff;
}
.contact_method .email a {
	border-bottom: 1px dotted #fff;
}
.contact_method .email a:hover {
	border-bottom: none;
	text-decoration: none;
}
.knp_address {
	font-size: 15px;
	font-size: 1.5rem;
}

/*----------------------------
コピーライト
----------------------------------------------------------*/
#footer p {
	background-color: #fff;
	font-size: 10px;
	font-size: 1.0rem;
	margin-bottom: 0;
	padding: 25px 0;
	text-align: center;
}
