@charset "UTF-8";

.top-contents {
    position: relative;
    z-index: 1
}

.kv {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: cubic-bezier(.3, .5, 0, 1) .6s transform, cubic-bezier(.3, .5, 0, 1) .6s filter;
}

.kv:after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    transition: ease-out .2s background-color
}

.kv img,
.kv video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.kv.blur {
    filter: blur(15px);
    transform: scale(1.05)
}

@media screen and (max-width:767px) {
    .kv.blur {
        filter: blur(10px);
        transform: scale(1.04)
    }
}

.kv.blur:after {
    background-color: rgba(0, 0, 0, .7)
}

.hero {
    height: 75dvh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
	text-align:center;
}

.hero__inner {
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
    padding: 80px 0;
	color:#fff;
}

.hero__inner h3{font-size:34px;}
.hero__inner > div{font-size:24px; margin:40px auto;}

.hero-news-item {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 15px
}

.pc_hidden{display:none;}

@media screen and (max-width:767px) {
	.pc_hidden{display:block;}
	.hero__inner{padding:40px 0;}
	.hero__inner h3{font-size:28px;}
	.hero__inner>div{font-size:16px; margin:25px auto;}
	.section__ttl2 span{font-size:14px;}
    .hero-news-item {
        flex-wrap: wrap
    }
}

.hero-news-item__cat {
    border: 1px solid #fff;
    border-radius: 50px;
    font-family: Inter, "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-size: 10px;
    line-height: 1;
    padding: 3px 10px;
    min-width: 80px;
    text-align: center;
    font-weight: 500
}

.hero-news-item__date {
    display: flex;
    align-items: center;
    font-family: Inter, "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    white-space: nowrap
}

.hero-news-item__date:after {
    display: block;
    width: 1px;
    height: 14px;
    background-color: #fff;
    margin-left: 15px
}

@media screen and (min-width:768px) {
    .hero-news-item__date:after {
        content: ""
    }
}

.hero-news-item__ttl {
    position: relative;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

@media screen and (max-width:767px) {
    .hero-news-item__ttl {
        width: 100%;
        -webkit-line-clamp: 2;
        margin-top: -8px
    }
}

.hero-news-item__ttl:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, .9);
    transform: scaleX(0);
    transform-origin: left;
    transition: cubic-bezier(.9, .1, .4, .3) .36s transform
}

.hero-news-item:hover .hero-news-item__ttl:after {
    transition: cubic-bezier(.3, .5, 0, 1) .4s transform;
    transform: scaleX(1)
}

.btn_LINE{display:inline-block; background:#00b900; border-radius:5px; color:#fff; padding:20px 40px;}

.top-news-wrap {
    overflow: hidden;
}

.top-news-wrap .slick-arrow {
    font-size: 0;
    background: 0 0;
    width: 40px;
    height: 40px;
    border: 1px solid #c7c7c7;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    transition: ease-out .2s background;
    cursor: pointer
}

.top-news-wrap .slick-arrow:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #444;
    border-right: 1px solid #444
}

.top-news-wrap .slick-arrow:hover {
    background: #f0f0f0
}

.top-news-wrap .slick-prev {
    right: -65px
}

@media screen and (max-width:767px) {
    .top-news-wrap .slick-prev {
        right: calc(50% - 50vw + 40px + 10px)
    }
}

.top-news-wrap .slick-prev:before {
    transform: scaleY(.8) rotate(-135deg)
}

.top-news-wrap .slick-next {
    right: -115px
}

@media screen and (max-width:767px) {
    .top-news-wrap .slick-next {
        right: calc(50% - 50vw)
    }
}

.top-news-wrap .slick-next:before {
    transform: scaleY(.8) rotate(45deg)
}

.top-news-list,
.top-news-main {
    float: left
}

.top-news-main {
    margin-left: -25px;
    width: 33%
}

@media screen and (max-width:767px) {
    .top-news-main {
        width: calc(50% + 50vw + 10px + 15vw);
        margin-right: calc(50% - 50vw);
        margin-left: calc(-10px - 15vw)
    }
}

.top-news-list {
    width: 67%
}

@media screen and (max-width:767px) {
    .top-news-list {
        width: calc(79% - 45px);
        margin-right: calc(-59% - 45px)
    }
}

@media screen and (max-width:767px) {
    .top-news-main-slide {
        padding-bottom: 60px
    }
}

.top-news-list-slide {
    margin-right: -50px
}

@media screen and (max-width:767px) {
    .top-news-list-slide {
        display: none
    }
}

@media screen and (min-width:768px) {
    .top-news-list-slide .slick-list {
        padding-right: calc(50vw - 50%)
    }
}

.top-news-card {
    padding: 0 25px
}

@media screen and (max-width:767px) {
    .top-news-card {
        padding: 0 10px
    }
}

.top-news-card__img {
    aspect-ratio: 400/267;
    aspect-ratio: 1/1;
    overflow: hidden
}

.top-news-card__img img {
    object-fit: cover;
    height: 100%
}

.top-news-card__body {
    padding-top: 18px
}

.top-news-card__head {
    display: flex;
    align-items: center;
    margin-bottom: 8px
}

.top-news-card__cat {
    min-width: 80px;
    border: 1px solid #444;
    border-radius: 50px;
    line-height: 1;
    text-align: center;
    font-size: 10px;
    padding: 3px 5px;
    font-weight: 500
}

.top-news-card__date {
    font-family: Inter, "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    line-height: 1;
    margin-left: 10px;
    font-size: 14px
}

.top-news-card__ttl {
    font-size: 14px;
    line-height: 1.6
}

