@charset "UTF-8";

@page {
    size: A4 portrait;
    margin: 0mm;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    min-height: 100vh;
    padding-bottom: 140px;
    position: relative;
}

body#gray {
    background: #efefef;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

header {
    background: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header h1 {
    padding-left: 60px;
}

header h1 img {
    width: 214px;
}

header ul {
    display: flex;
    align-items: center;
    gap: 0 60px;
}

header ul li a {
    color: #000;
}

header ul li:last-child input {
    font-weight: bold;
    color: #fff;
    background: #ca0a37;
    width: 200px;
    height: 120px;
    border-radius: 100px 0 0 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

header ul li.active a {
    color: #ca0a37;
}

.sp_only {
    display: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="date"] {
    width: 100%;
    height: 60px;
    padding: 0 5px;
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
}

input.gray {
    background: #efefef;
}

input[type="submit"],
input[type="button"] {
    font-size: 16px;
    color: #fff;
    width: 330px;
    border: none;
    border-radius: 10px;
    text-align: center;
    line-height: 3.75;
    cursor: pointer;
    transition: opacity .3s;
    -webkit-appearance: none;
}

input[type="submit"]:hover,
input[type="button"]:hover {
    opacity: .7;
}

input[type="submit"].gray,
input[type="button"].gray {
    background: #736b6b;
}

input.red {
    background: #ca0a37;
}

select {
    border-radius: 0;
    cursor: pointer;
}

form label.error {
    font-size: 18px;
    color: #f00;
    margin-top: 10px;
    display: block;
}

label {
    cursor: pointer;
}

input[type="file"] {
    display: none;
}

textarea {
    width: 100%;
    min-height: 120px;
    padding: 10px 15px;
    border: #000 1px solid;
    border-radius: 0;
    -webkit-appearance: none;
}

.btn_box {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 0 20px;
}

footer {
    background: #736b6b;
    width: 100%;
    position: absolute;
    bottom: 0;
}

footer p {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 4.286;
}

tr.estimate a.disabled, tr.estimate select.disabled {
    pointer-events: none;
}

@media print {
    body {
        width: 210mm;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }

    footer {
        display: none;
    }
}

@media (max-width: 1280px) {
    body {
        background: #fff !important;
        padding-bottom: 250px;
    }

    header {
        border-bottom: #ca0a37 1px solid;
    }

    header h1 {
        padding-left: 50px;
    }
    
    header ul {
        gap: 0;
        justify-content: space-between;
    }
    
    header ul li:first-child,
    header ul li:nth-child(2) {
        display: none;
    }

    header ul li:last-child input {
        font-size: 24px;
        padding-left: 15px;
    }

    .sp_only {
        display: inline-block;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="password"] {
        height: 80px;
    }

    input[type="submit"],
    input[type="button"] {
        font-size: 32px;
        width: 600px;
        line-height: 2.5;
    }

    form label.error {
        font-size: 26px;
    }

    .btn_box {
        margin-top: 50px;
        text-align: center;
        flex-wrap: wrap;
        gap: 40px 0;
    }

    .btn_box div {
        width: 100%;
    }

    body#gray footer {
        bottom: 90px;
    }

    footer div {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    footer ul {
        width: 100%;
        display: flex;
    }

    footer ul li {
        width: 50%;
    }

    footer ul li a {
        font-size: 28px;
        font-weight: bold;
        width: 100%;
        text-align: center;
        line-height: 3.214;
        display: block;
    }

    footer ul li:first-child a {
        color: #fff;
        background: #ca0a37;
    }

    footer ul li:last-child a {
        color: #000;
        background: #fff;
    }

    @media print {
        body#gray {
            padding: 0;
        }
    }
}

@media (max-width: 800px) {
    body#gray {
        padding-bottom: calc(60px + 23.75vw);
    }

    header h1 {
        padding-left: 6.25vw;
    }
    
    header h1 img {
        width: 26.75vw;
    }
    
    header ul li:last-child input {
        font-size: 3vw;
        width: 25vw;
        height: 15vw;
        padding-left: 1.875vw;
        border-radius: 12.5vw 0 0 0;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="password"] {
        height: 10vw;
    }

    input[type="submit"],
    input[type="button"] {
        font-size: 4vw;
        width: 75vw;
        border-radius: 1.25vw;
    }

    form label.error {
        font-size: 3.25vw;
        margin-top: 1.25vw;
    }

    .btn_box {
        margin-top: 6.25vw;
        gap: 5vw 0;
    }

    body#gray footer {
        bottom: 11.25vw;
    }

    footer ul li a {
        font-size: 3.5vw;
    }

    @media print {
        body#gray {
            padding: 0;
        }
    }
}

/************ login, forgotten, resetting ************/
#login article section {
    padding-top: 120px;
}

#login h1 {
    width: fit-content;
    margin: 0 auto;
}

#login .error_message {
    font-weight: bold;
    color: #f00;
    margin-top: 40px;
    text-align: center;
}

#login .wrap {
    width: 500px;
    margin: 40px auto 0;
}

#login .wrap form dl dt {
    font-size: 18px;
    margin-top: 10px;
}

#login .wrap form dl dd {
    font-size: 20px;
    margin-top: 10px;
}

#login .text_01 {
    margin-top: 40px;
    text-align: center;
}

#login .text_01 a {
    color: #238e0f;
}

.other h2 {
    font-size: 30px;
    color: #238e0f;
    margin-top: 60px;
    text-align: center;
}

