/* ----------------------------------------------------------------------
    top / hero
---------------------------------------------------------------------- */

.hero {
    box-sizing: border-box;
    padding: 25px 0 30px;
    width: 100%;
    overflow: hidden;
}

.hero_left {
    border-radius: 20px;
    display: block;
    float: left;
    position: relative;
    width: 65%;
    height: 440px;
    overflow: hidden;
    z-index: 0;
}

.hero .hero_left_img {
    background: url(../img/ic_main01.webp) no-repeat center center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: .3s ease-in-out;
}

.hero_left_img:hover {
    transform: scale(1.1);
}

.hero_left_img::after {
    content: "";
    /* background: url(../img/ic_main_cover.png) no-repeat center center; */
    /* background-size: cover; */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

.hero_left_el {
    margin: auto;
    padding: 30px;
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}

.hero_left_el_title {
    color: #fff;
    font-size: 32px;
    letter-spacing: .1em;
    line-height: 1.5;
    margin: 0 0 30px;
}

.hero_left_el_box {
    position: relative;
    padding-left: 100px;
    width: 100%;
}

.hero_left_el_box__img {
    border-radius: 50px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 80px;
    width: 100%;
}

.hero_left_el_box__title {
    color: #fff;
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: .1em;
    line-height: 1.3;
    margin: 0 0 13px;
}

.hero_left_el_box__item {
    color: #fff;
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: bold;
    font-size: 11px;
    letter-spacing: .15em;
    line-height: 1.3;
}

.hero_left_el_box__item span {
    display: inline-block;
    border: 1.5px solid #fff;
    padding: 5px 10px;
    margin-right: 10px;
}

.hero_right {
    float: left;
    padding-left: 27px;
    width: 35%;
}

.hero_right_el {
    border-radius: 20px;
    display: block;
    position: relative;
    margin: 0 0 11px;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.hero_right_el_img {
    background-repeat: no-repeat;
    background-size: cover;
    transition: .3s ease-in-out;
    float: right;
    position: relative;
    width: 68%;
    height: 100%;
    z-index: 0;
}

.hero_right_el_img::after {
    content: "";
    /* background: url(../img/ic_main_cover2.png) no-repeat center center; */
    /* background-size: cover; */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

.hero_right_el .hero_right_el_img:hover {
    transform: scale(1.05);
}

.hero_right_el_title {
    background: url(../img/bg_back.png);
    background-color: #000;
    /* pointer-events: none; */
    position: absolute;
    width: 32%;
    height: 100%;
    z-index: 0;
}

.hero_right_el_title:hover {
    opacity: 0.85;
    transition: .2s ease-in-out;
}

.hero_right_el_title::after {
    content: "";
    margin: auto;
    position: absolute;
    left: 2px;
    right: 0;
}

.hero_right_el_title .title {
    color: #fff;
    font-size: 18px;
    letter-spacing: .2em;
    text-align: center;
    margin: auto;
    width: max-content;
    height: max-content;
    padding-right: 10px;
    position: absolute;
    top: 10px;
    bottom: 0;
    left: 15px;
    right: 0;
}

.hero_right_el_title .title::before {
    content: "";
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    margin: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.hero_right_el_title .title::after {
    content: "";
    border-radius: 10px;
    width: 25px;
    height: 4px;
    margin: auto;
    position: absolute;
    bottom: -10px;
    left: -12px;
    right: 0;
}

.hero_right_el_caption {
    color: #fff;
    font-size: 16px;
    pointer-events: none;
    padding: 0 5%;
    position: absolute;
    bottom: 12px;
}


/*-------------- 採用 -----------------------------*/

.hero_right_el__saiyo .hero_right_el_img {
    background-image: url(../img/ic_saiyo.webp);
}

.hero_right_el__saiyo .hero_right_el_title::after {
    background: url(../img/icon_saiyo.png) no-repeat center center;
    background-size: contain;
    width: 28px;
    height: 28px;
    top: 30px;
}

.hero_right_el__saiyo .hero_right_el_title .title::after {
    background-color: #388AD2;
}


/*-------------- 労務 -----------------------------*/

.hero_right_el__roumu .hero_right_el_img {
    background-image: url(../img/ic_roumu.webp);
}

.hero_right_el__roumu .hero_right_el_title::after {
    background: url(../img/icon_roumu.png) no-repeat center center;
    background-size: contain;
    width: 35px;
    height: 35px;
    top: 25px;
}

.hero_right_el__roumu .hero_right_el_title .title::after {
    background-color: #03B8AC;
}


/*-------------- 組織 -----------------------------*/

.hero_right_el__soshiki .hero_right_el_img {
    background-image: url(../img/ic_soshiki.webp);
}

.hero_right_el__soshiki .hero_right_el_title::after {
    background: url(../img/icon_soshiki.png) no-repeat center center;
    background-size: contain;
    width: 28px;
    height: 28px;
    top: 30px;
}

.hero_right_el__soshiki .hero_right_el_title .title::after {
    background-color: #9091ec;
}


/* ----------------------------------------------------------------------
    top / contents
---------------------------------------------------------------------- */

.contents {
    position: relative;
    width: 100%;
}

.contents_title {
    font-family: 'axisstd-bold';
    font-size: 24px;
    letter-spacing: .5em;
    line-height: 1.05;
    margin: 0;
    position: relative;
    top: 24px;
    left: -60px;
}

.contents_title .en {
    display: block;
    font-family: proxima-nova, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 120px;
    letter-spacing: .1em;
}

.contents_titleSmall {
    font-family: proxima-nova, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 70px;
    letter-spacing: .1em;
    line-height: 1.5;
    text-align: center;
    margin: 0 0 70px;
}

.contents_titleSmall .ja {
    font-size: 40px;
    letter-spacing: .05em;
    font-family: 'axisstd-H';
}

.contents_sticky {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.contents_stickyLeft {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    padding-right: 20px;
    width: 50%;
}

.contents_stickyRight {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    padding-left: 20px;
    width: 50%;
    height: 100%;
}

.contents_sticky_box {
    display: block;
    background: #000;
    border-radius: 20px;
    color: #fff;
    float: left;
    margin: 0 4% 4% 0;
    position: relative;
    width: 48%;
    overflow: hidden;
    box-shadow: 0 0 30px rgb(0 0 0 / 8%);
}

.contents_sticky_box:hover .contents_sticky_box__img {
    transform: scale(1.1);
}

.contents_stickyRight .contents_sticky_box:nth-child(2n) {
    margin: 0 0 6% 0;
}

.contents_stickyRight .contents_sticky_box:nth-child(2),
.contents_stickyRight .contents_sticky_box:nth-child(3) {
    background: #fff;
    color: #000;
}

.contents_sticky_box__img {
    width: 100%;
    transition: .3s ease-in-out;
}

.company_list__el,
.contents_sticky_box__el {
    background: #000;
    padding: 20px 20px 20px;
    position: relative;
    border-radius: 0 0 20px 20px;
}

.company_list__el,
.contents_stickyRight .contents_sticky_box:nth-child(2) .contents_sticky_box__el,
.contents_stickyRight .contents_sticky_box:nth-child(3) .contents_sticky_box__el {
    background: #fff;
}

.company_list__el_title,
.contents_sticky_box__el_title {
    font-size: 18px;
    letter-spacing: .1em;
    line-height: 1.5;
    position: relative;
    padding-bottom: 30px;
    margin: 0 0 20px;
    font-family: 'axisstd-H';
}

.contents_el_box__el_title::after,
.contents_sticky_box__el_title::after {
    content: "";
    background: #c1af82;
    border-radius: 5px;
    width: 30px;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.contents_sticky_box__el_box {
    position: relative;
    width: 100%;
}

.company_list__el_box .image,
.contents_el_box__el_box .image,
.contents_sticky_box__el_box .image {
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    max-width: 40px;
    width: 100%;
}

.company_list__el_box .title,
.contents_el_box__el_box .title,
.contents_sticky_box__el_box .title {
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: .15em;
    line-height: 1.5;
    padding-left: 55px;
    margin: 0 0 15px;
}

.company_list__el_box .title p,
.contents_el_box__el_box .title p,
.contents_sticky_box__el_box .title p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.contents_el_box__el_box .item,
.contents_sticky_box__el_box .item {
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: bold;
    font-size: 12px;
    line-height: 1.3;
}

.hero_left_el_box__item span,
.company_list__el_box .item span,
.contents_el_box__el_box .item span,
.contents_sticky_box__el_box .item span {
    display: inline-block;
    background: #e0e0e0;
    border-radius: 3px;
    border: 1px solid #ececec;
    color: #000;
    padding: 3px 8px;
    margin: 5px 20px 0 0;
}

.hero_left_el_box__item span.box_white,
.company_list__el_box .item span.box_white,
.contents_el_box__el_box .item span.box_white,
.contents_sticky_box__el_box .item span.box_white {
    background: #fff;
    border: 1px solid #dcdcdc;
    position: relative;
}

.hero_left_el_box__item span.box_white::after,
.contents_el_box__el_box .item span.box_white::after,
.contents_sticky_box__el_box .item span.box_white::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    margin: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: -15px;
    top: 0;
    bottom: 0;
}

.contents_el_box__el_box .item span.box_white2,
.contents_sticky_box__el_box .item span.box_white2 {
    background: #fff;
    border: 1px solid #dcdcdc;
    position: relative;
}

.company_list__el_box .item span.box_white::after,
.contents_el_box__el_box .item span.box_white2::after,
.contents_sticky_box__el_box .item span.box_white2::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    margin: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: -15px;
    top: 0;
    bottom: 0;
}

.contents_stickyLeft .contents_sticky_box {
    margin: 0;
    width: 100%;
    height: 94vh;
    position: sticky;
    top: 3vh;
}

.contents_stickyLeft .contents_sticky_box__el {
    background: #000;
    padding: 25px 35px 35px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.contents_stickyLeft .contents_sticky_box__img,
.contents_el_box .contents_sticky_box__img {
    width: 100%;
    height: 62%;
    /* margin: auto; */
    /* position: absolute; */
    /* left: -10%; */
    /* max-width: fit-content; */
}

#company .contents_stickyLeft .contents_sticky_box__img {
    background: url(/assets/img/company_01.webp) no-repeat center center/cover;
}

#episode .contents_el_box .contents_el_box__img {
    background: url(/assets/img/episode_01.webp) no-repeat center center/cover;
}

#episode .contents_el_box:last-child .contents_el_box__img {
    background: url(/assets/img/episode_02.webp) no-repeat center center/cover;
}

#vision .contents_stickyLeft .contents_sticky_box__img {
    background: url(/assets/img/vision_01.webp) no-repeat center center/cover;
}

#sdgs .contents_el_box .contents_el_box__img {
    background: url(/assets/img/sdgs_02.webp) no-repeat center center/cover;
}

