@charset "utf-8";

:root {
    --base-size: 1920;
    --pcWidth: 1360;
    --spWidth: 1150;
}

* {
    box-sizing: border-box;
}

#wrapper {
    width: 100% !important;
}

/* ------------------------------------------------------------
PC
------------------------------------------------------------ */

#company_top .pc {
    display: block !important;
}

#company_top .sp {
    display: none !important;
}

#company_top a,
#company_top h2,
#company_top h3,
#company_top li,
#company_top p {
    color: #222222;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.8rem;
    font-family: 'メイリオ', Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

#company_top a:hover {
    text-decoration: none;
}

/* ------------------セクションタイトル------------------- */
#company_top .company_tit {
    border-left: #E50012 4px solid;
    margin: 0 auto 20px;
}

#company_top .company_tit p {
    color: #E50012;
    font-family: "Arial Bold", sans-serif;
    font-weight: bold;
    font-size: 12px;
    line-height: 1.2rem;
    letter-spacing: 2px;
    padding: 0 0 6px 22px;
}

#company_top .company_tit h2 {
    font-size: 36px;
    line-height: 2.8rem;
    letter-spacing: 3px;
    font-weight: bold;
    padding: 0 0 0 20px;
}

/* ------------------矢印リンク------------------- */

#company_top a.arrow_link {
    position: relative;
    transition: 0.5s;
}

#company_top a.arrow_link:after {
    position: absolute;
    top: 50%;
    right: -28px;
    display: inline-block;
    content: '';
    width: 14px;
    height: 14px;
    background-image: url("../../common/img/arrow_black.webp");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    transition: 0.3s;
    transform: translateY(-50%) translateX(-50%);

}

#company_top a.arrow_link:hover {
    text-decoration: underline;
}

#company_top a.arrow_link:hover:after {
    right: -33px;
}

/* ------------------見出し下コピー------------------- */
#company_top .copy {
    margin: 0 auto 30px;
}

#company_top .copy p {
    font-size: 14px;
    margin: 0 0 15px;
}

#company_top .copy a {
    font-weight: bold;
}

/* ------------------３カラムリンク------------------- */

#company_top ul.banner_3col {
    width: 100%;
    max-width: 1150px;
    margin: 30px auto 0;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

#company_top ul.banner_3col li {
    width: 31.333%;
    margin: 0 3% 3% 0;
    background: #f5f5f5;
    border-radius: 18px;
    overflow: hidden;
}

#company_top ul.banner_3col li:nth-child(3n) {
    margin: 0 0 3%;
}

#company_top ul.banner_3col li a {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-end;
    align-items: center;
    transition: 0.3s;
}

#company_top ul.banner_3col li a:hover {
    opacity: 0.6;
}

#company_top ul.banner_3col li a p {
    width: 54%;
    text-align: left;
    transition: 0.3s;
    font-weight: bold;
    padding: 0 0 0 30px;
}

#company_top ul.banner_3col li:nth-child(2) a p,
#company_top ul.banner_3col li:nth-child(6) a p {
    padding: 0 0 0 30px;
}

#company_top ul.banner_3col li a .img_box {
    width: 46%;
    overflow: hidden;
}

#company_top ul.banner_3col li a .img_box img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

#company_top ul.banner_3col li a .img_box .right-top {
    object-position: 100% 0
}

@media only screen and (max-width: 1200px) {
    #company_top ul.banner_3col {
        width: calc(1200/ var(--pcWidth) * 100vw);
    }

    #company_top ul.banner_3col li a p {
        padding: 0 0 0 calc(25/ var(--pcWidth) * 100vw);
    }

    #company_top ul.banner_3col li:nth-child(2) a p,
    #company_top ul.banner_3col li:nth-child(6) a p {
        padding: 0 0 0 calc(25/ var(--pcWidth) * 100vw);
    }
}

/* ------------------２カラムリンク------------------- */

#company_top ul.banner_2col {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 30px 0 0;
    display: flex;
    flex-flow: wrap;
}

