@charset "UTF-8";
/* CSS Document */
.header nav ul li a{
    color: #fff;
}
header .logo_black{
    display: none;
}
header.scroll-nav nav ul li a{
    color: #2c2c2c;
}
header.scroll-nav .logo_white{
    display: none;
}
header.scroll-nav .logo_black{
    display: block;
}
footer{
    opacity: 0;
    z-index: -1;
}
footer::before{
    display: none;
}
footer::after{
    display: none;
}
.text{
    line-height: 1.8;
    font-size: clamp(15px,1.9rem,18px);
}
main{
    background: url("../img/top/bg_tri.svg")left -54% top 0/76% auto no-repeat #fff;
    padding: 14rem 0;
    margin-top: 0!important;
    border-radius: 14rem 0;
}


/*---------------------------------

  ローディングアニメ

---------------------------------*/
.loading_bg{
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #F7F8F8;
    z-index: 50000;
    pointer-events: none;
}
.loading_bg.loaded{
    animation: loadingFadeOut 0.2s forwards;
}
@keyframes loadingFadeOut{
    from {
        opacity: 1;
    }
    to {
        display: none;
        opacity: 0;
        z-index: -100;
    }
}
.loading_bg .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.loading_bg .content span{
    background-color: #FF00A4;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    margin: 1rem;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: inline-block;
}
.loading_bg .content span:nth-child(1){
    animation: ball-pulse-sync 1.6s 0s infinite;
}
.loading_bg .content span:nth-child(2){
    animation: ball-pulse-sync 1.6s 0.2s infinite;
}
.loading_bg .content span:nth-child(3){
    animation: ball-pulse-sync 1.6s 0.4s infinite;
}
@keyframes ball-pulse-sync {
  10% {
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem); }
  50% {
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

/*---------------------------------

  共通ボタン装飾

---------------------------------*/
.button{
    text-align: left;
    display: block;
    font-size: 16px;
    width: fit-content;
    min-width: 220px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .05rem;
    color: #2c2c2c;
    background-color: #ffffff;
    padding: 17px 24px;
    border-radius: 50px;
    border: solid 1px #F923B2;
    position: relative;
    transition: 0.3s ease-in;
    opacity: 1!important;
    margin: 0 0 0 auto;
    overflow: hidden;
}
.button::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background-color: #f4f4f4;
    transition: 0.3s;
    z-index: 0;
    transition-property: transform;
    transform: translateY(-50%)scaleX(0);
    transform-origin: right;
}
.button:hover::before{
    transform: translateY(-50%)scaleX(1);
    transform-origin: left;
}
.button .button_text{
    position: relative;
    z-index: 5;
    line-height: 1.2;
    display: inline-block;
    padding-right: 76px;
    transition: 0.4s ease-in;
    overflow: hidden;
}
.button .button_text>span:last-of-type{
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
}
.button .button_text>span span{
    display: inline-block;
}
.button:hover .button_text>span span{
    transform: translateY(0);
    animation: buttonanime 0.35s forwards ease-out;
}
.button:hover .button_text>span span:nth-child(2){
    animation-delay: 0.03s;
}
.button:hover .button_text>span span:nth-child(3){
    animation-delay: 0.06s;
}
.button:hover .button_text>span span:nth-child(4){
    animation-delay: 0.09s;
}
.button:hover .button_text>span span:nth-child(5){
    animation-delay: 0.12s;
}
.button:hover .button_text>span span:nth-child(6){
    animation-delay: 0.15s;
}
.button:hover .button_text>span span:nth-child(7){
    animation-delay: 0.18s;
}
.button:hover .button_text>span span:nth-child(8){
    animation-delay: 0.21s;
}
.button:hover .button_text>span span:nth-child(9){
    animation-delay: 0.24s;
}
.button:hover .button_text>span span:nth-child(10){
    animation-delay: 0.27s;
}
@keyframes buttonanime{
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}
.button .arrow{
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(105deg, #FFA1C3 10%, #FF00A4 70%, #ED0FAF);
    transition: 0.35s ease-in;
    z-index: 5;
}
.button .arrow::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 20px;
    height: 20px;
    display: block;
    overflow: hidden;
    background: url(../img/common/arrow_white.svg)center/100% auto no-repeat;
    transition: 0.4s;
}
.button .arrow::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 20px;
    height: 20px;
    display: block;
    overflow: hidden;
    background: url(../img/common/arrow_white.svg)left -30px center/100% auto no-repeat;
    transition: 0.4s;
}
.button:hover .arrow::before{
    background: url(../img/common/arrow_white.svg)left 30px center/100% auto no-repeat;
}
.button:hover .arrow::after{
    background: url(../img/common/arrow_white.svg)left 0px center/100% auto no-repeat;
}
.button.pale{
    background-color: #f4f4f4;
    border: solid 1px #EBEBEB;
}
.button.pale::before{
    background-color: #EBEBEB;
}
.button.pale .arrow{
    background: #fff;
}
.button.pale .arrow::before{
    background: url(../img/common/arrow_right_pink.svg)center/100% auto no-repeat;
}
.button.pale .arrow::after{
    background: url(../img/common/arrow_right_pink.svg)left -30px center/100% auto no-repeat;
}
.button.pale:hover .arrow::before{
    background: url(../img/common/arrow_right_pink.svg)left 30px center/100% auto no-repeat;
}
.button.pale:hover .arrow::after{
    background: url(../img/common/arrow_right_pink.svg)left 0px center/100% auto no-repeat;
}