#sdgs .contents_el_box:nth-child(2) .contents_el_box__img {
    background: url(/assets/img/sdgs_01.webp) no-repeat center center/cover;
}

#team .contents_stickyLeft .contents_sticky_box__img {
    background: url(/assets/img/team_01.webp) no-repeat center center/cover;
}

.contents_el_box__el .contents_el_box__el_title,
.contents_stickyLeft .contents_sticky_box__el_title {
    font-size: 30px;
    padding-bottom: 10%;
    margin: 0 0 5%;
    font-family: 'axisstd-H';
}

.contents_el_box__el .contents_el_box__el_box .image,
.contents_stickyLeft .contents_sticky_box__el_box .image {
    max-width: 80px;
}

.contents_el_box__el .contents_el_box__el_box .title,
.contents_stickyLeft .contents_sticky_box__el_box .title {
    font-size: 15px;
    padding-left: 100px;
    margin: 0 0 8px;
}

.contents_el_box__el .contents_el_box__el_box .item,
.contents_stickyLeft .contents_sticky_box__el_box .item {
    padding-left: 100px;
}

.contents_el {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.contents_el_box {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    width: 49%;
    height: 600px;
}

.contents_el_box a {
    display: block;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 0 30px rgb(0 0 0 / 8%);
}

.contents_el_box a:hover .contents_el_box__img {
    transform: scale(1.1);
}

.contents_el_box__img {
    width: 100%;
    height: 60%;
    transition: .3s ease-in-out;
}

.contents_el_box__el {
    background: #000;
    color: #fff;
    padding: 20px 35px 30px;
    position: absolute;
    bottom: 0;
}

.contents_el .contents_el_box:nth-child(2n) .contents_el_box__el {
    background: #fff;
    color: #000;
}

.contents_el_box__el_title {
    font-size: 30px;
    letter-spacing: .1em;
    line-height: 1.5;
    position: relative;
    padding-bottom: 40px;
    margin: 0 0 35px;
}

.contents_el_box__el_box {
    position: relative;
    width: 100%;
}

.more_link {
    background: url(../img/arrow_right_b.png) no-repeat right center;
    background-size: 45px;
    float: right;
    font-family: proxima-nova, sans-serif;
    font-size: 28px;
    letter-spacing: .1em;
    margin-top: 30px;
    padding-right: 60px;
    font-weight: 800;
}

.contents#company {
    margin-bottom: 120px;
}

