@-webkit-keyframes zoomOut {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        -ms-transform: scale(1.2)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        -ms-transform: scale(1)
    }
}

@keyframes zoomOut {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        -ms-transform: scale(1.2)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        -ms-transform: scale(1)
    }
}

.top-mainvisual {
    position: relative
}

.top-mainvisual .mv-slider,
.top-mainvisual .slick-list,
.top-mainvisual .slick-track,
.top-mainvisual .slick-slide,
.top-mainvisual .slick-slide>div,
.top-mainvisual .slider-item {
    height: 100%
}

@media (min-width: 768px) {
    .top-mainvisual {
        /* height: 800px; */
    }
}

@media only screen and (min-width: 768px) and (min-width: 1500px) {
    .top-mainvisual {
        /* height: 100vh; */
        overflow: hidden
    }
}

@media (max-width: 767px) {
    .top-mainvisual {
        height: 100vh;
        overflow: hidden
    }
}

.top-mainvisual .mv-slider .slider-item:not(:first-child) {
    display: none
}

.top-mainvisual .slider-item {
    position: relative;
    overflow: hidden;
    display: block !important
}

.top-mainvisual .slider-item img {
    width: 100%;
    /* height: 120%; */
    object-fit: cover;
    margin-top: 80px;
}

@media only screen and (min-width: 768px) and (min-width: 1500px) {
    .top-mainvisual .slider-item img {
        /* position: absolute; */
        /* left: 0; */
        /* top: 0; */
    }
}

@media (max-width: 767px) {
    .top-mainvisual .slider-item img {
        object-position: bottom
    }
}

.top-mainvisual .mv-title {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s
}

.top-mainvisual .mv-title h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 63px;
    letter-spacing: 0.800000011920929px;
    text-align: left;
    color: #fff;
    border-bottom: 2px solid #fff;
    padding-bottom: 5%;
    margin-bottom: 5%;
    width: fit-content;
}

.top-mainvisual .mv-title p {
    font-size: 20px;
    font-weight: 600;
    line-height: 57.6px;
    letter-spacing: 0.800000011920929px;
    text-align: left;
    color: #fff;
}

@media (min-width: 768px) {
    .top-mainvisual .mv-title {
        width: 66vw
    }

    .top-mainvisual .mv-title img {
        width: 100%
    }
}

@media only screen and (min-width: 768px) and (min-width: 1500px) {
    .top-mainvisual .mv-title {
        top: 50%;
        right: 55px
    }
}

@media only screen and (min-width: 768px) and (min-width: 1700px) {
    .top-mainvisual .mv-title {
        width: 55vw;
        right: 120px;
        top: 50%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1100px) {
    .top-mainvisual .mv-title {
        top: 26.5vw
    }
}

@media (max-width: 767px) {
    .top-mainvisual .mv-title {
        width: 80%;
        top: 50%;
        left: 50%;
        right: auto;
        transform: none;
        transform: translate(-50%, -50%);
    }
}

.top-mainvisual .mv-title .ttl {
    color: #fff;
    text-indent: -40px;
    padding-left: 40px;
    font-size: 50px;
    font-size: 5rem;
    line-height: 1.6em;
    letter-spacing: .2em;
    font-weight: 300;
    transform: translate(0, 50px);
    -webkit-transform: translate(0, 50px);
    opacity: 0
}

@media (max-width: 767px) {
    .top-mainvisual .mv-title .ttl {
        font-size: 30px;
        font-size: 3rem;
        line-height: 1.6em;
        text-align: center;
        text-indent: 0;
        padding-left: 0
    }
}

.top-mainvisual .mv-title .ttl span {
    font-weight: 500
}

.top-mainvisual .mv-title.is-active {
    opacity: 1
}

.top-mainvisual .mv-title.is-active .ttl {
    transition: opacity 0.6s ease-in-out, transform 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-delay: .5s;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    opacity: 1
}

@-webkit-keyframes scrollDown {
    0% {
        transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        opacity: 0
    }

    50% {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        opacity: 1
    }

    100% {
        transform: translateY(15px);
        -webkit-transform: translateY(15px);
        opacity: 0
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        opacity: 0
    }

    50% {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        opacity: 1
    }

    100% {
        transform: translateY(15px);
        -webkit-transform: translateY(15px);
        opacity: 0
    }
}

.top-mainvisual .mv-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
    cursor: pointer;
    cursor: pointer
}

@media only screen and (min-width: 1025px) {
    .top-mainvisual .mv-scroll:hover {
        opacity: 0.7 !important
    }
}

@media (max-width: 767px) {
    .top-mainvisual .mv-scroll {
        bottom: 20px
    }
}

.top-mainvisual .mv-scroll .txt {
    font-family: "din-2014", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25em;
    letter-spacing: .05em;
    font-weight: 600;
    color: #FF1629;
    margin-bottom: 6px
}

