@charset "utf-8";
/* 
HTML 5 Reset Stylesheet v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Editor:Ricochets
*/

/*--------------base--------------*/

* {
    margin: 0;
    padding: 0;
    list-style: none;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-appearance: none;
}
i {
    font-style: normal;
}
img,
a img {
    border: 0;
    vertical-align: top;
}
img {
    max-width: 100%;
}
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
iframe {
    display: block;
}

/*--------------user--------------*/

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted #000;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

/*--------------cmn--------------*/

html {
    font-size: 62.5%;
}
body {
    position: relative;
    margin: 0;
    padding: 0;
    color: #333;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.02rem;
    -webkit-text-size-adjust: 100%;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana,
        Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
        "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI",
        "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
input,
select,
textarea {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana,
        Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
        "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI",
        "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (max-width: 850px) {
    html {
        font-size: 55%;
    }
    body {
        letter-spacing: 0;
    }
}
/*----------------------------議事録機能 - 新規作成--------------------------------*/

.custom-file-input::-webkit-file-upload-button {
	visibility: hidden;
  }
  .custom-file-input::before {
	content: 'ファイルを選択';
	display: inline-block;
	background: #eff7f9 !important;
	color: #54adbf !important;
    border: 1px solid #54adbf !important;
    padding: 6px 6px !important;
	outline: none;
	white-space: nowrap;	
	cursor: pointer;
	text-align: center;
    line-height: 1.5;   
    min-width: 140px;    
    border-radius: 3px;
    transition: 0.2s;
    font-weight: bold;
    font-size: 1.35rem;
    margin: 0 50px;
  }
  
/*----------------------------link etc--------------------------------*/

a,
input,
button {
    outline: 0;
}
input::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
}
a {
    text-decoration: none;
    color: #595998;
}
.disable {
    pointer-events: none;
    opacity: 0.5;
    filter: saturate(0%);
}
.contenteditable {
    background: #fff;
    border: 1px solid #ccc;
    padding: 4px;
    border-radius: 3px;
}
a:hover {
    color: #8484aa;
}
svg {
    display: block;
    width: 20px;
    height: 20px;
}
.cap {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.5;
}
.must {
    margin: 0 0 0 8px;
    background: #fd6768;
    border-radius: 3px;
    padding: 3px 5px;
    color: #ffffff;
    font-size: 60%;
    text-align: center;
    transform: translateY(-2px);
    display: inline-block;
}

/*----------------------------load-----------------------------------*/

#load {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
}
#load div:nth-of-type(1) {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.8s ease-in-out;
    background: #fff;
}
#load .loader {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 2px solid #5e81f4;
    border-radius: 50%;
    animation: spin 0.75s infinite linear;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    display: block;
    box-sizing: content-box;
}
#load .loader::before,
#load .loader::after {
    left: -2px;
    top: -2px;
    display: none;
    position: absolute;
    content: "";
    width: inherit;
    height: inherit;
    border: inherit;
    border-radius: inherit;
}
#load .loader,
#load .loader::before {
    display: inline-block;
    border-color: transparent;
    border-top-color: #5e81f4;
}
#load .loader::before {
    animation: spin 1.5s infinite ease;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/*----------------------------header--------------------------------*/

header {
    width: 100%;
    background: #565584;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    position: relative;
}
header img {
    display: block;
    width: auto;
    height: 11px;
}
header ul {
    position: absolute;
    top: calc(50% - 20px);
    right: 10px;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}
header ul li {
    display: flex;
    align-items: stretch;
    justify-content: center;
}
header ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 40px;
    height: 40px;
}
header ul li a svg {
    fill: #fff;
    width: 20px;
    height: 20px;
}
header ul li a:hover {
    opacity: 0.7;
}
header .cname {
    width: calc(50% - 80px);
    position: absolute;
    top: 15px;
    left: 10px;
    color: #fff;
    opacity: 0.8;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
header .cname span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
@media all and (-ms-high-contrast: none) {
    /*IE*/
    header .cname span {
        height: 20px;
    }
}
@media screen and (max-width: 850px) {
    header ul {
        right: 5px;
    }
    header .cname {
        top: 16px;
    }
}
@media all and (-ms-high-contrast: none) and (max-width: 850px) {
    /*IE*/
    header .cname span {
        height: 17.6px;
    }
}

/*----------------------------main--------------------------------*/

main {
    min-height: calc(100vh - 51px - 51px);
    width: 100%;
    display: flex;
}
main#dashboard {
    align-items: center;
    justify-content: center;
    text-align: center;
}
main#minute {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: #f4f4f4;
    transition: 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}