.contents#episode {
    margin-bottom: 60px;
}

#episode .contents_title {
    font-size: 35px;
    letter-spacing: .1em;
    top: auto;
    left: 0;
    margin: 0 0 50px;
    font-family: 'axisstd-H';
    text-align: center;
}

.contents#vision {
    margin-bottom: 60px;
}

.contents#sdgs {
    margin-bottom: 80px;
}

#sdgs .contents_el_box__el::before {
    content: "";
    background: url(../img/sdgs_line.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 10px;
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
}

.sdgs_logo {
    position: absolute;
    top: -90px;
    right: 0;
    max-width: 420px;
    width: 100%;
}

.contents#team {
    margin-bottom: 100px;
}

#newOwner {
    background: #f2f2f2;
    padding: 80px 0 150px;
}

.contents_newOwner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.contents_newOwner .contents_sticky_box {
    background: none;
    /* border-radius: 0 0 20px 20px; */
    /* padding-top: 15px; */
    margin: 0!important;
    width: 23%;
    overflow: visible;
}

.contents_newOwner .mark_new {
    background: #000;
    border: 3px solid #fff;
    color: #fff;
    font-family: proxima-nova, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 15px;
    letter-spacing: .1em;
    line-height: 30px;
    text-align: center;
    width: 75px;
    height: 35px;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 1;
}

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

#recruit {
    padding: 80px 0 80px;
    overflow: hidden;
}

#recruit .more_link {
    margin-top: 0;
}

.contents_recruit {
    width: 100%;
}

.contents_recruitBox {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    float: left;
    margin-bottom: 45px;
    padding: 25px 25px 25px 245px;
    position: relative;
    width: 48.5%;
    height: 250px;
}

.contents_recruit .contents_recruitBox:nth-child(2n) {
    margin-left: 3%;
}

.contents_recruitBox__img {
    border-radius: 10px;
    max-width: 200px;
    width: 100%;
    position: absolute;
    left: 25px;
    top: 25px;
}

