@charset "UTF-8";
/* CSS Document */
/* 動きをずらす */
* {
    margin: 0;
    padding: 0; }

body, html {
    scroll-behavior: smooth;
    height: 100%;
    min-height: 100%; }

/* =======================================================================================================================
　　　　　　　　　全体
======================================================================================================================= */
body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    font-size: 13px;
    line-height: 1.4em;
    letter-spacing: 0;
    background: #fff;
    color: #000;
    min-width: 1250px; }

/* =======================================================================================================================
　　　　　　　　　レイアウト
======================================================================================================================= */
#header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    z-index: 999; }

#main {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 20px 0 20px; }

#wrapper {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 100%;
    padding: 75px 0 70px 0; }

#content {
    padding-top: 20px; }

#footer {
    width: 100%;
    position: absolute;
    top: auto;
    left: 0;
    right: auto;
    bottom: 0;
    box-sizing: border-box;
    padding: 5px 15px; }

/* 画像 */
img {
    vertical-align: bottom;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out; }

/* 注意書き */
.note {
    color: #66ccff; }
.note::before {
    content: "※"; }

/* 件数 */
.case::after {
    content: "件"; }

/* 金額 */
.yen::after {
    content: "円"; }

/* リンク */
a {
    text-decoration: none;
    color: #66ccff;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out; }
a img {
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out; }
a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70); }

/* ------------------ ブロック ---------------------------------- */
.sec {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #efefef;
    margin: 0 0 20px 0; }

.sec-header {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 46px;
    padding: 7px 10px;
    background: #66ccff;
    color: #fff;
    overflow: hidden;
    zoom: 1; }
.sec-header .secttl {
    font-size: 1.5em;
    font-weight: normal;
    line-height: 1.5em; }

.edit-header {
    background: #fce37a;
    color: #575757;
    line-height: 32px; }
.edit-header .editttl {
    font-size: 1.25em;
    font-weight: normal;
    line-height: 32px; }

/* リストフッター */
.list-footer {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: right; }
.list-footer .pagenav, .list-footer button {
    display: inline-block; }
.list-footer .pagenav {
    padding-right: 2em; }

.edit-form .list-footer {
    text-align: center; }

/* ------------------ フォーム ---------------------------------- */
.sec header form {
    display: inline-block;
    position: relative; }

input {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    font-size: 13px;
    outline: none;
    vertical-align: middle; }