main#login {
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #303342;
    padding: 30px 20px;
}
@media screen and (max-width: 850px) {
    main {
        min-height: calc(100vh - 51px - 48px);
    }
}

ul#service {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    margin: auto;
    width: 95%;
    max-width: 1200px;
    padding: 20px 0;
}
ul#service li {
    width: 25%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 10px;
}
ul#service li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 50px 10px;
    border: 1px solid #ddd;
    width: 100%;
    transition: 0.2s;
    border-radius: 5px;
}
ul#service li a:hover {
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}
ul#service li a span {
    display: block;
    width: 100%;
    font-size: 2rem;
}
ul#service li a i {
    display: block;
    margin-bottom: 10px;
    font-size: 6rem;
}
@media screen and (max-width: 900px) {
    ul#service li {
        width: 33.3%;
    }
    ul#service li a {
        padding: 40px 10px;
    }
}
@media screen and (max-width: 650px) {
    ul#service li {
        width: 50%;
    }
    ul#service li a {
        padding: 40px 10px;
    }
}
@media screen and (max-width: 550px) {
    ul#service li {
        padding: 5px;
    }
    ul#service li a span {
        font-size: 1.6rem;
    }
    ul#service li a i {
        font-size: 4rem;
    }
}

/*--layout--*/

main .row:first-child {
    padding-top: 20px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    padding: 0 0 10px 20px;
    position: relative;
}
.row div[class*="col-"] {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0 20px 20px 0;
}
.row .col_in {
    width: 100%;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    padding: 20px;
}
.row div[class*="heading"] + .col_in {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.row .col-3 {
    width: 25%;
}
.row .col-4 {
    width: 33.3%;
}
.row .col-6 {
    width: 50%;
}
.row .col-8 {
    width: 66.6%;
}
.row .col-9 {
    width: 75%;
}
.row .col-12 {
    width: 100%;
}
@media screen and (max-width: 768px) {
    .row {
        padding: 0 0 5px 15px;
    }
    .row div[class*="col-"] {
        padding: 0 15px 15px 0;
    }
    .row .col-3 {
        width: 50%;
    }
    .row .col-9,
    .row .col-9 + .col-3,
    .row .col-3:nth-of-type(1):nth-last-of-type(2),
    .row .col-6 {
        width: 100%;
    }
    .row .col-6:nth-of-type(2):nth-last-of-type(2) {
        order: 1;
    }
    .row .col-6 + .col-3:nth-last-of-type(1) {
        order: 3;
    }
    .row .col-3:nth-of-type(1):nth-last-of-type(3) {
        order: 2;
    }
    .row .col_in {
        padding: 15px;
    }
}
@media screen and (max-width: 600px) {
    .row .col-4,
    .row .col-8 {
        width: 100%;
    }
}
@media screen and (max-width: 400px) {
    .row {
        padding: 0 0 5px 10px;
    }
    .row div[class*="col-"] {
        padding: 0 10px 10px 0;
    }
}

/*--parts--*/

.heading1 {
    font-weight: bold;
    font-size: 2rem;
    color: #3e4257;
}
.heading1 span[class*="tag"] {
    margin-left: 10px;
}
.heading2 {
    font-size: 1.75rem;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    color: #3e4257;
}
.col_in .heading2 {
    padding: 20px;
}
.heading3 {
    font-size: 1.6rem;
    font-weight: bold;
    color: #3e4257;
}

.heading4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3e4257;
    background: #f4f4f4;
    border: 1px solid #ccc;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: 1px 0 0 #fff inset;
}
.heading5 {
    font-size: 1.45rem;
    font-weight: bold;
    color: #3e4257;
    margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
    .col_in .heading2 {
        padding: 15px;
    }
}