.other .explanation {
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 1280px) {
    #login article section {
        padding-top: 80px;
    }

    #login .error_message {
        font-size: 26px;
        margin-top: 40px;
    }

    #login .wrap {
        width: 600px;
        margin: 60px auto 0;
    }
    
    #login .wrap form dl dt {
        font-size: 32px;
        margin-top: 20px;
    }
    
    #login .wrap form dl dd {
        font-size: 24px;
        margin-top: 10px;
    }
    
    #login .text_01 {
        font-size: 26px;
    }
    
    .other .explanation {
        font-size: 28px;
        margin-top: 40px;
        padding: 0 30px;
        line-height: 1.8;
    }
}

@media (max-width: 800px) {
    #login article section {
        padding-top: 10vw;
    }

    #login h1 img {
        width: 44.25vw;
    }

    #login .error_message {
        font-size: 3.25vw;
        margin-top: 5vw;
    }

    #login .wrap {
        width: 75vw;
        margin: 7.5vw auto 0;
    }
    
    #login .wrap form dl dt {
        font-size: 4vw;
        margin-top: 2.5vw;
    }
    
    #login .wrap form dl dd {
        font-size: 3vw;
        margin-top: 1.25vw;
    }
    
    #login .text_01 {
        font-size: 3.25vw;
        margin-top: 5vw;
    }
    
    .other h2 {
        font-size: 3.75vw;
        margin-top: 7.5vw;
    }
    
    .other .explanation {
        font-size: 3.5vw;
        margin-top: 5vw;
        padding: 0 3.75vw;
    }
}
/************ login, forgotten, resetting ************/

/************ list ************/
#list .wrap {
    background: #fff;
    width: 100%;
    max-width: 1100px;
    min-height: 750px;
    margin: 40px auto 0;
    padding: 50px 40px;
    position: relative;
}

#list h2 {
    font-size: 30px;
    padding-bottom: 5px;
    border-bottom: #000 1px solid;
}

#list .attention {
    font-weight: bold;
    color: #f00;
    position: absolute;
    left: 40px;
    top: 128px;
}

#list #create a {
    font-weight: bold;
    color: #fff;
    background: #ca0a37;
    width: 150px;
    margin: 20px 0 0 auto;
    border-radius: 10px;
    text-align: center;
    line-height: 2.5;
    display: block;
}

#list table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

#list table th {
    font-size: 12px;
    border: #000 1px solid;
}

#list table th:first-child {
    width: 11%;
}

#list table th:nth-child(2) {
    width: 12%;
}

#list table th:nth-child(3) {
    width: 8%;
}

#list table th:nth-child(4) {
    width: 12%;
}

#list table th:nth-child(5) {
    width: 15%;
}

#list table th:last-child {
    width: 42%;
}

#list table tr.done {
    background: #7d7d7d;
}

#list table td {
    padding: 10px 5px 5px;
    border-bottom: #000 1px solid;
    text-align: center;
}

#list table td select {
    width: 100%;
}

#list table td ul {
    display: flex;
    align-items: center;
    gap: 0 5px;
}

#list table td ul li a {
    font-size: 10px;
    color: #fff;
    width: 100px;
    border-radius: 5px;
    line-height: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

#list table td ul li:first-child a {
    background: #09bf37;
}

#list table td ul li:nth-child(2) a {
    background: #1cc2d5;
}

#list table td ul li:nth-child(3) a {
    background: #ff6d37;
}

#list table td ul li:last-child a {
    background: #555;
}

@media (max-width: 1280px) {
    #list .wrap {
        max-width: 100%;
        min-height: 100vh;
        margin: 0 auto;
        padding: 40px 20px;
    }
    
    #list h2 {
        font-size: 40px;
    }

    #list .attention {
        font-size: 28px;
        margin-top: 20px;
        text-align: center;
        position: relative;
        left: 0;
        top: 0;
    }

    #list #create a {
        font-size: 32px;
        width: 600px;
        margin: 30px auto 0;
    }

    #list .scroll_area {
        width: 100%;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    #list table {
        width: 1500px;
        margin-top: 60px;
    }
    
    #list table th {
        font-size: 28px;
    }
    
    #list table th:first-child,
    #list table th:nth-child(2),
    #list table th:nth-child(3),
    #list table th:nth-child(4),
    #list table th:nth-child(5) {
        width: auto;
    }
    
    #list table th:last-child {
        width: 460px;
    }
    
    #list table td {
        font-size: 24px;
        padding: 20px 5px 20px;
    }
    
    #list table td ul {
        width: 450px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    #list table td ul li a {
        font-size: 26px;
        width: 220px;
        line-height: 1.808;
    }
}

@media (max-width: 800px) {
    #list .wrap {
        padding: 5vw 2.5vw;
    }
    
    #list h2 {
        font-size: 5vw;
        padding-bottom: 0.625vw;
    }

    #list .attention {
        font-size: 3.5vw;
        margin-top: 2.5vw;
    }

    #list #create a {
        font-size: 4vw;
        width: 75vw;
        margin: 3.75vw auto 0;
        border-radius: 1.25vw;
    }

    #list table {
        width: 187.5vw;
        margin-top: 7.5vw;
    }
    
    #list table th {
        font-size: 3.5vw;
    }
    
    #list table th:last-child {
        width: 57.5vw;
    }
    
    #list table td {
        font-size: 3vw;
        padding: 2.5vw 0.625vw 2.5vw;
    }
    
    #list table td ul {
        width: 56.25vw;
        flex-wrap: wrap;
        gap: 1.25vw;
    }
    
    #list table td ul li a {
        font-size: 3.25vw;
        width: 27.5vw;
    }
}
/************ list ************/

