@charset "UTF-8";

/************************************************************/
/*   BASE   */
/************************************************************/
/* FONT */
html {
    font-size: 62.5%;
    /* 1rem = 10pxにする */
}

body {
    /* font-size: 1.6rem; */
    /* = 16px */
    font-family: "Noto Sans JP", sans-serif, "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo;
    margin: 0;
    padding: 0;
    line-height: 1.8;
}

h1 {
    font-size: 2.4rem;
    /* = 24px */
}

p.small {
    font-size: 1.2rem;
    /* = 12px */
}

a {
    text-decoration: none
}

.font_noto_500 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.font_noto_700 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.font_noto_900 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
}


.contents_wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

#HD .contentsWidth {
    width: 100% !important;
}

.sp_br {
    display: none;
}

/* PCだけ表示 */
.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

/* スマホ用 */
@media (max-width: 768px) {
    .pc-only {
        display: none;
        /* スマホでは非表示 */
    }

    .sp-only {
        display: block;
        /* スマホでは表示 */
    }
}


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

#header {
    width: 100%;
    background: transparent;
    /* 最初は透明 */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all 0.3s ease;
    height: 135px;
    display: flex;
    align-items: center;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); */
    overflow-x: hidden;
    background: none;

}

#header.shrink {
    height: 100px;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* スクロールしたら白背景 */
}

.nav-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    width: 1620px;
    transition: height 0.3s ease;
}

/* ロゴ */
.logo {
    margin-left: 40px;
}

.logo img {
    margin-right: 40px;
    height: 60px;
    transition: all 0.3s ease;
}

header.shrink .logo img {
    height: 45px;
}


/* フェードイン共通 */
.fade-in {
    opacity: 0;
    /* 初期状態は透明 */
    transform: translateY(20px);
    /* 下から浮き上がるイメージ */
    animation: fadeInUp 1.8s ease-out forwards;
}

/* 順番に出すためのディレイ */
.fade-in.delay-1 {
    animation-delay: 1.5s;
}

.fade-in.delay-2 {
    animation-delay: 2s;
}

.fade-in.delay-3 {
    animation-delay: 2.5s;
}

/* アニメーション定義 */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/************************************************************/
/*   ナビゲーション   */
/************************************************************/

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
}

nav ul li {
    text-align: center;
}

nav ul li a {
    display: block;
    text-decoration: none;
    font-weight: 700;
    color: #1c2f5d;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    font-size: 25px;
}

nav ul li a span {
    display: block;
    font-size: 15px;
    font-weight: 400;
    margin-top: 4px;
    color: #6BA1E2;
}


/* ===== 追加 ===== */

/* ナビゲーションをフレックスで安定 */
nav ul {
    display: flex;
    gap: 30px;
    /* li の間隔を一定に */
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    display: flex;
    /* inline-block → flex */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 8px 0;
    /* hover でも変えない */
    transition: color 0.3s;
    /* padding や margin は変えない */
}

nav ul li a strong {
    font-weight: 700;
}

nav ul li a span {
    font-size: 12px;
    line-height: 1.2;
}

/* hover で文字色だけ変化させる */
nav ul li a:hover {
    color: #0077cc;
}



