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

基本設定

■ベースカラー：#212179 , #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://cdn.jsdelivr.net/npm/yakuhanjp@3.0.0/dist/css/yakuhanjp.min.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: YakuHanJP, Arial, 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif !important;
	font-size: 14px;
	font-size: 1.4rem;
	letter-spacing: 0.03em;
	line-height: 1.8;
	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,
.login_wrap a:hover {
	text-decoration: none;
}
#main a:hover,
.login_wrap 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 #212179;
}
header {
	margin: 0 auto;
	max-width: 960px;
	padding: 0 20px;
	width: 100%;
}
.hd_top {
	display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	padding: 28px 0 24px;
}
.hd_top a.hd_l:hover {
	text-decoration: none;
}
/*----------------------------
上部左ロゴ
----------------------------------------------------------*/
.hd_top h1 {
	background-size: 25px 25px;
	display: flex;
		align-items: center;
		justify-content: center;
	font-size: 2.4rem;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.2;
}
.hd_top h1 .site_logo {
	padding-right: 8px;
}
h1 .kenpo_tit {
	color: #212179;
	font-family: "Noto Sans Japanese";
	padding-bottom: 8px;
}
.hd_top h1 .kenpo_en {
	color: #212179;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: normal;
	letter-spacing: 0;
	margin-top: 8px;
}

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

コンテンツ

########################################################################################*/
/*-----------------------------------------------------------------------------
■┓共通
┗┛
-----------------------------------------------------------------------------*/
main#main {
	margin: 0;
	padding: 0;
	width: 100%;
	z-index: 1;
}
.contents {
	display: flex;
		flex-direction: column;
	margin: 0 auto;
	max-width: 960px;
	padding: 40px 20px;
	width: 100%;
}
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: #212179;
	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_wrap {
	margin: 0 auto 24px;
}
.login_box {
	background: #fff;
	border: 1px solid #ccc;
	display: flex;
		flex-wrap: wrap;
}
.login_box > .left_container {
	border-right: 1px solid #ccc;
	width: 40%;
}
.login_box > .left_container > div,
.login_box > .right_container > div {
	padding: 40px 32px;
}
#main .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: 0 auto 3px;
	text-align: center;
}
.login_form input {
	font-family: FontAwesome;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1;
	padding: 8px;
	width: 280px;
	max-width: 100%;
}
.login_btn {
	margin: 16px auto 8px;
	width: 280px;
	max-width: 100%;
}
.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;
}
.login_btn a:hover.btn_login {
	opacity: .6;
}
.login_box > .right_container {
	display: flex;
		flex-direction: column;
	width: 60%;
}
.howto {
	border-bottom: 1px solid #ccc;
}
.titbig {
	border-bottom: 1px solid #ccc;
	color: #212179;
	font-family: "Noto Sans Japanese";
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 20px;
	padding: 0 .5em .5em;
	text-align: center;
}
.tit {
	font-family: YakuHanJP,"Noto Sans Japanese";
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
}
.tit i {
	margin-right: 4px;
}
.bd_btm {
	border-bottom: solid 1px #ccc;
}
#main h2.info_ttl {
	background: #db9b40;
	color: #fff;
	display: flex;
		align-items: center;
		justify-content: center;
	font-family: YakuHanJP,"Noto Sans Japanese";
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
	margin-bottom: 0;
	height: 56px;
}
.info_box {
	padding: 24px 32px;
}
.info_box h3 {
	font-family: YakuHanJP,"Noto Sans Japanese";
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
}
.info_box .info_box_txt {
	border: 4px solid #f6f6f6;
	border-radius: 8px;
	font-size: 16px;
	font-size: 1.6rem;
	margin: 8px 0 24px;
	padding: 12px 16px;
}
.attention_box .attention_ttl {
	color: red;
	font-family: YakuHanJP,"Noto Sans Japanese";
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 4px;
	text-align: center;
}
.attention_box .attention_ttl::before {
	content: "\f06a";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
.membership {
	margin: 24px 0 16px;
	text-align: center;
}
#main .membership h2 {
	background-image: url(../images/point.png);
	background-position: bottom 4px left;
	background-repeat: no-repeat;
	display: inline-block;
	font-family: YakuHanJP,"Noto Sans Japanese";
	font-size: 22px;
	font-size: 2.2rem;
	line-height: 1.2;
	padding: 40px 0 0 136px;
}
#main .membership h2 span {
	color: #0b8bb3;
	font-size: 26px;
	font-size: 2.6rem;
}
#main .membership h2 + p {
	font-size: 16px;
	font-size: 1.6rem;
}
.members_merit {
	display: flex;
		align-items: center;
		justify-content: center;
	margin: 32px 0 16px;
}
.members_merit >div {
	background-color: #fff;
	background-image: url(../images/ribbon.png), url(../images/kirakira.png);
	background-position: top left, bottom 72px right 24px;
	background-repeat: no-repeat, no-repeat;
	box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, .1);
	font-family: YakuHanJP,"Noto Sans Japanese";
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.3;
	padding: 32px 8px;
	width: 290px;
	max-width: 100%;
}
.members_merit >div span {
	color: #0b8bb3;
	font-size: 40px;
	font-size: 4.0rem;
}
.members_merit >div span.point {
	font-size: 20px;
	font-size: 2.0rem;
}
.members_merit img {
	margin: 0 32px;
}
.members_merit + p.kome {
	font-size: 14px;
	font-size: 1.4rem;
}
.join_btn_box {
	display: flex;
	margin-top: 40px;
}
.join_btn_box a.btn_submit {
	display: flex;
		align-items: center;
		justify-content: center;
	background: #212179;
	color: #fff;
	font-weight: bold;
	margin: 0 2em;
	padding: 12px 8px;
	width: 240px;
	max-width: 100%;
}
.register_btn a:hover.btn_registration {
	opacity: .6;
}
.document_request {
	background: #fff;
	display: flex;
		align-items: center;
		justify-content: center;
	padding: 24px;
	text-align: center;
}
.document_request p {
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 0;
	padding-right: 24px;
	position: relative;
}
.document_request p::after {
	content: "\f061";
	color: #212179;
	display: inline-block;
	font-family: FontAwesome;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 500;
	margin-left: 8px;
	vertical-align: 2px;
}
.document_request a.btn_submit {
	background: #212179;
	color: #fff;
	display: block;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.4;
	margin-left: 16px;
	padding: 12px 16px;
	transition: all .2s;
	width: 400px;
	max-width: 100%;
	min-height: 64px;
}
.document_request a:hover {
	opacity: .6;
}
.document_request a.btn_submit span {
	font-size: 14px;
	font-size: 1.4rem;
}
.document_request a.btn_submit.btn_bd {
	background: #f3f3ff;
	border: 2px solid #212179;
	box-shadow: 5px 5px 0 #f3f3ff;
	color: #212179;
}
.document_request a.btn_submit.btn_bd:hover {
	background: #212179;
	box-shadow: none;
	color: #fff;
	opacity: 1;
	transform: translate(3px, 3px);
}
/* パスワード変更の時のログイン */
.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;
}
/* エラーメッセージ */
ol.circle_err {
	counter-reset: my-counter;
	list-style: none;
	padding: 0;
}
ol.circle_err li {
	margin-bottom: 8px;
	padding-left: 20px;
	position: relative;
}
ol.circle_err li::before {
	content: counter(my-counter);
	counter-increment: my-counter;
	background-color: red;
	color: #fff;
	display: block;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 16px;
	margin-left: -20px;
	text-align: center;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	position: absolute;
		top: 4px;
}
.solution {
	background: #fff4f4;
	color: red;
	margin: 16px 0 32px;
	padding: 8px 16px;
}
.solution > div {
	font-weight: bold;
}
.solution > div::before {
	content: "\f05a";
	font-family: "Font Awesome 5 Free";
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 900;
	margin-right: 5px;
}
.solution > p {
	margin-bottom: 0;
}