input[type="text"],
input[type="date"],
input[type="email"],
select, textarea {
    padding: 3px 10px;
    border: #66ccff solid 1px; }

/* プレイスホルダー */
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #cacaca; }
input:-moz-placeholder, textarea:-moz-placeholder {
    color: #cacaca; }
input::-moz-placeholder, textarea::-moz-placeholder {
    color: #cacaca; }
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #cacaca; }
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
    color: #cacaca; }
input::placeholder, textarea::placeholder {
    color: #cacaca; }

/* ラベル */
label.before {
    padding-right: 1em; }
label.before .labeltxt {
    padding-right: 0.5em; }
label.before .labelimg {
    width: 2.25em;
    line-height: 0;
    display: inline-block;
    padding-right: 5px;
    vertical-align: middle; }
label.before .labelimg img {
    max-width: 100%;
    height: auto;
    vertical-align: middle; }
label.after {
    padding-right: 1em; }
label.after .labeltxt {
    padding-left: 0.5em; }

/* テキスト */
input[type="text"] {
    width: 8em; }
input[type="text"].year {
    width: 4em; }
input[type="text"].month {
    width: 2em; }
input[type="text"].day {
    width: 2em; }
input[type="text"].inputttl {
    width: 50em; }
input[type="text"].min {
    width: 20em; }
input[type="text"].mid {
    width: 40em; }
@media screen and (max-width: 1400px) {
    input[type="text"].mid {
        width: 40%; } }
input[type="text"].long {
    width: 100%;
    max-width: 100em; }

/* メール */
input[type="email"] {
    width: 30em; }

/* テキストエリア */
textarea {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    font-size: 13px;
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 20em;
    max-width: 100em;
    padding: 10px; }

/* セレクトボックス */
select {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    color: #575757;
    cursor: pointer;
    outline: none;
    box-sizing: border-box;
    vertical-align: middle; }

/* チェックボックス */
.checkset {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 1.25em; }
.checkset input[type="checkbox"] {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 1.25em;
    height: 1.25em;
    vertical-align: middle;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: 2; }
.checkset span {
    display: block;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    width: 1.25em;
    height: 1.25em;
    border: #66ccff solid 1px;
    z-index: 1; }
.checkset input[type="checkbox"]:checked + span {
    background: #66ccff url("../images/check.svg") no-repeat 50% 50%;
    background-size: 1em auto; }
.checkset.oncolor input[type="checkbox"] {
    margin-right: 0.5em; }
.checkset.oncolor span {
    border: #fff solid 1px;
    background: rgba(255, 255, 255, 0.4); }

.checklist li {
    display: inline-block;
    padding-right: 2em;
    padding-top: 5px;
    padding-bottom: 5px; }
.checklist li .checkset input[type="checkbox"] {
    margin-right: 0.5em; }

/* ラジオボタン */
.radioset {
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
.radioset .radioarea {
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    line-height: 1.4em;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 50%;
    border: #66ccff solid 1px;
    background: #fff;
    ertical-align: middle; }
.radioset .radioarea input[type="radio"] {
    width: 1.4em;
    height: 1.4em;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.4em;
    vertical-align: middle;
    z-index: 2;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer; }
.radioset .radioarea span {
    display: block;
    content: "";
    width: 0.85em;
    height: 0.85em;
    line-height: 0.85em;
    background: #66ccff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out; }
.radioset .radioarea input[type="radio"]:checked + span {
    opacity: 1;
    filter: alpha(opacity=100); }

/* 検索 ------------------------------ */
/* ページトップ検索窓 */
#top_search form {
    width: 12em;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #efefef url("../images/search.svg") no-repeat right 5px top 5px;
    background-size: 1.5em 1.5em;
    padding: 5px 5px 5px 5px; }
#top_search form input[type="text"] {
    display: block;
    width: 9.5em;
    padding: 0 5px;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1em;
    outline: none;
    border: none;
    background: transparent; }
#top_search form input[type="submit"] {
    display: block;
    position: absolute;
    top: 5px;
    left: auto;
    right: 5px;
    bottom: auto;
    width: 1.5em;
    height: 1.5em;
    opacity: 0;
    filter: alpha(opacity=0); }

/* ------------------ ボタン ---------------------------------- */
button, input[type="submit"] {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    line-height: 1em;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    vertical-align: middle; }

/* ボタン2つ横並び */
.btn2box {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none inside;
    text-align: center; }
.btn2box li {
    display: inline-block;
    padding: 0 10px; }

/* ブルーの大きなボタン */
.mainbtn {
    border: #66ccff solid 2px;
    border-radius: 0;
    background: #66ccff;
    color: #fff;
    font-size: 18px;
    line-height: 1em;
    letter-spacing: 0.5em;
    text-indent: 0.5em;
    padding: 0.4em 1.5em 0.25em 1.5em;
    text-align: center; }
.mainbtn:hover {
    background: #fce37a;
    color: #66ccff; }
.mainbtn.mainbtn2 {
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    padding: 0.4em 2.5em 0.25em 2.5em; }

.edit-form .list-footer .mainbtn {
    font-size: 24px;
    letter-spacing: 1em;
    text-indent: 1em;
    padding: 0.75em 5em 0.5em 5em; }

/* ブルーのボタン */
.subbtn1 {
    border-radius: 0;
    background: #66ccff;
    color: #fff;
    padding: 8px 13px 6px 13px;
    border: #66ccff solid 2px;
    line-height: 1em; }
.subbtn1:hover {
    background: #fce37a;
    color: #66ccff; }

/* グレーのボタン */
.subbtn2 {
    border-radius: 0;
    background: #efefef;
    color: #66ccff;
    padding: 8px 13px 6px 13px;
    border: #66ccff solid 2px;
    line-height: 1em; }
.subbtn2:hover {
    background: #66ccff;
    color: #fff; }

/* グレーの大きなボタン */
.subbtn3 {
    border: #a0a0a0 solid 2px;
    border-radius: 0;
    background: #a0a0a0;
    color: #fff;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    padding: 0.45em 2em 0.2em 2em;
    text-align: center; }
.subbtn3:hover {
    border: #575757 solid 2px;
    background: #575757; }

/* ダウンロードボタン */
.dlbtn {
    border: #66ccff solid 2px;
    border-radius: 0;
    background: #66ccff;
    color: #fff;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    padding: 0.45em 2em 0.2em 2em;
    text-align: center; }
.dlbtn::before {
    content: "";
    display: inline-block;
    width: 21px;
    height: 18px;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: url("/images/icon_dl.svg") no-repeat 0 0;
    background-size: contain;
    margin-right: 0.5em;
    vertical-align: middle;
    top: -3px; }
.dlbtn:hover {
    background: #fce37a;
    color: #66ccff; }
.dlbtn:hover::before {
    background: url("../images/icon_dl2.svg") no-repeat 0 0;
    background-size: contain; }

/* アップロードボタン */
.ulbtn {
    border: #66ccff solid 2px;
    border-radius: 0;
    background: #66ccff;
    color: #fff;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    padding: 0.45em 2em 0.2em 2em;
    text-align: center; }
.ulbtn::before {
    content: "";
    display: inline-block;
    width: 21px;
    height: 18px;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: url("../images/icon_ul.svg") no-repeat 0 0;
    background-size: contain;
    margin-right: 0.5em;
    vertical-align: middle;
    top: -3px; }
.ulbtn:hover {
    background: #fce37a;
    color: #66ccff; }
.ulbtn:hover::before {
    background: url("../images/icon_ul2.svg") no-repeat 0 0;
    background-size: contain; }

/* 削除ボタン */
.deletebtn {
    width: 1.95em;
    height: 2.91em;
    background: url("../images/delete.svg") no-repeat left bottom;
    background-size: contain;
    border: none; }
.deletebtn:hover {
    background: url("../images/delete2.svg") no-repeat left bottom;
    background-size: contain; }
.deletebtn span {
    display: none; }

/* スイッチタイプボタン */
.onoffswitch {
    position: relative;
    width: 85px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none; }

.onoffswitch-checkbox {
    display: none; }

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: none;
    border-radius: 16px; }

.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s; }

.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 25px;
    padding: 1px 0 0 0;
    line-height: 25px;
    font-size: 11px;
    color: #fff;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

.onoffswitch-inner:before {
    content: "＋5000円";
    padding-left: 5px;
    background-color: #66ccff;
    color: #fff;
    text-align: left; }

.onoffswitch-inner:after {
    content: "0円";
    padding-right: 10px;
    background-color: #a0a0a0;
    color: #fff;
    text-align: right; }

.onoffswitch-switch {
    display: block;
    width: 15px;
    height: 15px;
    margin: 5px;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 60px;
    border-radius: 16px;
    transition: all 0.3s ease-in 0s; }

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0; }

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px; }

/* ------------------ リスト ---------------------------------- */
/* テーブル */
ul.listtable {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none inside; }
ul.listtable li {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: #b5b5b5 solid 1px; }
ul.listtable li:first-child {
    background: #66ccff;
    color: #fff;
    text-align: center;
    border-bottom: none; }
ul.listtable li:first-child ul {
    height: 40px; }
ul.listtable li:first-child ul li:first-child {
    color: #fff; }
ul.listtable li:last-child {
    border-bottom: none; }
ul.listtable li ul {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none inside;
    padding: 10px 0 10px 10px;
    height: 80px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center; }
ul.listtable li ul li {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    border: none;
    height: auto; }
ul.listtable li ul li:first-child {
    background: none;
    height: auto;
    color: #000; }
ul.listtable li ul li .onoffswitch {
    margin: 0 auto; }
ul.listtable li ul li input[type="text"] {
    width: 100%; }
ul.listtable li ul li strong {
    font-size: 2em;
    font-weight: bold;
    line-height: 1em;
    color: #66ccff; }
ul.listtable li ul li strong::after {
    font-weight: normal;
    font-size: 0.75em;
    padding-left: 0.25em; }
@media screen and (max-width: 1480px) {
    ul.listtable li ul li strong {
        font-size: 1.5em; } }
ul.listtable li ul li .ulbtn {
    font-size: 1em; }
ul.listtable li.draft {
    background: #e5e5e5;
    color: #999; }
ul.listtable li.draft select {
    border: #b5b5b5 solid 1px; }
ul.listtable li.draft .checkset span {
    border: #b5b5b5 solid 1px; }
ul.listtable li.edit_on {
    background: #f9ebb4; }

/* 編集フォームリスト */
ul.edit-list {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none inside; }
ul.edit-list li.sec {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch; }
ul.edit-list li.sec .formctttl {
    width: 15em;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.5em;
    font-weight: normal;
    line-height: 1.5em;
    background: #66ccff;
    color: #fff;
    padding: 10px; }
ul.edit-list li.sec .formctbox {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px; }
ul.edit-list li.sec .formctbox .note {
    padding-left: 0.5em; }
ul.edit-list li.sec .formctbox textarea + .note {
    vertical-align: top; }
ul.edit-list li.sec .formctbox p {
    line-height: 1.5em;
    padding: 0.375em 0; }
ul.edit-list li.sec .formctbox p.noedit {
    color: #b5b5b5; }
ul.edit-list li.sec .formctbox ul {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none inside; }
ul.edit-list li.sec .formctbox ul li {
    padding-bottom: 10px; }
ul.edit-list li.sec .formctbox ul li:last-child {
    padding-bottom: 0; }
ul.edit-list.noedit li.sec .formctttl {
    width: 22.5em;
    font-size: 1em;
    line-height: 2.25em;
    background: none;
    color: #000;
    border-right: #fff solid 1px; }

/* アップロードファイルリスト */
ul.ullist {
    list-style: none inside;
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 10px; }
ul.ullist li {
    display: inline-block;
    padding-right: 2em;
    padding-bottom: 0 !important; }
ul.ullist li.noul {
    color: #b5b5b5; }
ul.ullist li .deletebtn {
    margin-left: 1em;
    font-size: 0.75em;
    vertical-align: bottom; }

/* ページナビゲーション */
.pagenav ul {
    list-style: none inside;
    text-align: right; }
.pagenav ul li {
    display: inline-block;
    font-size: 1.25em;
    color: #b5b5b5; }

/* =======================================================================================================================
　　　　　　　　　ヘッダー
======================================================================================================================= */
#header {
    /* 管理者バー */
    /* ================= グローバルナビゲーション ============================================================ */ }
#header h1.logo {
    width: 140px;
    position: absolute;
    top: 35px;
    left: 30px;
    right: auto;
    bottom: auto;
    z-index: 10; }
#header h1.logo img {
    width: 100%;
    height: auto; }
#header #adminbar {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 25px;
    padding: 6px 15px;
    line-height: 1em;
    background: #66ccff;
    color: #fff;
    text-align: right; }
#header #gnav {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 50px;
    padding: 15px 10px 0 170px;
    background: #efefef; }
#header #gnav ul {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none inside;
    text-align: right; }
#header #gnav ul li {
    font-size: 1.25em;
    display: inline-block;
    padding-left: 2em; }
#header #gnav ul li a {
    color: #000;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out; }
#header #gnav ul li a:hover {
    color: #66ccff; }

/* =======================================================================================================================
　　　　　　　　　フッター
======================================================================================================================= */
#footer {
    background: #66ccff;
    color: #fff; }
#footer a {
    color: #fff; }
#footer .fnav ul {
    list-style: none inside;
    font-size: 10px;
    line-height: 1em;
    text-align: right; }
#footer .fnav ul li {
    display: inline-block;
    padding-left: 2em; }

/* =======================================================================================================================
　　　　　　　　　各ページ
======================================================================================================================= */
/* ================= ログインページ ============================================================ */
#page-login .login_wrap {
    width: 350px;
    height: 550px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto; }
#page-login .login_wrap #user_login,
#page-login .login_wrap form,
#page-login .login_wrap .forgetpass {
    width: 300px;
    margin: 0 auto; }
#page-login .login_wrap #user_login h1.logo {
    width: 100%;
    position: inherit;
    text-align: center; }
#page-login .login_wrap #user_login h1.logo img {
    width: 165px;
    position: inherit;
    text-align: center;
    margin-bottom: 20px; }
#page-login .login_wrap #user_login h2 {
    width: 100%;
    position: inherit;
    font-weight: normal;
    text-align: center;
    background: #66ccff;
    color: #fff;
    height: 2em;
    line-height: 2em; }
#page-login .login_wrap .login_content form {
    background: #efefef;
    padding: 2.5em;
    box-sizing: border-box; }
#page-login .login_wrap .login_content form h3 {
    padding-bottom: 0.7em;
    font-weight: normal;
    font-size: 1.2em; }
#page-login .login_wrap .login_content form input[type="text"] {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: #000 solid 1px;
    padding: 0.7em 1.2em;
    margin-bottom: 2em; }
#page-login .login_wrap .login_content form .logsave {
    font-size: 1.2em;
    height: 1.2em;
    line-height: 1.2em;
    padding: 1em 0; }