.top-mainvisual .mv-scroll .icon {
    width: 12px;
    height: 24px;
    position: relative;
    left: -2px;
    margin: 0 auto;
    animation: scrollDown 2.5s ease infinite;
    -webkit-animation: scrollDown 2.5s ease infinite
}

.top-mainvisual .mv-scroll .icon:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-left: 1px solid #FF1629;
    border-top: 1px solid #FF1629;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg)
}

.top-mainvisual .mv-scroll.is-active {
    opacity: 1
}

.top-mainvisual .mv-pattern {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    width: 14.84375%;
    height: 100%;
    background: url("../image/mv_pattern.png") 0 0/100% 100% repeat-y;
    pointer-events: none
}

@media (max-width: 767px) {
    .top-mainvisual .mv-pattern {
        width: 151px;
        background: url("../image/mv_pattern_sp.png") 0 0/100% auto no-repeat
    }
}

.top-mainvisual .fixed-banner {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
    width: 300px
}

@media (max-width: 767px) {
    .top-mainvisual .fixed-banner {
        width: calc(100% - 50px);
        left: 25px
    }
}

.top-mainvisual .fixed-banner a {
    display: block;
    border-radius: 20px;
    background: #fff;
    padding: 34px 27px 30px
}

@media (max-width: 767px) {
    .top-mainvisual .fixed-banner a {
        padding: 34px 29px 25px
    }
}

.top-mainvisual .fixed-banner a .logo-banner {
    position: relative;
    margin-bottom: 20px;
    padding-left: 3px
}

@media (max-width: 767px) {
    .top-mainvisual .fixed-banner a .logo-banner {
        padding-left: 6px;
        margin-bottom: 11px
    }

    .top-mainvisual .fixed-banner a .logo-banner img {
        width: 160px
    }
}

.top-mainvisual .fixed-banner a .logo-banner:before {
    position: absolute;
    content: '';
    background: url("../image/ico_banner.png") 0 0/cover no-repeat;
    background-size: 100% 100%;
    width: 40px;
    height: 40px;
    right: 3px;
    top: 50%;
    margin-top: -20px
}

@media (max-width: 767px) {
    .top-mainvisual .fixed-banner a .logo-banner:before {
        right: 1px
    }
}

.top-mainvisual .fixed-banner a .desc-banner {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 26px;
    color: #FF1629;
    position: relative;
    top: 2px
}

@media (max-width: 767px) {
    .top-mainvisual .fixed-banner a .desc-banner {
        font-size: 15px;
        font-size: 1.5rem
    }
}

.top-news-about {
    padding-top: 120px;
    position: relative;
    overflow: hidden
}

@media (max-width: 767px) {
    .top-news-about {
        padding-top: 60px
    }
}

.top-news .top-news-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap
}

.top-news .new-box-left {
    width: 25%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between
}

@media (max-width: 767px) {
    .top-news .new-box-left {
        width: 100%;
        display: block
    }
}

.top-news .new-box-left .t-title {
    margin-left: -22px
}

@media (max-width: 767px) {
    .top-news .new-box-left .t-title {
        margin-left: 0
    }
}

.top-news .new-box-right {
    width: 75%;
    padding-top: 20px
}

@media (max-width: 767px) {
    .top-news .new-box-right {
        width: 100%;
        padding-top: 34px
    }
}

.top-news .new-btn {
    line-height: 0
}

@media (max-width: 767px) {
    .top-news .new-btn {
        text-align: right;
        margin-top: 30px
    }
}

.top-news .new-list .new-item:first-child .new-item-wrapper {
    border-top: 1px solid #B3B3B3
}

.top-news .new-list .new-item-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    border-bottom: 1px solid #B3B3B3;
    padding: 44px 0;
    cursor: pointer
}

