/* ::::: style.css ::::: */
/* http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 20080212 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    font-family: 'Noto Sans JP', sans-serif;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
input {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
body {
    background-color: #EFEFEF;
    color: #595959;
}
ul li {
    list-style-type: none;
}
select,
input[type="text"],
input[type="number"] {
    padding: 4px;
    width: 300px;
    border-radius: 3px;
}
select,textarea,
input[type="email"],
input[type="password"],
input[type="text"],
input[type="number"] {
    color: #343434;
    background-color: #FFFFFF;
    border: 1px solid #343434;
    padding: 7px 5px;
    width: 400px;
    border-radius: 5px;
}
input[type="checkbox"] {
    background-color: #FFFFFF;
    border: 1px solid #595959;
    border-radius: 5px;
    position: relative;
    width: 18px;
    height: 18px;
    cursor: pointer;
    vertical-align: -2px;
}
input[type="checkbox"]:checked:before {
    position: absolute;
    top: 1px;
    left: 5px;
    transform: rotate(50deg);
    width: 4px;
    height: 9px;
    border-right: 2px solid #595959;
    border-bottom: 2px solid #595959;
    content: '';
    cursor: pointer;
}
input[type="radio"] {
    cursor: pointer;
}
input::placeholder {
    color: #ccc;
}
a:hover {
    opacity: .7;
}
a {
    text-decoration: none;
}
/* セレクトボックス共通 */
select {
    cursor: pointer;
    border: 1px solid #343434;
    padding: 7px 5px;
}
select:invalid {
    color: #ccc;
}
select option:first-child {
    color: #ccc;
}
select option {
    color: #000;
    cursor: pointer;
}
select {
    -webkit-appearance: none;
    appearance: none;
    background: url('../img/icon_arrow_down.svg') no-repeat 98% 50%;
}
/* ラジオボタン共通 */
input[type="radio"] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
input[type="radio"] {
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    border-radius: 50%;
    vertical-align: -2px;
}
input[type="radio"]:checked:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    content: '';
}
table {
    appearance: none;
    border-collapse: collapse;
    border-spacing: 0;
}
.btn {
    padding: 10px;
    border: none;
    width: 200px;
    font-size: 20px;
    cursor: pointer;
}
.btn_red {
    color: #FFFFFF;
    background-color: #cc0000;
}
.btn_area {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
section {
    width: 1920px;
    margin: 0 auto;
}
.flex {
    display: flex;
}
.flex_center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.alItems_start {
    align-items: flex-start;
}
.justify_between {
    justify-content: space-between;
}
.justify_start {
    justify-content: flex-start;
}
.display_none {
    display: none;
}
.d-block {
    display: block;
}
.taCenter {
    text-align: center;
}
.taLeft {
    text-align: left;
}
.flex_column {
    flex-direction: column;
}
.mt0 {
    margin-top: 0;
}
.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.mt50 {
    margin-top: 50px;
}
.mr0 {
    margin-right: 0;
}
.mr20 {
    margin-right: 20px;
}
.ml20 {
    margin-left: 20px;
}
.mb0 {
    margin-bottom: 0;
}
.mb10 {
    margin-bottom: 10px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb230 {
    margin-bottom: 230px;
}
.w100p {
    width: 100%;
}
.fontRed {
    color: #ff0000;
}
section {
    width: 1200px;
    margin: 0 auto;
}
/* ::::: ヘッダー ::::: */
.menu_bar {
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    height: 60px;
    width: 100%;
    z-index: 5;
}
.menu_bar .header_icon {
    background-color: #FFFFFF;
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #595959;
}
.menu_bar .header_menu_buttons {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
}
.menu_bar .header_menu_buttons .menu_buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu_bar .header_menu_buttons .menu_buttons .company_logo a {
    display: block;
}
.menu_bar .header_menu_buttons .menu_buttons .company_logo a img {
    width: 300px;
    display: block;
}
.menu_bar .header_menu_buttons .menu_buttons .menu_list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}
.menu_bar .menu_buttons .menu_list .dropdown:not(:last-child) {
    margin-right: 10px;
}
.menu_bar .menu_buttons .menu_list .dropdown .dropdown-toggle {
    border-radius: 5px;
    background-color: #111155;
    padding: 10px 15px;
    border: 5px;
    color: #FFFFFF;
    width: 140px;
    position: relative;
    display: block;
    font-size: 14px;
}
.menu_bar .menu_buttons .menu_list .dropdown .dropdown-toggle::after {
    content: "▼";
    display: inline-block;
    font-size: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8px;
}
.menu_bar .header_icon .user_info {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    font-weight: bold;
}
.menu_bar .header_icon .user_info a img:hover {
    cursor: pointer;
}
.menu_bar .header_icon .user_info a img {
    display: block;
    margin-left: 20px;
}
/* ::::: ヘッダー右サイドメニュー ::::: */
.menu_bar .header-user-menu {
    background-color: #FFFFFF;
    top: 60px;
    right: -250px;
    height: 100vh;
    width: 250px;
    cursor: default;
    position: absolute;
    padding: 30px;
    transition: all .3s ease-in-out;
    border: 1px solid #595959;
    border-top: none;
}
.header-user-menu.active {
    width: 250px;
    top: 60px;
    right: 0;
    height: 100vh;
    cursor: default;
    transition: all .3s ease-in-out;
}
.menu_bar .header-user-menu .header_menu_inner .header_menu li:not(:last-child) {
    margin-bottom: 20px;
}
.menu_bar .header-user-menu .header_menu_inner .header_menu li p {
    color: #595959;
    font-weight: normal;
}
.menu_bar .header-user-menu .header_menu_inner .header_menu li p span {
    font-size: 14px;
    font-weight: bold;
    color: #595959;
}
.menu_bar .header-user-menu .header_menu_inner .header_menu li:first-child {
    vertical-align: middle;
    align-items: center;
}
.menu_bar .header-user-menu .header_menu_inner .header_menu li:first-child img {
    vertical-align: middle;
    margin-right: 10px;
}
.menu_bar .header-user-menu .header_menu_inner .logout {
    margin: 500px 0 20px;
}
.menu_bar .header-user-menu .header_menu_inner .logout {
    text-align: center;
}
.menu_bar .header-user-menu .header_menu_inner .logout a {
    text-decoration: none;
    color: #595959;
    font-size: 14px;
    font-weight: bold;
}
.dropdown-menu li {
    list-style-type: none;
}
.navbar-nav {
    float: left;
    margin: 0;
}
.navbar-nav li {
    list-style-type: none;
    position: relative;
}
.navbar-nav li:not(:last-child) {
    margin-right: 5px;
}
.dropdown-toggle {
    border-radius: 4px;
    text-decoration: none;
    position: relative;
}
.dropdown-toggle::after {
    position: absolute;
    content: '▼';
    color: #FFFFFF;
    display: inline-block;
    font-size: 8px;
    top: 32%;
    right: 9%;
}
.navbar-nav > li > a {
    padding: 7px 20px 7px 15px;
    transition: opacity 0.3s;
    display: block;
    font-size: 12px;
}
.dropdown-menu {
    padding-left: 0;
    display: none;
}
.dropdown-menu li a {
    text-decoration: none;
    color: #333333;
}
.nav-justified li {
    list-style-type: none;
}
.nav-justified li a {
    display: block;
    padding-top: 0;
    padding-right: 15px;
}
#navbar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 0;
    font-size: 16px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 2px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.5;
    color: #333;
    white-space: nowrap;
}
.dropdown-menu.open {
    display: block;
}
/* ::::: ログイン ::::: */
.pass section,
.login section {
    margin: 250px auto;
}
.password_box,
.login_box {
    text-align: center;
}
.login_box .company_logo {
    text-align: center;
    margin-left: 50px;
}
.login_box .company_logo img {
    margin-bottom: 30px;
    width: 50%;
}
.password_box div label,
.login_box div label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.password_box div label:nth-of-type(1),
.login_box div label:nth-of-type(1) {
    margin-bottom: 12px;
}
.password_box div,
.login_box div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.password_box div label p,
.login_box div label p {
    width: 140px;
    font-weight: bold;
    text-align: left;
}
.password_box div p,
.login_box div p {
    width: 400px;
}
.password_box div label.password,
.login_box div label.password {
    position: relative;
}
.password_box div label.password::after,
.login_box div label.password::after {
    background-repeat: no-repeat;
    background-size: contain;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    position: absolute;
    top: 12px;
    right: 10px;
    width: 30px;
    height: 30px;
}
.login_box div i.fas,
.password_box div i.fas {
    position: relative;
    top: -28px;
    left: 185px;
}
.password_box div label input,
.login_box div label input {
    height: 40px;
    font-size: 18px;
}
.login_box .error {
    color: red;
    position: absolute;
    top: 40px;
    left: 140px;
}
.password_box div label .forgot_pass,
.login_box div label .forgot_pass {
    position: absolute;
    right: 0;
    width: 100%;
    text-align: right;
    bottom: -27px;
    font-weight: normal;
}
.password_box div label .forgot_pass span,
.login_box div label .forgot_pass span {
    font-weight: bold;
    cursor: pointer;
}
.password_box div label .forgot_pass span a,
.login_box div label .forgot_pass span a {
    color: #595959;
}
.login_box .login_btn {
    background-color: #595959;
    color: #FFFFFF;
    padding: 10px;
    border-radius: 7px;
    width: 400px;
    margin-top: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
}
.password_box .login_btn:hover,
.login_box .login_btn:hover {
    opacity: .7;
}
/* ::::: モーダル ::::: */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: #00000067;
}
.modal-box {
    background-color: #fff;
    margin: 5.5% auto;
    max-width: 1040px;
    width: 30%;
    animation-name: modalopen;
    animation-duration: 1s;
    position: relative;
    padding: 13.68px 19.26px;
    min-height: 300px;
    border: 1px solid #595959;
    border-radius: 20px;
    text-align: center;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.modal-box p {
    margin-bottom: 30px;
    font-size: 30px;
}
#modal1 .modal-box {
    margin: 17% auto;
}
#modal2 .modal-box {
    margin: 5% auto;
}
#modal3 .modal-box {
    margin: 3% auto;
}
.modal-box .btns .btn {
    width: 150px;
}
.modalClose {
    cursor: pointer;
    width: 140px;
    background-color: #595959;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
}
.modalOpen {
    cursor: pointer;
}
.modal_list li {
    background-color: #EFEFEF;
    border-radius: 10px;
    font-weight: bold;
    line-height: 1;
    padding: 13px 18px;
    position: relative;
}
.modal_list li::after {
    content: "";
    background-image: url("../img/arrow_right_bk.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 19.41px;
    height: 5px;
}
.modal_list li:hover {
    color: #009CB9;
}
.modal_list li:hover::after {
    content: "";
    background-image: url("../img/arrow_right_green.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 19.41px;
    height: 5px;
}
.modal_list li:not(:last-child) {
    margin-bottom: 15px;
}
/* アコーディオン */
.filter_box {
    background: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #595959;
}
.sec .accordion-tt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.search_box_title {
    cursor: pointer;
    width: 200px;
    font-weight: bold;
}
.accordion-body {
    position: relative;
    cursor: pointer;
    color: #595959;
    font-weight: bold;
    font-size: 20px;
}
.accordion-body.open::after {
    background: #FFFFFF url("../img/icon_arrow_down.svg") no-repeat 98% 50%;
    background-size: contain;
    content: '';
    display: inline-block;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    top: -16px;
    right: 0;
    width: 50px;
    height: 50px;
    transform: scale(1, -1);
}
.accordion-body::after {
    background: #FFFFFF url("../img/icon_arrow_down.svg") no-repeat 98% 50%;
    background-size: contain;
    content: '';
    display: inline-block;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}
.tt {
    margin: 0;
}
.text {
    margin: 0;
}
.sort-list-item {
    display: flex;
    padding: 1px 1px 1px 1px;
    border: 1px solid #393939;
    background: #FFFFFF;
    align-items: center;
    border-radius: 20px;
    margin: 0 5px;
}
.search_box_title {
    display: none;
}
.search_box_title.open {
    display: block;
    width: 100%;
}
/* ::::: パスワード再設定依頼 ::::: */
.password_box .login_btn {
    background-color: #595959;
    color: #FFFFFF;
    padding: 10px;
    border-radius: 7px;
    width: 400px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
}
.password_box .password_txt {
    font-size: 26px;
    font-weight: bold;
    width: 100%;
    margin-bottom: 30px;
}
.pass .password_content {
    background-color: #FFFFFF;
    border-radius: 40px;
    border: 1px solid #595959;
    padding: 40px;
    width: 650px;
    margin: 0 auto;
}
.password_box .company_logo {
    text-align: center;
}
.password_box .company_logo img {
    margin-bottom: 0;
    width: 50%;
}
/* ::::: パスワード再設定依頼完了 ::::: */
.pass .password_complete_content {
    background-color: #FFFFFF;
    border-radius: 40px;
    border: 1px solid #595959;
    padding: 60px 20px;
    width: 650px;
    margin: 0 auto;
}
.password_box .password_complete_txt {
    font-size: 24px;
    font-weight: bold;
    width: 100%;
    margin-bottom: 0px;
}
.password_box .password_resetting .login_btn {
    margin-top: 30px;
}
.password_box .password_resetting .password_txt {
    margin-bottom: 10px;
}
/* ::::: パスワード再設定完了 ::::: */
.password_box .password_resetting_complete {
    margin-top: 50px;
}
.password_box .password_resetting_complete .password_txt {
    margin-bottom: 10px;
}
/* ::::: 見積書確認画面 ::::: */
.sec {
    margin: 100px auto 30px;
}
.estimate_input_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #595959;
    margin-bottom: 10px;
}
.estimate_input_top label {
    display: flex;
    align-items: center;
    justify-content: center;
}
.estimate_input_top label p {
    margin-left: 10px;
    font-weight: bold;
    font-size: 18px;
}
.estimate_input_top label input[type="checkbox"] {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    vertical-align: -5px;
    border-radius: 5px;
    cursor: pointer;
}
.estimate_input_top label input[type="checkbox"]:checked:before {
    position: absolute;
    top: 1px;
    left: 5px;
    transform: rotate(50deg);
    width: 4px;
    height: 10px;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    content: '';
    cursor: pointer;
}
.estimate_input_top .btn {
    padding: 7px 20px;
    border-radius: 5px;
    text-align: center;
    width: 150px;
}
.estimate_input_top .buttons .btn-edit {
    pointer-events: none;
    opacity: 0.6;
}
.estimate_input_top .buttons .btn:disabled {
    opacity: 0.3;
    cursor: default;
}
.estimate_input_top .buttons a,
.estimate_input_top .buttons input {
    color: #FFFFFF;
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
}
.estimate_input_top .buttons a:hover,
.estimate_input_top .buttons input:hover {
    opacity: 0.7;
}
.estimate_input_top .buttons input:last-child {
    margin-right: 0px;
}
.estimate_input_top .buttons .btn-copy {
    background-color: #333333;
    border: 1px solid #333333;
}
.estimate_input_top .buttons .btn-confirm {
    background-color: #4caf50;
    border: 1px solid #4caf50;
}
.estimate_input_top .buttons .btn-temporarily-save {
    background-color: #FFFFFF;
    border: 1px solid #595959;
    color: #000;
}
.estimate_input_top .buttons .btn-edit {
    background-color: #ff9800;
    border: 1px solid #ff9800;
}
.estimate_input_top .buttons .btn-close {
    background-color: #9525a8ff;
    border: 1px solid #9525a8ff;
}
.estimate_input_content {
    background-color: #FFFFFF;
    border: 1px solid #595959;
}
.estimate_input_content .print_range {
    width: 210mm;
    height: 297mm;
    box-sizing: border-box;
    padding: 10mm;
    margin: 0 auto;
}
.estimate_input_content .row01 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 30px;
}
.estimate_input_content .row01 div {
    display: flex;
    align-items: center;
    justify-content: center;
}
.estimate_input_content .row01 div p:nth-of-type(2) {
    margin-left: 100px;
}
.estimate_input_content h2 {
    font-size: 24px;
}
.estimate_input_content .row02 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.estimate_input_content .row02 .right_content .detail_box {
    padding: 5px 0;
    border-top: 2px solid #595959;
    border-bottom: 2px solid #595959;
    font-size: 12px;
}
.estimate_input_content .row02 .right_content .tax {
    font-size: 12px;
    padding: 10px 0;
}
.estimate_input_content .row02 .company_name {
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.estimate_input_content .row02 .left_content .txt {
    line-height: 1.1;
    font-size: 12px;
}
.estimate_input_content .row02 .detail {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.estimate_input_content .row02 .detail p:nth-of-type(1) {
    width: 100px;
}
.estimate_input_content .row02 .tax {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px;
    border-bottom: 2px solid #595959;
}
.estimate_input_content .row02 .tax label {
    display: flex;
    align-items: center;
    justify-content: center;
}
.estimate_input_content .row02 .tax label p {
    margin-left: 10px;
}
.estimate_input_content .row02 .tax label p:nth-of-type(1) {
    margin-right: 10px;
}
.estimate_input_content label input[type="radio"] {
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #595959;
    vertical-align: -5px;
    border-radius: 5px;
    cursor: pointer;
}
.estimate_input_content label input[type="radio"]:checked {
    background-color: #595959;
    border: 1px solid #595959;
}
.estimate_input_content label input[type="radio"]:checked:before {
    position: absolute;
    top: -1px;
    left: 4px;
    transform: rotate(50deg);
    width: 4px;
    height: 10px;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    content: '';
    cursor: pointer;
}
.estimate_input_content .row03 {
    margin-top: 30px;
}
.estimate_input_content .row03 .total_price {
    display: flex;
    font-weight: bold;
    font-size: 20px;
    border-bottom: 2px solid #595959;
    padding-bottom: 5px;
}
.estimate_input_content .row03 table {
    width: 100%;
    margin-top: 10px;
}
.estimate_input_content .row03 table thead tr,
.estimate_input_content .row03 table tbody tr {
    width: 100%;
    padding: 20px;
}
.estimate_input_content .row03 table thead tr th,
.estimate_input_content .row03 table tbody tr td {
    text-align: center;
    font-weight: bold;
    font-size: 10px;
    padding: 5px 10px;
}
.estimate_input_content .row03 table thead tr {
    background-color: #595959;
    color: #FFFFFF;
}
.estimate_input_content .row03 table thead tr th:nth-child(1),
.estimate_input_content .row03 table tbody tr td:nth-child(1) {
    width: 10%;
}
.estimate_input_content .row03 table thead tr th:nth-child(2),
.estimate_input_content .row03 table tbody tr td:nth-child(2) {
    width: auto;
}
.estimate_input_content .row03 table thead tr th:nth-child(3),
.estimate_input_content .row03 table tbody tr td:nth-child(3) {
    width: 7%;
}
.estimate_input_content .row03 table thead tr th:nth-child(4),
.estimate_input_content .row03 table tbody tr td:nth-child(4) {
    width: 7%;
}
.estimate_input_content .row03 table thead tr th:nth-child(5),
.estimate_input_content .row03 table tbody tr td:nth-child(5) {
    width: 7%;
}
.estimate_input_content .row03 table thead tr th:nth-child(6),
.estimate_input_content .row03 table tbody tr td:nth-child(6) {
    width: 7%;
}
.estimate_input_content .row03 table thead tr th:nth-child(1),
.estimate_input_content .row03 table thead tr th:nth-child(2),
.estimate_input_content .row03 table tbody tr td:nth-child(2) {
    text-align: left;
}
.estimate_input_content .row03 .note {
    margin-top: 10px;
}
.estimate_input_content .row03 .note .note_ttl {
    font-weight: bold;
    background-color: #595959;
    color: #FFFFFF;
    padding: 5px 10px;
    font-size: 10px;
}
.estimate_input_content .row03 .note .note_txt {
    min-height: 300px;
}
.estimate_input_content .row04 {
    border-top: 2px solid #595959;
    padding: 20px;
}
.estimate_input_content .row04 .company_detail {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.estimate_input_content .row04 .company_detail div {
    width: 45%;
    font-size: 12px;
}
.estimate_input_content .row04 .company_logo {
    width: 70%;
    margin-bottom: 20px;
}
.estimate_input_content .row04 .company_stamp {
    width: 9%;
    margin-left: 30px;
}
/* ::::: メール送信 ::::: */
.email_input h2 {
    font-size: 26px;
    margin-bottom: 10px;
}
.email_input_box h3 {
    font-size: 20px;
}
.email_input_box {
    background-color: #FFFFFF;
    border: 1px solid #595959;
    border-radius: 20px;
    padding: 20px;
}
.email_input_content {
    border: 1px solid #595959;
    border-radius: 10px 0 0 10px;
    padding: 20px;
    height: 500px;
    overflow-y: scroll;
}
.email_input_content .destination li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.email_input_content .destination li p:nth-of-type(1) {
    width: 80px;
}
.btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}
.btns .btn:nth-child(1) {
    margin-right: 30px;
}
.btn {
    width: 280px;
    border-radius: 50px;
    padding: 10px 20px;
    text-align: center;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #595959;
}
.btn a {
    color: #FFFFFF;
    display: block;
}
.btn:hover {
    opacity: .7;
}
.border_btn {
    border: 1px solid #595959;
    background-color: #FFFFFF;
    color: #595959;
}
.border_btn a {
    color: #595959;
}
.email_modal_box {
    margin: 17% auto;
}
.email_modal_box .btns {
    margin: 0 auto;
}
/* ::::: 注文書 ::::: */
.order_sheet {
    background-color: #FFFFFF;
    padding: 10px 20px;
    border: 1px solid #595959;
}
.print_rang {
    width: 297mm;
    height: 210mm;
}
.order_sheet .top_data {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 20px 0;
    font-size: 14px;
}
.order_sheet .top_data div {
    display: flex;
    align-items: center;
    justify-content: center;
}
.order_sheet .top_data div:not(:last-child) {
    margin-right: 30px;
}
.order_sheet h2 {
    font-size: 20px;
    font-weight: normal;
}
.order_sheet .total_price {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 10px 0;
}
.order_sheet .total_price p {
    font-weight: bold;
    font-size: 20px;
}
.order_sheet .total_price p:last-child {
    margin-left: 100px;
}
.order_sheet table {
    width: 100%;
}
.order_sheet table thead tr,
.order_sheet table tbody tr {
    width: 100%;
}
.order_sheet table thead tr th {
    font-size: 20px;
}
.order_sheet table thead tr th,
.order_sheet table tbody tr td {
    text-align: left;
    padding: 5px 10px;
}
.order_sheet table tbody tr td {
    font-size: 14px;
}
.order_sheet table thead tr th:nth-child(1),
.order_sheet table tbody tr td:nth-child(1) {
    width: 10%;
}
.order_sheet table thead tr th:nth-child(2),
.order_sheet table tbody tr td:nth-child(2) {
    width: auto;
    white-space: nowrap;
}
.order_sheet table thead tr th:nth-child(3),
.order_sheet table tbody tr td:nth-child(3) {
    width: 7%;
}
.order_sheet table thead tr th:nth-child(4),
.order_sheet table tbody tr td:nth-child(4) {
    width: 7%;
}
.order_sheet table thead tr th:nth-child(5),
.order_sheet table tbody tr td:nth-child(5) {
    width: 7%;
}
.order_sheet table thead tr th:nth-child(6),
.order_sheet table tbody tr td:nth-child(6) {
    width: 7%;
    white-space: nowrap;
}
.order_sheet .note {
    margin: 30px 0;
}
.order_sheet .note p {
    font-weight: bold;
    padding-left: 10px;
    font-size: 20px;
}
.order_sheet .order_detail {
    padding: 20px 0;
    border-top: 2px solid #595959;
    border-bottom: 2px solid #595959;
}
.order_sheet .destination {
    margin: 30px 0;
    font-size: 14px;
}
.order_sheet .destination ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.order_sheet .destination ul li p:nth-child(1) {
    margin-right: 10px;
    width: 70px;
}
.order_sheet .orderer {
    margin: 40px 0 20px;
    font-size: 14px;
}
.order_sheet .orderer ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.order_sheet .orderer ul li  p:nth-child(1) {
    width: 70px;
    margin-right: 10px;
}
/* ::::: 注文データ管理更新完了 ::::: */
.complete_sec {
    margin: 250px auto;
}
.container {
    background-color: #FFFFFF;
    border: 1px solid #595959;
    border-radius: 20px;
    padding: 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.container .txt {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 50px;
}
/* ::::: 管理者アカウント情報新規作成 ::::: */
.account {
    width: 900px;
}
.account h2 {
    font-size: 26px;
    margin-bottom: 10px;
}
.account .container {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px 80px;
}
.account .container div,
.account .container label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.account .container .selectBox,
.account .container label {
    margin-bottom: 20px;
}
.account .container .selectBox select {
    position: relative;
}
.account .container .selectBox select {
    background: url("../img/icon_arrow_down.svg") no-repeat 98% 50%;
}
.account .container textarea,
.account .container label input {
    font-size: 16px;
    width: 500px;
    font-weight: bold;
    color: #595959;
}
.account .container .label {
    width: 190px;
    font-weight: bold;
    font-size: 20px;
}
.account .container p {
    width: 190px;
    font-weight: bold;
    font-size: 20px;
}
.account .container .required {
    position: relative;
}
.account .container .required::before {
    content: "●";
    display: inline-block;
    position: absolute;
    top: 4px;
    left: -20px;
    width: 15px;
    height: 15px;
}
.account .container .department input,
.account .container .selectBox select {
    width: 200px;
}
.account .container .note {
    display: flex;
    align-items: flex-start;
}
.account .container .note textarea {
    height: 60px;
}
.account .container .item:not(:last-child) {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
    font-weight: bold;
}
.account .top_text {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
.account_complete_sec {
    width: 900px;
}
/* ::::: 管理者アカウント情報詳細 ::::: */
.account .account_detail_top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}
.account .account_detail_top .detail_btn {
    border-radius: 50px;
    background-color: #FFFFFF;
    border: 1px solid #ea9999;
    padding: 7px 20px;
    display: block;
    width: 200px;
    text-align: center;
    color: #e06666;
    font-weight: bold;
    cursor: pointer;
}
.account .modal .modal-box p {
    font-size: 24px;
    margin-bottom: 0;
}
.account .modal .modal-box .btns {
    margin: 30px 0 0;
}
.account .modal .modal-box .btns button {
    padding: 5px 20px;
}
.account .modal .modal-box {
    margin: 17% auto;
}
.account .arrow {
    background-color: #FFFFFF;
}
.account .arrow img {
    width: 20px;
    height: 20px;
}

/* ::::: 管理者アカウント管理 ::::: */
.account_list {
    width: 1200px;
}
.account .account_create_btn {
    background-color: #595959;
    border-radius: 5px;
    width: 280px;
    text-align: right;
}
.account .account_create_btn a {
    color: #FFFFFF;
    font-weight: bold;
    padding: 10px 20px;
    display: block;
    text-align: center;
}
.account .account_list_ttl {
    margin-bottom: 0;
}
.account .top_btn_area {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-bottom: 10px;
}
.account .search_box_title .filter {
    margin-top: 20px;
}
.account .search_box_title .filter .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.account .search_box_title .filter .item:not(:last-child) {
    margin-bottom: 10px;
}
.account .search_box_title .filter .item label {
    display: flex;
}
.account .search_box_title .filter .item label p {
    width: 140px;
}
.account_list table {
    width: 100%;
    border: 1px solid #595959;
}
.account_list table thead {
    border-bottom: 1px solid #595959;
}
.account_list table thead tr,
.account_list table tbody tr {
    width: 100%;
}
.account_list table tbody tr:not(:last-child) {
    border-bottom: 1px solid #595959;
}
.account_list table thead tr th {
    background-color: #999999;
    color: #FFFFFF;
    font-weight: bold;
    position: relative;
}
.account_list table tbody tr td {
    background-color: #FFFFFF;
    font-weight: bold;
    text-align: center;
}
.account_list table thead tr th,
.account_list table tbody tr td {
    padding: 7px 5px;
}
.account_list table thead tr th a {
    margin-left: 10px;
    color: #595959;
}
.account_list table tbody tr td:last-child a {
    color: #595959;
    position: relative;
}
.account_list table tbody tr td:last-child a::after {
    content: "";
    position: absolute;
    top: 7.3px;
    left: 5px;
    width: 0;
    height: 0;
    border-left: 7px solid #eeeeee;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}
.account .filter_box {
    margin-bottom: 20px;
}
.pager {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
}
.pager .line select {
    background: #FFFFFF url(../img/icon_arrow_down.svg) no-repeat 98% 50%;
    border: 1px solid #393939;
    border-radius: 5px;
    display: inline-block;
    padding: 5px 10px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 50px;
}
.pager .page_nation {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pager .page_nation .sort-list .line ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pager .page_nation .sort-list .line ul .sort-list-item {
    padding: 5px 10px;
}
.pager .page_nation .sort-list .line ul .sort-list-item a img {
    display: block;
    cursor: pointer;
}
.pager .page_nation .sort-list .line ul .sort-list-item p,
.pager .page_nation .sort-list .line ul .sort-list-item a:not(:last-child) {
    margin-right: 5px;
}
.filter_box .search_box_title .btns {
    margin-bottom: 0;
}
.filter_box .search_box_title .btns .btn {
    width: 200px;
}
.manager-table th:not(:last-child) {
    min-width: 90px;
}


/* ::::: アクセス管理 ::::: */
.access .content {
    background-color: #FFFFFF;
    border: 1px solid #595959;
    border-radius: 10px;
    padding: 20px 30px;
}
.access table {
    width: 100%;
    border: 1px solid #595959;
}
.access table thead tr,
.access table tbody tr {
    width: 100%;
    background-color: #FFFFFF;
}
.access table thead tr th {
    padding: 10px;
    text-align: left;
    color: #000;
    border-bottom: 1px solid #595959;
    font-size: 18px;
}
.access table thead tr:nth-child(1) th:nth-child(1) {
    width: 14%;
    border-right: 1px solid #595959;
}
.access table thead tr:nth-child(1) th:nth-child(2) {
    width: 26%;
    border-right: 1px solid #595959;
}
.access table thead tr:nth-child(1) th:nth-child(3) {
    width: 60%;
    border-bottom: 1px solid #595959;
}
.access table thead tr:nth-child(2) {
    height: 80px;
}
.access table thead tr:nth-child(2) th:nth-child(1) {
    width: 20%;
    border-right: 1px solid #595959;
}
.access table thead tr:nth-child(2) th:nth-child(2) {
    width: 20%;
    border-right: 1px solid #595959;
}
.access table thead tr:nth-child(2) th:nth-child(3) {
    width: 20%;
}
.access table tbody tr td {
    text-align: center;
}
.access table tbody tr td:not(:last-child) {
    border-right: 1px solid #595959;
    vertical-align: middle;
}
.access table tbody tr {
    border-bottom: 1px solid #595959;
    color: #000;
    font-size: 18px;
}
.access table tbody tr td {
    padding: 20px;
}
.access .back_btn,
.access .edit_btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 10px;
}
.access .edit_btn .btn {
    border-radius: 10px;
    width: 150px;
    background-color: #ff9800;
}
.access .back_btn .btn {
    border-radius: 10px;
    width: 150px;
    background-color: #9525a8;
}
.access table tbody tr td select {
    width: 100px;
    font-size: 20px;
}
.access .confirm_btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.access .confirm_btn .btn {
    border-radius: 10px;
    width: 150px;
    background-color: #4caf50;
    margin-top: 20px;
}
/* ::::: タブ切り替え ::::: */
.tab__menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
    position: relative;
}
.tab__menu-item {
    list-style: none;
    width: 150px;
    padding: 15px 10px;
    text-align: center;
    background-color: #FFFFFF;
    cursor: pointer;
    transition: all .3s;
    font-weight: bold;
}
.tab__menu-item:nth-child(1) {
    border-radius: 50px 0 0 50px;
}
.tab__menu-item:nth-child(2) {
    border-radius: 0 50px 50px 0;
}
.tab__menu-item.is-active {
    background-color: #595959;
    color: #ffffff;
}
.tab__panel {
    width: 100%;
}
.tab__panel-box001 {
    display: none;
}
.tab__panel-box002 {
    display: none;
}
.tab__panel-box.is-show {
    display: block;
}
/* ::::: 見積管理 ::::: */
.estimate h2 {
    font-size: 26px;
    margin-bottom: 10px;
}
.csv {
    background-color: #ff9800;
    width: 180px;
    padding: 10px;
    border-radius: 50px;
    text-align: center;
    position: absolute;
    right: 0;
}
.csv a {
    color: #FFFFFF;
    font-weight: bold;
}
.estimate .row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.estimate .row:not(:last-child) {
    margin-bottom: 10px;
}
.estimate .row .item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.estimate .row .item:not(:first-child) p {
    margin-left: 20px;
}
.estimate .row .item p {
    width: 130px;
    font-weight: bold;
}
.estimate .row .item select {
    width: 230px;
}
.estimate .box {
    background-color: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #595959;
    padding: 20px;
}
.estimate .check_list {
    margin-top: 10px;
    font-weight: bold;
}
.estimate .check_list label:nth-child(1) {
    margin-right: 20px;
}
.estimate .btns {
    margin: 10px 0;
}
.estimate .btns .btn {
    width: 150px;
    padding: 6px;
}
.estimate .setting_btn {
    width: 180px;
    padding: 6px;
}
.estimate .pager {
    position: relative;
}
.estimate .pager .setting_btn {
    position: absolute;
    left: 0;
}
/* ::::: 見積結果管理 ::::: */
.estimate_result_box {
    background-color: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #595959;
    padding: 20px;
}
.estimate_result_box:nth-child(2) {
    margin: 10px 0;
}
.estimate_result_box h3 {
    font-size: 26px;
    margin-bottom: 10px;
}
.estimate_result_box .row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.estimate_result_box .row .item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: calc(100% / 4);
}
.estimate_result_box .row .item p {
    white-space: nowrap;
    font-size: 14px;
}
.estimate_result_box .row .item p:nth-child(1) {
    position: relative;
    padding-left: 20px;
    width: 150px;
}
.estimate_result_box .row .item p:nth-child(1)::before {
    background-size: contain;
    content: "■";
    font-size: 20px;
    position: absolute;
    top: -4px;
    left: 0;
}
.estimate_result_btns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    margin: 10px 0;
}
.estimate_result_btns p {
    width: 150px;
    border-radius: 10px;
}
.estimate_result_btns p a {
    padding: 10px 20px;
    display: block;
    color: #FFFFFF;
    font-weight: bold;
}
.estimate_result_btns p:nth-child(1) {
    background-color: #ff9800;
    margin-right: 10px;
}
.estimate_result_btns p:nth-child(2) {
    background-color: #4caf50;
}
.estimate_result_table,
.estimate_result_table thead tr,
.estimate_result_table tbody tr {
    width: 100%;
}
.estimate_result_table thead tr th,
.estimate_result_table tbody tr td {
    text-align: left;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 5px;
    vertical-align: middle;
}
.estimate_result_table {
    border: 1px solid #595959;
}
.estimate_result_table thead tr th {
    background-color: #999999;
    color: #FFFFFF;
    border-bottom: 1px solid #595959;
}
.estimate_result_table tbody tr td {
    border-bottom: 1px solid #595959;
}
.estimate_result_table tbody tr:nth-child(even) {
    background-color: #d9d9d9;
}
.estimate_result_table thead tr th:nth-child(1),
.estimate_result_table tbody tr td:nth-child(1) {
    width: 5%;
}
.estimate_result_table thead tr th:nth-child(2),
.estimate_result_table tbody tr td:nth-child(2) {
    width: 8%;
}
.estimate_result_table thead tr th:nth-child(3),
.estimate_result_table tbody tr td:nth-child(3) {
    width: 6%;
}
.estimate_result_table thead tr th:nth-child(4),
.estimate_result_table tbody tr td:nth-child(4) {
    width: 9%;
}
.estimate_result_table thead tr th:nth-child(5),
.estimate_result_table tbody tr td:nth-child(5) {
    width: 9%;
}
.estimate_result_table thead tr th:nth-child(6),
.estimate_result_table tbody tr td:nth-child(6) {
    width: 5%;
}
.estimate_result_table thead tr th:nth-child(7),
.estimate_result_table tbody tr td:nth-child(7) {
    width: auto;
}
.estimate_result_table thead tr th:nth-child(8),
.estimate_result_table tbody tr td:nth-child(8) {
    width: 4%;
}
.estimate_result_table thead tr th:nth-child(9),
.estimate_result_table tbody tr td:nth-child(9) {
    width: 4%;
}
.estimate_result_table thead tr th:nth-child(10),
.estimate_result_table tbody tr td:nth-child(10) {
    width: 6%;
}
.estimate_result_table thead tr th:nth-child(11),
.estimate_result_table tbody tr td:nth-child(11) {
    width: 12%;
}
.estimate_result_table thead tr th:nth-child(12),
.estimate_result_table tbody tr td:nth-child(12) {
    width: 4%;
}
.estimate_result_table tbody tr td:nth-child(1),
.estimate_result_table tbody tr td:nth-child(12) {
    text-align: center;
}
.estimate_result_table tbody tr td:nth-child(1) span,
.estimate_result_table tbody tr td:nth-child(12) span {
    background-color: #595959;
    color: #FFFFFF;
    padding: 3px 5px;
    border-radius: 5px;
    font-size: 12px;
    min-width: 45px;
    display: block;
}
.estimate_result_table tbody tr td:nth-child(1) span {
    cursor: default;
}
.estimate_result_table tbody tr td:nth-child(12) span {
    cursor: pointer;
}
.estimate_result_box .modal-box {
    margin: 17% auto;
}
.estimate_result_box #modal02 .btns .btn {
    margin-right: 0;
    margin-bottom: 0;
}
.estimate_result_box #modal02 .btns .btn a {
    font-size: 16px;
}
/* :::::  ::::: */
.estimate_create .estimate_input_top .buttons .btn-edit {
    pointer-events: all;
    opacity: 1;
}
.estimate_create .modal-box {
    margin: 17% auto;
}
.estimate_create .modal-box .btns {
    margin: 0 auto;
}
.estimate_create .modal-box .btns .btn {
    border-radius: 10px;
    margin-bottom: 0;
}
.estimate_create .modal-box .btns .btn {
    font-size: 16px;
}

.table thead tr .asc:not(:last-child):after {
    content: "▼";
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #595959;
    margin-left: 5px;
    cursor: pointer;
    font-size: 15px;
}

.table thead tr .desc:not(:last-child):after {
    content: "▲";
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #595959;
    margin-left: 5px;
    cursor: pointer;
    font-size: 15px;
}