/* 準備中 */
.login_box_pre {
	font-size: 16px;
	font-size: 1.6rem;
	padding-top: 56px;
	text-align: center;
}
.login_box_pre > div.pre_ttl {
	color: #212179;
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
	padding-bottom: 8px;
}
.login_box_pre > div.pre_ttl::before {
	color: #212179;
	content: "\f071";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 5px;
}
/* パスワード表示切替 */
.login_box .show_pass {
	margin: 0 auto;
	user-select: none;
	max-width: 280px;
}
.login_form:has(+ .show_pass) {
	margin-bottom: 0;
}

/*----------------------------
カフェ活
----------------------------------------------------------*/
.mindsports_box {
	display: flex;
		flex-direction: column;
}
.ms_copy {
	border: 1px solid #212179;
	color: #212179;
	font-family: "Noto Sans Japanese";
	margin: 0 auto 8px;
	padding: 4px;
	text-align: center;
	width: 224px;
	max-width: 100%;
}
.ms_ttl {
	margin-bottom: 12px;
	text-align: center;
}
main#main .ms_contents {
	display: flex;
	margin-bottom: 4px;
}
@media screen and (max-width:900px) {
	main#main .ms_contents {
		margin-bottom: 16px;
	}
}
@media screen and (max-width:800px) {
	main#main .ms_contents {
		margin-bottom: 40px;
	}
}
main#main .ms_contents p {
	margin: 8px 16px 4px 0;
}
main#main .update {
	font-weight: bold;
	margin-bottom: 8px;
}
main#main .update::before {
	background-image: url(https://www.apap.jp/vcc/images/update.svg);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	padding-right: 24px;
}
main#main .ms_contents img {
	max-width: 224px;
}
.mindsports_box .register_btn {
	margin: 0 auto;
	position: relative;
	width: 320px;
	max-width: 100%;
}
.mindsports_box .register_btn .fukidashi {
	background: linear-gradient(45deg, #b67b03 0%, #daaf08 45%, #fee9a0 70%, #daaf08 85%, #b67b03 100%);
	border-radius: 24px;
	color: #fff;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: bold;
	display: inline-block;
	margin: 0 auto;
	padding: 2px 16px;
	position: absolute;
		left: -32px;
		top: -30px;
	text-align: center;
	transform: rotateZ(-6deg);
	min-width: 120px;
}
.mindsports_box .register_btn .fukidashi::before {
	border: 6px solid transparent;
	border-top: 10px solid #daaf08;
	content: "";
	position: absolute;
		top: 98%;
		left: calc(50% - 6px);
}
.mindsports_box .register_btn .btn_submit {
	background-color: #212179;
	color: #fff;
	display: flex;
		align-items: center;
		justify-content: center;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	margin: 12px auto 8px;
	padding: 0;
	transition: all .2s;
	width: 100%;
}
.mindsports_box .register_btn .btn_submit:hover {
	opacity: .6;
}
.mindsports_box .register_btn .btn_submit span {
	background-image: url(https://secure.apap.jp/vc/mindsports/images/icn_mindsports.svg);
	background-position: 8px center;
	background-repeat: no-repeat;
	background-size: 28px 32px;
	display: block;
	line-height: 1.0;
	padding: 24px 8px 24px 40px;
	position: relative;
	text-align: left;
}

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

■┓サイトご利用環境について
┗┛
-----------------------------------------------------------------------------*/
.system_requirements {
	background: #ddd;
	padding: 32px 16px;
}
.system_requirements > div {
	display: flex;
		align-items: center;
		flex-wrap: wrap;
		justify-content: center; 
}
.system_requirements .system_ttl {
	display: flex;
	font-family: YakuHanJP,"Noto Sans Japanese";
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.4;
	margin-right: 24px;
}
.system_requirements .system_ttl::before {
	content: "\f108";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	padding-right: 4px;
}
.requirements_txt a {
	border-bottom: 1px solid #333;
	font-size: 14px;
	font-size: 1.4rem;
}
.requirements_txt a:hover {
	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;
	width: 700px;
}
#main .btn_knp_top {
	border: 1px solid #212179;
	display: inline-block;
	padding: 10px;
	text-align: center;
	margin: 54px auto 0;
	text-decoration: none;
}
#main .btn_knp_top:hover {
	background: #212179;
	color: #fff;
}
#main .btn_knp_top:hover::before {
	color: #fff;
}
#main .btn_knp_top::before {
	color: #212179;
	content: "\f0a9";
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 5px;
}