@media (max-width: 767px) {
    .top-news .new-list .new-item-wrapper {
        padding: 30px 0;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

@media only screen and (min-width: 1025px) {
    .top-news .new-list .new-item-wrapper:hover {
        opacity: 1
    }

    .top-news .new-list .new-item-wrapper:hover .date,
    .top-news .new-list .new-item-wrapper:hover .ttl {
        color: #FF1629
    }
}

.top-news .new-list .date {
    font-family: "din-2014", sans-serif;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    font-weight: 600;
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    -o-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100px;
    margin-right: 30px;
    transition: color .3s;
    -webkit-transition: color .3s
}

@media (max-width: 767px) {
    .top-news .new-list .date {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.25em;
        width: 90px;
        margin-right: 10px
    }
}

.top-news .new-list .cate {
    width: 140px;
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    -o-flex: 0 0 auto;
    flex: 0 0 auto;
    line-height: 0
}

@media (max-width: 767px) {
    .top-news .new-list .cate {
        width: calc(100% - 100px)
    }
}

.top-news .new-list .cate span {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.38462em;
    display: inline-block;
    border: 1px solid #022074;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    color: #022074;
    max-width: 140px;
    width: 100%;
    padding: 3px 5px;
    text-align: center
}

.top-news .new-list .cate span:not(:last-child) {
    margin-bottom: 5px
}

@media (max-width: 767px) {
    .top-news .new-list .cate span {
        max-width: 120px;
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.41667em;
        padding: 1px 5px
    }
}

.top-news .new-list .ttl {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6875em;
    margin-left: 30px;
    transition: color .3s;
    -webkit-transition: color .3s
}

@media only screen and (min-width: 768px) {
    .top-news .new-list .ttl {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }
}

@media (max-width: 767px) {
    .top-news .new-list .ttl {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.73333em;
        overflow: hidden;
        width: 100%;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: normal
    }
}

.c-text-loop {
    margin-top: 190px;
    position: relative;
    z-index: 1
}

@media (max-width: 767px) {
    .c-text-loop {
        margin-top: 67px
    }
}

.top-about {
    padding-right: 25px;
    margin-top: 110px;
    position: relative;
}

@media (max-width: 767px) {
    .top-about {
        margin-top: -21px;
        padding-right: 0
    }
}

.top-about .top-about-wrapper {
    max-width: calc(100% - (100% - 1105px) / 2);
    width: 100%
}

@media only screen and (min-width: 768px) and (min-width: 1300px) {
    .top-about .top-about-wrapper {
        max-width: 1180px;
        margin: 0 auto
    }

    .top-about .top-about-wrapper .about-img .img-overlay-in {
        border-radius: 20px
    }
}

@media (max-width: 767px) {
    .top-about .top-about-wrapper {
        max-width: 100%
    }
}

.top-about .top-about-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center
}

.top-about .about-box-left {
    width: 33.9%
}

@media (max-width: 767px) {
    .top-about .about-box-left {
        width: 100%
    }
}

.top-about .about-box-right {
    width: 66.1%;
    padding-left: 100px
}

@media only screen and (min-width: 768px) {
    .top-about .about-box-right {
        padding-left: 40px
    }
}

@media only screen and (min-width: 1200px) {
    .top-about .about-box-right {
        padding-left: 100px
    }
}

@media (max-width: 767px) {
    .top-about .about-box-right {
        width: 100%;
        padding: 0 25px;
        margin-top: 60px
    }
}

.top-about .about-box-right-wrapper {
    max-width: 682px
}

@media (max-width: 767px) {
    .top-about .about-box-right-wrapper {
        max-width: 100%
    }
}

.top-about .about-img .img-overlay {
    border-radius: 0 20px 20px 0;
    -webkit-border-radius: 0 20px 20px 0
}

@media (max-width: 767px) {
    .top-about .about-img .img-overlay {
        border-radius: 0;
        -webkit-border-radius: 0
    }
}

.top-about .about-img .img-overlay-in {
    position: relative;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    -webkit-border-radius: 0 20px 20px 0
}

.top-about .about-img .img-overlay-in:before {
    display: block;
    content: " ";
    width: 100%;
    padding-top: 165%
}

.top-about .about-img .img-overlay-in>.content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

@media (max-width: 767px) {
    .top-about .about-img .img-overlay-in {
        position: relative;
        border-radius: 0;
        -webkit-border-radius: 0
    }

    .top-about .about-img .img-overlay-in:before {
        display: block;
        content: " ";
        width: 100%;
        padding-top: 69.33333%
    }

    .top-about .about-img .img-overlay-in>.content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0
    }
}

.top-about .about-img .img-overlay-in img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0
}

.top-about .c-btn-group {
    padding-left: 22px;
    margin-top: 65px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between
}

@media (max-width: 767px) {
    .top-about .c-btn-group {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        margin-top: 37px;
        padding-left: 0
    }
}

.top-about .c-btn-group .btn-cmn1 {
    margin: 0
}

@media only screen and (min-width: 768px) {
    .top-about .c-btn-group .btn-cmn1 {
        width: calc(50% - 10px)
    }
}

@media (max-width: 767px) {
    .top-about .c-btn-group .btn-cmn1:not(:last-child) {
        margin-bottom: 10px
    }
}

.top-company {
    margin-top: 160px;
    position: relative
}

@media (max-width: 767px) {
    .top-company {
        padding-bottom: 90px;
        margin-top: 80px
    }
}

/*.top-company:after {
    content: '';
    width: 100%;
    height: calc(100% - 200px);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: #EFEFEF;
    border-radius: 50px 50px 0 0;
    -webkit-border-radius: 50px 50px 0 0
}

@media (max-width: 767px) {
    .top-company:after {
        height: calc(100% - 100px);
        border-radius: 40px 40px 0 0;
        -webkit-border-radius: 40px 40px 0 0
    }
}*/

