/* =========================
   基本設定
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family:
        "Noto Sans JP",
        "Yu Gothic",
        "Hiragino Kaku Gothic ProN",
        Meiryo,
        sans-serif;

    color: #222;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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


/* =========================
   ヘッダー
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    
    animation: headerSlideDown 0.8s ease-out;
}

.header-inner {
    width: 92%;
    max-width: 1400px;

    margin: 0 auto;

    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 250px;
}

.hamburger {
    display: none;
}

.navigation ul {
    display: flex;

    margin: 0;
    padding: 0;

    list-style: none;
}

.navigation li {
    margin-left: 35px;
}

.navigation a {
    font-size: 15px;
    font-weight: 600;

    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #8bcf9b;
}


/* =========================
   メインビジュアル
========================= */

.main-visual {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catch-copy ,
.slide06 .catch-copy {
    position: absolute;

    top: 42%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 90%;

    color: #fff;

    text-align: center;

    text-shadow:
        2px 2px 5px rgba(0, 0, 0, 0.7);
}

.catch-main {
    font-size: clamp(30px, 4vw, 60px);
    font-weight: 700;
    line-height: 1.5;
}

.catch-sub {
    margin-top: 12px;

    font-size: clamp(13px, 1.3vw, 20px);
    font-weight: 500;

    letter-spacing: 0.08em;
}

.slide02 .catch-copy,
.slide04 .catch-copy {
    top: auto;
    left: 8%;
    bottom: 12%;

    transform: none;

    width: auto;
    text-align: left;
}

.slide03 .catch-copy ,
.slide05 .catch-copy {
    top: auto;
    left: auto;
    right: 8%;
    bottom: 12%;

    transform: none;

    width: auto;
    text-align: right;
}

/* =========================
   コンテンツ
========================= */

.contents {
    position: relative;

    overflow: hidden;

    padding: 130px 0;

    background: #edf3f6;
}

.contents-mark {
    position: absolute;

    top: 0;
    left: 0;

    width: 40vw;
    height: auto;

    z-index: 0;
}

.contents-inner {
    position: relative;

    width: 88%;
    max-width: 1400px;

    margin: 0 auto;
}

.contents h1 {
    position: relative;

    margin: 0 0 40px;
    padding: 10px 0 18px 36px;

    color: #2e68cc;

    font-size: clamp(28px, 3.2vw, 45px);
    font-weight: 900;
}

.contents h1::before {
    content: "";
    position: absolute;

    left: 0;
    top: 12px;
    height: calc(100% - 15px);

    width: 14px;

    background: #2e68cc;
}

.contents h1::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: #2e68cc;
}

.lead {
    position: relative;

    max-width: none;

    margin: 0 0 50px;

    font-size: 17px;
    line-height: 2;
}

/* =========================
   3つのメニュー
========================= */

.menu-cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;
}

.menu-card {
    display: block;

    background: #fff;

    overflow: hidden;

    border-radius: 6px;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.menu-card img {
    width: 60%;

    margin: 0 auto;

    display: block;

    transition:
        transform 0.45s ease,
        opacity 0.45s ease;
}

.menu-text {
    padding: 20px 28px 30px;

    text-align: center;
}

.menu-card h2 {
    margin: 0;

    color: #2e68cc;

    font-size: 27px;
    font-weight: 700;
}

.menu-card span {
    display: block;

    margin-top: 6px;

    color: #777;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.12em;
}

.menu-card p {
    margin: 18px 0 0;

    color: #555;

    font-size: 14px;
    line-height: 1.9;

    text-align: left;
}

.menu-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.menu-card:hover img {
    opacity: 0.9;
}

/* =========================
各ページタイトル
========================= */

.page-title {
    margin: 0 auto 50px;
    text-align: center;
}

.page-title span {
    display: block;
    margin-bottom: 8px;

    color: #333;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
}

.page-title-main {
    display: inline-block;
    text-align: center;
}

.page-title h2 {
    margin: 0;

    color: #2e68cc;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
}

.page-title-line {
    width: 100%;
    height: 3px;
    margin-top: 10px;

    background: #2e68cc;
}

.page-title small {
    display: block;
    margin-top: 10px;

    color: #333;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
}

/* =========================
各ページ設定
========================= */
.page-lead {
    margin: 0 0 70px;
    font-size: 19px;
    line-height: 2;
}

.page-visual {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.page-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-contents {
    position: relative;
    overflow: hidden;
    padding: 100px 0 130px;
    background: #edf3f6;
}

.page-contents-mark {
    position: absolute;
    top: 0;
    left: 0;
    width: 40vw;
    height: auto;
    z-index: 0;
}

.page-inner {
    position: relative;
    width: 88%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
}

.page-contents h1 {
    position: relative;

    margin: 0 0 30px;
    padding: 8px 0 14px 28px;

    color: #2e68cc;

    font-size: 34px;
    font-weight: 800;
}

.page-contents h1::before {
    content: "";
    position: absolute;

    left: 0;
    top: 10px;
    height: calc(100% - 12px);

    width: 9px;

    background: #2e68cc;
}

.page-contents h1::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: #2e68cc;
}

.job-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 45px;
    margin-bottom: 80px;
}