/*-----*/

div[class*="btn"] {
    text-align: center;
}
div[class*="btn"] a,
span[class*="btn"],
input[type="submit"],
input[type="button"][class*="btn"] {
    text-align: center;
    line-height: 1.5;
    padding: 7px 15px;
    min-width: 140px;
    display: inline-block;
    border-radius: 3px;
    transition: 0.2s;
    font-weight: bold;
    font-size: 1.35rem;
    cursor: pointer;
    border: none;
    margin: 0 5px;
}
div[class*="btn"] a:nth-child(2):nth-last-child(1),
span[class*="btn"]:nth-child(2):nth-last-child(1),
input[type="submit"]:nth-child(2):nth-last-child(1),
input[type="button"][class*="btn"]:nth-child(2):nth-last-child(1),
span[class*="btn"]:nth-child(1):nth-last-child(2),
input[type="submit"]:nth-child(1):nth-last-child(2),
input[type="button"][class*="btn"]:nth-child(1):nth-last-child(2) {
    margin-bottom: 5px;
}
.btn1 a,
span.btn1,
input[type="submit"],
input[type="button"].btn1 {
    background: #54adbf;
    color: #fff;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.15);
}
.btn1 a:hover,
span.btn1:hover,
input[type="submit"]:hover,
input[type="button"].btn1:hover {
    background: #3894a8;
}
.btn3 a,
span.btn3,
input[type="button"].btn3 {
    background: #e87a7a;
    color: #fff;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.15);
}
.btn3 a:hover,
span.btn3:hover,
input[type="button"].btn3:hover {
    background: #d76969;
}
.btn2 a,
span.btn2,
input[type="button"].btn2 {
    background: #eff7f9;
    color: #54adbf;
    border: 1px solid #54adbf !important;
    padding: 6px 14px;
}
.btn2 a:hover,
span.btn2:hover,
input[type="button"].btn2:hover {
    background: #d5ebf0;
    color: #479eaf;
}
@media screen and (max-width: 450px) {
    div[class*="btn"] a,
    span[class*="btn"],
    input[type="submit"],
    input[type="button"][class*="btn"] {
        min-width: 80px;
        padding: 7px;
    }
    .btn2 a,
    span.btn2,
    input[type="button"].btn2 {
        padding: 6px;
    }
}

/*-----*/

label {
    cursor: pointer;
}
input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
input[type="date"],
textarea {
    border: 1px solid #ccc;
    background: #fff;
    padding: 8px;
    margin: 2px auto;
    border-radius: 3px;
    max-width: 500px;
    width: 100%;
    font-size: 1.4rem;
    min-height: 37px;
}
select {
    border: 1px solid #ccc;
    padding: 7px 18px 7px 5px;
    border-radius: 3px;
    margin: 2px 10px 2px auto;
    max-width: 90%;
    background: url(../images/arrow-down-sign-to-navigate.svg) calc(100% - 7px)
        50% no-repeat #fff;
    background-size: 7px 7px;
}
select:nth-child(n + 2) {
    margin-left: 10px;
}
input[type="checkbox"],
input[type="radio"] {
    -webkit-appearance: none;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #ddd;
    background: #fff;
    cursor: pointer;
    position: relative;
}
input[type="checkbox"]:checked,
input[type="radio"]:checked {
    border: 3px solid #54adbf;
}
input[type="checkbox"]:checked:before,
input[type="radio"]:checked:before {
    content: "";
    display: block;
    width: 4px;
    height: 8px;
    position: absolute;
    top: 0px;
    left: 3px;
    border-bottom: 3px solid #54adbf;
    border-right: 3px solid #54adbf;
    transform: rotate(45deg);
}
input[type="checkbox"] + label,
input[type="radio"] + label {
    display: inline-block;
    padding: 6px 15px 6px 5px;
    /* margin-bottom: 3px;*/
}
input[type="checkbox"] + label + a,
input[type="radio"] + label + a {
    margin-left: -13px;
    margin-right: 15px;
}
input[type="radio"] {
    border-radius: 100px;
}
input[type="radio"]:checked:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100px;
    background: #54adbf;
    border: none;
}
@media screen and (max-width: 850px) {
    input[type="text"],
    input[type="tel"],
    input[type="password"],
    input[type="email"],
    input[type="date"],
    textarea {
        padding: 6px;
    }
    select {
        padding: 5px 7px;
    }
}

