@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);



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


基本


------------------------------*/
* {
	box-sizing: border-box;
}
html {
  overflow: auto;
}
body {
  color: #54585e;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  overflow: hidden;
}
/*------------------------------


フォント


------------------------------*/
a,
button{
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/*------------------------------


共通


------------------------------*/
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
img {
  max-width: 100%;
}
.flex {
  display: -webkit-flex; display: flex;
}
/*------------------------------


バックグラウンド .bg-


------------------------------*/
.bg-orange {
  background: #eb5c01;
}
.bg-gray {
  background: #f4f4f4;
}
.bg-blue {
  background: #cfd2d7;
}
.bg-manshitsu {
  background: #41bdd9;
}
.bg-baibai {
  background: #ffefef;
}
.bg-renobee {
  background: #1E2E53;
}
.bg-workun {
    background: linear-gradient(180deg, #FFA02E 0%, #FF0000 120%);
}
.bg-black {
  background: #000000;
}
/*------------------------------


ボタン .btn-


------------------------------*/
.btn {
  color: #fff;
  font: 500 18px/1em 'noto sans japanese';
  padding: 15px;
  border: 1px solid #eb5c01;
  border-radius: 5px;
  background: #eb5c01;
  /* -webkit-box-shadow: 0px 5px 20px 0px rgba(0,0,0,.18), 0px 0px 2px 0px rgba(0,0,0,.18) inset;
  box-shadow: 0px 5px 20px 0px rgba(0,0,0,.18), 0px 0px 2px 0px rgba(0,0,0,.18) inset; */
}
.btn-border {
  border-color: #fff;
}
/* ネイビーボタン */
.btn-navy {
  background: #54585e;
  border-color: #54585e;
}
/*　フラッシュ */
.btn:hover {
	opacity: 1;
	-webkit-animation: flash 1s;
	animation: flash 1s;
}
@-webkit-keyframes flash {
	0% {opacity: .4;}
	100% {opacity: 1;}
}
@keyframes flash {
	0% {opacity: .4;}
	100% {opacity: 1;}
}
.btn-add,
.btn-delete,
.btn-edit {
  font-size: 13px;
  background: #54585e;
  border-color: #54585e;
  padding: 8px 15px 8px 40px;
  border-radius: 100px;
  display: inline-block;
  position: relative;
}
.btn-delete {
  background: #aaa;
  border-color: #aaa;
}
.btn-add:before,
.btn-delete:before,
.btn-edit:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/icon-add.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -webkit-calc((50% + 1px));
  top: calc((50% + 1px));
  left: 8px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.btn-delete:before {
  background: url(../img/icon-delete.png) no-repeat;
  background-size: contain;
}
.btn-edit:before {
  background: url(../img/icon-edit.png) no-repeat;
  background-size: contain;
}
.btn-sub {
  color: #54585e;
  font: 400 11px/1em 'noto sans japanese';
  border: 1px solid #54585e;
  padding: 3px 15px;
  border-radius: 100px;
  display: inline-block;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,.18), 0px 0px 2px 0px rgba(0,0,0,.18) inset;
  box-shadow: 0px 3px 5px 0px rgba(0,0,0,.18), 0px 0px 2px 0px rgba(0,0,0,.18) inset;
}
.btn-sub:hover {
  color: #fff;
  background: #54585e;
}
/*------------------------------


フォーム　インプット


------------------------------*/
input,textarea,select {
  color: #54585e;
  font: 400 14px/1em 'noto sans japanese';
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 10px;
  background: #f9f9f9;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,.18) inset;
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,.18) inset;
}
select {
  height: 36px;
}
textarea {
  resize: none;
  min-height: 100px;
}
input[type="search"] {
  background: #f7f7f7;
  border-radius: 5px;
  padding: 12px 12px 12px 40px;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,.18) inset;
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,.18) inset;
}
input[type="search"]::-webkit-input-placeholder {
    color: #ccc;
    font-weight: normal;
}
input[type="search"]::-ms-input-placeholder {
    color: #ccc;
    font-weight: normal;
}
input[type="search"]::-moz-placeholder {
    color: #ccc;
    font-weight: normal;
}
/* 基本フォーム .form-normal */
.form-normal h2 {
  font: 500 14px/1em 'noto sans japanese';
  margin: 0 0 10px;
}
.form-normal li + li {
  margin: 30px 0 0;
}
.form-normal input {
  max-width: 500px;
}
/* ▼▼▼　フォームのインプット幅等指定　▼▼▼ */
form li > div {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-align-items: center; align-items: center;
}
form li > div > span {
  font: 400 11px/1em 'noto sans japanese';
}
/* 日時 */
form .date select {
  max-width: 100px;
}
form .date span {
  margin: 0 16px 0 8px;
}
/* 電話番号 */
form .number input {
  max-width: 100px;
}
form .number span {
  margin: 0 10px;
}
/* 送信ボタン */
form .submit {
  padding: 10px 0 20px;
}
form .submit .btn {
  font-size: 14px;
  padding: 10px 15px;
  margin: 0 auto;
}
/* ▲▲▲　フォームのインプット幅等指定　▲▲▲ */
/* ログインページ インプット */
.page-login input {
  color: #54585e;
  font: 400 14px/1em 'noto sans japanese';
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 8px;
  padding: 15px;
  /* -webkit-box-shadow: 0px 8px 20px 0px rgba(0,0,0,.18);
  box-shadow: 0px 8px 20px 0px rgba(0,0,0,.18); */
}
/* 検索ボックス用divタグ */
.input-search {
  width: 100%;
  position: relative;
}
.input-search:before {
  content: "\f002";
  color: #d1d1d1;
  font: normal 18px/1em "fontawesome";
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* 記入済みフォーム */
.form-complete {
  font: 200 18px/1em 'noto sans japanese';
}
/* 備考部分のみ */
.form-complete-remarks {
  font: 200 15px/1.5em 'noto sans japanese';
}
/*------------------------- ▼▼▼　管理画面　▼▼▼ ------------------------- */
/*------------------------------


管理画面 .page-admin


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


ヘッダー


------------------------------*/
header {
  height: 60px;
  padding: 0 20px;
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: flex-end; justify-content: flex-end;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,.18);
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,.18);
  position: relative;
}
.header_logo {
    width: 196px;
    height: auto;
}
.header_other {
    width: calc(100% - 196px);
    width: -webkit-calc(100% - 196px);
    text-align: right;
}
header .btn {
  font-size: 14px;
  padding: 10px 15px;
  display: inline-block;
}
header .header_user {
    margin: 0 10px 0 0;
}
.header_user.btn:hover {
    opacity: 1;
    -webkit-animation: inherit;
    animation: inherit;
}
/*------------------------------

アサイド・メインラップ

------------------------------*/
.asidemain_wrap {
  min-height: -webkit-calc((100vh - 60px));
  min-height: calc((100vh - 60px));
  display: -webkit-flex; display: flex;
}
/*------------------------------


アサイド


------------------------------*/
aside {
  width: 240px;
  padding: 20px 0;
  -webkit-box-shadow: -2px 0px 4px 0px rgba(0,0,0,.1) inset;
  box-shadow: -2px 0px 4px 0px rgba(0,0,0,.1) inset;
}
aside > section {
  padding: 20px;
}
aside h1 {
  font: 500 13px/1em 'noto sans japanese';
}
aside ul {
  margin: 20px 0 0;
}
aside li a {
  color: #54585e;
  font: 500 14px/1em 'noto sans japanese';
  padding: 15px 15px;
  border-radius: 8px;
  background: #fff;
  display: block;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,.18);
  box-shadow: 0px 5px 5px 0px rgba(0,0,0,.18);
}
aside li a:before {
  content: "";
}
aside li + li {
  margin-top: 15px;
}
/* アサイドアイコン */
aside li a {
  position: relative;
  padding-left: 60px;
  min-height: 50px;
  border: 2px solid transparent;
}
aside li a:hover,
aside li.active a{
  border-color: #54585e;
}
aside li a:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
aside li.space a:before {
  background: url(../img/icon-space.png)no-repeat;
  background-size: contain;
}
aside li.user a:before {
  background: url(../img/icon-user.png)no-repeat;
  background-size: contain;
}
aside .aside_service li a:before {
  height: 30px;
  width: 160px;
}
aside li.kyouikun a:before {
  background: url(../img/icon-kyouikun.png)no-repeat;
  background-size: contain;
}
aside li.chintaicho a:before {
  background: url(../img/icon-chintaicho.png)no-repeat;
  background-size: contain;
}
/*------------------------------


メイン


------------------------------*/
main {
  width: -webkit-calc((100% - 240px));
  width: calc((100% - 240px));
  padding: 0 0 80px;
}
main > section {
  padding: 30px;
}
.main_section_title {
  position: relative;
  margin: 0 0 20px;
}
.main_section_title h1 {
  font: 500 17px/1em 'noto sans japanese';
}
.main_section_title .btn-sub {
  position: absolute;
  top: 0;
  right: 0;
}
/* メインタイトル */
.main_title {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: relative;
}
.main_title h1 {
  margin: 20px 0 10px;
  padding-left: 50px;
  font: 600 24px/1em 'noto sans japanese';
  position: relative;
}
.main_title h1:before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main_title h1.space:before {
  background: url(../img/icon-space.png)no-repeat;
  background-size: contain;
}
.main_title h1.user:before {
  background: url(../img/icon-user.png)no-repeat;
  background-size: contain;
}
.main_title h1.photo:before {
  background: url(../img/icon-photo.png)no-repeat;
  background-size: contain;
}
/* メインタイトル　アイキャッチ */
.main_title h1 span {
  width: 60px;
  height: 60px;
  display: block;
  border: 3px solid #Fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0,0,0,.3);
  box-shadow: 0px 3px 10px 0px rgba(0,0,0,.3);
}


