@charset "UTF-8";
/* 基礎設定 */
html, body {
    font-size: 16px;
    line-height: 1.8;
    font-family: "Noto Sans JP", sans-serif;
    position: relative;
    font-weight: 400;
    margin: 0;
    padding: 0;
    width: 100%;
    /* background: #fff; */
    scroll-behavior: auto !important;
    overflow-x: hidden;
    animation: fadeIn 1s;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
    color: #465A64;
}
body.top-page::before {
    content: "";
    position: fixed;
    top: 90px;
    right: 0;
    width: 60vw;
    height: 100vh;
    background-image: url(../img/earth.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 5;
}
body.top-page::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(../img/bg.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    z-index: 1;
}
.nosc #head {
    border-radius: 5px 5px 0 0;
    filter: none;
}
/* body#cpage {  overflow-x: hidden;} */
/*--- 画面全体をフェードイン(animation設定) ---*/
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.txt-ja, span[lang='ja'] { font-family: "Noto Sans JP", sans-serif;}
.txt-en, span[lang='en'] {
    font-family: a-otf-ud-shin-go-pr6n, sans-serif;
}
/* html{ height: -webkit-fill-available;} */
html.nosc,body.nosc{
	/* overflow: hidden;
    overflow-x: scroll;
    overflow-y: auto; */
}
.color-red { color: #E40046;} 
.color-blue { color: #001F6B;}
.color-lblue { color: #E7ECF7;}
.color-wh{ color: #fff;}
.color-gr { color: #D6F0A8;}
.color-dgr { color: #465A64;}
.color-vgr { color: #73AE2E;}
.color-yg { color: #ABE8B9;}
.color-lgr{ color: #F4F595;}
.color-ye{ color: #FFF200;}
.color-ly{ color: #FFF9F4;}
.color-or{ color: #FFEABA;}
.color-prp{ color: #721DC8;}
.color-gray{ color: #7c7c7c;}
.color-bw{ color: #4D0001;}
.color-bk{ color: #000;}

.bg-red { background: #E40046;}
.bg-pn { background: #FCDBE4;}
.bg-blue { background: #001F6B;}
.bg-lblue { background: #E7ECF7;}
.bg-gr { background: #D6F0A8;}
.bg-dgr { background: #465A64;}
.bg-lgr { background: #F4F595;}
.bg-vgr { background: #73AE2E;}
.bg-yg { background: #ABE8B9;}
.bg-ye { background: #FFF200;}
.bg-lye { background: #FFF9F4;}
.bg-or { background: #FFEABA;}
.bg-lor { background: #ffecdc;}
.bg-bk { background: #000333;}
.bg-wh { background: #fff;}
.bg-gray { background: #7c7c7c;}
.bg-bw { background: #4D0001;}

.border-gray {
    border: 6px solid #F2F2F2;
}

.bg-box {
    padding: 1.5rem;
    border-radius: 5px;
    background: #EDF2F7;
    margin-bottom: 2rem;
}
.wh-box {
    padding: 1.5rem;
    background: #fff;
}

/* a:hover{
    color: #000;
} */

h1, h2, h3, h4, h5, h6 {
    color: #000;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin-inline: auto;
    margin-bottom: 1.5rem;
    padding: 0;
}
h1 { font-size: 50px;}
h2 { font-size: 32px;}
h3 { font-size: 29px;}
h4 { font-size: 26px;}
h5 { font-size: 22px;}
h6 { font-size: 20px;}

hgroup {
    & > span { 
        position: relative;
        color: #465A64;
        font-size: 13px;
        letter-spacing: .1em;
        padding-left: 1em;

        &::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: .3em;
            aspect-ratio: 1;
            border-radius: 100vmax;
            background: #E40046;
        }
    }

    h2 {
        font-size: 32px;
        color: #001F6B;
        line-height: 1.6;
    }
}
.tit-l-line {
    position: relative;
    color: #001F6B;
    width: 80vw;

    &::before {
        content: "";
        position: absolute;
        top: 50%;
        /* left: calc(-100% - 1.5em); */
        right: calc(100% + 1em);
        max-width: 150px;
        width: 100%;
        height: 3px;
        background: #001F6B;
    }
    &::after {
        content: "";
        position: absolute;
        top: 50%;
        /* left: -1.5em; */
        right: calc(100% + 1em);
        width: 0.5em;
        height: 3px;
        background: #E40046;
    }
}
.tit-line { 
    position: relative;  
    padding: 0.2rem 0;
    color: #001F6B;

    &::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 2em;
        height: 2px;
        background: #E40046;
    }
    &::after {
        content: "";
        position: absolute;
        left: 2em;
        bottom: 0;
        width: calc(100% - 2em);
        height: 2px;
        background: #E1E1E1;
    }
}
.tit-bg {
    position: relative;
    display: block;
    color: #001F6B;
    padding: .2em 1.5em;
    background: #fff;
    border-radius: 100vmax;

    &::before {
        content: "■";
        position: absolute;
        top: 50%;
        left: 1.25em;
        transform: translateY(-50%);
        font-size: .5em;
        font-weight: 700;
        color: #E40046;
    }
}
.other-pages .sec-inline > div:nth-child(even) {
    & > .tit-bg {
        background: #F8F8F8;
    }
}
.tit-bd-l {
    position: relative;
    padding: 0 .5em;
    color: #001F6B;
}
.tit-bd-l::before, .tit-bd-l::after {
    content: "";
    position: absolute;
    top: 0.5em;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #E40046;
}
.tit-bd-l::after {
    top: calc(0.5em + 10px);
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #001F6B;
}
.tit-point {
    display: flex;
    align-items: center;
    color: #001F6B;
}
.tit-point::before {
    content: "■";
    font-size: 0.5em;
    font-weight: 700;
    padding-right: 0.5em;
    color: #E40046;
}
.tit-color {
    color: #001F6B;
}
.tit-bar {
    border-bottom: 1px solid #001F6B;
}
.box-wh {
    padding: 2.5em 3em;
    background-color: #fff;
    border-radius: 50px;
    box-sizing: border-box;
}
.box-gray {
    padding: 2.5em 3em;
    background-color: #F8F8F8;
    border-radius: 50px;
    box-sizing: border-box;
}
.box-blue {
    padding: 1rem;
    background-color: #DEF0FC;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #001F6B;
}

/* --- flex-box --- */
/* .flex-box {
    display: flex;
    justify-content: center;
}
.flex1 > div { width: 100%; }
.flex2 > div { width: 50%; }
.flex3 > div { width: calc(100% / 3); }
.flex4 > div { width: 25%; }
.flex5 > div { width: 20%; }
.flex-last {
    display: flex;
    justify-content: flex-end;
    flex-flow: column;
} */

/*--- grid-box ---*/
.grid-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
}
.grig-wrap0 { grid-gap: 0; }
.grid1 { grid-template-columns: repeat(1, 1fr); grid-gap: 0;}
.grid2 { grid-template-columns: repeat(2, 1fr); }
.grid3 { grid-template-columns: repeat(3, 1fr); }
.grid5 { grid-template-columns: repeat(5, 1fr); }

hr { margin: 10px 0; border-top: 3px solid #466E6E; }

p {
    margin: 0 auto 1.5em;
    padding: 0;
    line-height: 1.8;
    letter-spacing: 0.02em;
}
a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
a:link,a:visited,a:hover,a:active{ text-decoration: none;}

section {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}
.sec-inline img{
    max-width: 100%;
    height: auto;
}
.sec-inline-start { padding-inline-start: calc((100vw - 1000px) / 2);}
.sec-inline-end { padding-inline-end: calc((100vw - 1000px) / 2);}
.container-fluid{ padding: 0;}


ul, dd, figure {
    margin-bottom: 0;
}

/* リキャプチャ非表示用（別途フォームに注記必要） */
.recaptcha_policy {
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 11px !important;
    color: #444 !important;
}
.recaptcha_policy a {
    font-size: 11px !important;
    color: #111 !important;
}
.grecaptcha-badge { visibility: hidden; }

/* ナビゲーション */
#head { 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 999;
    transition: .3s;
    background: #fff; 
    /* filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.05)); */
}
#head h1 { margin: 0}
.h-logo .brand {
    max-width: 480px;
}

.h-logo { 
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1;
    height: 100%;
    left: 2rem;
}
.nosc .menu-list {
    display: none !important;
}
.menu-wrap { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    height: 100%;

    i {
        font-size: 0.75em;
        padding-left: .5em;
    }
}
.menu-list { 
    position: absolute;
    right: 0;
    height: 100%;
}
.menu-list > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding-left: 0;
    column-gap: 2em;
    margin-right: 2em;
}
.menu-list > ul > li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.menu-list > ul > li > a {
    position: relative;
    display: block;
    color: #465A64;
    font-size: 16px;
    letter-spacing: 0;
    transition: .3s ease-out;

    &::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: #465A64;
        transition: .3s ease-out;
        opacity: 0;
    }
}

.nav-menu ul { 
    position: relative;
    margin-bottom: 0;
}
.nav-menu ul li { 
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* ハンバーガーメニュー */
.openbtn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1001;
    cursor: pointer;
    width: 150px;
    height: 100%;
    transition: 0.3s;
    background: #E40046;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.openbtn::after {
    display: block;
    position: absolute;
    content: 'MENU';
    text-align: center;
    text-wrap: nowrap;
    top: 55%;
    left: 56%;
    line-height: 1;
    color: #fff;
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: 0.4em;
}
.openbtn.active::after {
    content: "CLOSE";
    top: 65%;
    transition: 0.3s;
}
.openbtn span {
    display: block;
    transition: 0.4s;
    position: absolute;
    left: calc(50% + 5%);
    transform: translate(-50%,-50%);
    height: 2px;
    background-color: #fff;
    width: 40px;
}
.openbtn span:nth-of-type(1) {
    top: 35%; 
}
.openbtn span:nth-of-type(2) {
    top: 45%; 
}
.openbtn.active span:nth-of-type(1) {
    top: 38%;
    left: 4em;
    transform: translateY(0px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
    top: 45%;
    left: 4em;
    transform: translateY(-6px) rotate(45deg);
}
/* ×印が横幅を広くしても消えない設定 */
.openbtn.active { display: block !important;}
.nosc .nav-menu { opacity: 0;}
.nosc .sp-menu.d-md-none {
    display: flex !important;
}
.nosc #top-menu { display: none !important;}

/* ハンバーガーメニュー内部 */
#clickarea {
    position: fixed;
    /* width: 100%; */
    max-width: 400px;
    width: 35%;
    height: 0;
    top: 80px;
    /* left: 0; */
    right: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: .3s;

    &.panelactive {
        opacity: 1;
        visibility: visible;
    }
}
.click-list {
    padding-top: 4rem;
    padding-inline: 2rem;
    padding-bottom: 20rem;
}
#clickarea.panelactive .click-list {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    overflow-y: auto;
    background: #fff;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    z-index: 1000;   
}
.active-bg {
    position: absolute;
    width: 10%;
    height: 10%;
    top: 0%;
    right: 0%;
    transition: .3s;
    transform-origin: top right;
    background: rgba(255, 255, 255, 0.6);
    z-index: 100;
    opacity: 0;
}
.nosc .active-bg {
    top: 0%;
    right: 0%;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.click-menu {
    display: flex;
    justify-content: center;
    /* gap: 1rem; */
    flex-direction: column;
    max-width: 1000px;
    width: 90%;
    margin-inline: auto;
}
.click-menu ul.menu-main {
    list-style: none;
    padding-left: 0;
    /* width: calc(100% / 4 - 2rem); */
}
.click-menu ul.menu-main > li {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid #465A64;

    a {
        display: block;
        width: 100%;
        height: auto;
        font-size: 18px;
        line-height: 1.4;
        color: #465A64;
    }
}
ul.menu-main.mm02 > li > a {
    margin-bottom: 1rem;
}
.click-menu ul.menu-main li .mm-sub {
    list-style: none;
    padding-left: 0;

    li {
        position: relative;
        padding-bottom: .5rem;

        a {
            font-size: 18px;
        }

        /* &::before {
            content: "";
            position: absolute;
            top: 50%;
            left: -1em;
            width: .5em;
            height: 1px;
            background: #465A64;
        } */
    }
}
.click-menu ul.menu-main .menu-sub {
    list-style: none;

    & > li {
        padding-bottom: 1rem;
    }
}
.click-menu ul.menu-main .menu-sub {
    & > li:last-child {
        padding-bottom: 0;
    }
}

/* ボタン類 */
.btn01 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #001F6B;
    font-size: 14px;
    white-space: nowrap;
    transition: .3s ease-out;
    border-radius: 100vmax;
    max-width: 230px;
    width: 100%;
    height: 50px;
    overflow: hidden;
    z-index: 10;

    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        border-radius: 100vmax;
        background: #E40046;
        opacity: 0;
        transition: .3s;
        transform-origin: left;
        z-index: -1;
    }
}
.btn03 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #001F6B;
    font-size: 14px;
    white-space: nowrap;
    transition: .3s ease-out;
    border-radius: 100vmax;
    overflow: hidden;
    z-index: 10;

    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        border-radius: 100vmax;
        background: #E40046;
        opacity: 0;
        transition: .3s;
        transform-origin: left;
        z-index: -1;
    }
}
.btn-wh {
    background: #fff;
    border: 1px solid #fff;
}
.btn01 a, .btn03 a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    color: #fff;
    transition: .3s;
    border-radius: 100vmax;
    text-align: center;
    padding: 0 3rem 0 2rem;

    &::before {
        content: "";
        position: absolute;
        top: 50%;
        right: .5em;
        transform: translateY(-50%);
        transition: .3s;
        width: 2.5em;
        height: 2.5em;
        aspect-ratio: 1;
        border-radius: 100vmax;
        background: #fff;
    }
    &::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 1.2em;
        transform: translateY(-50%);
        transition: .3s;
        width: 1em;
        height: 1em;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 10' fill='none'><path d='M5.83331 0.353516L9.99998 4.52018L5.83331 8.68685' stroke='%23001F6B' stroke-width='1'/><path d='M0 4.52014H10' stroke='%23001F6B' stroke-width='1'/></svg>");
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 10;
    }

    .btn-txt {
        transition: .3s;
    }
}
.btn03 a { padding: 1rem 3rem 1rem 2rem;}
.btn02 {
    transition: .3s ease-out;
    border-radius: 30px;
    max-width: 220px;
    width: 100%;
    /* height: 130px; */
    overflow: hidden;
}
.btn02 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    font-size: 18px;
    /* white-space: nowrap; */
    letter-spacing: 0.05em;
    line-height: 1.4;
    padding: 2.75rem 1rem 2.75rem 1rem;
    color: #fff;
    width: 100%;
    height: 100%;
    transition: .3s ease-out;
    border-radius: 30px;
    text-align: left;

    .small-txt { 
        display: block;
        font-size: 16px;
    }
}

/* TOPのsection設定 */
.sec-wrap {
    position: relative;
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}
/* section::before{
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
} */
button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    outline: none;
}
input:not([type=checkbox],[type=radio]) {
    appearance: none;
    border: none;
    outline: none;
}
input[type=checkbox], input[type="radio"] {
    cursor: pointer;
}

main {
    margin-top: 90px;
}

/* パーティクルレイヤー */
.particle-layer {
  position: fixed;
  inset: 0;
  z-index: 3; /* 背景と地球の間に配置 */
  pointer-events: none;
  overflow: hidden;
}

/* 棒線 */
.bar {
  position: absolute;
  height: 3px;
  border-radius: 2px;
  opacity: 0.8;
}


/* TOP */
#maintop {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0;
    background: #fff;

    &::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 40%;
        background: #001F6B;
        opacity: .8;
        clip-path: polygon(0 75%, 0 100%, 100% 100%, 100% 0);
        z-index: 5;
    }
}
#maintop .swiper-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: top;
    color: #fff;
}
.main-catch {
    position: absolute;
    right: 50px;
    bottom: 6vw;
    max-width: 1000px;
    width: 80%;
    text-shadow: 1px 5px 5px #000;
    text-align: right;
    z-index: 10;
}

.top-page p { color: #465A64;}

/* sec01 */
#sec01 {
    padding: 10rem 0;
}
.sec01-wrap {
    position: relative;
    max-width: 1000px;
    width: 90%;
    margin-inline: auto;
    padding: 5rem;
    overflow: visible;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0px 9.08108px 22.7027px rgba(0, 0, 0, 0.15), inset 0px 2.27027px 6.81081px rgba(255, 255, 255, 0.5);
    border-radius: 50px;

    &::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background: rgba(255, 255, 255, 0.01);
        box-shadow: 0px 9.08108px 22.7027px rgba(0, 0, 0, 0.15), inset 0px 2.27027px 6.81081px rgba(255, 255, 255, 0.5);
        border-radius: 50px;
        z-index: -1;
    }
    &::after {
        content: '';
        position: absolute;
        inset: 0;
        backdrop-filter: blur(3px);
        /* filter: url(#glass-distortion02);
        -webkit-filter: url(#glass-distortion02); */
        border-radius: 50px;
        z-index: -1;
    }

    h2 { 
        text-wrap: nowrap;
        margin-bottom: 3rem;
    }
    p {
        margin-bottom: 2rem;
    }
}
.sec01-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}
.sec01-txt {
    /* width: 100%; */
}
.sec01-img {
    transform: translate(-20%, 20%) scale(1.4);
}

/* sec02 */
#sec02 {
    background: #F8F8F8;
    padding: 10rem 0 calc(5rem + 50px);
}
.sec02-flex {
    display: flex;
    gap: 4rem;
}
.sec02-tit {
    width: 15em;
}
.btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.news-wrap { 
    width: 100%;
    margin-bottom: 3rem;
}
.news-bg {
    padding: 1rem;
    background: #F1F4F8;
    border-radius: 0 0 5px 5px;

    .news-date { margin-bottom: .5rem;}
}
.news-date {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: #C2C2C2;
    margin-bottom: .25em;

    img {
        width: 1.5em;
        height: 1.5em;
        margin-right: 0.5em;
    }
}

ul.news-box { 
    list-style: none;
    padding-left: 0;
    margin-bottom: auto;
}
.other-pages .news-box { margin-top: 4rem;}
.news-list {
    width: 100%;
}
.news-item {
    width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E1E1E1;

    &:first-of-type { padding-top: 0;}
}
.news-item a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #465A64;
    font-weight: 400;
    line-height: 1.4;
    cursor: pointer;
}
.news-item a .news-date { 
    width: 10em;
    transition: .3s ease-out;
}
.news-item a .news-text {
    position: relative;
    width: 100%;
    padding-right: 5em;
    margin-bottom: 0;
    transition: .3s ease-out;

    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.news-arrow {
    width: 2em;
}
.news-item-txt {
    width: calc(100% - 2.5em);
}
.arrow-color {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 2em;
    height: 2em;
    border-radius: 100vmax;
    background: #001F6B;
    overflow: hidden;
    transition: .8s;

    .arrow-vis, .arrow-hidd {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        transition: .8s;
        width: 1em;
        height: .75em;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 10' fill='none'><path d='M5.83331 0.353516L9.99998 4.52018L5.83331 8.68685' stroke='%23fff' stroke-width='1'/><path d='M0 4.52014H10' stroke='%23fff' stroke-width='1'/></svg>");
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 10;
    }
    .arrow-vis {
        opacity: 1;
    }
    .arrow-hidd {
        opacity: 0;
    }
}
.btn02 .arrow-color {
    border: 1px solid #fff;
}
.arrow-color.arrow-color-wh {
    background: #fff;

    .arrow-vis, .arrow-hidd {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 10' fill='none'><path d='M5.83331 0.353516L9.99998 4.52018L5.83331 8.68685' stroke='%23001F6B' stroke-width='1'/><path d='M0 4.52014H10' stroke='%23001F6B' stroke-width='1'/></svg>");
    }
}

.hori {
    overflow: hidden;
    width: 100%;
    height: 150px;
    background-size: cover;
    position: absolute;
    bottom: 0;
    background-image: url(../img/scroll-text.png);
    background-repeat: repeat-x;
    background-position: 0 0;
    animation: ScrollAnime 60s linear infinite;
    z-index: 99;
    z-index: -1;
}
@keyframes ScrollAnime {
    0%{
        background-position: 0 0;
    }
    100%{
        background-position: -3000px 0;
    }
}

/* sec03 */
#sec03 {
    padding: 10rem 0;
    background: #fff;
}
.sec03-flex {
    display: flex;
    align-items: flex-end;
    gap: 3rem;
    margin-bottom: 3rem;

    hgroup {
        h2 {
            margin-bottom: 0;
        }
    }
    .sec03-txt {
        color: #465A64;
    }
}
.rec-box {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 1rem;
    row-gap: 4rem;
    overflow: hidden;
    transition: .3s;
    margin-bottom: 4rem;
}
.rec-item {
    border-radius: 5px;
    overflow: hidden;

    a {
        display: block;
        width: 100%;
        height: 100%;
        color: #465A64;
        transition: .3s;
        border-radius: 5px;
    }
    figure { 
        position: relative;
        overflow: hidden;
    }
    img {
        width: 100%;
        height: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: top center;
        transition: .3s;
    }
}
.rec-txt {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: #001F6B;
    padding: .5rem 1rem;
}
.rec-box .rec-item figure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}
.rec-box .rec-item:nth-of-type(3n + 1) figure::before {
    background: linear-gradient(180deg, rgba(83,120,211,0) 60%, rgba(83,120,211,1) 100%);
}
.rec-box .rec-item:nth-of-type(3n + 2) figure::before {
    background: linear-gradient(180deg, rgba(107,213,128,0) 60%, rgba(107,213,128,1) 100%);
}
.rec-box .rec-item:nth-of-type(3n) figure::before {
    background: linear-gradient(180deg, rgba(243,181,72,0) 60%, rgba(243,181,72,1) 100%);
}

/* sec04 */
#sec04 { padding: 10rem 0;}
.sec04-box01 {
    position: relative;
    display: flex;
    max-width: 1000px;
    max-height: 400px;
    margin-inline: auto;
    margin-bottom: 10rem;
}
.sec04-box01 figure, .sec04-box01 figure img {
    width: 80%;
    max-height: 400px;
}
.sec04-txt {
    position: absolute;
    top: calc(50% + 5rem);
    right: 0;
    max-width: 475px;
    width: 100%;
    padding: 4rem 5rem;
    transform: translateY(-50%);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0px 9.08108px 22.7027px rgba(0, 0, 0, 0.15), inset 0px 2.27027px 6.81081px rgba(255, 255, 255, 0.5);
    z-index: 20;

    &::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background: rgba(255, 255, 255, 0.01);
        box-shadow: 0px 9.08108px 22.7027px rgba(0, 0, 0, 0.15), inset 0px 2.27027px 6.81081px rgba(255, 255, 255, 0.5);
        border-radius: 50px;
        z-index: -1;
    }
    &::after {
        content: '';
        position: absolute;
        inset: 0;
        backdrop-filter: blur(3px);
        border-radius: 50px;
        z-index: -1;
    }
}
.sec04-list {
    list-style: none;
    padding-left: 0;

    li {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #E1E1E1;

        a {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
            color: #465A64;
        }
    }
}

.sec04-box02 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr); */
    gap: .5rem;
    position: relative;
    max-width: 1000px;
    margin-inline: auto;
    margin-bottom: 5rem;
    padding: 2rem 3rem 2rem 4rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0px 9.08108px 22.7027px rgba(0, 0, 0, 0.15), inset 0px 2.27027px 6.81081px rgba(255, 255, 255, 0.5);
    z-index: 20;

    &::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background: rgba(255, 255, 255, 0.01);
        box-shadow: 0px 9.08108px 22.7027px rgba(0, 0, 0, 0.15), inset 0px 2.27027px 6.81081px rgba(255, 255, 255, 0.5);
        border-radius: 50px;
        z-index: -1;
    }
    &::after {
        content: '';
        position: absolute;
        inset: 0;
        backdrop-filter: blur(3px);
        border-radius: 50px;
        z-index: -1;
    }

    hgroup { 
        width: 20%;
        margin-right: 1rem;
    }
    h2 { margin-bottom: 0;}
    .btn02 {
        position: relative;
        .arrow-color {
            position: initial;
            background: #fff;
            transform: translateY(0);
        }
    }
    .btn02:nth-of-type(1) {
        background: #6A92F6;
        .arrow-color {
            .arrow-vis, .arrow-hidd {
                background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 10' fill='none'><path d='M5.83331 0.353516L9.99998 4.52018L5.83331 8.68685' stroke='%236A92F6' stroke-width='1'/><path d='M0 4.52014H10' stroke='%236A92F6' stroke-width='1'/></svg>");
            }
        }
    }
    .btn02:nth-of-type(2) {
        background: #4FD66A;
        .arrow-color {
            .arrow-vis, .arrow-hidd {
                background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 10' fill='none'><path d='M5.83331 0.353516L9.99998 4.52018L5.83331 8.68685' stroke='%234FD66A' stroke-width='1'/><path d='M0 4.52014H10' stroke='%234FD66A' stroke-width='1'/></svg>");
            }
        }
    }
    .btn02:nth-of-type(3) {
        background: #F0AE3B;
        .arrow-color {
            .arrow-vis, .arrow-hidd {
                background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 10' fill='none'><path d='M5.83331 0.353516L9.99998 4.52018L5.83331 8.68685' stroke='%23F0AE3B' stroke-width='1'/><path d='M0 4.52014H10' stroke='%23F0AE3B' stroke-width='1'/></svg>");
            }
        }
    }
}

.sec04-btn {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    width: 80%;
}

.sec04-box03 {
    position: relative;
    max-width: 1000px;
    margin-inline: auto;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.01);
    padding: 1rem 1rem 0 1rem;
    box-shadow: 0px 9.08108px 22.7027px rgba(0, 0, 0, 0.15), inset 0px 2.27027px 6.81081px rgba(255, 255, 255, 0.5);
    z-index: 20;

    &::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background: rgba(255, 255, 255, 0.01);
        box-shadow: 0px 9.08108px 22.7027px rgba(0, 0, 0, 0.15), inset 0px 2.27027px 6.81081px rgba(255, 255, 255, 0.5);
        border-radius: 50px;
        z-index: -1;
    }
    &::after {
        content: '';
        position: absolute;
        inset: 0;
        backdrop-filter: blur(3px);
        border-radius: 50px;
        z-index: -1;
    }

    a {
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }
    hgroup {
        position: relative;
        transform: translateY(-70%);
        text-align: center;
        h2 { margin-bottom: 0;}
        & span {
            display: inline-block;
            transform: translateX(-3.5em);
        }
    }
    .sec04-b03-img02 {
        margin-left: 1.5rem;
    }
    img {
        object-fit: contain;
    }
}

.side-btn {
    position: fixed;
    top: 200px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: .3s;
    z-index: 100;

    a {
        display: block;
        width: 100%;
        color: #fff;
        font-size: 16px;
        letter-spacing: .15em;
        writing-mode: vertical-lr;
        padding: .75rem;

        i { padding-top: .5rem;}
    }
    button { transition: .3s;}
    .side01 {
        background: #00ABEB;
    }
    .side02 {
        background: #415C9F;
    }
}

/* フッター*/
footer {
    position: relative;
    color: #fff;
    background: #465A64;
    padding: 5rem;
    z-index: 10;

    a { 
        position: relative;
        color: #fff;
        transition: .3s ease-out;
        display: block;
        width: 100%;
        height: auto;
    }
}
.ft-logo {
    display: inline-block;
    margin-bottom: 5rem;

    img {
        max-width: 550px;
        width: 100%;
        object-fit: contain;
    }
}
.ft-box {
    display: flex;
    gap: 3rem;
    width: 100%;
    padding-bottom: 2.5rem;
    /* border-bottom: 1px solid #939393; */
}
.ft-icon {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #939393;
    transition: .3s;
    
    img {
        max-height: 32px;
        object-fit: contain;
        transition: .3s;
    }
}
footer ul {
    list-style: none;
    padding-left: 0;
}
.ft-box > ul { 
    position: relative;
    width: calc(100% / 4 - 2rem);
    &:not(:last-child)::after {
        /* border-right: .5px solid #939393; */
        content: "";
        position: absolute;
        top: 0;
        right: -1rem;
        width: .5px;
        height: 100%;
        background: #939393;
    }
}
.ft-menu > li {
    padding-bottom: 1rem;
    /* border-top: 1px solid #939393; */

    a { font-weight: 500;}
    i {
        font-size: 0.8em;
        padding-left: 1em;
    }
}
.ft-sub { padding-left: 1em;}
.ft-sub li {
    position: relative;
    padding-top: 1rem;

    a {
        position: relative;
        /* &::before {
            content: "";
            position: absolute;
            top: 50%;
            left: -1em;
            transform: translateY(-50%);
            width: .4em;
            height: 1px;
            background: #fff;
            transition: .3s ease-out;
        } */
    }
}
.ft-txt {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    font-size: 14px;

    a {
        &::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -0.25em;
            width: 100%;
            height: 1px;
            background: #fff;
            transition: .3s ease-out;
            opacity: 0;
        }
    }

    .ft-tel {
        display: inline-block;
    }
}
.ft-info {
    text-align: end;

    a { display: inline;}
}

.copy { 
    font-size: 0.9em;
    margin-top: .5em;
    text-wrap: nowrap;
}


/* --------------------------------------------
    other page
-------------------------------------------- */
#titbar {
    position: relative;
    max-width: 1000px;
    width: 90%;
    margin-inline: auto;
    padding-top: 4rem;

    hgroup {
        margin-bottom: .5rem;

        & > span { 
            position: relative;
            color: #465A64;
            font-size: 13px;
            letter-spacing: .1em;
            padding-left: 1em;

            &::before {
                content: "";
                position: absolute;
                top: 50%;
                left: .25em;
                transform: translateY(-50%);
                width: .25em;
                aspect-ratio: 1;
                border-radius: 100vmax;
                background: #E40046;
            }
        }

        h1 {
            color: #001F6B;
            line-height: 1.2;
            margin-bottom: 0;
        }
    }
}


.sec-inline { padding-inline: calc((100vw - 1000px) / 2);}
.other-pages .sec-inline {
    margin-bottom: auto;
    padding-top: 0;
    padding-bottom: 0;
}
.other-pages main {
    margin-top: 90px;
}

.other-pages .table>:not(caption)>*>* {
    border-width: 1px;
    border-color: #000;
}

.other-pages .sec-inline > div {
    position: relative;
    background: none;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.other-pages .sec-inline > div::before {
    content: "";
    width: 100vw;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-position: center;
    z-index: -1;
}
.other-pages .sec-inline > div:nth-child(odd)::before {
    background-image: url(../img/bg.jpg);
    background-repeat: repeat;
    background-size: cover;
}
.other-pages .sec-inline > div:nth-child(odd):first-child {
    padding-top: 14rem;
}
/* .other-pages .sec-inline > div:nth-child(odd):first-child::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100vw;
    height: 10rem;
    background: #fff;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
} */
.other-pages .sec-inline {
    &::before {
        content: "";
        position: absolute;
        top: -1px;
        left: 0;
        width: 100vw;
        height: 10rem;
        background: #fff;
        clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
    }
}
.other-pages .sec-inline > div:nth-child(even)::before {
    background: #fff;
}

/* .breadcrumb-content {
    max-width: 1000px;
    width: 90%;
    margin-inline: auto;
} */
.breadcrumb {
    position: relative;
    /* margin-top: -4rem; */
    margin-bottom: 0;
}
.breadcrumb ul {
    list-style: none;
    padding-left: 0;
    position: relative;
    /* margin-inline: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center; */
}
.breadcrumb ul li {
    position: relative;
    color: #465A64;
    display: inline-block;
    /* text-transform: uppercase; */
    font-size: 14px;
    letter-spacing: 0em;
    margin: 0;
    padding: 0;
}
.breadcrumb ul li span > span {
    display: inline-block;
    /* text-transform: uppercase; */
}
.breadcrumb ul li a {
    position: relative;
    color: #BBBBBB;
    font-size: 14px;
    text-transform: uppercase;
    transition: .3s ease-out;

    &::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: #BBBBBB;
        opacity: 0;
        transition: .3s ease-out;
    }
}
.breadcrumb ul li:last-child {
    max-width: 12em;
    /* text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; */
    vertical-align: bottom;
}
.breadcrumb ul li {
    position: relative;
    margin-left: 30px;
}
.breadcrumb ul li:first-child { margin-left: auto;}
.breadcrumb ul li:not(:first-child)::before {
    content: "／";
    position: absolute;
    top: 50%;
    left: -18px;
    bottom: 0px;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 0 0 0 0.25em;
    color: #bbb;
}
.breadcrumb ul li:last-child::before {
    color: #465A64;
}

.about-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.about-list dt {
    width: 20%;
    display: flex;
    align-items: flex-start;
}
.about-list dt, .about-list dd {
    padding: 1rem 0.5rem;
    border-bottom: 1px solid #001F6B;
    margin-bottom: 0;
}
.about-list dt:last-of-type, .about-list dd:last-of-type {
    border-bottom: none;
}
.about-list dd {
    width: 80%;
    margin-bottom: 0;
}
.about-list dd a {
    color: #000;
    text-decoration: underline;
}

.about-wrap {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}
.about-item {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    border-radius: 50px;
    background: #fff;
    padding: 2rem 2.5rem;
    color: #001F6B;

    h4 {
        width: 100%;
        margin-bottom: 0;

        .small-txt {
            font-size: 14px;
            font-weight: 400;
        }
    }
}
.about-flex {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    line-height: 1;
    text-wrap: nowrap;

    img {
        max-width: 97px;
        width: 30%;
        aspect-ratio: 1;
    }

    .large-txt {
        /* font-size: 140px; */
        font-size: clamp(5rem, 0.7262rem + 8.9153vw, 8.75rem);
        font-weight: 700;
        letter-spacing: -0.03em;
    }
    .small-txt {
        font-size: 29px;
        font-weight: 700;
    }
}

.label-wrap {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;

    .label-item {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.4;
        text-align: center;
        color: #001F6B;
        padding: 2rem;
        overflow: hidden;
        
        &:nth-child(odd) {
            background: #DBE3EC;
        }

        &:nth-child(even) {
            background: #DEF0FC;
        }

        &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 15px;
            height: 100%;
        }

        &:nth-child(odd)::before {
            background: #9BAEC4;
        }
        &:nth-child(even)::before {
            background: #B1D8F2;
        }
        
        &::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 0;
            border-width: 9px 9px 9px 9px;
            border-style: solid;
        }

        &:nth-child(odd)::after {
            border-color: #9BAEC4 #fff #fff #9BAEC4;
        }
        &:nth-child(even)::after {
            border-color: #B1D8F2 #fff #fff #B1D8F2;
        }
    }
}

.road-img {
    min-width: 800px;
    width: 100%;
}
.career-box {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 2rem;

    img {
        margin-bottom: 1rem;
    }

    .cr-item {
        display: grid;
        grid-row: span 2;
        grid-template-rows: subgrid;
    }
}

.bnf-box {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    border-radius: 20px;
    background: #fff;
    margin-bottom: 1.5rem;

    .bnf-img {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 110px;
        width: 100%;
        height: 100%;
        aspect-ratio: 1;
        flex: 1;
        padding: 2rem 1rem;
        border-radius: 18px;
        background: #E7E6EA;

        img {
            aspect-ratio: 1;
            object-fit: contain;
        }
    }
    .bnf-txt {
        flex: 7;
    }
    h4 { margin-bottom: 1rem;}
    p { margin-bottom: 0;}
}
.bnf-wrap {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;

    .bnf-item {
        position: relative;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.4;
        color: #001F6B;
        border-radius: 20px;
        background: #fff;
        padding: 2rem 2rem 2rem 3rem;

        &::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 1.5em;
            transform: translateY(-50%);
            width: 8px;
            aspect-ratio: 1;
            border-radius: 100vmax;
            background: #001F6B;
        }
    }
    .bnf-point { padding-left: .5em;}
}

.link-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    justify-content: center;
    gap: 1rem;
    position: relative;
    border-radius: 50px;
    z-index: 20;

    .btn02 {
        position: relative;
        max-width: none;

        .arrow-color {
            position: initial;
            background: #fff;
            transform: translateY(0);
        }
    }
    .btn02:nth-of-type(1) {
        background: #6A92F6;
        .arrow-color {
            .arrow-vis, .arrow-hidd {
                background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 10' fill='none'><path d='M5.83331 0.353516L9.99998 4.52018L5.83331 8.68685' stroke='%236A92F6' stroke-width='1'/><path d='M0 4.52014H10' stroke='%236A92F6' stroke-width='1'/></svg>");
            }
        }
    }
    .btn02:nth-of-type(2) {
        background: #4FD66A;
        .arrow-color {
            .arrow-vis, .arrow-hidd {
                background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 10' fill='none'><path d='M5.83331 0.353516L9.99998 4.52018L5.83331 8.68685' stroke='%234FD66A' stroke-width='1'/><path d='M0 4.52014H10' stroke='%234FD66A' stroke-width='1'/></svg>");
            }
        }
    }
    .btn02:nth-of-type(3) {
        background: #F0AE3B;
        .arrow-color {
            .arrow-vis, .arrow-hidd {
                background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 10' fill='none'><path d='M5.83331 0.353516L9.99998 4.52018L5.83331 8.68685' stroke='%23F0AE3B' stroke-width='1'/><path d='M0 4.52014H10' stroke='%23F0AE3B' stroke-width='1'/></svg>");
            }
        }
    }
}