.contents_recruitBox_el__company {
    color: #00bfc5;
    font-family: 'axisstd-bold';
    font-size: 14px;
    line-height: 1.375;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Industry {
    margin-bottom: 20px;
}

.Industry span {
    display: inline-block;
    color: #777777;
    border: 1px solid #bfbfbf;
    font-family: 'axisstd-regular';
    font-size: 12px;
    letter-spacing: .05em;
    line-height: 1.5;
    padding: 0 6px 2px;
}

.contents_recruitBox_el__title {
    font-family: 'axisstd-bold';
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: 75px;
}

.contents_recruitBox_el__item span {
    display: inline-block;
    background-size: auto 12px;
    background-repeat: no-repeat;
    background-position: left center;
    color: #919191;
    font-family: 'axisstd-regular';
    font-size: 11px;
    line-height: 1.375;
    margin-right: 25px;
    padding-left: 17px;
    position: relative;
}

.contents_recruitBox_el__item span.employment {
    background-image: url(../img/icon_human.png);
}

.contents_recruitBox_el__item span.area {
    background-image: url(../img/icon_pin.png);
}

.contents_recruitBox_el__item span.salary {
    background-image: url(../img/icon_yen.png);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

#column {
    background: #f8f8f8;
    padding: 60px 0 80px;
    overflow: hidden;
}

.contents_column {
    margin: 0 auto;
    max-width: 1260px;
    width: 100%;
    overflow: hidden;
}

.contents_column .contents_article {
    float: right;
    width: 31%;
}

.contents_column .contents_articleLarge {
    float: left;
    width: 63.5%;
}

.contents_column .contents_article:last-child {
    margin-top: 45px;
}

#online {
    padding: 80px 0 80px;
    overflow: hidden;
}

.contents_online {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.contents_online .contents_article_el__title {
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 20px;
}

.contents_online .contents_article__img {
    margin: 0 0 20px;
}

#pickup {
    background: #f8f8f8;
    padding: 80px 0 80px;
    overflow: hidden;
}

