@charset "UTF-8";
:root {
    /* ヘッダーの高さ */
    --header-height: 80px;
}
html{
    scroll-padding-top: var(--header-height);
}
/*================
枠系
================*/
.wrapper {
    width: 100%;
    min-width: 1420px;    /* PADデバイスで見た場合の余白分10pxを加算 (A+10x2) */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}
/* main */
.main {
    position: relative;
    z-index: 1;
}
/* inner　サイト指定のコンテンツ幅に納めるコンテナ */
.inner {
    max-width: 1200px;    /* サイト指定のコンテンツ領域幅 (A)*/
    margin: 0 auto;
}
.inner-m {
    max-width: 1280px;    /* サイト指定のコンテンツ領域幅 (A)*/
    margin: 0 auto;
}
.inner-l {
    max-width: 1400px;    /* サイト指定のコンテンツ領域幅 (A)*/
    margin: 0 auto;
}
.inner-s {
    max-width: 1100px;    /* サイト指定のコンテンツ領域幅 (A)*/
    margin: 0 auto;
}
.inner-xs {
    max-width: 870px;    /* サイト指定のコンテンツ領域幅 (A)*/
    margin: 0 auto;
}
.inner-xxs {
    max-width: 750px;    /* サイト指定のコンテンツ領域幅 (A)*/
    margin: 0 auto;
}
.cnt-bg-01 {
    color: #fff;
    background: #102045;
    padding: 80px 0;
    box-sizing: border-box;
}
.cnt-bg-02 {
    background: #F5FBFF;
    padding: 100px 0 150px;
    box-sizing: border-box;
}
.mb-60{
    margin-bottom: 60px;
}
.mb-80{
    margin-bottom: 80px;
}

/*===パンくず===*/

/*================
タイトル・テキスト系
================*/
/*===タイトル===*/
.ttl-01 {
    color: #102045;
    font-size: 4.571em;
    font-weight: bold;
    line-height: 1.5;
}
.subttl-01:has(+ .ttl-01) {
    color: #fff;
    background: #102045;
}
.ttl-02 {
    font-size: 2.571em;
    font-weight: bold;
    line-height: 1.5;
    background: #fff;
    padding: 20px 40px;
    width: fit-content;
}
.cnt-bg-01:has(.ttl-02) {
    display: flex;
    align-items: center;
}
.cnt-bg-01.type-02:has(.ttl-02) {
    min-height: 600px;
}
.ttl-03 {
    font-size: 2em;
    font-weight: bold;
    line-height: 1.25;
}
/*.ttl-04 ttl-05同様*/
.ttl-04,
.ttl-05 {
    font-size: 2.286em;
    font-weight: bold;
    line-height: 1.25;
}
.ttl-06 {
    font-size: 1.714em;
    font-weight: bold;
    line-height: 1.5;
}
.ttl-07 {
    font-size: 2.057em;
    font-weight: bold;
    line-height: 1.5;
    background: #fff;
    width: fit-content;
}
.ttl-08 {
    color: #fff;
    font-size: 7.143em;
    font-weight: bold;
    line-height: 1.04;
    letter-spacing: -2px;
}
.subttl-01:has(+ .ttl-08) {
    color: #102045;
    background: #fff;
}
.ttl-09 {
    font-size: 1.714em;
    font-weight: bold;
    line-height: 1.25;
}
.ttl-10 {
    font-size: 3.286em;
    font-weight: bold;
    line-height: 1.5;
}
.subttl-01 {
    font-size: 1.429em;
    font-weight: bold;
    line-height: 1.25;
    padding: 2px 1px 2px;
    margin-bottom: 19px;
    width: fit-content;
}
.ttl-wrap:has(> .subttl-01) {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1; /* グラデーションより上に表示 */
}

/*===テキスト===*/
.txt-l {
    text-align: left;
}
.txt-c {
    text-align: center;
}
.txt-r {
    text-align: right;
}
.txt-bold {
    font-weight: bold;
}
.txt-in{
    text-indent: -1.5em;
    padding-left: 1.5em;
}
.txt-01 {
    font-size: 1.714em;
    line-height: 2;
}
.txt-02 {
    font-size: 1.143em;
    line-height: 2;
    background: #fff;
    padding: 15px 40px;
    width: fit-content;
}
.txt-03 {
    line-height: 1.5;
}
.txt-04 {
    font-size: 1.429em;
    line-height: 1.5;
}
.txt-05 {
    line-height: 1.25;
}
.txt-06 {
    font-size: 1.143em;
    line-height: 1.25;
}
.txt-07 {
    font-size: 1.143em;
    line-height: 2;
}
.txt-08 {
    font-size: 0.857em;
    line-height: 1.25;
}
.txt-09 {
    font-size: 1.429em;
    line-height: 1.25;
}
.txt-10 {
    font-size: 1.143em;
    line-height: 1.5;
}
.txt-11 {
    font-size: 1.429em;
    line-height: 2;
}