/************ item_select ************/
#item_select .wrap {
    background: #fff;
    width: 100%;
    max-width: 1100px;
    min-height: 1200px;
    margin: 40px auto 0;
    padding: 50px 40px;
}

#item_select h2 {
    font-size: 30px;
    padding-bottom: 5px;
    border-bottom: #000 1px solid;
}

#item_select .part {
    margin-top: 30px;
    padding: 10px 0;
    border-bottom: #ca0a37 1px solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#item_select .part h3 {
    font-size: 24px;
    padding-left: 10px;
}

#item_select .part select {
    font-size: 14px;
    width: 250px;
    height: 50px;
    margin-right: 10px;
    padding: 0 10px;
}

#item_select table {
    width: 100%;
    margin-top: 10px;
    padding: 0 10px;
    border-collapse: collapse;
}

#item_select table tr {
    border-bottom: #000 1px solid;
}

#item_select table tr td {
    padding: 20px 0 5px;
}

#item_select table tr td:first-child {
    width: 70px;
    padding-left: 10px;
}

#item_select table tr td:first-child a:nth-child(n+2) {
    display: none;
}

#item_select table tr td:nth-child(2) {
    padding-left: 10px;
}

#item_select table tr td:nth-child(3) {
    width: 130px;
    padding-left: 20px;
}

#item_select table tr td:nth-child(3) select {
    width: 50px;
    height: 30px;
}

#item_select table tr td:nth-child(4) {
    font-size: 24px;
    font-weight: bold;
    color: #ff4600;
    padding-left: 30px;
    text-align: right;
}

#item_select table tr td:last-child {
    padding: 20px 10px 5px 20px;
}

#item_select table tr td .discount {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    background: #ff0303;
    width: 100px;
    text-align: center;
    line-height: 1.308;
}

#item_select table tr td .name {
    margin-top: 10px;
}

#item_select table tr td .add {
    font-weight: bold;
    color: #fff;
    background: #23923f;
    width: 100px;
    border-radius: 10px;
    text-align: center;
    line-height: 2.125;
    cursor: pointer;
}

#item_select #result .box {
    margin-top: 40px;
    padding: 40px 30px;
    border: #000 4px solid;
}

#item_select #result .box ul {
    margin-top: 10px;
    display: flex;
    align-items: flex-end;
}

#item_select #result .box ul li:first-child {
    width: 70%;
    padding-left: 10px;
}

#item_select #result .box ul li:nth-child(2) {
    width: 80px;
    margin-right: auto;
    padding-left: 20px;
}

#item_select #result .box ul li:nth-child(3) {
    color: #ff4600;
    padding-left: 20px;
}

#item_select #result .box ul li:last-child {
    padding-left: 20px;
}

#item_select #result .box ul li:last-child .remove {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background: #555;
    width: 80px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.667;
    cursor: pointer;
}

#item_select #result .box .sum {
    margin-top: 20px;
    padding-top: 10px;
    border-top: #000 1px solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#item_select #result .box .sum p {
    padding-left: 10px;
}

#item_select #result .box .sum #amount {
    font-size: 32px;
    font-weight: bold;
    color: #ff4600;
    padding-right: 10px;
}

#lightbox {
    height: 100vh;
    top: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
}

.lightboxOverlay {
    position: fixed !important;
}

.lb-data .lb-close,
.lb-dataContainer {
    display: none !important;
}

.lightbox .lb-image {
    border: none !important;
    border-radius: 0 !important;
}

