@charset "utf-8";
/*---------------------------------------------------------
	Top　スクロールエフェクト
---------------------------------------------------------*/
/* .inview {
    height: 100%;
} */

.inview {
    opacity: 0;
    /*     transform: translateY(50px); */
    transition: all 1.4s ease;
}

.inview.on {
    opacity: 1;
    /*     transform: translateY(0); */
}

.rec_deco span {
    opacity: 0;
}

.rec_deco.appeartext span {
    animation: text_anime_on .8s ease-out forwards;
}

@keyframes text_anime_on {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*---------------------------------------------------------
	Top
---------------------------------------------------------*/
#logo img.logo_black {
    opacity: 0;
    position: absolute;
}

.smallhead #logo img.logo_black {
    opacity: 1;
}

p {
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.875;
    margin-bottom: 40px;
}

/*  */
.rec_top_ttl {
    position: relative;
    margin-bottom: 30px;
    z-index: 15;
}

.rec_top_ttl h2 {
    display: inline-block;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.333;
    color: #FFF;
    margin: 0;
    position: relative;
}

.rec_top_ttl h2::before {
    display: block;
    content: attr(data-txt)"";
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    color: #00EDFF;
    margin: 0 0 27px;
}

/* rec_deco */
.rec_deco {
    display: inline-block;
    font-family: 'Nothing You Could Do', cursive;
    font-size: 12rem;
    line-height: 1.2;
    color: #00EDFF;
    transform: rotate(-14deg);
    white-space: nowrap;
}

/* btn */
.top_link_btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.top_link_btn_in {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.top_link_circle {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    width: 112px;
    height: 112px;
    margin-right: 15px;
}

.top_link_circle::before {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #218ED1;
    border-radius: 50%;
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    transition: all 1.5s cubic-bezier(.23, 1, .32, 1), border .3s ease;
    transform: translate(-50%, -50%);
    width: 107px;
    height: 107px;
}

.top_link_circle::after {
    position: absolute;
    content: '';
    width: 23px;
    height: 17px;
    background: url(../img/arrow_blue.svg) center center/ contain no-repeat;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.top_link_circle svg {
    position: absolute;
    display: block;
    width: auto;
    height: auto;
    top: 0;
    left: 0;
    transition: opacity .3s cubic-bezier(.23, 1, .32, 1);
    transform: rotate(-90deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0;
}

.top_link_circle svg circle {
    fill: transparent;
    stroke: #fff;
    stroke-width: 1px;
    transition: stroke-dashoffset .7s cubic-bezier(.23, 1, .32, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    stroke-dasharray: 346px;
    stroke-dashoffset: 346px;
}

a.top_link_btn:hover svg,
a:hover .top_link_circle svg {
    opacity: 1;
}

a:hover .top_link_circle::before {
    opacity: 0;
}

a:hover .top_link_circle svg circle,
a.top_link_circle:hover svg circle {
    stroke-dashoffset: 0;
}

.top_link_circle svg circle {
    stroke: #218ED1;
}

.top_link_txt {
    position: relative;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #218ED1;
}

/*  ボタン白  */

.top_link_btn_in.white .top_link_txt {
    color: #fff;
}

.top_link_btn_in.white .top_link_circle::before {
    border: 1px solid #fff;
}

.top_link_btn_in.white .top_link_circle svg circle {
    stroke: #fff;
}

.top_link_btn_in.white .top_link_circle::after {
    background: url(../img/arrow_white.svg) center center/ contain no-repeat;
}

/*------------ mv ------------*/
.mv_rec {
    position: relative;
}

.mv_rec img {
    display: block;
    width: 100% !important;
    min-height: 1010px;
    object-fit: cover;
}

.mv_rec_copy {
    position: absolute;
    width: 1200px;
    max-width: 100%;
    bottom: 57px;
    left: 50%;
    transform: translateX(-50%);
}

.mv_rec_copy h1 {
    font-size: 5rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.06em;
    line-height: 1.4;
    margin-bottom: 44px;
    text-shadow: 1px 1px 30px rgb(0, 0, 0, 0.3);
}

.mv_rec_copy span {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    color: #FFF;
}

/*--------- Message ---------*/
#message_wrap {
    padding: 108px 0 182px;
    color: #FFF;
    position: relative;
}

#message_wrap::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 91px;
    left: 0;
    bottom: -1px;
    background: #FFF;
}

.message_area {
    margin: 0 auto 91px;
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 1240px;
    width: 100%;
    position: relative;
}

.message_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.message_txt {
    width: 59.416%;
    position: relative;
    z-index: 10;
}

.message_img {
    width: 38.1%;
    padding: 14px 0 0;
    position: relative;
}

.message_img_en {
    margin-bottom: 43px;
}

.message_img_en img {
    display: block;
}

.message_img_people img {
    display: block;
    margin: auto;
}

/* loop */

.loop_box {
    display: flex;
    overflow: hidden;
}

.loop_box:first-child {
    margin-bottom: 20px;
}

.loop_list {
    display: flex;
    list-style: none;
    padding: 0
}

@keyframes loop-right-to-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.right_to_left {
    animation: loop-right-to-left 300s infinite linear 0.5s both;
}

.loop_item {
    min-width: 3200px;
    width: 100vw;
}

.loop_item>img {
    display: block;
    width: 100%;
    height: auto;
}

@keyframes loop-left-to-right {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

.left_to_right {
    animation: loop-left-to-right 300s infinite linear 0.5s both;
}


/*--------- Business ---------*/
#business_wrap {
    color: #218ED1;
    padding: 117px 0 10px;
    background-color: #FFF;
}

.business_area {
    margin: 0 auto 30px;
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 1540px;
    width: 100%;
    position: relative;
}

.business_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1350px;
    margin-left: auto;
}

.business_txt {
    max-width: 46%;
}

.business_txt .rec_top_ttl h2 {
    color: #218ED1;
}

.business_txt p {
    max-width: calc(100% - 30px);
}

.business_img {
    max-width: 49.037%;
    padding-top: 13px;
    position: relative;
}

.business_img_en {
    position: absolute;
    top: -60px;
    left: 8.8%;
}

.business_img_container {
    border-radius: 20px;
    overflow: hidden;
}

.business_img_container img {
    display: block;
    width: 100%;
}

.business_img_people {
    position: absolute;
    bottom: -55px;
    left: -87px;
}

.business_img_people img {
    display: block;
}

/*--------- Interview ---------*/
#interview_wrap {
    color: #218ED1;
    padding: 21px 0 20px;
    background-color: #FFF;
}

