@charset "utf-8";

/* ////////////////////////////////////////////////////////////////////////// 
【共通】　ページ基本
////////////////////////////////////////////////////////////////////////// */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: yellowgreen 1px solid; */
}

html {
    font-size: 100%;
    scroll-behavior: smooth; /* スクロールを滑らかにする */
    overflow-x: hidden;
}

body {
    margin: 0 auto;
    font-size: 1rem;
    color: #202121;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    text-align: justify;
    text-justify: inter-ideograph;
    overflow-x: hidden;
}
body.no-scroll {
    overflow: hidden; /* スクロール無効化 */
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: #003E8B;
}

p{
    line-height: 2rem;
}
@media screen and (max-width: 1024px) {
 p{
    line-height: 1.8rem;
 }
    
}

footer a{
    color: #ffffff;
}

li {
    list-style: none;
}

#wrapper{
    margin: 0 auto;
    /* padding: 0 4%; */
    text-align: center;
}

b {
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.br_sp{
    display: block;
}
.br_tab{
    display: none;
}

.br_pc{
    display: none;
}

picture {
    display: block;
}

/* ふわっと部品を表示させる */

.fade-in {
    opacity: 0; /* 初期状態（透明） */
    transform: translateY(30px); /* 下から浮かび上がる */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 表示されたときに適用 */
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* トップに戻るボタン */

.top-button {
    position: fixed; 
    right: 10px; /* 右下に配置 */
    bottom: 10px; /* 右上にかかるように配置 */
    width: 80px; /* PC版のサイズ */
    height: 80px; /* PC版のサイズ */
    background-color: #3C82D9; /* ボタンの背景色 */
    color: #fff; /* 文字色 */
    text-align: center; /* 文字を中央揃え */
    line-height: 35px; /* テキストをボタン中央に配置 */
    border-radius: 5px; /* 角丸設定 */
    text-decoration: none; /* 下線をなくす */
    z-index: 10000;
    transition: opacity 0.5s;
}
/* ボタン内の矢印を追加 */
.top-button::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;  /* 左の斜辺 */
    border-right: 10px solid transparent; /* 右の斜辺 */
    border-bottom: 15px solid white; /* 下の辺（上向きの三角形） */
    margin: 20px auto 0 auto; /* 上下の間隔調整 */
}

@media screen and (max-width:767px)  {
    .top-button {
        border-radius: 0;
        width: 45px; /* スマホ版のサイズ */
        height: 45px; /* スマホ版のサイズ */
        line-height: 20px; /* テキストをボタン中央に配置 */
        right: 10px; 
        bottom: 95px; 
        font-size: 0.7rem;
    }
    /* ボタン内の矢印を追加 */
    .top-button::before {
    border-left: 8px solid transparent;  /* 左の斜辺 */
    border-right: 8px solid transparent; /* 右の斜辺 */
    border-bottom: 8px solid white; /* 下の辺（上向きの三角形） */
    margin: 10px auto 0 auto; /* 上下の間隔調整 */
}

}



/* ////////////////////////////////////////////////////////////////////////// 
【共通】　ローディングスクリーン
////////////////////////////////////////////////////////////////////////// */

/* 文字が表示されるアニメーション */
@keyframes fadeInText {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

.loading-screen {
    height: 100vh;
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #4f9cf9, #004597);
    color: white;
    padding: 0 200px;
    font-size: 1rem;
    line-height: 6rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: normal;
    letter-spacing: 1rem;
    text-align: center;
    transition: opacity 0.8s ease-out;
    z-index: 1000000;
}

.fade-out {
    opacity: 0;
    pointer-events: none;
}

h1 span {
    display: inline-block;
    opacity: 0;
    animation: fadeInText 1s forwards;
  }

  /* 各文字の遅延時間を調整 */
  h1 span:nth-child(1) {
    animation-delay: 0.7s;
  }
  h1 span:nth-child(2) {
    animation-delay: 1.4s;
  }
  h1 span:nth-child(3) {
    animation-delay: 2.1s;
  }
  h1 span:nth-child(4) {
    animation-delay: 2.8s;
  }

/* 最後に文字がフェードアウト */
h1 span.fade-out {
    animation: fadeInText 1s forwards, fadeOutText 1s forwards; /* 文字の表示とフェードアウトを同時に */
  }

  /* 文字のフェードアウトアニメーション */
  @keyframes fadeOutText {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

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

    .loading-screen {
        padding: 0 30px;
        font-size: .6rem;
        line-height:4rem;
        letter-spacing: .5rem;
    }
}

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

    .loading-screen {
        padding: 0 30px;
        font-size: .6rem;
        line-height:4rem;
        letter-spacing: .5rem;
    }
}

/* ////////////////////////////////////////////////////////////////////////// 
【共通】　ヘッダー
////////////////////////////////////////////////////////////////////////// */


body#Index::before {
    display: none;
}

body::before {
    content: "";
    display: block;
    height: 105px;   /* ヘッダーの高さ */
}

.header_main {
    position: fixed;  /* ヘッダーを固定 */
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100vw; /* 必要なら中央寄せのための最大幅を設定 */
    height: auto;  /* 画面いっぱいにしない */
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center; /* 'top' は無効なので 'center' に変更 */
    transition: background-color 0.3s ease; /* スムーズな変化を追加 */
    color: #003E8B;
    z-index: 1000; /* 前面に配置 */
}

/* スクロール後に適用するクラス */
.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
}