.cycle-img {
    min-width: 650px;
    width: 100%;
}

.style-box {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    border-radius: 20px;
    background: #fff;
    margin-bottom: 1.5rem;

    .style-img {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 160px;
        width: 100%;
        height: 100%;
        aspect-ratio: 1;
        flex: 1;
        padding: 2rem 1rem;
        border-radius: 18px;
        background: #E7E6EA;

        img {
            aspect-ratio: 1;
            object-fit: contain;
        }
    }
    .style-txt {
        flex: 7;
    }
    h4 { 
        color: #001F6B;
    }
    p { margin-bottom: 0;}
    li { margin-bottom: .5rem;}
}

/* contact */


/*--- table ---*/
table.wrap-tbl {
    width: 100%;
    margin: 1rem auto;
    vertical-align: top;
    background: #fff;
}
table.wrap-tbl >tbody {
    vertical-align: inherit;
}
table.wrap-tbl>*>* {
    padding: 0.5rem 0.5rem;
    border-width: 1px;
    border-color: #DDDDDE;
}
table.wrap-tbl th {
    width: 15%;
    border-right: 1px solid #DDDDDE;
    padding: 0.5rem 0.5rem;
    background: #0086C6;
    color: #fff;
}
table.wrap-tbl td {
    width: 85%;
    padding: 0.5rem 0.5rem;
}
table.wrap-tbl caption {
    caption-side: top;
    padding: 0 0 0.5em;
    color: #333;
    font-weight: bold;
}

