/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: #ffffff;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    pointer-events: none;
}

/* Common */
.page-container {
    position: relative;
    width: 100%;
    background: white;
}

.section-container {
    width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .section-container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Header */
.header {
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 77px;
    z-index: 100;
    background: #fff;
    padding: 10px 50px;
}

@media screen and (max-width: 768px) {
    .header {
        padding: 10px 20px;
    }
}

.header-company {
    display: flex;
    align-items: center;
}

.logo {
    width: 54px;
    height: 54px;
}

.menu {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.8px;
    color: #242424;
    white-space: pre;
}

@media screen and (max-width: 768px) {
    .menu {
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .menu.active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        visibility: visible;
        opacity: 1;
        flex-direction: column;
        color: #fff;
        background: rgba(36, 36, 36, 0.9);
    }
}


.menu-item {
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover {
    opacity: 0.7;
}

.company-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.8px;
    color: #242424;
    white-space: pre;
}

.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    display: none;
    width: 40px;
    height: 40px;
    background: #000;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        padding-left: 5px;
    }

    .bar {
        display: block;
        width: 30px;
        height: 2px;
        background: #fff;
        transition: all 0.3s ease;
    }

    .bar:nth-child(1) {
        margin-top: 10px;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg);
        position: relative;
        top: 8px;
    }

    .bar:nth-child(2) {
        margin-top: 6px;
    }

    .hamburger.active .bar:nth-child(2) {
        display: none;
        opacity: 0;
    }

    .bar:nth-child(3) {
        margin-top: 6px;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg);
    }
}


/* Main Visual (Top Page) */
.mv {
    width: 100%;
    height: 831px;
}

.mv-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 831px;
}

.mv-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 720px;
    height: 831px;
    background: rgba(36, 36, 36, 0.9);
}

@media screen and (max-width: 768px) {
    .mv-overlay {
        top: 300px;
        width: 100%;
        height: 356px;
    }    
}


.mv-text {
    position: absolute;
    left: 50px;
    top: 436px;
    width: 606px;
    height: 192px;
    font-style: normal;
    line-height: 1;
    white-space: pre;
}

@media screen and (max-width: 768px) {
    .mv-text {
        left: 20px;
        top: 336px;
        width: calc(100% - 40px);
        height: auto;
    }    
}


.mv-title {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 36px;
    letter-spacing: 1.8px;
    color: white;
}

@media screen and (max-width: 768px) {
    .mv-title {
        font-size: 28px;
    }    
}


.mv-copy {
    position: absolute;
    left: 0;
    top: 96px;
    width: 606px;
    height: 96px;
}

@media screen and (max-width: 768px) {
    .mv-copy {
        width: auto;
    }
}


.mv-copy-en {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 200;
    font-size: 48px;
    letter-spacing: -2.4px;
    color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 768px) {
    .mv-copy-en {
        font-size: 40px;
    }    
}


.only-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .only-sp {
        display: block;
    }
}


.mv-copy-ja {
    position: absolute;
    left: 0;
    top: 68px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px;
    color: white;
}

@media screen and (max-width: 768px) {
    .mv-copy-ja {
        top: 90px;
    }
}


@media screen and (max-width: 768px) {
    .mv-copy-ja {
        font-size: 16px;
    }
}


/* About Section (Top Page) */
.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 80px;
    margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
    .about {
        flex-direction: column;
    }
}


.about-image {
    width: 507px;
    height: 430px;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .about-image {
        width: 100%;
        height: auto;
    }
}


.about-text {
    width: 491px;
    line-height: 2;
    color: #242424;
}

@media screen and (max-width: 768px) {
    .about-text {
        width: 100%;
    }
}


.section-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 1.2px;
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}


.about-description {
    width: 491px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.8px;
}

@media screen and (max-width: 768px) {
    .about-description {
        width: 100%;
    }
}


.about-description p {
    margin: 0;
}

/* Feature Section (Top Page) */
.feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 80px;
    margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
    .feature {
        flex-direction: column;
    }
}


.feature-image {
    width: 507px;
    height: 430px;
}

@media screen and (max-width: 768px) {
    .feature-image {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
}

.feature-text {
    width: 491px;
    height: 376px;
    line-height: 2;
    color: #242424;
}

@media screen and (max-width: 768px) {
    .feature-text {
        width: 100%;
    }    
}

.feature-description {
    width: 491px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.8px;
}

@media screen and (max-width: 768px) {
    .feature-description {
        width: 100%;
    }
}


/* Page Head */
.page-head {
    position: relative;
    width: 100%;
    height: 420px;
}

@media screen and (max-width: 768px) {
    .page-head {
        height: 300px;
    }
}


.page-head-image {
    width: 100%;
    height: 420px;
}

@media screen and (max-width: 768px) {
    .page-head-image {
        height: 300px;
    }
}


.page-head-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 36, 36, 0.4);
}

