@charset "utf-8";

/* sec-tech CSS
---------------------------------- */
.sec-tech {
    overflow: hidden;
}

.sec-tech .page-sec-head .sec-title {
    letter-spacing: 0.028em;
}

.sec-tech .category {
    position: relative;
}

.sec-tech .category::before {
    content: "";
    display: block;
    background-color: var(--wht);
    border-radius: 10px 0 0 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
}

.sec-tech .category-inner {
    width: 100%;
    display: flex;
    position: relative;
    z-index: 1;
}

.sec-tech .category-visual {
    position: relative;
    width: min(28%, 360px);
    min-width: 280px;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
}

.sec-tech .category-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgb(255 255 255 / 40%);
    backdrop-filter: blur(4px);
}

.medi.of-wrap.of-cover img {
    object-position: right;
}

.eyew.of-wrap.of-cover img {
    object-position: left;
}

.sec-tech .category-caption {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
}

.sec-tech .category-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    height: 30px;
    padding: 0 18px;
    border-radius: 999px;
    background-color: var(--wht);
    color: var(--blu);
    font-size: var(--f-sz14);
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--f-en);
    font-weight: 500;
}

.sec-tech .category-industry {
    display: block;
    text-align: center;
    color: var(--blu);
    text-shadow: 0 0 10px rgb(255 255 255 / 50%);
    font-size: var(--f-sz32);
    line-height: 1.3;
    font-weight: bold;
}

.sec-tech .category-body {
    padding: var(--mp60) 0 var(--mp50) var(--mp70);
    flex: 1;
}

.sec-tech .category-title {
    font-size: var(--f-sz20);
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: var(--mp20);
    color: var(--blk);
}

.sec-tech .content-area {
    padding-left: var(--mp20);
}

.sec-tech .category-lists {
    padding-bottom: var(--mp40);
}

.sec-tech .category-lists .category-list {
    display: grid;
    gap: 0.75rem 3.8rem;
    padding-bottom: 1.5rem;
}

.sec-tech .category-lists--2 .category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sec-tech .category-lists--3 .category-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sec-tech .category-list li {
    position: relative;
    padding-left: 1em;
    font-size: var(--f-sz18);
    line-height: normal;
}

.sec-tech .category-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--sblu);
}

.sec-tech .category-etc {
    font-size: var(--f-sz18);
    line-height: 1.5;
    color: var(--blu);
    font-family: var(--f-ind);
}

.sec-tech .category-thumbs {
    display: flex;
    gap: 10px;
    margin-bottom: var(--mp30);
    flex-wrap: wrap;
}

.sec-tech .category-thumb {
    width: calc((100% - 30px) / 4);
    aspect-ratio: 201 / 134;
    border-radius: 5px;
    background-color: rgb(0 0 0 / 6%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-tech .category-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-tech .category-thumb.is-empty span {
    display: block;
    width: min(100%, 9em);
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--red);
    text-align: center;
}

.sec-tech .category-action {
    display: flex;
    justify-content: flex-end;
}

.sec-tech .btn .btn-txt {
    font-family: var(--f-jp);
    font-size: var(--f-sz16);
    font-weight: 500;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .sec-tech .category-body {
        padding: var(--mp40) 0 var(--mp40) var(--mp50);
    }
}

@media (max-width: 991px) {
    .sec-tech .category-lists--2 .category-list {
        grid-template-columns: 1fr;
    }

    .sec-tech .category-lists--3 .category-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sec-tech .category-thumb {
        width: calc((100% - 10px) / 2);
    }
}

@media (max-width: 767px) {
    .sec-tech .category-inner {
        flex-flow: column;
    }

    .sec-tech .category-visual {
        width: 100%;
        height: 160px;
    }

    .sec-tech .category-body {
        padding: var(--mp40) 0 var(--mp50) 5vw;
    }

    .sec-tech .category-action {
        justify-content: center;
    }

    .sec-tech .category-thumbs {
        gap: 5px;
    }

    .sec-tech .category-thumb {
        width: calc((100% - 15px) / 4);
    }
}

@media (max-width: 480px) {
    .sec-tech .category-lists--3 .category-list {
        grid-template-columns: 1fr;
    }

    .sec-tech .content-area {
        padding-left: 0;
    }

    .sec-tech .category-thumb {
        width: calc((100% - 5px) / 2);
    }
}

/* sec-ourservice CSS
---------------------------------- */
.sec-ourservice .page-sec-head .sec-label {
    margin-bottom: 10px;
}

.sec-ourservice .content-area {
    position: relative;
}

.sec-ourservice .content-area::before {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background-color: var(--wht);
    border-radius: 10px 0 0 10px;
    position: absolute;
    top: 0;
    left: 0;
}

.sec-ourservice .content-area .inner {
    position: relative;
    z-index: 1;
    padding: var(--mp60) 0 var(--mp130) var(--mp60);
}

.sec-ourservice .organ-figure {
    min-height: 300px;
    overflow: hidden;
    aspect-ratio: 61 / 15;
    border-radius: 5px;
}

.sec-ourservice .specs-group {
    gap: var(--mp30) 0;
}

.sec-ourservice .specs-title {
    width: 26.8%;
}

.sec-ourservice .specs-title .title {
    position: relative;
    padding-left: 17px;
    white-space: nowrap;
}

.sec-ourservice .specs-title .title::before {
    content: "";
    display: block;
    left: 0;
    top: 0.25em;
    height: 1em;
    width: 2px;
    background-color: #2a00e5;
    position: absolute;
}

.sec-ourservice .specs-table {
    width: 73.2%;
}

.sec-ourservice .specs-desc {
    letter-spacing: 0;
}

.sec-ourservice .specs-image {
    width: 42.44%;
}

.sec-ourservice .image-frame {
    aspect-ratio: 5 / 3;
    overflow: hidden;
}

.txt-area:has(.specs-image) {
    gap: var(--mp30) 3.36%;
}

.txt-area:has(.specs-image) .dl-list {
    flex: 1;
    width: 54.2%;
}

.sec-ourservice .content-area.automation .inner {
    padding-bottom: var(--mp60);
}

.specs-action {
    justify-content: end;
}

.automation .section-head {
    align-items: end;
}

.automation .title-header {
    width: 360px;
}

.automation .lead {
    flex: 1;
}

.automation .grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 38px;
}