/*================
リスト
================*/
/* 横並びリスト */
.list-01>li {
    letter-spacing: 0.05em;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid rgba(16, 32, 69, 0.3);
    padding: 30px 0;
}
.list-01>li .list-ttl {
    width: clamp(80px, 20%, 150px);
}
.list-01>li .list-ttl .txt-03 {
    color: #555;
}
.list-01>li .list-ttl .txt-06 {
    font-weight: bold;
}
.list-01>li .list-cnt {
    flex: 1;
}
.list-01>li .list-cnt>*+* {
    margin-top: 16px;
}
.list-01>li .list-cnt a {
    color: #105CED;
    text-decoration: underline;
}

.list-01.type-02>li {
    padding: 30px 40px;
    gap: 40px;
}
.list-01.type-02>li .list-ttl{
    width: clamp(200px, 27.5%, 330px);
    box-sizing: border-box;
}

/* 数字付きリスト */
/* .list-02 {
    counter-reset: num;
}
.list-02>li {
    line-height: 1.5;
}
.list-02>li::before {
    counter-increment: num;
    content: counter(num) ". ";
} */
/*ドット*/
/* .list-03 {
    list-style: disc;
    padding-left: 1.5em;
}
.list-03 li+li {
    margin-top: 0.5em;
} */

/*================
テーブル
================*/
.tbl-01 th,
.tbl-01 td {
    padding: 20px 39px;
    border: 1px solid #AAA;
}
.tbl-01 th {
    background: #F5FBFF;
}
.tbl-01 td {
    background: #fff;
    padding: 20px;
    text-align: center;
}

/*================
リンク・ボタン
================*/
.btn-01 a {
    color: #105CED;
    font-size: 1.143em;
    line-height: 1.25;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #105CED;
    padding: 15px 64px 15px 20px;
    background: #fff;
    min-width: 300px;
    display: inline-block;
    box-sizing: border-box;
    position: relative;
}
.btn-01 .arrow2 {
    display: inline-flex;
    position: absolute;
    width: 20px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
/*強調*/
.btn-01.type-02 a {
    font-size: 1.429em;
    font-weight: bold;
    min-width: 350px;
    padding: 20px 64px 20px 20px;
}
/*カラー*/
.btn-01.bg-01 a {
    color: #fff;
    border: none;
    background: #105CED;
}
.btn-01.bg-02 a {
    color: #fff;
    border: none;
    background: #00857A;
}
/*画像＋文字付き*/
.btn-02 a{
    position: relative;
    display: inline-block;
}
.btn-02 a .img-cnt{
    display: inline-block;
    position: relative;
    border-radius: 5px;
    /* min-width: 570px;
    min-height: 300px; */
    box-sizing: border-box;
    overflow: hidden;
}
.btn-02 a .ttl-02{
    color: #102045;
}
.btn-02 a .ttl-03{
    color: #102045;
}
.btn-02 a .img-cnt + .ttl-03{
    margin-top: 14px;
}
.btn-02 a .img-cnt+.ttl-03 + .txt-03{
    margin-top: 15px;
}
/*画像のみ*/
.btn-02.type-02 a{
    overflow: hidden;
    border-radius: 5px;
}
/*ホバー拡大*/
.btn-02 a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-duration: 0.3s;
}
/*ホバー*/
@media (hover: hover) {
    .btn-02 a:hover img {
        transform: scale(1.2);
        opacity: 0.5;
    }
}
/*透過*/
/* .btn-02 a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #5D86A9;
    mix-blend-mode: multiply;
} */
.btn-02 .arrow2 {
    color: #105CED;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #FFF;
    position: absolute;
    bottom: 10px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #105CED;
    box-sizing: border-box;
}
.btn-02 .arrow2>svg {
    width: 20px;
    height: 10px;
}
.btn-02 .img-cnt + *{
    margin-top: 20px;
}
/*リンク*/
.link-01 a{
    color: #105CED;
    display: flex;
    align-items: center;
    width: fit-content;
}
.link-01 a .link-ex{
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-right: 10px;
}
.link-01 a .arrow2{
    color: #000;
    width: 14px;
    height: 7px;
    display: inline-block;
    margin-right: 10px;
}
/*ページ内リンク*/
/* .nav-wrap-01 {
    background: #000;
    color: #fff;
} */
.nav-wrap-01 .nav-link-01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 0;
}
.nav-wrap-01 .nav-link-01 li {
    font-size: 1.143em;
    text-align: center;
    line-height: 1;
    padding: 14px 10px;
    box-sizing: border-box;
    border-right: 1px solid #B7BCC7;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}
.nav-wrap-01 .nav-link-01 li:first-child{
    border-left: 1px solid #B7BCC7;
}
.nav-wrap-01 .nav-link-01 li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
}
.nav-wrap-01 .nav-link-01 li .arrow-down {
    color: #105CED;
    width: 15px;
    height: 9px;
    margin-left: 10px;
}
/*他ページリンク*/
.section-other{
    padding: 100px 0 150px;
    margin-top: 0;
}
.section-other .inner > .ttl-03{
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}
.section-other .ttl-03 span{
    background: #102045;
    padding: 3px 5px;
}
.section-other .flex-cnt-01 .ttl-03{
    color: #102045;
    margin-top: 13px;
}
.section-other .flex-cnt-01 .btn-02 a{
    width: 100%;
}
.section-other .btn-02 a .img-cnt{
    height: 300px;
    width: 100%;
}