.top-company .top-company-container {
    max-width: 1190px;
    padding: 0 25px;
    margin: 0 auto
}

.top-company .top-company-list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -30px
}

@media only screen and (min-width: 768px) {
    .top-company .top-company-list {
        margin: 0 -15px
    }
}

@media only screen and (min-width: 992px) {
    .top-company .top-company-list {
        margin: 0 -30px
    }
}

.top-company .top-company-list .company-item {
    width: 33.33%;
    padding: 0 30px 5% 30px;
}

@media only screen and (min-width: 768px) {
    .top-company .top-company-list .company-item {
        padding: 0 15px 5% 15px;
    }
}

@media only screen and (min-width: 992px) {
    .top-company .top-company-list .company-item {
        padding: 0 30px 5% 30px;
    }
}

@media (max-width: 767px) {
    .top-company .top-company-list .company-item {
        width: 100%
    }

    .top-company .top-company-list .company-item:not(:last-child) {
        margin-bottom: 40px
    }
}

.top-company .top-company-list .company-item-wrapper {
    display: block;
    cursor: pointer
}

@media only screen and (min-width: 1025px) {
    .top-company .top-company-list .company-item-wrapper:hover {
        opacity: 1
    }

    .top-company .top-company-list .company-item-wrapper:hover .company-item-inf .c-arrow-circle {
        background-color: #FF1629
    }

    .top-company .top-company-list .company-item-wrapper:hover .company-item-inf .c-arrow-circle span:before {
        border-left-color: #fff;
        border-top-color: #fff
    }
}

.top-company .top-company-list .company-item-img .img-overlay {
    border-radius: 20px;
    -webkit-border-radius: 20px
}

.top-company .top-company-list .company-item-img .img-overlay-in {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 50%;
}

.top-company .top-company-list .company-item-img .img-overlay-in:before {
    display: block;
    content: " ";
    width: 100%;
    /* padding-top: 132.35294%; */
}

.top-company .top-company-list .company-item-img .img-overlay-in>.content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

@media (max-width: 767px) {
    .top-company .top-company-list .company-item-img .img-overlay-in {
        position: relative
    }

    .top-company .top-company-list .company-item-img .img-overlay-in:before {
        display: block;
        content: " ";
        width: 100%;
        /*        padding-top: 67.69231%*/
    }

    .top-company .top-company-list .company-item-img .img-overlay-in>.content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0
    }
}

@media only screen and (min-width: 1025px) {
    .top-company .top-company-list .company-item-img .img-overlay-in:hover img {
        transform: scale(1.1, 1.1)
    }
}

.top-company .top-company-list .company-item-img .img-overlay-in img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* position: absolute; */
    /* left: 0; */
    /* top: 0; */
    border-radius: 20px;
    -webkit-border-radius: 20px;
    transition: transform .3s
}

.top-company .top-company-list .company-item-inf {
    margin-top: 40px;
    padding-bottom: 10px;
    padding-right: 90px;
    position: relative
}

@media only screen and (min-width: 768px) {
    .top-company .top-company-list .company-item-inf {
        padding-right: 60px
    }
}

@media only screen and (min-width: 992px) {
    .top-company .top-company-list .company-item-inf {
        padding-right: 90px
    }
}

@media (max-width: 767px) {
    .top-company .top-company-list .company-item-inf {
        margin-top: 24px
    }
}

.top-company .top-company-list .company-item-inf .c-arrow-circle {
    position: absolute;
    right: 10px;
    top: 7px
}

@media only screen and (min-width: 768px) {
    .top-company .top-company-list .company-item-inf .c-arrow-circle {
        width: 40px;
        height: 40px
    }

    .top-company .top-company-list .company-item-inf .c-arrow-circle span:before {
        width: 7px;
        height: 7px
    }
}

@media only screen and (min-width: 992px) {
    .top-company .top-company-list .company-item-inf .c-arrow-circle {
        width: 50px;
        height: 50px
    }

    .top-company .top-company-list .company-item-inf .c-arrow-circle span:before {
        width: 10px;
        height: 10px
    }
}

@media only screen and (min-width: 1200px) {
    .top-company .top-company-list .company-item-inf .c-arrow-circle {
        width: 70px;
        height: 70px
    }
}

@media (max-width: 767px) {
    .top-company .top-company-list .company-item-inf .c-arrow-circle {
        right: 0;
        top: 3px
    }
}

@media only screen and (min-width: 768px) {
    .top-company .top-company-list .company-item-inf .t-title .en * {
        font-size: 26px;
        font-size: 2.6rem
    }
}

@media only screen and (min-width: 992px) {
    .top-company .top-company-list .company-item-inf .t-title .en * {
        font-size: 30px;
        font-size: 3rem
    }
}