@media (max-width: 1280px) {
    #item_select .wrap {
        max-width: 100%;
        min-height: 100vh;
        margin: 0 auto;
        padding: 40px 20px;
    }
    
    #item_select h2 {
        font-size: 40px;
    }
    
    #item_select .part {
        margin-top: 40px;
        padding: 0 0 10px;
        display: block;
    }
    
    #item_select .part h3 {
        font-size: 30px;
        padding-left: 10px;
    }
    
    #item_select .part select {
        font-size: 28px;
        width: 100%;
        height: 80px;
        margin: 10px 0 0;
        padding: 0 10px;
    }
    
    #item_select table {
        margin-top: 10px;
        padding: 0;
    }

    #item_select table tr {
        width: 760px;
        margin: 0 auto;
        border: none;
        display: table;
        position: relative;
    }

    #item_select table tr::after {
        content: '';
        background: #000;
        width: calc(100vw - 40px);
        max-width: 1280px;
        height: 1px;
        display: block;
        position: absolute;
        left: calc((-100vw + 800px) / 2);
        bottom: 0;
    }
    
    #item_select table tr td {
        padding: 0;
    }
    
    #item_select table tr td:first-child {
        width: 200px;
        padding: 20px 0 0 20px;
        vertical-align: top;
    }

    #item_select table tr td:first-child img {
        width: 100%;
    }
    
    #item_select table tr td:nth-child(2) {
        font-size: 26px;
        width: 100%;
        margin-top: 20px;
        padding-left: 30px;
        display: block;
        float: left;
        clear: both;
    }
    
    #item_select table tr td:nth-child(3) {
        font-size: 28px;
        width: 100%;
        margin-top: 20px;
        padding-left: 30px;
        display: block;
        float: left;
        clear: both;
    }
    
    #item_select table tr td:nth-child(3) select {
        width: 160px;
        height: 60px;
    }
    
    #item_select table tr td:nth-child(4) {
        font-size: 36px;
        margin-top: 10px;
        padding: 0 0 140px 30px;
        text-align: left;
        display: block;
        float: left;
        clear: both;
    }
    
    #item_select table tr td:last-child {
        width: 100%;
        padding: 0;
        position: absolute;
        left: 0;
        bottom: 30px;
    }

    #item_select table tr td .discount {
        font-size: 24px;
        width: 120px;
        line-height: 1.458;
    }

    #item_select table tr td .name {
        margin-top: 5px;
    }
    
    #item_select table tr td .add {
        font-size: 32px;
        color: #fff;
        background: #23923f;
        width: 600px;
        margin: 0 auto;
        text-align: center;
        line-height: 2.5;
    }
    
    #item_select #result .box {
        margin-top: 40px;
        padding: 0 30px 30px;
    }
    
    #item_select #result .box ul {
        margin-top: 30px;
        flex-wrap: wrap;
    }
    
    #item_select #result .box ul li:first-child {
        font-size: 26px;
        width: 100%;
        padding-left: 0;
    }
    
    #item_select #result .box ul li:nth-child(2) {
        font-size: 28px;
        width: 100%;
        margin: 10px 0 0;
        padding-left: 0;
    }
    
    #item_select #result .box ul li:nth-child(3) {
        font-size: 36px;
        font-weight: bold;
        width: 100%;
        margin-top: 10px;
        padding-left: 0;
    }
    
    #item_select #result .box ul li:last-child {
        width: 100%;
        margin-top: 20px;
        padding-left: 0;
    }
    
    #item_select #result .box ul li:last-child .remove {
        font-size: 32px;
        width: 600px;
        margin: 0 auto;
        line-height: 2.5;
    }
    
    #item_select #result .box .sum {
        margin-top: 40px;
        padding-top: 10px;
        display: flex;
        flex-wrap: wrap;
    }
    
    #item_select #result .box .sum p {
        font-size: 40px;
        width: 100%;
        padding-left: 0;
        text-align: center;
    }
    
    #item_select #result .box .sum #amount {
        font-size: 50px;
        font-weight: bold;
        color: #ff4600;
        width: 100%;
        padding-right: 0;
        text-align: center;
    }
}

@media (max-width: 800px) {
    #item_select .wrap {
        padding: 5vw 2.5vw;
    }
    
    #item_select h2 {
        font-size: 5vw;
        padding-bottom: 0.625vw;
    }
    
    #item_select .part {
        margin-top: 5vw;
        padding: 0 0 1.25vw;
    }
    
    #item_select .part h3 {
        font-size: 3.75vw;
        padding-left: 1.25vw;
    }
    
    #item_select .part select {
        font-size: 3.5vw;
        height: 10vw;
        margin: 1.25vw 0 0;
        padding: 0 1.25vw;
    }
    
    #item_select table {
        margin-top: 1.25vw;
    }

    #item_select table tr {
        width: 95vw;
    }

    #item_select table tr::after {
        width: calc(100vw - 5vw);
        max-width: 800px;
        left: 0;
    }
    
    #item_select table tr td:first-child {
        width: 25vw;
        padding: 2.5vw 0 0 2.5vw;
    }

    #item_select table tr td:nth-child(2) {
        font-size: 3.25vw;
        margin-top: 2.5vw;
        padding-left: 3.75vw;
    }
    
    #item_select table tr td:nth-child(3) {
        font-size: 3.5vw;
        margin-top: 2.5vw;
        padding-left: 3.75vw;
    }
    
    #item_select table tr td:nth-child(3) select {
        width: 20vw;
        height: 7.5vw;
    }
    
    #item_select table tr td:nth-child(4) {
        font-size: 4.5vw;
        margin-top: 1.25vw;
        padding: 0 0 17.5vw 3.75vw;
    }
    
    #item_select table tr td:last-child {
        bottom: 3.75vw
    }

    #item_select table tr td .discount {
        font-size: 3vw;
        width: 15vw;
    }

    #item_select table tr td .name {
        margin-top: 0.625vw;
    }
    
    #item_select table tr td .add {
        font-size: 4vw;
        width: 75vw;
        border-radius: 1.25vw;
    }
    
    #item_select #result .box {
        margin-top: 5vw;
        padding: 0 3.75vw 3.75vw;
        border: #000 0.5vw solid;
    }
    
    #item_select #result .box ul {
        margin-top: 3.75vw;
    }
    
    #item_select #result .box ul li:first-child {
        font-size: 3.25vw;
    }
    
    #item_select #result .box ul li:nth-child(2) {
        font-size: 3.5vw;
        width: 100%;
        margin: 1.25vw 0 0;
        padding-left: 0;
    }
    
    #item_select #result .box ul li:nth-child(3) {
        font-size: 4.5vw;
        margin-top: 1.25vw;
    }
    
    #item_select #result .box ul li:last-child {
        margin-top: 2.5vw;
    }
    
    #item_select #result .box ul li:last-child .remove {
        font-size: 4vw;
        width: 75vw;
        border-radius: 1.25vw;
    }
    
    #item_select #result .box .sum {
        margin-top: 5vw;
        padding-top: 1.25vw;
    }
    
    #item_select #result .box .sum p {
        font-size: 5vw;
    }
    
    #item_select #result .box .sum #amount {
        font-size: 6.25vw;
    }
}
/************ item_select ************/