@media (min-width: 768px) and (max-width: 1024px) {
    nav {
        flex: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-container {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        width: 100%;
        transition: height 0.3s ease;
    }

    /* ロゴ */
    .logo {
        margin-left: 40px;
    }

    .logo img {
        margin-right: 40px;
        height: 60px;
        transition: all 0.3s ease;
    }

}


@media screen and (max-width: 768px) {
    nav {
        flex: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-container {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        width: 100%;
        transition: height 0.3s ease;
    }


    /* ロゴ */
    .logo {
        margin-left: 40px;
    }

    .logo img {
        margin-right: 70px;
        height: 45px;
        transition: all 0.3s ease;
    }


}












/* ホバーアニメーション（PC） */
nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #1c2f5d;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

nav ul li a:hover {
    color: #003399;
}

/* お問い合わせボタン（PC用） */

.contact {}


.contact-btn {
    background: #1c2f5d;
    color: #fff;
    display: flex;
    align-items: center;
    width: 110px;
    height: 110px;
    padding: 12.5px 12.5px;
    margin-left: 75px;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    flex-direction: column;
    justify-content: center;
}

header.shrink .contact-btn {
    background: #1c2f5d;
    color: #fff;
    display: flex;
    align-items: center;
    width: 90px;
    height: 80px;
    padding: 12.5px 12.5px;
    margin-left: 75px;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    flex-direction: column;
    justify-content: center;
}

.contact-btn img {
    margin-right: 8px;
    margin-bottom: 1rem;
    height: 16px;
}

.contact-btn:hover {
    background: #003399;
    transform: translateY(-3px);
}

/* ハンバーガー */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 18px;
    margin-left: 20px;
    margin-right: 5rem;
}

.hamburger span {
    width: 50px;
    height: 3px;
    background: #1c2f5d;
    transition: all 0.3s ease;
}

/* モバイルメニュー */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    /* ← 常にflex */
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-nav ul li a {
    color: #1c2f5d;
    font-size: 2rem;
    padding: 12px;
    border-radius: 4px;
    transition: background 0.3s ease, filter 0.3s ease;
}

.mobile-nav ul li a:hover {
    background: #f0f3fa;
    filter: brightness(1.2);
}

/* SP お問い合わせボタン */
.mobile-nav .contact-btn {
    margin: 20px 0 0 0;
    justify-content: center;
    width: 90%;
    height: 5rem;
    font-size: 2rem;
}

/* クローズボタン */
.close-btn {
    align-self: flex-end;
    font-size: 3rem;
    cursor: pointer;
    margin-bottom: 20px;
    color: #1c2f5d;
    transition: transform 0.2s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

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

    /* ハンバーガーSP */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 15px;
        margin-left: 20px;
        margin-right: 5rem;
    }

    .hamburger span {
        width: 45px;
        height: 3px;
        background: #1c2f5d;
        transition: all 0.3s ease;
    }
}



/************************************************************/
/*   top トップページ   */
/************************************************************/

#MV_top {
    /* max-width: 1620px; */
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    background-image: url(../image/top_bg.png);
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    overflow-y: auto;
}

.MV_topbox {
    display: flex;
    flex-direction: column;
    align-items: end;
    /* margin-top: 6rem; */
    margin-right: 40px;
    padding-top: 20rem;
}

.MV_top_imgbox {
    max-width: 450px;
    margin-top: 3rem;
}

.MV_top_textbox {
    max-width: 450px;
}

.MV_top_textbox h1 {
    max-width: 450px;
    font-size: 5rem;
    color: #182F60;
}

.MV_top_textbox p {
    max-width: 450px;
    font-size: 2rem;
    color: #182F60;
    line-height: 1.8;
}

/* サブタイトル */
.sub-title {
    display: flex;
    flex-direction: column;
    background-image: url(../image/sub_title_bg.png);
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 8rem;
    height: 275px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 135px;
}

.sub-title h1 {
    font-size: 3rem;
    color: #182F60;
    margin-bottom: 0;
}

.sub-title p {
    font-size: 1.8rem;
    color: #5587C2;
    position: relative;
    margin: 0;

}

.sub-title p::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    /* transform: translateX(-50%); */
    width: 100%;
    height: 2px;
    background-color: #5587C2;
}