#company_top ul.banner_2col li {
    width: 48%;
    margin: 0 3% 3% 0;
    background: #f5f5f5;
    border-radius: 18px;
    overflow: hidden;
}

#company_top ul.banner_2col li:nth-child(2n) {
    margin: 0 0 3%;
}

#company_top ul.banner_2col li a {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-end;
    align-items: center;
    transition: 0.3s;
}

#company_top ul.banner_2col li a:hover {
    opacity: 0.6;
}

#company_top ul.banner_2col li a p {
    width: 54%;
    font-weight: bold;
    text-align: left;
    transition: 0.3s;
    padding: 0 0 0 30px;
}

#company_top ul.banner_2col li:nth-child(1) a p,
#company_top ul.banner_2col li:nth-child(4) a p {
    padding: 0 0 0 calc(25 / var(--pcWidth)* 100vw);
}

#company_top ul.banner_2col li a .img_box {
    width: 46%;
    overflow: hidden;
}

#company_top ul.banner_2col li a .img_box img {
    width: 100%;
    height: 120px;
    transition: 0.3s;
    object-fit: cover;
}

#company_top ul.banner_2col li a .right-bottom {
    object-position: 100% 100%
}

#company_top ul.banner_2col li a:hover img {
    overflow: hidden;
}

@media only screen and (max-width: 1200px) {
    #company_top ul.banner_2col li a p {
        padding: 0 0 0 calc(25 / var(--pcWidth)* 100vw);
    }

    #company_top ul.banner_2col li:nth-child(2) a p,
    #company_top ul.banner_2col li:nth-child(3) a p {
        padding: 0 0 0 calc(25 / var(--pcWidth)* 100vw);
    }
}


/* ------------------２カラムリンク_採用サイト用------------------- */

#company_top ul.recruit_banner_2col {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 30px 0 0;
    display: flex;
    flex-flow: wrap;
}

#company_top ul.recruit_banner_2col li {
    width: 48%;
    height: 120px;
    position: relative;
    display: table;
    margin: 0 3% 3% 0;
    background: #f5f5f5;
    text-align: left;
    border-radius: 18px;
}

#company_top ul.recruit_banner_2col li a {
    display: block;
    width: 100%;
    height: 100%;
}


#company_top ul.recruit_banner_2col li:nth-child(2n) {
    margin: 0 0 3%;
}


#company_top ul.recruit_banner_2col li a:hover {
    opacity: 0.6;
}

#company_top ul.recruit_banner_2col li a p {
    position: absolute;
    top: 50%;
    line-height: 0;
    font-weight: bold;
    text-align: left;
    padding: 0 0 0 30px;
}







/* ------------------テキストリンク------------------- */
#company_top ul.txt_link {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-flow: wrap;
    justify-content: flex-end;
    text-align: right;
}

#company_top ul.txt_link li {
    padding: 0 70px 0 0;
    font-weight: bold;
}

#company_top ul.txt_link li:last-child {
    padding: 0;
}

/* --テキストリンク_society-- */
#company_top #society ul.txt_link {
    width: 100%;
    max-width: 720px;
    margin: 40px 0 0;
}

#company_top #society ul.txt_link li:nth-child(1),
#company_top #society ul.txt_link li:nth-child(2),
#company_top #society ul.txt_link li:nth-child(3) {
    padding: 0 0 10px;
    width: 33.333%;
    box-sizing: border-box;
}

#company_top #society ul.txt_link li {
    padding: 0 0 10px;
    width: 33.6%;
    box-sizing: border-box;
}

@media only screen and (max-width: 1200px) {
    #company_top #society ul.txt_link {
        width: 94%;
    }
}

/* ------------------イメージ写真エリア------------------- */
#company_top .photo_bg {
    position: relative;
    z-index: 0;
}

#company_top .photo_bg::before {
    display: block;
    position: absolute;
    z-index: 1;
    content: "";
    width: calc(30%);
}

/* --イメージ写真エリア_society-- */
#company_top #society .photo_bg::before {
    top: -160px;
    left: 0;
    height: 600px;
    background: url("../img/top/bg_shakai.webp") no-repeat 50% 50% / cover;
    border-radius: 0 30px 30px 0;
}

