@charset "utf-8";

/*===============================================================================
  全体的な定義
===============================================================================*/
/* フォント指定 */
@font-face {
    font-family: "NotoSans";
    /* src: url("../webfonts/NotoSansJP-Regular.ttf") format("truetype"); */
    src: url("../webfonts/NotoSansJP-Light.ttf") format("truetype");
}

@font-face {
    font-family: "YuGoth";
    /* src: url("../webfonts/YuGothM.ttc"); */
    src: url("../webfonts/YuGothR.ttc");
}

* {
    font-size: 17px;
    /* font-family: "NotoSans", "YuGoth", sans-serif; */
}

body {
    background-color: #efefef;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

a {
    text-decoration: underline;
    color: #3498db;
    font-size: 1em;
}

#header {
    padding: 3px 10px;
    /* height: 70px; */
    background: #008cd6;
    color: #ffffff;
    display: flex;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 0 5px #777777;
}

#footer {
    text-align: center;
    padding: 7px;
    margin-top: 150px;
}

#content {
    margin-top: 80px;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.3rem;
}

.summary {
    margin: 10px 0 40px;
    border: double 5px #4ec4d3;
    padding: 10px;
    font-size: 15px;
}

/*===============================================================================
  デフォルト
===============================================================================*/
/* ボタン ---------- */
.btn-def {
    padding: 8px 25px;
    background-color: #eee;
    border-radius: 7px;
    border: solid 1px #7583d9;
    white-space: nowrap;
    background: linear-gradient(to top, rgb(5, 130, 174), #27acd9);
    color: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, .2);
}

/* ボタン ---------- */

/* テキストボックス ---------- */
.input {
    margin: 5px 0;
}

.input input[type="text"],
.input input[type="email"],
.input input[type="password"] {
    width: 100%;
    border: 2px solid #aaaaaa;
    border-radius: 4px;
    outline: none;
    padding: 8px;
    box-sizing: border-box;
    transition: 0.3s;
    line-height: 1rem;
}

.input input:focus {
    border-color: orange;
}

/* テキストボックス ---------- */

/* セレクトボックス ---------- */
.selectbox {
    display: inline-flex;
    align-items: center;
    /* position: relative; */
}

select {
    appearance: none;
    /* min-width: 230px; */
    /* height: 2.8em; */
    padding: .4em calc(.8em + 10px) .4em .8em;
    border: 1px solid #000000;
    border-radius: 3px;
    background-color: #fff;
    color: #000000;
    font-size: 1em;
    cursor: pointer;
    padding: 4px 13px 4px 8px;
}

/* セレクトボックス ---------- */

/* テーブル ---------- */
table.tbl-def {
    border-collapse: collapse;
    border-spacing: 0;
    text-align: left;
}

table.tbl-def th,
table.tbl-def td {
    padding: 5px;
    vertical-align: middle;
}

/* テーブル ---------- */

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
    display: flex;
    /* height: 100%;
    width: 100%; */
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    /* 重なり順を一番上にする */
    cursor: pointer;
    margin: 0 auto;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #FFF;
    transition: 0.5s;
    position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
    bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
    top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked~.drawer_open span {
    background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になるように上下の線を回転 */
#drawer_input:checked~.drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#drawer_input:checked~.drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
}

/* メニューのデザイン*/
.nav_content {
    width: 70%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /* メニューを画面の外に飛ばす */
    z-index: 99;
    /* background: rgba(38, 38, 38, 0.8); */
    background: #000;
    transition: .5s;
}

/* メニュー黒ポチを消す */
.nav_list {
    list-style: none;
    padding-inline-start: 0px;
}

/* チェックボックスを非表示にする */
.drawer_hidden {
    display: none;
}

.nav_item {
    height: 80px;
    padding: 2em 1em 1em 1em;
    /*余白*/
    border-bottom: solid 1px #939393;
    /*枠線*/
}

.nav_url {
    font-weight: bold;
    font-size: 16px;
    color: #FFF;
    padding: 15px 15% 15px 10px;
    text-decoration: none;
}