.job-images img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}


/* =========================
   フッター
========================= */

.footer {
    border-top: 5px solid #2e68cc;

    background: #fff;
}

.footer-inner {
    width: 88%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 60px 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;
}

.footer-logo img {
    width: 180px;

    margin-bottom: 25px;
}

.footer-info p {
    margin: 0;

    font-size: 15px;

    line-height: 2;
}

.footer-map {
    min-height: 280px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
}

.copyright {
    padding: 20px;

    border-top: 1px solid #ddd;

    text-align: center;

    font-size: 13px;
}

/* =========================
   採用情報
========================= */

.recruit-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;

    align-items: center;

    margin-bottom: 80px;
}

.recruit-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recruit-text h3 {
    margin: 0 0 25px;

    color: #2e68cc;

    font-size: 28px;
    font-weight: 700;
}

.recruit-text ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.recruit-text li {
    position: relative;

    margin-bottom: 14px;
    padding-left: 22px;

    font-size: 17px;
    line-height: 1.8;
}

.recruit-text li::before {
    content: "・";

    position: absolute;
    left: 0;
}

.recruit-text p {
    margin: 0;

    font-size: 17px;
    line-height: 2;
}

.recruit-image {
    width: 100%;
}

.recruit-image img {
    width: 100%;
    aspect-ratio: 670 / 450;

    object-fit: cover;

    border-radius: 10px;
}

/* =========================
   会社概要
========================= */

.company-table {
    width: 100%;
    margin: 0 auto;
}

.company-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: start;
    padding: 28px 30px;
    font-size: 16px;
    line-height: 1.9;
}

.company-row:nth-child(odd) {
    background: #cfdbe5;
}

.company-label {
    padding-right: 40px;

    text-align: right;

    color: #333;
    font-weight: 700;
}

.company-value {
    padding-left: 20px;

    text-align: left;
}

.company-value strong {
    font-weight: 700;
}

.company-date {
    margin: 25px 0 0;

    text-align: right;

    color: #555;

    font-size: 13px;
}

/* =========================
   お問い合わせ
========================= */

.contact-form {
    width: 100%;
    margin: 0 auto;
}

.contact-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: start;
    padding: 28px 30px;
    font-size: 16px;
    line-height: 1.9;
}

.contact-row:nth-child(odd) {
    background: #cfdbe5;
}

.contact-label {
    padding-right: 40px;
    text-align: right;
    color: #333;
    font-weight: 700;
}

.contact-label label {
    cursor: pointer;
}

.contact-label small {
    font-size: 13px;
    font-weight: 500;
}

.required {
    display: inline-block;
    margin-left: 8px;
    padding: 1px 6px;
    color: #fff;
    background: #2e68cc;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.6;
    vertical-align: middle;
}

.contact-input {
    padding-left: 20px;
    text-align: left;
}

.contact-input input[type="text"],
.contact-input input[type="tel"],
.contact-input input[type="email"],
.contact-input textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #fff;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.6;
    outline: none;
}

.contact-input input:focus,
.contact-input textarea:focus {
    border-color: #2e68cc;
}

.contact-input textarea {
    min-height: 220px;
    resize: vertical;
}

.contact-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    align-items: center;
}

.contact-radio label {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    font-size: 16px;
}