.section-other .btn-01{
    text-align: center;
    margin: 60px auto 0;
}
.section-other .btn-01 a{
    background-color: #fff;
}

/*================
  横並び
  ================*/
/*==gap60 2列==*/
.flex-wrap-01 {
    display: flex;
    flex-wrap: wrap;
    gap: 100px 60px;
    justify-content: flex-start;
}
.flex-wrap-01 .flex-cnt-01 {
    width: calc((100% - 60px * 1) / 2);
    box-sizing: border-box;
}
/*3列：SPは2列*/
.flex-wrap-01.flex-3 .flex-cnt-01 {
    width: calc((100% - 60px * 2) / 3);
}
/*==gap40 2列：SP時は1列==*/
.flex-wrap-02 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}
.flex-wrap-02 .flex-cnt-01 {
    width: calc((100% - 40px * 1) / 2);
    box-sizing: border-box;
}

/*================
  メインビジュアル
================*/
.mv-wrap-01{
    height: 600px;
    background-color: #00857A;
    position: relative;
}
.mv-wrap-01::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    mix-blend-mode: multiply;
    z-index: 0;
}
.mv-wrap-01 > *{
    height: 100%;
    display: flex;
}
.mv-wrap-01 .ttl-wrap{
    margin: auto 0 50px;
    z-index: 1;
}
.mv-wrap-01 .ttl-wrap .ttl-01{
    color: #fff;
}
.mv-wrap-01 .ttl-wrap .subttl-01:has(+ .ttl-01){
    color: #102045;
    background-color: #fff;
}
.mv-wrap-01 .ttl-wrap .txt-04{
    color: #fff;
}
.mv-wrap-01 .ttl-wrap > .txt-04{
    margin: 40px 0 5px;
}
.mv-wrap-01 .ttl-wrap .txt-05{
    color: #fff;
    margin-left: 15px;
}
/*type-02*/
.mv-wrap-01.type-02{
    height: 796px;
}
.mv-wrap-01.type-02 .ttl-wrap{
    margin: auto 0 40px;
}
/*type-03*/
.mv-wrap-01.type-03{
    height: 796px;
}
.mv-wrap-01.type-03 .ttl-wrap .ttl-08 .ttl-bg{
    background-color: rgba(16, 32, 69, 0.6);
    padding: 0.02em 0;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline;
}
.mv-wrap-01.type-03::after{
    display: none;
}


