@charset "UTF-8";
* {
    font-size: 16px;
    line-height: 1.4em;
    font-family: 'Lato', 'Rounded Mplus 1c', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', 'YuGothic', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

/* -------全体設定------- */

html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    color: #444;
}

html::-webkit-scrollbar {
    display: none;
}

a, a:visited {
    text-decoration: underline;
    color: #44F;
}

article {
    padding: 20px 10px 10px;
}

@media print {
    .no_print {
        display: none;
    }
}

/* 汎用 */
.fz-09 {
    font-size: 0.9rem;
}

.indent {
    padding-left: 1rem;
    text-indent: -1rem;
}

.fz-09.indent {
    padding-left: .9rem;
    text-indent: -.9rem;
}

/*article:after {擬似要素をつくる*/
#at-bk:after { /*擬似要素をつくる*/
    position: fixed; /*固定配置*/
    top: 0;
    left: 0; /*左上に固定*/
    width: 100%;
    height: 100%; /*画面全体を覆う*/
    content: "";
    z-index: -1; /*背景にするため*/
    background: #82ffee; /* Old browsers */
    background: -moz-linear-gradient(top, #82ffee 0%, #fdffbf 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #82ffee 0%, #fdffbf 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #82ffee 0%, #fdffbf 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#82ffee', endColorstr='#fdffbf', GradientType=0); /* IE6-9 */
}

.wd-wrap {
    /*word-break: break-all;*/
    word-wrap: break-word;
}

.cen {
    text-align: center;
    margin: 0 auto;
}

.le {
    text-align: left;
}

.spb-20 {
    margin-bottom: 20px;
}

.post-no {
    width: 80px;
}


/* -------メニュー構造------- */

/* ボディの定義 */
div#body-bk {
    padding: 50px 0 50px 0; /* 上下に160pxを余白を取る */
    max-width: 1000px;
    margin: 0 auto;
}

div#body {
    width: 100%;
    margin: auto;
}


/* ヘッダーの固定 */
div#header-fixed {
    position: absolute; /* ヘッダーの固定 */
    top: 0px; /* 位置(上0px) */
    left: 0px; /* 位置(右0px) */
    width: 100%; /* 横幅100%　*/
    height: 50px; /* 縦幅140px */
    z-index: 10000;
}

.header-bk {
    background-color: #fff; /* 背景色(黒) */
    padding: 0px; /* 上10px、下20pxをあける */
    height: 50px; /* 縦の高さ110px */
    width: auto; /* 横の幅を100% */
    border-bottom: 1px solid #ddd;
    z-index: 100; /*背景にするため*/
}

.header {
    height: 100%; /* 縦の表示領域はheader-bkと同じ */
    width: 100%; /* 横の幅970px */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ヘッダーボタン */
.header-logo {
    text-align: left;
    padding: 0 7px;
}

.header-logo img {
    width: 45px;
    vertical-align: middle;
}

.header-setting img {
    width: 25px;
    vertical-align: middle;
}

.header-setting {
    display: flex;
    line-height: 20px;
}

.header-setting-name {
    vertical-align: middle;
    line-height: 3;
}

.header-setting-icon, .header-logout-icon {
    display: inline-block;
    vertical-align: top;
    color: #000;
    text-decoration: none;
    text-align: center;
    width: 3.5rem;
    height: 50px;
    font-size: 0.6rem;
    padding: 4px 0;
}

/* フッターの固定 */
div#footer-fixed {
    position: fixed; /* フッターの固定 */
    bottom: 0px; /* 位置(下0px) */
    left: 0px; /* 位置(左0px) */
    width: 100%; /* 横幅100%　*/
    height: 50px; /* 縦幅140px */
    z-index: 10000;
}

div#footer-bk {
    background-color: #55aaff; /* 背景色(黒) */
    padding: 0; /* 上10px、下20pxをあける */
    height: 50px; /* 縦の高さ140px */
    width: 100%; /* 横の幅を100% */
}