.interview_area {
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 1240px;
    width: 100%;
    position: relative;
}

.interview_area .rec_top_ttl {
    margin-bottom: 77px;
}

.interview_area .rec_top_ttl h2 {
    font-size: 3.6rem;
    line-height: 1.527;
    color: #218ED1;
}

.interview_en {
    position: absolute;
    z-index: 10;
    top: 123px;
    right: 29px;
}

.interview_list_wrap {
    margin: 0 -35px 40px;
}

/* slick */
.slick-list {
    overflow: visible !important;
}

/* slick arrow */
.arrow_box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.prev-arrow,
.next-arrow {
    display: block;
    width: 44px;
    height: 44px;
    background: #218ED1;
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
}

.prev-arrow::before,
.next-arrow::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: border-color 0.3s;
}

.prev-arrow {
    transform: rotate(180deg);
    margin-right: 20px;
}

/* slickじゃない場合 */
.interview_list.noslick {
    display: flex;
    flex-wrap: wrap;
}

.interview_list.noslick .interview_item {
    width: 40%;
}

.interview_list.noslick+.arrow_box::before {
    width: 100%;
}

/* slick slide内 */
.interview_item_link {
    display: block;
    color: #FFF !important;
    margin: 0 27px;
    background: #3790CC;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.interview_item_img img {
    display: block;
    max-width: 100%;
    height: auto;
    transition: all .5s ease;
}

.interview_item_txt {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 20px 38px;
}

.interview_item_txt h3 {
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 0.06em;
    line-height: 1.428;
}

.interview_item_txt .interview_info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.interview_item_txt .interview_name {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 0.06em;
    line-height: 1;
    margin-right: 8px;
}

.interview_item_txt .interview_status {
    display: block;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    line-height: 1.285;
}

/* hover */
.interview_item_link:hover .interview_item_img img {
    transform: scale(1.05);
}

.prev-arrow:hover,
.next-arrow:hover {
    background-color: #00EDFF;
}

/*--------- Crosstalk ---------*/
#crosstalk_wrap {
    padding: 59px 0 110px;
    position: relative;
}

#crosstalk_wrap::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 444px;
    background: #FFF;
    top: -1px;
    left: 0;
}

.crosstalk_area {
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 1540px;
    width: 100%;
    position: relative;
}

.crosstalk_img {
    border-radius: 30px;
    margin-bottom: 19px;
    overflow: hidden;
    position: relative;
}

.crosstalk_img::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 90px;
    left: 0;
    bottom: 0;
    background: #218ED1;
}

.crosstalk_img img {
    display: block;
    width: 100%;
    height: auto;
}