@media only screen and (min-width: 1200px) {
    .top-company .top-company-list .company-item-inf .t-title .en * {
        font-size: 40px;
        font-size: 4rem
    }
}

@media only screen and (min-width: 768px) {
    .top-company .top-company-list .company-item-inf .t-title .en:before {
        margin-top: -5px
    }
}

@media only screen and (min-width: 992px) {
    .top-company .top-company-list .company-item-inf .t-title .en:before {
        margin-top: -3px
    }
}

.top-company .top-company-list .company-item-inf .t-title .ja {
    margin-top: 4px;
    color: #000000;
}

@media (max-width: 767px) {
    .top-company .top-company-list .company-item-inf .t-title .ja {
        margin-top: 2px
    }
}

@media only screen and (min-width: 768px) {
    .top-company .top-company-list .company-item-inf .t-title.lh1 .en:before {
        margin-top: -18px
    }
}

@media only screen and (min-width: 992px) {
    .top-company .top-company-list .company-item-inf .t-title.lh1 .en:before {
        margin-top: -23px
    }
}

.top-company .top-company-list2 {
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    padding: 60px 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    margin: 70px 0 0;
    position: relative;
    min-height: 280px
}

@media (max-width: 767px) {
    .top-company .top-company-list2 {
        background-color: transparent;
        border-radius: 0;
        -webkit-border-radius: 0;
        min-height: auto;
        padding: 0;
        margin: 50px -25px 0
    }
}

.top-company .top-company-list2:after {
    content: '';
    width: 1px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    position: absolute;
    background-color: #FF1629
}

@media (max-width: 767px) {
    .top-company .top-company-list2:after {
        display: none
    }
}

.top-company .top-company-list2 .company-item {
    width: 50%;
    padding: 0
}

@media (max-width: 767px) {
    .top-company .top-company-list2 .company-item {
        width: calc(100% - 25px)
    }

    .top-company .top-company-list2 .company-item:nth-child(odd) .company-item-wrapper {
        border-radius: 0 20px 20px 0;
        -webkit-border-radius: 0 20px 20px 0
    }

    .top-company .top-company-list2 .company-item:nth-child(even) {
        margin-left: auto
    }

    .top-company .top-company-list2 .company-item:nth-child(even) .company-item-wrapper {
        border-radius: 20px 0 0 20px;
        -webkit-border-radius: 20px 0 0 20px
    }

    .top-company .top-company-list2 .company-item:not(:last-child) {
        margin-bottom: 20px
    }
}

.top-company .top-company-list2 .company-item-wrapper {
    padding: 0 60px;
    display: block
}

@media only screen and (min-width: 768px) {
    .top-company .top-company-list2 .company-item-wrapper {
        padding: 0 30px
    }
}

@media only screen and (min-width: 1200px) {
    .top-company .top-company-list2 .company-item-wrapper {
        padding: 0 30px
    }
}

@media (max-width: 767px) {
    .top-company .top-company-list2 .company-item-wrapper {
        padding: 0;
        background-color: #fff;
        min-height: 136px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -o-align-items: center;
        align-items: center;
        padding: 0 25px
    }
}

.top-company .top-company-list2 .company-item-inf {
    margin-top: 0
}

@media (max-width: 767px) {
    .top-company .top-company-list2 .company-item-inf {
        padding-right: 50px;
        padding-bottom: 0;
        width: 100%
    }
}

@media (max-width: 767px) {
    .top-company .top-company-list2 .company-item-inf .t-title .en * {
        font-size: 28px;
        font-size: 2.8rem;
        line-height: 1.07143em
    }
}

@media (max-width: 767px) {
    .top-company .top-company-list2 .company-item-inf .c-arrow-circle {
        width: 40px;
        height: 40px;
        top: 50%;
        margin-top: -20px
    }

    .top-company .top-company-list2 .company-item-inf .c-arrow-circle span:before {
        width: 6px;
        height: 6px;
        top: 4px
    }
}

.top-brand-tech {
    padding-top: 100px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden
}

.top-brand-tech .top-brand {
    text-align: center;
}

.top-brand-tech .top-brand .c-title .ttl-ja {
    margin-bottom: 5%;
}

.top-brand-tech .top-brand .c-title .ttl-en {
    padding-left: 0;
}

.top-brand-tech .top-brand .c-title .ttl-en:before {
    display: none;
}

@media (max-width: 767px) {
    .top-brand-tech {
        padding-top: 0;
        padding-bottom: 80px
    }
}

.top-brand .brand-title-box {
    text-align: center;
    line-height: 0
}

.top-brand .brand-ttl * {
    font-family: "din-2014", sans-serif;
    color: #FF1629;
    font-size: 60px;
    font-size: 6rem;
    line-height: 1.26667em;
    letter-spacing: .05em;
    font-weight: 600
}

