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

基本設定

■ベースカラー：#06c , #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('/vc/base/usr/docs/css/html5reset-1.6.1.css'); /*ブラウザのデフォルトスタイルをリセット*/
@import url('/vc/base/usr/docs/css/common.css');
/*-------------------
フォント
--------------------------------------------------*/
@import url('https://fonts.googleapis.com/earlyaccess/notosansjapanese.css');
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://use.fontawesome.com/releases/v5.0.6/css/all.css');
/* スクロールヒント読み込み */
@import url('https://secure.apap.jp/vc/base/usr/docs/css/scroll-hint.css');

/*--------------
■┓基本設定
┗┛
----------------------------------------------------------*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* 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: Arial, '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif !important;*/
	/*font-family: Arial, 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif !important;*/
	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%;
}
.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="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],/* inputで指定すると、radio、checkboxも変更されてしまうためtypeで指定 */
textarea,
select {
	-webkit-appearance: none;/* iPad用のデザイン初期化　selectの▼非表示 */
	-moz-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color : rgba(0,0,0,0);
	border: 1px solid #999;
	border-radius: 0;
	box-shadow: inset 1px 3px 9px -8px rgba(0,0,0,0.5);
	font-family: inherit;
	font-size: inherit;
	margin-top: .3em;
	margin-bottom: .3em;
	outline: none;
	padding: 4px 8px;
}
input[type="text"],
input[type="id"],
input[type="password"],
select {
	height: 40px;
	padding: 0 8px;
}

/* input */
input:-webkit-autofill { /* オートフィルでの背景色を上書き フォーカスが外れた時のため */
	-webkit-box-shadow: 0 0 0 1000px white inset;
}
/* input type="number" */
input[type="number"]::-webkit-inner-spin-button { /* スピンボタン非表示 */
	-webkit-appearance: none;
	margin: 0;
}
input[type="number"] { /* スピンボタン非表示 */
	-moz-appearance: textfield;
}
/* input type="radio" */
input[type="radio"] {
	display: none;
}
input[type="radio"]:checked + label::before,
label.radio_checked::before {
	opacity: 1;
}
input[type="radio"]:checked + label::after,
label.radio_checked::after {
	opacity: 1;
}

/* 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: 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;
}

/* select */
select::-ms-expand {
	display: none;
}
select {
	background-color: #fff;
	background-image: url(/vc/base/usr/docs/images/select_arrow.svg);
	background-position: right 5px top 50%;
	background-repeat: no-repeat;
	background-size: 10px 7px;
	cursor: pointer;
	max-width: 100%;
	padding-right: 24px;
}

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

ヘッダー
header

########################################################################################*/
#header {
	background: #fff;
	border-bottom: 2px solid #06c;
}
header {
	margin: 0 auto;
	width: 960px;
	padding: 0 20px;
}
.hd_top {
	display: flex;
		justify-content: space-between;
	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: #06c;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: normal;
	letter-spacing: 0;
	margin-top: 4px;
}
/*----------------------------
ヘッダー内右側
----------------------------------------------------------*/
#header .hd_r {
	display: flex;
		align-self: center;
	font-family: "Noto Sans Japanese";
	margin: -40px 16px 0 0;
}
/*----------------------------
お問い合わせボタン
----------------------------------------------------------*/
#header a.btn_contact_hd {
	display: inline-block;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1;
	margin-left: 8px;
	padding: 4px;
	white-space: nowrap;
}
#header a.btn_contact_hd::before {
	content: "\f0e0";
	font-family: "Font Awesome 5 Free";
	font-size: 14px;
	font-size: 1.4rem;
	margin-right: 2px;
}
#header a:hover.btn_contact_hd span {
	text-decoration: underline !important;
}
/*----------------------------
日英切替ボタン
----------------------------------------------------------*/
#header a.btn_lang_hd {
	border: 1px solid #06c;
	border-radius: 2px;
	display: inline-block;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1;
	margin-left: 8px;
	padding: 4px;
	text-align: center;
	transition: .3s;
	min-width: 90px;
}
#header a:hover.btn_lang_hd {
	background: #06c;
	color: #fff;
	text-decoration: none;
}


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

コンテンツ