#page-login .login_wrap .login_content form .logsave input[type="checkbox"] {
    margin-right: 0.4em;
    height: 1.2em;
    vertical-align: middle;
    outline: none; }
#page-login .login_wrap .login_content form .loginbtn {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.3em;
    font-weight: bold;
    padding: 0.7em 1.2em;
    border: #66ccff solid 1px;
    background: #66ccff;
    color: #fff;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease; }
#page-login .login_wrap .login_content form .loginbtn:hover {
    background: #fce37a;
    color: #66ccff; }
#page-login .login_wrap .login_content .forgetpass {
    padding-top: 1em;
    text-align: center; }
#page-login .login_wrap .login_content .forgetpass a {
    text-decoration: underline;
    color: #575757;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out; }
#page-login .login_wrap .login_content .forgetpass a:hover {
    color: #66ccff; }

/* ================= ファイルアップロード画面 ============================================================ */
#upload {
    min-width: 500px; }
#upload h1 {
    text-align: center;
    padding: 10px;
    font-size: 1.5em;
    font-weight: normal;
    line-height: 1.5em;
    background: #66ccff;
    color: #fff; }
#upload #upload_area {
    padding: 10px; }
#upload #upload_area .dragbox {
    width: 450px;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 10px auto;
    padding: 5px;
    background: #b5b5b5; }