div#footer-bk-matching {
    background-color: #fff; /* 背景色(黒) */
    padding: 0px; /* 上10px、下20pxをあける */
    height: 50px; /* 縦の高さ110px */
    width: auto; /* 横の幅を100% */
    border-bottom: 1px solid #ddd;
    z-index: 100; /*背景にするため*/
}

div#footer {
    height: 100%; /* 縦の表示領域はheader-bkと同じ */
    width: 100%; /* 横の幅970px */
    max-width: 1000px;
    margin: 0 auto; /* 中央揃え */
    overflow: hidden;
}

/* 下部スクロールグローバルナビ */
.gnav {
    width: 100%;
    height: 50px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    text-align: center;
}

.gnav::-webkit-scrollbar {
    display: none;
}

.gnav ul {
    /*width: 800px;*/
    height: 50px;
    margin: 0 auto 0px -55px;
    list-style: none;
    display: flex;
    justify-content: center;
}

.gnav ul li {
    text-align: center;
    border-left: 0px solid #eee;
    display: inline-block;
    width: 90%;
}

.gnav ul li:last-child {
    border-right: 0px solid #eee;
}

.gnav ul li a,
.gnav ul li a:link,
.gnav ul li a:visited {
    display: inline-block;
    width: 3.5rem;
    height: 50px;
    background: #55aaff; /*FF6065 #FF7696 */
    color: #fff;
    text-decoration: none;
    font-size: 0.6rem;
    line-height: 19px;
    margin-right: -.2rem;
    padding-right: .3rem;
}

.gnav ul li a:hover,
.gnav ul li a:active {
    background: #5678DE;
}

.gnav li img {
    width: 25px;
    vertical-align: bottom;
    padding-top: 4px;
}

.icon_image {
    width: 40%;
}

.gnav ul li {
    width: 40px;
}

.gnav ul li.icon-on a {
    color: #ffff00;
    font-size: 0.6rem;
}

.gnav li a > i.material-icons {
    font-size: 2rem;
}

.gnav li a > i.material-icons + div {
    margin-top: -.6rem;
    transform: scale(.7);
    letter-spacing: .1rem;
}


/* -------バッジ------- */

/* ブロック要素にアイコンバッジを表示 */
span[data-badge-top-right] {
    display: block;
    position: relative;
    color: #fff;
}

/* アイコン部 */
span[data-badge-top-right]:before {
    position: absolute;
    display: inline-block;
    font-weight: bold;
    background-color: #f00;
    border-radius: 50%;
    font-size: 0.8em;
    line-height: 1;
    min-width: 1em;
    padding: 3px;
    text-align: center;
    border: 2px solid #fff;
    box-shadow: 0px 0px 3px #999;
}

span[data-badge-top-right]:before {
    top: 15px;
    right: 23px;
    transform: translate(50%, -50%);
    content: attr(data-badge-top-right) "";
}

/* button */
.btn.outline {
    background: none;
}

.btn.outline:hover {
    opacity: .5;
}

.outline.btn-primary {
    color: #3490dc;
}

.outline.btn-info {
    color: #6cb2eb;
}

.outline.btn-secondary {
    color: #6c757d;
}

.outline.btn-success {
    color: #38c172;
}

.outline.btn-warning {
    color: #ffed4a;
}

.outline.btn-danger {
    color: #e3342f;
}

/* -------マイページ------- */

/* 共通パーツ */
.box01 {
    background: #fff;
    padding: 6px 10px;
    border-radius: 5px;
}

.con-title h3 {
    margin: 15px 0 0 0;
    padding: 3px 0;
    border-radius: 30px;
    color: #777777;
    font-weight: bold;
    text-align: center;
    background: #E1F255; /*#00bbFF*/
}

/* 企業理念 */
.philosophy {
    padding: 1rem 0;
    text-align: center;
}

.philosophy h3 {
    font-size: 1rem;
    font-weight: bold;
}

.philosophy .sub-title {
    margin-top: 1rem;
}

.philosophy .sentence {
    font-weight: bold;
}

/* ニュース */
.top-news {
    border: 0px solid #A497FF;
    padding-top: 10px;
    margin-top: 10px;
    word-break: break-all;
}