/*================
ヘッダー
================*/
/*===外枠===*/
.header_01.header-group {
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    z-index: 101;
    background-color: #fff;
}
.header_01 .header-group-inner {
    position: relative;
    z-index: 2;
}
.header-width {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}
/*ロゴ*/
.header-logo {
    display: flex;
}
.header-logo a {
    display: flex;
    align-items: center;
    width: min(28vw, 438px);
    padding-left: 40px;
}
.header-global-01 {
    display: flex;
    flex-direction: column;
    width: 100%;
}
/*リンクと外枠*/
.header-nav-wrap {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    width: 100%;
    max-width: inherit;
}
/*===リンク===*/
.header-nav {
    background-color: #fff;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.hglb02-nav {
    display: flex;
    justify-content: flex-end;
    /* align-items: center; */
    flex-wrap: wrap;
    column-gap:60px;
}
/*親子リンク共通*/
/* .hglb02-nav a:hover, 
.hglb02nv-item.is-active > a {
  color: #0074B8;
  font-weight: bold;
  opacity: 1;
}
*/
/*親メニュー*/
.hglb02nv-item {
    display: flex;
    flex-direction: column;
    position: relative;
}
.hglb02nv-item>a {
    color: #000;
    font-size: 1.143em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 0 8px;
    padding-top: 25px;
    box-sizing: border-box;
}
/* .hglb02nv-item {
    position: relative;
} */
.hglb02nv-item .arrow-down {
    color: #105CED;
    width: 15px;
    display: flex;
}
/*小メニュー*/
.hglb02nv-item .hglb02nv-child-wrap {
    position: absolute;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    box-shadow: 0px 0px 20px 0px rgba(16, 92, 237, 0.15);
    border-top: 2px solid #105CED;
    background-color: #fff;
    padding: 40px 20px;
    width: 215px;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
}
.hglb02nv-item.is-active .hglb02nv-child-wrap {
    opacity: 1;
    visibility: visible;
}
@media (hover: hover) {
    .hglb02nv-item:hover .hglb02nv-child-wrap {
        opacity: 1;
        visibility: visible;
    }
}
.hglb02nv-child-item:not(:last-child) {
    margin-bottom: 15px;
}
.hglb02nv-item .hglb02nv-child-wrap .hglb02nv-child-link {
    display: flex;
    gap: 0 5px;
}
.hglb02nv-item .hglb02nv-child-wrap .arrow {
    color: #105CED;
    width: 14px;
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}
/*マイナビ*/
.header-ex-btn{
    order: 4;
    margin-left: 60px;
}
.header-ex-btn a{
    color: #fff;
    font-size: 1.429em;
    font-weight: bold;
    line-height: 1.25;
    text-align: center;
    background-color: #105CED;
    padding: 15px;
    box-sizing: border-box;
    width: 135px;
    display: block;
    position: relative;
}
.header-ex-btn .link-ex{
    width: 15px;
    height: 15px;
    display: inline-block;
    position: absolute;
    right: 5px;
    bottom: 8px;
}

/*================
フッター
================*/
/*===フッターリクルート部分===*/
.footer-recruit{
    background: url('/recruit/common/imgs/foot_rec_bg.jpg')no-repeat center/cover;
    padding: 150px 0 288px;
}
.footer-recruit .ttl-01{
    text-align: center;
    margin-bottom: 60px;
}
.footer-recruit .footer-recruit-link{
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 60px;
}
.footer-recruit .footer-recruit-link .btn-01 a{
    min-width: 350px;
}
.footer-recruit .footer-recruit-link .btn-01:last-child a{
    padding: 20px;
}

/*===フッターメイン部分===*/
.footer-global-1 {
    background: #F5FBFF;
    padding: 60px 0 96px;
}
.footer-global-1 .fglb01-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0 159px;
}
/*左カラム*/
.footer-global-1 .fglb01-01-inner {
    display: flex;
    justify-content: space-between;
    gap: 0 40px;
    width: max-content;
}

/*右カラム*/
.footer-global-1 .fglb01-02-inner{
    flex: 1;
}
.fglb01-02-outer{
    display: flex;
    gap: 0 40px;
}
/*カラム*/
.fglb01-wrap{
    min-width: 200px;
}
/*タイトル*/
.fglb01w-ttl{
    font-size: 1.429em;
    border-bottom: 1px solid #105CED;
}
.fglb01w-nav{
    margin-top: 15px;
}
.fglb01w-nav li + li{
    margin-top: 10px;
}



/*===最下部===*/
.footer_01 .footer-global-03 {
    color: #102045;
    font-size: 1em;
}
.footer_01 .footer-global-03 .fglb03-inner {
    /* padding: 10px 0 14px; */
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
}
.footer_01 .footer-global-03 .fglb03-inner .ft-list-01 {
    padding: 13px 10px 12px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}
.footer_01 .footer-global-03 .fglb03-inner .ft-list-01 li {
    line-height: 1;
    border-right: 1px solid #102045;
    padding: 0 20px;
}
.footer_01 .footer-global-03 .fglb03-inner .ft-list-01 li:first-child {
    border-left: 1px solid #102045;
}
.footer_01 .footer-global-03 .fglb03-inner .ft-list-01 li a {
    padding: 0;
    display: inline-block;
}
.footer_01 .footer-global-03 .fglb03-inner .footer-copy {
    color: #fff;
    font-size: 1em;
    line-height: 1;
    text-align: center;
    background-color: #105CED;
    padding: 12px 10px;
}

@media only screen and (min-width: 769px) and (max-width: 1200px){
    .hglb02-nav{
        column-gap: 30px;
    }
    .hglb02nv-item>a{
        font-size: 1em;
        padding-top: 0;
    }
    .header-ex-btn{
        margin-left: 30px;
    }
    .header-logo a{
        width: 300px;
    }
}