/*-----*/

main > hr {
    border-top: 1px solid #fff;
    box-shadow: 0 -1px 0 #ccc;
    width: calc(100% - 40px);
    height: 0;
    margin: 0 auto 20px;
    display: block;
}
@media screen and (max-width: 768px) {
    main > hr {
        width: calc(100% - 30px);
    }
}
@media screen and (max-width: 400px) {
    main > hr {
        margin-bottom: 15px;
        width: calc(100% - 20px);
    }
}

/*-----*/

*[class*="tag"] {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 100px;
    text-align: center;
    padding: 0 5px;
}
.tag1 {
    background-color: #eac449;
}
.tag2 {
    background-color: #089ba3;
}
.tag3 {
    background-color: #ccc;
}
.tag4 {
    background-color: #ff808b;
}

/*-----*/

.search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    width: 100%;
}
.search input[type="text"] {
    margin: 0 5px 0 0;
    width: calc(100% - 63px);
}
.search input[type="button"] {
    min-width: 0;
    margin: 0 !important;
}
@media screen and (max-width: 600px) {
    .search {
        justify-content: flex-start;
    }
    .search input[type="text"] {
        width: calc(100% - 75px);
    }
}

/*-----*/

.list_dev ul {
    display: block;
}
.list_dev li {
    display: inline-block;
    margin-right: 8px;
    padding-right: 8px;
    border-right: 1px solid #ccc;
    box-shadow: 1px 0 0 #fff;
    line-height: 2.2;
}
.list_dev li:last-child {
    padding-right: 0;
    margin-right: 0;
    border: none;
    box-shadow: none;
}

/*-----*/

div.list_action {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
div.list_action select {
    margin: 0 5px 0 0;
    max-width: 190px;
}
div.list_action input[type="button"] {
    margin-bottom: 0 !important;
    min-width: 0;
}
div.list_action .btn2.new {
    padding-left: 15px;
    margin: 0 0 0 15px;
    border-left: 1px solid #fff;
    box-shadow: -1px 0 0 #ccc;
}
.content div.list_action {
    padding: 15px;
}
@media screen and (max-width: 500px) {
    div.list_action select {
        max-width: 110px;
    }
}
@media screen and (max-width: 350px) {
    div.list_action .btn2.new {
        padding-left: 5px;
        margin-left: 5px;
    }
}

/*-----*/

.list_tab ul {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}
.list_tab ul li {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-right: 5px;
}
.list_tab ul li label {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 20px;
    background: #fff;
    margin-bottom: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    color: #0f849d;
    position: relative;
    opacity: 0.8;
}
.list_tab ul li label:before {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: -moz-linear-gradient(
        top,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.5) 100%
    ); /* FF3.6-15 */
    background: -webkit-linear-gradient(
        top,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.5) 100%
    ); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.5) 100%
    ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=0 ); /* IE6-9 */
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.1;
}
.list_tab ul li input {
    display: none;
}
.list_tab ul li input:checked + label {
    padding: 20px 20px;
    font-weight: bold;
    opacity: 1;
}
.list_tab ul li input:checked + label:before {
    display: none;
}
.tab_content {
    display: none !important;
}
.tab_content.show {
    display: block !important;
}

/*-----*/

