html {
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    font-weight: inherit;
    margin:0;
    padding: 0;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    textarea, input.text, input[type="text"], input[type="button"], input[type="submit"], .input-checkbox, select, textarea, input, input:checked {
        -webkit-appearance: none;
    }

    body {
        -webkit-text-size-adjust: none;
    }
}

input[type="radio"] {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}
input[type="radio"] label {
    padding-left: 0.3em;
    font-size: 0.9rem;
}
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0em;
    height: 1rem;
    min-height: 1rem;
    width: 1rem;
    min-width: 1rem;
    border: 1px solid #999999;
    border-radius: 100%;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
    outline-style: none;
    margin-right: 0.2rem;
}
input[type="radio"]:checked {
    background-color: #ffffff;
}
input[type="radio"]:checked::after {
    content: "";
    display: block;
    position: absolute;
    top: 0.125rem;
    left: 0.125rem;
    width: 0.625rem;
    height: 0.625rem;
    background-color: #2B7AB9;
    border-radius: 50%;
}

#header {
    width: 100%;
    height: 5.5rem;
    background-color: #fff;
    position: fixed;
    border-bottom: solid 0.0625rem #ccc;
    z-index: 5;
}
@media screen and (max-width:63.9375rem) {
    #header {
        height: 3.5rem;
        top:0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.header_container {
    width: 120rem;
    margin: 0 auto;
}
@media screen and (max-width:119.9375rem) {
    .header_container {
        width: 100%;
    }
}
@media screen and (max-width:63.9375rem) {
    .header_container {
        display: flex;
        justify-content: space-between;
    }
}

.header2 {
    width: 120rem;
    margin: 0 auto;
}
@media screen and (max-width:119.9375rem) {
    .header_container {
        width: 95%;
    }
}
@media screen and (max-width:63.9375rem) {
    .header_container {
        width: 100%;
        position: relative;
    }
}

.header-logo {
    margin: 1.187rem 0 1.187rem 1.25rem;
    float:left;
}
@media screen and (max-width:63.9375rem) {
    .header-logo {
        margin-left: 0.5rem;
    }
}

.header-logo img {
    height: 2.875rem;
}
@media screen and (max-width:63.9375rem) {
    .header-logo img {
        height: 2rem;
    }
}

.menu {
    height: 5.5rem;
    text-align: right;
    margin-right: 2.5rem;
}
@media screen and (max-width:119.9375rem) {
    .menu {
        margin-right: 1.25rem;
    }
}
@media screen and (max-width:63.9375rem) {
    .menu {
        display: none;
    }
}

@media screen and (min-width:64rem) {
    .menu_mobile {
        display: none;
    }
    #menu_content {
        display: none;
    }
    #to_top {
        display: none !important;
    }
}
@media screen and (max-width:63.9375rem) {
    .menu_mobile {
        display: flex;
        align-items: center;
        margin-right: 0.5rem;
    }

    #overlay, #menu_content {
        position: fixed;
        top: 3.2rem;
        bottom: -3.2rem;
        left: 0rem;
        opacity: 0;
        visibility: hidden;
        transition: all 400ms;
        -webkit-transition: all 400ms;
    }

    .show {
        display: flex !important;
        animation: fadeIn 400ms;
        box-shadow: 0px 0px 4px 2px #cccccc;
    }
    .hide {
        display: none !important;
    }
    
    .blur {
        -ms-filter: blur(3px);
        filter: blur(3px);
        transition: .3s;
    }
    
    #overlay {
        height: 100vh;
        width: 100%;
        background-color: #7d7d7d99;
        z-index: 2;
    }
    
    #overlay.open {
        opacity: 100;
        visibility: visible;
    }
    
    #menu_content {
        visibility: visible;
        opacity: 1;
        z-index: 3;
        color: #ffffff;
        background-color: #333333;
        height: auto;
        width: 100%;
        padding: 0.5em 0em 1.3em 0em;
        margin-bottom: 2.5em;
        font-size: 1em;
        font-weight: bold;
        overflow-y: auto;
        transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
    }
    
    #menu_content.open {
        left: 0rem;
        visibility: visible;
        opacity: 0.85;
        transform: translateX(0%);
        -webkit-transform: translateX(0%);
    }
    
    #menu_content a {
        display: flex;
        align-items: center;
        color: #ffffff;
    }
    
    #menu_content ul {
        width: 16.5em;
        display: none;
        list-style: none;
        margin: -0.3em 0em;
        padding: 0em 2em;
        font-size: 0.9em;
        margin-block-start: 1.5em;
    }
    
    #menu_content ul li {
        height: 1.55em;
    }
    
    #menu_content ul a {
        color: #ffffff;
        font-size: 0.75em;
        margin: 1.25em 0em;
    }
    
    #menu_content .menu_title {
        border-top: 0.0625rem solid #CCCCCC;
        padding: 1.25em 0em;
    }
    #menu_content .menu_title:nth-child(1) {
        border: none;
    }
    #menu_content .menu_tab {
        display: flex;
        justify-content: space-between;
        cursor: pointer;
    }
    #menu_content div[name='expand'].down {
        transform: rotate(90deg);
        transition: 0.3s;
    }
    #menu_content div[name='expand'].up {
        transform: rotate(270deg);
        transition: 0.3s;
    }
    
    .menu_container {
        width: 15rem;
        text-align: left;
        margin: 0 auto;
    }
    
    #to_top {
        display: none;
        position: fixed;
        bottom: 3em;
        right: 1em;
        z-index: 1;
    }
    #to_top div {
        color: #ffffff;
        background-color: #2B7AB9;
        border-radius: 0.3rem;
        transform: rotate(270deg);
        cursor: pointer;
        opacity: 0.6;
        mix-blend-mode: multiply;
        -ms-filter: drop-shadow(-0.0625rem 0.0625rem 0.0625rem rgba(0,0,0,0.3));
    }
    #to_top .bezel {
        width: 3.125rem;
        height: 3.125rem;
    }
    #to_top img {
        position: relative;
        top: -1.875rem;
    }
}
@supports not (mix-blend-mode: multiply) {
    @media screen and (max-width:63.9375rem) {
        #to_top div {
            filter: drop-shadow(-0.0625rem 0.0625rem 0.0625rem rgba(0,0,0,0.3));
        }
    }
}
@media all and (max-width:63.9375rem) and (-ms-high-contrast: none) {
    #to_top div {
        background-color: #0D4D80;
    }
}