/************ installation_image ************/
#installation_image .wrap {
    background: #fff;
    width: 100%;
    max-width: 1100px;
    min-height: 1200px;
    margin: 40px auto 0;
    padding: 50px 40px;
}

#installation_image h2 {
    font-size: 30px;
    padding-bottom: 5px;
    border-bottom: #000 1px solid;
}

#installation_image .sub_title {
    width: 98%;
    margin: 40px auto 0;
    padding-bottom: 10px;
    border-bottom: #ca0a37 1px solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#installation_image .sub_title h3 {
    font-size: 24px;
    font-weight: 500;
    padding-left: 10px;
}

#installation_image .sub_title p {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #ca0a37;
    width: 100px;
    border-radius: 5px;
    line-height: 2.143;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#installation_image .box {
    padding: 40px 20px;
    border-bottom: #736b6b 1px solid;
}

#installation_image .box .item {
    display: flex;
    align-items: center;
    gap: 0 10px;
}

#installation_image .box .item img {
    width: 60px;
}

#installation_image .box .inner {
    margin-top: 20px;
    display: flex;
}

#installation_image .box .inner .preview {
    display: flex;
    gap: 0 20px;
}

#installation_image .box .inner .preview .one_image img {
    width: 105px;
    cursor: pointer;
}

#installation_image .box .inner .preview .one_image .remove {
    font-weight: bold;
    color: #fff;
    background: #555; 
    width: 100px;
    margin: 10px auto 0;
    border-radius: 10px;
    text-align: center;
    line-height: 1.875;
    cursor: pointer;
}

#installation_image .box .inner label {
    order: 1;
}

#installation_image .box .inner label:nth-child(n+2) {
    display: none;
}

#installation_image .box .inner label:nth-child(15) {
    pointer-events: none;
}

#installation_image .box .inner label:nth-child(15) img {
    filter: grayscale(100%);
}

#installation_image .box .inner label img {
    width: 105px;
}

#installation_image #gray_display {
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    max-width: 100% !important;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
}
  
#gray_display img {
    margin: auto;
    max-width: 420px;
    height: 420px;
    max-height: 420px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: contain;
}

@media (max-width: 1280px) {
    #installation_image .wrap {
        max-width: 100%;
        min-height: 100vh;
        margin: 0 auto;
        padding: 40px 20px;
    }
    
    #installation_image h2 {
        font-size: 40px;
        padding-bottom: 5px;
    }
    
    #installation_image .sub_title {
        width: 100%;
        padding-bottom: 5px;
    }
    
    #installation_image .sub_title h3 {
        font-size: 30px;
    }
    
    #installation_image .sub_title p {
        font-size: 26px;
        width: 150px;
        line-height: 2.308;
    }

    #installation_image .sub_title p svg {
        width: 30px !important;
        height: 30px !important;
    }
    
    #installation_image .box {
        padding: 50px 20px;
    }
    
    #installation_image .box .item {
        font-size: 26px;
        gap: 0 30px;
    }

    #installation_image .box .item img {
        width: 100px;
    }
    
    #installation_image .box .inner .preview {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    #installation_image .box .inner .preview .one_image img {
        width: 150px;
    }
    
    #installation_image .box .inner .preview .one_image .remove {
        font-size: 24px;
        width: 150px;
        margin-top: 15px;
        line-height: 1.667;
    }
    
    #installation_image .box .inner label img {
        width: 150px;
    }
}

@media (max-width: 800px) {
    #installation_image .wrap {
        padding: 5vw 2.5vw;
    }
    
    #installation_image h2 {
        font-size: 5vw;
        padding-bottom: 0.625vw;
    }
    
    #installation_image .sub_title {
        margin: 5vw auto 0;
        padding-bottom: 0.625vw;
    }
    
    #installation_image .sub_title h3 {
        font-size: 3.75vw;
        padding-left: 1.25vw;
    }
    
    #installation_image .sub_title p {
        font-size: 3.25vw;
        width: 18.75vw;
        border-radius: 0.625vw;
    }
    
    #installation_image .sub_title p svg {
        width: 3.75vw !important;
        height: 3.75vw !important;
    }
    
    #installation_image .box {
        padding: 6.25vw 2.5vw;
    }
    
    #installation_image .box .item {
        font-size: 3.25vw;
        gap: 0 3.75vw;
    }

    #installation_image .box .item img {
        width: 12.5vw;
    }
    
    #installation_image .box .inner {
        margin-top: 2.5vw;
    }
    
    #installation_image .box .inner .preview {
        gap: 2.5vw;
    }
    
    #installation_image .box .inner .preview .one_image img {
        width: 18.75vw;
    }
    
    #installation_image .box .inner .preview .one_image .remove {
        font-size: 3vw;
        width: 18.75vw;
        margin-top: 1.875vw;
        border-radius: 1.25vw;
    }
    
    #installation_image .box .inner label img {
        width: 18.75vw;
    }

    #gray_display img {
        max-width: 52.5vw;
        height: 52.5vw;
    }
}
/************ installation_image ************/

/************ quotation ************/
#quotation .wrap {
    background: #fff;
    width: 100%;
    max-width: 1100px;
    min-height: 1200px;
    margin: 40px auto 0;
    padding: 50px 40px;
}