.hst-tbl {
    width: 100%;

    tr {
        border-bottom: 1px solid #E1E1E1;
    }
    th {
        width: 7em;
    }
    th, td {
        padding: 1rem;
    }
}

.about-tbl {
    width: 100%;
    min-width: 450px;

    tbody {
        border-top: 1px solid #E1E1E1;
        border-bottom: 1px solid #E1E1E1;
    }
    th {
        color: #001F6B;
        font-weight: 700;
        background: #EDF2F7;
    }
    td {
        background: #fff;
        border-top: 1px solid #E1E1E1;
    }
    th, td {
        border-right: 1px solid #E1E1E1;
        padding: 1rem;
        text-align: center;
        line-height: 1.2;

        &:last-child { border-right: none;}
    }
}
.yb-tbl {
    width: 100%;

    tbody {
        border-top: 1px solid #E1E1E1;
        border-bottom: 1px solid #E1E1E1;
    }
    th {
        color: #001F6B;
        font-weight: 700;
        background: #EDF2F7;
    }
    td {
        background: #fff;
        border-top: 1px solid #E1E1E1;
    }
    th, td {
        border-right: 1px solid #E1E1E1;
        padding: 1rem 2rem;
        line-height: 1.6;

        &:last-child { border-right: none;}
    }
}