@media screen and (min-width:64rem) {
    ul {
        margin: 0;
    }
}

@media screen and (min-width:64rem) {
    li {
        display: inline;
        font-size: 1rem;
        color: #333333;
        list-style: none;
        padding: 0 0.187rem;
    }
}
@media screen and (min-width:120rem) {
    li {
        font-size: 1.125rem;
        padding: 0 0.937rem;
    }
}

.btn-gradient-radius {
    text-decoration: none;
    color: #FFF;
    background-color: #2B7AB9;
    display: inline-block;
    margin: 1.25rem auto;
    padding: 0.625rem 0.562rem;
    border-radius: 0.5rem;
    transition: .3s;
}
@media screen and (max-width:119.9375rem) {
    .btn-gradient-radius {
        margin: 1.25rem 0 1.25rem 0.625rem;
    }
}
@media screen and (max-width:63.9375rem) {
    .btn-gradient-radius {
        font-size: 0.75rem;
        margin-right: 1rem;
        padding: 0.25rem 0.75rem;
    }
}
@media screen and (max-width: 20rem){
    .btn-gradient-radius {
        font-size: 0.5rem;
        margin-right: 0.5rem;
        padding: 0.5rem 0.25rem;
    }
}

.btn-gradient-radius:hover {
    text-decoration: none;
    background-color: #0A487A;
    cursor: pointer;
}

#breadcrumb_list {
    text-align: left;
    position: relative;
    padding-top: 0.625rem;
    margin-left: 1.25rem;
}
@media screen and (max-width:63.9375rem) {
    #breadcrumb_list {
        padding-top: 0.75rem;
        margin-left: 0.75rem;
    }
}

@media screen and (max-width:120rem) {
    .breadcrumb {
        font-size: 0.875rem;
        width: 100%;
    }
}
@media screen and (max-width:63.9375rem) {
    .breadcrumb {
        font-size: 0.75rem;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
}
@media screen and (min-width: 120.0625rem){
    .breadcrumb {
        width: 120rem;
        margin: 0 auto;
    }
}

.breadcrumb a {
    color: #2B7AB9;
    text-decoration: none;
}

.nolink {
    text-decoration:none;
    color: #FFF;
}

@media screen and (min-width:120rem) {
    .l_hide {
        display: none;
    }
}

@media screen and (min-width:64rem) and (max-width:119.9375rem) {
    .m_hide {
        display: none;
    }
}

@media screen and (max-width:63.9375rem) {
    .s_hide {
        display: none;
    }
}

a {
	text-decoration: none;
	color: #333333;
}

a:hover {
	text-decoration: underline;
}

body {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
}

.relative {
    position: relative;
}
.absolute {
    position: absolute;
}

.normal_weight {
    font-weight: normal;
}

.btn-gradient-radius2 {
    display: inline-block;
    padding: 1.25rem 3.75rem;
    border-radius: 2.5rem;
    text-decoration: none;
    font-size: 1.25rem;
    color: #FFF;
    border: solid 0.0625rem #fff;
    background-color: #2B7AB9;
    transition: .3s;
}
@media screen and (max-width:63.9375rem) {
    .btn-gradient-radius2 {
        padding: 0.75rem 3.75rem;
        font-size: 1rem;
    }
}

.contact > .btn-gradient-radius2 {
    margin: 3.125rem 0 6.25rem 0;
}
@media screen and (max-width:63.9375rem) {
    .contact > .btn-gradient-radius2 {
        margin: 1.875rem 0 2.5rem 0;
    }
}

.btn-gradient-radius2:hover {
    text-decoration: none;
    background-color: #0A487A;
}

@media screen and (max-width:63.9375rem) {
    #main_content_div {
        margin-top: 3.5625rem;
    }
}