.contact-radio input[type="radio"] {
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: #2e68cc;
}

.contact-submit {
    margin-top: 50px;
    text-align: center;
}

.contact-submit button {
    min-width: 220px;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    background: #2e68cc;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .3s ease;
}

.contact-submit button:hover {
    opacity: .8;
}

/* =========================
   スマートフォン
========================= */

@media screen and (max-width: 768px) {

    .header-inner {
        min-height: 70px;
    }

    .logo img {
        width: 140px;
    }

    .hamburger {
        display: flex;

        width: 40px;
        height: 40px;

        padding: 8px;

        margin: 0;

        border: none;
        background: transparent;

        flex-direction: column;
        justify-content: center;
        gap: 5px;

        cursor: pointer;

        z-index: 1100;
    }

    .hamburger span {
        display: block;

        width: 100%;
        height: 2px;

        background: #222;

        transition: 0.3s ease;
    }

    .navigation {
        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition: 0.3s ease;
    }

    .navigation.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .navigation ul {
        display: block;

        margin: 0;
        padding: 15px 0;
    }

    .navigation li {
        margin: 0;
    }

    .navigation a {
        display: block;

        padding: 14px 20px;

        font-size: 15px;
        text-align: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-visual {
        height: 80vh;
    }

.catch-copy {
    font-size: 30px;
    width: 90%;
}

.catch-main {
    font-size: clamp(22px, 6vw, 32px);
    line-height: 1.5;
}

.catch-sub {
    margin-top: 8px;
    font-size: 13px;
}

.slide01 .catch-copy ,
.slide06 .catch-copy {
    top: 42%;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    text-align: center;
}

.slide02 .catch-copy,
.slide04 .catch-copy {
    top: auto;
    left: 6%;
    bottom: 10%;
    transform: none;
    text-align: left;
}

.slide03 .catch-copy ,
.slide05 .catch-copy {
    top: auto;
    left: auto;
    right: 6%;
    bottom: 10%;
    transform: none;
    text-align: right;
}

    .contents {
        padding: 90px 0;
    }

    .contents-mark {
        width: 55vw;
    }


    .menu-cards {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .footer-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }
    
    .job-images {
        grid-template-columns: 1fr;
        gap: 25px;
    }

/* =========================
   採用情報 スマートフォン
========================= */

    .recruit-block {
        grid-template-columns: 1fr;

        gap: 30px;

        margin-bottom: 60px;
    }

    .recruit-block02 .recruit-image {
        order: 2;
    }

    .recruit-block02 .recruit-text {
        order: 1;
    }

    .recruit-text h3 {
        margin-bottom: 18px;

        font-size: 24px;
    }

    .recruit-text li {
        margin-bottom: 10px;

        font-size: 16px;
    }

    .recruit-text p {
        font-size: 16px;
    }

    .recruit-image img {
        aspect-ratio: 3 / 2;
    }
    

/* =========================
   会社概要 スマートフォン
========================= */

    .company-row {
        grid-template-columns: 90px 1fr;

        padding: 20px 15px;

        font-size: 14px;
        line-height: 1.8;
    }

    .company-label {
        padding-right: 15px;
    }

    .company-value {
        padding-left: 15px;

        overflow-wrap: break-word;
    }

    .company-date {
        margin-top: 20px;

        font-size: 12px;
    }
    
    /* =========================
   お問い合わせ スマートフォン
========================= */

    .contact-row {
        grid-template-columns: 90px 1fr;
        padding: 20px 15px;
        font-size: 14px;
        line-height: 1.8;
    }

    .contact-label {
        padding-right: 15px;
    }

    .contact-label small {
        font-size: 11px;
    }

    .required {
        display: block;
        width: fit-content;
        margin: 4px 0 0 auto;
        font-size: 10px;
    }

    .contact-input {
        padding-left: 15px;
    }

    .contact-input input[type="text"],
    .contact-input input[type="tel"],
    .contact-input input[type="email"],
    .contact-input textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .contact-input textarea {
        min-height: 180px;
    }

    .contact-radio {
        display: block;
    }

    .contact-radio label {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .contact-submit {
        margin-top: 35px;
    }

    .contact-submit button {
        width: 100%;
        max-width: 300px;
    }

}







@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}