#quotation h2 {
    font-size: 30px;
    padding-bottom: 5px;
    border-bottom: #000 1px solid;
}

#quotation h3 {
    font-size: 32px;
    margin-top: 60px;
    text-align: center;
}

#quotation input[type="text"] {
    width: 100%;
    height: 30px;
    border: #000 1px solid;
}

#quotation .left input {
    font-size: 18px;
    font-weight: normal;
    width: calc(100% - 40px);
}

#quotation .right input {
    color: #000;
    background: #fff;
    width: calc(53% - 20px);
    height: 30px;
    border: #000 1px solid;
}

#quotation .data {
    width: 744px;
    margin: 50px auto 0;
    display: flex;
    justify-content: space-between;
}

#quotation section:nth-child(n+2) .data {
    margin-top: 0;
}

#quotation .data .left {
    width: 50%;
}

#quotation .data .name {
    font-size: 24px;
    font-weight: bold;
}

#quotation .data .name span {
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
}

#quotation .data .text {
    font-size: 17px;
    margin-top: 20px;
}

#quotation .data .calculation {
    font-size: 14px;
    width: 95%;
    margin-top: 30px;
    border-collapse: collapse;
}

#quotation .data .calculation tr th {
    font-weight: normal;
    padding: 5px;
    border: #000 1px solid;
}

#quotation .data .calculation tr td {
    padding: 5px;
    border: #000 1px solid;
    text-align: right;
}

#quotation .data .total {
    font-size: 14px;
    font-weight: bold;
    margin-top: 30px;
    padding-left: 10px;
}

#quotation .data .total span {
    font-size: 18px;
    margin-right: 30px;
    vertical-align: baseline;
    display: inline-block;
}

#quotation .data .right {
    width: 42%;
    position: relative;
}

#quotation .data .date {
    font-size: 18px;
}

#quotation .data .number {
    font-size: 18px;
    margin-top: 10px;
}

#quotation .data .date span:first-child,
#quotation .data .number span:first-child {
    width: 45%;
    display: inline-block;
    position: relative;
}

#quotation .data .date span:first-child::after,
#quotation .data .number span:first-child::after {
    content: ':';
    position: absolute;
    right: 0;
    top: 0;
}

#quotation .data .date span:last-child,
#quotation .data .number span:last-child {
    padding-left: 20px;
}

#quotation .data .c_name {
    font-size: 18px;
    font-weight: bold;
    margin-top: 25px;
}

#quotation .data .address {
    font-size: 18px;
    margin-top: 5px;
}

#quotation .data .manager,
#quotation .data .tel {
    font-size: 18px;
    margin-top: 5px;
}

#quotation .data .company_seal {
    max-width: 100px;
    position: absolute;
    right: 0;
    bottom: 30px;
}

#quotation .data .company_seal img {
    width: 100%;
}

#quotation .table {
    font-family: 'Inter', sans-serif;
    width: 744px;
    margin: 30px auto 0;
}

#quotation .table table {
    font-size: 14px;
    width: 100%;
    border-collapse: collapse;
}

#quotation .table table tr th {
    font-weight: normal;
    padding: 5px;
    border: #000 1px solid;
}

#quotation .table table tr th:first-child {
    width: 45%;
}

#quotation .table table tr td {
    padding: 5px;
    border: #000 1px solid;
}

#quotation .table table tr td::before {
    content: '';
    height: 21px;
    display: block;
    float: left;
}

#quotation .table table tr td:nth-child(2),
#quotation .table table tr td:nth-child(3) {
    width: 8%;
    text-align: center;
}

#quotation .table table tr td:nth-child(4),
#quotation .table table tr td:nth-child(5) {
    text-align: right;
}

#quotation .table table tr td:nth-child(2) input,
#quotation .table table tr td:nth-child(3) input {
    text-align: center;
}

#quotation .table table tr td:nth-child(4) input,
#quotation .table table tr td:nth-child(5) input {
    text-align: right;
}

#quotation .table table tr td .remove {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background: #555;
    width: 60px;
    border-radius: 5px;
    text-align: center;
    line-height: 1.667;
    cursor: pointer;
}

#quotation .table .add {
    font-weight: bold;
    color: #fff;
    background: #23923f;
    width: 100px;
    margin-top: 15px;
    border-radius: 5px;
    text-align: center;
    line-height: 1.875;
    cursor: pointer;
}

#quotation .remarks {
    font-family: 'Inter', sans-serif;
    width: 744px;
    margin: 50px auto 0;
}

#quotation .remarks h4 {
    font-size: 14px;
    font-weight: normal;
    padding-left: 10px;
}

#quotation .remarks .text {
    font-size: 14px;
    margin-top: 10px;
}

#quotation .remarks .text p {
    height: 120px;
    border: #000 1px solid;
    padding: 10px 15px;
}

@media (max-width: 1280px) {
    #quotation {
        width: 100vw;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }

    #quotation .wrap {
        width: 760px;
        min-height: 100vh;
        margin: 0 auto;
        padding: 40px 20px;
    }
    
    #quotation h2 {
        font-size: 40px;
        padding-bottom: 5px;
    }
    
    #quotation .data {
        width: 100%;
        max-width: 760px;
        margin: 40px auto 0;
    }
    
    #quotation .data .text {
        font-size: 18px;
        margin-top: 10px;
    }
    
    #quotation .data .c_name {
        margin-top: 30px;
    }
    
    #quotation .table {
        width: 720px;
    }
    
    #quotation .table table {
        font-size: 16px;
    }

    #quotation .table table tr th:nth-child(2),
    #quotation .table table tr th:nth-child(3) {
        width: 10%;
    }
    
    #quotation .table table tr td::before {
        content: '';
        height: 21px;
        display: block;
        float: left;
    }
    
    #quotation .table .add {
        font-size: 32px;
        width: 600px;
        margin: 50px auto 0;
        border-radius: 10px;
        line-height: 2.5;
    }
    
    #quotation .remarks {
        width: 720px;
        margin: 30px auto 0;
    }
    
    #quotation .remarks .text {
        font-size: 16px;
    }
}