.top-works-wrap .slick-dots {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-left: -7px
}

.top-works-wrap .slick-dots li {
    margin: 0 7px
}

.top-works-wrap .slick-dots li button {
    font-size: 0;
    border: none;
    background-color: #e6e6e6;
    width: 8px;
    height: 8px;
    padding: 0;
    cursor: pointer
}

.top-works-wrap .slick-dots li.slick-active button {
    background-color: #444
}

.top-works {
    margin-right: calc(50% - 50vw);
    margin-left: -25px;
    transform: translate(0);
    cursor: none
}

@media screen and (max-width:767px) {
    .top-works {
        margin-left: -10px
    }
}

.top-works-slide .slick-list {
    padding-right: calc(65vw - 100px)
}

@media screen and (min-width:1430px) {
    .top-works-slide .slick-list {
        padding-right: calc(65vw - 100px - (47.5vw - 50%))
    }
}

@media screen and (max-width:767px) {
    .top-works-slide .slick-list {
        padding-right: calc(65vw - 162px);
        padding-right: calc(19.5% + 10px)
    }
}

.top-works-card {
    padding: 0 25px;
    position: relative;
    display: block;
    cursor: none
}

@media screen and (max-width:767px) {
    .top-works-card {
        padding: 0 10px
    }
}

.top-works-card__img {
    aspect-ratio: 98/55;
    position: relative
}

.top-works-card__img:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, .3) 0, transparent 35%)
}

@media screen and (max-width:767px) {
    .top-works-card__img:before {
        background: linear-gradient(0deg, rgba(0, 0, 0, .5) 0, transparent 50%)
    }
}

.top-works-card__img img {
    object-fit: cover;
    height: 100%
}

.top-works-card__body {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    padding: 25px 55px;
    padding-right: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

@media screen and (max-width:767px) {
    .top-works-card__body {
        padding: 15px 25px;
        padding-right: 60px
    }
}

.top-works-card__body:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/icon_ex_w.svg) no-repeat center center/100% auto;
    position: absolute;
    bottom: 20px;
    right: 50px;
    margin: auto
}

@media screen and (max-width:767px) {
    .top-works-card__body:after {
        width: 16px;
        height: 16px;
        right: 25px
    }
}

.top-works-card__ttl,
.top-works-card__ttl-sub {
    color: #fff;
    pointer-events: none
}

.top-works-card__ttl {
    font-size: 24px;
    line-height: 1;
    font-family: Inter, "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: 300
}

@media screen and (max-width:767px) {
    .top-works-card__ttl {
        font-size: 18px
    }
}

.top-works-card__ttl-sub {
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.5
}

@media screen and (max-width:767px) {
    .top-works-card__ttl-sub {
        font-size: 13px
    }
}

.top-contact-cursor,
.top-works-cursor {
    position: absolute;
    z-index: 9;
    margin: auto;
    width: 60px;
    height: 60px;
    background: url(../img/top/icon_cursor.png) no-repeat center center/100% auto;
    border-radius: 50%;
    top: 30px;
    left: 30px;
    box-shadow: 0 0 20px -3px rgba(0, 0, 0, .3);
    transition: .1s ease-out 0s transform, 0s ease-out 0s opacity;
    pointer-events: none;
    opacity: 0
}

.show.top-contact-cursor,
.top-works-cursor.show {
    opacity: 1;
    transition: ease-out .1s transform, .2s ease-out .17s opacity
}

.top-business__heading {
    font-size: 60px;
    line-height: 1.3;
    font-family: Inter, "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    margin-bottom: 30px
}

@media screen and (max-width:767px) {
    .top-business__heading {
        font-size: 30px;
        margin-bottom: 20px
    }
}

.bg-top-recruit {
    background: url(../img/top/bg_recruit.jpg) no-repeat center top/cover;
    position: relative
}

@media screen and (max-width:767px) {
    .bg-top-recruit {
        background-color: #c4c3c5;
        background-image: url(../img/top/bg_recruit_sp.jpg);
        background-size: 100% auto;
        background-position: bottom center;
        padding-bottom: 66vw !important
    }
}

.bg-top-recruit:before {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: linear-gradient(90deg, rgba(255, 255, 255, .7), rgba(255, 255, 255, 0) 40%);
    z-index: 0
}

@media screen and (min-width:768px) {
    .bg-top-recruit:before {
        content: ""
    }
}

.bg-top-recruit>* {
    position: relative;
    z-index: 1
}

@media screen and (min-width:768px) {
    .top-recruit-body {
        max-width: 580px;
        width: 45%
    }
}

.sec-top-contact {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important
}

.top-contact-cursor {
    background: url(../img/top/icon_cursor_contact.png) no-repeat center center/100% auto
}

.top-contact-cursor.show {
    top: -80px
}

.top-contact-link {
    display: block;
    padding: 140px 0 160px;
    margin: -30px 0 -160px;

}

.btn_contact{display:block; padding:30px; border:2px solid #0d76d8; background:#0d76d81a; color:#0d76d8; border-radius:7px; position:relative;}
.btn_contact:after{content:'»'; position:absolute; right:30px; font-size:30px; line-height:24px;}

@media screen and (max-width:767px) {
    .top-contact-link {
        margin: -120px 0
    }
}

.top-contact-link>* {
    pointer-events: none
}

.top-contact {
    display: block;
    position: relative;
    transform: translate(0);
    padding: 1px 0
}

.top-contact__heading {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 5px
}

@media screen and (max-width:767px) {
    .top-contact__heading {
        font-size: 18px
    }
}