/* --イメージ写真エリア_ir-- */
#company_top #ir .photo_bg::before {
    top: -350px;
    right: -50px;
    height: 800px;
    background: url("../img/top/bg_ir.webp") no-repeat 50% 50% / cover;
    border-radius: 30px 0 0 30px;
}

/* --イメージ写真エリア_careers-- */
#company_top #careers .photo_bg::before {
    top: 40px;
    left: 0;
    height: 600px;
    background: url("../img/top/bg_recruit.webp") no-repeat 50% 50% / cover;
    border-radius: 0 40px 40px 0;
}

@media only screen and (max-width: 1200px) {
    #company_top .photo_bg::before {
        width: calc(24%);
    }

    #company_top #society .photo_bg::before {
        top: -160px;
        left: 0;
        height: 600px;
    }

    #company_top #ir .photo_bg::before {
        top: -160px;
        right: 0;
        height: 600px;
    }
}

/* ------------------コンテンツ幅最大値------------------- */
#company_top .max_area {
    z-index: 2;
    width: 100%;
    max-width: 1150px;
    display: flex;
    flex-flow: wrap;
    justify-content: flex-end;
    margin: 0 auto;
}

/* ------------------メインコンテンツが半分------------------- */
#company_top .half_area_right {
    width: 790px;
    position: relative;
    z-index: 3;
}

#company_top .content2_wrap {
    width: 770px;
    position: relative;
    z-index: 3;
    margin: 0 auto;
}

#company_top .half_area_left {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
    #company_top .half_area_right {
        width: 70%;
        padding: 0 20px;
    }

    #company_top .half_area_left {
        width: 70%;
        padding: 0 20px;
        margin: 0;
    }
}

/* ------------------ピンク色の背景------------------- */
#company_top .pink_bg {
    position: relative;
    z-index: 0;
    width: 100%;
    background: #fbe5e7;
}

#company_top .pink_bg:before {
    position: absolute;
    top: -100px;
    content: '';
    width: 100%;
    background: #fbe5e7;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    height: 300px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
}

/* ------------------バナーエリア------------------- */
#company_top .banner_area {
    width: 100%;
    max-width: 750px;
    display: flex;
    flex-flow: wrap;
}

@media only screen and (max-width: 1200px) {
    #company_top .banner_area {
        width: 100%;
    }
}

/* ------------------横長バナー------------------- */
#company_top .long_baner {
    width: 100%;
}

#company_top .long_baner a {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    justify-content: flex-end;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s;
    margin: 30px auto 0;
    font-weight: bold;
}

#company_top .long_baner a:hover {
    opacity: 0.6;
}

#company_top .long_baner p {
    width: 34%;
    text-align: left;
    transition: 0.3s;
    padding: 0 0 0 30px;
}

#company_top .content2 .long_baner p {
    padding: 0 0 0 30px;
}

#company_top .long_baner .img_box {
    width: 66%;
}

#company_top .long_baner .img_box img {
    width: 100%;
    height: 120px;
    transition: 0.3s;
    object-fit: cover;
}

@media only screen and (max-width: 1200px) {
    #company_top .content1 .long_baner p {
        padding: 0 0 0 calc(20/ var(--pcWidth) * 100vw);
    }

    #company_top .content2 .long_baner p {
        padding: 0 0 0 calc(20/ var(--pcWidth) * 100vw);
    }
}

/* ------------------半分バナー------------------- */
#company_top .half_baner {
    width: 48%;
    margin: 4% 0 0;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

#company_top .half_baner:nth-child(3) {
    margin: 4% 4% 0 0;
}

#company_top .half_baner a {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-end;
    margin: 0;
    transition: 0.3s;
}

#company_top .half_baner a:hover {
    opacity: 0.8;
}

#company_top .half_baner p {
    font-weight: bold;
    width: 54%;
    text-align: left;
    transition: 0.3s;
    padding: 14% 0 0 30px;

}

