html {
    font-size: 62.5%;
    line-height: 1.6;
}
body {
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    color: #333333;
    font-size: 1.6rem;
}
ul,li,p {
    margin: 0;
    padding: 0;
    list-style: none;
}
a {
    color: inherit;
    text-decoration: none;
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 2.4rem;  /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;

    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;

    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;

    /* Support for IE. */
    font-feature-settings: 'liga';
}
.underline {
    background: linear-gradient(transparent 50%, #3BFFF6 50%);
}
.bottom-arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 22px 35px 0 35px;
    border-color: #003c81 transparent transparent transparent;
}
.left-border-heading {
    font-size: 2.6rem;
    color: #003C81;
    border-left: 4px solid #003C81;
    padding-left: 10px;
}
.btn-outline-blue {
    display: inline-block;
    font-size: 1.5rem;
    color: #003C81;
    width: 160px;
    height: 36px;
    border: 1px solid #003C81;
    border-radius: 4px;
    text-align: center;
    line-height: 36px;
}
.btn-outline-white {
    display: inline-block;
    font-size: 1.5rem;
    color: white;
    width: 160px;
    height: 36px;
    border: 1px solid white;
    border-radius: 4px;
    text-align: center;
    line-height: 36px;
}
.hide {
    display: none !important;
}
.mb0 {
    margin-bottom: 0 !important;
}
.color-blue {
    color: #3BFFF6 !important;
}

/*ヘッダー*/
.header .logo {
    max-width: 1080px;
    width: 80%;
    margin: 12px auto;
}
.header .navigation {
    height: 60px;
    background-color: #191919;
    border-bottom: 2px solid white;
    display: flex;
    justify-content: center;
}
.header .navigation-bottom-bar {
    height: 10px;
    background-color: #191919;
}
.header .navigation-list {
    max-width: 1080px;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .navigation-list .navigation-list-item {
    flex: 1;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 4px solid transparent;
    height: 100%;
    position: relative;
}
.header .navigation-list .navigation-list-item:hover::before {
    content: '';
    border-bottom: 4px solid white;
    /*transform: translateX(-50%);*/
    animation: border_anim 0.2s linear forwards;
    position: absolute;
    bottom: -4px;
}
@keyframes border_anim {
    0%{
        width: 0%;
    }
    100%{
        width: 100%;
    }
}
.header .navigation-list .navigation-list-item .navigation-list-item-text {
    display: block;
    width: 100%;
    text-align: center;
    height: 20px;
    margin-top: 3px;
    border-right: 1px solid white;
    box-sizing: border-box;
}
.header .navigation-list .navigation-list-item:first-child .navigation-list-item-text {
    border-left: 1px solid white;
}
.header .navigation-list .contact-button {
    width: 110px;
    height: 38px;
    background-color: #003C81;
    color: white;
    font-size: 1.3rem;
    text-align: center;
    line-height: 38px;
    margin-left: 20px;
}

/*キービジュアル*/
.top-visual {
    position: relative;
}
.top-visual .top-visua-img {
    width: 100%;
}
.top-visual-heading1 {
    position: absolute;
    background-color: #191919;
    color: white;
    font-size: 5.8rem;
    padding: 20px 40px 20px 7%;
    top: 30px;
    /*max-width: 650px;*/
    /*width: 48%;*/
    text-align: right;
}
.top-visual-heading2 {
    position: absolute;
    background-color: #191919;
    color: white;
    font-size: 2.4rem;
    padding: 10px 20px 10px 7%;
    top: 170px;
    line-height: 1.6;
    /*max-width: 410px;*/
    /*width: 30%;*/
    text-align: right;
}
.scroll-bottom {
    display: none;
}

.sp-header,
.sticky-wrapper {
    display: none;
}

.copy {
    margin: 64px 128px;
    font-size: 2rem;
    text-align: center;
    line-height: 1.6;
}

/*ニュース*/
.news-main {
    background: #003C81;
    color: white;
    font-size: 1.5rem;
    padding: 40px 0 80px;
    position: relative;
}
.news-main .news-main-list {
    width: 480px;
    margin: 0 auto;
}

/*dotスタイル*/
.news-main .news-main-dots {
    position: absolute;
    bottom: 50px;
    width: 100%;
}
.news-main .news-main-dots .slick-dots {
    position: relative;
    bottom: 0;
}
.news-main .slick-dots li button:before {
    opacity: 1;
    color: white;
    content: '○';
}
.news-main .slick-dots li.slick-active button:before {
    content: '●';
}

/*本文スタイル*/
.new-main-list-item-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

/*矢印*/
.news-arrows {
    margin-top: 12px;
    display: flex;
    justify-content: center;
}
.new-arrows-arrow {
    width: 60px;
    height: 60px;
    margin: 0 6px;
    background: #003C81;
    text-align: center;
    line-height: 0;
    color: white;
}
.new-arrows-arrow-next img {
    transform: rotate(180deg);
}

/*サービスポイント*/
.point-content {
    margin-top: 105px;
    padding-top: 40px;
    position: relative;
}
.point-content-frame {
    position: absolute;
    width: 90%;
    height: 300px;
    left: 0;
    top: 0;
    border-top: 3px solid #191919;
    border-right: 3px solid #191919;
}
.point-content-frame::after {
    content: '';
    position: absolute;
    right: -3px;
    bottom: -7px;
    width: 3px;
    height: 3px;
    background: #191919;
}
.point-content-title {
    font-size: 3.8rem;
    text-align: center;
    padding-bottom: 40px;
}
.point-content-main {
    /*max-width: 1208px;*/
    width: 90%;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 40px;
    background: #F2F2F2;
    border-top: 1px solid black;
    padding: 60px 0 60px 110px;
}
/*横リスト*/
.point-list-horizon {
    display: flex;
    justify-content: space-between;
    /*max-width: 860px;*/
    width: 79%;
}
.point-list-horizon-item {
    text-align: center;
    /*max-width: 230px;*/
    width: 27%;
    /*margin-right: 85px;*/
}
.point-list-horizon-item-img {
    background: #fff;
    position: relative;
}
.point-list-horizon-item-img img {
    width: 100%;
}
.point-list-horizon-item-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 30px 0 0;
    border-color: #003c81 transparent transparent transparent;
}
.point-list-horizon-item-title {
    font-size: 2.2rem;
    color: #003C81;
    padding: 26px 0 11px;
}
.point-list-horizon-item-text {
    font-size: 1.5rem;
    text-align: left;
}
.point-content-main-arrow {
    padding: 49px 0 12px;
}
.point-content-main-arrow .bottom-arrow {
    margin: auto;
}
.point-content-main-text {
    text-align: center;
    font-size: 2.6rem;
}
.point-content-bottom {
    /*width: 880px;*/
    width: 66%;
    margin: 0 auto;
}