.animation_img img{
    cursor: pointer;
    transition-duration: 0.3s;
}

.animation_img img:hover {
    filter: brightness(50%);
    transition-duration: 0.3s;
}

.footer {
    background-color: #113857;
    position: relative;
    top: -1.5rem;
}
@media screen and (max-width:119.9375rem) {
    .footer {
        width: 100%;
    }
}
@media screen and (max-width:63.9375rem) {
    .footer {
        top: 0;
    }
}

.footer a {
    text-decoration: none;
    color: #fff;
}

.footer a:hover {
	text-decoration: underline;
}

.up_btn {
    display: inline-block;
    text-decoration: none;
    padding: 0.5rem 1.875rem;
    border-radius: 0.625rem 0.625rem 0 0;
    font-size: 0.937rem;
    color: #FFF;
    background-color: #113857;
    position: relative;
    height: 2.62rem;
    top: -2.437rem; 
    z-index: 1;
    transition: .3s;
}
@media screen and (max-width:63.9375rem) {
    .up_btn {
        display: none;
    }
}

.up_btn:hover {
    transform: translateY(-0.187rem);
    top: -2.62rem;
    cursor: pointer;
}


.f_menu {
    display: grid;
    display: -ms-grid;
    font-size: 0.75rem;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media screen and (min-width:64rem) {
    .f_menu {
        width: 60rem;
        margin:0 auto;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        }
}
@media screen and (min-width:120rem) {
    .f_menu {
        width: 73.687rem;
    }
}
@media screen and (max-width:63.9375rem) {
    .f_menu {
        width: 100%;
    }
}

.f_link {
    color: #fff;
    text-align: left;
}
@media screen and (max-width:63.9375rem) {
    .f_link {
        text-align: center;
    }
}

.f_heading {
    padding: 0.375rem 0;
    font-weight: bold;
    margin: 0.5rem 0;
}
@media screen and (max-width:63.9375rem) {
    .f_heading {
        padding: 1rem 0 0;
        margin: inherit
    }
}

.f_link:nth-child(1) .f_heading {
    font-weight: normal;
}
@media screen and (max-width:63.9375rem) {
    .f_link:nth-child(1) .f_heading {
        font-weight: bold;
    }
}

.f_link:nth-child(n+2) .f_heading a {
    pointer-events: none;
}
@media screen and (max-width:63.9375rem) {
    .f_link:nth-child(n+2) .f_heading a {
        pointer-events: auto;
    }
}

.f_text {
    padding: 0.375rem 0;
}
@media screen and (max-width:63.9375rem) {
    .f_text {
        display: none;
    }
}

#f_home {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
}
@media screen and (max-width:63.9375rem) {
    #f_home {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
}

#f_company {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
}
@media screen and (max-width:63.9375rem) {
    #f_company {
        grid-row: 1 / 2;
        grid-column: 2 / 3;
        -ms-grid-row: 1;
        -ms-grid-column: 2;
    }
}

#f_service {
    grid-row: 1 / 3;
    grid-column: 3 / 4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
}
@media screen and (max-width:63.9375rem) {
    #f_service {
        grid-row: 1 / 2;
        grid-column: 3 / 4;
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
}

#f_analyst {
    grid-row: 1 / 2;
    grid-column: 4 / 5;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
}
@media screen and (max-width:63.9375rem) {
    #f_analyst {
        grid-row: 1 / 2;
        grid-column: 4 / 5;
        -ms-grid-row: 1;
        -ms-grid-column: 4;
    }
}

#f_recruit {
    grid-row: 2 / 3;
    grid-column: 4 / 5;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
}
@media screen and (max-width:63.9375rem) {
    #f_recruit {
        grid-row: 1 / 2;
        grid-column: 5 / 6;
        -ms-grid-row: 1;
        -ms-grid-column: 5;
    }
}