table.datatable {
    width: 100%;
    font-size: 1.35rem;
}
.form table.datatable {
    border-top: 1px solid #eee;
}
table.datatable tr {
    border-bottom: 1px solid #eee;
    transition: 0.2s;
}
table.datatable tbody tr:nth-of-type(2n) {
    background: #fdfdfd;
}
table.datatable tbody tr:hover {
    background: #f4f8f9;
}
table.datatable td {
    padding: 10px 10px;
    vertical-align: middle;
    vertical-align: top;
    text-align: center;
    position: relative;
}
table.datatable td:after {
    content: "";
    display: block;
    width: 1px;
    height: 70%;
    background: #eee;
    position: absolute;
    top: 15%;
    right: 0;
}
table.datatable td:last-child:after {
    display: none;
}
table.datatable thead td {
    padding: 15px 10px;
    white-space: nowrap;
}
table.datatable thead a {
    display: inline-block;
    position: relative;
}
table.datatable thead a.order-des,
table.datatable thead a.order-asc {
    padding-right: 12px;
}
table.datatable thead a[class*="order-"]:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    position: absolute;
    top: calc(50% - 6px);
    right: 0;
}
table.datatable thead a.order-des:before {
    top: calc(50% - 2px);
    border-top-color: #3e4257;
}
table.datatable thead a.order-asc:before {
    border-bottom-color: #3e4257;
}
table.datatable .column-check {
    text-align: center;
    width: 60px;
}
table.datatable tbody .column-status {
    width: 100px;
}
table.datatable tbody .column-status span[class*="tag"] {
    font-size: 1.25rem;
    padding: 3px 5px;
    display: inline-block;
    max-width: 100%;
    width: auto;
    margin: 0;
}
table.datatable tbody .column-title,
table.datatable tbody .column-add {
    text-align: left;
}
table.datatable tbody .column-title > a,
table.datatable tbody .column-title > label {
    font-weight: bold;
}
table.datatable .column-title ul.list_action {
    padding-top: 5px;
    display: block;
    opacity: 0;
}
table.datatable tr:hover .column-title ul.list_action {
    opacity: 1;
}
table.datatable .column-title ul.list_action li {
    display: inline-block;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #eee;
}
table.datatable .column-title ul.list_action li:last-child {
    margin-right: 0;
    padding-right: 0;
    border: none;
}
table.datatable .column-title .column-msg,
table.datatable .column-title ul.column-file {
    padding-top: 5px;
    display: block;
}
table.datatable .column-title ul.column-file li {
    display: inline-block;
}
table.datatable .column-title ul.column-file li + li:before {
    content: " / ";
}
table.datatable .column-status,
table.datatable .column-name,
table.datatable .column-name2,
table.datatable .column-name3,
table.datatable .column-name4,
table.datatable .column-tel,
table.datatable .column-date,
table.datatable .column-limit {
    white-space: nowrap;
    width: auto;
}
.pager {
    width: 100%;
    padding: 15px;
}
.pager ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.pager li {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    margin-left: 5px;
}
.pager li a {
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #eff7f9;
    border: 1px solid #54adbf;
    border-radius: 3px;
    transition: 0.2s;
    color: #54adbf;
}
.pager li a:hover {
    color: #479eaf;
    background: #d5ebf0;
}
.pager li p {
    padding: 0 5px;
}
.imprint_area .pager {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
}
.imprint_area .pager ul {
    justify-content: center;
}
@media screen and (min-width: 751px) {
    table.datatable td {
        display: table-cell !important;
    }
    table.datatable .column-title ul.list_action,
    table.datatable .column-title .column-msg,
    table.datatable .column-title ul.column-file {
        display: block !important;
    }
}
@media screen and (max-width: 750px) {
    table.datatable table {
        display: block;
    }
    table.datatable thead,
    table.datatable tbody {
        display: block;
    }
    table.datatable tr {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
        position: relative;
    }
    table.datatable tbody tr {
        padding-bottom: 5px;
    }
    table.datatable tbody tr:before {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border: 5px solid transparent;
        border-top-color: #3e4257;
        position: absolute;
        top: 17px;
        right: 12px;
        cursor: pointer;
    }
    table.datatable td:after {
        display: none;
    }
    table.datatable thead td {
        padding: 10px;
    }
    table.datatable thead td:not(.column-check) {
        display: none;
    }
    table.datatable .column-check {
        width: auto;
    }
    table.datatable tbody .column-check,
    table.datatable tbody .column-status {
        padding-bottom: 0;
    }
    table.datatable tbody .column-check {
        padding-right: 0;
    }
    table.datatable .column-status {
        text-align: left;
        width: calc(100% - 50px);
    }
    table.datatable .column-status span[class*="tag"] {
        text-align: left;
    }
    table.datatable .column-title,
    table.datatable .column-name,
    table.datatable .column-name2,
    table.datatable .column-name3,
    table.datatable .column-name4,
    table.datatable .column-add,
    table.datatable .column-tel,
    table.datatable .column-send,
    table.datatable .column-date,
    table.datatable .column-limit {
        width: calc(100% - 30px);
        margin-left: 30px;
        padding-top: 0;
        text-align: left;
        padding-bottom: 5px;
    }
    table.datatable tbody .column-check + td {
        text-align: left;
        width: calc(100% - 50px);
        margin-left: 0;
        padding-top: 10px;
    }
    table.datatable .column-title > a,
    table.datatable .column-title > label {
        font-size: 1.6rem;
    }
    table.datatable .column-title ul.list_action,
    table.datatable .column-title .column-msg,
    table.datatable .column-title ul.column-file {
        opacity: 1;
        padding-top: 10px;
        padding-bottom: 5px;
    }
    table.datatable .column-title ul.list_action,
    table.datatable .column-title .column-msg,
    table.datatable .column-title ul.column-file,
    table.datatable .column-name,
    table.datatable .column-name2,
    table.datatable .column-name3,
    table.datatable .column-name4,
    table.datatable .column-add,
    table.datatable .column-tel,
    table.datatable .column-send,
    table.datatable .column-date,
    table.datatable .column-limit {
        display: none;
    }
    table.datatable .column-name:before,
    table.datatable .column-name2:before,
    table.datatable .column-name3:before,
    table.datatable .column-name4:before,
    table.datatable .column-add:before,
    table.datatable .column-tel:before,
    table.datatable .column-send:before,
    table.datatable .column-date:before,
    table.datatable .column-limit:before {
        display: inline-block;
        width: 120px;
    }
    table.datatable .column-date:before {
        content: "アップロード日時 :";
    }
    table.datatable .column-limit:before {
        content: "変換完了日時 :";
    }
    .pager ul {
        justify-content: center;
    }
    .form table.datatable {
        border-top: 1px solid #eee;
    }
    .form table.datatable thead {
        display: none;
    }
    .form table.datatable .column-title + td {
        padding-top: 5px;
    }
}