.top-news-in {
    font-size: 0.8rem;
    border: 1px solid #aaa;
    padding: 5px;
    margin-bottom: 10px;
}

.top-news-in img {
    padding-top: 5px;
    width: 100%;
}

.top-news h3 {
    padding: 0 0 6px 0;
    margin: 0;
    color: #414141;
    font-weight: bold;
    text-align: center;
}

.top-news div .material-icons,
.work div .material-icons {
    vertical-align: bottom;
}

.top-news a.accordion-header,
.work a.accordion-header {
    display: block;
    margin-top: 2rem;
    border: 1px solid #adadad;
    border-bottom: none;
    border-radius: 3px 3px 0 0;
    padding: .5rem;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    background: rgb(254, 254, 254);
    background: linear-gradient(180deg, rgba(254, 254, 254, 1) 0%, rgba(254, 254, 254, 1) 35%, rgba(250, 250, 250, 1) 100%);
}

.top-news a.accordion-header:hover,
.top-news a.accordion-header:hover + .collapse + .toggle-accordion,
.top-news .toggle-accordion:hover,
.work a.accordion-header:hover,
.work a.accordion-header:hover + .collapse + .toggle-accordion,
.work .toggle-accordion:hover {
    background: rgb(249, 249, 249);
    background: linear-gradient(180deg, rgba(249, 249, 249, 1) 0%, rgba(249, 249, 249, 1) 35%, rgba(245, 245, 245, 1) 100%);
}

.top-news a.accordion-header .material-icons,
.work a.accordion-header .material-icons {
    vertical-align: bottom;
}

.top-news .toggle-accordion,
.work .toggle-accordion {
    margin-bottom: 2rem;
    border: 1px solid #adadad;
    border-top: none;
    border-radius: 0 0 3px 3px;
    text-align: center;
    background: rgb(254, 254, 254);
    background: linear-gradient(0deg, rgba(254, 254, 254, 1) 0%, rgba(254, 254, 254, 1) 35%, rgba(250, 250, 250, 1) 100%);
}

.top-news div.toggle-accordion[aria-expanded="true"] .material-icons.expand,
.work div.toggle-accordion[aria-expanded="true"] .material-icons.expand {
    transform: rotate(180deg);
}

.top-news .collapsing,
.top-news .collapse,
.work .collapsing,
.work .collapse {
    text-align: left;
    border: 1px solid #adadad;
    border-top: none;
    border-bottom: none;
    background-color: #fdfdfd;
}

.top-news .collapsing > div,
.top-news .collapse > div,
.work .collapsing > div,
.work .collapse > div {
    padding: 1.5rem .5rem;
}

.top-news .collapsing > div *,
.top-news .collapse > div *,
.work .collapsing > div *,
.work .collapse > div * {
    font-size: .95rem;
}

.top-news li .tbl {
    border: 1px solid #555;
}


/* 実績 */
.top-log-time {
    margin-top: 20px;
    text-align: center;
    font-size: 0.8em;
}