/* メインタイトル上部　戻るボタン */
.main_title .btn-sub {
  margin: 0 0  20px;
}
/* メインタイトル下部　フォーム・ボタン */
.main_title_form {
  min-height: 33px;
  margin: 20px 0 0;
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-justify-content: space-between; justify-content: space-between;
  -webkit-align-items: center; align-items: center;
}
.main_title_form .input-search{
  max-width:  400px;
}
.main_title_form_btn a + a {
  margin-left: 10px;
}
/* メインタイトル下部　フォームの代わりにh1が入った場合 */
.main_title_form h1 {
  margin: 0;
}
/*------------------------------


契約情報　.main_info


------------------------------*/
.main_info_main {
  background: #fff;
  padding: 30px;
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,.18);
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,.18);
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-justify-content: space-between; justify-content: space-between;
}
.main_info_main > ul {
  width: -webkit-calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 2);
}
.main_info li + li {
  margin-top: 30px;
}
.main_info h2 {
  font: 500 14px/1em 'noto sans japanese';
  margin: 0 0 8px;
}
.main_info li p {
  font: 100 24px/1em 'noto sans japanese';
}
/* 契約情報-サービス */
.main_info .service li {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-align-items: center; align-items: center;
}
.main_info_img {
  width: 240px;
}
.main_info .service h2 {
  text-align: center;
  background: #f9f9f9;
  width: 100px;
  border: 2px solid #54585e;
  padding: 10px 15px;
  border-radius: 10px;
}
.main_info_main .btn {
  font-size: 15px;
  padding: 10px 15px;
}
.main_info.main_info_detail {
  /*  ユーザーページ調整  */
  padding-bottom: 0;
}
/*------------------------------


メインリスト　.page-login


------------------------------*/
.main_list ul {
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,.18);
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,.18);

}
.main_list li {
  font: 400 13px/1.3em 'noto sans japanese';
  padding: 12px;
  background: #fafafa;
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-justify-content: space-between; justify-content: space-between;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
}
.main_list li:nth-of-type(odd){
  background: #f4f6f9;
}
.main_list li:nth-of-type(n + 2){
  cursor: pointer;
  border: 1px solid transparent;
}
.main_list li:nth-of-type(n + 3){
  border-top: 1px solid #eee;
}
.main_list li:nth-of-type(n + 2):hover {
  background: #fff;
  -webkit-transform:scale(1.01);
  border-radius: 0;
  transform:scale(1.01);
  border-top: 1px solid #Fff;
  -webkit-box-shadow: 0px 1px 20px 0px rgba(0,0,0,.18);
  box-shadow: 0px 1px 20px 0px rgba(0,0,0,.18) ;
  z-index: 10;
}
.main_list li.title {
  font: 500 14px/1.3em 'noto sans japanese';
  background: #fff;
  border-radius: 10px 10px 0 0;
  padding: 10px 12px;
  border-bottom: 2px solid #54585e;
  -webkit-align-items: center; align-items: center;
}
.main_list li div:first-of-type {
  padding-left: 20px;
}
.main_list li div:last-of-type {
  padding-right: 20px;
}
.main_list li:last-of-type {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.main_list li div {
  width: -webkit-calc((100% - 300px) / 5);
  width: calc((100% - 300px) / 5);
}
.main_list li div a{
    color: #54585e;
    position: relative;
}
.main_list li div a:hover:before,
.main_list li div a.order-asc:before,
.main_list li div a.order-desc:hover:before{
    content: "";
    display: block;
    position: absolute;
    right: -20px;
    top: 8px;
    width: 0px;
    height: 0px;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-top: 5px solid;
}
.main_list li div a.order-desc:before,
.main_list li div a.order-asc:hover:before{
    content: "";
    display: block;
    position: absolute;
    right: -20px;
    top: -2px;
    width: 0px;
    height: 0px;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 5px solid;
    border-top: 5px solid transparent;
}
.main_list li div.date {
  width: 100px;
}
.main_list li div.service {
  text-align: center;
  width: 50px;
}
/* メインリスト - リンク */
.main_list li > a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/*------------------------------


メインフォーム　.main_form (プロフィール部分、)


------------------------------*/
.main_form ul {
  background: #fff;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,.18);
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,.18);
}
/*-------------------- ▼▼▼　ログイン・パスワード発行　▼▼▼ -------------------- */
/*------------------------------


ログインページ　.page-login


------------------------------*/
.page-login {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  padding: 40px 0;
}
.form-login {
  max-width: calc(100% - 60px);
  width: 400px;
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-flex-direction: column; flex-direction: column;
 }