/*-----*/

.form {
    display: block;
}
.form dl {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.form dt,
.form dd {
    display: block;
    padding: 10px 0;
}
.form dt {
    width: 220px;
    padding-right: 10px;
    font-weight: bold;
}
.form dt i {
    display: block;
    padding-top: 3px;
}
.form dd {
    width: calc(100% - 220px);
}
.form_inline {
    display: inline-block;
}
.form_block {
    display: block;
}
.form_upload {
    display: flex;
    width: 100%;
    align-items: stretch;
    justify-content: flex-start;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 3px;
    max-width: 800px;
}
.drop_area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    background: #f5f5f5;
    border: 1px dashed #ccc;
    padding: 10px;
}
.form_submit {
    padding: 15px 0 10px;
    text-align: left;
}
@media screen and (max-width: 950px) {
    .form_submit {
        text-align: center;
    }
}
@media screen and (max-width: 768px) {
    .form dl {
        display: block;
    }
    .form dt,
    .form dd {
        width: 100%;
    }
    .form dt {
        padding-bottom: 0;
    }
}
@media screen and (max-width: 500px) {
    .form dd {
        padding-top: 5px;
    }
    .form_upload {
        display: block;
    }
    .drop_area {
        margin-left: 0;
        padding: 10px 0 0 0;
        border: none;
        background: none;
    }
    .drop_area p {
        display: none;
    }
}

/*----------------------------contents--------------------------------*/

#m_title {
    border-bottom: 1px solid #ccc;
    box-shadow: 0 1px 0 #fff;
    margin-bottom: 25px;
}
#m_title div[class*="col-"] {
    padding-bottom: 10px;
}
#m_title .col-4 {
    justify-content: flex-end;
}
@media screen and (max-width: 600px) {
    #m_title .col-4 {
        justify-content: flex-start;
    }
}