.page-head-title {
    position: absolute;
    left: 50px;
    top: 174px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 2;
    letter-spacing: 1.8px;
    color: white;
    white-space: pre;
}

@media screen and (max-width: 768px) {
    .page-head-title {
        left: 20px;
        font-size: 28px;
    }
}

/* Service Outline (Service Page) */
.service-outline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 80px;
    margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
    .service-outline {
        flex-direction: column;
    }
}


.service-outline-image {
    width: 507px;
}

@media screen and (max-width: 768px) {
    .service-outline-image {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
}

.service-outline-text {
    width: 491px;
    color: #242424;
}

@media screen and (max-width: 768px) {
    .service-outline-text {
        width: 100%;
    }
}

.service-outline-description {
    width: 491px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.8px;
}

@media screen and (max-width: 768px) {
    .service-outline-description {
        width: 100%;
    }
}


.service-outline-description p {
    margin: 0;
}

/* Category (Service Page) */
.category {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 80px;
    margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
    .category {
        flex-direction: column;
    }
}

.category-text {
    width: 491px;
    line-height: 2;
    color: #242424;
}

@media screen and (max-width: 768px) {
    .category-text {
        width: 100%;
        margin-bottom: 20px;
    }
}


.category-description {
    width: 491px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.8px;
}

@media screen and (max-width: 768px) {
    .category-description {
        width: 100%;
    }
}

.category-list {
    width: 491px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    grid-template-rows: repeat(3, minmax(0px, 1fr));
    gap: 11px;
}

@media screen and (max-width: 768px) {
    .category-list {
        width: 100%;
    }
}


.category-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 88px;
    flex-shrink: 0;
    background: #f8332b;
}

@media screen and (max-width: 768px) {
    .category-block {
        width: 100%;
        height: 50px;
    }
}

.category-block:nth-child(1) {
    grid-area: 1 / 1;
}

.category-block:nth-child(2) {
    grid-area: 1 / 2;
}

.category-block:nth-child(3) {
    grid-area: 2 / 1;
}

.category-block:nth-child(4) {
    grid-area: 2 / 2;
}

.category-block:nth-child(5) {
    grid-area: 3 / 1;
}

.category-block:nth-child(6) {
    grid-area: 3 / 2;
}

.category-block-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 2;
    letter-spacing: 1px;
    color: white;
}

/* Company Info (Recruit Page & Company Page) */
.company-info-section {
    padding-top: 80px;
    padding-bottom: 80px;
}
.company-info-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 2;
    letter-spacing: 1.2px;
    color: #242424;
}

.info-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-line {
    width: 100%;
    height: 0;
    flex-shrink: 0;
    border-bottom: 1px solid #F8332B;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-shrink: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.8px;
    color: black;
}

@media screen and (max-width: 768px) {
    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
}


.info-label {
    width: 203px;
    flex-shrink: 0;
}

.info-value {
    flex: 1;
    min-width: 0;
}

@media screen and (max-width: 768px) {
    .info-value {
        width: 100%;
        margin-top: 10px;
    }
}

.info-item-schedule .info-value p {
    margin: 0;
}

/* Location Map (Company Page) */
.location-map {
    padding-bottom: 80px;
}

.location-map-image {
    width: 100%;
    height: 658px;
}

@media screen and (max-width: 768px) {
    .location-map-image {
        height: 450px;
    }
}

.location-map-image iframe {
    width: 100%;
    height: 100%;
}

/* Recruit Page*/
.recruit-info {
    padding-top: 80px;
    padding-bottom: 80px;
}


/* Footer */
.footer {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 293px;
    background: #242424;
    padding: 40px 50px 20px;
}

@media screen and (max-width: 768px) {
    .footer {
        height: auto;
        padding-left: 20px;
        padding-right: 20px;
    }
}


.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .footer-inner {
        justify-content: center;
    }
}


.footer-company {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;;
    width: 368px;
}

@media screen and (max-width: 768px) {
    .footer-company {
        width: auto;
    }
}


.footer-logo {
    width: 125px;
    height: 125px;
}

@media screen and (max-width: 768px) {
    .footer-logo {
        width: 80px;
        height: 80px;
    }
}


.footer-logo img {
    opacity: 0.6;
}

.footer-company-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 2;
    letter-spacing: 1px;
    color: white;
    white-space: pre;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .footer-company-name {
        font-size: 16px;
    }
}


.footer-address {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.8px;
    color: white;
}

@media screen and (max-width: 768px) {
    .footer-address {
        font-size: 14px;
    }
}


.footer-sitemap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.8px;
    color: white;
    white-space: pre;
}

@media screen and (max-width: 768px) {
    .footer-sitemap {
        display: none;
    }
}


.footer-sitemap a {
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.footer-sitemap a:hover {
    opacity: 0.7;
}

.footer-copyright {
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 2;
    letter-spacing: 0.5px;
    color: white;
    white-space: pre;
}