.form-login img {
  /* width: 160px; */
  width: 100%;
  display: block;
  margin: 0 auto 50px;
}
.form-login .login-service-logo {
  display: contents;
}
.form-login .login-service-logo img {
  width: 100%;
}
.form-login .input + .input {
  margin-top: 20px;
}
.form-login button {
  margin: 40px 0;
}
.anchor-text {
  font: 400 12px/1.4em 'noto sans japanese';
  text-align: center;
  display: inline-block;
  margin: 0 auto;
  padding-bottom: 10px;
  color: white;
}
/* 売買の窓口 */
.bg-baibai .anchor-text {
  color: #000;
}

/* エラーメッセージ */
.main_error{
    padding: 0;
    background: #54585e;
}
.main_error .message{
    padding: 10px 30px;
    color: #fff;
    font-size: 14px !important;
    margin-bottom: 0 !important;
}
.message.success, .message.error {
  color: #fff;
  font: 300 12px/1.5em 'noto sans japanese';
  margin: 0 0 20px;
}
.bg-baibai .message.error,.page-login--kyoikun .message.error { /* 売買の窓口 */
  color: #ff5656;
}
.bg-renobee .message.error {
    /* RETURN PICKS（旧；リノベー）*/
    color: #ff5656;
}
.message.error a {
  position: relative;
}
.message.error a:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: -3px;
  left: 0;
}
.message.error a:hover {
	opacity: 1;
	-webkit-animation: flash 1s;
	animation: flash 1s;
}
.error-message {
    padding-top: 10px;
    color: #eb5c01;
}
.login-service-logo{
    background-size: cover;
    position: relative;
    z-index: 0;
    margin-bottom: 30px;
    text-align: center;
/*     overflow: hidden; */
}
.login-service-logo img{
    /* margin-bottom: 0; */
    padding: 10px;
    width: 230px;
}
/* RETURN PICKS（旧；リノベー）*/
.bg-renobee .login-service-logo img {
  width: 50%;
  margin-bottom: 0;
}
.bg-renobee .renobee_catchcopy {
  font: 400 12px 'noto sans japanese', sans-serif;
  color: #fff;
  margin-bottom: 20px;
}
/*------------------------------


パスワード再発行ページ


------------------------------*/
.forgot-copy {
  color: #eb5c01;
  text-align: center;
  font: 600 14px/1.5em 'noto sans japanese';
  margin: -10px 0 40px;
}
.page-forgot .anchor-text {
  color: #eb5c01;
}
/* エラーメッセージ色変更 */
.page-forgot .message {
  color: #eb5c01 !important;
}
/*------------------------------


ページネション


------------------------------*/
.paginator{
    padding: 30px;
}
.pagination{
    width: 100%;
    border-radius: 10px;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,.18);
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,.18);
}
.pagination{
    font: 400 13px/1.3em 'noto sans japanese';
    background: #fff;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.pagination li{
    padding: 12px 24px;
    cursor: pointer;
    justify-content: space-between;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    position: relative;
}
.pagination li:hover{
    background-color: #fff;
    -webkit-transform: scale(1.01);
    border-radius: 0;
    transform: scale(1.01);
    -webkit-box-shadow: 0px 1px 20px 0px rgba(0,0,0,.18);
    box-shadow: 0px 1px 20px 0px rgba(0,0,0,.18);
    z-index: 10;
}
.pagination li.active{
    background-color: #fafafa;
    font-weight: 600;
}
.pagination li a{
    color: #54585e;
}
.page-login-organization{
    color: #eb5c01;
    padding: 15px;
    margin-bottom: 40px;
    border: 2px solid #fff;
    border-radius: 5px;
    background: #fff;
    /* -webkit-box-shadow: 0px 8px 20px 0px rgba(0,0,0,.18);
    box-shadow: 0px 8px 20px 0px rgba(0,0,0,.18); */
}
.page-login-organization h1{
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
}
.page-login-organization a{
    color: #eb5c01;
    padding: 10px 0px;
    font-size: 14px;
    word-break: break-all;
}
.page-login-organization a:hover{
    text-decoration: underline;
}