.bold-box {
    font-weight: 700;
    line-height: 2;
}

.faq-wrap {
    background: #fff;
    border: 3px solid #001F6B;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;

    p { 
        width: 100%;
        margin: 0;
    }
}
.faq-qes {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-weight: 700;
    margin-bottom: 1rem;
}
.faq-qnum {
    width: 3em;
    color: #001F6B;
    padding-right: 1em;
}

.faq-ans {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.faq-anum {
    width: 3em;
    padding-right: 1em;
    color: #E40046;
    font-weight: 700;
}

/* table-scroll */
.scroll-hint-icon { top: 50%!important; transform: translateY(-50%)!important; }
.scroll-hint-icon:before { width: 30px!important; height: 30px!important; }
.table-calc_list01 table {
    max-width: 100%;
}
.table-calc_list01 th,.table-calc_list01 td{
font-size: 0.65em !important;
padding: 3px !important;
}
.js-scrollable {
    width: 100%;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 auto 1.5rem;
}

.rec-tbl {
    width: 100%;
    margin-bottom: 2rem;

    tbody {
        border-top: 1px solid #E1E1E1;
        border-bottom: 1px solid #E1E1E1;
    }
    th {
        color: #001F6B;
        font-weight: 700;
        background: #EDF2F7;
        border-bottom: 1px solid #E1E1E1;
        text-align: center;

        width: 20%;
    }
    td {
        background: #fff;
        border-top: 1px solid #E1E1E1;
    }
    th, td {
        border-right: 1px solid #E1E1E1;
        padding: 1rem;
        &:last-child { border-right: none;}
    }
    p { margin-bottom: .5rem;}
    ul { margin-bottom: .5rem;}
}
.rec-entry {
    display: flex;
    justify-content: center;
    gap: 2rem;

    a {
        display: block;
        width: 100%;
        height: 100%;
        background: #fff;
        padding: 1rem;
        border: 1px solid #dadada;
    }

    button {
        max-width: 300px;
    }
    
    img {
        width: 100%;
        /* height: 60px; */
        object-fit: contain;
    }
}

.job-wrap {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.5rem;
}
.job-item {
    display: grid;
}
.job-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.job-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}
.job-img {
    position: relative;
}
.job-type {
    /* position: absolute;
    top: .5rem;
    right: .5rem; */
    min-width: 70px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: .25rem .5rem;
    /* background: #fff; */
    text-align: center;
    text-wrap: nowrap;
}
.job-txt {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: .25rem;
    flex-grow: 1;
    width: 100%;
    padding: 1rem;
    background: #fff;
    color: #465A64;
    border-width: 0 1px 1px 1px;
    border-color: #ddd;
    border-style: solid;
    line-height: 1.6;
}
.job-type.new-grad {
    /* color: #5378D3; */
    color: #fff;
    background: #5378D3;
}
.job-type.career {
    /* color: #F0AE3B; */
    color: #fff;
    background: #F0AE3B;
}
.job-name { 
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.job-dvs {
    font-size: 13px;
    letter-spacing: 0.1em;
}
.job-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

a.anchorpoint {
    display: block;
    padding-top: 90px;
    margin-top: -90px;
}

/* .full-map {
    line-height: 0;
    width: 100%;
    max-height: 365px;
    overflow: hidden;
}
.full-map iframe {
    width: 100%;
    height: 685px;
    margin-top: -150px;
}
.map-img{
    object-fit: contain;
} */

.num-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 3rem;
    margin-bottom: 3rem; */

    .num-box {
        position: relative;
        display: grid;
        /* grid-template-columns: repeat(2, 1fr); */
        grid-template-rows: repeat(2, 1fr);
        padding: 3rem;
        background: #fff;

        .num-cnt {
            display: grid;
            grid-row: span 2;
            grid-template-rows: subgrid;
            row-gap: 1rem;
        }
        .medium-txt {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 21px;
        }

        .num-img {
            max-width: 105px;
            width: 75%;
            margin-inline: auto;
        }

        .emp-txt {
            font-size: 24px;
            font-weight: 700;
            grid-column: span 2 / span 2;
            grid-row-start: 2;
            text-align: center;
            line-height: 1.2;

            .large-txt { font-size: clamp(2rem, 0.6705rem + 3.6994vw, 4rem);}
        }
        .normal-txt {
            font-size: 24px;
            grid-column: span 2 / span 2;
            grid-row-start: 2;
            text-align: center;
            line-height: 1.2;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* &:first-child {
            padding-right: 3rem;
        }
        &:last-child {
            padding-left: 3rem;
        } */
        &:first-child::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            width: 1px;
            height: 80%;
            background: #000;
        }
    }
}
.small-txt { font-size: 0.8em;}