@media (min-width:768px) and (max-width:1023px) {
    .MV_topbox {
        display: flex;
        flex-direction: column;
        align-items: end;
        margin-right: 40px;
        padding-top: 55rem;
    }

    .MV_top_imgbox {
        max-width: 250px;
        margin-top: 3rem;
    }

    .MV_top_imgbox img {
        width: 100%;
    }

    .MV_top_textbox {
        max-width: 450px;
    }

    .MV_top_textbox h1 {
        max-width: 100%;
        font-size: 3.8rem;
        color: #182F60;
        margin: 0;
        text-align: right;
        color: #000;
        /* 文字色（任意） */
        text-shadow:
            2px 2px 4px rgba(255, 255, 255, 0.8),
            /* 右下に白影 */
            -2px -2px 4px rgba(255, 255, 255, 0.8),
            /* 左上に白影 */
            2px -2px 4px rgba(255, 255, 255, 0.8),
            /* 右上に白影 */
            -2px 2px 4px rgba(255, 255, 255, 0.8);
        /* 左下に白影 */
    }

    .MV_top_textbox p {
        max-width: 100%;
        font-size: 2rem;
        color: #182F60;
        line-height: 1.8;
        color: #000;
        /* 文字色（任意） */
        text-shadow:
            2px 2px 4px rgba(255, 255, 255, 0.8),
            /* 右下に白影 */
            -2px -2px 4px rgba(255, 255, 255, 0.8),
            /* 左上に白影 */
            2px -2px 4px rgba(255, 255, 255, 0.8),
            /* 右上に白影 */
            -2px 2px 4px rgba(255, 255, 255, 0.8);
        /* 左下に白影 */
    }

}

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

    .MV_topbox {
        min-height: 100vh;
        /* 最低でも1画面サイズ */
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* スマホ余白用 */
        box-sizing: border-box;
        margin: 0 auto;
        background-image: url(../image/top_bg.png);
        background-size: cover;
        background-position: left;
        background-repeat: no-repeat;
        padding-top: 25rem;
    }

    .MV_top_imgbox {
        max-width: 250px;
        margin-top: 3rem;
    }

    .MV_top_imgbox img {
        width: 100%;
    }

    .MV_top_textbox {
        max-width: 350px;
        margin: 0 auto;
    }

    .MV_top_textbox h1 {
        width: 100%;
        font-size: 3rem;
        color: #182F60;
        margin: 0;
        text-align: center;
        color: #000;
        /* 文字色（任意） */
        text-shadow:
            2px 2px 4px rgba(255, 255, 255, 0.8),
            /* 右下に白影 */
            -2px -2px 4px rgba(255, 255, 255, 0.8),
            /* 左上に白影 */
            2px -2px 4px rgba(255, 255, 255, 0.8),
            /* 右上に白影 */
            -2px 2px 4px rgba(255, 255, 255, 0.8);
        /* 左下に白影 */
    }

    .MV_top_textbox p {
        width: 100%;
        font-size: 1.2rem;
        color: #182F60;
        line-height: 1.8;
        margin: 0;
        color: #000;
        /* 文字色（任意） */
        text-shadow:
            2px 2px 4px rgba(255, 255, 255, 0.8),
            /* 右下に白影 */
            -2px -2px 4px rgba(255, 255, 255, 0.8),
            /* 左上に白影 */
            2px -2px 4px rgba(255, 255, 255, 0.8),
            /* 右上に白影 */
            -2px 2px 4px rgba(255, 255, 255, 0.8);
        /* 左下に白影 */
    }

    /* サブタイトルSP */
    .sub-title {
        display: flex;
        flex-direction: column;
        background-image: url(../image/sub_title_bg.png);
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-bottom: 3rem;
        height: 200px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        margin-top: 135px;
    }

    .sub-title h1 {
        font-size: 3rem;
        color: #182F60;
        margin-bottom: 0;
    }

    .sub-title p {
        font-size: 1.8rem;
        color: #5587C2;
        position: relative;
        margin: 0;

    }

    .sub-title p::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        /* transform: translateX(-50%); */
        width: 100%;
        height: 2px;
        background-color: #5587C2;
    }

}


/************************************************************/
/*   about 会社概要   */
/************************************************************/

#about {}