#upload #upload_area .dragbox .draginner {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 150px;
    border: #efefef solid 4px;
    color: #efefef;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 1.2em;
    line-height: 1.5em; }
#upload #upload_area .dragbox .draginner p {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center; }
#upload #upload_area .dragbox .draginner p::after {
    content: "";
    display: block;
    width: 63px;
    height: 54px;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: url("../images/icon_ul.svg") no-repeat 0 0;
    background-size: contain;
    margin: 0 auto;
    vertical-align: middle;
    margin-top: 1em;
    opacity: 0.5;
    filter: alpha(opacity=50); }
#upload .sec {
    width: 450px;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 10px auto;
    padding: 0;
    list-style: none inside; }
#upload .sec li {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 20px;
    border-bottom: #fff solid 1px; }
#upload .sec li .mainbtn {
    margin-right: 1em;
    letter-spacing: 0.05em;
    text-indent: 0.05em; }
#upload .sec li .filename {
    color: #575757; }
#upload .sec li .filename.nofile {
    color: #b5b5b5; }
#upload ul.edit-list li.sec .formctttl {
    width: 6em;
    text-align: center;
    background: #b5b5b5; }
#upload ul.edit-list li.sec .formctbox {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center; }
#upload ul.edit-list li.sec .formctbox div {
    padding-top: 0.4em; }
#upload p {
    padding: 30px 20px; }
#upload p.or {
    padding: 0;
    text-align: center;
    font-size: 1.5em;
    color: #b5b5b5; }

/* ================= お問合せ -回答詳細 ============================================================ */
#contact_answer .noedit li.sec {
    margin-bottom: 1px; }
#contact_answer .noedit li.sec.answerbox {
    margin-top: 20px;
    background: #f9ebb4; }
#contact_answer .noedit li.sec.answerbox .formctttl {
    width: 15em;
    background: #66ccff;
    color: #fff;
    font-size: 1.5em;
    line-height: 1.5em; }
#contact_answer .noedit li.sec.answerbox .formctbox p {
    font-size: 1.15em;
    line-height: 1.5em; }

/* =======================================================================================================================
　　　　　　　　　ソルナ用ページ
======================================================================================================================= */
/* ================= MYページ ============================================================ */
#mainmenu ul {
    list-style: none inside;
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch; }
#mainmenu ul li {
    width: 24.25%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 1%;
    margin-bottom: 1%; }
#mainmenu ul li:nth-child(4n) {
    margin-right: 0; }
#mainmenu ul li::before {
    content: "";
    display: block;
    position: relative;
    padding-top: 54%; }
#mainmenu ul li a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #66ccff url("../images/go.svg") no-repeat right 4.5% bottom 8.5%;
    background-size: 9% auto;
    border-radius: 1vw;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    -moz-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out; }
@media screen and (max-width: 1250px) {
    #mainmenu ul li a {
        border-radius: 1em; } }
#mainmenu ul li a .txtbox {
    text-align: center;
    font-size: 1.75vw;
    line-height: 2em;
    color: #fff;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out; }
@media screen and (max-width: 1250px) {
    #mainmenu ul li a .txtbox {
        font-size: 1.68em; } }