/*左バージョン*/
.point-content-left .point-content-frame {
    left: auto;
    right: 0;
    top: 0;
    border-top: 3px solid #191919;
    border-left: 3px solid #191919;
    border-right: none;
}
.point-content-left .point-content-frame::after {
    right: auto;
    left: -3px;
}
.point-content-left .point-content-main {
    margin-left: 0;
    margin-right: auto;
    padding: 60px 110px 60px 0px;
}
.point-content-left .point-list-horizon {
    margin-right: 0;
    margin-left: auto;
}

.point-list-vertical-item {
    margin-bottom: 60px;
}

/*カードスタイル*/
.card {
    display: flex;
    justify-content: space-between;
    /*max-width: 880px;*/
    width: 80%;
}
.card .card-img {
    /*max-width: 400px;*/
    width: 45%;
    /*margin-right: 40px;*/
}
.card .card-img img {
    width: 100%;
}
.card .card-right {
    /*max-width: 440px;*/
    width: 50%;
    position: relative;
}
.card-right-title {
    margin-bottom: 10px;
}
.card-right-subtitle {
    font-size: 2rem;
    margin-bottom: 10px;
}
.card-right-footer .btn-outline-blue {
    margin-top: 14px;
}

.tab-box {
    margin-top: 20px;
    border: 1px solid #003C81;
}
.tab-box-menu {
    display: flex;
    height: 50px;
    border-bottom: 1px solid #003C81;
}
.tab-box-menu-item {
    flex: 1;
    height: 50px;
    text-align: center;
    position: relative;
    cursor: pointer;
}
.tab-box-menu-item.tab-box-menu-item-active {
    background: #003C81;
    color: #fff;
}
.tab-box-menu-item.tab-box-menu-item-active::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: calc(50% - 7px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 8.5px 0 8.5px;
    border-color: #003c81 transparent transparent transparent;
}
.tab-box-menu-item-text {
    line-height: 50px;
}
.tab-box-menu-item:not(:last-child) {
    border-right: 1px solid #003C81;
}
.tab-box-contents-content {
    padding: 30px;
    line-height: 1.6;
}