.contents_pickup {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.contents_pickup .contents_article_el__title {
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 20px;
}

.contents_article {
    display: block;
    width: 31.5%;
    overflow: hidden;
}

.contents_article__img {
    border-radius: 10px;
    margin: 0 0 40px;
    overflow: hidden;
}

.contents_article__img img {
    width: 100%;
    transition: .3s ease-in-out;
}

.contents_article:hover .contents_article__img img {
    transform: scale(1.1);
}

.contents_article_el__type {
    margin: 0 0 0px;
    position: relative;
    top: -5px;
}

.contents_article_el__type span.black {
    background-color: #000;
}

.contents_article_el__type span.gray {
    background-color: #adadad;
}

.contents_article_el__type span.green {
    background-color: #65d5b6;
    border-radius: 15px;
}

.contents_article_el__type span.blue {
    background-color: #4dcee3;
}

.contents_article_el__title {
    font-size: 35px;
    line-height: 1.5;
    margin: 0 0 10px;
}

.contents_article_el__text {
    font-size: 16px;
    letter-spacing: .05em;
    line-height: 1.8;
    margin: 0 0 15px;
}

.contents_article_el__date {
    color: #c0c0c0;
    font-weight: 100;
    font-style: normal;
    font-size: 15px;
}

.contents_article_el__text {
    font-size: 15px;
    letter-spacing: .05em;
    line-height: 1.8;
    margin: 0 0 15px;
    font-family: 'axisstd-regular';
    font-weight: 500;
    color: #616161;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.contents_column_s .contents_article_el__title {
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 10px;
}

.contents_column_s .contents_article__img {
    margin: 0 0 20px;
}

.contents_column_s .contents_article_el__date {
    /* font-size: 14px; */
}

@media screen and (max-width: 1600px) {
    /* ----------------------------------------------------------------------
        top / contents
    ---------------------------------------------------------------------- */
    .contents_title {
        top: 24px;
        left: 0;
        padding-left: 10px;
    }
}

@media screen and (max-width: 1600px) {
    /* ----------------------------------------------------------------------
        top / hero
    ---------------------------------------------------------------------- */
    .hero_right_el_caption {
        font-size: 15px;
    }
}

@media screen and (max-width: 1200px) {
    /* ----------------------------------------------------------------------
        top / contents
    ---------------------------------------------------------------------- */
    .contents_title {
        top: 25px;
    }
    .contents_title .en {
        /* font-size: 160px; */
    }
    .contents_titleSmall {
        font-size: 60px;
    }
    .contents_titleSmall .ja {
        font-size: 45px;
    }
    .contents_sticky_box__el_box .image {
        max-width: 43px;
    }
    .contents_sticky_box__el_box .title {
        font-size: 13px;
        padding-left: 56px;
    }
    .contents_stickyLeft .contents_sticky_box__el_box .title {
        font-size: 14px
    }
}

@media screen and (max-width: 1100px) {
    /* ----------------------------------------------------------------------
        top / hero
    ---------------------------------------------------------------------- */
    .hero_left_el_title {
        /* font-size: 35px; */
    }
    .hero_right_el_title {
        background: none;
    }
    .hero_right_el_title::after {
        content: none;
    }
    .hero_right_el_title .title {
        background: #fff;
        border-radius: 15px;
        color: #000;
        font-size: 14px;
        line-height: 30px;
        text-align: left;
        padding: 0 0 0 30px;
        width: 80px;
        height: 30px;
        top: 10px;
        bottom: auto;
        right: auto;
    }
    .hero_right_el_title .title::before {
        content: none;
    }
    .hero_right_el_title .title::after {
        width: 8px;
        height: 8px;
        top: 0;
        bottom: 0;
        left: 11px;
        right: auto;
    }
    .hero_right_el_caption {
        font-size: 16px;
        padding: 0 5%;
    }
    .hero_right_el_img {
        width: 100%;
    }
    /* ----------------------------------------------------------------------
        top / contents
    ---------------------------------------------------------------------- */
    .contents_title {
        /* top: 30px; */
        /* padding-left: 30px; */
    }
    .contents_title .en {
        font-size: 120px;
    }
    .contents_sticky_box__el_box .image {
        max-width: 36px;
    }
    .contents_sticky_box__el_box .title {
        font-size: 10px;
        padding-left: 45px;
    }
    .contents_stickyLeft .contents_sticky_box__el_box .title {
        font-size: 12px
    }
}

@media screen and (max-width: 1024px) {
    /* ----------------------------------------------------------------------
        header
    ---------------------------------------------------------------------- */
    /* ----------------------------------------------------------------------
        top / hero
    ---------------------------------------------------------------------- */
    .hero_left {
        margin: 0 0 20px;
        width: 100%;
    }
    .hero_left_el_title {
        /* font-size: 45px; */
    }
    .hero_right {
        padding-left: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .hero_right_el {
        width: 32%;
    }
    /* ----------------------------------------------------------------------
        top / contents
    ---------------------------------------------------------------------- */
    .contents_title {
        top: 25px;
        padding-left: 10px;
    }
    /*.contents_title .en{
        font-size: 140px; ←「COMPANY」がはみ出る
    }*/
    .contents_titleSmall {
        /* font-size: 35px; */
        text-align: left;
        margin: 0 0 30px;
    }
    .contents_titleSmall .ja {
        font-size: 40px;
    }
    .contents_sticky_box__el_title {
        font-size: 15px;
    }
    .contents_el_box__el_title {
        font-size: 15px;
    }
    .contents_el_box__el .contents_el_box__el_title,
    .contents_stickyLeft .contents_sticky_box__el_title {
        font-size: 28px;
    }
    .contents_sticky_box__el_box .image {
        max-width: 35px;
    }
    .contents_sticky_box__el_box .title {
        font-size: 11px;
    }
    .contents_el_box__el_box .title {
        font-size: 11px;
    }
    .contents_stickyLeft .contents_sticky_box__el_box .title {
        font-size: 11px
    }
    .contents_sticky_box__el_box .item {
        font-size: 7px;
    }
    .contents_el_box {
        height: 510px;
    }
    .sdgs_logo {
        display: none;
    }
    .contents_newOwner .contents_sticky_box {
        width: 23.5%;
    }
    .contents_recruitBox {
        width: 100%;
    }
    .contents_recruit .contents_recruitBox:nth-child(2n) {
        margin-left: 0;
    }
    .contents_recruitBox {
        padding: 25px 25px 25px 195px;
    }
    .contents_recruitBox__img {
        max-width: 150px;
    }
    .contents_recruitBox_el__company .Industry {
        display: block;
        margin: 12px 24px 0 0;
        width: max-content;
    }
    .contents_stickyRight {
        padding-left: 0;
    }
    .contents_article_el__title {
        font-size: 30px;
    }
    .contents_pickup .contents_article_el__title,
    .contents_online .contents_article_el__title,
    .contents_column_s .contents_article_el__title {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    /* ----------------------------------------------------------------------
        top / hero
    ---------------------------------------------------------------------- */
    .hero {
        padding: 25px 15px 30px;
    }
    .hero_s {
        width: 100%;
        overflow: hidden;
    }
    .hero_s_el {
        background: #000;
        width: 100%;
        overflow: hidden;
    }
    .hero_s .hero_left_el {
        position: relative;
        padding: 20px 25px 0px;
    }
    .hero_s .hero_left_el::before {
        content: "";
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 1) 100%);
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        left: 0;
        top: -100%;
        z-index: 0;
    }
    .hero_s .hero_left_el_title {
        font-size: 22px;
        margin: 0 0 20px;
    }
    .hero_s .hero_left_el_box {
        padding-left: 65px;
    }
    .hero_s .hero_left_el_box__title {
        font-size: 13px;
        color: #b3b3b3;
        line-height: 1.6;
    }
    .hero_s .hero_left_el_box__img {
        max-width: 40px;
    }
    .hero_s .hero_left_el_title,
    .hero_s .hero_left_el_box {
        position: relative;
        top: -40px;
    }
    .hero_left_el_box__title {
        margin: 0 0 0;
    }
    /* ----------------------------------------------------------------------
        top / contents
    ---------------------------------------------------------------------- */
    .contents_article:hover .contents_article__img img,
    .contents_el_box a:hover .contents_el_box__img,
    .contents_sticky_box:hover .contents_sticky_box__img {
        transform: none;
    }
    .contents#company,
    .contents#vision,
    .contents#episode,
    .contents#sdgs {
        margin-bottom: 50px;
    }
    .contents#team {
        margin-bottom: 0px;
    }
    .contents {
        padding: 0;
        overflow: hidden;
    }
    .contents_title {
        top: 20;
        padding-left: 10px;
    }
    .contents_title .en {
        font-size: 90px;
    }
    .contents_titleSmall {
        margin: 0 0 30px;
        font-size: 45px;
    }
    .contents_titleSmall .ja {
        font-size: 35px;
    }
    .contents_sticky {
        display: block;
    }
    .contents_stickyLeft {
        padding-right: 0;
        width: 100%;
    }
    .contents_stickyRight {
        padding: 1.5rem 1rem 1rem;
        width: 100%;
        overflow: hidden;
    }
    .contents_el_box,
    .contents_sticky_box {
        background: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 0;
        width: 100%;
        box-shadow: none;
        padding-bottom: 20px;
        margin: 0 0 15px;
    }
    .contents_sticky_box__el {
        padding: 0;
    }
    .contents_sticky_box__el_box {
        min-height: 40px;
    }
    .contents_sticky_box__el_title::after {
        content: none;
    }
    .contents_el_box__el .contents_el_box__el_box .title,
    .contents_sticky_box__el_box .title {
        color: #b3b3b3;
        padding-left: 0;
        margin-bottom: 0;
        font-size: 11px;
    }
    .contents_sticky_box__el_box .item {
        display: none;
    }
    .contents_stickyLeft .contents_sticky_box {
        border-bottom: 0;
        padding-bottom: 0;
        height: auto;
    }
    #sdgs .contents_el_box:nth-child(1) .contents_el_box__img,
    .contents_stickyLeft .contents_sticky_box__img {
        height: 80vw;
    }
    .contents_stickyLeft .contents_sticky_box__el {
        position: relative;
        border-radius: 0;
        padding: 20px 25px 20px 25px;
    }
    .contents_stickyLeft .contents_sticky_box__el_title {
        padding-bottom: 0;
        margin: 0 0 5%;
        width: 80%;
    }
    .hero_s .hero_left_el_box__img,
    .contents_stickyLeft .contents_sticky_box__el_box .image {
        max-width: 50px;
        top: 6px;
    }
    .contents_stickyLeft .contents_sticky_box__el_box .title {
        font-size: 13px;
        padding: 11px 0 0 65px;
    }
    .contents_stickyRight .contents_sticky_box:nth-child(2n) {
        margin: 0 0 5%;
    }
    .contents_stickyRight .contents_sticky_box__img {
        position: absolute;
        z-index: 1;
        width: auto;
        height: 115px;
    }
    .contents_stickyRight .contents_sticky_box__el::before {
        content: "";
        width: 50px;
        height: 120px;
        background: #fff;
        display: block;
        z-index: 1;
        position: absolute;
        top: -3px;
        left: 112px;
    }
    .contents_stickyRight .contents_sticky_box__el {
        background: #fff;
        color: #000;
        /* min-height: 200px; */
    }
    .contents_el_box__el .contents_el_box__el_title,
    .contents_stickyRight .contents_sticky_box__el_title {
        padding: 0 0 0 130px;
        margin: 0 0 20px;
        font-size: 18px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        z-index: 1;
        width: 80%;
    }
    .contents_stickyRight .contents_sticky_box__el_box {
        position: relative;
        z-index: 1;
    }
    .contents_el_box .contents_el_box__el_box .image,
    .contents_stickyRight .contents_sticky_box__el_box .image {
        display: none;
        /* border-radius: 0; */
        /* max-width: 200px; */
    }
    .contents_stickyRight .contents_sticky_box__el_box {
        padding-left: 130px;
    }
    .contents_el {
        display: block;
    }
    .contents_el_box {
        padding: 0 1rem;
        margin-right: 0;
        width: 100%;
        height: auto;
        overflow: hidden;
        background: none;
        border-bottom: none;
        margin: 0;
    }
    .contents_el_box a {
        border-top: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 0;
        padding: 15px 0 15px;
        width: 100%;
        box-shadow: none;
        height: 115px;
        box-sizing: content-box;
    }
    .contents_el .contents_el_box:last-child a {
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        /* margin-bottom: 20px; */
    }
    .contents_el_box__img {
        height: 115px;
        position: absolute;
        z-index: 1;
        width: 115px;
    }
    .contents_el_box__el {
        background: #f7f7f7;
        color: #000;
        min-height: 200px;
        padding: 0;
        position: relative;
    }
    .contents_el .contents_el_box:nth-child(2n) .contents_el_box__el {
        background: #f7f7f7;
    }
    .contents_el_box__el_title {
        padding: 0 0 0 235px;
        margin: 0 0 70px;
    }
    .contents_el_box__el_title::after {
        content: none;
    }
    .contents_el_box__el_box {
        position: static;
        padding-left: 130px;
    }
    .contents_el_box__el_box .image {
        border-radius: 0;
        max-width: 200px;
    }
    .contents_el_box__el_box .title {
        /* color: #8a8a8a; */
        /* padding-left: 0; */
    }
    .contents_el_box__el_box .item {
        display: none;
    }
    .more_link {
        background-size: 28px;
        font-size: 16px;
        padding-right: 38px;
        margin-top: -10px;
    }
    #sdgs .more_link,
    #column .more_link,
    #online .more_link,
    #pickup .more_link {
        margin-top: 16px;
    }
    #sdgs .more_link,
    #column .more_link {
        position: relative;
        right: 15px;
    }
    #company {
        margin-bottom: 15px;
    }
    #episode {
        background: #f7f7f7;
        border-bottom: 5px solid #000;
        padding: 50px 0 50px;
    }
    #episode .contents_title {
        font-size: 30px;
        text-align: center;
        padding-left: 0;
    }
    #sdgs {
        border-bottom: 5px solid #000;
        position: relative;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    #sdgs::before {
        content: "";
        background: url(../img/sdgs_line.png) no-repeat center center;
        background-size: cover;
        width: 100%;
        height: 10px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
    #sdgs .contents_el_box__el {
        background: #fff;
    }
    #sdgs .contents_el_box__el::before {
        content: none;
    }
    #sdgs .sdgs-first {
        padding: 0;
    }
    #sdgs .sdgs-first a {
        height: auto;
    }
    #sdgs .sdgs-first .contents_el_box__img {
        height: 80vw;
        width: 100%;
        position: static;
    }
    #sdgs .sdgs-first .contents_el_box__el {
        padding: 20px 25px 5px 25px;
        background: #000;
        color: #fff;
    }
    #sdgs .sdgs-first .contents_el_box__el .contents_el_box__el_title {
        padding: 0;
        margin: 0 0 5%;
        font-size: 20px;
    }
    #sdgs .sdgs-first .contents_el_box__el .contents_el_box__el_box {
        min-height: 74px;
        position: relative;
        padding-left: 0;
    }
    #sdgs .sdgs-first .contents_el_box__el .contents_el_box__el_box .image {
        display: block;
        max-width: 50px;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 6px;
    }
    #sdgs .sdgs-first .contents_el_box__el .title {
        font-size: 13px;
        padding: 11px 0 0 65px;
    }
    #sdgs .contents_el_box {
        border: none;
    }
    #sdgs .contents_el_box a {
        border-top: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }
    #sdgs .sdgs-first a {
        border: none;
        padding: 0 0 10px;
    }
    #sdgs .contents_el_boxFirst {
        padding: 0;
    }
    #sdgs .contents_el_boxFirst a {
        background: #000;
        border-top: 0;
        padding-top: 0;
    }
    #sdgs .contents_el_boxFirst .contents_el_box__el_box {
        position: relative;
        padding-left: 0;
        min-height: 74px;
    }
    #sdgs .contents_el_boxFirst .contents_el_box__el_title {
        font-size: 28px;
        padding: 0;
    }
    #sdgs .contents_el_boxFirst .contents_el_box__img {
        display: block;
    }
    #sdgs .contents_el_boxFirst .contents_el_box__el {
        background: #000;
        color: #fff;
        padding: 35px;
        bottom: 0;
        width: 100%;
    }
    #sdgs .contents_el_boxFirst .contents_el_box__el_box .image {
        border-radius: 8px;
        max-width: 74px;
    }
    #sdgs .contents_el_boxFirst .contents_el_box__el_box .title {
        font-size: 11px;
        padding-left: 95px;
    }
    #team {
        border-bottom: 5px solid #000;
        padding-bottom: 50px;
    }
    #newOwner {
        border-bottom: 5px solid #000;
        padding: 40px 25px 40px;
    }
    .contents_newOwner {
        display: block;
    }
    .contents_newOwner .contents_sticky_box {
        border-radius: 0;
        border-bottom: 0;
        padding-top: 0;
        padding-bottom: 40px;
        width: 48%;
    }
    .contents_newOwner .contents_sticky_box:nth-child(2n) {
        margin-left: 4%!important;
    }
    .contents_newOwner .contents_sticky_box__el {
        background: none;
    }
    .contents_newOwner .contents_sticky_box__el_title {
        display: none;
    }
    .contents_newOwner .contents_sticky_box__el_box {
        min-height: auto;
    }
    .contents_newOwner .contents_sticky_box__el_box .image {
        display: none;
    }
    .contents_newOwner .contents_sticky_box__el_box .title {
        color: #000;
        font-size: 11px;
        letter-spacing: .15em;
        margin: 10px 0 0;
    }
    .contents_newOwner .mark_new {
        border: 2px solid #fff;
        font-size: 11px;
        line-height: 21px;
        width: 44px;
        height: 25px;
    }
    .contents_sticky_boxCover {
        border-radius: 0;
    }
    #recruit {
        border-bottom: 5px solid #000;
        padding: 40px 15px 70px;
    }
    .contents_recruitBox {
        padding: 20px;
        margin-bottom: 20px;
        height: auto;
    }
    .contents_recruitBox__img {
        border-radius: 5px;
        max-width: 60px;
    }
    .Industry,
    .contents_recruitBox_el__company {
        padding-left: 80px;
    }
    .contents_recruitBox_el__title {
        font-size: 13px;
        margin: 0 0 15px;
        height: auto;
    }
    #column {
        border-bottom: 5px solid #000;
        padding: 40px 0px 70px;
    }
    #column .contents_titleSmall {
        padding: 0 30px;
    }
    .contents_column_s {
        padding: 0 1rem;
    }
    .contents_column .contents_article {
        width: 100%!important;
    }
    .contents_column .contents_articleLarge {
        border-top: 0;
        padding-top: 0;
    }
    .contents_column .contents_articleLarge .contents_article__img {
        margin-bottom: 20px;
        width: 100%;
    }
    .contents_column .contents_articleLarge .contents_article_el {
        padding: 0 30px;
        width: 100%;
    }
    .contents_column .contents_article:last-child {
        margin-top: 0;
    }
    .contents_article_el__text {
        display: none;
    }
    #online {
        border-bottom: 5px solid #000;
        padding: 40px 15px 40px;
    }
    .contents_online {
        display: block;
    }
    #pickup {
        padding: 40px 15px 40px;
    }
    .contents_pickup {
        display: block;
    }
    .contents_article {
        border-top: 1px solid rgba(0, 0, 0, 0.2);
        padding: 15px 0;
        width: 100%;
    }
    .contents_article:last-child {
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }
    .contents_article__img {
        border-radius: 0;
        float: left;
        margin: 0;
        width: 35%;
    }
    .contents_article_el {
        float: left;
        padding-left: 15px;
        width: 65%;
    }
    .contents_article_el__type span {
        padding: 2.5px 7px;
    }
    .contents_article_el__type span.saiyo,
    .contents_article_el__type span.roumu,
    .contents_article_el__type span.soshiki {
        background-position: 7px center;
        padding-left: 24px;
    }
    .contents_article_el__title {
        font-size: 18px;
    }
    .contents_article_el__date {
        font-size: 12px;
        letter-spacing: .1em;
    }
    .contents_pickup .contents_article_el__title,
    .contents_online .contents_article_el__title,
    .contents_column_s .contents_article_el__title {
        font-size: 16px;
        width: 80%;
    }
    .contents_pickup .contents_article_el__title,
    .contents_online .contents_article_el__title {
        margin: 0 0 10px;
    }
    .contents_online .contents_article__img,
    .contents_column_s .contents_article__img {
        margin: 0;
    }
}