#m_doc {
    line-height: 1.8;
}
#m_doc article {
    margin-top: 25px;
}
#m_doc article ol,
#m_doc article ul,
#m_doc article li {
    display: block;
}
#m_doc article ol {
    counter-reset: num;
}
#m_doc article ol ol {
    margin-top: 5px;
    counter-reset: num2;
}
#m_doc article li {
    margin-bottom: 5px;
}
#m_doc article ol li {
    padding-left: 25px;
    position: relative;
}
#m_doc article ol li:before {
    counter-increment: num;
    content: counter(num) ". ";
    position: absolute;
    top: 0;
    left: 0;
}
#m_doc article ol li li:before {
    counter-increment: num2;
    content: counter(num2, lower-roman) ". ";
}
#m_doc article p.st {
    font-weight: bold;
    margin-bottom: 10px;
}

#m_doc dl {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    border-top: 1px solid #eee;
}
#m_doc dl dt,
#m_doc dl dd {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 15px;
    border-bottom: 1px solid #eee;
}
#m_doc dl dt {
    font-weight: bold;
    width: 150px;
}
#m_doc dl dd {
    width: calc(100% - 150px);
}
@media screen and (max-width: 850px) {
    #m_doc dl dt {
        width: 120px;
    }
    #m_doc dl dd {
        width: calc(100% - 120px);
    }
}
@media screen and (max-width: 550px) {
    #m_doc dl dt,
    #m_doc dl dd {
        width: 100%;
        padding: 10px 5px;
    }
    #m_doc dl dt {
        border: none;
        padding-bottom: 0;
    }
    #m_doc dl dd {
        padding-top: 5px;
    }
}

/*----------------------------footer--------------------------------*/

footer {
    width: 100%;
    background: #565584;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    font-size: 1.3rem;
    padding: 15px 20px;
    transition: 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.7);
}
.close footer,
.sp footer {
    margin-left: 0;
    width: 100%;
}
footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.2s;
}
footer a:hover {
    color: #fff;
}
footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
footer ul li {
    display: block;
}
footer ul li a {
    padding: 5px 10px;
}
footer .cp {
    margin-left: 20px;
}
@media screen and (max-width: 768px) {
    footer {
        padding: 15px 10px;
    }
}
@media screen and (max-width: 550px) {
    footer {
        justify-content: center;
    }
    footer nav {
        margin-bottom: 15px;
        width: 100%;
    }
    footer ul li a {
        padding: 5px;
    }
    footer .cp {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }
}

/*----------------------------login-----------------------------------*/

#loginwrap {
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 50px 40px;
    border-radius: 3px;
}
#loginwrap h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}
#loginwrap p {
    margin-bottom: 20px;
    text-align: left;
}
#loginwrap .input {
    position: relative;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
#loginwrap .input svg {
    display: block;
    position: absolute;
    top: calc(50% - 10px);
    left: 8px;
    width: 20px;
    height: 20px;
    fill: #ccc;
}
#loginwrap input[type="text"],
#loginwrap input[type="password"],
#loginwrap input[type="tel"] {
    padding: 10px 5px 10px 34px;
    margin: 0;
    max-width: none;
}
#loginwrap .input label {
    margin-bottom: 0;
}
#loginwrap .form_submit {
    text-align: center;
    margin-bottom: 10px;
    padding-top: 10px;
}
#loginwrap div[class*="msg_"] {
    text-align: center;
    border: 3px solid #4d4cac;
    color: #4d4cac;
    margin-bottom: 15px;
    padding: 7px;
    font-weight: bold;
}
#loginwrap .msg_error {
    border-color: #ff808b !important;
    color: #ff808b !important;
}
#loginwrap .link {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
}
#loginwrap div[class*="msg_"] + .link {
    padding-top: 10px;
}
#loginwrap .link div {
    width: 50%;
    padding: 0 10px;
    border-right: 1px solid #eee;
}
#loginwrap .link div:last-child {
    border: none;
}
@media screen and (max-width: 450px) {
    #loginwrap {
        padding: 30px 20px;
    }
    #loginwrap div[class*="msg_"] {
        text-align: left;
    }
}