#mainmenu ul li a .txtbox span {
    display: block;
    color: #fce37a;
    font-size: 2em;
    font-weight: bold;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out; }
#mainmenu ul li a .txtbox span::after {
    content: "件";
    font-size: 0.7em;
    font-weight: normal; }
#mainmenu ul li a:hover {
    background: #fce37a url("../images/go.svg") no-repeat right 4.5% bottom 8.5%;
    background-size: 9% auto;
    opacity: 1;
    filter: alpha(opacity=100); }
#mainmenu ul li a:hover .txtbox {
    color: #66ccff; }
#mainmenu ul li a:hover .txtbox span {
    color: #66ccff; }

/* ================= 新規依頼 ============================================================ */
#page-request #request-list .edit-header .editttl {
    display: inline-block; }
#page-request #request-list .edit-header form {
    display: inline-block;
    padding-left: 10px; }
#page-request #request-list .edit-header form.searchbox {
    padding-left: 20px; }
#page-request #request-list .edit-header .mainbtn {
    float: right; }
#page-request #request-list ul.listtable li ul li:nth-child(1) {
    width: 7.5%; }
#page-request #request-list ul.listtable li ul li:nth-child(2) {
    width: 8.5%; }
#page-request #request-list ul.listtable li ul li:nth-child(3) {
    width: 7%; }
#page-request #request-list ul.listtable li ul li:nth-child(4) {
    width: 11%; }
#page-request #request-list ul.listtable li ul li:nth-child(5) {
    width: 8%; }
#page-request #request-list ul.listtable li ul li:nth-child(6) {
    width: 9%; }
#page-request #request-list ul.listtable li ul li:nth-child(7) {
    width: 13%; }
#page-request #request-list ul.listtable li ul li:nth-child(8) {
    width: 8%; }
#page-request #request-list ul.listtable li ul li:nth-child(9) {
    width: 11%;
    padding-right: 2em; }
#page-request #request-list ul.listtable li ul li:nth-child(10) {
    width: 10%; }
#page-request #request-list ul.listtable li ul li:nth-child(11) {
    width: 7%; }

/* ================= 新規依頼 -編集 ============================================================ */
#page-request_edit .edit-form .edit-header .editttl {
    display: inline-block;
    padding-right: 10px; }
#page-request_edit .edit-form .edit-header select {
    display: inline-block; }

/* ================= 調査対応 ============================================================ */
#page-care #care-list .edit-header .editttl {
    display: inline-block; }
#page-care #care-list .edit-header form {
    display: inline-block;
    padding-left: 10px; }
#page-care #care-list .edit-header form.searchbox {
    padding-left: 20px; }
#page-care #care-list .edit-header .mainbtn {
    float: right; }
#page-care #care-list ul.listtable li ul li:nth-child(1) {
    width: 5.5%; }
#page-care #care-list ul.listtable li ul li:nth-child(2) {
    width: 8.5%; }
#page-care #care-list ul.listtable li ul li:nth-child(3) {
    width: 7%; }
#page-care #care-list ul.listtable li ul li:nth-child(4) {
    width: 8%; }
#page-care #care-list ul.listtable li ul li:nth-child(5) {
    width: 8%; }
#page-care #care-list ul.listtable li ul li:nth-child(6) {
    width: 5%; }
#page-care #care-list ul.listtable li ul li:nth-child(7) {
    width: 7%; }
#page-care #care-list ul.listtable li ul li:nth-child(8) {
    width: 8%; }
#page-care #care-list ul.listtable li ul li:nth-child(9) {
    width: 12%; }
#page-care #care-list ul.listtable li ul li:nth-child(10) {
    width: 8%; }
#page-care #care-list ul.listtable li ul li:nth-child(11) {
    width: 10%;
    padding-right: 2em;
    text-align: left; }
#page-care #care-list ul.listtable li ul li:nth-child(12) {
    width: 8%; }
#page-care #care-list ul.listtable li ul li:nth-child(13) {
    width: 8%; }
#page-care #care-list ul.listtable li:first-child ul li:nth-child(11) {
    text-align: center; }

/* ================= 調査完了 ============================================================ */
#page-completed #completed-list .edit-header .editttl {
    display: inline-block; }
#page-completed #completed-list .edit-header form {
    display: inline-block;
    padding-left: 10px; }
#page-completed #completed-list .edit-header form.searchbox {
    padding-left: 20px; }
#page-completed #completed-list .edit-header .mainbtn {
    float: right; }
#page-completed #completed-list ul.listtable li ul li:nth-child(1) {
    width: 6.5%; }
#page-completed #completed-list ul.listtable li ul li:nth-child(2) {
    width: 8.5%; }
#page-completed #completed-list ul.listtable li ul li:nth-child(3) {
    width: 7%; }
#page-completed #completed-list ul.listtable li ul li:nth-child(4) {
    width: 10%; }
#page-completed #completed-list ul.listtable li ul li:nth-child(5) {
    width: 10%; }
#page-completed #completed-list ul.listtable li ul li:nth-child(6) {
    width: 10%; }
#page-completed #completed-list ul.listtable li ul li:nth-child(7) {
    width: 7%; }
#page-completed #completed-list ul.listtable li ul li:nth-child(8) {
    width: 8%; }
#page-completed #completed-list ul.listtable li ul li:nth-child(9) {
    width: 12%; }
#page-completed #completed-list ul.listtable li ul li:nth-child(10) {
    width: 8%; }
#page-completed #completed-list ul.listtable li ul li:nth-child(11) {
    width: 8%; }