.rec-flow {
    display: flex;
    flex-direction: column;

    .flow-item {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 1.5em;
        background-color: #fff;
        border: 8px solid #001F6B;
        border-radius: 35px;

        .flow-box {
            width: 100%;
            padding: 1rem 1rem 1.5rem 1rem;
        }

        .flow-num {
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            font-size: 1.5rem;
            font-weight: bold;
            padding: 15px 10px;
            padding-right: 20px;
            background-color: #001F6B;
            white-space: nowrap;
            border-radius: 15px 0 0 15px;
        }

        .flow-tit {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: .5rem;
        }
    }
    .flow-arrow {
        display: block;
        margin-inline: auto;
        margin-bottom: 1.5rem;
        clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
        background-color: #001F6B;
        width: 100%;
        max-width: 100px;
        height: 35px;
    }
}


.pdf-link {
    position: relative;
    /* margin-bottom: 1rem; */

    li { margin-bottom: 1rem;}
    a {
        color: #000;
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 5px;

        img { 
            width: 1em;
            margin-left: .5em;
        }
    }
}

.int-img img, .int-working img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1.5;
}
.int-tit {
    color: #fff;
    padding: 1rem;
    margin-bottom: 1.5rem;

    &.new-gard {
        background: #6A92F6;
    }
    &.career {
        background: #F0AE3B;
    }

    .int-name {
        font-size: 21px;
        font-weight: 700;
    }
    .int-aff {
        display: flex;
        align-items: center;
        gap: .5em;
        font-size: 16px;
    }
}