.greetings {
    display: flex;
    flex-direction: row;
    align-items: self-start;
    margin-bottom: 8rem;
    justify-content: center;
}

.greetings-left {
    max-width: 810px;
}

.greetings-left img {
    max-width: 100%;
    min-width: 600px;
    height: auto;
}

.greetings-right {
    width: 600px;
}

.greetings-right h2 {
    margin-left: 60px;
    margin-right: 20px;
    font-size: 3.2rem;
    margin-top: 0;
}

.greetings-right p {
    margin-left: 60px;
    margin-right: 20px;
    font-size: 2rem;
    line-height: 1.8;
    text-align: justify;
}

.greetings-right span {
    font-size: 2rem;
    text-align: right !important;
    display: block;
}

.company-profile {
    max-width: 1620px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 20px;
}

.profile-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background: #fff;
}

.profile-table th,
.profile-table td {
    padding: 25px 16px;
    text-align: left;
    /* border: 1px solid #182F60; */
    border-top: 1px solid #182F60;
    border-bottom: 1px solid #182F60;
    border-left: none;
    border-right: none;
}

.profile-table th {
    width: 20%;
    font-size: 2.2rem;
    font-weight: 700;
    color: #182F60;
    background: #f8f9fc;
    font-weight: bold;
    text-align: center;
}

.profile-table td {
    width: 50%;
    font-size: 2.2rem;
    color: #182F60;
}

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

    nav ul,
    .contact {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .greetings {
        display: flex;
        flex-direction: column;
        align-items: self-start;
        margin-bottom: 8rem;
        justify-content: center;
    }

    .greetings-left {
        max-width: 810px;
        margin: 0 auto;
    }

    .greetings-left img {
        width: 100%;
        margin-bottom: 50px;
    }

    .greetings-right {
        max-width: 600px;
        margin: 0 auto;
    }

    .greetings-right h2 {
        margin-left: 60px;
        margin-right: 20px;
        font-size: 3.2rem;

    }

    .greetings-right p {
        margin-left: 60px;
        margin-right: 20px;
        font-size: 2rem;
        line-height: 1.8;
        text-align: justify;
    }

    .greetings-right span {
        font-size: 2rem;
        text-align: right !important;
    }

}

/*TB*/


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

    .greetings {
        display: flex;
        flex-direction: column;
        align-items: self-start;
        margin-bottom: 8rem;
        justify-content: center;
    }

    .greetings-left {
        max-width: 100%;
        margin: 0 auto;
    }

    .greetings-left img {
        max-width: 100%;
        min-width: 0;
        height: auto;
    }

    .greetings-right {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .greetings-right h2 {
        margin-left: 20px;
        margin-right: 20px;
        font-size: 2.5rem;
        margin-top: 5rem;
    }

    .greetings-right p {
        margin-left: 20px;
        margin-right: 20px;
        font-size: 1.8rem;
        line-height: 1.8;
        text-align: justify;
    }

    .greetings-right span {
        font-size: 1.8rem;
        text-align: right !important;
    }


    .profile-table,
    .profile-table tbody,
    .profile-table tr,
    .profile-table th,
    .profile-table td {
        display: block;
        width: 100%;
    }

    .profile-table tr {
        margin-bottom: 20px;
        border: 1px solid #d0d6e2;
        border-radius: 6px;
        overflow: hidden;
    }

    .profile-table th {
        background: #152d61;
        color: #fff;
        padding: 10px;
        width: 100%;
    }

    .profile-table td {
        padding: 10px;
        border-top: 1px solid #d0d6e2;
        font-size: 1.8rem;
        color: #182F60;
        width: auto;
    }
}


/************************************************************/
/*   business ビジネス   */
/************************************************************/

.container {
    max-width: 1620px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content {
    max-width: 1280px;
    margin: 0 auto;
}

.content h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 30px;
    font-weight: 600;
    color: #182F60;
    line-height: 1.5;
}