@media (max-width: 767px) {
    .top-brand .brand-ttl * {
        font-size: 36px;
        font-size: 3.6rem;
        line-height: 1.27778em
    }
}

.top-brand .brand-ttl .char.space {
    padding-right: 20px
}

@media (max-width: 767px) {
    .top-brand .brand-ttl .char.space {
        padding-right: 10px
    }
}

.top-brand .c-banner-brand {
    margin-top: 60px
}

@media (max-width: 767px) {
    .top-brand .c-banner-brand {
        margin-top: 30px
    }
}

.top-tech {
    padding-top: 150px;
    padding-left: 25px;
    position: relative;
}

@media (max-width: 767px) {
    .top-tech {
        padding-top: 100px;
        padding-left: 0
    }
}

.top-tech .top-tech-wrapper {
    max-width: calc(100% - (100% - 1105px) / 2);
    width: 100%;
    margin-left: auto
}

@media (max-width: 767px) {
    .top-tech .top-tech-wrapper {
        max-width: 100%
    }
}

.top-tech .top-tech-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -o-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap
}

@media (max-width: 767px) {
    .top-tech .top-tech-box {
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -ms-flex-direction: row;
        -o-flex-direction: row;
        flex-direction: row
    }
}

.top-tech .tech-box-left {
    width: 45.33%;
    padding-right: 7%;
}

@media (max-width: 767px) {
    .top-tech .tech-box-left {
        width: 100%;
        padding-right: 0;
    }
}

.top-tech .tech-box-right {
    width: 54.67%;
    padding-top: 30px
}

@media (max-width: 767px) {
    .top-tech .tech-box-right {
        width: 100%;
        padding: 0 25px;
        margin-top: 40px
    }
}

.top-tech .tech-img .img-overlay-in {
    position: relative;
    overflow: hidden
}

.top-tech .tech-img .img-overlay-in:before {
    display: block;
    content: " ";
    width: 100%;
    padding-top: 127.1028%
}

.top-tech .tech-img .img-overlay-in>.content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

@media (max-width: 767px) {
    .top-tech .tech-img .img-overlay-in {
        position: relative
    }

    .top-tech .tech-img .img-overlay-in:before {
        display: block;
        content: " ";
        width: 100%;
        padding-top: 69.33333%
    }

    .top-tech .tech-img .img-overlay-in>.content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0
    }
}

.top-tech .tech-img .img-overlay-in img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0
}

.top-tech .c-btn-group {
    padding-left: 22px;
    margin-top: 65px
}

@media (max-width: 767px) {
    .top-tech .c-btn-group {
        padding-left: 0;
        margin-top: 37px
    }
}

.top-tech .c-btn-group .btn-cmn1 {
    margin: 0
}

.top-recruit {
    padding: 140px 25px 195px 0;
    background: url("../image/recruit_bg.jpg") 0 0/cover no-repeat
}

@media (max-width: 767px) {
    .top-recruit {
        padding: 80px 0 120px;
        background-image: url("../image/recruit_bg_sp.jpg")
    }
}

.top-recruit .top-recruit-wrapper {
    max-width: calc(100% - (100% - 1025px) / 2);
    width: 100%;
    position: relative;
    z-index: 1
}

@media (max-width: 767px) {
    .top-recruit .top-recruit-wrapper {
        max-width: calc(100% - 25px);
        border-radius: 0 20px 20px 0;
        -webkit-border-radius: 0 20px 20px 0;
        overflow: hidden
    }
}

.top-recruit .top-recruit-wrapper:after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: -1;
    background-color: #fff;
    border-radius: 0 20px 20px 0;
    -webkit-border-radius: 0 20px 20px 0
}

.top-recruit .top-recruit-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center
}

.top-recruit .recruit-box-left {
    width: 33.33%
}

@media (max-width: 767px) {
    .top-recruit .recruit-box-left {
        width: 100%
    }
}

.top-recruit .recruit-box-right {
    width: 66.67%;
    padding: 50px 100px 50px 80px
}

@media (max-width: 767px) {
    .top-recruit .recruit-box-right {
        width: 100%;
        padding: 40px 30px 50px
    }
}

.top-recruit .recruit-box-right-wrapper {
    position: relative;
    z-index: 1
}

.top-recruit .recruit-catch {
    right: -48px;
    top: -24px;
    position: absolute;
    z-index: -1;
    pointer-events: none
}

@media (max-width: 767px) {
    .top-recruit .recruit-catch {
        right: -10px;
        top: -17px
    }
}

@media (max-width: 767px) {
    .top-recruit .recruit-catch img {
        max-width: 74px
    }
}

.top-recruit .recruit-img .img-overlay-in {
    position: relative;
    overflow: hidden
}

.top-recruit .recruit-img .img-overlay-in:before {
    display: block;
    content: " ";
    width: 100%;
    padding-top: 158.94737%
}