#company_top .half_baner a:hover p {
    color: #E50012;
}

#company_top .half_baner:nth-child(3) p {
    padding: 10% 0 0 30px;
}

#company_top .half_baner .img_box {
    width: 46%;
    overflow: hidden;
}

#company_top .half_baner .img_box img {
    width: 100%;
    transition: 0.3s;
}

/* ------------------メインビジュアル------------------- */
#company_top #mv img {
    width: 100%;
    margin: 0 auto;
}

/* ------------------企業情報------------------- */
#company_top #about {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto 220px;
}

#company_top #about .company_tit {
    margin: 80px auto 20px;
}

@media only screen and (max-width: 1440px) {
    #company_top #about {
        width: calc(1200/ var(--pcWidth) * 100vw);
    }
}

/* ------------------社会・環境------------------- */
#company_top #society {
    padding: 0 0 80px;
}

/* ---sub_link---- */
#company_top #society .content1 ul.sub_link {
    width: 100%;
    max-width: 700px;
    margin: 40px auto 0;
    text-align: right;
}

#company_top #society .content1 ul.sub_link li {
    padding: 0 0 10px;
}

#company_top #society .content1 ul.sub_link li a {
    font-weight: bold;
}

@media only screen and (max-width: 1200px) {
    #company_top #society .content1 ul.sub_link {
        width: 98%;
        padding: 0 20px;
    }
}

#company_top #society .content1 ul.sub_link.small_ver {
    width: 100%;
    max-width: 800px;
    margin: 20px auto 40px;
}

#company_top #society .content1 ul.sub_link.small_ver li {
    padding: 0 0 5px;
}

#company_top #society .content1 ul.sub_link.small_ver li a {
    font-weight: normal;
    text-decoration: underline;
}

#company_top #society .content1 ul.sub_link.small_ver li a:hover {
    text-decoration-color: #222;
}


/* ------------------決算・IR情報------------------- */
#company_top #ir {
    padding: 100px 0;
    margin: 0 auto 100px;
}

#company_top #ir .txt_link {
    width: 100%;
    max-width: 760px;
    margin: 10px 0 0;

}


/* ------------------採用情報------------------- */
#company_top #careers {
    padding: 20px 0 60px;
    margin: 0 auto 150px;
}

#company_top #careers li {
    background: #fff;
}

#company_top #careers ul.banner_2col li:nth-child(1) a p,
#company_top #careers ul.banner_2col li:nth-child(2) a p,
#company_top #careers ul.banner_2col li:nth-child(3) a p,
#company_top #careers ul.banner_2col li:nth-child(4) a p {
    padding: 0 0 0 calc(25 / var(--pcWidth)* 100vw);
}






/* ------------------お知らせ------------------- */

#news .news_section {
    text-align: center;
    margin: 20px auto 60px;
}

#news .news_section p {
    color: #E50012;
    font-family: "Arial Bold", sans-serif;
    font-weight: bold;
    font-size: 12px;
    line-height: 2.4rem;
    letter-spacing: 2px;
}

#news .news_section h2 {
    font-size: 40px;
    line-height: 2.8rem;
    letter-spacing: 6px;
    font-weight: bold;
}

/* ------------------フッター------------------- */
#company_top #top_footer {
    position: relative;
    z-index: 1;
    background: #f5f5f5;
    margin: 180px auto 0;
}

#company_top #top_footer:before {
    position: absolute;
    top: -100px;
    z-index: 0;
    content: '';
    width: 100%;
    background: #f5f5f5;
    border-top-left-radius: 80%;
    border-top-right-radius: 80%;
    height: 100px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
}


/* ------------------------------------------------------------
SP
------------------------------------------------------------ */