/*---------------------------------

  共通見出し

---------------------------------*/
.common_head h2{
    font-size: clamp(15px,1.8rem,19px);
    color: #C0C0C0;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 25px;
    line-height: 1.2;
}
.common_head h2::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-color: #0080F4;
    border: solid 3px #CFDFEF;
    border-radius: 50%;
    box-sizing: border-box;
}
.common_head>span{
    display: block;
    font-size: clamp(22px,4.4rem,48px);
}
.common_head>span{
    line-height: 1.2;
}


/*---------------------------------

  背景動画

---------------------------------*/
.bg_video{
    position: fixed;
    z-index: -2;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}
.bg_video::before{
    content: "";
    background-image: url("../img/top/dot.png");
    background-repeat: repeat;
    background-size: 3.5px auto;
    background-color: rgba(0,0,0,0.45);
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.bg_video video{
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 177.77777778vh;
    height: 56.25vw;
    min-height: 100%;
    min-width: 100%;
}


/*---------------------------------

  メインビジュアル

---------------------------------*/
.top_mv{
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
}
.top_mv .copy{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    max-height: 220px;
}
.top_mv .copy p{
    display: block;
    overflow: hidden;
}
.top_mv .copy p:first-of-type{
    height: min(4.8rem,54px);
    margin-bottom: 3rem;
}
.top_mv .copy p:nth-of-type(2){
    height: min(4.8rem,54px);
    margin-bottom: 4.8rem;
}
.top_mv .copy p:nth-of-type(3){
    height: min(2.4rem,24px);
}
.top_mv .copy p:nth-of-type(4),
.top_mv .copy p:nth-of-type(5){
    display: none;
}
.top_mv .copy p img{
    height: 100%;
    width: auto;
    opacity: 0;
    transform: translateY(100%);
}
.top_mv .copy p.appear img{
    animation: copy-animation 0.4s ease-in-out 1.8s forwards;
}
@keyframes copy-animation{
  0% {
    opacity: 0;
    transform: translateY(105%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.scroll_arrow{
    display: block;
    position: absolute;
    right: 10%;
    bottom: 15%;
    width: clamp(24px,6rem,50px);
    height: clamp(24px,6rem,50px);
    overflow: hidden;
    z-index: 5;
}
.scroll_arrow::before{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 70%;
    height: 70%;
    background: url("../img/common/arrow_down.svg")center/100% auto no-repeat;
    animation: scrollDown 2.2s ease infinite;
}
@keyframes scrollDown{
    0% {
        transform: translate(-50%, -20%);
        opacity: 0;
      }

      40% {
        opacity: 1;
      }

      80% {
        transform: translate(-50%, 120%);
        opacity: 0;
      }

      100% {
        opacity: 0;
      }
}
@media print, screen and (max-width: 1024px){
    .top_mv .copy p:first-of-type{
        height: min(5.4rem,54px);
        margin-bottom: 3rem;
    }
    .top_mv .copy p:nth-of-type(2){
        height: min(5.4rem,54px);
        margin-bottom: 4.8rem;
    }
    .top_mv .copy p:nth-of-type(3){
        height: min(3.2rem,24px);
    }
}


/*---------------------------------

  新着情報

---------------------------------*/
.wrapper.news{
    margin-bottom: 14rem;
}
.wrapper.news>.inner{
    width: min(86%,1600px);
    margin: 0 auto;
    display: flex;
}
.wrapper.news .inner .common_head{
    width: 35%;
}
.wrapper.news .inner .container{
    width: 65%;
}
.wrapper.news .short_list_link{
    display: block;
    width: 100%;
}
.wrapper.news .button{
    margin-bottom: 4rem;
}
.wrapper.news .sugu-window{
    display: block;
    width: 100%;
    position: relative;
}
.wrapper.news .sugu-window::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: 100%;
    background-color: #DDDDDD;
}
.wrapper.news .sugu-window::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: 15%;
    background-color: #F923B2;
}
.wrapper.news .sugu-interactive-list li{
    position: relative;
}
.wrapper.news .sugu-interactive-list li::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #DDDDDD;
}
.wrapper.news .sugu-interactive-list li::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 15%;
    background-color: #F923B2;
}
.wrapper.news .sugu-interactive-list li a{
    display: block;
    width: 100%;
    padding: min(3.8rem,45px) 12% min(3.8rem,45px) 0;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    transition: 0.35s;
}
.wrapper.news .sugu-interactive-list li a .inner{
    display: block;
    transition: 0.35s;
}
.wrapper.news .sugu-interactive-list li a:hover .inner{
    opacity: 0.7;
}
.wrapper.news .sugu-listdate{
    display: inline-block;
    font-size: clamp(14px,1.5rem,17px);
    margin-bottom: 10px;
    line-height: 1.8;
}
.wrapper.news .sugu-listlink{
    display: block;
    line-height: 1.6;
    font-size: clamp(15px,1.8rem,18px);
    position: relative;
    z-index: 5;
}
.wrapper.news .sugu-interactive-list li a .arrow{
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: min(2.1rem,28px);
    height: min(2.1rem,28px);
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 5;
    overflow: hidden;
    background: url(../img/common/arrow_right_pink.svg)left -2.5rem center/100% auto no-repeat;
}
.wrapper.news .sugu-interactive-list li a:hover .arrow{
    background: url(../img/common/arrow_right_pink.svg)center/100% auto no-repeat;
}
.wrapper.news .icon{
    display: inline-block;
    position: relative;
}
.wrapper.news .icon::before{
    position: absolute;
    right: 0;
    top: 50%;
    display: inline-block;
    transform: translateY(-50%);
    background: linear-gradient(105deg, #FA80B4 1%, #FF00A4 90%, #FF0095);
    color: #fff;
    line-height: 1;
    padding: 4px 1em;
    border-radius: 9999px;
    font-size: 0.9em;
}
.wrapper.news .icon.category_01{
    padding-right: 6.2em;
}
.wrapper.news .icon.category_01::before{
    content: '黒川商事';
}
.wrapper.news .icon.category_02{
    padding-right: 8.2em;
}
.wrapper.news .icon.category_02::before{
    content: 'ミナトヤ運輸';
}
.wrapper.news .icon.category_03{
    padding-right: 9.2em;
}
.wrapper.news .icon.category_03::before{
    content: 'テクノロジテム';
}
.wrapper.news .icon.category_04{
    padding-right: 11.2em;
}
.wrapper.news .icon.category_04::before{
    content: '陵北トランスポート';
}
.wrapper.news .icon.category_05{
    padding-right: 11.2em;
}
.wrapper.news .icon.category_05::before{
    content: 'トゥクトゥクテクノ';
}
.wrapper.news .icon.category_06{
    padding-right: 6.2em;
}
.wrapper.news .icon.category_06::before{
    content: '西尾交通';
}
.wrapper.news .icon.category_07{
    padding-right: 7.2em;
}
.wrapper.news .icon.category_07::before{
    content: 'K&Tリース';
}
.wrapper.news .icon.category_08{
    padding-right: 8.2em;
}
.wrapper.news .icon.category_08::before{
    content: '大河内不動産';
}
.wrapper.news .icon.category_09{
    padding-right: 8.2em;
}
.wrapper.news .icon.category_09::before{
    content: '黒川グループ';
}


/*---------------------------------

  黒川グループについて

---------------------------------*/
.wrapper.about{
    margin-bottom: 14rem;
    position: relative;
}
.wrapper.about::before{
    content: '';
    position: absolute;
    top: 5rem;
    left: 0;
    width: 100%;
    height: clamp(120px,14rem,150px);
    background: url("../img/top/bg_text.png")left top/auto 100% repeat-x;
    animation: loop-text 60s infinite linear;
    z-index: 0;
}
@keyframes loop-text {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -4000px 0;
  }
}
.wrapper.about .inner{
    width: min(84%,1600px);
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    position: relative;
    z-index: 1;
}
.wrapper.about .inner .container{
    width: 50%;
    padding-top: 26rem;
    padding-right: 6%;
}
.wrapper.about .inner .container .text{
    margin-bottom: 5.5rem;
}
.wrapper.about .inner .container .text p:first-of-type{
    margin-bottom: 2rem;
}
.wrapper.about .inner .image{
    width: 50%;
    border-radius: 4rem;
    overflow: hidden;
    height: fit-content;
}
.wrapper.about .common_head{
    margin-bottom: 4.5rem;
}
.wrapper.about .common_head h2{
    margin-bottom: 2.5rem;
}
.wrapper.about .common_head h3>span{
    display: block;
    width: fit-content;
    font-size: clamp(22px,3rem,32px);
    line-height: 1.1;
    padding: 2px 3px 3px;
    margin-bottom: 1.4rem;
    color: #fff;
    background: linear-gradient(105deg, #FA7FB4 2%, #FF00A4 90%, #FF0095);
}
.wrapper.about .common_head h3>span:last-of-type{
    margin-bottom: 0;
}
.wrapper.about .common_head h3>span>span{
    line-height: 1.1;
}
.wrapper.about .button{
    margin: 0;
}


/*---------------------------------

  事業・グループ案内

---------------------------------*/
.wrapper.business{
    margin-bottom: 14rem;
    overflow: hidden;
    position: relative;
    padding: 9rem 0;
}
.wrapper.business::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url("../img/top/business_bg.svg")left 14% bottom 90%/135% auto no-repeat #F7F8F8;
    width: 90%;
    height: 100%;
    border-radius: 12rem 0 0 12rem;
}
.wrapper.business .container{
    width: min(86%,1600px);
    margin: 0 auto;
    text-align: right;
    margin-bottom: 6rem;
    position: relative;
    z-index: 5;
}
.wrapper.business .container .common_head{
    margin-bottom: 4rem;
}
.wrapper.business .common_head h2{
    width: fit-content;
    margin: 0 0 0 auto;
    margin-bottom: 2rem;
}
.wrapper.business .common_head>span{
    width: fit-content;
    margin: 0 0 0 auto;
}
.wrapper.business .container .text{
    margin-bottom: 3.5rem;
}
.wrapper.business .group_list{
    width: 80%;
    margin-left: auto;
    position: relative;
    z-index: 5;
    padding-right: 4%;
    padding-bottom: 10.5rem;
}
.wrapper.business .group_list .swiper-wrapper .swiper-slide{
    height: auto;
    display: inline-block;
    background-color: #fff;
    border-radius: 4rem;
    padding: 3.2rem;
    box-shadow: 5px 5px 4rem 6px rgba(20,67,51,0.08);
    position: relative;
    transition: 0.3s;
}
.wrapper.business .group_list .swiper-wrapper .swiper-slide .image{
    border-radius: 3rem;
    overflow: hidden;
    margin-bottom: 3rem;
}
.wrapper.business .group_list .swiper-wrapper .swiper-slide h3{
    height: min(3.2rem,30px);
    width: auto;
    text-align: center;
    margin-bottom: 2.4rem;
}
.wrapper.business .group_list .swiper-wrapper .swiper-slide h3 img{
    height: 100%;
    width: auto;
    padding-right: 5px;
}
.wrapper.business .group_list .swiper-wrapper .swiper-slide p{
    font-size: clamp(14px,1.7rem,18px);
}
.swiper_navigation{
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
}
.swiper-button-next, .swiper-button-prev{
    position: relative!important;
    top: auto!important;
    left: auto!important;
    right: auto!important;
    display: block!important;
    width: clamp(60px,7rem,82px)!important;
    height: clamp(60px,7rem,82px)!important;
    border-radius: 50%!important;
    box-shadow: 5px 5px 4rem 6px rgba(20,67,51,0.08)!important;
    background-color: #fff!important;
    margin-top: 0!important;
    transition: 0.35s;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
    background-color: #fcfcfc!important;
}
.swiper-button-prev{
    margin-right: 2.5rem!important;
}
.swiper-button-next:after, .swiper-button-prev:after{
    content: ''!important;
    display: block;
    width: clamp(18px,2.4rem,24px);
    height: clamp(18px,2.4rem,24px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: url("../img/common/arrow_right_pink.svg")center/100% auto no-repeat;
}
.swiper-button-prev:after{
    background: url("../img/common/arrow_left_pink.svg")center/100% auto no-repeat;
}
.wrapper.business .group_list .swiper-wrapper .swiper-slide:not(.swiper-slide-visible){
    pointer-events: none;
    opacity: .3;
}
@media print, screen and (max-width: 1360px){
    .wrapper.business .group_list{
        padding-bottom: 90px;
    }
    .swiper-button-next, .swiper-button-prev{
        width: 60px!important;
        height: 60px!important;
    }
}


/*---------------------------------

  企業情報

---------------------------------*/
.wrapper.company{
    margin-bottom: 14rem;
}
.wrapper.company .title_area{
    width: min(86%,1600px);
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    margin-bottom: 5.5rem;
}
.wrapper.company .container{
    padding-right: 7%;
    display: flex;
}
.wrapper.company .container .image{
    width: 66%;
    border-radius: 0 4rem 4rem 0;
    overflow: hidden;
    margin-right: 4%;
}
.wrapper.company .container ul{
    width: 30%;
    position: relative;
}
.wrapper.company .container ul::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: 100%;
    background-color: #DDDDDD;
}
.wrapper.company .container ul::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: 20%;
    background-color: #F923B2;
}
.wrapper.company .container ul li{
    height: 25%;
    padding: max(10px,1.2rem) 0;
    position: relative;
    display: block;
}
.wrapper.company .container ul li::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #DDDDDD;
}
.wrapper.company .container ul li::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 20%;
    background-color: #F923B2;
}
.wrapper.company .container ul li a{
    background-color: #F7F8F8;
    display: block;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.wrapper.company .container ul li a::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #f2f2f2;
    transform: scaleX(0);
    transform-origin: right;
    transition: 0.3s;
    transition-property: transform;
}
.wrapper.company .container ul li a:hover::before{
    transform: scaleX(1);
    transform-origin: left;
}
.wrapper.company .container ul li a .arrow{
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(22px,2.4rem,32px);
    height: clamp(22px,2.4rem,32px);
    background: url("../img/common/arrow_right_pink.svg")left -3rem center/85% auto no-repeat;
    transition: 0.2s;
    transition-delay: 0.1s;
}
.wrapper.company .container ul li a:hover .arrow{
    background: url("../img/common/arrow_right_pink.svg")center/90% auto no-repeat;
}
.wrapper.company .container ul li a div{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 7%;
    position: relative;
    z-index: 5;
    transition: 0.3s;
}
.wrapper.company .container ul li a:hover div{
    transform: translateX(8px);
}
.wrapper.company .container ul li a div span{
    display: block;
    color: #F923B2;
    padding-right: 10%;
    font-size: clamp(13px,1.4rem,16px);
    position: relative;
    overflow: hidden;
}
.wrapper.company .container ul li a div p{
    font-size: clamp(15px,2rem,22px);
}