.service {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.service-text {
    flex: 0.8;
}

.service-text h3 {
    font-size: 33px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
    color: #182F60;
}

.service-text p {
    font-size: 20px;
    margin-bottom: 0;
    color: #182F60;
    text-align: justify;
}

.service-images {
    flex: 1.2;
    display: flex;
    gap: 15px;
}

.service-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    margin: 0 auto;
}

.line {
    width: 100%;
    height: 1px;
    background-color: #B5C3E0;
    margin: 60px auto;
}

/* ビジネスTB */
@media (min-width:768px) and (max-width:1023px) {
    .service {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 0 40px;
        text-align: center;
    }

    .service-text {
        text-align: center;
    }

    .service-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-items: center;
        margin: 0 auto;
    }

}

/* ビジネスSP */
@media (max-width:767px) {

    .content {
        max-width: 767px;
        margin: 0 auto;
    }

    .content h2 {
        text-align: center;
        margin-bottom: 60px;
        font-size: 2rem;
        font-weight: 600;
        color: #182F60;
        line-height: 1.5;
    }

    .service {
        flex-direction: column;
        gap: 20px;
        padding: 0;
        text-align: center;
    }

    .service-text {
        text-align: left;
    }

    .service-text h3 {
        font-size: 16px;
    }

    .service-text p {
        font-size: 14px;
        text-align: justify;
    }

    .service-images {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        justify-items: center;
        margin: 0 auto;
        width: 100%;
    }

}


/************************************************************/
/*   works 工事実績   */
/************************************************************/

#works {}

ul.results {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    max-width: 800px;

    list-style-position: inside;
    /* マーカーを内側に */
    padding-left: 0;
    /* 余計な余白をリセット */
}

ul.results li {
    border-bottom: 1px solid #ccc;
    margin-left: 0.4em;
    text-indent: -1.4em;

    padding: 8px 0 8px 1.4em;
    position: relative;
}

ul.results li strong {
    color: #004080;
}

.note {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
}

#works .content h2 {
    font-size: 3rem;
    color: #182F60;
    font-weight: bold;
    margin-top: 0;
}

#works ul.results {
    font-size: 3rem;
    font-weight: bold;
    color: #182F60;
}

#works .content p {
    font-size: 3rem;
    color: #182F60;
    font-weight: bold;
    margin: 60px 0;
}

/* --- 工事実績TB --- */
@media screen and (min-width:768px) and (max-width:1023px) {
    #works .content h2 {
        font-size: 2.5rem;
        color: #182F60;
        font-weight: bold;
        margin-top: 0;
    }

    #works ul.results {
        font-size: 2.5rem;
        font-weight: bold;
        color: #182F60;
    }

    #works .content p {
        font-size: 2.5rem;
        color: #182F60;
        font-weight: bold;
        margin: 60px 0;
    }
}

/* --- 工事実績SP --- */
@media screen and (max-width:767px) {
    #works .content h2 {
        font-size: 2rem;
        color: #182F60;
        font-weight: bold;
        margin-top: 0;
    }

    #works ul.results {
        font-size: 1.8rem;
        font-weight: bold;
        color: #182F60;
    }


    #works .content p {
        font-size: 2rem;
        color: #182F60;
        font-weight: bold;
        margin: 60px 0;
    }
}

/************************************************************/
/*   recruit 採用情報   */
/************************************************************/

#recruit {}

#recruit .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 50px;
}

#recruit .wrapper {
    max-width: 1620px;
    margin: 0 auto;
}

#recruit h3 {
    font-size: 1.4rem;
    margin: 2em 0 1em;
    text-align: center;
}

#recruit p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: bold;
    color: #182F60;
}

/* ボタン */
#recruit .btn-area {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 100px;
    flex-wrap: wrap;
}

#recruit .btn {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #1d3a8a;
    border-radius: 45px;
    text-decoration: none;
    color: #1d3a8a;
    transition: 0.3s;
    width: 390px;
    height: 30px;
    text-align: center;
    font-size: 1.85rem;
}