@media (max-width: 800px) {
    #quotation .table .add {
        font-size: 4vw;
        width: 75vw;
        margin: 6.25vw 0 0;
        border-radius: 1.25vw;
        position: sticky;
        left: calc((40vw - 60px) / 2);
    }

    #quotation .btn_box {
        width: calc(100vw - 40px);
        position: sticky;
        left: calc((25vw - 60px) / 2);
    }

    #quotation.complete .remarks h4 {
        font-size: 1.75vw;
        padding-left: 1.25vw;
    }
}
/************ quotation ************/

/************ quotation_complete ************/
#quotation.complete {
    width: 100%;
    overflow: visible;
}

#quotation.complete section {
    display: flex;
    justify-content: center;
    gap: 0 40px;
}

#quotation.complete form {
    order: 1;
}

#quotation.complete .wrap {
    background: #fff;
    width: 100%;
    height: 297mm;
    min-height: auto;
    margin: 80px auto 0;
    padding: 40px;
}

#quotation.complete h3 {
    margin-top: 0;
}

#quotation.complete .data {
    width: 100%;
}

#quotation.complete .wrap:nth-of-type(n+2) .data {
    margin-top: 0;
}

#quotation.complete .data .name {
    font-size: 18px;
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 0 100px;
}

#quotation.complete .data .name span {
    margin-left: 0;
}

#quotation.complete .data .company_seal {
    bottom: 50px;
}

#quotation.complete .table {
    width: 100%;
}

#quotation.complete .remarks {
    width: 100%;
}

#quotation.complete .detail {
    width: 200px;
    margin-top: 60px;
    order: 2;
}

#quotation.complete .detail div:nth-child(n+2) {
    margin-top: 20px;
}

#quotation.complete .detail div h3 {
    font-size: 24px;
    margin-top: 0;
    text-align: left;
}

@media print {
    #quotation.complete .wrap {
        width: 210mm !important;
        height: 296.5mm !important;
        margin-top: 0 !important;
        padding: 15mm !important;
        page-break-after: auto;
    }

    #quotation.complete .btn_box,
    #quotation.complete .detail {
        display: none !important;
    }
}

@media (max-width: 1280px) {
    #quotation.complete section {
        display: block;
    }
    
    #quotation.complete .wrap {
        max-width: 800px;
        margin: 0 auto;
        padding: 50px 20px;
    }
    
    #quotation.complete h3 {
        margin-top: 0;
    }
    
    #quotation.complete .data .name {
        gap: 0 150px;
    }
    
    #quotation.complete .detail {
        width: 800px;
        margin: 20px auto 30px;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
    }
    
    #quotation.complete .detail div:nth-child(n+2) {
        margin-top: 0;
    }
    
    #quotation.complete .detail div h3 {
        font-size: 32px;
        margin-top: 0;
        text-align: left;
    }

    #quotation.complete .detail div p {
        font-size: 24px;
    }
}

@media (max-width: 800px) {
    #quotation.complete .wrap {
        height: 195vw;
        padding: 5vw 2.5vw;
    }

    #quotation.complete h3 {
        font-size: 4vw;
    }

    #quotation.complete .data {
        margin-top: 5vw;
    }

    #quotation.complete .data .name {
        font-size: 2.25vw;
        gap: 0 22.5vw;
    }

    #quotation.complete .data .name span {
        font-size: 3vw;
    }

    #quotation.complete .data .text {
        font-size: 2.25vw;
        margin-top: 1.25vw;
    }

    #quotation.complete .data .calculation {
        font-size: 1.75vw;
        margin-top: 3.75vw;
    }

    #quotation.complete .data .calculation tr th {
        padding: 0.625vw;
    }

    #quotation.complete .data .calculation tr td {
        padding: 0.625vw;
    }

    #quotation.complete .data .total {
        font-size: 1.75vw;
        margin-top: 3.75vw;
        padding-left: 1.25vw;
    }

    #quotation.complete .data .total span {
        font-size: 2.25vw;
        margin-right: 3.75vw;
    }

    #quotation.complete .data .date {
        font-size: 2.25vw;
    }

    #quotation.complete .data .number {
        font-size: 2.25vw;
        margin-top: 1.25vw;
    }

    #quotation.complete .data .date span:last-child,
    #quotation.complete .data .number span:last-child {
        padding-left: 2.5vw;
    }

    #quotation.complete .data .c_name {
        font-size: 2.25vw;
        margin-top: 3.75vw;
    }

    #quotation.complete .data .address {
        font-size: 2.25vw;
        margin-top: 0.625vw;
    }

    #quotation.complete .data .manager,
    #quotation.complete .data .tel {
        font-size: 2.25vw;
        margin-top: 0.625vw;
    }

    #quotation.complete .data .company_seal {
        bottom: 6.25vw;
    }

    #quotation.complete .data .company_seal img {
        width: 12.5vw;
    }

    #quotation.complete .table {
        margin-top: 3.75vw;
    }

    #quotation.complete .table table {
        font-size: 2vw;
    }

    #quotation.complete .table table tr th {
        padding: 0.625vw;
    }

    #quotation.complete .table table tr td {
        padding: 0.625vw;
    }

    #quotation.complete .detail {
        width: 100%;
        margin: 2.5vw 0 3.75vw;
        padding: 0 2.5vw;
    }

    #quotation.complete .detail div h3 {
        font-size: 4vw;
    }

    #quotation.complete .detail div p {
        font-size: 3vw;
    }
}
/************ quotation_complete ************/