/*グリッド*/
.grid-box {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}
.grid-box-item {
    width: 33%;
    position: relative;
}
.grid-box-item-img {
    width: 100%;
}
.grid-box-item-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.grid-box-item-logo .grid-box-item-img {
    max-width: 130px;
}
.grid-box-item-text {
    position: absolute;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 1.5rem;
    color: #fff;
    bottom: 0;
    background: #000000B3 0% 0% no-repeat padding-box;
    text-align: center;
}

/*フッター*/
.footer {
    height: 300px;
}
.footer .footer-content {
    height: 280px;
    background: #003C81;
    text-align: center;
    box-sizing: border-box;
    padding-top: 50px;
    position: relative;
}
.footer-content-title {
    font-size: 3.6rem;
    color: white;
}
.footer-content-subtitle {
    margin: 30px 0;
    color: white;
}
.footer-content-btn {
    text-align: center;
}
.footer-top-btn {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: absolute;
    top: -40px;
    right: 128px;
    background: #191919;
    border-radius: 80px;
    text-align: center;
    line-height: 50px;
}
.footer-top-btn .footer-top-btn-icon {
    transform: rotate(180deg);
}
.footer-top-btn .material-icons {
    color: white;
    font-size: 8rem;
}
.footer .copyright {
    background: #191919;
    color: white;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 1.4rem;
}