#page-completed #completed-list ul.listtable li ul li:nth-child(12) {
    width: 8%; }

/* ================= ネレポート入力 ============================================================ */
#page-nereport .negattl {
    display: inline-block;
    width: 10em; }
#page-nereport textarea {
    height: 5em; }

/* ================= 明細確認 ============================================================ */
#page-invoice_list #invoice-list .edit-header .editttl {
    display: inline-block; }
#page-invoice_list #invoice-list .edit-header form {
    display: inline-block;
    padding-left: 10px; }
#page-invoice_list #invoice-list .edit-header form.searchbox {
    padding-left: 20px; }
#page-invoice_list #invoice-list .edit-header form input[type="text"] {
    width: 15em; }
#page-invoice_list #invoice-list ul.listtable li ul {
    height: 100px; }
#page-invoice_list #invoice-list ul.listtable li ul li {
    width: 30%;
    font-size: 1.5em;
    line-height: 1.5em; }
#page-invoice_list #invoice-list ul.listtable li ul li:nth-child(1) {
    width: 40%; }

/* ================= 請求内容一覧 ============================================================ */
#page-invoice_detail #invoice-list ul.listtable li ul li {
    width: 10%; }
#page-invoice_detail #invoice-list ul.listtable li ul li:nth-child(1) {
    width: 5%; }
#page-invoice_detail #invoice-list ul.listtable li ul li:nth-child(2) {
    width: 8%; }
#page-invoice_detail #invoice-list ul.listtable li ul li:nth-child(3) {
    width: 20%; }
#page-invoice_detail #invoice-list ul.listtable li ul li:nth-child(4) {
    width: 12%; }
#page-invoice_detail #invoice-list ul.listtable li ul li:nth-child(4)::after {
    content: "円"; }
#page-invoice_detail #invoice-list ul.listtable li ul li:nth-child(5) {
    width: 12%; }
#page-invoice_detail #invoice-list ul.listtable li ul li:nth-child(6) {
    width: 12%; }
#page-invoice_detail #invoice-list ul.listtable li ul li:nth-child(7) {
    width: 12%; }
#page-invoice_detail #invoice-list ul.listtable li ul li:nth-child(8) {
    width: 19%; }
#page-invoice_detail #invoice-list ul.listtable li ul li .filename {
    display: inline-block;
    padding-left: 1em;
    color: #575757; }
#page-invoice_detail #invoice-list ul.listtable li ul li .filename.nofile {
    color: #b5b5b5; }
#page-invoice_detail .btn2box {
    padding-bottom: 20px;
    text-align: right; }
#page-invoice_detail .btn2box li:last-child {
    padding-right: 0; }

/* ================= 明細確認 ============================================================ */
#page-payment_list #payment-list .edit-header .editttl {
    display: inline-block; }
#page-payment_list #payment-list .edit-header form {
    display: inline-block;
    padding-left: 10px; }
#page-payment_list #payment-list .edit-header form.searchbox {
    padding-left: 20px; }
#page-payment_list #payment-list .edit-header form input[type="text"] {
    width: 15em; }
#page-payment_list #payment-list ul.listtable li ul {
    height: 100px; }
#page-payment_list #payment-list ul.listtable li ul li {
    width: 30%;
    font-size: 1.5em;
    line-height: 1.5em; }
#page-payment_list #payment-list ul.listtable li ul li:nth-child(1) {
    width: 40%; }

/* ================= 請求内容一覧 ============================================================ */
#page-payment_detail #payment-list ul.listtable li ul li {
    width: 10%; }
#page-payment_detail #payment-list ul.listtable li ul li:nth-child(1) {
    width: 5%; }
#page-payment_detail #payment-list ul.listtable li ul li:nth-child(2) {
    width: 8%; }
#page-payment_detail #payment-list ul.listtable li ul li:nth-child(3) {
    width: 20%; }
#page-payment_detail #payment-list ul.listtable li ul li:nth-child(4) {
    width: 12%; }
#page-payment_detail #payment-list ul.listtable li ul li:nth-child(4)::after {
    content: "円"; }
#page-payment_detail #payment-list ul.listtable li ul li:nth-child(5) {
    width: 12%; }
#page-payment_detail #payment-list ul.listtable li ul li:nth-child(6) {
    width: 12%; }
#page-payment_detail #payment-list ul.listtable li ul li:nth-child(7) {
    width: 12%; }
#page-payment_detail #payment-list ul.listtable li ul li:nth-child(8) {
    width: 19%; }
#page-payment_detail #payment-list ul.listtable li ul li .filename {
    display: inline-block;
    padding-left: 1em;
    color: #575757; }
#page-payment_detail #payment-list ul.listtable li ul li .filename.nofile {
    color: #b5b5b5; }
#page-payment_detail .btn2box {
    padding-bottom: 20px;
    text-align: right; }
#page-payment_detail .btn2box li:last-child {
    padding-right: 0; }

/* ================= 請求書 ============================================================ */
#file_upload #file-list .edit-header {
    background: #fff;
    padding-right: 0;
    min-height: 4em; }
#file_upload #file-list .edit-header .ulbtn {
    float: right; }
#file_upload #file-list ul.listtable li ul {
    height: 100px; }
#file_upload #file-list ul.listtable li ul li {
    width: 10%;
    font-size: 1.5em;
    line-height: 1.5em; }
#file_upload #file-list ul.listtable li ul li:nth-child(1) {
    width: 20%; }
#file_upload #file-list ul.listtable li ul li:nth-child(2) {
    width: 30%; }