/*---------------------------------

  YouTube動画

---------------------------------*/





/*---------------------------------

  リクルートサイト誘導

---------------------------------*/
.wrapper.recruit{
    margin-bottom: 14rem;
}
.wrapper.recruit .common_head>span span:nth-child(11){
    padding-right: 0.4em;
}
.wrapper.recruit a{
    display: block;
    padding: 20rem 0;
    background: url("../img/top/recruit_bg.webp")center/100% auto no-repeat;
    position: relative;
    transition: 0.35s;
}
.wrapper.recruit a:hover{
    background: url("../img/top/recruit_bg.webp")center/101% auto no-repeat;
}
.wrapper.recruit a::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.22);
    transition: 0.35s;
}
.wrapper.recruit a:hover::before{
    background-color: rgba(0,0,0,0.3);
}
.wrapper.recruit a .inner{
    width: min(80%,1500px);
    margin: 0 auto;
    position: relative;
    display: flex;
}
.wrapper.recruit a .inner .container{
    width: min(50%,600px);
}
.wrapper.recruit .common_head{
    margin-bottom: 4rem;
}
.wrapper.recruit .common_head h2{
    color: #fff;
    margin-bottom: 2rem;
}
.wrapper.recruit .common_head h2::before{
    background-color: #F923B2;
    border: solid 3px #EACADE;
}
.wrapper.recruit .common_head>span{
    color: #fff;
}
.wrapper.recruit .container .text{
    color: #fff;
    font-size: clamp(14px,1.8rem,18px);
}
.wrapper.recruit a .inner .icon{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(60px,8rem,88px);
    height: clamp(60px,8rem,88px);
    border-radius: 50%;
    border: solid 1px #fff;
}
.wrapper.recruit a .inner .icon::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 30%;
    height: 30%;
    display: block;
    overflow: hidden;
    background: url("../img/common/external_white.png")center/90% auto no-repeat;
    transition: 0.35s;
}
.wrapper.recruit a .inner .icon::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 30%;
    height: 30%;
    display: block;
    overflow: hidden;
    background: url("../img/common/external_white.png")left -2.4rem center/90% auto no-repeat;
    transition: 0.35s;
}
.wrapper.recruit a:hover .inner .icon::before{
    background: url("../img/common/external_white.png")left 2.4rem center/90% auto no-repeat;
}
.wrapper.recruit a:hover .inner .icon::after{
    background: url("../img/common/external_white.png")center/90% auto no-repeat;
}
.wrapper.recruit .common_head>span.sp{
    display: none;
}