#recruit .btn:hover {
    background: #1d3a8a;
    color: #fff;
}

/* 画像 */
#recruit .main-image {
    text-align: center;
    margin: 50px 0 80px;
}

#recruit .main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

#recruit .job-title {
    margin: 0 0 100px;
}

#recruit .job-title p {
    font-size: 2.3rem;
    color: #182F60;
    margin: 0;
    text-align: center;
    font-weight: 300;
}

#recruit .job-title h2 {
    font-size: 4.1rem;
    color: #182F60;
    margin: 0 0 80px;
    text-align: center;

}

/* テーブル */
#recruit .job {
    max-width: 1280px;
    border-collapse: collapse;
    margin: 100px 40px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 6px 6px 20px rgba(208, 205, 205, 0.16);
    padding: 100px 0;
}

#recruit .job-inner {
    max-width: 1100px;
    margin: 0 40px;
}


#recruit .job-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background: #fff;
}

#recruit .job-table th,
#recruit .job-table td {
    padding: 25px 16px;
    text-align: left;
    /* border: 1px solid #182F60; */
    border-top: 1px solid #182F60;
    border-bottom: 1px solid #182F60;
    border-left: none;
    border-right: none;
}

#recruit .job-table th {
    width: 20%;
    font-size: 2.2rem;
    font-weight: 700;
    color: #182F60;
    background: #f8f9fc;
    font-weight: bold;
    text-align: center;
}

#recruit .job-table td {
    width: 50%;
    font-size: 2.2rem;
    color: #182F60;
}

/* レスポンシブ */
@media screen and (max-width: 1023px) {}

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

    #recruit {}

    #recruit .container {
        max-width: 767px;
        margin: 0 auto;
        padding: 0;
        margin-bottom: 50px;
    }

    #recruit .wrapper {
        max-width: 1620px;
        margin: 0 auto;
        padding: 0 20px;
    }

    #recruit h3 {
        font-size: 1.4rem;
        margin: 2em 0 1em;
        text-align: center;
    }

    #recruit p {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 3rem;
        font-weight: bold;
        color: #182F60;
    }

    /* ボタンSP */
    #recruit .btn-area {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 20px 0 100px;
        flex-wrap: wrap;
    }

    #recruit .btn {
        display: inline-block;
        padding: 8px 20px;
        border: 2px solid #1d3a8a;
        border-radius: 45px;
        text-decoration: none;
        color: #1d3a8a;
        transition: 0.3s;
        width: 390px;
        height: 30px;
        text-align: center;
        font-size: 1.85rem;
    }

    #recruit .btn:hover {
        background: #1d3a8a;
        color: #fff;
    }

    /* 画像SP */
    #recruit .main-image {
        text-align: center;
        margin: 50px 0 80px;
    }

    #recruit .main-image img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    #recruit .job-title {
        margin: 0 0 100px;
    }

    #recruit .job-title p {
        font-size: 2rem;
        color: #182F60;
        margin: 0;
        text-align: center;
        font-weight: 300;
    }

    #recruit .job-title h2 {
        font-size: 3rem;
        color: #182F60;
        margin: 0 0 80px;
        text-align: center;

    }

    /* テーブルSP */
    #recruit .job {
        max-width: 1280px;
        border-collapse: collapse;
        margin: 100px 0;
        background: #fff;
        border: 1px solid #ddd;
        box-shadow: 6px 6px 20px rgba(208, 205, 205, 0.16);
        padding: 100px 0;
    }

    #recruit .job-inner {
        max-width: 1100px;
        margin: 0 20px;
    }

    #recruit .job-table {
        width: 100%;
        border-collapse: collapse;
        margin: 0 auto;
        background: #fff;
    }

    #recruit .job-table th,
    #recruit .job-table td {
        padding: 25px 16px;
        text-align: left;
        /* border: 1px solid #182F60; */
        border-top: 1px solid #182F60;
        border-bottom: 1px solid #182F60;
        border-left: none;
        border-right: none;
    }

    #recruit .job-table th {
        width: 25%;
        font-size: 1.6rem;
        font-weight: 700;
        color: #182F60;
        background: #f8f9fc;
        font-weight: bold;
        text-align: center;
    }

    #recruit .job-table td {
        width: 50%;
        font-size: 1.6rem;
        color: #182F60;
    }

}