.automation .card-image {
    padding-bottom: 1.5rem;
}

.automation .image-frame {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.automation .card-title {
    position: relative;
    padding-left: 14px;
    font-size: var(--f-sz22);
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 8px;
}

.automation .card-title::before {
    content: "";
    position: absolute;
    top: 0.25em;
    bottom: 0.25em;
    left: 0;
    width: 2px;
    background-color: #2a00e5;
}

.automation .card-text {
    font-size: var(--f-sz15);
}

.specs-action .btn-style01 .btn-txt {
    font-family: var(--f-jp);
    font-size: var(--f-sz16);
    font-weight: 500;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .sec-ourservice .specs-group {
        flex-flow: column;
    }

    .sec-ourservice .specs-table {
        width: 100%;
    }

    .automation .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .automation .section-head {
        gap: 10px;
    }

    .automation .lead {
        flex: initial;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .sec-ourservice .content-area .inner {
        padding: var(--mp40) 0 var(--mp60) 5vw;
    }

    .txt-area:has(.specs-image) .dl-list {
        width: 100%;
    }

    .specs-action {
        justify-content: center;
    }

    .sec-ourservice .specs-image {
        width: 50%;
    }

    .sec-ourservice .organ-figure {
        min-height: 200px;
    }

    .automation .grid {
        gap: 30px 25px;
    }
}

@media (max-width: 640px) {
    .automation .inner {
        padding: var(--mp40) 0 var(--mp60) 5vw;
    }

    .automation .section-head {
        flex-flow: column;
        align-items: initial;
        gap: var(--mp20);
    }

    .automation .title-header {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .mat-size .sub-ttl {
        font-size: 5.8vw;
    }

    .mat-size .sub-sml {
        font-size: 4.5vw;
    }

    .txt-area:has(.specs-image) {
        flex-flow: column;
    }

    .sec-ourservice .specs-image {
        width: 100%;
    }

    .automation .grid {
        grid-template-columns: 1fr;
    }
}

/* sec-facilities CSS
---------------------------------- */
.sec-facilities {
    background-color: var(--vpl);
}

.sec-facilities .page-sec-head .sec-label {
    margin-bottom: 1rem;
}

.sec-facilities .lists {
    gap: 0 var(--mp50);
}

.sec-facilities .row {
    width: calc((100% - var(--mp50)) / 2);
    display: flex;
    gap: 0 2em;
    align-items: center;
    padding: 19px 0;
    border-top: 1px solid rgb(0 0 0 / 15%);
}

.sec-facilities .name {
    letter-spacing: 0;
    flex: 1;
}

.sec-facilities .count {
    letter-spacing: 0;
    width: auto;
}

.sec-facilities .row:nth-last-child(2),
.sec-facilities .row:last-child {
    border-bottom: 1px solid rgb(0 0 0 / 15%);
}

.sec-facilities .count {
    white-space: nowrap;
}

.sec-facilities .cards {
    gap: var(--mp40) var(--mp50);
}

.sec-facilities .card {
    width: calc((100% - var(--mp50)) / 2);
    display: flex;
    gap: var(--mp30);
    align-items: start;
}

.sec-facilities .card-image {
    aspect-ratio: 27/18;
    overflow: hidden;
    width: min(43%, 270px);
}

.sec-facilities .card-body {
    flex: 1;
}

.sec-facilities .card-title {
    position: relative;
    padding-left: 1.4rem;
    font-size: var(--f-sz22);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.sec-facilities .card-title::before {
    content: "";
    position: absolute;
    top: 0.25em;
    bottom: 0.25em;
    left: 0;
    width: 2px;
    background-color: var(--blu);
}

.sec-facilities .card-detail {
    list-style: none;
}

.sec-facilities .card-detail li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1em;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid rgb(0 0 0 / 15%);
    font-size: var(--f-sz15);
    line-height: 1.3;
}

.sec-facilities .card-detail li:last-child {
    border-bottom: 1px solid rgb(0 0 0 / 15%);
}

.sec-facilities .card-detail span:last-child {
    white-space: nowrap;
}

@media (max-width: 991px) {
    .sec-facilities .cards {
        padding-bottom: var(--mp80);
    }

    .sec-facilities .card {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .sec-facilities .row {
        width: 100%;
    }

    .sec-facilities .lists {
        gap: 0;
    }

    .sec-facilities .row:nth-last-child(2) {
        border-bottom: none;
    }
}