/*---------------------------------

  お問い合わせ

---------------------------------*/
.wrapper.contact .inner{
    width: min(86%,1600px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.wrapper.contact .inner .container .text{
    margin-bottom: 4.5rem;
    text-align: right;
}


@media print, screen and (max-width: 768px){
    main{
        padding: 16rem 0;
        border-radius: 12rem 0;
        background: url(../img/top/bg_tri.svg)left 290% top 0/110% auto no-repeat #fff;
    }
    .text{
        font-size: clamp(15px,3rem,18px);
        line-height: 2;
    }


    /*---------------------------------

      共通見出し

    ---------------------------------*/
    .common_head h2{
        color: #aaa;
        padding-left: 22px;
    }
    .common_head>span {
        font-size: clamp(22px,7.4rem,48px);
    }
    

    /*---------------------------------

      メインビジュアル

    ---------------------------------*/
    .top_mv .copy{
        left: 7rem;
    }
    .top_mv .copy p:first-of-type{
        margin-bottom: 4rem;
        height: min(5.4rem,42px);
    }
    .top_mv .copy p:nth-of-type(2){
        margin-bottom: 6rem;
        height: min(5.4rem,42px);
    }
    .top_mv .copy p:nth-of-type(3){
        display: none;
    }
    .top_mv .copy p:nth-of-type(4),
    .top_mv .copy p:nth-of-type(5){
        display: block;
        height: min(2.8rem,20px);
    }
    .top_mv .copy p:nth-of-type(4){
        margin-bottom: 2rem;
    }
    .top_mv .copy p.appear:nth-of-type(4) img,
    .top_mv .copy p.appear:nth-of-type(5) img{
        animation-delay: 2s;
    }
    .scroll_arrow{
        right: 7rem;
        bottom: 10%;
    }


    /*---------------------------------

      新着情報

    ---------------------------------*/
    .wrapper.news>.inner{
        width: 100%;
        padding: 0 6rem;
        display: block;
    }
    .wrapper.news .inner .common_head{
        width: 100%;
        margin-bottom: 8rem;
    }
    .wrapper.news .inner .container{
        width: 100%;
    }
    .wrapper.news .button{
        margin-bottom: 6rem;
    }
    .wrapper.news .sugu-interactive-list li a{
        padding: min(6rem,40px) 0;
    }
    .wrapper.news .sugu-listdate{
        font-size: clamp(13px,2.8rem,15px);
        margin-bottom: 2.6rem;
    }
    .wrapper.news .sugu-listlink{
        font-size: clamp(15px,3rem,18px);
    }
    .wrapper.news .sugu-window::after{
        width: 20%;
    }
    .wrapper.news .sugu-interactive-list li::after{
        width: 20%;
    }
    .wrapper.news .icon.category_02{
        padding-right: 8.1em;
    }
    .wrapper.news .icon.category_03{
        padding-right: 9em;
    }
    .wrapper.news .icon.category_04{
        padding-right: 11em;
    }
    .wrapper.news .icon.category_05{
        padding-right: 11em;
    }
    .wrapper.news .icon.category_07{
        padding-right: 7.1em;
    }
    .wrapper.news .icon.category_09{
        padding-right: 8.1em;
    }

    /*---------------------------------

      黒川グループについて

    ---------------------------------*/
    .wrapper.about {
        margin-bottom: 16rem;
    }
    .wrapper.about .inner{
        display: block;
        width: 100%;
        padding: 10rem 6rem 0;
    }
    .wrapper.about::before{
        top: 0;
        height: clamp(60px,18rem,150px);
        animation: loop-text 80s infinite linear;
    }
    .wrapper.about .inner .image{
        width: 100%;
        margin-bottom: 9rem;
    }
    .wrapper.about .inner .container {
        width: 100%;
        padding-top: 0;
        padding-right: 0;
    }
    .wrapper.about .common_head{
        margin-bottom: 7rem;
    }
    .wrapper.about .common_head h2{
        margin-bottom: 4rem;
    }
    .wrapper.about .common_head h3>span{
        font-size: clamp(18px,3.8rem,32px);
        margin-bottom: 2rem;
    }
    .wrapper.about .inner .container .text p:first-of-type{
        margin-bottom: 4rem;
    }
    .wrapper.about .inner .container .text{
        margin-bottom: 7rem;
    }
    

    /*---------------------------------

      事業・グループ案内

    ---------------------------------*/
    .wrapper.business{
        margin-bottom: 16rem;
        padding: 12rem 0;
    }
    .wrapper.business::before{
        width: calc(100% - 5rem);
        background: url(../img/top/business_bg.svg)left 20% bottom 96%/320% auto no-repeat #F7F8F8;
    }
    .wrapper.business .container{
        width: 100%;
        padding: 0 6rem 0 10rem;
        margin-bottom: 12rem;
    }
    .wrapper.business .container .common_head{
        margin-bottom: 7rem;
    }
    .wrapper.business .container .text{
        text-align: left;
        margin-bottom: 6rem;
    }
    .wrapper.business .container .text br{
        display: none;
    }
    .wrapper.business .group_list{
        width: calc(100% - 10rem);
    }
    .wrapper.business .group_list .swiper-wrapper .swiper-slide{
        padding: 3.5rem;
    }
    .wrapper.business .group_list .swiper-wrapper .swiper-slide .image{
        margin-bottom: 5rem;
    }
    .wrapper.business .group_list .swiper-wrapper .swiper-slide h3{
        height: min(4.2rem,30px);
        margin-bottom: 4rem;
    }
    .wrapper.business .group_list .swiper-wrapper .swiper-slide p{
        font-size: clamp(14px,2.8rem,16px);
        line-height: 1.8;
    }
    

    /*---------------------------------

      企業情報

    ---------------------------------*/
    .wrapper.company{
        margin-bottom: 16rem;
    }
    .wrapper.company .title_area{
        display: block;
        width: 100%;
        padding: 0 6rem;
        margin-bottom: 8rem;
    }
    .wrapper.company .common_head{
        margin-bottom: 8rem;
    }
    .wrapper.company .container{
        display: block;
        padding-right: 0;
    }
    .wrapper.company .container .image{
        width: calc(100% - 6rem);
        margin-right: 0;
        margin-bottom: 8rem;
    }
    .wrapper.company .container ul{
        width: calc(100% - 12rem);
        margin: 0 auto;
    }
    .wrapper.company .container ul li{
        height: auto;
        padding: max(10px,2.8rem) 0;
    }
    .wrapper.company .container ul li a{
        padding: 6rem 0;
    }
    .wrapper.company .container ul li a div span{
        font-size: clamp(13px,2.8rem,15px);
    }
    .wrapper.company .container ul li a div p {
        font-size: clamp(15px,3.2rem,18px);
    }
    .wrapper.company .container ul li a .arrow{
        right: 7%;
        background: url(../img/common/arrow_right_pink.svg)center/60% auto no-repeat;
    }


    /*---------------------------------

      YouTube動画

    ---------------------------------*/





    /*---------------------------------

      リクルートサイト誘導

    ---------------------------------*/
    .wrapper.recruit {
        margin-bottom: 16rem;
    }
    .wrapper.recruit a {
        padding: 14rem 0;
        background: url(../img/top/recruit_bg.webp)center/cover no-repeat;
    }
    .wrapper.recruit a:hover{
        background: url(../img/top/recruit_bg.webp)center/cover no-repeat;
    }
    .wrapper.recruit a::before{
        background-color: rgba(0,0,0,0.4);
    }
    .wrapper.recruit a .inner{
        display: block;
        width: 100%;
        padding: 0 7rem 16rem;
    }
    .wrapper.recruit a .inner .container{
        width: 100%;
    }
    .wrapper.recruit .common_head{
        margin-bottom: 7rem;
    }
    .wrapper.recruit .common_head>span.pc{
        display: none;
    }
    .wrapper.recruit .common_head>span.sp{
        display: block;
    }
    .wrapper.recruit .container .text{
        font-size: clamp(15px,3rem,18px);
    }
    .wrapper.recruit a .inner .icon{
        top: auto;
        transform: translateY(0);
        bottom: 0;
        right: 7rem;
        width: clamp(60px,12rem,88px);
        height: clamp(60px,12rem,88px);    
    }
    .wrapper.recruit a .inner .icon::before{
        background: url(../img/common/external_white.png)center/100% auto no-repeat;
    }
    .wrapper.recruit a .inner .icon::after{
        display: none;
    }


    /*---------------------------------

      お問い合わせ

    ---------------------------------*/
    .wrapper.contact .inner {
        width: 100%;
        padding: 0 6rem;
        display: block;
    }
    .wrapper.contact .inner .common_head {
        margin-bottom: 7rem;
    }
    .wrapper.contact .inner .container .text{
        text-align: left;
        margin-bottom: 7rem;
    }
    .wrapper.contact .inner .container .text br{
        display: none;
    }

}