.top-shift {
    margin-top: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

.top-shift h5 {
    font-weight: bold;
    text-align: center;
}

.top-shift ul {
    padding-left: .5rem;
}

/* ステータス */
.top-status {
    display: flex;
    flex-direction: row;
    height: 200px;
    margin: 0px 0 10px 0;
    font-size: 1em;
}

.top-status-l {
    flex-basis: 40%;
    margin-right: 5px;
    text-align: center;
}

.top-status-l img {
    height: 180px;
}

.top-status-r {
    flex-basis: 60%;
    order: 1;
}

.tsr-1 {
    margin-bottom: 5px;
    height: 85px;
    text-align: center;
}

.tsr-1 h3 {
    padding: 5px 0 2px 0;
    margin: 0;
    color: #414141;
    font-weight: bold;
    text-align: center;
}

.tsr-1 h4 {
    padding: 3px 0 0px 0;
    margin: 0;
    font-size: 2rem;
    color: #0900FF;
    font-weight: bold;
    text-align: center;
}

.tsr-2 {
    height: 85px;
    font-weight: bold;
    font-size: 0.7rem;
    padding: 5px 0px 9px 10px;
}

.tsr-star {
    color: #FFB800;
    font-size: 0.8rem;
}

.tsr-star2 {
    color: #FF00BB;
    font-size: 0.8rem;
}


/* ピックアップアイテム */

.con-title {
    padding: 5px 10px 10px 20px;
}

/* 横スクロールリストの要素 */
div.item {
    margin: 5px 5px 0px 0px;
    padding: 5px;
    width: 100px;
    height: 100px;
    display: inline-block;
    text-align: center;
}

.item img {
    width: 100px;
    vertical-align: top;
    z-index: -1;
}

.item-off {
    background: #aaa;
    color: #FFFFFF;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.item-on {
    background: #11bbFF;
    color: #FFFFFF;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* 横スクロールリストのコンテナ */
div.container {
    white-space: nowrap;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}

.container::-webkit-scrollbar {
    display: none;
}

/*-- シフト表示関連 --*/

/* 勤務日 */
.work {
    margin-top: 5px;
    margin-bottom: 10px;
    text-align: center;
    overflow: hidden;
}

.work h3 {
    margin: 5px 0 15px 0;
    color: #414141;
    font-weight: bold;
}

.work-box {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.work-day {
    margin: 3px;
    text-align: center;
    color: #888;
}

/* 曜日設定 */
.w-week02 {
    font-size: 0.9rem;
    color: #FF0004;
    margin-bottom: 15px;
}

.w-week01 {
    font-size: 0.9rem;
    color: #397EE9;
    margin-bottom: 15px;
}

.w-week00 {
    font-size: 0.9rem;
    /*color:;*/
    margin-bottom: 15px;
}

.w-check {
    padding: 15px 0 5px 0;
    font-size: 0.6rem;
}

/* 勤務の時の丸印 */
.w-maru00 {
    background: rgba(255, 255, 255, 0.00);
    padding: 7px;
    border-radius: 30px;
    border: 1px solid #0039FF;
}

.today-bold .w-maru, .today-bold .w-maru00 {
    font-weight: bold;
    color: #333;
}

/* 本日強調 */
.w-today {
    font-weight: bold;
    color: #150CC4;
}

/*-- style2 --*/

.set01 ul, li {
    list-style: none;
    padding: 0;
    -webkit-appearance: none;
    margin: 3px 5px;
}

.set01 {
    margin-bottom: 10px;
}

.set01 table th {
    text-align: center;
}

.set02 {
    text-align: center;
    margin: 30px 0;
}

/* -------フォームデザイン------- */

input .input {
    display: block;
    padding: .375rem .75rem;
    border-radius: .25em;
    line-height: 1.6;
    /*box-shadow: 0;*/
    margin: 5px 0;
    width: 70%;
    border: 1px solid #aaa;
}

.set02 input {
    padding: 10px;
    width: 150px;
    height: 50px;
    font-size: 2rem;
}

button.button1 {
    padding: 9px 50px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #aaa;
    color: #000;
}

.loginpass {
    text-align: right;
}

.loginstyle {
    margin-top: 80px;
}


/*表示月セレクター周り*/
.select {
    margin: 0 3px;
    height: 34px;
    border-radius: 5px;
    border: 1px solid #aaa;
    padding: 0 28px 0 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    background: #EEE url(img/arrow02.png) no-repeat;
    background-size: 17px;
    background-position: right 3px center;
    background-color: #FFFFFF;
}

.sa-btn01 {
    padding: 0 10px;
    width: auto;
    height: 34px;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


form .form {
    display: inline-block;
}


/*詳細アコーディオンメニュー*/
.salary-view {
    font-size: 0.8rem;
    border: 1px solid #aaa;
    padding: 5px 10px;
    margin: 20px 0;
    border-radius: 4px;
    text-align: left;
}

.menu {
    margin: 0 auto;
    padding: 0;
}

label .label {
    display: block;
    margin: 0 0 6px 0;
    padding: 12px;
    line-height: 1;
    color: #666;
    background: #fff;
    cursor: pointer;
    border: 1px solid #999;
    border-radius: 5px;
}

.menu input {
    display: none;
}

.menu ul {
    margin: 0;
    padding: 0;
    background: #fff;
    list-style: none;
}

.menu li {
    max-height: 0;
    overflow-y: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#menu_bar01:checked ~ #links01 li,
#menu_bar02:checked ~ #links02 li,
#menu_bar03:checked ~ #links03 li,
#menu_bar04:checked ~ #links04 li {
    max-height: 46px;
    opacity: 1;
}

.wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 100%;
    margin: 6px 0;
}

.element1 {
    width: 37%;
    padding: 3px 5px;
    background: #26C9BE;
    text-align: center;
    color: #fff;
}

.element2 {
    width: 63%;
    padding-left: 5px;
    display: flex;
    align-items: center;
}

.element3 {
    width: 37%;
    padding: 3px 0px;
    background: #26C9BE;
    text-align: center;
    color: #fff;
    display: inline-block;
    margin: 2px 5px 2px 10px;
    font-size: 0.9rem;
}

.element4 {
    padding-left: 0px;
    font-size: 0.8rem;
}

/*PDF出力*/
.pdf-btn {
    display: block;
    margin: 15px 50px;
    padding: 12px;
    line-height: 1;
    color: #fff;
    background: #55aaff;
    border: 1px solid #fff;
    border-radius: 5px;
}

.custom-file-input:lang(ja) ~ .custom-file-label::after {
    content: "参照";
}

/* マイカー通勤申請 */
.admitted-driver .list {
    padding-left: 0;
}

.admitted-driver .list li {
    margin-bottom: 1rem;
    list-style: decimal;
    font-size: 0.9rem;
}

.admitted-driver strong {
    display: block;
    margin-bottom: 5px;
}

.admitted-driver p.text-danger {
    margin-bottom: 5px;
}

.admitted-driver .text-underline {
    text-decoration: underline;
}

.admitted-driver .text-red {
    font-size: inherit;
    line-height: inherit;
    text-decoration: underline;
    color: #e3342f;
}

.admitted-driver em {
    font-size: inherit;
    line-height: inherit;
    font-style: normal;
    font-weight: bolder;
    margin-bottom: 5px;
}

.admitted-driver .noticeBox {
    padding: 1rem;
    border: 1px solid #f00;
    border-radius: 0.2rem;
}

.admitted-driver .noticeBox > * {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.2;
}

.admitted-driver table.era {
    width: 75%;
    margin: 0 auto 25px;
}

.admitted-driver table.era td {
    padding: 5px 0 3px;
    border-bottom: 1px solid #888888;
}

.admitted-driver .custom-file-label {
    width: 92%;
    margin: 0 auto;
}

.admitted-driver ul.list-style-type-disc {
    padding-left: 1rem;
}

.admitted-driver ul.list-style-type-disc li {
    list-style-type: disc !important;
}

.admitted-driver .confirm {
    display: block;
    margin: 0 auto;
}

.admitted-driver object.image {
    width: 95%;
    max-width: 600px;
}

.admitted-driver input[type="file"] + label {
    padding-right: 3.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#headingVehicle2 a,
#headingVehicle3 a {
    text-align: center;
    text-decoration: none;
    font-weight: bold;
}

.admitted-driver .approval-status {
    text-align: center;
    margin-bottom: 1rem;
}

.admitted-driver .approval-status .material-icons {
    vertical-align: bottom;
}

.admitted-driver .approval-status.requested {
    color: #f6993f;
}

.admitted-driver .approval-status.accepted {
    color: #38c172;
}

.admitted-driver .approval-status.rejected {
    color: #e3342f;
}

.admitted-driver .approval-status.requested::after {
    content: '申請中';
    padding-left: 0.5rem;
}

.admitted-driver .approval-status.accepted::after {
    content: '承認済';
    padding-left: 0.5rem;
}

.admitted-driver .approval-status.accepted::after {
    content: '承認済';
    padding-left: 0.5rem;
}

.admitted-driver .approval-status.rejected::after {
    content: '却下';
    padding-left: 0.5rem;
}

.admitted-driver .input-del-btn {
    margin-left: auto !important;
}

.admitted-driver .modal {
    z-index: 10001;
}

.admitted-driver .modal-footer {
    justify-content: center;
}

#waitingMessage {
    display: none;
    padding: 0 1rem;
    font-size: 0.9rem;
}

.admitted-driver .input-alert-msg {
    width: 100%;
    margin-bottom: 0;
    text-align: center;
    font-size: 0.9rem;
}

.admitted-driver .input-alert-msg:nth-of-type(1) {
    margin-top: 1rem;
}

.admitted-driver .modal-body h4 {
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
}

.admitted-driver .modal-body table {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 3px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
}

.admitted-driver .modal-body table th {
    width: 30%;
    padding: 0.3rem;
    font-size: 0.8rem;
    border-bottom: 1px solid #ddd;
    text-align: center;
    background-color: #f8f8f8;
}

.admitted-driver .modal-body table td {
    padding: 0.3rem;
    text-align: center;
    font-size: 0.8rem;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.admitted-driver .modal-body table td:nth-child(2) {
    max-width: 185px;
    overflow: hidden;
}

.admitted-driver .modal-body table td:nth-child(3) {
    width: 13%;
    border-left: 1px solid #f5f5f5;
}

.admitted-driver .modal-body table tr:last-child th,
.admitted-driver .modal-body table tr:last-child td {
    border-bottom: none;
}

.notifications {
    text-align: left;
}

.notifications-list {
    padding-left: 0;
}

.notifications-list li:first-of-type {
    border-top: 1px dotted #000;
}

.notifications-list li {
    list-style: none;
    border-bottom: 1px dotted #000;
    padding: 12px 0;
    margin: 0;
}

.notifications-list a {
    position: relative;
    display: inline-block;
    padding-left: 12px;
    font-size: 90%;
}

.notifications-list a:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #999;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -6px;
}

.notification-body ul {
    margin-bottom: 0;
    padding-left: 1rem;
}

.notification-body li {
    margin-bottom: .5rem;
    list-style: disc;
}

.notification-body .list-none {
    list-style: none;
}

.notification-body li img {
    vertical-align: text-bottom;
}

.notification-new {
    color:red;
    font-weight: bold;
    text-indent: 12px;
    margin-bottom: -2px;
}

.grecaptcha-badge {
    bottom: 65px !important;
}

@media (max-width: 991px) {
    .hidden-sm {
        display: none !important
    }
}

#employee_id_card {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#employee_id_card_title-str {
    position: absolute;
    top: 5%;
    left: 5%;
    font-size: 200%;
}

#employee_id_card_company-name-str {
    position: absolute;
    top: 20%;
    left: 5%;
    font-size: 100%;
}