.crosstalk_box {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.crosstalk_en {
    position: absolute;
    bottom: calc(100% + 16px);
    right: -14px;
}

.crosstalk_txt .rec_top_ttl {
    margin-bottom: 0;
}

.crosstalk_txt .rec_top_ttl h2 {
    font-size: 4.2rem;
    line-height: 1.38;
}

.crosstalk_btn {
    margin-left: auto;
}

/*--------- Infographics ---------*/
#infog_wrap {
    padding: 110px 0 112px;
    color: #FFF;
}

.infog_area {
    margin: 0 auto 30px;
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 1726px;
    width: 100%;
    position: relative;
}

.infog_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1443px;
}

.infog_img {
    max-width: 52.668%;
    position: relative;
}

.infog_img_en {
    position: absolute;
    top: -68px;
    left: 8.7%;
}

.infog_img_container {
    border-radius: 20px;
    overflow: hidden;
}

.infog_img_container img {
    display: block;
    width: 100%;
}

.infog_img_people {
    position: absolute;
    bottom: -79px;
    left: -51px;
}

.infog_img_people img {
    display: block;
}

.infog_txt {
    max-width: 41.58%;
}

/*--------- Cluture ---------*/
#culture_wrap {
    padding: 0 0 269px;
    color: #FFF;
    position: relative;
}

.culture_area {
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 1726px;
    width: 100%;
    position: relative;
}

.culture_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1443px;
    margin-left: auto;
}

.culture_img {
    max-width: 52.668%;
    padding-top: 15px;
    position: relative;
}

.culture_img_en {
    position: absolute;
    top: -83px;
    left: 12.4%;
}

.culture_img_container {
    border-radius: 20px;
    overflow: hidden;
}

.culture_img_container img {
    display: block;
    width: 100%;
}

.culture_img_people {
    position: absolute;
    bottom: -157px;
    left: -32.3%;
    max-width: 58%;
}

.culture_img_people img {
    display: block;
    width: 100%;
}

.culture_txt {
    max-width: 41.58%;
    position: relative;
}