@media screen and ( max-width:1023px) {
    html {
        /*font-size: 100%;*/
        line-height: 1.9;
    }
    .header {
        display: none;
    }

    .sp-header {
        position: relative;
        display: block;
        background: white;
        height: 90px;
        overflow: hidden;
        width: 100%;
        -moz-box-shadow: 2px 3px 6px 1px rgba(0, 0, 0, 0.17);
        -webkit-box-shadow: 2px 3px 6px 1px rgba(0, 0, 0, 0.17);
        -ms-box-shadow: 2px 3px 6px 1px rgba(0, 0, 0, 0.17);
        box-shadow: 2px 3px 6px 1px rgba(0, 0, 0, 0.17);
    }
    .sticky-wrapper {
        display: block;
    }

    .sp-header-top {
        height: 90px;
        display: flex;
        justify-content: space-between;
        align-items: end;
        padding: 20px;
        box-sizing: border-box;
    }
    .sp-header-logo img {
        width: 70%;
    }
    .sp-header-btn {
        position: relative;
        right: 0px;
        bottom: -4px;
        width: 20px;
        height: 20px;
        cursor: pointer;
        float: right;
        transition: top 2s, height 2s;
    }
    .sp-header-btn span,
    .sp-header-btn span:before,
    .sp-header-btn span:after {
        width: 20px;
        height: 2px;
        background-color: #333;
        position: absolute;
        display: inline-block;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .sp-header-btn span:before {
        content: "";
        top: 7px;
    }
    .sp-header-btn span:after {
        content: "";
        top: 14px;
    }
    .sp-header-btn.sp-header-btn-close span,
    .sp-header-btn.sp-header-btn-close span:before,
    .sp-header-btn.sp-header-btn-close span:after {
        -webkit-transition: 0.3s;
        transition: 0.3s;
        background-color: #333;
    }
    .sp-header-btn.sp-header-btn-close span {
        transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        top: 6px;
    }
    .sp-header-btn.sp-header-btn-close span:before {
        right: -100px;
    }
    .sp-header-btn.sp-header-btn-close span:after {
        transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        top: 0;
    }
    .sp-header .navigation-list {
        max-width: 100%;
        width: 100%;
        display: block;
        text-align: center;
    }
    .sp-header .navigation-list .navigation-list-item {
        color: #191919;
        display: block;
        box-sizing: border-box;
        border-bottom: none;
        height: auto;
        font-size: 2.2rem;
        padding: 10px;
        margin: 40px 0;
    }
    .sp-header .navigation-list .navigation-list-item .navigation-list-item-text {
        border-left: none;
        height: auto;
    }
    .sp-header .navigation-list .contact-button {
        width: auto;
        height: auto;
        background-color: #003C81;
        color: white;
        font-size: 1.6rem;
        text-align: center;
        line-height: 1;
        margin-left: 0;
        padding: 20px 80px;
        margin-top: 60px;
        display: inline-block;
    }
    .sp-header-space {
        display: block;
        height: 90px;
    }

    .top-visual {
        position: relative;
    }
    .top-visual .top-visua-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .top-visual-heading1 {
        position: absolute;
        background-color: #191919;
        color: white;
        font-size: 3rem;
        padding: 20px 40px 20px 7%;
        top: 80px;
        /*max-width: 650px;*/
        /*width: 48%;*/
        text-align: right;
    }
    .top-visual-heading2 {
        position: absolute;
        background-color: #191919;
        color: white;
        font-size: 1.6rem;
        padding: 10px 20px 10px 7%;
        top: 170px;
        line-height: 1.6;
        /*max-width: 410px;*/
        /*width: 30%;*/
        text-align: right;
    }
    .top-visual .scroll-bottom {
        position: absolute;
        bottom: 0;
        display: block;
        height: 60px;
        width: 100%;
        background: rgba(0, 60, 129, 0.75);
        text-align: center;
        line-height: 45px;
    }
    .top-visual .scroll-bottom .scroll-bottom-icon {
    }

    .copy {
        position: relative;
        padding: 160px 25px;
        margin: 0;
        font-size: 2rem;
        line-height: 2.2;
    }
    .copy .underline {
        display: block;
    }
    .copy::before {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 81px 41px 0 0;
        border-color: #003C81 transparent transparent transparent;
        position: absolute;
        top: 0;
        left: 0;
    }
    .copy::after {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 0 81px 41px;
        border-color: transparent transparent #003c81 transparent;
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .news {
        margin-bottom: 100px;
    }
    .news-main {
        padding: 60px 0 100px;
    }
    .news-main::before {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 81px 41px 0 0;
        border-color: #003C81 transparent transparent transparent;
        position: absolute;
        bottom: -81px;
        left: 0;
    }
    .news-main .news-main-list {
        padding: 0 25px;
        width: 100%;
    }
    .news-arrows .new-arrows-arrow {
        line-height: 22px;
    }

    .point-content {
        margin-top: 50px;
        padding-top: 0;
    }
    .point-content-frame {
        display: none;
    }
    .point-content-title {
        font-size: 2.8rem;
        border-top: 2px solid #191919;
        padding: 20px 0;
    }
    .point-content-main,
    .point-content-left .point-content-main {
        width: 100%;
        max-width: 100%;
        padding: 60px 25px;
    }
    .point-list-horizon {
        display: block;
        width: 100%;
        max-width: 100%;
    }
    .point-list-horizon-item {
        max-width: 100%;
        width: 100%;
        margin-bottom: 60px;
    }
    .point-list-horizon-item-img img {
        width: 50%;
    }
    .point-list-horizon-item-title {
        padding: 20px 0px 6px 0px;
    }
    .point-content-main-arrow {
        padding: 0 0 30px 0;
    }

    .point-content-bottom {
        width: 100%;
        padding: 30px 25px;
    }
    .grid-box-item {
        width: 50%;
    }
    .grid-box-item.grid-box-item-logo {
        display: none;
    }
    .grid-box-item .grid-box-item-img {
        width: 100%;
    }

    .card {
        max-width: 100%;
        width: 100%;
        display: block;
    }
    .card .card-img {
        max-width: 100%;
        width: 100%;
    }
    .card .card-right {
        max-width: 100%;
        width: 100%;
    }
    .card-right-title {
        margin: 15px 0;
    }

    .footer-content {
        padding: 80px 50px 0;
    }
    .footer-content-subtitle {
        line-height: 1.6;
    }
    .footer-top-btn {
        right: 20px;
    }
}