#employee_id_card_office-name-str {
    position: absolute;
    top: 35%;
    left: 5%;
    font-size: 120%;
}

#employee_id_card_name-str {
    position: absolute;
    top: 44%;
    left: 5%;
    font-size: 160%;
}

#employee_id_card_info-str {
    position: absolute;
    top: 55%;
    left: 5%;
    font-size: 70%;
}

#employee_id_card_company-address-str {
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-size: 70%;
    z-index: 1;
}

#employee_id_card_logo {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 110px;
    height: 120px;
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

@media (orientation: portrait) {
    #employee_id_card_font {
        position: relative;
        background-color: #fffefe;
        background-image: url(../../img/card-bg.svg);
        background-size: cover;
        border: 1px solid black;
        width: 370px;
        margin: 10px;
        height: 450px;
    }

    #employee_id_card_stamp {
        position: absolute;
        bottom: 5%;
        left: 40%;
        width: 65px;
        height: 65px;
        -webkit-touch-callout:none;
        -webkit-user-select:none;
        -moz-touch-callout:none;
        -moz-user-select:none;
        user-select:none;
    }
}

@media (orientation: landscape) {
    #employee_id_card_font {
        position: relative;
        background-color: #fffefe;
        background-image: url(../../img/card-bg.svg);
        background-size: cover;
        border: 1px solid black;
        margin: 10px;
        width: 500px;
        height: 360px;
    }

    #employee_id_card_stamp {
        position: absolute;
        bottom: 5%;
        left: 30%;
        width: 75px;
        height: 75px;
    }
}