.header {
    max-width: 100vw;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #ffffff;
    color: #003E8B;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

/* ロゴ */
.logo {
    display: flex;
    align-items: top;
}

/* ロゴのサイズを固定 */
header .logo img {
    max-width: 350px; /* 最小サイズ */
    margin-right: 20px;
    height: auto;
    width: auto;
    vertical-align: bottom;
}

.menu {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0 15px 0 10px;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 0.875rem;
}
.menu li {
    margin: 0 10px;
    position: relative;
    white-space:nowrap;
}
.menu li:first-child {
    margin-left: 0;
}
.menu li:last-child {
    margin-right: 0;
}
.menu a {
    color: #003E8B;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}
.menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #E30211;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}
.menu a:hover::after {
    transform: scaleX(1);
}
.entry-buttons {
    display: flex;
    margin-left: 20px;
}
.entry-buttons button {
    margin-left: 10px;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.entry-buttons .new {
    background-color: #E30211;
    color: white;
}
.entry-buttons .career {
    background-color: #3C82D9;
    color: white;
}
.menu-toggle {
    z-index: 10000;
    display: none;
    font-size: 24px;
    cursor: pointer;
    background-color: #003E8B;
    color: white;
    padding: 10px;
    border-radius: none;
    border: none;
}
.menu-image{
    display: none;
}

@media screen and (max-width: 1024px) {
    .header .logo img,.header_main .logo img {
        max-height: 40px;
        height: 100%;
    }
    .header_main {
        padding: 0 30px;
        height: 85px;
    }
    .header {
        padding: 0 30px;
        box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
    }
    .menu {
        margin: 0 0 0 0;
        position: fixed;
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        text-align: center;
        padding: 80px;
    }
    .menu.active {
        display: flex;
        background-color: rgba(255, 255, 255, 0.95);
        height: 100vh;
    }
    .menu.active li {
        display: block;
        margin: 35px auto;
        border-bottom: #003E8B solid 1px;
        text-align: left;
        padding: 20px;
        font-size: 1.2rem;
    }
    .menu.active li:first-child {
        border-bottom: none;
        padding-left: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .menu.active li::after {
        content: '\2192'; /* → のUnicode */
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 12px; /* 矢印の幅 */
        height: 12px; /* 矢印の高さ */
        margin-left: 40px;
        transition: margin-left 0.3s, background 0.3s, color 0.3s, transform 0.3s;
        border-radius: 50%;
    }    
    .menu.active li::after {
        position: absolute;
        right: 10px;
        background: #003E8B;
        color: #fff;
        width: 20px; /* ホバー時のサイズ調整 */
        height: 20px;
        transform: translateX(3px); /* 矢印を右に移動 */
    }   
    .menu.active li:first-child::after {
        display: none;
    }
    .menu-toggle {
            position: fixed;
            top: 0;
            right: 0;
            width: 85px;
            height: 85px;
            background-color: #003E8B;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: opacity 0.5s ease-in-out; /* フェードアウトのアニメーション */
    }
        .menu-toggle span {
            position: absolute;
            width: 65%;
            height: 1px;
            background-color: white;
            transition: 0.3s;
        }
        .menu-toggle span:first-child {
            top: 35px;
            right: 16px;
        }
        .menu-toggle span:last-child {
            bottom:35px;
            right: 16px;
        }
        .menu-toggle.active span:first-child {
            transform: rotate(45deg);
            top: 50%;
        }
        .menu-toggle.active span:last-child {
            transform: rotate(-45deg);
            bottom: 50%;
        }
        
        .menu a::after {
            display: none;
        }
        .menu a:hover::after {
            transform: scaleX(1);
        }
        .menu-image {
            display: block;
            padding-left: 0;
            margin-left: 0;
            margin-bottom: 15px;
            max-height: 50px;
        }

}

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

    .header .logo{
        position: absolute;
        top: 27%;
    }
    .header_main .logo{
        position: absolute;
        top: 10;
    }
    .header .logo img,.header_main .logo img {
        max-height: 27px;
    }
    .header_main {
        padding: 0 20px;
        height: 57px;
    }
    .header {
        position: fixed;
        padding: 35px 30px 22px 15px;
        box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
    }
    .menu {
        position: fixed;
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        text-align: center;
        padding: 0 20px 20px 20px;
    }
    .menu.active {
        display: flex;
    }
    .menu.active li {
        display: block;
        margin: 0 auto 15px auto;
        border-bottom: #003E8B solid 1px;
        text-align: left;
        padding: 15px;
        font-size: 1rem;
    }

    .menu.active li:last-child{
        margin-top: 15px;
    }
    .menu-toggle {
            position: fixed;
            top: 0;
            right: 0;
            width: 57px;
            height: 57px;
            background-color: #003E8B;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: opacity 0.5s ease-in-out; /* フェードアウトのアニメーション */
    }
    .menu-toggle span {
            position: absolute;
            width: 50%;
            height: 1px;
            background-color: white;
            transition: 0.3s;
        }
        .menu-toggle span:first-child {
            top: 23px;
            right: 14px;
        }
        .menu-toggle span:last-child {
            bottom:23px;
            right: 14px;
        }
        .menu-toggle.active span:first-child {
            transform: rotate(45deg);
            top: 50%;
        }
        .menu-toggle.active span:last-child {
            transform: rotate(-45deg);
            bottom: 50%;
        }
        .menu a::after {
            display: none;
        }
        .menu a:hover::after {
            transform: scaleX(1);
        }
        
        .menu-image {
            margin-bottom: 30px;
            max-height: 30px;
        }
}

/* ////////////////////////////////////////////////////////////////////////// 
【共通】　ページタイトル　_　パンくずリスト
////////////////////////////////////////////////////////////////////////// */

.page_titleContainer{
    background-image: linear-gradient(to bottom right, rgba(0, 161, 247, 1), rgb(0, 72, 158), rgb(0, 37, 91));
    padding: 75px 0;
    text-align: left;
}

h2.page_title {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6%;
    font-size: 1.5rem;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    line-height: 1.5;
    letter-spacing: 0.15em;
}

h2.page_title span.en{
    display: block;
    font-size: 0.875rem;
    margin-bottom: 10px;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

ul.breadcrumb_sp{
    display: none;
}

ul.breadcrumb_pc {
    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    color: #003E8B;
    padding: 50px 0;
}

ul.breadcrumb_pc li:not(:last-of-type)::after,ul.breadcrumb_sp li:not(:last-of-type)::after {
    content: "/";
    margin: 0 .6em; /* 記号の左右の余白 */
    color: #777; /* 記号の色 */
}

ul.breadcrumb_pc a{
    border-bottom: #003E8B 1px solid;
}


/* ////////////////////////////////////////////////////////////////////////// 
本文部分
////////////////////////////////////////////////////////////////////////// */

div#page{
    max-width: 1200px;
    margin: 0 auto 100px auto;
    padding: 0 6%;
    text-align: left;
    line-height: 1.3rem;
}

/* ▼▼▼本文部分の文字スタイル設定▼▼▼▼ */

.mincho{
    font-family: "Zen Old Mincho", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 1.5rem;
    margin-bottom: 40px;
}
div.page_readText{
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 2rem;
    text-align: justify;
    text-justify: inter-ideograph;
}
.sub_title_blue{
    background-color: #E9F0F8;
    color: #003E8B;
    font-weight: bold;
    font-size: 1rem;
    padding: 16px;
    margin-bottom: 20px;
}
.sub_title_line{
    border-bottom: #003E8B solid 1px;
    font-weight: bold;
    font-size: 1.125rem;
    padding-bottom: 10px;
    color: #003E8B;
    margin-bottom: 20px;
}
p.normalText{
    font-size: 1rem;
    line-height: 2rem;
    text-align: justify;
    text-justify: inter-ideograph;
}
p.smallText,span.smallText{
    font-size: 0.625rem;
    line-height: 1rem;
    text-align: justify;
    text-justify: inter-ideograph;
    margin-top: 10px;
}
span.smallText{
    display: block;
    margin-left: 30px;
}

.text_bold{
    font-weight: bold;
}

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

    .mincho{
        font-family: "Zen Old Mincho", serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
        font-size: 1.35rem;
        margin-bottom: 40px;
        letter-spacing: 0.1rem;
    }
    .sub_title_blue{
        font-size: 1rem;
        padding: 16px;
    }
    .sub_title_line{
        border-bottom: #003E8B solid 1px;
        font-weight: bold;
        font-size: 1rem;
        padding-bottom: 10px;
        color: #003E8B;
        margin-bottom: 20px;
    }
}

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

    div.page_readText{
        margin-bottom: 50px;
        letter-spacing: 0;
    }

    .mincho{
        font-family: "Zen Old Mincho", serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
        font-size: 1.2rem;
        margin-bottom: 35px;
        letter-spacing: 0.1rem;
    }

    .sub_title_blue{
        font-size: 1rem;
        line-height: 1.5rem;
        padding: 15px;
    }

    p.normalText{
        line-height: 1.8rem;
    }
}

/* ////////////////////////////////////////////////////////////////////////// 
【共通】　フッター
////////////////////////////////////////////////////////////////////////// */

footer.footer{
    margin: 0 auto;
}

div.footerBtn_container{
    background-color: #E9F0F8;
    padding: 50px 0;
    margin: 0 auto;
}
div.footer_BtnFlex{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
div.footer_BtnEntry{
    margin-right: 80px;
}
div.footer_BtnEntry,div.footer_BtnInfo{
    width: 550px;
}

.footer_BtnEntry a {
    display: block;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 40px;
    margin-bottom: 15px;
    transition: background 0.3s;
    position: relative;
}

.footer_BtnEntry a:last-child{
    margin-bottom: 0;
}

.Btn_newEntry{
    background-color: #E30211;
    border: #E30211 1px solid;
    color: #ffffff;
}
.Btn_newEntry::after {
    content: '\2192'; /* → のUnicode */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px; /* 矢印の幅 */
    height: 16px; /* 矢印の高さ */
    margin-left: 40px;
    transition: margin-left 0.3s, background 0.3s, color 0.3s, transform 0.3s;
    border-radius: 50%;
}
.Btn_newEntry::after {
    position: absolute;
    right: 30px;
    background: white;
    color: #E30211;
    border: #E30211 solid 1px;
    width: 25px; /* ホバー時のサイズ調整 */
    height: 25px;
    transform: translateX(3px); /* 矢印を右に移動 */
}
.Btn_newEntry:hover{
    background-color: #ffffff;
    border: #E30211 1px solid;
    color: #E30211;
}

.Btn_careerEntry{
    background: #3C82D9;
}
.Btn_careerEntry::after {
    content: '\2192'; /* → のUnicode */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px; /* 矢印の幅 */
    height: 16px; /* 矢印の高さ */
    margin-left: 40px;
    transition: margin-left 0.3s, background 0.3s, color 0.3s, transform 0.3s;
    border-radius: 50%;
}
.Btn_careerEntry::after {
    position: absolute;
    right: 30px;
    background: white;
    color: #3C82D9;
    border: #3C82D9 solid 1px;
    width: 25px; /* ホバー時のサイズ調整 */
    height: 25px;
    transform: translateX(3px); /* 矢印を右に移動 */
}
.Btn_careerEntry:hover{
    background-color: #ffffff;
    border: #3C82D9 1px solid;
    color: #3C82D9;
}

.Btn_recruitQuestion{
    background-color: #2E2E2E;
}
.Btn_recruitQuestion::after {
    content: '\2192'; /* → のUnicode */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px; /* 矢印の幅 */
    height: 16px; /* 矢印の高さ */
    margin-left: 40px;
    transition: margin-left 0.3s, background 0.3s, color 0.3s, transform 0.3s;
    border-radius: 50%;
}
.Btn_recruitQuestion::after {
    position: absolute;
    right: 30px;
    background: white;
    color: #2E2E2E;
    border: #2E2E2E solid 1px;
    width: 25px; /* ホバー時のサイズ調整 */
    height: 25px;
    transform: translateX(3px); /* 矢印を右に移動 */
}
.Btn_recruitQuestion:hover{
    background-color: #ffffff;
    border: #2E2E2E 1px solid;
    color: #2E2E2E;
}


div.footer_BtnInfo a{
    position: relative;
    display: block;
    color: #003E8B;
    width: 100%;
    text-align: left;
    border-bottom: #003E8B solid 1px;
    padding: 20px 10px;
    margin-bottom: 15px;
    transition: background 0.3s;
}
div.footer_BtnInfo a:hover{
    background-color: #fff;
}

div.footer_BtnInfo i{
    position: absolute;
    right: 10px;
    font-size: 20px;
}
div.footer_BtnInfo a{
    color: #003E8B;
}
div.footer_BtnInfo a:last-child{
    margin-bottom: 0;
}
.footer_address{
    position: relative;
    background-color: #003E8B;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 65px 0;
}
div.footer_addressBox_L{
    text-align: left;
    padding-left: 100px;
}
li.footerLogo img{
    max-height: 35px;
    padding-right: 30px;
}
div.footer_addressBox_L li, div.footer_addressBox_R li{
    display: inline-block;
    position: relative;
    padding-right: 20px;
}
div.footer_addressBox_L li i, div.footer_addressBox_R li i{
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 12px;
}
div.footer_addressBox_R li{
    margin-right: 40px;
}
div.footer_addressBox_R li:last-child{
    margin-right: 0;
}
.footer_addressBox_R{
    text-align: right;
    padding-right: 100px;
}
span.copyright{
    display: block;
    font-size: 0.75rem;
    margin-top: 10px;
}

/* ////////////////////////////////////////////////////////////////////////// 
TOPページ用CSS
////////////////////////////////////////////////////////////////////////// */


/* スクロールダウンの位置 */
.scroll {
    position: absolute;
    right: 2%;
    bottom: 50%;
    writing-mode: vertical-rl;
    color: #ffffff;
}
  /* 線のアニメーション部分 */
.scroll::before {
    animation: scroll 2s infinite;
    background-color: #ffffff;
    bottom: -115px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
}
  /* 線のアニメーション */
@keyframes scroll {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    51% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }

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

    /* タブレット版 */
    .scroll {
        right: 47%;
        bottom: 60px;
        writing-mode: horizontal-tb;
        font-size: 0.75rem;
        letter-spacing: 0.15rem;
    }
    .scroll::before {
        bottom: -110px;
        height: 100px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        width: 1px;
    }
    
}

@media screen and (max-width: 767px) {
    .scroll {
        position: absolute;
        right: 45%;
        bottom: 18%;
        writing-mode: horizontal-tb;
        font-size: 0.6rem;
        letter-spacing: 0.1rem;
    }
      /* 線のアニメーション部分 */
    .scroll::before {
        position: absolute;
        bottom: -90px;
        height: 80px;
        left: 0;
        margin: auto;
        right: 0;
        width: 1px;
    }
    
}


/* スライダー用 */

.slider-container{
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* 背景に配置 */
}

.slides {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size:cover;  
    background-position: top center; /* 画像の中央を基準に表示 */
    opacity: 0;
    animation: fade 20s infinite;
    vertical-align: bottom;
}

/* PC版の画像 */
.slide1 { background-image: url('../img/image_mainvisual_01_pc.jpg'); animation-delay: 0s; }
.slide2 { background-image: url('../img/image_mainvisual_02_pc.jpg'); animation-delay: 5s; }
.slide3 { background-image: url('../img/image_mainvisual_03_pc.jpg'); animation-delay: 10s; }
.slide4 { background-image: url('../img/image_mainvisual_04_pc.jpg'); animation-delay: 15s; }

/* タブレット版の画像 */
@media screen and (max-width: 1024px) {
    .slide1 { background-image: url('../img/image_mainvisual_01_tb.jpg'); }
    .slide2 { background-image: url('../img/image_mainvisual_02_tb.jpg'); }
    .slide3 { background-image: url('../img/image_mainvisual_03_tb.jpg'); }
    .slide4 { background-image: url('../img/image_mainvisual_04_tb.jpg'); }
}

/* スマホ版の画像 */
@media screen and (max-width: 767px) {
    .slide1 { background-image: url('../img/image_mainvisual_01_sp.jpg'); }
    .slide2 { background-image: url('../img/image_mainvisual_02_sp.jpg'); }
    .slide3 { background-image: url('../img/image_mainvisual_03_sp.jpg'); }
    .slide4 { background-image: url('../img/image_mainvisual_04_sp.jpg'); }
}

  /* フェードイン・フェードアウトアニメーション */
@keyframes fade {
    0% { opacity: 0; }
    10% { opacity: 1; }
    25% { opacity: 1; }
    35% { opacity: 0; }
    100% { opacity: 0; }
}

/* スライド上のコピー用 */
.slide-text {
    text-align: left;
    width: 45%; /* PC版の幅 */
}

/* 日本語のコピー */
.topcopy_jp {
    font-family: "Zen Old Mincho", serif;
    font-size: min(3.5vw, 4rem);
    letter-spacing: 0.25rem;
    line-height: 9vh;
    margin-bottom: 20px;
}

/* 英語のコピー */
.topcopy_en {
    font-size: min(1.5vw, 0.8rem);
    letter-spacing: 0.2rem;
    font-weight: normal;
    padding-left: 0.5rem;
}


/* スライド1だけ色と位置を変更 */
.slide1 .slide-text{
    position: absolute;
    bottom: 11.5%;
    right: 0.5%;
    color: #fff; 
}

/* スライド2だけ色と位置を変更 */
.slide2 .slide-text{
    position: absolute;
    top: 38%;
    left: 15%;
    color: #003E8B; 
}

/* スライド3だけ色と位置を変更 */
.slide3 .slide-text{
    position: absolute;
    bottom: 23.5%;
    right: 0%;
    color: #003E8B; 
}

/* スライド4だけ色と位置を変更 */
.slide4 .slide-text{
    position: absolute;
    top: 38%;
    left: 13%;
    color: #fff; 
}


/* タブレット版 */
@media screen and (max-width: 1024px) {
    .slide1 .slide-text, .slide2 .slide-text, .slide3 .slide-text, .slide4 .slide-text {
        width: 100%; /* 幅を広げる */
        left: 5%;
        bottom:15%;
        right: auto;
        top: auto;
    }
    .topcopy_jp {
        font-size: min(6.5vw, 5rem);
        line-height: 6.5vh;
        letter-spacing: 0.3rem;
        color: #fff;
        margin-bottom: 15px;
    }
    .topcopy_en {
        font-size: min(1.85vw, 2rem);
        letter-spacing: 0.15rem;
        padding-left: 0.35rem;
        color: #fff;
    }
}

/* スマホ版 */
@media screen and (max-width: 767px) {
    .slide1 .slide-text, .slide2 .slide-text, .slide3 .slide-text, .slide4 .slide-text {
        width: 100%; /* 幅を広げる */
        left: 5%;
        bottom: 35%;
    }
    .topcopy_jp {
        font-size: min(20vw, 1.65rem);
        line-height: 5vh;
        letter-spacing: 0.2rem;
    }
    .topcopy_en {
        font-size: min(9.5vw, 0.6rem);
        line-height: 1.5vh;
        letter-spacing: 0.1rem;
        padding-left: 0.1rem;
    }
}


/* メインコンテンツ用 */

.main-container{
    background-color: #0053BA;
    padding: 120px 0 100px 0;
}
.main-container a:hover{
    opacity: 0.5;
    transition-duration: 0.3s;
}
.main_copy{
    color: #ffffff;
    letter-spacing: 0.3rem;
}
.main_copy p{
    line-height: 2.5rem;
}

span.main_mincho{
    display: inline-block;
    font-family: "Zen Old Mincho", serif;
    font-style: normal;
    font-size: 2.25rem;
    line-height: 4rem;
    margin-top: 10px;
}

.main_movie{
    max-width: 600px;
    margin: 50px auto 100px auto;
}

.main_title{
    background-color: #ffffff;
    padding: 50px 0;
    margin-bottom: 80px;
}
.main_title_noback {
    padding: 60px 0;
    margin-bottom: 0;
    align-items: center;
    text-align: center;
}

.main_title_en{
    font-size: 0.75rem;
    letter-spacing: 0.15rem;
    display: inline-block;
    background-color: #0053BA;
    color: #ffffff;
    padding: 5px 50px;
    margin-bottom: 20px;
}
.main_title_jp{
    color: #0053BA;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
}
.main_title_en-w{
    font-size: 0.75rem;
    letter-spacing: 0.15rem;
    display: inline-block;
    background-color:#ffffff;
    color:#0053BA;
    padding: 5px 50px;
    margin-bottom: 20px;
}
.main_title_jp-w{
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
}

@media screen and (max-width: 1024px) {
    .main-container{
        padding: 130px 0 30px 0;
    }

    .main_copy{
        letter-spacing: 0.1rem;
    }

    .main_copy p{
        line-height: 2.5rem;
        font-size: 1rem;
    }
    
    span.main_mincho{
        font-size: 1.5rem;
        line-height: 3rem;
        letter-spacing: 0.3rem;
        margin-top: 10px;
    }

    .main_movie{
        max-width: 70%;
        margin: 70px auto 100px auto;
    }

    .main_title{
        padding: 50px 25px 40px 25px;
        margin-bottom: 50px;
    }

    .main_title_noback {
        padding: 30px 25px;
        margin-bottom: 40px;
    }
    
    .main_title_en{
        font-size: 0.75rem;
        padding: 5px 30px;
        margin-bottom: 15px;
    }
    .main_title_jp{
        font-size: 2rem;
        letter-spacing: 0.5rem;
    }
    .main_title_en-w{
        font-size: 0.75rem;
        padding: 5px 30px;
        margin-bottom: 15px;
    }
    .main_title_jp-w{
        color: #ffffff;
        font-size: 2rem;
        letter-spacing: 0.5rem;
    }
    
}

@media screen and (max-width: 767px) {
    .main-container{
        padding: 80px 0;
    }

    .main_copy{
        letter-spacing: 0.15rem;
    }

    .main_copy p{
        line-height: 2rem;
        font-size: .875rem;
    }
    
    span.main_mincho{
        font-size: 1rem;
        line-height: 2rem;
    }

    .main_movie{
        max-width: 80%;
        margin: 50px auto 80px auto;
    }

    .main_title{
        padding: 35px 25px 30px 25px;
        margin-bottom: 30px;
    }

    .main_title_noback {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .main_title_en{
        font-size: 0.6rem;
        padding: 5px 30px;
        margin-bottom: 15px;
    }
    .main_title_jp{
        font-size: 1.5rem;
        letter-spacing: 0.25rem;
    }
    .main_title_en-w{
        font-size: 0.6rem;
        padding: 5px 30px;
        margin-bottom: 15px;
    }
    .main_title_jp-w{
        color: #ffffff;
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: 0.5rem;
    }
    
}

/* メイントピックス用ボタン */

.main_topics {
    padding: 0 50px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.button_container {
    display: flex;
    justify-content: space-between;
    width: 100%; /* 横幅を100%に設定 */
    margin-right: 25px;
}
.button_container:last-child{
    margin-right: 0;
}

.button {
    position: relative;
    width: 100%; /* 4つのボタンが均等に並ぶように */
    height: auto;
    margin-left: 25px;
    margin-bottom: 25px; /* ボタン間の縦のスペース */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.button:first-child {
    margin-left: 0;
}

.button-image {
    width: 100%;
    height: 315px;
    object-fit: cover;
    transition: opacity 0.3s ; /* アニメーションの設定 */
}
.button-image:hover{
    opacity: 0.7;
}

.button-text {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    color: #003E8B;
    letter-spacing: 0.15rem;
    padding: 20px;
    white-space: nowrap;
    font-weight: bold;
}

.button-text::after {
    content: '\2192'; /* → のUnicode */
    display: inline-flex;
    padding-left: 3px;
    align-items: center;
    justify-content: center;
    width: 16px; /* 矢印の幅 */
    height: 16px; /* 矢印の高さ */
    transition: margin-left 0.3s, background 0.3s, color 0.3s, transform 0.3s;
    border-radius: 50%;
}

.button-text::after {
    position: absolute;
    right: 20px;
    background: #003E8B;
    color: #fff;
    border: #003E8B solid 1px;
    width: 25px; /* ホバー時のサイズ調整 */
    height: 25px;
    transform: translateX(3px); /* 矢印を右に移動 */
}
.button-text:hover::after {
    background: #E30211;
    border: #E30211 solid 1px;
}



@media screen and (max-width: 1024px) {
    .main_topics {
        padding: 0 5%;
        flex-wrap: wrap; /* アイテムが折り返す */
    }

    .button_container {
        margin: 0;
        padding: 0;
        flex-wrap: wrap; /* ボタンが折り返す */
        margin-right: 0;
    }

    .button {
        width: calc(50% - 15px); /* 2列のレイアウト */
        margin-left: 15px;
        margin-bottom: 30px; /* ボタン間の縦のスペース */
    }
    .button:nth-child(3),.button:nth-child(4){
        margin-bottom: 0;
    }

    .button-image {
        height: 100%;
    }

    .button:first-child {
        margin-left: 0;
    }    
    
    .button-text::after {
        position: absolute;
        right: 10px;
    }
}

@media screen and (max-width: 767px) {
    .main_topics {
        padding: 0 30px;
        flex-direction: column;
    }

    .button_container{
        flex-direction: column;
    }

    .button {
        width: 100%;
        margin: 20px 0; /* 上下にスペース */
    }

    .button-image {
        width: 100%;
        height: auto;
    }

    .button-text {
        font-size: 1rem;
        letter-spacing: 0.15rem;
        padding: 20px 10px;
        text-align: center;
    }
}

/* インタビューコーナー */

.main_interview{
    background-color:#E9F0F8;
    padding: 50px 0 150px 0;
}
.interview_btn{
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 200px;
    transition: all 0.3s;
}
.interview_btn img{
    vertical-align: bottom;
}
.interview_btn:hover{
    opacity: 0.5;
    transition-duration: 0.3s;
}

.btn_interview_more{
    display: block;
    width: auto;
    margin: 0 auto;
    padding: 30px 200px;
    background-color: #0053BA;
    color: #ffffff;
    letter-spacing: 0.15rem;
}
.btn_interview_more::after{
    content: '\2192'; /* → のUnicode */
    display: inline-flex;
    padding-left: 5px;
    margin-left: 2rem;
    align-items: center;
    justify-content: center;
    width: 16px; /* 矢印の幅 */
    height: 16px; /* 矢印の高さ */
    transition: margin-left 0.3s, background 0.3s, color 0.3s, transform 0.3s;
    border-radius: 50%;
    background: #fff;
    color: #0053BA;
    border: #ffffff solid 1px;
    width: 25px; /* ホバー時のサイズ調整 */
    height: 25px;
}

@media screen and (max-width: 1024px) {
    .main_interview{
        padding: 50px 0 80px 0; 
    }

    .interview_btn{
        padding: 0 5%;
    }

    .btn_interview_more{
        padding: 20px 200px;
    }
}

@media screen and (max-width: 767px) {
    .main_interview{
        padding: 50px 0 80px 0; 
    }
    
    .interview_btn{
        display: block;
        width: auto;
        margin: 0 auto;
        padding: 0 30px;
    }
    .interview_btn a:hover{
        opacity: 0.5;
        transition-duration: 0.3s;
    }
    .interview_btn img{
        width: 100%;
        height: auto;
    }
    span.btn_interview_more{
        font-size: 1rem;
        position: relative;
        display: block;
        width: 100%;
        margin: 0 auto;
        text-align: left;
        padding: 20px ;
        background-color: #0053BA;
        color: #ffffff;
        letter-spacing: 0.05rem;
        font-weight: bold;
    }
    .btn_interview_more::after{
        padding-left: 0;
        position: absolute;
        right: 10px;
    }
    
}

/* 安心して働ける3つの要素コーナー */

.main_strengths{
    background: linear-gradient(#0085fe, #0053BA);
    padding: 50px 0 80px 0;
}

.strengths_container{
    display: flex;
    max-width: 1000px;
    margin: 30px auto 0 auto;
}
.photo-container {
    max-width: 350px;
    width: 100%;
    position: relative;
    display: inline-block;
    margin-right: 80px;
}
.photo-container:last-child {
    margin-right: 0;
}

.photo-container img {
    display: block;
    width: 100%;
    height: auto;
}

.circle-number {
    position: absolute;
    top: -40px;
    left: -30px;
    width: 70px;
    height: 70px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
}
span.strengths_title {
    display: block;
    color: #ffffff;
    font-weight: bold;
    font-size: 1rem;
    padding: 25px 10px 10px 10px;
    border-bottom: 1px solid #fff;
    letter-spacing: 0.1rem;
    margin-bottom: 20px;
}
.strengths_container p{
    color: #ffffff;
    font-size: 0.75rem;
    line-height: 1.35rem;
    text-align: justify;
    text-justify: inter-ideograph;
}

@media screen and (max-width: 1024px) {
    .main_strengths{
        padding: 50px 3% 70px 3%;
    }
    
    .strengths_container{
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 0 5%;
    }
    .photo-container {
        display: flex;
        max-width: 100%;
        width: 100%;
        margin-right: 0;
        margin-bottom: 60px;
    }
    .photo-container:last-child {
        margin-bottom: 0;
    }
    .photo-container-img {
        width: calc(100%/2);
    }
    .photo-container-text{
        width: calc(100%/2);
        padding-left: 3%;
    }
    span.strengths_title {
        display: block;
        text-align: left;
        font-size: 1rem;
        padding-top: 0;
    }
    .strengths_container p{
        color: #ffffff;
        font-size: 0.7rem;
        line-height: 1.3rem;
        text-align: justify;
        text-justify: inter-ideograph;
    }
}

@media screen and (max-width: 767px) {
    .main_strengths{
        padding: 50px 15px 80px 15px;
    }
    
    .strengths_container{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }
    .photo-container {
        position: relative;
        width: 100%;
        display: block;
        margin: 0 auto 80px auto;
    }
    .photo-container:last-child {
        margin-right: auto; /* 余白をリセット */
        margin-left: auto;  /* 中央揃え */
        margin-bottom: 0;
    }

    .photo-container-text{
        padding-left: 0;
    }
    
    .photo-container img {
        display: block;
        width: 100%;
        height: auto;
    }
    
    .circle-number {
        position: absolute;
        top: -40px;
        left: -20px;
        width: 70px;
        height: 70px;
        border: 1px solid #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: #ffffff;
    }
    span.strengths_title {
        font-size: 1.1rem;
        padding-top: 15px;
        text-align: center;
    }
    .strengths_container p{
        color: #ffffff;
        font-size: 0.75rem;
        line-height: 1.35rem;
        text-align: justify;
        text-justify: inter-ideograph;
    }
    .photo-container-img {
        width: 100%;
    }
    .photo-container-text{
        width: 100%;
    }
    
}

/* 代表メッセージ コーナー */
.main_message{
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
}
.main_message a {
    display: block;
}

.main_message img {
    display: inline-block;  /* 画像の下の隙間をなくす */
    width: 100%;  /* 必要なら追加 */
    height: auto;  /* 必要なら追加 */
    vertical-align: bottom;
}
.main_message a:hover{
    opacity: 0.5;
    transition-duration: 0.3s;
}

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

/* ////////////////////////////////////////////////////////////////////////// 
スマホ・タブレット版サイト_調整
////////////////////////////////////////////////////////////////////////// */

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

    .page_titleContainer{
        padding: 50px 0;
        text-align: center;
    }
    h2.page_title span.en{
        font-size: 0.625rem;
        line-height: 1rem;
    }

    div.footer_BtnFlex{
        max-width: 90%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    div.footer_BtnInfo{
        margin-top:  0;
    }
    div.footer_BtnEntry,div.footer_BtnInfo{
        width: 90%;
    }
    div.footer_BtnEntry{
        margin-right: 50px;
    }
    
    .footer_address{
        display: flex;
        padding: 50px;
    }
    div.footer_addressBox_L{
        text-align: left;
        padding-left: 0;
    }
    div.footer_addressBox_R{
        text-align: right;
        padding-left: 0;
    }
    li.footerLogo img{
        max-height: 35px;
        padding-right: 30px;
        margin-bottom: 10px;
    }
    div.footer_addressBox_L li, div.footer_addressBox_R li{
        display: inline-block;
    }
    div.footer_addressBox_L li:last-child{
        padding-right: 0;
    }
    div.footer_addressBox_R li{
        margin-right: 0;
        margin-bottom: 10px;
    }
    div.footer_addressBox_R li:last-child{
        margin-bottom: 0;
    }
    .footer_addressBox_R{
        padding-right: 0;
        margin-top: 0;
    }
    span.copyright{
        display: block;
        font-size: 0.75rem;
        margin-top: 15px;
        text-align: right;
    }
}

@media screen and (max-width: 767px) {
    
    .page_titleContainer{
        background-image: linear-gradient(to bottom right, rgba(0, 161, 247, 1), rgb(0, 72, 158), rgb(0, 37, 91));
        padding: 40px 0;
        text-align: center;
    }
    h2.page_title {
        max-width: 100%;
        font-size: 1.25rem;
        white-space: nowrap;
    }
    h2.page_title span.en{
        font-size: 0.625rem;
    }

    ul.breadcrumb_pc {
        display: none;
    }
    ul.breadcrumb_sp{
        display: block;
        display: flex;
        font-size: 0.6875rem;
        flex-wrap: wrap;
        list-style: none;
        color: #003E8B;
        padding: 15px;
        background-color: #E9F0F8;
    }

    div#page{
        margin: 35px auto 100px auto;
        padding: 3% 8%;
        text-align: left;
        font-size: 1rem;
        line-height: 2em;
    }
    div.footer_BtnFlex{
        max-width: 100%;
        display: flex;
        flex-flow: column;
    }
    div.footer_BtnEntry,div.footer_BtnInfo{
        width: 85%;
    }
    div.footer_BtnInfo{
        margin-top:  30px;
    }
    div.footer_BtnEntry{
        margin-right: 0;
    }
    
    .footer_address{
        display: flex;
        flex-flow: column;
        padding: 65px 0 40px 0;
    }
    div.footer_addressBox_L,div.footer_addressBox_R{
        text-align: center;
        padding-left: 0;
    }
    li.footerLogo img{
        max-height: 35px;
        padding-right: 0;
        margin-bottom: 10px;
    }
    div.footer_addressBox_L li, div.footer_addressBox_R li{
        display: block;
    }
    div.footer_addressBox_R li{
        display: inline-block;
        margin-right: 20px;
        margin-bottom: 10px;
        font-size: 0.875rem;
    }

    div.footer_addressBox_R li:last-child{
        margin-bottom: 0;
    }
    .footer_addressBox_R{
        text-align: left;
        padding-right: 0;
        margin-top: 20px;
    }
    span.copyright{
        text-align: center;
        display: block;
        font-size: 0.75rem;
        margin-top: 15px;
    }
    
}

/* ////////////////////////////////////////////////////////////////////////// 
【共通】　固定　エントリーボタン
////////////////////////////////////////////////////////////////////////// */

header.header_main .entry-btn{
    max-width: 200px;
    height: 60px;
    padding: 11px 0 0 0;
    line-height: 1.2rem;
}
header.header_main .menu{
    padding-top: 11px;
}

.entry-btns {
    display: flex;
    gap: 5px;
}

.entry-btn {
    padding: 10px;
    width: 120px;
    color: white;
    text-decoration: none;
    border-radius: 2px;
    white-space:nowrap;
    font-size: 0.875rem;
    font-weight: bold;
    transition: background 0.3s;
    
}

.entry-btn.red-btn { 
    background: #E30211;
    border: 1px solid #E30211;
 }
.entry-btn.red-btn:hover { 
    background-color: #fff;
    border: 1px solid #E30211;
    color: #E30211;
 }
.entry-btn.blue-btn {
    background: #3C82D9;
    border: 1px solid #3C82D9;
}
.entry-btn.blue-btn:hover {
    background-color: #fff;
    border: 1px solid #3C82D9;
    color: #3C82D9;;
}

/* スマホ版の固定ボタン */
.mobile-entry {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(46, 46, 46, 0.7);
    padding: 10px 0;
    text-align: center;
    transition: opacity 0.5s;
    font-size: 1rem;
    z-index: 10000;
}

.mobile-entry a {
    display: flex;  /* ← フレックスボックスを使用 */
    align-items: center;  /* ← 縦方向の中央揃え */
    justify-content: center;  /* ← 横方向の中央揃え */
    width: 45%;
    padding: 10px;
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold; /* 文字を見やすく */
}

.red-btn { background: #E30211; }
.blue-btn { background: #3C82D9; }

/* タブレット版の調整 */
@media screen and (max-width: 1024px) {

    /* ヘッダーの高さ分の余白を確保 */
    body::before {
        content: "";
        display: block;
        height: 85px; /* ヘッダーの高さ */
    }
    header.header_main .menu{
        padding-top: 80px;
    }
    header.header_main .entry-btn{
        max-width: 100%;
        height: 100%;
        padding: 20px;
    }

    .header .logo{
        padding-top: 0;
    }
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }
    .menu { display: none; }
    .menu-toggle { display: flex; }
    .tablet-container {
        display: flex;
        align-items: center;
        gap: 15px;
        position: relative;
        flex-grow: 1;
    }
    .entry-btns {
        position: relative;
        top: 0;
        right: 55px;
        display: flex;
        gap: 0;
        height: 100%;
    }
    .entry-btn{
        border-radius: 0;
        padding: 21.5px;
        width: 150px;
    }
}

/* メディアクエリ（スマホ向け） */
@media screen and (max-width: 767px) {
    /* ヘッダーの高さ分の余白を確保 */
    body::before {
        content: "";
        display: block;
        height: 57px; /* ヘッダーの高さ */
    }
    header.header_main .menu{
        padding-top: 15px;
    }
    .header .logo{
        padding-top: 0;
    }
    .mobile-entry { display: block; }
    .menu, .entry-btns { display: none; }
    .entry-btns br { display: none; }
    .entry-btn{
        border-radius: 0;
        padding: 10px;
    }
    .mobile-entry a {
        display: inline-block;  /* ← フレックスボックスを使用 */
        width: 46%;
        padding: 10px;
        margin: 0 auto;
    }
}


/* ////////////////////////////////////////////////////////////////////////// 
数字で知るオオサキ用css
////////////////////////////////////////////////////////////////////////// */

.number_maincontents_osaki{
    background-color: #E9F0F8;
    border-radius: 5px;
    padding:50px 0;
    margin-bottom: 50px;
}
.number_maincontents_person{
    background-color: #FFF0F1;
    border-radius: 5px;
    padding:50px 0;
}
.number_title{
    text-align: center;
    padding: 20px 100px;
    font-weight: normal;
    font-size: 1.5rem;
    letter-spacing: 0.15rem;
    margin-bottom: 50px;
    color: #FFF;
}
.title_flame-blue{background-color: #003E8B;}
.title_flame-red{background-color: #E30211;}

.number_container {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.pb20{
    padding-bottom: 20px;
}

.number_maincontents_osaki p.smallText{
    display: block;
    padding: 0 20px;
}

.number_container img {
    width: calc(25% - 15px); /* 画像4つと左右の余白を考慮 */
    height: auto;
}

/* タブレット用調整 */
@media screen and (max-width: 1024px) {

    .number_maincontents_osaki{
        padding:35px 0;
    }
    .number_maincontents_person{
        padding:35px 0;
    }
    .number_title{
        padding: 5px 50px;
        font-size: 1.2rem;
        margin-bottom: 25px;
    }    
    .number_container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .pb20{
        padding-bottom: 20px;
    }
    
    .number_container img {
        width: calc(25% - 10px); /* 画像4つと左右の余白を考慮 */
        height: auto;
    }
}

/* スマホ用調整 */

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

    .number_maincontents_osaki{
        padding:30px 0;
        margin-bottom: 30px;
    }
    .number_maincontents_person{
        padding:30px 0;
    }

    .number_title{
        padding: 10px 30px;
        font-size: 1.25rem;
        letter-spacing: 0.1rem;
        margin-bottom: 15px;
        line-height: 2rem;
    }
    
    .number_container {
        flex-direction: column;
        align-items: center;
        padding-bottom: 0;
    }

    .number_container img {
        width: 100%;
        height: 100%;
        margin: 12.5px 0; /* スマホ版では上下の余白を小さめに */
    }
}


/* ////////////////////////////////////////////////////////////////////////// 
先輩社員インタビュー用css
////////////////////////////////////////////////////////////////////////// */

.interview_container {
    width: 1000px;
    max-width: 100%;
    margin: 70px auto 0 auto;
    display: flex;
    justify-content: space-between;
}

.interview_member{
    position: relative;
    width: calc(33.33% - 22.5px); /* 3等分 & 左右の余白を考慮 */
    flex-wrap: nowrap;
}
.spacer {
    height: 100px; /* ナビゲーションの下の余白を作る */
}

.job_category{
    position: absolute;
    top: 0;
    left: 0;
    background-color: #003E8B;
    font-size: 0.75rem;
    color: #FFF;
    padding: 3px 15px;
}

.interview_member img{
    height: auto;
}

.interview_button:hover{
    opacity: 0.5;
    transition-duration: 0.3s;
}

span.member_name{
    display: block;
    text-align: center;
    color: #2E2E2E;
    padding-top: 5px;
    line-height: 1.5rem;
}

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

    .interview_member{
        position: relative;
        width: calc(33.33% - 15px); /* 3等分 & 左右の余白を考慮 */
        flex-wrap: nowrap;
    }

    .job_category{
        font-size: 0.6rem;
        padding: 2px 8px;
    } 

    span.member_name{
        font-size: 0.85rem;
        line-height: 1.2rem;
    }

    .br_tab{
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .interview_container {
        flex-direction: column;
        align-items: center;
    }

    .interview_member {
        width: 100%;
        height: 100%;
        margin: 30px 0; /* スマホ版では上下の余白を小さめに */
    }

    .interview_member:first-child{
        margin-top: 0;
    }
}

/* 個人インタビューページ用 css */

.member_main-image img{
    vertical-align: bottom;
}

.member_profile_container{
    background-color: #E9F0F8;
    padding: 40px;
    text-align: justify;
    text-justify: inter-ideograph;
}

.member_profile-name{
    color: #0053BA;
    letter-spacing: 0.1rem;
    font-weight: bold;
}

.text-big{
    display: inline-block;
    font-size: 1.5rem;
    padding-left: 2rem;
}

.member_profile{
    font-size: 1rem;
    line-height: 1.8rem;
    margin-top: 25px;
}

.member_container{
    padding: 100px 0 80px 0;
}

.member_article{
    margin-bottom: 150px;
}
.member_article:last-child{
    margin-bottom: 80px;
}

h3.article_title{
    font-size: 1.2rem;
    color: #0053BA;
    margin-bottom: 30px;
    letter-spacing: 0.05rem;
}
.member_article img{
    margin-top: 80px;
    vertical-align: bottom;
    padding: 0 100px;
}

.member_button {
    display: block;
    background-color: #003E8B;
    border: 1px solid #003E8B;
    color: #FFF;
    text-align: center;
    padding: 30px;
    margin: 0 150px;
    border-radius: 5px;
    letter-spacing: 0.1rem;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.member_button:hover {
    background-color: #FFF;
    color: #003E8B;
    border: 1px solid #003E8B;
}

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

    h3.article_title{
        font-size: 1.2rem;
        line-height: 1.8rem;
    }

    .member_profile_container{
        padding: 30px 50px;
    }

    .member_profile{
        font-size: 0.85rem;
        line-height: 1.5rem;
        margin-top: 15px;
    }

    .member_article{
        margin-bottom: 100px;
    }

    .member_article img{
        margin-top: 50px;
        padding: 0 50px;
    }
}

@media screen and (max-width: 767px) {
    .member_profile_container{
        padding: 30px;
    }

    .member_profile-name{
        font-size: 1rem;
        line-height: 1.5rem;
        text-align: center;
        letter-spacing: 0;
    }

    .member_profile{
        font-size: 0.75rem;
    }
    
    .text-big{
        font-size: 1rem;
        padding-left: 0;
    }

    .member_profile{
        font-size: 0.875rem;
        line-height: 1.5rem;
        margin-top: 20px;
    }

    .member_container{
        padding: 50px 0 80px 0;
    }
    
    .member_article{
        margin-bottom: 80px;
    }
    .member_article:last-child{
        margin-bottom: 50px;
    }
    
    h3.article_title{
        font-size: 1.1rem;
        line-height: 1.8rem;
        color: #0053BA;
        margin-bottom: 15px;
        letter-spacing: 0.05rem;
    }
    .member_article img{
        margin-top: 30px;
        padding: 0;
    }
    
    .member_button {
        text-align: center;
        padding: 20px;
        margin: 0 auto;
        border-radius: 40px;
    } 
    .br_pc{
        display: block;
    }
    
}

/* ////////////////////////////////////////////////////////////////////////// 
職種紹介用css
////////////////////////////////////////////////////////////////////////// */

/* ページ内リンク位置調整用 */

.job_category_menu{
    background-color: #E9F0F8;
    padding: 35px;
}

.job_category_menu_list{
    display: flex;
    justify-content: space-between;
}
.job_category_menu_list:last-child{
    margin-top: 30px;
}

.job_category_menu_list li{
    width: calc(100% / 4);
    display: block;
    color: #003E8B;
    margin-right: 40px;
    padding:0 5px 10px 20px;
    border-bottom: #003E8B 1px solid;
    background-image: url(../img/icon_arrow-01.png);
    background-repeat: no-repeat;   
    background-position-x: left;
    background-position-y: 30%;
    background-size: 15px;
}
.job_category_menu_list li:last-child{
    margin-right: 0;
}
.job_category_menu_list li a{
    display: block;
}

.job_category_title{
    background-image: linear-gradient(to bottom right, rgba(0, 161, 247, 1), rgb(0, 72, 158), rgb(0, 37, 91));
    border-bottom: 5px solid #E30211;
    display: flex;
    color: #fff;
    text-align: center;
    margin-top: 70px;
}

.job_name{
    font-size: 1.5rem;
    margin-top: 65px;
    letter-spacing: 0.25rem;
}

.job_name_en{
    margin-top: 16px;
    display: block;
    font-size: 0.625rem;
    line-height: 1rem;
    letter-spacing: 0.1rem;
}

.job_category_title-L{
    width: 40%;
    align-items: center;  /* 垂直方向の中央揃え */
}

ul.job_name_list{
    margin: 20px;
    padding: 0 30px;
}
ul.job_name_list li{
    border: #FFF solid 1px;
    font-size: 0.75rem;
    border-radius: 15px;
    padding: 3px;
    margin-bottom: 8px;
}
ul.job_name_list li:last-child{
    margin-bottom: 0;
}
ul.job_name_list a{
    position: relative;
    display: block;
    color: #ffffff;
}
ul.job_name_list li:hover{
    background-color: #003E8B;
    transition: background-color 0.5s;
}
ul.job_name_list a::before{
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 1px #ffffff;
    border-right: solid 1px #ffffff;
    transform: rotate(135deg);
    position: absolute;
    top: 25%;
    left: 10px;
    margin: auto;
}

.job_category_title-R{
    width: 60%;
}

.job_category_title-R img{
    vertical-align: bottom;
    height: auto;
    width: 100%;
}

.job_category_text{
    margin-top: 50px;
    text-align: justify;
    text-justify: inter-ideograph;
}

@media screen and (max-width: 1024px) {
    .job_category_menu{
        padding: 32px 36px;
    }

    .job_category_menu_list{
        flex-direction: column;
    }

    .job_category_menu_list li{
        width: 100%;
        margin-right: 0;
        margin-bottom: 24px;
        padding:0 4px 16px 24px;
        background-repeat: no-repeat;
        background-position-x: left;
        background-position-y: 5px;
        background-size: 15px;
    }
    .job_category_menu_list:last-child{
        margin-top: 15px;
    }
    .job_category_menu_list li:last-child{
        margin-bottom: 0;
    }
    .job_category_title-L{
        width: 40%;
        height: 100%;
        align-items: center;  /* 垂直方向の中央揃え */
    }
    .job_category_title-R{
        width: 60%;
    }

    .job_category_title-R img{
        height: 100%;
        object-fit: cover;
    }

    .job_name{
        font-size: 1.2rem;
        margin-top: 40px;
        letter-spacing: 0.15rem;
    }

    .job_name_en{
        font-size: 0.5rem;
        margin-top: 0;
        padding: 10px;
        line-height: 0.85rem;
    }
    ul.job_name_list{
        margin: 15px auto 35px;
        padding: 0 30px;
    }
}

@media screen and (max-width: 767px) {
    .job_category_menu{
        padding: 20px;
        margin-top: 30px;
    }

    .job_category_menu_list{
        flex-direction: column;
    }

    .job_category_menu_list li{
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        padding:0 5px 10px 20px;
        background-repeat: no-repeat;
        background-position-x: left;
        background-position-y: 10px;
        background-size: 15px;
    }
    .job_category_menu_list:last-child{
        margin-top: 15px;
    }
    .job_category_menu_list li:last-child{
        margin-bottom: 0;
    }
    
    .job_category_title{
        background-image: linear-gradient(to bottom right, rgba(0, 161, 247, 1), rgb(0, 72, 158), rgb(0, 37, 91));
        border-bottom: 5px solid #E30211;
        display: flex;
        flex-direction: column;
        color: #fff;
        text-align: center;
        margin-top: 70px;
    }

    .job_name{
        font-size: 1.25rem;
        margin-top: 40px;
    }

    .job_name_en{
        padding: 15px 0 10px 0;
        line-height: 0.85rem;
    }

    .job_category_title-L{
        width: 100%;
    }
    
    ul.job_name_list{
        margin: 15px auto 30px auto;
        padding: 0 20px ;
    }
    ul.job_name_list li{
        border: #FFF solid 1px;
        font-size: 0.75rem;
        border-radius: 30px;
        padding: 2px;
        margin-bottom: 8px;
    }
    
    .job_category_title-R{
        width: 100%;
    }
    
    .job_category_title-R img{
        vertical-align: bottom;
    }
    
    .job_category_text{
        margin-top: 40px;
        text-align: justify;
        text-justify: inter-ideograph;
    }
    
    
}


/* ////////////////////////////////////////////////////////////////////////// 
福利厚生・働きやすさ css
////////////////////////////////////////////////////////////////////////// */

.benefits_name{
    font-size: 1.5rem;
    margin-top: 110px;
    letter-spacing: 0.25rem;
}

.benefits_image{
    max-width: 500px;
    margin: 0 auto;
    vertical-align: bottom;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.2);
    border: #999 solid 1px;
    margin-top: 30px;
}

ul.box_frame-blue{
    padding: 15px;
    color: #003E8B;
    border: #003E8B solid 1px;
    margin-top: 20px;
    line-height: 1.5rem;
}

ul.box_frame-blue li{
    display: inline-block;
    margin-right: 35px;
}

.benefits_container{
    display: flex;
    margin-top: 20px;
}

.benefits_content{
    width:calc(100% / 3);
    margin-right: 45px;
}

.benefits_content:last-child{
    margin-right: 0;
}

.benefits_content img{
    max-height: 250px;
    vertical-align: bottom;
    margin-bottom: 10px;
}

.benefits_content p{
    font-size: 0.75rem;
    line-height: 1.25rem;
}

@media screen and (max-width: 1024px) {
    .benefits_name{
        font-size: 1.2rem;
        margin-top: 75px;
        letter-spacing: 0.25rem;
    }

    .benefits_content{
        margin-right: 20px;
    }
    
}

@media screen and (max-width: 767px) {
    .benefits_name{
        font-size: 1.2rem;
        margin-top: 50px;
    }

    .mb50{
        margin-bottom: 35px;
    }

    .benefits_image{
        width: 100%;
        margin-top: 10px;
    }

    .benefits_container{
        flex-direction: column;
        margin-top: 15px;
    }
    
    .benefits_content{
        width: 100%;
        margin-bottom: 20px;
    }
    
    .benefits_content img{
        margin-bottom: 5px;
    }

}

/* ////////////////////////////////////////////////////////////////////////// 
採用情報 css
////////////////////////////////////////////////////////////////////////// */

.recruit-container{
    margin-bottom: 70px;
}

.recruit-content img{
    max-width: 320px;
    height: 100%;
    vertical-align: bottom;
}

.recruit-accordion {
    width: 100%;
    margin: 5px auto;
}

.recruit-accordion-button {
    width: 100%;
    background-color: #003E8B;
    color: white;
    padding: 20px;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}
.icon {
    font-size: 30px;
}
.recruit-content {
    display: none;
    padding: 25px 0;
    /* border: 1px solid #ddd; */
}
.active {
    background-color: #003E8B;
}

/* アコーディオン関係ここまで */

.sub_title_line_grey{
    font-weight: bold;
    border-top: #ddd solid 1px;
    border-bottom: #ddd solid 1px;
    margin:32px 0 16px 0;
    padding: 12px 6px;
}

.button-arrow-red {
            width: 45%;
            display: inline-block;
            padding: 20px 30px;
            font-size: 16px;
            color: #E30211;
            background-color: #fff;
            border: #E30211 solid 1px;
            border-radius: 60px;
            cursor: pointer;
            text-decoration: none;
            position: relative;
            transition: background 0.3s;
            margin: 20px 30px 20px 0;
}

.button-arrow-red::after {
    content: '\2192'; /* → のUnicode */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px; /* 矢印の幅 */
    height: 16px; /* 矢印の高さ */
    margin-left: 40px;
    transition: margin-left 0.3s, background 0.3s, color 0.3s, transform 0.3s;
    border-radius: 50%;
}

.button-arrow-red:hover {
    background-color: #E30211;
    color: #FFF;
}

.button-arrow-red::after {
    position: absolute;
    right: 30px;
    background: white;
    color: #E30211;
    border: #E30211 solid 1px;
    width: 25px; /* ホバー時のサイズ調整 */
    height: 25px;
    transform: translateX(3px); /* 矢印を右に移動 */
}


.button-arrow-grey {
    width: 45%;
    display: inline-block;
    padding: 20px 30px;
    font-size: 16px;
    color: #2E2E2E;
    background-color: #fff;
    border: #2E2E2E solid 1px;
    border-radius: 60px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: background 0.3s;
    margin: 20px 30px 20px 0;
}

.button-arrow-grey::after {
content: '\2192'; /* → のUnicode */
display: inline-flex;
align-items: center;
justify-content: center;
width: 16px; /* 矢印の幅 */
height: 16px; /* 矢印の高さ */
margin-left: 40px;
transition: margin-left 0.3s, background 0.3s, color 0.3s, transform 0.3s;
border-radius: 50%;
}

.button-arrow-grey:hover {
background-color: #2E2E2E;
color: #FFF;
}

.button-arrow-grey::after {
position: absolute;
right: 30px;
background: white;
color: #2E2E2E;
border: #2E2E2E solid 1px;
width: 25px; /* ホバー時のサイズ調整 */
height: 25px;
transform: translateX(3px); /* 矢印を右に移動 */
}

@media screen and (max-width: 767px) {
    .recruit-content img{
        max-width: 100%;
        height: 100%;
        width: 100%;
    }

    .button-arrow-red,.button-arrow-grey {
        width: 100%;
}

    .button-arrow-red::after,.button-arrow-grey::after {
    position: absolute;
    top: 23px;
    right: 20px;
    }

    .button-arrow-grey {
        margin: 15px 0 5px 0;
    }

}


/* ////////////////////////////////////////////////////////////////////////// 
代表メッセージ用css
////////////////////////////////////////////////////////////////////////// */

.top_image{
    margin-bottom: 70px;
}

.top_name {
    margin-top: 30px;
    text-align: right;
}
.top_name img{
    max-height: 50px;
    vertical-align: bottom;
}

@media screen and (max-width: 767px) {
    .mt20{
        margin-top:50px;;
    }
    
    .top_image{
        margin-bottom: 30px;
    }
    
    .top_name {
        margin-top: 20px;
    }
    .top_name img{
        max-height: 30px;
        vertical-align: bottom;
    }
    
}