@charset "UTF-8";
@import url(reset.css);
@font-face {
    font-family: "news-gothic";
    src: url("news-gothic-mt.ttf") format('truetype');
}
:root {
    --main-blue: #052A6B;
    --main-white: #FFFFFF;
    --text-gray: #333333;
    --bg-gray: #fcfcfc;
}
* html body {
    background: url(null) fixed;
    width: 100%;
}
html, body {
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    padding: 0;
    color: #2b2b2b;
    background-color: var(--main-white);
    font-family: "Noto Sans JP", sans-serif;
    animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 1s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
html {
    overflow-x: hidden;
}
a {
    color: #1c4e93;
    text-decoration: none;
}
a:hover {
    color: #1c4e93;
    text-decoration: underline;
}
.fade-in-item {
    opacity: 0;
    filter: blur(15px);
    transform: translateY(10px);
    transition:
        opacity 1.0s ease-out, filter 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, filter, transform;
}
.fade-in-item.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.mainvisual {
    position: relative;
    width: 100%;
    height: 70vh;
    background: url(../img/2026/equipment_mainvisal_01.webp) center right / cover no-repeat;
    margin-bottom: 120px;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.mainvisual h1 {
    position: absolute;
    top: 40px;
    margin: 0;
    z-index: 10;
    width: 180px;
}
.mainvisual h1 a {
    display: block;
    transition: opacity 0.3s;
}
.mainvisual h1 a:hover {
    opacity: 0.8;
}
.mainvisual h1 img {
    width: 100%;
    height: auto;
    display: block;
}
.mainvisual h2 {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 0.1em;
    z-index: 5;
}
.facility-section {
    padding: 0 0 120px;
    width: 100%;
}
.facility-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.facility-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 100px;
}
.hero-image {
    width: 55%;
}
.hero-image img {
    width: 100%;
    display: block;
}
.hero-text {
    width: 40%;
    padding-top: 10px;
}
.hero-title {
    font-size: 28px;
    color: var(--main-blue);
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 30px;
}
.hero-spec {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--text-gray);
}
.hero-desc p {
    font-size: 16px;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 20px;
}
.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.grid-item {
    width: 100%;
}
.item-image {
    margin: 0 0 15px 0;
    overflow: hidden;
}
.item-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.item-image:hover img {
    transform: scale(1.05);
}
.item-title {
    font-size: 18px;
    color: var(--main-blue);
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.4;
}
.item-title.center {
    text-align: center;
}
.item-note {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}
.product-box .box-image {
    border: 1px solid #eee;
    background-color: var(--main-white);
    padding: 20px;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
}
.product-box .box-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

footer {
    padding: 80px 0 40px;
    clear: both;
    color: var(--main-white);
    background-color: #404857;
}
footer .inner {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    margin: auto;
    width: 1000px;
    max-width: 90%;
}
footer .data {
    width: 400px;
    font-size: 15px;
    line-height: 1.4em;
}
footer .data h5 {
    margin-bottom: 50px;
}
footer .link {
    width: 300px;
}
footer .link ul {
    float: left;
    position: relative;
    width: calc((100% - 30px) / 2);
}
footer .link li {
    margin-bottom: 30px;
}
footer .link a {
    color: var(--main-white);
    font-size: 14px;
    text-decoration: none;
}
footer .link a:hover {
    text-decoration: underline;
}
footer .link ul:not(:first-child) {
    margin-left: 30px;
}
footer address {
    padding-top: 60px;
    width: 100%;
    font-size: 14px;
    text-align: center;
}
@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    footer .inner {
        flex-direction: column;
        padding: 0 15px;
    }
    footer .data {
        width: 100%;
        text-align: center;
    }
    footer .data h5 {
        margin-bottom: 30px;
    }
    footer .link {
        display: none;
    }
    footer address {
        width: 100%;
    }
}

#pagetop {
    position: fixed;
    right: 5px;
    bottom: 100px;
    z-index: 1000;
}
#pagetop a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .facility-section {
        padding: 0 0 40px;
        margin: 0 auto 60px;
        width: 90%;
        border-bottom: 1px solid #efefef;
    }
    .noneborder {
        padding: 0;
        border-bottom: none;
    }
    .facility-inner {
        padding: 0;
        box-sizing: border-box;
    }
    .mainvisual {
        height: 40vh;
        min-height: 300px;
        background-position: center center;
        margin-bottom: 60px;
    }
    .mainvisual h1 {
        width: 120px;
        top: 20px;
    }
    .mainvisual h2 {
        font-size: 32px;
    }
    .facility-hero {
        flex-direction: column;
        margin-bottom: 60px;
    }
    .hero-image {
        width: 100%;
        margin-bottom: 20px;
    }
    .hero-text {
        width: 100%;
        padding-top: 0;
    }
    .hero-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .hero-spec {
        font-size: 14px;
        line-height: 1.4;
        font-weight: 400;
        margin-bottom: 10px;
    }
    .hero-desc p {
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 0;
    }
    .facility-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 0;
    }
    .grid-item {
        margin-bottom: 10px;
    }
    .item-image {
        margin-bottom: 15px;
    }
    .item-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .item-note {
        font-size: 14px;
        color: #666;
    }
    #pagetop {
        position: fixed;
        right: 18px;
        bottom: 90px;
        z-index: 1000;
    }
    #pagetop img {
        width: 40px;
    }
}