.btn-pink{
    background-color: #f26f63;
    text-decoration: none;
    color: #fff;
}
.btn-pink:hover,
.btn-pink:active {
    color: #fff;
    background-color: #fc6a5d;
}

/* マイカー通勤却下理由エリアの設定 */
.admitted-driver-comment-title {
    text-align: center;
    margin: -20px 0 0 0;
    font-weight: bold;
    font-size: 22px;

}
.admitted-driver-comment {
    padding: 0.5em 1em;
    margin: 0 auto 20px;
    font-weight: bold;
    border: solid 3px #000000;
    border-radius: 15px;
    width: 500px;
}

.admitted-driver-line {
    width: 800px;
    height: 30px;
    position: relative;
    margin: auto;
}
.admitted-driver-line::before {
    content: "";
    background-image: linear-gradient(to right, #000, #000 3px, transparent 3px, transparent 8px);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 20px;
}
@media (max-width: 499px) {
    .admitted-driver-comment {
        width: 100%;
    }
    .admitted-driver-line {
        width: 100%;
    }
}
/* マイカー通勤却下理由エリアの設定 */

/* YOUTUBE動画 横幅100%表示用*/
.youtube-container {
    position: relative;
    padding-top: 56.2%; /* 16:9のアスペクト比 */
    width: 100%;
    height: 0;
}
.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 勤務開始ボタン */
.work-start-button {
    padding: 10px 40px;
    align-items: center;
    line-height: 1;
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    background-color: #378d3c;
}

/* 勤務終了ボタン */
.work-end-button {
    padding: 10px 40px;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    background-color: #d22f30;
}

/* 参院選メッセージ */
.vote-img {
    max-width: 50%;
}
@media screen and (max-width: 767px) {
    .vote-img {
        max-width: 100%;
    }
}

/* 仮交通費確認画面 */
.wb-keep-all {
    word-break: keep-all;
}

.bg-gray {
    background-color: lightgray;
}

.is-stay {
    color: #673ab7;
}

.is-no-moved,
.is-neighborhood {
    color: #009688;
}

.tooltip-text-link {
    font-size: .9rem;
    text-decoration: none;
    color: #0d5bdd;
}

.tr-green {
    background-color: #38c1724d;
}

.tr-red {
    background-color: #c15f384d;
}

.tr-green .approval-status {
    color: #429245;
}

.additional-btn,
.delete-btn {
    font-size: .7rem;
    padding: .3rem;
}

/* 実績確認ページ */
.text-saturday {
    color: #44F;
}

/* 実績確認ページ・仮交通費確認画面共通 */
#achievement-table caption {
    caption-side: bottom;
}

/*-- NOTE: 以下の height を設定しないと単一レコード時の tooltip が展開されない場合がある --*/
.table-responsive {
    min-height: 200px;
}

.table-responsive th,
.table-responsive td {
    font-size: .9rem;
    vertical-align: middle;
    white-space: nowrap;
}

.bg-gray td {
    color: #555;
}

.font-small {
    font-size: .8rem;
}

.font-small.indent {
    padding-left: .8rem;
    text-indent: -.8rem;
}

/* ホーム画面のボタン */
.home-btn {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.home-btn .btn {
    width: 100%;
}

/* 給与日払い申請 */
.indent-1 {
    margin-left: 1em;
}

.precautionary-statement ul {
    padding: 0;
}

.precautionary-statement ul li {
    font-size: .9rem;
}

.precautionary-statement .list-title {
    font-weight: bold;
    margin-bottom: .5rem;
    font-size: 1rem;
}

.precautionary-statement ul ul {
    padding-left: 1.5rem !important;
}

.precautionary-statement ul ul li {
    list-style: disc;
    margin-bottom: .5rem;
}

.precautionary-statement p {
    margin: 1rem;
    text-indent: 1em;
}

.list-style-none {
    list-style: none !important;
}