@media only screen and (max-width: 800px) {

    #company_top .pc {
        display: none !important;
    }

    #company_top .sp {
        display: block !important;
    }

    #company_top a,
    #company_top h2,
    #company_top li,
    #company_top p {
        text-decoration: none;
        font-size: calc(42/ var(--spWidth) * 100vw);
        line-height: calc(80/ var(--spWidth) * 100vw);
    }


    /* ------------------ピンク色の背景------------------- */
    #company_top .pink_bg:before {
        top: -80px;
        left: -10%;
        width: 105%;
        height: 120px;
        margin: 0 auto;
        border-top-left-radius: 50%;
        border-top-right-radius: 70%;
        overflow: hidden;
    }

    /* ------------------イメージ写真エリア------------------- */
    #company_top .photo_bg {
        position: relative;
        z-index: 0;
    }

    #company_top .photo_bg::before {
        display: block;
        position: absolute;
        z-index: 1;
        content: "";
        width: calc(35%);
    }

    /* --イメージ写真エリア_society-- */
    #company_top #society .photo_bg::before {
        top: -160px;
        left: auto;
        right: 0;
        height: 400px;
        background: url("../img/top/sp_bg_shakai.webp") no-repeat 50% 50% / cover;
        border-radius: 30px 0 0 30px;
    }

    /* --イメージ写真エリア_ir-- */
    #company_top #ir .photo_bg::before {
        top: -60px;
        right: auto;
        left: -20px;
        height: 580px;
        background: url("../img/top/sp_bg_ir.webp") no-repeat 50% 50% / cover;
        border-radius: 0 30px 30px 0;
    }

    /* --イメージ写真エリア_careers-- */
    #company_top #careers .photo_bg::before {
        top: -160px;
        left: auto;
        right: 0;
        height: 330px;
        background: url("../img/top/bg_recruit.webp") no-repeat 50% 50% / cover;
        border-radius: 30px 0 0 30px;
    }

    /* ------------------矢印リンク------------------- */

    #company_top a.arrow_link:after {
        right: -15px;
    }

    #company_top .copy a.arrow_link:after {
        right: -25px;
    }

    /* ------------------セクションタイトル------------------- */
    #company_top .company_tit {
        border-left: #E50012 3px solid;
        margin: 0 auto 20px;
    }

    #company_top .company_tit p {
        font-size: calc(38/ var(--spWidth) * 100vw);
        letter-spacing: 0;
        padding: 0 0 8px 14px;
    }

    #company_top .company_tit h2 {
        font-size: calc(80/ var(--spWidth) * 100vw);
        line-height: 2.0rem;
        letter-spacing: 3px;
        padding: 0 0 0 12px;

    }

    /* ------------------３カラムリンク------------------- */

    #company_top ul.banner_3col {
        width: 100%;
        margin: 0 auto 0;
        display: block;
    }

    #company_top ul.banner_3col li {
        width: 100%;
        border-radius: 12px;
        margin: 0 auto 4%;
    }

    #company_top ul.banner_3col li:nth-child(3n) {
        margin: 0 auto 4%;
    }

    #company_top ul.banner_3col li a p,
    #company_top ul.banner_3col li:nth-child(2) a p,
    #company_top ul.banner_3col li:nth-child(6) a p {
        width: 60%;
        padding: 0 0 0 calc(50/ var(--spWidth) * 100vw);
    }

    #company_top ul.banner_3col li a .img_box {
        width: 40%;
    }

    #company_top ul.banner_3col li a .img_box img {
        width: 100%;
        height: 80px;
        object-fit: cover;
    }

    /* ------------------２カラムリンク------------------- */

    #company_top ul.banner_2col {
        margin: 30px 0 0;
        display: block;
    }

    #company_top ul.banner_2col li {
        width: 100%;
        margin: 0 3% 4% 0;
        background: #f5f5f5;
        border-radius: 12px;
        overflow: hidden;
    }

    #company_top ul.banner_2col li:nth-child(2n) {
        margin: 0 0 4%;
    }

    #company_top ul.banner_2col li a {
        display: flex;
        flex-flow: wrap;
        justify-content: flex-end;
    }

    #company_top ul.banner_2col li a p,
    #company_top ul.banner_2col li:nth-child(1) a p,
    #company_top ul.banner_2col li:nth-child(2) a p,
    #company_top ul.banner_2col li:nth-child(3) a p,
    #company_top ul.banner_2col li:nth-child(4) a p {
        width: 60%;
        padding: 0 0 0 calc(50/ var(--spWidth) * 100vw);
    }

    #company_top ul.banner_2col li a .img_box {
        width: 40%;
    }

    #company_top ul.banner_2col li a .img_box img {
        width: 100%;
        height: 80px;
        object-fit: cover;
    }

    /* ------------------２カラムリンク_採用------------------- */

    #company_top ul.recruit_banner_2col {
        margin: 30px 0 0;
        display: block;
    }

    #company_top ul.recruit_banner_2col li {
        width: 100%;
        height: 80px;
        margin: 0 3% 4% 0;
        background: #f5f5f5;
        border-radius: 12px;
        overflow: hidden;
    }

    #company_top ul.recruit_banner_2col li:nth-child(2n) {
        margin: 0 0 4%;
    }


    #company_top ul.recruit_banner_2col li a p,
    #company_top ul.recruit_banner_2col li:nth-child(1) a p,
    #company_top ul.recruit_banner_2col li:nth-child(2) a p,
    #company_top ul.recruit_banner_2col li:nth-child(3) a p,
    #company_top ul.recruit_banner_2col li:nth-child(4) a p {
        padding: 0 0 0 calc(50/ var(--spWidth) * 100vw);
    }



    /* ------------------テキストリンク------------------- */
    #company_top ul.txt_link {
        margin: 30px auto 0;
        display: block;
        text-align: left;
        border-top: 1px solid #ddd;
    }

    #company_top ul.txt_link li,
    #company_top ul.txt_link li:last-child {
        padding: 10px 25px 10px 15px;
        font-weight: bold;
        border-bottom: 1px solid #ddd;
    }

    #company_top ul.txt_link li a {
        display: block;
    }

    /* --テキストリンク_society-- */
    #company_top #society .content2 ul.txt_link {
        width: 100%;
        margin: 20px auto 0;
    }

    #company_top #society ul.txt_link {
        max-width: 100%;
        margin: 40px auto 0;
        border-top: 1px solid #fff;
    }

    #company_top #society ul.txt_link li {
        padding: 10px 25px 10px 15px;
        width: 100%;
        border-bottom: 1px solid #fff;
    }

    #company_top #society ul.txt_link li:nth-child(1),
    #company_top #society ul.txt_link li:nth-child(2),
    #company_top #society ul.txt_link li:nth-child(3) {
        padding: 10px 25px 10px 15px;
        width: 100%;
        border-bottom: 1px solid #fff;
    }

    /* ------------------コンテンツ幅最大値------------------- */
    #company_top .max_area {
        width: 100%;
        display: block;
        margin: 0 auto;
    }

    /* ------------------メインコンテンツが半分------------------- */
    #company_top .half_area_right {
        width: 100%;
    }

    #company_top .half_area_right .copy {
        width: 60%;
        margin: 0;
    }

    #company_top .content2_wrap {
        width: 90%;
        position: relative;
        z-index: 3;
        margin: 0 auto;
    }

    #company_top .half_area_left {
        width: 100%;
        max-width: 1150px;
        margin: 0 auto;

    }

    /* ------------------横長バナー------------------- */
    #company_top .long_baner {
        width: 100%;
    }

    #company_top .long_baner a {
        width: 100%;
        margin: 30px auto 0;
        flex-direction: row-reverse;
        border-radius: 12px;
    }

    #company_top .content2 .long_baner a {
        margin: 0 auto;
    }

    #company_top .long_baner p {
        width: 60%;
        padding: 0 0 0 calc(50/ var(--spWidth) * 100vw);
    }

    #company_top .long_baner .img_box {
        width: 40%;
    }

    #company_top .long_baner .img_box img {
        width: 100%;
        height: 80px;
        object-fit: cover;
    }

    /* ------------------半分バナー------------------- */
    #company_top .half_baner {
        width: 100%;
        margin: 0 auto 4%;
        border-radius: 12px;
    }

    #company_top .half_baner:nth-child(3) {
        margin: 4% auto;
    }

    #company_top .half_baner a {
        flex-direction: row-reverse;
        align-items: center;
        border-radius: 12px;
    }

    #company_top .half_baner a:hover {
        opacity: 0.8;
    }

    #company_top .half_baner p,
    #company_top .half_baner:nth-child(3) p {
        width: 60%;
        padding: 0 0 0 calc(50/ var(--spWidth) * 100vw);
    }

    #company_top .half_baner .img_box {
        width: 40%;
    }

    #company_top .half_baner .img_box img {
        width: 100%;
        height: 80px;
        object-fit: cover;
    }

    /* ---sub_link---- */
    #company_top #society .content1 ul.sub_link {
        width: 100%;
        margin: 40px auto;
        padding: 0;
        text-align: left;
        border-top: #fff 1px solid;
    }

    #company_top #society .content1 ul.sub_link li {
        padding: 15px 40px 15px 15px;
        border-bottom: #fff 1px solid;
    }

    #company_top #society .content1 ul.sub_link li a {
        display: block;
    }

    #company_top #society .content1 ul.sub_link a.arrow_link:after {
        top: 35%;
        right: -20px;
    }

    #company_top #society .content1 ul.sub_link.small_ver {
        width: 100%;
        max-width: 100%;
        margin: 20px auto 40px;
    }

    #company_top #society .content1 ul.sub_link.small_ver li {
        padding: 15px 40px 10px 15px;
    }


    #company_top .content2 .long_baner p,
    #company_top .half_baner p,
    #company_top .half_baner:nth-child(2) p {
        padding: 0 0 0 calc(50/ var(--spWidth) * 100vw);
    }

    #company_top .content1 .long_baner p {
        padding: 0 0 0 calc(50/ var(--spWidth) * 100vw);
    }

    /* ------------------バナーエリア------------------- */
    #company_top .banner_area {
        width: 100%;
    }

    /* ------------------企業情報------------------- */
    #company_top #about .company_tit {
        margin: 30px auto 20px;
    }

    /* ------------------社会・環境------------------- */
    #company_top #society {
        padding: 0 0 50px;
    }

    /* ------------------決算・IR情報------------------- */
    #company_top #ir {
        padding: 110px 0;
        margin: 0 auto 50px;
    }

    #company_top #ir .company_tit {
        border-left: #E50012 4px solid;
        margin: 0 auto 20px;
    }

    #company_top #ir .ir_titlearea {
        width: 65%;
        margin: 0 0 0 auto;
    }

    #company_top #ir .txt_link {
        margin: 30px auto 0;
    }

    /* ------------------採用情報------------------- */
    #company_top #careers {
        margin: 100px auto 80px;
    }

    #company_top #careers li a {
        flex-direction: row-reverse;
        align-items: center;
    }

    #company_top #careers ul.banner_2col li:nth-child(1) a p,
    #company_top #careers ul.banner_2col li:nth-child(2) a p,
    #company_top #careers ul.banner_2col li:nth-child(3) a p,
    #company_top #careers ul.banner_2col li:nth-child(4) a p {
        padding: 0 0 0 calc(50/ var(--spWidth) * 100vw);
    }

    #company_top ul.recruit_banner_2col li a p {
        left: 0;
        right: 0;
        text-align: center;
    }

    /* ------------------お知らせ------------------- */

    #news .news_section {
        text-align: center;
        margin: 0 auto 30px;
    }

    #news .news_section p {
        font-size: calc(38 / var(--spWidth)* 100vw);
        letter-spacing: 0;
        padding: 0 0 8px 0;
        line-height: 1.2rem;
    }

    #news .news_section h2 {
        font-size: calc(80 / var(--spWidth)* 100vw);
        line-height: 2.0rem;
    }


    /* ---１つボタン--- */
    #product_top .button_area.one {
        width: 100%;
        margin: 0 auto;
    }

    /* ---２つボタン--- */
    #product_top .button_area.two {
        width: 100%;
        margin: 0 auto;
    }

}