#file_upload #file-list ul.listtable li ul li:nth-child(4) {
    width: 30%; }

/* ================= 調査対応 ============================================================ */
#page-contact #contact-list .edit-header .editttl {
    display: inline-block; }
#page-contact #contact-list .edit-header form {
    display: inline-block;
    padding-left: 10px; }
#page-contact #contact-list .edit-header form.searchbox {
    padding-left: 20px; }
#page-contact #contact-list ul.listtable li ul li {
    width: 10%; }
#page-contact #contact-list ul.listtable li ul li:nth-child(1) {
    width: 8%; }
#page-contact #contact-list ul.listtable li ul li:nth-child(2) {
    width: 15%; }
#page-contact #contact-list ul.listtable li ul li:nth-child(4) {
    width: 13%; }
#page-contact #contact-list ul.listtable li ul li:nth-child(5) {
    width: 13%; }
#page-contact #contact-list ul.listtable li ul li:nth-child(6) {
    width: 21%; }
#page-contact #contact-list ul.listtable li:first-child ul li:nth-child(11) {
    text-align: center; }

/* ================= お問合せ -回答詳細 ============================================================ */
#answer_edit .edit-list.noedit li.sec {
    margin-bottom: 1px; }
#answer_edit .edit-list li.sec.answerbox {
    margin-top: 20px;
    background: #f9ebb4; }
#answer_edit .edit-list li.sec.answerbox .formctttl {
    width: 15em;
    background: #66ccff;
    color: #fff;
    font-size: 1.5em;
    line-height: 1.5em; }
#answer_edit .edit-list li.sec.answerbox .formctbox p {
    font-size: 1.15em;
    line-height: 1.5em; }
#answer_edit .list-footer {
    text-align: left; }

/* ================= お知らせ管理 ============================================================ */
#page-news #news-list .edit-header .editttl {
    display: inline-block; }
#page-news #news-list .edit-header form {
    display: inline-block;
    padding-left: 10px; }
#page-news #news-list .edit-header form.searchbox {
    padding-left: 20px; }
#page-news #news-list .edit-header .mainbtn {
    float: right; }
#page-news #news-list ul.listtable li ul li {
    width: 15%; }
#page-news #news-list ul.listtable li ul li:nth-child(2) {
    width: 35%; }
#page-news #news-list ul.listtable li ul li:nth-child(5) {
    width: 20%; }

/* ================= お知らせ編集 ============================================================ */
#page-news_edit .list-footer .btn2box {
    text-align: right; }

/* ================= 登録一覧ページ ============================================================ */
#system-list #registration-list .edit-header .editttl {
    display: inline-block; }
#system-list #registration-list .edit-header form {
    display: inline-block;
    padding-left: 10px; }
#system-list #registration-list .edit-header form.searchbox {
    padding-left: 20px; }
#system-list #registration-list .edit-header form input[type="text"] {
    width: 15em; }
#system-list #registration-list .edit-header .mainbtn {
    float: right; }
#system-list #registration-list ul.listtable li ul {
    height: 100px; }
#system-list #registration-list ul.listtable li ul li {
    width: 30%;
    font-size: 1.5em;
    line-height: 1.5em; }
#system-list #registration-list ul.listtable li ul li:nth-child(1) {
    width: 40%; }

/* ================= 新規依頼 ============================================================ */
#client_staff #client_staff-list .edit-header .editttl {
    display: inline-block; }
#client_staff #client_staff-list .edit-header form {
    display: inline-block;
    padding-left: 10px; }
#client_staff #client_staff-list .edit-header form.searchbox {
    padding-left: 20px; }
#client_staff #client_staff-list .edit-header .mainbtn {
    float: right; }
#client_staff #client_staff-list ul.listtable li ul li {
    padding: 0 0.5em; }
#client_staff #client_staff-list ul.listtable li ul li:nth-child(1) {
    width: 8%; }
#client_staff #client_staff-list ul.listtable li ul li:nth-child(2) {
    width: 15%; }
#client_staff #client_staff-list ul.listtable li ul li:nth-child(3) {
    width: 15%; }
#client_staff #client_staff-list ul.listtable li ul li:nth-child(4) {
    width: 13%; }
#client_staff #client_staff-list ul.listtable li ul li:nth-child(5) {
    width: 15%; }
#client_staff #client_staff-list ul.listtable li ul li:nth-child(6) {
    width: 13%; }
#client_staff #client_staff-list ul.listtable li ul li:nth-child(7) {
    width: 13%; }
#client_staff #client_staff-list ul.listtable li ul li:nth-child(8) {
    width: 8%; }
#client_staff #client_staff-list ul.listtable li ul li input[type="text"] {
    max-width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

/* =======================================================================================================================
　　　　　　　　　代理店・紹介店用ページ
======================================================================================================================= */
/* ================= MYページ ============================================================ */
/* ニュース */
.newssec.sec {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch; }
.newssec.sec .sec-header {
    width: 15em;
    height: auto;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1em 0 0 1.5em;
    background: transparent;
    color: #66ccff; }
.newssec.sec ul {
    flex: 1;
    list-style: none inside;
    padding: 1em;
    font-size: 15px; }
.newssec.sec ul li {
    margin-bottom: 1.5em; }
.newssec.sec ul li:last-child {
    margin-bottom: 0; }
.newssec.sec ul li .newsttl {
    font-weight: normal;
    font-size: 15px;
    padding-bottom: 0.3em; }
.newssec.sec ul li .newsttl a {
    text-decoration: underline; }
.newssec.sec ul li .newsttl a .newsdate::after {
    content: "　"; }
.newssec.sec ul li p {
    font-size: 13px;
    color: #575757; }

/* ================= お申込み状況確認 ============================================================ */
#agency-order #order-list ul.listtable li ul {
    height: 100px; }
#agency-order #order-list ul.listtable li ul li {
    width: 33.33%;
    font-size: 1.5em;
    line-height: 1.5em; }