/************************************************************/
/*   アクセス   */
/************************************************************/

#access {
    padding: 10px 0 100px;
}

#access .wrapper {
    max-width: 1620px;
    margin: 0 auto;
}

#access .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* ロゴ */

#access .access-logo {
    display: inline-flex;
    flex-direction: column;
    max-width: 400px;
    margin-bottom: 50px;
}

#access .access-logo p {
    max-width: 267px;
    margin: 20px auto 10px;
    max-width: 400px;
}


#access .access-logo img {
    width: 100%;

}

#access .company-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1d3a8a;
    margin-bottom: 20px;
}

/* 地図 */


.map-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 の比率 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    /* 任意：角丸 */
    box-shadow: 6px 6px 20px rgba(208, 205, 205, 0.16);
    /* 任意：影 */
}

.map-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


#access .map {
    margin: 20px auto;
}

#access .map img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 6px 6px 20px rgba(208, 205, 205, 0.16);
    /* 影16% */
}

/* 住所情報 */
#access .address {
    margin: 0 auto;
    max-width: 550px;
}

#access .address p {
    max-width: 600px;
    margin: 50px 0;
    font-size: 2rem;
    font-weight: 500;
    color: #182F60;
    line-height: 1.8;
    text-align: left;

}


/* ボタン */

#access .btn-area {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 100px;
    flex-wrap: wrap;
    color: #182F60;
}

#access .btn-map {
    display: inline-block;
    padding: 20px 30px;
    border: 2px solid #1d3a8a;
    border-radius: 45px;
    text-decoration: none;
    color: #182F60;
    transition: 0.3s;
    width: 390px;
    height: 30px;
    text-align: center;
    font-size: 2rem;
}

#access .btn-map:hover {
    background: #1d3a8a;
    color: #fff;
}

/* レスポンシブ */
@media screen and (max-width: 1023px) {

    #access .address {
        font-size: 1.95rem;
    }

    #access .btn-map {
        font-size: 1.9rem;
        padding: 10px 30px;
    }
}

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

    #access .address {
        font-size: 1.9rem;
    }

    #access .btn-map {
        font-size: 1.85rem;
        padding: 8px 20px;
    }

    #access .access-logo img {
        width: 70%;

    }

}


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

.site-footer {
    width: 100%;
    background: #152d61;
    color: #fff;
    font-size: 14px;
}

.footer-inner {
    max-width: 1620px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo {
    margin-right: 2.4rem;
}

.footer-logo img {
    height: 40px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-nav li {
    position: relative;
}

.footer-nav li:not(:last-child)::after {
    content: "|";
    margin-left: 20px;
    color: #ccc;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.8rem;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-copy {
    font-size: 12px;
    color: #ccc;
    white-space: nowrap;
    margin-left: auto;
}

/* ===== レスポンシブ対応 ===== */
@media screen and (max-width: 1024px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-nav ul {
        justify-content: center;
    }

    .footer-copy {
        margin-left: 0;
    }
}


/************************************************************/
/*   TB   */
/************************************************************/
/* @media screen and (min-width:768px) and (max-width:1023px) {} */

/************************************************************/
/*   SP   */
/************************************************************/
/* @media screen and (max-width:767px) {} */

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

    .contents_wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .sp_br {
        display: block;
    }

    nav ul,
    .contact {
        display: none;
    }

    .hamburger {
        display: flex;
    }

}

/*SP*/