/* 満室の窓口 */
.bg-manshitsu .page-login-organization,
.bg-manshitsu .page-login-organization a {
  color: #379CB3;
}
.bg-manshitsu .btn {
  color: #222;
  background: #ffe101;
  border-color: #ffe101;
}
.bg-manshitsu .btn:hover {
  border-color: #fff;
}

/* 売買の窓口 */
.bg-baibai .page-login-organization,
.bg-baibai .page-login-organization a {
  color: #000;
}
.bg-baibai .btn {
  color: #fff;
  background: #ff5656;
  border-color: #ff5656;
}
.bg-baibai .btn:hover {
  border-color: #fff;
}
/* RETURN PICKS（旧；リノベー）*/
.bg-renobee .page-login-organization,
.bg-renobee .page-login-organization a {
  color: #000;
}
.bg-renobee .btn {
  color: #fff;
  background: rgba(255,255,255,0.05);
  border-color: #fff;
}
.bg-renobee .btn:hover {
  color: #000;
  background: #fff;
}

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

404

------------------------------*/
.area404 {
  padding: 80px 0;
  text-align: center;
}
.area404 h1{
  color: #eb5c01;
  padding: 0 0 10px;
  margin: 0;
  font: 700 100px/1em 'noto sans japanese';
}
.area404 h2 {
  color: #eb5c01;
  margin: 0 0 40px;
  padding: 0;
  font: 700 22px/1em 'noto sans japanese';
}
.area404 p {
  color: #eb5c01;
  padding: 0;
  margin: 0;
  font: 400 14px/1.4em 'noto sans japanese';
}
.area404 p.area404_strong {
  font-weight: 600;
  font-size: 18px;
}
.area404 p + p {
  margin-top: 10px;
}
.area404 a {
  color: #fff;
  font: 600 14px/1em 'noto sans japanese';
  padding: .8em 3em;
  background: #eb5c01;
  display: inline-block;
  margin: 40px 0 0;
  border: 2px solid transparent;
}
.area404 a:hover {
  color: #eb5c01;
  border-color: #eb5c01;
  background: #fff;
}
/* 404_end */

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