/* ローディング ---------- */
.loader {
    font-size: 10px;
    margin: 50px auto;
    text-indent: -9999em;
    width: 11em;
    height: 11em;
    border-radius: 50%;
    background: #008cd6;
    background: -moz-linear-gradient(left, #008cd6 10%, rgba(0, 140, 214, 0) 42%);
    background: -webkit-linear-gradient(left, #008cd6 10%, rgba(0, 140, 214, 0) 42%);
    background: -o-linear-gradient(left, #008cd6 10%, rgba(0, 140, 214, 0) 42%);
    background: -ms-linear-gradient(left, #008cd6 10%, rgba(0, 140, 214, 0) 42%);
    background: linear-gradient(to right, #008cd6 10%, rgba(0, 140, 214, 0) 42%);
    position: relative;
    -webkit-animation: load3 1.4s infinite linear;
    animation: load3 1.4s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.loader:before {
    width: 50%;
    height: 50%;
    background: #008cd6;
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}

.loader:after {
    background: #ffffff;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@-webkit-keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* ローディング ---------- */

/*===============================================================================
  ログイン
===============================================================================*/
.login {
    background: #fff;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 1px 5px #afafaf;
}

.form-item {
    margin-bottom: 0.75em;
    width: 100%;
}

.form-item input {
    background: #fff;
    border: none;
    border-bottom: 2px solid #e9e9e9;
    color: #666;
    /* font-family: 'Open Sans', sans-serif; */
    font-size: 1em;
    height: 30px;
    transition: border-color 0.3s;
    width: 100%;
}

.form-item input:focus {
    border-bottom: 2px solid #c0c0c0;
    outline: none;
}

.button-panel {
    margin: 2em 0 0;
    width: 100%;
}

.button-panel .button {
    background: #008cd6;
    border: none;
    color: #fff;
    cursor: pointer;
    height: 50px;
    /* font-family: 'Open Sans', sans-serif; */
    font-size: 1.2em;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
    transition: background 0.3s ease-in-out;
    width: 100%;
}

.button:hover {
    background: #0074b1;
}

/* 企業コードのプルダウン */
.ui-widget-content {
    max-height: 27%;
    max-width: 240px;
    overflow-y: scroll;
}

/*===============================================================================
  振替明細
===============================================================================*/
.con-wrap {
    background-color: #ffffff;
    /* width: 90%; */
    border-radius: 10px;
    margin: 0 auto 50px;
    box-shadow: 0 0 2px #ccc;
    /* padding: 15px; */
}

/* 画面タイトル */
.tag-name {
    /* position: relative; */
    padding: 0.7em 1.2em 0.5em;
    color: #077ec3;
    font-size: 24px;
    border-bottom: solid 1px;
    /* margin-bottom: 25px; */
    font-weight: bold;
}

.con-main {
    padding: 1rem 1.2rem;
}

.tbl-serch {
    margin-bottom: 20px;
}

table.con-tbl-total th {
    background-color: #fff8e8;
    text-align: center;
    padding: 0.5rem .5rem;
}

table.con-tbl-total td {
    text-align: center;
    padding: 0.5rem .5rem;
}

/* 明細部開始 */
.himoku-meisai {
    width: 100%;
}

.himoku-meisai th,
.himoku-meisai td {
    text-align: center;
    border: solid 1px #acacac;
}

.himoku-meisai th {
    background-color: #f0f8ff;
    color: #5d627b;
}

/* 明細部終了 */

.user-info {
    padding-right: 15px;
}

.himoku {
    font-weight: 400;
    font-size: 20px;
    color: inherit;
}

/* 矢印 */
.arrow {
    width: 10px;
    height: 10px;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    display: inline-block;
    transform: rotate(45deg);
}

/*===============================================================================
  個人設定
===============================================================================*/
.lab-per {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.per-wrap {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

/*===============================================================================
  メールアドレス変更
===============================================================================*/
.con-mail-wrap {
    margin-bottom: 20px;
}

#mailNow {
    border: none;
    background-color: #f2f7ff;
    padding: 2px;
}

/*===========================================================
メッセージ画面
===========================================================*/
.msg-wrap {
    text-align: center;
    margin: 0 auto;
}

.msg-main {
    background-color: #fdf8e3;
    color: #948363;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0px 1px 2px #ccc;
}

.msg-title {
    font-weight: 400;
    font-size: 1.7em;
    border-bottom: solid;
    display: inline-block;
    padding: 15px 5% 20px;
}