@media screen and (max-width: 767px) {

    /*---------------------------------------------------------
		Top
	---------------------------------------------------------*/
    .rec_top_ttl {
        margin-bottom: 30px;
    }

    .rec_top_ttl h2 {
        font-size: 2.4rem;
    }

    .rec_top_ttl h2::before {
        font-size: 1.6rem;
        margin: 0 0 5px;
    }

    p {
        margin-bottom: 20px;
    }

    /* rec_deco */
    .rec_deco {
        font-size: 7rem;
        font-size: min(7rem, 19vw);
    }

    /* btn */
    .top_link_circle {
        width: 65px;
        height: 65px;
    }

    .top_link_circle::before {
        width: 63px;
        height: 63px;
    }

    .top_link_circle::after {
        width: 18px;
        height: 12px;
    }

    .top_link_txt {
        font-size: 1.4rem;
    }

    /*------------ mv ------------*/

    .mv_rec img {
        min-height: auto;
    }

    .mv_rec_copy {
        max-width: calc(100% - 40px);
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

    .mv_rec_copy h1 {
        font-size: 3rem;
        font-size: max(3rem, 7vw);
        margin-bottom: 20px;
    }

    .mv_rec_copy span {
        font-size: 1.8rem;

    }

    /*--------- Message ---------*/
    #message_wrap {
        padding: 45px 0 70px;
    }

    #message_wrap::after {
        height: 35px;
    }

    .message_area {
        margin: 0 auto 35px;
    }

    .message_txt {
        width: 100%;
    }

    .message_img {
        width: 100%;
        padding: 0;
    }

    .message_img_en {
        margin-bottom: 0;
        position: absolute;
        top: 0;
        right: 30px;
    }

    .message_img_people {
        position: relative;
    }

    .message_img_people img {
        max-width: 140px;
        margin: 0 0 0 auto;
    }


    /* loop */

    .loop_box {
        display: flex;
        overflow: hidden;
    }

    .loop_box:first-child {
        margin-bottom: 7px;
    }

    .loop_list {
        display: flex;
        list-style: none;
        padding: 0
    }

    .right_to_left {
        animation: loop-right-to-left 300s infinite linear 0.5s both;
    }

    .loop_item {
        min-width: 1200px;
        width: 100vw;
    }

    .loop_item>img {
        display: block;
        width: 100%;
        height: auto;
    }

    .left_to_right {
        animation: loop-left-to-right 300s infinite linear 0.5s both;
    }


    /*--------- Business ---------*/
    #business_wrap {
        padding: 10px 0 30px;
    }

    .business_area {
        margin: 0 auto;
    }

    .business_txt {
        max-width: 100%;
    }

    .business_txt p {
        max-width: 100%;
    }

    .business_img {
        max-width: 100%;
        padding-top: 0;
        margin-bottom: 28px;
    }

    .business_img_en {
        top: auto;
        bottom: 0;
        left: auto;
        right: -20px;
    }

    .business_img_container {
        border-radius: 20px;
        overflow: hidden;
    }

    .business_img_container img {
        display: block;
        width: 100%;
    }

    .business_img_people {
        position: absolute;
        bottom: -28px;
        left: 0;
        width: 100px;
    }

    .business_img_people img {
        display: block;
    }

    /*--------- Interview ---------*/
    #interview_wrap {
        padding: 15px 0 20px;
    }

    .interview_area .rec_top_ttl {
        margin-bottom: 35px;
    }

    .interview_area .rec_top_ttl h2 {
        font-size: 2rem;
    }

    .interview_en {
        top: 100px;
        right: 0;
    }

    .interview_list_wrap {
        margin: 0 0 20px;
    }

    /* slick */
    .slick-list {
        overflow: visible !important;
    }

    /* slick arrow */

    .arrow_box::before {
        width: calc(100% - 145px);
    }

    .prev-arrow,
    .next-arrow {
        width: 40px;
        height: 40px;
    }

    /* slickじゃない場合 */
    .works_list.noslick {
        display: block;
    }

    .works_list.noslick .works_item {
        width: 100%;
        margin-bottom: 20px;
    }

    /* slick slide内 */
    .interview_item_link {
        margin: 0 8px;
    }

    .interview_item_img img {
        margin: auto;
    }

    .interview_item_txt {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 0 20px 25px;
    }

    .interview_item_txt h3 {
        font-size: 1.8rem;
    }

    .interview_item_txt .interview_name {
        font-size: 3rem;
    }

    .interview_item_txt .interview_status {
        font-size: 1.2rem;
    }

    /* hover */

    /*--------- Crosstalk ---------*/
    #crosstalk_wrap {
        padding: 30px 0 20px;
        position: relative;
    }

    #crosstalk_wrap::before {
        height: 0;
        padding-top: 80px;

    }

    .crosstalk_img {
        border-radius: 15px;
        margin-bottom: 10px;
        overflow: hidden;
        position: relative;
    }

    .crosstalk_img::after {
        height: 35px;
    }

    .crosstalk_img img {
        min-height: 160px !important;
        object-fit: cover;
    }

    .crosstalk_en {
        position: absolute;
        bottom: calc(100% + 16px);
        right: -14px;
    }

    .crosstalk_txt .rec_top_ttl {
        margin-bottom: 20px;
    }

    .crosstalk_txt .rec_top_ttl h2 {
        font-size: 2.2rem;
    }

    .crosstalk_btn {
        margin-left: auto;
    }

    /*--------- Infographics ---------*/
    #infog_wrap {
        padding: 50px 0 50px;
        color: #FFF;
    }

    .infog_area {
        margin: 0;
    }

    .infog_box {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1443px;
    }

    .infog_img {
        max-width: 100%;
        margin: 0 0 28px;
    }

    .infog_img_en {
        position: absolute;
        top: -38px;
        left: 0;
    }

    .infog_img_container {
        border-radius: 20px;
        overflow: hidden;
    }

    .infog_img_container img {
        display: block;
        width: 100%;
    }

    .infog_img_people {
        position: absolute;
        bottom: -20px;
        left: -15px;
        width: 150px
    }

    .infog_img_people img {
        display: block;

    }

    .infog_txt {
        max-width: 100%;
    }

    /*--------- Cluture ---------*/
    #culture_wrap {
        padding: 0 0 60px;
        color: #FFF;
        position: relative;
    }

    .culture_area {
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
        max-width: 1726px;
        width: 100%;
        position: relative;
    }

    .culture_box {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1443px;
        margin-left: auto;
    }

    .culture_img {
        padding-top: 0;
        width: 100%;
        max-width: 100%;
        margin: 0 0 28px;
    }

    .culture_img_en {
        position: absolute;
        top: -10px;
        left: auto;
        right: 20px;
    }

    .culture_img_container {
        border-radius: 20px;
        overflow: hidden;
    }

    .culture_img_container img {
        display: block;
        width: 100%;
    }

    .culture_img_people {
        bottom: auto;
        left: auto;
        right: -10px;
        position: relative;
        width: 100%;
        max-width: none;
        pointer-events: none;
    }

    .culture_img_people img {
        display: block;
        width: 170px;
        margin: -50px 0 0 auto;
    }

    .culture_txt {
        max-width: 100%;
    }

}