きょういくん ログインページ　.page-login


------------------------------*/
.page-login--kyoikun {
  background: #EFEFEF;
}
.page-login--kyoikun .form-login img{
  width: 400px;
  margin: 0 auto 48px;
}
.page-login--kyoikun input{
  box-shadow: none;
  border-radius: 3px;
}
.page-login--kyoikun input::placeholder{
  color: #999;
}
.page-login--kyoikun .form-login .input + .input{
  margin-top: 10px;
}
.page-login--kyoikun .form-login button{
  margin: 48px auto 20px;
  width: 200px;
  height: 48px;
  font-size: 16px;
  color: #999;
  background: #fff;
  border: none;
  border-radius: 48px;
  box-shadow: none;
  font-weight: 500;
  pointer-events: none;
}
.page-login--kyoikun .form-login button.active{
  background: #333;
  color: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,.2);
  pointer-events: all;
}
.page-login--kyoikun .form-login button.active:hover{
  opacity: .7;
}
.page-login--kyoikun .hvr-underline-from-left{
  color: #333;
}
@media screen and (max-width:768px) {
  .page-login--kyoikun .form-login button{
    margin: 32px auto 20px;
  }
}

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


KATSUYAKU ログインページ　.page-login


------------------------------*/
.page-login.bg-workun{
  /* ロゴ */
  .ogin-service-logo{
    img{
      width: 100%;
      max-width: 400px;
    }
  }
  .form{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    /* 組織別ログイン */
    .page-login-organization{
      margin-bottom: 28px;
    }
    .input + .input{
      margin-top: 12px;
    }
    .btn{
      background: #FF8E09;
      margin: 32px 0 40px;
      font-size: 16px;
    }
  }
}