.pnation {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
    margin: 4rem auto 2rem;
}
/* .pnation span { color: #001F6B;} */
.pnation span, .pnation a {
    display: inline-block;
    /* height: 100%; */
    font-size: 16px;
    padding: 5px 20px;
    border: 1px solid #001F6B;
    border-radius: 5px;
    cursor: pointer;
}
.pnation a {
    color: #fff;
    background: #001F6B;
    cursor: pointer;
    transition: .3s ease-out;
}

.grid-item {
    display: grid;
    grid-row: span 1;
    grid-template-rows: subgrid;
}

.cnt-aft-img::after {
    content: "";
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 150px;
    height: 150px;
    background-image: url(../img/style-img02.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 10;
}


@media (min-width: 2000px) {
    .main-catch {
        max-width: 1600px;
    }
}
@media (max-width: 991px) {
    #maintop, #maintop .swiper-slide img {
        height: 100%;
    }
    .breadcrumb ul {
        /* padding-top: 2rem; */
        padding-inline: initial;
        /* padding-left: 7%;
        padding-right: 7%; */
    }
    .sec-inline-start {
        padding-inline: initial;
        padding-left: 6%;
    }
    .sec-inline-end {
        padding-inline: initial;
        padding-right: 6%;
    }
    .sec-inline {
        padding-inline: initial;
        padding-left: 6%;
        padding-right: 6%;
    }
    .grid-box {
        grid-gap: 1.5vw;
    }

    .sec04-box01 {
        max-height: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 3rem;
    }
    .sec04-box01 figure, .sec04-box01 figure img {
        width: 100%;
        object-fit: contain;
    }
    .sec04-txt {
        position: relative;
        top: auto;
        right: auto;
        transform: translateY(-2rem);
        width: 100%;
        max-width: none;
        padding: 3rem 2rem;
    }

    .sec04-box02 {
        flex-direction: column;
        hgroup, .sec04-btn {
            width: 100%;
        }

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

        hgroup {
            grid-column: span 3 / span 3;
        }

        .btn02:nth-of-type(1) { grid-row-start: 2;}
        .btn02:nth-of-type(2) { grid-row-start: 2;}
        .btn02:nth-of-type(3) { grid-row-start: 2;} */
    }

    .bnf-wrap {
        grid-template-columns: repeat(2,1fr);
    }

    .job-wrap {
        grid-template-columns: repeat(3,1fr);
    }
    .job-type { font-size: 11px;}
    

    /* .rec-slider .swiper-slide-active { width: 300px !important;} */

}
/* SPサイズ */
@media (max-width: 767px) {
    /* 基礎設定 */
    html, body { 
        /* overflow-x: hidden; */
    }
    .h-logo .brand { 
        max-width: 350px;
        width: 65vw;
    }
    body.top-page::before {
        width: 90vw;
    }
    

    /* #head {
        background: #fff;
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    } */
    /* .openbtn { right: 1rem;} */
    h1 { font-size: 26px; }
    h2 { font-size: 24px; }
    h3 { font-size: 22px; }
    .width-tbl caption { font-size: 22px;}
    h4 { font-size: 20px; }
    h5 { font-size: 18px; }
    h6 { font-size: 16px; }
    .grid-box { grid-gap: 1rem;}
    .grid2 { grid-template-columns: repeat(1, 1fr) !important; }
    .grid3 { grid-template-columns: repeat(1, 1fr) !important; }
    .grid4 { grid-template-columns: repeat(2, 1fr) !important; }
    .grid5 { grid-template-columns: repeat(2, 1fr) !important; }
    .box-wh, .box-gray, .box-grad { padding: 2rem; }
    .is-hidden{
        visibility: hidden;
        opacity: 0;
    }
    .sec-inline {
        padding-left: 7.5%;
        padding-right: 7.5%;
    }
    section { padding: calc(40px + 1rem) 0 calc(40px + 1rem);}    
    
    #clickarea { 
        width: 100%;
        top: 70px;
        max-width: none;
    }
    .click-menu {
        display: block;
        width: 100%;
    }
    .click-menu ul.menu-main { width: 100%;}
    .click-menu ul.menu-main > li {
        padding-bottom: 1.5rem;
    }
    
    #titbar h1 { font-size: 26px;}

    .sec01-wrap {
        padding: 2rem;

        h2 {
            font-size: 5vw;
        }
    }
    .sec01-box {
        display: block;
    }
    .sec01-img {
        transform: translate(0%, 0%) scale(1);
        margin-bottom: 2rem;

        img {
            height: 250px;
            object-fit: contain;
        }
    }

    #sec01, #sec03, #sec04 {
        padding: calc(40px + 1rem) 0 calc(40px + 1rem);
    }
    #sec02 {
        padding: calc(40px + 1rem) 0 10rem;
    }
    .sec02-tit {
        width: 100%;
        hgroup { margin-bottom: 2rem;}
    }
    .sec02-flex {
        display: block;
    }

    .news-wrap { display: block;}
    .news-active {
        width: 100%;
        margin-inline: auto;
        align-items: center;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    .news-item a {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem;
    }
    .news-item a dt { 
        width: 100%;
        flex: auto;
    }

    .sec03-flex {
        display: block;

        & hgroup {
            h2 {
                margin-bottom: 1.5rem;
            }
        }
    }

    .rec-box {
        grid-template-columns: repeat(2,1fr);
        column-gap: 1rem;
        row-gap: 2rem;
        margin-bottom: 2rem;
    }
    .rec-txt {
        font-size: 14px;
    }

    /* .rec-link {
        opacity: 1;
        position: absolute;
        max-width: 300px;
        width: 90%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        bottom: 1em;
        left: 50%;
        transform: translateX(-50%);
        transition: none;
        transition-delay: none;
        z-index: 10;

        .arrow-color {
            right: 1em;
        }
    } */

    /* .rec-box { 
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    } */
    /* .rec-slider.swiper { height: auto;} */

    .sec04-box02 {
        display: block;
        hgroup {
            margin-bottom: 2rem;
        }
        .btn02 {
            max-width: none;
            width: 100%;
            margin-bottom: 1rem;

            a {
                padding: 2rem 1rem;
            }
        }
    }

    .link-box {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(3, 1fr);
        .btn02 {
            max-width: none;
            width: 100%;
            margin-bottom: 1rem;

            a {
                padding: 2rem 1rem;
            }
        }
    }

    .rec-slider { margin-bottom: 3rem;}
    .slide-flex {
        flex-direction: column-reverse;
        gap: 5.5rem;
    }
    .sw-flex {
        width: 100%;
    }
    .sw-btn {
        top: 3.5rem;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .swiper-scrollbar { width: 100% !important;}
    .swiper-button-prev { left: -3.5em !important;}
    .swiper-button-next { left: 1.5em !important;}
    .rec-slider .swiper-slide-active { width: 320px !important;}
    .swiper-scrollbar { left: auto !important;}

    .sec04-btn {
        flex-direction: column;
        gap: 1rem;
    }

    .sec04-box03 {
        hgroup {
            position: relative;
            transform: translateY(-80%);
            text-align: center;
            text-wrap: nowrap;
        }
    }

    .ft-box > ul { 
        &:not(:last-child)::after {
            content: none;
        }
    }

    footer { 
        padding: 3rem 1.5rem;
        margin-bottom: 40px;
    }
    .ft-logo { margin-bottom: 1.5rem;}
    .ft-box {
        display: block;
        padding-bottom: 2rem;
    }
    .ft-box > ul { width: 100%;}
    .ft-menu > li { padding-bottom: 1.5rem;}
    .ft-txt {
        display: block;

        .ft-address { margin-bottom: 1rem;}
    }

    .copy { font-size: 0.8em;}

     /* .breadcrumb ul li:last-child { margin-left: 2em;} */

    #titbar {
        hgroup {
            h1 {
                display: block;
                width: 100%;
                text-wrap: wrap;
                font-size: 26px;
            }
        }
    }

    hgroup {

        & > span {
            font-size: 10px;
        }
        h2 {
            font-size: 25px;
        }
    }

    .side-btn {
        position: fixed;
        top: auto;
        bottom: 0;
        flex-direction: row;
        gap: 0;
        width: 100%;

        a {
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            width: 100%;
            height: 100%;
            font-size: 14px;
            writing-mode: horizontal-tb;
            padding: .75rem;
            line-height: 1.4;

            i { 
                padding-top: 0;
                padding-left: .25em;
            }
        }

        .side01, .side02 {
            width: 50%;
            max-height: 60px;
        }
    }

    .about-wrap {
        grid-template-columns: repeat(1,1fr);
    }
    .about-item {
        display: grid;
        grid-row: span 2;
        grid-template-rows: subgrid;
        gap: 1.5rem;
        padding: 2rem 2.5rem;

        h4 {
            width: 100%;
            margin-bottom: 0;

            .small-txt {
                font-size: 14px;
                font-weight: 400;
            }
        }
    }
    .about-flex {

        .large-txt {
            font-size: 20vw;
        }
        .small-txt {
            font-size: 21px;
        }
    }

    .career-box {
        display: block;

        img {
            max-width: 300px;
            width: 100%;
            margin-inline: auto;
            display: flex;
            justify-content: center;
        }
    }

    .rec-tbl {
        tbody {
            border-top: 1px solid #E1E1E1;
            border-bottom: 1px solid #E1E1E1;
        }
        th {
            width: 100%;
            border-bottom: 1px solid #E1E1E1;
        }
        td {
            border-top: none;
            border-bottom: 1px solid #E1E1E1;
        }
        th, td {
            display: block;
            border-right: 1px solid #E1E1E1;
            border-left: 1px solid #E1E1E1;
            &:last-child { border-right: 1px solid #E1E1E1;}
        }
        tr:last-child td {
            border-bottom: none;
        }
    }

    .job-wrap {
        grid-template-columns: repeat(2,1fr);
    }

    .label-wrap {
        grid-template-columns: repeat(2,1fr);

        .label-item {
            font-size: 18px;
        }
    }

    .other-pages .sec-inline > div.cnt-aft-img {
        padding-bottom: calc(4rem + 75px);
    }
    .cnt-aft-img::after {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

}

@media (max-width: 575px) {
    #head {
        height: 70px;
    }
    a.anchorpoint {
        padding-top: 70px;
        margin-top: -70px;
    }
    main { margin-top: 70px;}
    .h-logo { left: 1rem;} 
    .openbtn {
        width: 100px;
    }
    .openbtn.active span:nth-of-type(1) {
        top: 38%;
        left: 35%;
        transform: translateY(0px) rotate(-45deg);
    }
    .openbtn.active span:nth-of-type(2) {
        top: 45%;
        left: 35%;
        transform: translateY(-6px) rotate(45deg);
    }

    .other-pages .sec-inline {
        &::before {
            height: 6rem;
        }
    }
    .other-pages .sec-inline > div:nth-child(odd):first-child {
        padding-top: 10rem;
    }

    .btn01, .slide-flex .btn01 { max-width: none;}
    .btn03 {
        width: 100%;
    }

    #maintop {
        /* height: 70vh; */
        height: 65vh;

        &::after {
            height: 55%;
            clip-path: polygon(0 20%, 0 100%, 100% 100%, 100% 0);
        }
    }
    .main-catch {
        right: 10px;
        bottom: 0%;
        max-width: 420px;
        width: 95%;
    }
    #maintop .swiper-slide img {
        height: 65vh;
    }
    .sec01-wrap {
        h2 {
            font-size: 6.5vw;
        }
    }

    .rec-box {
        grid-template-columns: repeat(1,1fr);
    }

    .sec04-box01 { margin-bottom: 0rem;}
    .sec04-box02 {
       padding: 3rem 2rem;
       margin-bottom: 4rem;
    }
    .sec04-txt {
        transform: translateY(-5rem);
    }

    .sec04-box03-sp {
        position: relative;
        justify-content: center;
        align-items: flex-end;
        max-width: 600px;
        width: 95%;
        min-height: 160px;
        margin-inline: auto;
        border-radius: 50px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.01);
        padding: 2rem 1rem 0 1rem;
        box-shadow: 0px 9.08108px 22.7027px rgba(0, 0, 0, 0.15), inset 0px 2.27027px 6.81081px rgba(255, 255, 255, 0.5);
        z-index: 20;

        &::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            background: rgba(255, 255, 255, 0.01);
            box-shadow: 0px 9.08108px 22.7027px rgba(0, 0, 0, 0.15), inset 0px 2.27027px 6.81081px rgba(255, 255, 255, 0.5);
            border-radius: 50px;
            z-index: -1;
        }
        &::after {
            content: '';
            position: absolute;
            inset: 0;
            backdrop-filter: blur(3px);
            border-radius: 50px;
            z-index: -1;
        }
    }

    .tit-l-line {
        width: 75vw;

        &::before {
            right: calc(100% + 0.5em);
        }
        &::after {
            right: calc(100% + 0.5em);
        }
    }

    .sec-wrap {
        width: 80%;
    }
    .table th, .table td {
        display: block;
        width: 100%;
    }
    .box-wh, .box-gray, .box-grad { padding: 2rem; }
    .sec-inline { padding-inline: initial; padding-left: 7%; padding-right: 7%; }
    
    .js-scrollable {
        width: 100%;
        overflow: scroll;
    }

    .about-list dt, .about-list dd { 
        display: block;
        width: 100%; 
    }
    .about-list dt { 
        position: relative;
        border-bottom: none;
        padding-bottom: 0; 
    }
    .about-list dd { font-size: 15px; }

    .num-wrap {
        .num-box {
            padding: 2rem 1rem;
            .emp-txt { font-size: 18px;}
            .normal-txt { font-size: 18px;}
            .medium-txt {
                font-size: 18px;
            }
            /* &:first-child {
                padding-right: 1rem;
            }
            &:last-child {
                padding-left: 1rem;
            } */
        }
    }

    .label-wrap, .bnf-wrap {
        grid-template-columns: repeat(1,1fr);
    }

    .bnf-box, .style-box {
        flex-direction: column;
        align-items: center;
    }

    .style-box {
        .style-img {
            max-width: 110px;
        }
    }

    .rec-flow {
        display: flex;
        flex-direction: column;

        .flow-item {
            flex-direction: column;
            border-radius: 35px;

            .flow-num {
                font-size: 1.5rem;
                border-radius: 15px 15px 0 0;
                padding: 5px;
            }
        }
    }

    .rec-entry {
        flex-direction: column;
        align-items: center;
    }

    .job-txt { 
        padding: 1rem;
    }
    .job-name {
        font-size: 18px;
    }

    .job-wrap {
        grid-template-columns: repeat(1,1fr);
    }
    .job-item {
        max-width: 250px;
        margin-inline: auto;
    }

    .faq-qes, .faq-ans {
        flex-direction: column;
    }

    footer { margin-bottom: 40px;}
    .ft-icon { img { max-height: 32px;}}
}