.top-recruit .recruit-img .img-overlay-in>.content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

@media (max-width: 767px) {
    .top-recruit .recruit-img .img-overlay-in {
        position: relative
    }

    .top-recruit .recruit-img .img-overlay-in:before {
        display: block;
        content: " ";
        width: 100%;
        padding-top: 62.85714%
    }

    .top-recruit .recruit-img .img-overlay-in>.content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0
    }
}

.top-recruit .recruit-img .img-overlay-in img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0
}

.top-recruit .recruit-ttl {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.71429em;
    letter-spacing: .08em;
    font-weight: 500;
    margin-bottom: 70px
}

@media only screen and (min-width: 768px) {
    .top-recruit .recruit-ttl {
        font-size: 22px;
        font-size: 2.2rem
    }
}

@media only screen and (min-width: 1200px) {
    .top-recruit .recruit-ttl {
        font-size: 28px;
        font-size: 2.8rem
    }
}

@media (max-width: 767px) {
    .top-recruit .recruit-ttl {
        font-size: 22px;
        font-size: 2.2rem;
        line-height: 1.54545em;
        margin-bottom: 40px
    }
}

.top-recruit .recruit-list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 600px;
    margin: -20px -10px
}

@media (max-width: 767px) {
    .top-recruit .recruit-list {
        max-width: 100%;
        margin: -10px 0
    }
}

.top-recruit .recruit-list .recruit-item {
    width: 50%;
    padding: 20px 10px
}

@media (max-width: 767px) {
    .top-recruit .recruit-list .recruit-item {
        width: 100%;
        padding: 10px 0
    }
}

.top-recruit .recruit-list a {
    display: block;
    max-width: 280px;
    width: 100%;
    color: #FF1629;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.4em;
    letter-spacing: .05em;
    font-weight: 500;
    position: relative;
    padding: 0 30px 17px 10px;
    border-bottom: 1px solid #FF1629;
    overflow: hidden;
    transition: all .3s;
    cursor: pointer
}

@media only screen and (min-width: 768px) {
    .top-recruit .recruit-list a {
        font-size: 13px;
        font-size: 1.3rem
    }
}

@media only screen and (min-width: 1200px) {
    .top-recruit .recruit-list a {
        font-size: 15px;
        font-size: 1.5rem
    }
}

@media (max-width: 767px) {
    .top-recruit .recruit-list a {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.42857em;
        max-width: 100%;
        padding-bottom: 14px
    }
}

.top-recruit .recruit-list a:before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -13px;
    border-left: 2px solid #FF1629;
    border-top: 2px solid #FF1629;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transition: border-color .3s;
    -webkit-transition: border-color .3s
}

@media (max-width: 767px) {
    .top-recruit .recruit-list a:before {
        margin-top: -10px
    }
}

@media only screen and (min-width: 1025px) {
    .top-recruit .recruit-list a:hover {
        opacity: 1;
        color: #C75660;
        border-bottom-color: #C75660
    }

    .top-recruit .recruit-list a:hover:before {
        border-left-color: #C75660;
        border-top-color: #C75660
    }
}

.radial-circle-box {
    opacity: 0;
    transition: opacity 0.5s;
    -webkit-transition: opacity 0.5s
}

.radial-circle-box.aos-animate {
    opacity: 1
}

.radial-circle.b1 {
    top: -204px;
    left: -242px
}

@media (max-width: 767px) {
    .radial-circle.b1 {
        top: -145px;
        left: -200px
    }
}

.radial-circle.b2 {
    top: 30%;
    right: -200px
}

@media (max-width: 767px) {
    .radial-circle.b2 {
        top: 26%;
        right: -237px
    }
}

.radial-circle.b3 {
    top: 42%;
    left: -300px
}

@media (max-width: 767px) {
    .radial-circle.b3 {
        top: 40%;
        left: -237px
    }
}

.radial-circle.b4 {
    bottom: 10%;
    left: -6%;
}

@media (max-width: 767px) {
    .radial-circle.b4 {
        top: -200px;
        left: -180px
    }
}

.radial-circle.b5 {
    bottom: -10%;
    left: -6%;
}

@media (max-width: 767px) {
    .radial-circle.b5 {
        right: -180px
    }
}

.radial-circle.b6 {
    right: -10%;
    top: 0;
}

@media (max-width: 767px) {
    .radial-circle.b6 {
        bottom: -160px
    }
}

.c-top-article .c-text {
    margin-top: 65px;
    padding-left: 22px
}

@media (max-width: 767px) {
    .c-top-article .c-text {
        margin-top: 34px;
        padding-left: 0
    }
}

.img-overlay {
    overflow: hidden;
    position: relative
}