/*-----------------------------------------------------------------------------
■┓パスワード変更ページ
┗┛
-----------------------------------------------------------------------------*/
#main .tbl_input_pw {
	width: 100%;
	font-size: 16px;
	font-size: 1.6rem;
}
#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(/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;
}
*/
#main input:hover.btn_submit {
	opacity: .6;
}
form.password_change table td .it_middle {
	width: 100%;
}
input.btn_submit,
input.btn_back {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: inherit;
	font-size: inherit;
	cursor: pointer;
	line-height: 1;
	transition: all .2s;
	border: none;
	border-radius: 0 !important;
	color: #fff;
}
.button input.btn_back {
	background-color: #999;
	background-image: url(/vc/base/usr/docs/images/ic_arrow_opp@2x.png);
	background-repeat: no-repeat;
	background-position: 64px calc(50% + 1px);
	background-size: 16px 13px;
	border-radius: 4px !important;
	color: #fff;
	font-size: 18px;
	font-size: 1.8rem;
	height: 60px;
	min-width: 200px;
	padding: 8px 16px 8px 32px;
}
.button input.btn_back:hover {
	opacity: 0.6;
}
/*----------------------------
ログインに戻る
----------------------------------------------------------*/
.page_transition {
	margin-top: 7rem;
	text-align: center;
}
.page_transition a {
	border: 1px solid #212179;
	color: #212179;
	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: #212179;
	color: #fff;
}
#main .btn_knp_top::before {
	color: #212179;
	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%;
}
/*-----------------------------------------------------------------------------
■┓お問い合わせフォーム
┗┛
-----------------------------------------------------------------------------*/
#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: #212179;
	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: #212179;
	margin: 0;
	padding: 30px 0;
}
#footer .footer_nav ul {
	display: flex;
		justify-content: space-around;
	margin: 0 auto;
	max-width: 800px;
	width: 100%;
}
#footer .footer_nav ul li a {
	color: #fff;
	font-family: "Noto Sans Japanese";
	font-size: 14px;
	font-size: 1.4rem;
	padding: 0 8px;
}

/*----------------------------
コピーライト
----------------------------------------------------------*/
#footer p {
	font-size: 10px;
	font-size: 1.0rem;
	margin-bottom: 0;
	padding: 16px 8px;
	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 #212179;
	border-radius: 50%;
	color: #212179;
	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 );
}