@media (max-width: 400px) {
    .rec-slider .swiper-slide-active { width: 80% !important;}
    .rec-slider.swiper { height: 350px;}
    .main-catch {
        bottom: 10%;
    }
}

@media (any-hover: hover) {
    .menu-list > ul > li > a:hover, .breadcrumb a:hover {
        &::after { opacity: 1;}
    }

    .btn01:hover, .btn03:hover {
        &::after {
            opacity: 1;
            width: 100%;
        }
    }
    .btn01:hover a, .btn03:hover a {
        &::after {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 10' fill='none'><path d='M5.83331 0.353516L9.99998 4.52018L5.83331 8.68685' stroke='%23E40046' stroke-width='1'/><path d='M0 4.52014H10' stroke='%23E40046' stroke-width='1'/></svg>");
        }

        .btn-txt {
            transform: translateX(-0.5em);
        }
    }

    a:hover, .news-item:hover {
        .arrow-color {
            background: #E40046;

            .arrow-vis {
                opacity: 0;
                left: calc(50% + 1em);
            }
            .arrow-hidd {
                opacity: 1;
            }
        }
    }
    .arrow-color:hover {
        background: #E40046;

        .arrow-vis {
            opacity: 0;
            left: calc(50% + 1em);
        }
        .arrow-hidd {
            opacity: 1;
        }
    }

    .rec-item:hover a {
        img {
            transform: scale(1.1);
        }
    }

    .sec04-box02 .btn02:hover, .link-box .btn02:hover {
        .arrow-color {
            .arrow-vis, .arrow-hidd {
                background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 10' fill='none'><path d='M5.83331 0.353516L9.99998 4.52018L5.83331 8.68685' stroke='%23fff' stroke-width='1'/><path d='M0 4.52014H10' stroke='%23fff' stroke-width='1'/></svg>");
            }
            .arrow-vis {
                opacity: 0;
                left: calc(50% + 1em);
            }
            .arrow-hidd {
                opacity: 1;
            }
        }
    }
    .sec04-box02 .btn02:nth-of-type(1):hover, .link-box .btn02:nth-of-type(1):hover {
        .arrow-color { 
            background: #6A92F6;
        }
    }
    .sec04-box02 .btn02:nth-of-type(2):hover, .link-box .btn02:nth-of-type(2):hover {
        .arrow-color { 
            background: #4FD66A;
            
        }
    }
    .sec04-box02 .btn02:nth-of-type(3):hover, .link-box .btn02:nth-of-type(3):hover {
        .arrow-color { 
            background: #F0AE3B;
            
        }
    }

    a:hover .arrow-color.arrow-color-wh {
        background: #E40046;

        .arrow-vis, .arrow-hidd {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 10' fill='none'><path d='M5.83331 0.353516L9.99998 4.52018L5.83331 8.68685' stroke='%23fff' stroke-width='1'/><path d='M0 4.52014H10' stroke='%23fff' stroke-width='1'/></svg>");
        }
        .arrow-vis {
            opacity: 0;
            left: calc(50% + 1em);
        }
        .arrow-hidd {
            opacity: 1;
        }
    }

    .click-menu ul.menu-main li a:hover {
        transform: translateX(1em);
    }

    .pnation a:hover {
        color: #E40046;
        background: #fff;
    }

    .side-btn button:hover {
        filter: brightness(1.2);
    }

    .ft-menu a:hover {
        padding-left: 1em;
    }
    .ft-sub li {
        a:hover {
            &::before {
                left: 0;
            }
        }
    }
    .ft-txt a:hover {
        &::after {
            opacity: 1;
        }
    }
}