/* ================= 明細確認 ============================================================ */
#agency-payment #payment-list ul.listtable li ul {
    height: 100px; }
#agency-payment #payment-list ul.listtable li ul li {
    width: 50%;
    font-size: 1.5em;
    line-height: 1.5em; }

/* ================= ダウンロードページ ============================================================ */
#agency-download #download-list ul.listtable li ul {
    height: 100px; }
#agency-download #download-list ul.listtable li ul li {
    width: 50%;
    font-size: 1.5em;
    line-height: 1.5em; }
#agency-download #download-list ul.listtable li ul li span {
    padding-right: 1em; }
#agency-download #download-list ul.listtable li ul li span::before {
    content: "";
    display: inline-block;
    width: 27px;
    height: 36px;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: url("/images/icon_file.svg") no-repeat 0 0;
    background-size: contain;
    margin-right: 0.5em;
    vertical-align: middle; }

/* =======================================================================================================================
　　　　　　　　　クライアント用ページ
======================================================================================================================= */
/* ================= 調査結果 ============================================================ */
#client-report #report-list .edit-header .editttl {
    display: inline-block; }
#client-report #report-list .edit-header form {
    display: inline-block;
    padding-left: 10px; }
#client-report #report-list .edit-header form .when {
    display: inline-block; }
#client-report #report-list .edit-header form .when span {
    padding: 0 2px; }
#client-report #report-list ul.listtable li ul li {
    width: 12.5%; }
#client-report #report-list ul.listtable li ul li:nth-child(5) {
    width: 13%; }
#client-report #report-list ul.listtable li ul li:nth-child(6) {
    width: 11.5%;
    font-size: 1.5em;
    font-weight: bold; }
#client-report #report-list ul.listtable li:first-child ul li:nth-child(6) {
    font-size: 1em;
    font-weight: normal; }

/* ================= 請求書 ============================================================ */
#client-payment #payment-list ul.listtable li ul {
    height: 100px; }
#client-payment #payment-list ul.listtable li ul li {
    width: 20%;
    font-size: 1.5em;
    line-height: 1.5em; }

/* ================= お問合せ ============================================================ */
#client-contact .btnbox {
    padding-bottom: 20px; }
#client-contact #report-list ul.listtable li ul li {
    width: 11%; }
#client-contact #report-list ul.listtable li ul li:nth-child(3) {
    width: 13%; }
#client-contact #report-list ul.listtable li ul li:nth-child(4) {
    width: 13%; }
#client-contact #report-list ul.listtable li ul li:nth-child(5) {
    width: 30%; }

/* ================= 調査依頼 ============================================================ */
#client-request #request-list .edit-header .editttl {
    display: inline-block; }
#client-request #request-list .edit-header form {
    display: inline-block;
    padding-left: 10px; }
#client-request #request-list .edit-header form.searchbox {
    padding-left: 20px; }
#client-request #request-list .edit-header .mainbtn {
    float: right; }
#client-request #request-list ul.listtable li ul li {
    width: 10%; }
#client-request #request-list ul.listtable li ul li:nth-child(1) {
    width: 7.5%; }
#client-request #request-list ul.listtable li ul li:nth-child(2) {
    width: 8.5%; }
#client-request #request-list ul.listtable li ul li:nth-child(3) {
    width: 7%; }
#client-request #request-list ul.listtable li ul li:nth-child(4) {
    width: 11%; }
#client-request #request-list ul.listtable li ul li:nth-child(5) {
    width: 12%; }
#client-request #request-list ul.listtable li ul li:nth-child(6) {
    width: 14%; }
#client-request #request-list ul.listtable li ul li:nth-child(7) {
    width: 18%; }
#client-request #request-list ul.listtable li ul li:nth-child(8) {
    width: 7%; }
#client-request #request-list ul.listtable li ul li:nth-child(9) {
    width: 8%; }
#client-request #request-list ul.listtable li ul li:nth-child(10) {
    width: 7%; }
#client-request #request-list ul.listtable li ul li .filename {
    display: inline-block;
    padding-left: 1em;
    color: #575757; }
#client-request #request-list ul.listtable li ul li .filename.nofile {
    color: #b5b5b5; }
#client-request .btn2box {
    padding-bottom: 20px;
    text-align: right; }
#client-request .btn2box li:last-child {
    padding-right: 0; }

/* ================= 調査依頼 ============================================================ */
#client-help .helpsec .sec-header {
    min-height: 46px;
    height: auto; }
#client-help .helpsec .sec-header .secttl {
    text-indent: -1em;
    padding-left: 1em; }
#client-help .helpsec .sec-header .secttl::before {
    content: "Q."; }
#client-help .helpsec .atxt {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1.5em; }
#client-help .helpsec .atxt p {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 1.5em;
    padding-bottom: 1em;
    line-height: 1.75em; }
#client-help .helpsec .atxt p:first-child {
    text-indent: -1.5em; }
#client-help .helpsec .atxt p:first-child::before {
    content: "A.";
    font-size: 1.5em; }
#client-help .helpsec .atxt p:last-child {
    padding-bottom: 0; }

/*# sourceMappingURL=style.css.map */