/************ mypage ************/
#mypage .wrap {
    background: #fff;
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 50px 40px;
}

#mypage .box:nth-of-type(n+2) {
    margin-top: 60px;
}

#mypage .box .subtitle {
    padding-bottom: 5px;
    border-bottom: #000 1px solid;
}

#mypage .box h3 {
    font-size: 30px;
}

#mypage .box dl {
    margin-top: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#mypage .box dl dt {
    font-size: 18px;
    width: calc(100% - 775px);
}

#mypage .box dl dd {
    width: 775px;
}

#mypage .box dl dt:nth-of-type(n+2),
#mypage .box dl dd:nth-of-type(n+2) {
    margin-top: 15px;
}

#mypage .box dl dd label[for="company_seal"] {
    font-weight: bold;
    color: #fff;
    background: #6edbdc;
    width: 200px;
    border-radius: 10px;
    text-align: center;
    line-height: 3.125;
    display: block;
    cursor: pointer;
}

#mypage .box .thumb {
    width: 200px;
    margin: 15px 0 0 calc(100% - 775px);
    padding: 50px 0;
    border: #d1d1d1 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#mypage .box .thumb img {
    width: 100px;
}

#mypage .box .thumb img::after {
    content: '';
    width: 100%;
    height: 100%;
    border: #d1d1d1 1px solid;
    position: absolute;
    left: 0;
    top: 0;
}

#mypage .add {
    font-weight: bold;
    color: #fff;
    background: #23923f;
    width: 430px;
    margin: 50px auto 0;
    border-radius: 10px;
    text-align: center;
    line-height: 3.125;
    cursor: pointer;
}

#mypage .box .subtitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#mypage .box .subtitle .remove {
    font-weight: bold;
    color: #fff;
    background: #000;
    width: 200px;
    border-radius: 10px;
    text-align: center;
    line-height: 3.125;
    cursor: pointer;
}

@media (max-width: 1280px) {
    #mypage .wrap {
        max-width: 100%;
        margin: 0 auto;
        padding: 40px 20px;
    }
    
    #mypage .box:nth-of-type(n+2) {
        margin-top: 50px;
    }
    
    #mypage .box h3 {
        font-size: 40px;
    }
    
    #mypage .box dl {
        margin-top: 30px;
    }
    
    #mypage .box dl dt {
        font-size: 32px;
        width: 100%;
    }
    
    #mypage .box dl dd {
        width: 100%;
    }
    
    #mypage .box dl dt:nth-of-type(n+2) {
        margin-top: 10px;
    }

    #mypage .box dl dd:nth-of-type(n+2) {
        margin-top: 5px;
    }
    
    #mypage .box dl dd label[for="company_seal"] {
        font-size: 32px;
        width: 100%;
        line-height: 2.5;
    }
    
    #mypage .box .thumb {
        width: 600px;
        margin: 30px auto 0;
        padding: 150px 0;
    }
    
    #mypage .box .thumb img {
        width: 300px;
    }
    
    #mypage .add {
        font-size: 32px;
        width: 600px;
        margin: 50px auto 0;
        line-height: 2.5;
    }
    
    #mypage .box .subtitle .remove {
        font-size: 32px;
        width: 300px;
        line-height: 2.5;
    }
}

@media (max-width: 800px) {
    #mypage .wrap {
        padding: 5vw 2.5vw;
    }
    
    #mypage .box:nth-of-type(n+2) {
        margin-top: 6.25vw;
    }
    
    #mypage .box .subtitle {
        padding-bottom: 0.625vw;
    }
    
    #mypage .box h3 {
        font-size: 5vw;
    }
    
    #mypage .box dl {
        margin-top: 3.75vw;
    }
    
    #mypage .box dl dt {
        font-size: 4vw;
        width: 100%;
    }
    
    #mypage .box dl dd {
        width: 100%;
    }
    
    #mypage .box dl dt:nth-of-type(n+2) {
        margin-top: 1.25vw;
    }
    
    #mypage .box dl dd:nth-of-type(n+2) {
        margin-top: 0.625vw;
    }
    
    #mypage .box dl dd label[for="company_seal"] {
        font-size: 4vw;
        border-radius: 1.25vw;
    }
    
    #mypage .box .thumb {
        width: 75vw;
        margin: 3.75vw auto 0;
        padding: 18.75vw 0;
    }
    
    #mypage .box .thumb img {
        width: 37.5vw;
    }
    
    #mypage .add {
        font-size: 4vw;
        width: 75vw;
        margin: 6.25vw auto 0;
        border-radius: 1.25vw;
    }
    
    #mypage .box .subtitle .remove {
        font-size: 4vw;
        width: 37.5vw;
        border-radius: 1.25vw;
    }
}
/************ mypage ************/