########################################################################################*/
/*-----------------------------------------------------------------------------
■┓共通
┗┛
-----------------------------------------------------------------------------*/
main#main {
	margin: 0;
	padding: 0;
	width: 100%;
	z-index: 1;
}
.contents {
	width: 960px;
	margin: 0 auto;
	padding: 56px 20px 40px;
}
.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 {
	border: none !important;
	background-color: #fff;
}
/* arrow */
table.arrow {
	border: none;
	border-collapse: separate;
	border-spacing: 0 5px;
	width: 100%;
}
table.arrow th,
table.arrow td {
	border:0 ;
	padding: 16px;
	vertical-align: middle;
	text-align: left;
}
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: #12b398;
	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;
}
.alert_contents {
}

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

■┓お知らせ
┗┛
-----------------------------------------------------------------------------*/
.maintenance_box {
	background: #fff;
	margin: 40px auto;
	width: 700px;
}
.maintenance_box .ment_ttl {
	background: #fcc;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 12px 0;
	text-align: center;
}
.maintenance_box .content {
	padding: 24px;
	text-align: left;
}
.maintenance_box .content .date {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	color: #ff3434;
}

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

■┓ログインボックス
┗┛
-----------------------------------------------------------------------------*/
.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;
	line-height: 1;
	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: #06c;
	color: #fff;
	display: flex;
		align-items: center;
		justify-content: center;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.0;
	padding: 18px 12px;
	margin-bottom: 8px;
	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 {
	padding: 24px;
	border-bottom: 1px solid #ccc;
}
.system_requirements {
	padding: 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-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	text-indent: -.72em;
	margin: .5em 0;
	padding-left: calc(1em + 10px);
}
.title i {
	margin-right: 4px;
}
.register_btn a.btn_registration {
	display: flex;
		align-items: center;
		justify-content: center;
	background: #12b398;
	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 .show_pass {
	font-size: 14px;
	font-size: 1.4rem;
	user-select: none;
}
.login_form:has(+ .show_pass) {
	margin-bottom: 0;
}

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

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

/*----------------------------
ログインに戻る
----------------------------------------------------------*/
.page_transition {
	margin-top: 7rem;
	text-align: center;
}
.page_transition a {
	border: 1px solid #06c;
	color: #06c;
	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 {
	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: #06c;
	border-radius: 50%;
	content: '';
	display: block;
	left: 20px;
	margin-top: -5px;
	opacity: 0;
	position: absolute;
		top: 50%;
		width: 10px;
		height: 10px;
	transition: opacity 0.2s linear;
	-webkit-transition: opacity 0.2s linear;
}
.checkbox::before {
	border-right: 3px solid #53b300;
	border-bottom: 3px solid #53b300;
	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);
	-webkit-transform: rotate(45deg);
	-ms-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;
	padding: 8px 16px;
	margin: 10px;
	min-width: 200px;
	height: 40px;
}
input[type=submit], input[type=reset] {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	/* 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: #06c;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 30px 0;
}
#footer .footer_nav .knp_contact_wrap {
	color: #fff;
	display: flex;
		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: 12px;
}
.knp_contact_wrap > .left_container .knp_name {
	font-size: 20px;
	font-size: 2.0rem;
	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 {
	display: flex;
		flex-direction: column;
		align-items: flex-start;
	font-size: 22px;
	font-size: 2.2rem;
	font-weight: bold;
}
.contact_method .tel i {
	font-size: 16px;
	font-size: 1.6rem;
	vertical-align: top;
	margin-top: 9px;
}
.contact_method .tel .reception_time {
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: normal;
	margin: -8px 0 4px 16px;
}
.contact_method .fax {
	font-size: 22px;
	font-size: 2.2rem;
	font-weight: bold;
	margin: 0 0 0 1.5em;
}
.contact_method .fax i {
	font-size: 18px;
	font-size: 1.8rem;
	vertical-align: top;
	margin: 9px 8px 0 0;
}
.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: 12px;
	font-size: 1.2rem;
}

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

/*----------------------------
ページトップ
----------------------------------------------------------*/
.page_top {
	position: fixed;
		bottom: 16px;
		right: 16px;
	z-index: 10;
}
.page_top a {
	background: #fff url(../images/arrow_top.svg) no-repeat;
	background-position: 50% 20%;
	background-size: 15px 15px;
	border: 1px solid #06c;
	border-radius: 50%;
	color: #06c;
	display: inline-block;
	font-size: 8px; /* 固定 */
	font-size: 0.8rem; /* 固定 */
	letter-spacing: 0;
	line-height: 60px; /* 固定 */
	padding-top: 10px;
	position: relative;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	width: 60px;
	height: 60px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
}
.page_top a:hover {
	opacity: 0.6;
	text-decoration: none;
	-webkit-transform: scale( 1.1 );
	-moz-transform: scale( 1.1 );
}