#f_other {
    grid-row: 1 / 3;
    grid-column: 5 / 6;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 5;
    -ms-grid-column-span: 1;
}
@media screen and (max-width:63.9375rem) {
    #f_other {
        grid-row: 2 / 3;
        grid-column: 1 / 6;
        -ms-grid-row: 2;
        -ms-grid-column: 1;
        -ms-grid-column-span: 6;
    }
}

.f_policy_link {
    display: none;
}
@media screen and (max-width:63.9375rem) {
    .f_policy_link {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.625rem;
        font-weight: normal;
        margin-top: 1.25rem;
    }
}

.f_policy_text {
    margin: 0.625rem 1rem;
}

.copy {
    padding: 3.125rem 0;
    font-size: 0.75rem;
    color: #497394;
}

@media screen and (max-width:31.1875rem){
    .break500 {
        display: block;
        width: 100%;
    }
}
@media screen and (min-width:31.25rem) {
    .break500 {
        display: none;
    }
}

@media screen and (max-width:43.6875rem){
    .break600 {
        display: block;
        width: 100%;
    }
}
@media screen and (min-width:43.75rem) {
    .break600 {
        display: none;
    }
}

.break1920over {
    display: none;
}
@media screen and (min-width:120rem) {
    .break1920over {
        display: block;
        width: 100%;
    }
}

@media screen and (max-width:63.9375rem) {
    #menu-trigger,
    #menu-trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }
    #menu-trigger {
        position: relative;
        width: 2rem;
        height: 2rem;
    }
    #menu-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #2B7AB9;
        border-radius: 4px;
    }
    #menu-trigger span:nth-of-type(1) {
        top: 4px;
    }
    #menu-trigger span:nth-of-type(2) {
        top: 0.875rem;
    }
    #menu-trigger span:nth-of-type(3) {
        bottom: 4px;
    }

    #menu-trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(0.625rem) rotate(45deg);
        transform: translateY(0.625rem) rotate(45deg);
    }
    #menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    #menu-trigger.active span:nth-of-type(3) {
        -webkit-transform: translateY(-0.625rem) rotate(-45deg);
        transform: translateY(-0.625rem) rotate(-45deg);
    }
}

.triangle { 
    width: 0;
    height: 0;
    background: transparent;
    border-top: 2.5rem solid #fff;
    border-left: 4.375rem solid transparent;
    border-right: 4.375rem solid transparent;
    top: 100%;
    left: 50%;
    margin-left: -4.375rem;
    position: relative;
}
@media screen and (max-width:63.9375rem) {
    .triangle { 
        border-top: 1rem solid #fff;
        border-left: 2rem solid transparent;
        border-right: 2rem solid transparent;
        margin-left: -2rem;
    }
}

.triangle2 { 
    width: 0;
    height: 0;
    background: transparent;
    border-top: 2.5rem solid #E0EAF6;
    border-left: 4.375rem solid transparent;
    border-right: 4.375rem solid transparent;
    top: 100%;
    left: 50%;
    margin-left: -4.375rem;
    position: relative;
}
@media screen and (max-width:63.9375rem) {
    .triangle2 { 
        border-top: 1rem solid #E0EAF6;
        border-left: 2rem solid transparent;
        border-right: 2rem solid transparent;
        margin-left: -2rem;
    }
}

.triangle3 { 
    width: 0;
    height: 0;
    background: transparent;
    border-top: 2.5rem solid #2B7AB9;
    border-left: 4.375rem solid transparent;
    border-right: 4.375rem solid transparent;
    top: 100%;
    left: 50%;
    margin-left: -4.375rem;
    position: relative;
}
@media screen and (max-width:63.9375rem) {
    .triangle3 { 
        border-top: 1rem solid #2B7AB9;
        border-left: 2rem solid transparent;
        border-right: 2rem solid transparent;
        margin-left: -2rem;
        margin-bottom: 1.5rem;
    }
}

.heading_jr {
    font-size: 0.75rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 2.5rem;
    text-align: center;
}
@media screen and (max-width:63.9375rem) {
    .heading_jr {
        margin-bottom: 1.875rem;
    }
}

.contact {
    background-color: #2B7AB9;
    font-size: 0.875rem;
    color: #fff;
}

.contact a { 
    color: #fff;
}

.contact_heading {
    font-size: 1.875rem;
    color: #fff;
    font-weight: bold;
    margin-top: 3.75rem;
    text-align: center;
}
@media screen and (max-width:63.9375rem) {
    .contact_heading {
        font-size: 1.125rem;
        margin-top: 1.875rem;
    }
}

.contact_heading_j {
    font-size: 0.75rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 2.5rem;
    text-align: center;
}
@media screen and (max-width:119.9375rem) {
    .contact_heading_j {
        margin-bottom: 1.875rem;
    }
}