.img-overlay:after {
    position: absolute;
    display: block;
    content: "";
    top: 0px;
    left: 0;
    width: 101%;
    height: 100%;
    background: #fff;
    -webkit-transition: background 3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
    transition: background 3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 1s 0.1s cubic-bezier(0.19, 1, 0.22, 1), background 3s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 1s 0.1s cubic-bezier(0.19, 1, 0.22, 1), background 3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0
}

.img-overlay .img-overlay-in {
    opacity: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: 3s 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: 3s 0.2s cubic-bezier(0.19, 1, 0.22, 1)
}

.img-overlay.aos-animate:after {
    -webkit-transform: scaleY(0);
    transform: scaleY(0)
}

.img-overlay.aos-animate .img-overlay-in {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.c-title {
    padding-left: 22px
}

@media (max-width: 767px) {
    .c-title {
        padding-left: 15px
    }
}

.c-title .ttl-en {
    color: #FF1629;
    text-transform: uppercase;
    position: relative;
    display: block;
    line-height: 0;
    padding-left: 22px;
}

.c-title .ttl-en:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -6px;
    width: 0;
    height: 0;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #FF1629;
    border-top: 5px solid transparent
}

@media (max-width: 767px) {
    .c-title .ttl-en:before {
        left: -15px;
        margin-top: -4px;
        border-bottom-width: 4px;
        border-top-width: 4px;
        border-left-width: 6px
    }
}

.c-title .ttl-en * {
    font-family: "din-2014", sans-serif;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.25em;
    letter-spacing: .085em;
    font-weight: 600
}

@media (max-width: 767px) {
    .c-title .ttl-en * {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.25em
    }
}

.c-title .ttl-ja {
    font-size: 38px;
    font-size: 3.8rem;
    line-height: 1.57895em;
    letter-spacing: .1em;
    font-weight: 500;
    display: block;
    margin-top: 30px
}

@media (max-width: 767px) {
    .c-title .ttl-ja {
        font-size: 26px;
        font-size: 2.6rem;
        line-height: 1.53846em;
        margin-top: 12px;
        margin-left: -15px
    }
}

.c-text p {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 2em
}

@media (max-width: 767px) {
    .c-text p {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.86667em
    }
}

.c-text p:not(:last-child) {
    margin-bottom: 25px
}

@media (max-width: 767px) {
    .c-text p:not(:last-child) {
        margin-bottom: 20px
    }
}

.t-title {
    padding-left: 22px
}

@media (max-width: 767px) {
    .t-title {
        padding-left: 18px
    }
}

.t-title .en {
    color: #FF1629;
    text-transform: uppercase;
    position: relative;
    display: block;
    line-height: 0
}

.t-title .en:before {
    content: "";
    position: absolute;
    left: -22px;
    top: 50%;
    margin-top: -3px;
    width: 0;
    height: 0;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #FF1629;
    border-top: 5px solid transparent
}

@media (max-width: 767px) {
    .t-title .en:before {
        left: -18px;
        margin-top: -4px
    }
}

.t-title .en * {
    font-family: "din-2014", sans-serif;
    font-size: 60px;
    font-size: 6rem;
    line-height: 1.26667em;
    letter-spacing: .05em;
    font-weight: 600
}

@media (max-width: 767px) {
    .t-title .en * {
        font-size: 36px;
        font-size: 3.6rem;
        line-height: 1.27778em
    }
}

.t-title .ja {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.4em;
    letter-spacing: .05em;
    font-weight: 500;
    color: #FF1629;
    display: block
}

@media (max-width: 767px) {
    .t-title .ja {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.42857em
    }
}

@media only screen and (min-width: 768px) {
    .t-title.medium .en * {
        font-size: 40px;
        font-size: 4rem;
        line-height: 1.275em
    }
}

.t-title.medium.lh1 .en * {
    line-height: 1em
}

.t-title.medium.lh1 .en:before {
    margin-top: -23px
}

@media (max-width: 767px) {
    .t-title.medium.lh1 .en:before {
        margin-top: -18px
    }
}

.t-title.medium.lh1 .ja {
    margin-top: 10px
}

.header .hamburger.active .burger-icon:before,
.header .hamburger.active .burger-icon:after {
    background-color: #FF1629
}

.header.fixHeader .hamburger .burger-icon:before,
.header.fixHeader .hamburger .burger-icon:after {
    background-color: #FF1629
}

.header.hidden .hamburger .burger-icon:before,
.header.hidden .hamburger .burger-icon:after {
    background-color: #FF1629
}

@media (max-width: 767px) {
    #footer {}

    .top-mainvisual .mv-title h2 {
        padding-bottom: 10%;
        margin-bottom: 10%;
        font-size: 28px;
    }

    .top-mainvisual .mv-title p {
        line-height: 2;
    }
}

#footer .footer-bottom {
    margin-top: 0
}

/*# sourceMappingURL=maps/top.min.css.map */