@media screen and (max-width: 480px) {
    /* ----------------------------------------------------------------------
        top / contents
    ---------------------------------------------------------------------- */
    .contents_title {
        top: 5px;
        left: 5px;
        font-size: 12px;
        margin-bottom: 10px;
    }
    .contents_title .en {
        font-size: 40px;
    }
    .contents_sticky_box__el_box .title {
        /* margin-bottom: 0; */
    }
    .contents_stickyLeft .contents_sticky_box__el {
        /* padding: 20px; */
    }
    .contents_stickyLeft .contents_sticky_box__el_title {
        font-size: 20px;
        width: 100%;
    }
    .contents_stickyLeft .contents_sticky_box__el_box .title {
        /* font-size: 13px; */
        /* padding: 10px 0 0 76px; */
    }
    .contents_stickyLeft .contents_sticky_box__el_box .image {
        /* max-width: 60px; */
    }
    .contents_stickyRight {}
    .contents_stickyRight .contents_sticky_box {
        border-radius: 0;
        box-shadow: none;
        padding-bottom: 20px;
        margin: 0 0 15px;
    }
    .contents_stickyRight .contents_sticky_box__el {
        min-height: 110px;
    }
    .contents_stickyRight .contents_sticky_box__el_box .image {
        max-width: 110px;
    }
    .contents_el_box__el .contents_el_box__el_title {
        font-size: 14px;
        width: 100%;
    }
    #sdgs .sdgs-first .contents_el_box__el .contents_el_box__el_title {
        font-size: 20px;
    }
    .contents_stickyRight .contents_sticky_box__el_title {
        padding: 0 0 0 130px;
        margin: 0 0 20px;
        font-size: 14px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        width: 100%;
    }
    .contents_stickyRight .contents_sticky_box__el_box {
        padding-left: 130px;
        min-height: auto;
    }
    .contents_el_box__el {
        min-height: 110px;
    }
    .contents_el_box__el_title {
        padding: 0 0 0 130px;
        margin: 0 0 30px;
    }
    .contents_el_box__el_box {
        padding-left: 130px;
        min-height: auto;
    }
    .contents_el_box__el_box .image {
        max-width: 110px;
    }
    .more_link {
        background-size: 28px;
        font-size: 16px;
        margin-top: 0;
        padding-right: 40px;
    }
    #sdgs .contents_el_boxFirst .contents_el_box__el {
        padding: 35px 25px;
    }
    #episode .contents_title {
        font-size: 15px;
    }
    #newOwner {
        /* padding: 60px 25px 40px; */
    }
    #recruit {
        /* padding: 60px 15px 70px; */
    }
    #column .contents_titleSmall {
        /* padding: 0 25px; */
    }
    .contents_column_s {
        /* padding: 0 25px; */
    }
    .contents_column .contents_articleLarge .contents_article_el {
        padding: 0 20px;
    }
    #online {
        /* padding: 60px 25px 40px; */
    }
    #pickup {
        /* padding: 60px 25px 40px; */
    }
    .contents_titleSmall {
        margin: 0 0 20px;
        font-size: 35px;
    }
    .contents_titleSmall .ja {
        font-size: 25px;
    }
    .contents_article_el__title {
        font-size: 15px;
    }
    .contents_pickup .contents_article_el__title,
    .contents_online .contents_article_el__title,
    .contents_column_s .contents_article_el__title {
        font-size: 14px;
        width: 100%;
    }
}