@charset "utf-8";
html{
    overflow-x: hidden;
}
a{
    transition: all .3s;
}
a:hover{
    opacity: 0.7;
}
img{
    -webkit-backface-visibility: hidden;
    width: 100%;
    object-fit: cover;
}
body{
    overflow-x: hidden;
    min-width: 1000px;
    position: relative;
}
@media screen and (max-width:519px) {
    body{
        min-width: unset;
    }
}
/* hide */
.hide_frombottom{
    opacity: 0;
    transform: translate(0, 100px);
    transition: all .5s ease;
}
.hide_fromtop{
    transform: translate(0, -100px);
}
.hide_fromright{
    transform: translate(100px, 0);
}
.hide_fromleft{
    transform: translate(-100px, 0);
}
.js-fade{
    opacity: 1;
    transform: translate(0, 0px);
}
@media screen and (min-width:520px) {
    .pc{display: block;}
    .sp{display: none !important;}
}

@media screen and (max-width:519px) {
    .pc{display: none !important;}
    .sp{display: block;}
}

.fade-layer,
body:before{
    content: '';
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#fff;
    z-index:99999;
}
body.fade-layer-off:before{
    content: none;
}

/* common */
.hover_circle_btn{
    transition: all .3s;
    width: 38px;
    height: 38px;
    border: solid 1px #000;
    border-radius: 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}
.hover_circle_btn .icon_arrow_bk{
    width: 6px;
    position: absolute;
}
.hover_circle_btn .icon_arrow_w{
    width: 6px;
    position: absolute;
    opacity: 0;
}
.hover_circle_btn:hover{
    width: 60px;
    height: 60px;
    background: #000;
    opacity: 1;
    border-radius: 30px;
    margin: 0px;
}
.hover_circle_btn:hover .icon_arrow_bk{
    opacity: 0;
}
.hover_circle_btn:hover .icon_arrow_w{
    opacity: 1;
}

/* main */
.main_wrapper{
    position: relative;
    margin-bottom: 25px;
    min-height: 550px;
}
.main{

}
/* header */
.header{
    position: fixed;
    width: calc(100% - 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 40px 0 40px;
    z-index: 10;
    min-width: 920px;
}
#header_w.hide{
    display: none;
}
#header.header{
    padding: 18px 40px 15px 40px;
    min-width: 920px;
}
.fixed_header{
    background: #000;
}
#header.UpMovefirst{
    opacity: 0;
    transform: translateY(-100px);
}
#header.UpMove{
    position: fixed;
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

#header.DownMove{
    position: fixed;
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.header_left a{
    width: 200px;
    display: flex;
}
.header_left a h1{
    display: flex;
    width: 100%;
}
.header_right_menu_ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header_right_menu_ul li{
    margin-right: 30px;
    position: relative;
}
.header_right_menu_ul li:last-child{
    margin-right: 0px;
}
.header_right_menu_ul li a,.header_right_menu_ul li span{
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all .3s;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.35));
}
.header_right_menu_ul li span:hover{
    opacity: 0.7;
}
.submenu_btn{
    position: relative;
    padding-right: 12px;
}
.submenu_btn::after{
    content: "";
    background-image: url(../images/icon_set01_wtobk.svg);
    background-repeat: no-repeat;
    background-position: top center;
    width: 8px;
    height: 8px;
    position: absolute;
    display: flex;
    background-size: cover;
    top: calc(50% - 3px);
    right: 0px;
}
#header .submenu_btn::after{
    background-image: url(../images/icon_set01_w.svg);
}
.header_right_menu_ul li.active span{
    color: #000;
    opacity: 1;
}
#header .header_right_menu_ul li.active span{
    color: #fff;
    opacity: 0.7;
}
.active .submenu_btn::after{
    background-position: bottom center;
}
.header_right_menu_ul li .submanu_wrapper{
    display: none;
    position: absolute;
    width: max-content;
    left: 0px;
}
#header .header_right_menu_ul li .submanu_wrapper{
    display: none;
    position: absolute;
    width: max-content;
    left: -30px;
    background: #000;
    padding: 0 30px 30px;
}
.header_right_menu_ul li .submanu_inner{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 0 0 20px;
    border-left: solid 1px #fff;
    margin-top: 20px;
}
.header_right_menu_ul li .submanu_inner a{
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 100%;
}
.header_right_menu_ul li .submanu_inner a:last-child{
    margin-bottom: 0px;
}
.header_right_menu_ul li .submanu_inner a span{
    font-weight: 300;
    margin-right: 10px;
    color: #fff;
}
.header_right_menu_ul li .submanu_blk{
    margin-bottom: 15px;
    display: flex;
    justify-content: flex-start;
}
.header_right_menu_ul li .submanu_blk a{
    margin-bottom: 0px;
    margin-right: 15px;
}

@media screen and (max-width:519px) {
    .header{
        padding: 15px 15px 0 15px;
        width: calc(100% - 30px);
        min-width: unset;
    }
    /* header */
    .header_sp{
        position: fixed;
        width: calc(100% - 80px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 40px 40px 0 40px;
        z-index: 10;
    }
    #header_sp.header_sp{
        padding: 0;
        width: 100vw;
    }
    .header_sp.fixed_header{
        background: transparent;
    }
    #header_sp.UpMovefirst{
        opacity: 0;
    }
    #header_sp.UpMove{
        position: fixed;
        animation: UpAnime_sp 0.5s forwards;
    }
    @keyframes UpAnime_sp{
        from {
            opacity: 1;
        }
        to {
            opacity: 0;
        }
    }
    #header_sp.DownMove{
        position: fixed;
        animation: DownAnime_sp 0.5s forwards;
    }
    @keyframes DownAnime_sp{
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    .header_left a{
        width: 125px;
    }
    .header_right_menu_ul.pc{
        display: none;
    }
    .header_right_spbtn{
        width: 40px;
        height: 40px;
    }
    .header_sp .header_right_spbtn{
        width: 40px;
        height: 40px;
        position: absolute;
        top: 15px;
        right: 15px;
    }
    .gnav_sp{
        position:fixed;
        z-index: -1;
        opacity: 0;
        top:0;
        width:100%;
        height: 100vh;
        background:#fff;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .gnav_sp.panelactive{
        opacity: 1;
        z-index:999;
      }
    .gnav_sp_menu_ul{
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 50px;
    }
    .gnav_sp_menu_ul li{
        position: relative;
    }
    .gnav_sp_menu_ul li a,.gnav_sp_menu_ul li span{
        font-size: 1.6rem;
        font-weight: 500;
        color: #000;
    }
    .gnav_sp_menu_ul .submenu_btn{
        position: relative;
    }
    .gnav_sp_menu_ul .submenu_btn::after{
        display: none;
    }
    .gnav_sp_menu_ul li.active span{
        color: #000;
        opacity: 1;
    }
    .gnav_sp_menu_ul li .submanu_inner{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 0 0 20px;
        border-left: solid 1px #000;
        margin-top: 20px;
    }
    .gnav_sp_menu_ul li .submanu_inner a{
        color: #000;
        font-weight: 500;
        margin-bottom: 15px;
        line-height: 100%;
    }
    .gnav_sp_menu_ul li .submanu_inner a:last-child{
        margin-bottom: 0px;
    }
    .gnav_sp_menu_ul li .submanu_inner a span{
        font-weight: 300;
        margin-right: 10px;
        color: #000;
    }
    .gnav_sp_menu_ul li .submanu_blk{
        margin-bottom: 15px;
        display: flex;
        justify-content: flex-start;
    }
    .gnav_sp_menu_ul li .submanu_blk a{
        margin-bottom: 0px;
        margin-right: 15px;
    }
    .gnav_sp_bg{
        z-index: -1;
        height: 100vh;
        width: 100vw;
        position: absolute;
    }
    .gnav_sp_close{
        width: 40px;
        height: 40px;
        position: absolute;
        right: 15px;
        top: 15px;
    }
    .gnav_sp_menu_insta{
        width: 70%;
        margin-bottom: 70px;
    }
    .gnav_sp_menu_insta p{
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 100%;
        margin-bottom: 15px;
    }
    .gnav_sp_menu_contact{
        width: 70%;
    }
    .gnav_sp_menu_contact_btn{
        background: #000;
        width: 100%;
        padding: 20px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
    }
    .gnav_sp_menu_contactt_btn_inner{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .gnav_sp_menu_contactt_btn_inner span{
        width: 25px;
        margin-right: 15px;
    }
    .gnav_sp_menu_contactt_btn_inner p{
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 0px;
    }
}
.main_bg{
    z-index: 0;
    margin-bottom: 0px !important;
    min-height: 550px;
}
.main_bg li{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin: 0;
}
@media screen and (-webkit-min-device-pixel-ratio:2){
    .main_bg li{
        height: 90vh;
    }
}
.main_bg li img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.slick-slide img {
    transform-origin: center top;
    transform: scale(1.05);
    transition: 3s ease-out;
    transition-delay: 1s;
}
.slick-slide.slick-active img {
    transform: scale(1.0);
    transition-delay: 0s;
}
.slick-dots{
    height: auto;
    width: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    bottom: 30px;
    left: 40px;
}
.slick-dots li{
    height: auto;
    width: auto;
    padding: 0;
}
.slick-dots li button{
    opacity: 1;
    width: 8px;
    height: 8px;
    margin-right: 6px;
    cursor: pointer;
}
.slick-dots li button:before{
    content: "";
    width: 6px;
    height: 6px;
    background: transparent;
    border: solid 1px #FFF;
    opacity: 1;
}
.slick-dots li.slick-active button:before{
    content: "";
    width: 6px;
    height: 6px;
    background: #fff;
    border: solid 1px #FFF;
    opacity: 1;
}
.main_textwrapper{
    position: absolute;
    bottom: 100px;
    left: 80px;
    width: calc(100% - 80px);
}
.main_textwrapper_mainimg{
    width: 33%;
    max-width: 400px;
    display: flex;
    margin-bottom: 70px;
}
@media screen and (max-height:650px) {
    .main_textwrapper_mainimg {
        margin-bottom: 40px;
        width: 28%;
    }
}
.main_textwrapper h2{
    color: #fff;
    font-size: 2.9rem;
    line-height: 100%;
    margin-bottom: 23px;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.4));
}
.main_textwrapper p{
    color: #fff;
    font-size: 1.8rem;
    line-height: 165%;
    filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.4));
}
.main_scroll_iconwrapper{
    position: absolute;
    bottom: 30px;
    right: 30px;
}
.main_scroll_icon{
    width: 42px;
    display: flex;
    position: relative;
}
.main_scroll_icon::after{
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 40px;
	background: #fff;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
    left: calc(50% - 1px);
}
@keyframes pathmove{
	0%{
		height:0;
		top: 10px;
		opacity: 0;
	}
	30%{
		height: 22px;
		opacity: 1;
	}
	100%{
		height:0;
		top: 44px;
		opacity: 1;
	}
}
@media screen and (max-width:519px) {
    .main_bg li{
        height: 90vh;
    }
    .slick-dots{
        bottom: 10px;
        left: 10px;
    }
    .slick-dots li{
        height: auto;
    }
    .main_textwrapper{
        left: 8%;
        width: 84%;
        bottom: 80px;
    }
    .main_textwrapper_mainimg{
        width: 95%;
        margin-bottom: 40px;
    }
    .main_textwrapper h2{
        font-size: 2.2rem;
        margin-bottom: 15px;
        letter-spacing: 0;
    }
    .main_textwrapper p{
        font-size: 1.4rem;
        letter-spacing: 0;
    }
    .main_scroll_iconwrapper{
        bottom: 10px;
        right: 10px;
    }
    .main_scroll_icon{
        width: 38px;
    }
    @keyframes pathmove{
        0%{
            height:0;
            top: 10px;
            opacity: 0;
        }
        30%{
            height: 20px;
            opacity: 1;
        }
        100%{
            height:0;
            top: 40px;
            opacity: 1;
        }
    }
}
/* top_mainimg */
.top_mainimg_wrapper{
    height: calc(100vh + 1600px);
    overflow: hidden;
    position: relative;
    min-width: 1000px;
}
.top_mainimg{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    min-height: 550px;
}
.top_mainimg_bg{
    position: absolute;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    z-index: -1;
}
.top_mainimg_bg img{
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 100vh;
}
.top_mainimg_inner{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.top_mainimg_innercont{
    width: 368px;
    height: 356px;
    position: relative;
    z-index: 3;
}
.top_mainimg_innercont span{
    width: 125px;
    height: 125px;
    position: absolute;
}
.top_mainimg_innercont .top_main_innercont_01{
    left: calc(50% - 62.5px);
    top: 0px;
}
.top_mainimg_innercont .top_main_innercont_02{
    left: 0px;
    top: 90px;
}
.top_mainimg_innercont .top_main_innercont_03{
    right: 0px;
    top: 90px;
}
.top_mainimg_innercont .top_main_innercont_04{
    bottom: 0px;
    left: 47px;
}
.top_mainimg_innercont .top_main_innercont_05{
    bottom: 0px;
    right: 47px;
}
.top_mainimg_innerline{
    width: 250px;
    height: 238px;
    position: absolute;
    overflow: hidden;
    top: calc(50% - 125px);
    left: calc(50% - 119px);
    z-index: 2;
}
.top_mainimg_innerline span{
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
}
#top_mainimg_innerline01 .cls-1{
    stroke-dasharray:1600px;
    animation: all 5s infinite;
}
#top_mainimg_innerline02 .cls-2{
    stroke-dasharray:1600px;
    animation: all 5s infinite;
}
.top_mainimg_w_bg{
    background: #fff;
    height: 90vh;
    position: absolute;
    width: 100%;
}
.top_mainimg_innercircle{
    width: 520px;
    height: 508px;
    top: calc(50% - 254px);
    left: calc(50% - 260px);
    position: absolute;
    mix-blend-mode: multiply;
    z-index: 1;
}
.top_mainimg_innercircle span{
    width: 270px;
    height: 270px;
    display: flex;
    position: absolute;
    mix-blend-mode: multiply;
}
.top_mainimg_innercircle01{
    top: 0px;
    left: calc(50% - 135px);
}
.top_mainimg_innercircle02{
    left: 0px;
    top: 92px;
}
.top_mainimg_innercircle03{
    right: 0px;
    top: 92px;
}
.top_mainimg_innercircle04{
    bottom: 0px;
    left: 48px;
}
.top_mainimg_innercircle05{
    bottom: 0px;
    right: 48px;
}
.top_mainimg_innertxt{
    width: 123px;
    height: 104px;
    position: absolute;
    top: calc(50% - 40px);
    left: calc(50% - 61.5px);
    z-index: 4;
}
.top_mainimg_innertxt span{
    width: 123px;
    height: 104px;
    display: flex;
}
.top_mainimg_txtcont{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
}
.top_mainimg_txtcont_maintxt{
    width: 18vw;
    display: flex;
    position: absolute;
    top: calc(10vh + 50px);
    right: 60px;
}
.top_mainimg_txtcont_ttl{
    width: auto;
    position: absolute;
    top: calc(10vh + 100px);
    left: 70px;
}
.top_mainimg_txtcont_ttl h2{
    font-size: 4.2rem;
    font-weight: 700;
}
.top_mainimg_txtcont_txt{
    width: auto;
    position: absolute;
    bottom: 70px;
    left: 70px;
}
.top_mainimg_txtcont_txt h3{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 25px;
}
.top_mainimg_txtcont_txt p{
    font-size: 1.8rem;
    line-height: 185%;
}
.top_mainimg_txtcont_btn{
    position: absolute;
    bottom: 50px;
    right: 50px;
}
@media screen and (max-width:1479px) {
    .top_mainimg_innercont,.top_mainimg_innerline,.top_mainimg_innercircle,.top_mainimg_innertxt{
        scale: 0.95;
    }
}
@media screen and (max-width:1179px) {
    .top_mainimg_innercont,.top_mainimg_innerline,.top_mainimg_innercircle,.top_mainimg_innertxt{
        scale: 0.9;
    }
}
@media screen and (min-height:1479px) {
    .top_mainimg_innercont,.top_mainimg_innerline,.top_mainimg_innercircle,.top_mainimg_innertxt{
        scale: 0.95;
    }
}
@media screen and (min-height:1179px) {
    .top_mainimg_innercont,.top_mainimg_innerline,.top_mainimg_innercircle,.top_mainimg_innertxt{
        scale: 0.9;
    }
}
@media screen and (max-height:650px) {
    .top_mainimg_innercont,.top_mainimg_innerline,.top_mainimg_innercircle,.top_mainimg_innertxt{
        scale: 0.7;
    }
    .top_mainimg_txtcont_ttl{
        left: 50px;
    }
    .top_mainimg_txtcont_txt{
        bottom: 40px;
        left: 50px;
    }
    .top_mainimg_txtcont_txt p {
        font-size: 1.6rem;
    }
}
@media screen and (max-width:519px) {
    .top_mainimg_innercont{
        width: 222px;
        height: 215px;
        top: calc(46% - 107.5px);
        position: absolute;
    }
    .top_mainimg_innercont span{
        width: 80px;
        height: 80px;
    }
    .top_mainimg_innercont .top_main_innercont_01{
        left: calc(50% - 40px);
    }
    .top_mainimg_innercont .top_main_innercont_02{
        top: 50px;
    }
    .top_mainimg_innercont .top_main_innercont_03{
        top: 50px;
    }
    .top_mainimg_innercont .top_main_innercont_04{
        left: 28px;
    }
    .top_mainimg_innercont .top_main_innercont_05{
        right: 28px;
    }
    .top_mainimg_innerline{
        width: 142px;
        height: 135px;
        top: calc(46% - 67.5px);
        left: calc(50% - 71px);
    }
    .top_mainimg_innercircle{
        width: 296px;
        height: 290px;
        top: calc(46% - 145px);
        left: calc(50% - 148px);
    }
    .top_mainimg_innercircle span{
        width: 152px;
        height: 152px;
    }
    .top_mainimg_innercircle01{
        left: calc(50% - 76px);
    }
    .top_mainimg_innercircle02{
        top: 50px;
    }
    .top_mainimg_innercircle03{
        top: 50px;
    }
    .top_mainimg_innercircle04{
        left: 28px;
    }
    .top_mainimg_innercircle05{
        right: 28px;
    }
    .top_mainimg_innertxt{
        width: 67px;
        height: 54px;
        top: calc(47% - 27px);
        left: calc(50% - 33.5px);
    }
    .top_mainimg_innertxt span{
        width: 67px;
        height: 54px;
    }
    .top_mainimg_txtcont_maintxt{
        width: 23vw;
        top: 60px;
        right: 20px;
    }
    .top_mainimg_txtcont_ttl{
        width: 100%;
        top: calc(5vh + 80px);
        left: 6%;
    }
    .top_mainimg_txtcont_ttl h2{
        font-size: 2.8rem;
    }
    .top_mainimg_txtcont_txt{
        width: 88%;
        left: 6%;
        bottom: 20px;
    }
    .top_mainimg_txtcont_txt h3{
        line-height: 120%;
        margin-bottom: 10px;
    }
    .top_mainimg_txtcont_txt p{
        font-size: 1.3rem;
    }
    .top_mainimg_txtcont_btn{
        bottom: 10px;
        right: calc(6% - 10px);
    }
}
/* top_spacer */
.top_spacer{
    padding: 50px 0 180px 0;
    margin-top: -2px;
    background-color: #fff;
}
.top_spacer_inner{
    width: 1000px;
    margin: 0 auto;
}
.top_spacer_inner_line{
    background: #000;
    width: 1px;
    height: 300px;
    display: block;
    margin: 0 auto;
}
@media screen and (max-width:519px) {
    .top_spacer{
        padding: 80px 0 100px 0;
    }
    .top_spacer_inner{
        width: 100%;
    }
    .top_spacer_inner_line{
        height: 150px;
    }
}
/* top_business_blk_wrapper */
.top_business_blk_wrapper{
    width: 100%;
    margin: 0 auto 200px;
    max-width: 1400px;
}
.top_business_blk_wrapper a{
    display: flex;
    position: relative;
}
.top_business_blk_wrapper.top_business_blk_wrapper_even a{
    flex-direction: row-reverse;
}
.top_business_blk_wrapper a:hover{
    opacity: 1;
}
.top_business_blk_bg{
    position: absolute;
    width: 800px;
    height: 530px;
    display: flex;
    right: 0px;
    top: 0px;
}
.top_business_blk_wrapper.top_business_blk_wrapper_even .top_business_blk_bg{
    left: 0px;
}
.top_business_blk_bg img{
    position: absolute;
    transition: all .3s;
}
.top_business_blk_bg img.hover{
    opacity: 0;
}
.top_business_blk_wrapper a:hover .top_business_blk_bg img.hover{
    opacity: 1;
}
.top_business_blk_inner{
    width: calc(100% - 800px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.top_business_blk_inner_upper{
    position: relative;
    padding-bottom: 70px;
    margin-bottom: 20px;
    width: 80%;
}
.top_business_blk_inner_upper__p{
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.top_business_blk_inner_upper__p span{
    font-weight: 700;
    margin-right: 10px;
}
.top_business_blk_inner_upper h2{
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 130%;
}
.top_business_blk_inner_upper_link{
    position: absolute;
    bottom: 0px;
    left: 10px;
    transition: all .3s;
}
.top_business_blk_wrapper a:hover .top_business_blk_inner_upper_link{
    bottom: -10px;
    left: 0px;
}
.top_business_blk_wrapper a:hover .hover_circle_btn{
    width: 60px;
    height: 60px;
    background: #000;
    opacity: 1;
    border-radius: 30px;
    margin: 10px;
}
.top_business_blk_wrapper a:hover .icon_arrow_bk{
    opacity: 0;
}
.top_business_blk_wrapper a:hover .icon_arrow_w{
    opacity: 1;
}
.top_business_blk_inner_lower{
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: center;
}
.top_business_blk_inner_lower h3{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 2.2rem;
    line-height: 165%;
    font-weight: 600;
}
.top_business_blk_inner_lower p{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 1.5rem;
    line-height: 250%;
    padding: 80px 40px 0 0;
    white-space: nowrap;
    font-weight: 600;
}
@media screen and (max-width:1339px) {
    .top_business_blk_bg{
        width: 700px;
        height: 463px;
    }
    .top_business_blk_inner{
        width: calc(100% - 700px);
    }
}
@media screen and (max-width:1179px) {
    .top_business_blk_bg{
        width: 600px;
        height: 463px;
    }
    .top_business_blk_inner{
        width: calc(100% - 600px);
    }
}
@media screen and (max-width:519px) {
    .top_business_blk_wrapper{
        width: 92%;
        margin: 0 auto 100px;
    }
    .top_business_blk_wrapper a{
        flex-direction: column;
    }
    .top_business_blk_wrapper.top_business_blk_wrapper_even a{
        position: relative;
        width: 100%;
        height: auto;
        flex-direction: column;
    }
    .top_business_blk_bg{
        width: 100%;
        position: relative;
        height: auto;
        margin-bottom: 30px;
    }
    .top_business_blk_bg img{
        position: relative;
    }
    .top_business_blk_bg img.hover{
        display: none;
    }
    .top_business_blk_inner{
        width: 100%;
    }
    .top_business_blk_inner_upper{
        width: 90%;
        margin: 0 auto;
        padding-bottom: 30px;
    }
    .top_business_blk_inner_upper__p{
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    .top_business_blk_inner_upper h2{
        font-size: 2.8rem;
    }
    .top_business_blk_inner_upper_link{
        bottom: -20px;
    }
    .top_business_blk_inner_lower{
        padding-bottom: 50px;
    }
}
/* top_middleimg */
.top_middleimg{
    width: 100%;
    display: flex;
    margin-bottom: 200px;
}
@media screen and (max-width:519px) {
    .top_middleimg{
        margin-bottom: 80px;
    }
}

/* insta_list_wrapper */
.insta_list_wrapper{
    margin-bottom: 200px;
}
.insta_list_wrapper_header{
    width: 1000px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.insta_list_wrapper_header_left h2{
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 165%;
    margin-bottom: 20px;
}
.insta_list_wrapper_header_left p{
    font-size: 1.8rem;
    line-height: 100%;
}
.insta_list_wrapper_header_right a{
    width: 238px;
    margin-right: 30px;
    display: inline-block;
}
.insta_list_wrapper_header_right{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.insta_list_inner{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.insta_list_wrapper_header_right_button{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.insta_list_wrapper_header_right_button .insta_scrollbutton{
    transition: all .3s;
    width: 30px;
    height: 30px;
    border: solid 1px #000;
    border-radius: 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.insta_list_wrapper_header_right_button .insta_scrollbutton.leftbutton{
    margin-right: 10px;
}
.insta_list_wrapper_header_right_button .insta_scrollbutton img{
    width: 6px;
    position: absolute;
}
.insta_list_wrapper_header_right_button .insta_scrollbutton .icon_arrow_w{
    opacity: 0;
}
.insta_list_wrapper_header_right_button .insta_scrollbutton:hover{
    background: #000;
}
.insta_list_wrapper_header_right_button .insta_scrollbutton:hover .icon_arrow_bk{
    opacity: 0;
}
.insta_list_wrapper_header_right_button .insta_scrollbutton:hover .icon_arrow_w{
    opacity: 1;
}
.insta_list{
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    cursor: pointer;
    scrollbar-width: none;
}
.insta_list li{
    width: 250px;
    height: 250px;
    display: inline-block;
    overflow: hidden;
    margin-left: 100px;
}
.insta_list li a img{
    min-height: 100%;
}
.insta_list::-webkit-scrollbar {
    display: none;
    height: 0 !important;
}
@media screen and (max-width:519px) {
    .insta_list_wrapper{
        margin-bottom: 100px;
    }
    .insta_list_wrapper_header{
        width: 84%;
        flex-direction: column;
        align-items: flex-start;
    }
    .insta_list_wrapper_header_left h2{
        font-size: 2.8rem;
        margin-bottom: 35px;
    }
    .insta_list_wrapper_header_left p{
        margin-bottom: 20px;
    }
    .insta_list li{
        width: 150px;
        height: 150px;
        margin-left: 40px;
    }
    .insta_list_wrapper_header_right{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .insta_list_wrapper_header_right a{
        margin-right: 0px;
        width: calc(100% - 94px);
    }
    .insta_list_wrapper_header_right_button{
        width: 74px;
    }
}
/*  footer_cv_wrapper  */
.footer_cv_wrapper{
    background: #000;
    padding: 100px 0;
}
.footer_cv_banner{
    width: 1000px;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
    height: 130px;
    display: flex;
}
.footer_cv_inner a:last-child{
    margin: 0 auto;
}
.footer_cv_banner:hover{
    opacity: 1;
}
.footer_cv_banner_left{
    background: #fff;
    width: 400px;
    position: relative;
    z-index: 1;
}
.footer_cv_banner_left_logo{
    position: absolute;
    display: flex;
    left: 40px;
}
.footer_cv_banner_left_logo_shiraishi{
    width: 200px;
    top: calc(50% - 17.5px);
}
.footer_cv_banner_left_logo_tablemother{
    width: 175px;
    top: calc(50% - 7.5px);
}
.footer_cv_banner_left_logo_basho{
    width: 127px;
    top: calc(50% - 40px);
}
.footer_cv_banner_left_rakutenlogo{
    position: absolute;
    display: flex;
    right: 20px;
    width: 82px;
    top: calc(50% - 16px);
}
.footer_cv_banner_left_link{
    position: absolute;
    top: calc(50% - 30px);
    right: -60px;
    z-index: 1;
}
.footer_cv_banner:hover .hover_circle_btn{
    margin: 0;
}
.footer_cv_banner:hover .hover_circle_btn{
    width: 60px;
    height: 60px;
    background: #000;
    opacity: 1;
    border-radius: 30px;
}
.footer_cv_banner:hover .icon_arrow_bk{
    opacity: 0;
}
.footer_cv_banner:hover .icon_arrow_w{
    opacity: 1;
}
.footer_cv_banner_left_triangle{
    position: absolute;
    height: 130px;
    width: 60px;
    right: -60px;
    top: 0px;
}
.footer_cv_banner_right{
    position: absolute;
    width: 600px;
    height: 130px;
    right: 0px;
    top: 0px;
}
.footer_cv_banner_right img{
    transition: all .3s;
}
.footer_cv_banner:hover .footer_cv_banner_right img{
    scale: 1.1;
}
@media screen and (max-width:519px) {
    .footer_cv_wrapper{
        padding: 50px 0;
    }
    .footer_cv_inner{
        width: 84%;
        margin: 0 auto;
    }
    .footer_cv_banner{
        width: 100%;
        height: 80px;
        margin: 0 auto 20px;
    }
    .footer_cv_banner_left{
        width: 45%;
    }
    .footer_cv_banner_left_logo{
        left: 15px;
    }
    .footer_cv_banner_left_logo_shiraishi{
        width: 90px;
        top: calc(50% - 4.5px);
    }
    .footer_cv_banner_left_logo_tablemother{
        width: 80px;
        top: calc(50% - 2px);
    }
    .footer_cv_banner_left_logo_basho{
        width: 55px;
        top: calc(50% - 17px);
    }
    .footer_cv_banner_left_rakutenlogo{
        width: 43px;
        top: calc(50% - 7px);
        right: 5px;
    }
    .footer_cv_banner_left_link{
        top: calc(50% - 20px);
        right: -40px;
    }
    .footer_cv_banner_left_link .hover_circle_btn{
        width: 20px;
        height: 20px;
    }
    .footer_cv_banner:hover .hover_circle_btn{
        width: 30px;
        height: 30px;
        border-radius: 30px;
        margin: 5px !important;
    }
    .footer_cv_banner_right{
        width: 55%;
        height: 80px;
    }
    .footer_cv_banner_right img{
        height: 100%;
    }
}
/* footer */
footer{
    display: flex;
    flex-direction: row-reverse;
    width: calc(100% - 100px);
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
    padding: 100px 0 35px;
    position: relative;
}
.footer_link{
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: flex-start;
}
.footer_contact h3{
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 15px;
}
.footer_contact h3 span{
    font-size: 1.8rem;
    margin-left: 20px;
}
.footer_contact p{
    font-size: 1.6rem;
    line-height: 155%;
    margin-bottom: 25px;
}
.footer_contact_btn{
    background: #000;
    width: 365px;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
.footer_contact_btn_inner{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_contact_btn_inner span{
    width: 25px;
    margin-right: 15px;
}
.footer_contact_btn_inner p{
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0px;
}
.footer_sitemap{
    margin-right: 70px;
}
.footer_sitemap a,.footer_sitemap span{
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 15px;
    display: flex;
}
.footer_sitemap_inner{
    display: flex;
    flex-direction: column;
    padding: 0 0 0 20px;
    border-left: solid 1px #000;
    margin-bottom: 30px;
}
.footer_sitemap_inner a{
    margin-bottom: 12px;
}
.footer_sitemap_inner a:last-child{
    margin-bottom: 0px;
}
.footer_sitemap_inner a span{
    margin-right: 10px;
    width: 20px;
    font-weight: 400;
    margin-bottom: 0px;
}
.footer_sitemap_inner_box{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 12px;
}
.footer_sitemap_inner_box a{
    margin-bottom: 0px;
    margin-right: 20px;
}
.footer_sitemap_inner_box_2{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.footer_sitemap_inner_box_2 a{
    margin-bottom: 0px;
    margin-right: 30px;
}
.footer_insta_icon{
    width: 17px;
}
.footer_company{
    padding: 100px 0 0 0;
}
.footer_company_logo{
    width: 300px;
    display: flex;
    margin-bottom: 120px;
}
.footer_company p{
    font-size: 1.6rem;
    line-height: 145%;
    margin-bottom: 10px;
}
.footer_company p:last-child{
    margin-bottom: 0px;
}
.footer_copyright{
    position: absolute;
    bottom: 35px;
    right: 0px;
}
.footer_copyright p{
    font-size: 1.4rem;
}
.footer_topbtn{
    position: absolute;
    width: 70px;
    display: flex;
    bottom: 35px;
    left: calc(50% - 35px);
    cursor: pointer;
    transition: all .3s;
}
.footer_topbtn:hover{
    opacity: 0.7;
}
@media screen and (max-width:1179px) {
    .footer_company_logo{
        width: 240px;
    }
    .footer_sitemap a,.footer_sitemap span{
        font-size: 1.3rem;
    }
    .footer_contact h3{
        font-size: 3.6rem;
    }
    .footer_contact p{
        font-size: 1.4rem;
    }
    .footer_contact_btn{
        width: 310px;
    }
}
@media screen and (max-width:519px) {
    footer{
        width: 84%;
        flex-direction: column;
        padding: 50px 0 35px;
    }
    .footer_link{
        flex-direction: column;
        width: 100%;
    }
    .footer_contact{
        width: 100%;
        margin-bottom: 65px;
    }
    .footer_contact h3{
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    .footer_contact h3 span{
        font-size: 1.4rem;
    }
    .footer_contact p{
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    .footer_contact_btn{
        width: 100%;
        padding: 23px 0;
    }
    .footer_contact_btn_inner p{
        margin-bottom: 0px;
    }
    .footer_sitemap{
        margin-right: 0px;
        width: 100%;
    }
    .footer_sitemap_inner_box_2 a{
        margin-bottom: 40px;
    }
    .footer_company{
        width: 100%;
        margin-bottom: 25px;
        padding: 50px 0 0 0;
    }
    .footer_company_logo{
        width: 200px;
        margin-bottom: 40px;
    }
    .footer_copyright{
        position: relative;
        bottom: 0px;
    }
    .footer_copyright p{
        font-size: 1.2rem;
    }
    .footer_topbtn{
        display: none;
    }
}

/* business */
.business_main{
    position: relative;
}
.business_main_ttlwrapper{
    position: absolute;
    z-index: 1;
    width: 47.5%;
    left: calc(50% - 23.75%);
    top: 82.5%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
}
.business_main_ttlblk{
    width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.business_main_ttlblk_inner h1{
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    margin-bottom: 15px;
}
.business_main_ttlblk_border{
    background: #000;
    height: 1px;
    width: 210px;
    margin: 0 auto 18px;
}
.business_main_ttlblk_inner a{
    color: #C8C8C8;
}
.business_main_ttlblk_inner a.active{
    color: #000;
    pointer-events: none;
    position: relative;
    padding-left: 12px;
}
.business_main_ttlblk_inner a.active::before{
    content: "";
    background-image: url(../images/icon_circle.svg);
    width: 6px;
    height: 6px;
    position: absolute;
    top: calc(50% - 3px);
    left: 0px;
}
.business_main_ttlblk_link_upper{
    display: flex;
    align-items: center;
    justify-content: center;
}
.business_main_ttlblk_link_upper a{
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
}
.business_main_ttlblk_link_upper a.active{
    padding-left: 12px;
}
.business_main_ttlblk_link_upper a.active::before{
    content: "";
    background-image: url(../images/icon_circle.svg);
    width: 6px;
    height: 6px;
    position: absolute;
    top: calc(50% - 3px);
    left: 0px;
}
.business_main_ttlblk_link_lower{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: auto;
}
.business_main_ttlblk_link_lower a{
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.business_main_ttlblk_link_lower span{
    font-weight: 300;
    margin-right: 8px;
}
@media screen and (max-width:519px) {
    .business_main_ttlwrapper{
        position: relative;
        width: 84%;
        left: unset;
        margin: 0 auto;
        top: unset;
        padding-top: 50px;
    }
    .business_main_ttlblk{
        width: 100%;
    }
    .business_main_ttlblk_inner h1{
        font-size: 3.2rem;
    }
    .business_main_ttlblk_inner a{
        display: none;
    }
    .business_main_ttlblk_inner a.active{
        display: flex !important;
    }
    .business_main_ttlblk_link_upper a::before{
        display: none;
        padding-left: 0px;
    }
    .business_main_ttlblk_link_upper a.active::before{
        opacity: 1;
    }
    .business_main_ttlblk_link_lower{
        align-items: center;
        justify-content: center;
    }
    .business_main_ttlblk_link_lower a{
        display: none;
    }
    .business_main_ttlblk_link_lower span{
        margin-right: 8px;
    }
}
/* business_top_message */
.business_top_message{
    padding-top: 250px;
    margin-bottom: 200px;
}
.business_top_message_inner{
    width: 1000px;
    margin: 0 auto;
}
.business_top_message_inner h2{
    font-size: 6rem;
    line-height: 100%;
    font-weight: 700;
    text-align: center;
    margin-bottom: 65px;
}
.business_top_message_inner h2 .pc{
    display: inline;
}
.business_top_message_inner p{
    text-align: center;
    font-size: 1.4rem;
    line-height: 225%;
    margin-bottom: 90px;
}
.business_top_message_inner_bar{
    margin: 0 auto 100px;
    width: 1px;
    height: 150px;
    background: #000;
}
.business_top_message_inner_img{
    width: 680px;
    margin: 0 auto 100px;
}
.business_top_message_inner_subtxt{
    text-align: center;
    font-size: 1.4rem;
    line-height: 200%;
}
@media screen and (max-width:519px) {
    .business_top_message{
        padding-top: 80px;
        margin-bottom: 100px;
    }
    .business_top_message_inner{
        width: 84%;
    }
    .business_top_message_inner h2{
        font-size: 4.2rem;
        margin-bottom: 25px;
    }
    .business_top_message_inner p{
        font-size: 1.4rem;
        margin-bottom: 40px;
    }
    .business_top_message_inner_bar{
        margin: 0 auto 50px;
    }
    .business_top_message_inner_img{
        width: 90%;
        margin: 0 auto 50px;
    }
    .business_top_message_inner_subtxt{
        font-size: 1.2rem !important;
        line-height: 185% !important;
    }
}
/* business_top_links */
.business_top_links_inner{
    width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 100px;
}
.business_top_links_inner_blk{
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin-right: 50px;
    margin-bottom: 100px;
}
.business_top_links_inner a:nth-child(3n){
    margin-right: 0px;
}
.business_top_links_inner a:last-child{
    margin-right: 0px;
}
.business_top_links_inner_blk:hover{
    opacity: 1;
}
.business_top_links_inner_blk__p01{
    font-size: 1.4rem;
    font-weight: 500;
    position: relative;
    line-height: 100%;
    margin-bottom: 27px;
}
.business_top_links_inner_blk__p01:after{
    content: "";
    width: 30px;
    height: 1px;
    background: #000;
    position: absolute;
    left: calc(50% - 15px);
    bottom: -15px;
}
.business_top_links_inner_blk__p01 span{
    font-weight: 300;
    margin-left: 10px;
}
.business_top_links_inner_blk__p02{
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 20px;
}
.business_top_links_inner_blk_img{
    position: relative;
    width: 300px;
    height: 200px;
}
.business_top_links_inner_blk_img img{
    position: absolute;
    top: 0px;
    left: 0px;
}
.business_top_links_inner_blk_img .before{
    opacity: 1;
    transition: all .3s;
}
.business_top_links_inner_blk_img .hover{
    opacity: 0;
    transition: all .3s;
}
.business_top_links_inner_blk:hover .business_top_links_inner_blk_img .before{
    opacity: 0;
}
.business_top_links_inner_blk:hover .business_top_links_inner_blk_img .hover{
    opacity: 1;
}
.business_top_links_inner_blk_btn{
    position: absolute;
    bottom: -30px;
    left: -30px;
}
.business_top_links_inner_blk:hover .hover_circle_btn{
    margin: 0;
}
.business_top_links_inner_blk:hover .hover_circle_btn{
    width: 60px;
    height: 60px;
    background: #000;
    opacity: 1;
    border-radius: 30px;
}
.business_top_links_inner_blk:hover .icon_arrow_bk{
    opacity: 0;
}
.business_top_links_inner_blk:hover .icon_arrow_w{
    opacity: 1;
}
.business_top_links_bar{
    margin: 0 auto;
    width: 1px;
    height: 150px;
    background: #000;
}
@media screen and (max-width:519px) {
    .business_top_links_inner{
        width: 84%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 0px;
    }
    .business_top_links_inner_blk{
        margin-right: 0px;
        margin-bottom: 50px;
    }
    .business_top_links_inner_blk_img .hover{
        display: none;
    }
    .business_top_links_inner_blk:hover .business_top_links_inner_blk_img .before{
        opacity: 1;
    }
    .business_top_links_inner_blk:hover .hover_circle_btn{
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 20px;
    }
    .business_top_links_inner_blk:hover .hover_circle_btn{
        margin: 10px;
    }
    .business_top_links_inner_blk:hover .icon_arrow_bk{
        opacity: 1;
    }
    .business_top_links_inner_blk:hover .icon_arrow_w{
        opacity: 0;
    }
}
/* company_message */
.company_message{
    padding-top: 200px;
    padding-bottom: 160px;
}
.company_message_inner{
    width: 1000px;
    margin: 0 auto;
}
.company_message_inner h2{
    font-size: 4.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 100%;
    margin-bottom: 95px;
}
.company_sec_title{
    border: solid 1px #000;
    width: calc(100% - 2px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    margin-bottom: 70px;
}
.company_sec_title p{
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.6em;
    line-height: 100%;
}
.company_message_inner_img{
    margin-bottom: 100px;
}
.company_message_inner_txt{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.company_message_inner_txt_left{
    width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.company_message_inner_txt_left p{
    font-size: 2.9rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-weight: 600;
}
.company_message_inner_txt_right{
    width: 580px;
    padding-top: 100px;
}
.company_message_inner_txt_right p{
    font-size: 1.6rem;
    line-height: 210%;
    margin-bottom: 55px;
}
.company_message_inner_txt_right .company_message_inner_txt_right_div__p01{
    font-size: 1.8rem;
    padding-top: 0px;
    line-height: 165%;
    margin-bottom: 10px;
}
.company_message_inner_txt_right .company_message_inner_txt_right_div__p02{
    font-size: 2.4rem;
    padding-top: 0px;
    margin-bottom: 0px;
}
@media screen and (max-width:519px) {
    .company_message{
        padding-top: 50px;
        padding-bottom: 100px;
    }
    .company_message_inner{
        width: 92%;
        margin: 0 auto;
    }
    .company_message_inner h2{
        font-size: 2.8rem;
        margin-bottom: 45px;
    }
    .company_sec_title{
        padding: 25px 0;
        margin-bottom: 30px;
    }
    .company_message_inner_img{
        margin-bottom: 60px;
    }
    .company_message_inner_txt{
        flex-direction: column;
        align-items: center;
    }
    .company_message_inner_txt_left p{
        font-size: 2.4rem;
        line-height: 185%;
    }
    .company_message_inner_txt_right{
        padding-top: 40px;
        width: 95%;
    }
}
/* company_profile */
.company_profile{
    background: #F0F0EB;
    padding: 140px 0;
}
.company_profile_inner{
    width: 1000px;
    margin: 0 auto;
}
.company_profile_inner_title{
    border: solid 1px #000;
    width: calc(100% - 2px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    margin-bottom: 70px;
}
.company_profile_inner_title p{
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.6em;
    line-height: 100%;
}
.company_profile_inner_sec{
    display: flex;
    justify-content: space-between;
}
.company_profile_inner_box{
    width: 450px;
}
.company_profile_inner_box_one{
    display: flex;
    justify-content: flex-start;
}
.company_profile_inner_box_left{
    width: 90px;
    position: relative;
    padding: 20px 0;
}
.company_profile_inner_box_left p{
    font-size: 1.4rem;
    line-height: 190%;
    text-align: center;
}
.company_profile_inner_box_left::before{
    content: "";
    width: 90px;
    height: 1px;
    background: #000000;
    position: absolute;
    top: 0px;
    left: 0px;
}
.company_profile_inner_box_right{
    width: 330px;
    position: relative;
    padding: 20px 0 20px 30px;
}
.company_profile_inner_box_right p{
    font-size: 1.6rem;
    line-height: 190%;
}
.company_profile_inner_box_right::before{
    content: "";
    width: 360px;
    height: 1px;
    background: #7D7D7D;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.5;
}
.company_profile_inner_box_one.last .company_profile_inner_box_left::after{
    content: "";
    width: 90px;
    height: 1px;
    background: #000000;
    position: absolute;
    bottom: 0px;
    left: 0px;
}
.company_profile_inner_box_one.last .company_profile_inner_box_right::after{
    content: "";
    width: 360px;
    height: 1px;
    background: #7D7D7D;
    position: absolute;
    bottom: 0px;
    left: 0px;
    opacity: 0.5;
}
@media screen and (max-width:519px) {
    .company_profile{
        padding: 100px 0;
    }
    .company_profile_inner{
        width: 92%;
        padding: 25px 0;
    }
    .company_profile_inner_sec{
        flex-direction: column;
    }
    .company_profile_inner_box{
        width: 96%;
        margin: 0 auto;
    }
    .company_profile_inner_box_right{
        width: calc(100% - 100px);
        position: relative;
        padding: 15px 0 15px 10px;
    }
    .company_profile_inner_box_right::before{
        width: 100%;
    }
    .company_profile_inner_box_one.last .company_profile_inner_box_left::after{
        content: none;
    }
    .company_profile_inner_box_one.last .company_profile_inner_box_right::after{
        content: none;
    }
    .company_profile_inner_box_one.splast .company_profile_inner_box_left::after{
        content: "";
        width: 90px;
        height: 1px;
        background: #000000;
        position: absolute;
        bottom: 0px;
        left: 0px;
    }
    .company_profile_inner_box_one.splast .company_profile_inner_box_right::after{
        content: "";
        width: 100%;
        height: 1px;
        background: #7D7D7D;
        position: absolute;
        bottom: 0px;
        left: 0px;
        opacity: 0.5;
    }
}
/* business_logosec */
.business_logosec{
    padding: 200px 0 130px;
}
.business_logoslider li{
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-left: 50px;
}
.business_logoslider li img{
    width: 100%;
}
.business_logoslider .s_logo_01{
    width: 235px;
    height: 73px;
}
.business_logoslider .s_logo_02{
    width: 212px;
    height: 73px;
}
.business_logoslider .s_logo_03{
    width: 172px;
    height: 73px;
}
.business_logoslider .s_logo_04{
    width: 244px;
    height: 73px;
}
.business_logoslider .s_logo_05{
    width: 67px;
    height: 73px;
}
.business_logoslider .s_logo_06{
    width: 73px;
    height: 73px;
}
.business_logoslider .s_logo_07{
    width: 71px;
    height: 73px;
}
@media screen and (max-width:519px) {
    .business_logosec{
        padding: 70px 0;
    }
}
.business_footer_menu{
    padding-bottom: 60px;
}
.business_footer_menu .business_main_ttlwrapper{
    position: relative;
    padding-top: 0px;
}
@media screen and (max-width:519px) {
    .business_footer_menu{
        display: none;
    }
}
/* project_message */
.project_message{
    padding-top: 225px;
    padding-bottom: 165px;
}
.project_message_inner{
    width: 1000px;
    margin: 0 auto;
}
.project_message_inner_ttl{
    border: solid 1px #000;
    width: calc(100% - 2px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    margin-bottom: 80px;
}
.project_message_inner_ttl h2{
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 100%;
}
.project_message_inner_txt{
    display: flex;
    justify-content: center;
}
.project_message_inner_txt_left{
    width: 60%;
    display: flex;
    justify-content: flex-end;
}
.project_message_inner_txt_left p{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    font-size: 1.5rem;
    line-height: 225%;
    padding: 80px 80px 0 0;
    height: 460px;
    display: inline-block;
}
.project_message_inner_txt_right{
    width: 40%;
    display: flex;
    justify-content: flex-start;
}
.project_message_inner_txt_right p{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    font-size: 2.4rem;
    line-height: 200%;
    font-weight: 600;
    height: 480px;
    display: inline-block;
}
@media screen and (max-width:519px) {
    .project_message{
        padding-top: 80px;
        padding-bottom: 100px;
    }
    .project_message_inner{
        width: 84%;
    }
    .project_message_inner_ttl{
        padding: 25px 0;
        margin-bottom: 70px;
    }
    .project_message_inner_ttl h2{
        font-size: 2.4rem;
        text-align: center;
        line-height: 125%;
    }
    .project_message_inner_txt{
        flex-direction: column-reverse;
        align-items: center;
    }
    .project_message_inner_txt_left{
        padding: 0;
        width: 100%;
    }
    .project_message_inner_txt_left p{
        -ms-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        letter-spacing: 0;
        font-size: 1.4rem;
        padding: 80px 0 0 0;
        width: 100%;
        height: auto;
    }
    .project_message_inner_txt_right{
        display: flex;
        align-content: center;
        justify-content: center;
    }
    .project_message_inner_txt_right p{
        margin-bottom: 0px;
        white-space: nowrap;
        height: auto;
    }
}
.project_cont{
    padding-bottom: 200px;
}
.project_cont_food{
    padding-bottom: 100px;
}
.project_cont_inner{
    width: 1000px;
    margin: 0 auto;
}
.project_cont_blk{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 200px;
}
.project_cont_blk.last{
    margin-bottom: 0px;
}
.project_cont_blk.project_cont_blk_even{
    flex-direction: row-reverse;
}
.project_cont_img{
    width: 700px;
    height: 500px;
}
.project_cont_img_big{
    height: 600px;
}
.project_cont_txt{
    width: 250px;
    height: 500px;
    position: relative;
}
.project_cont_txt_big{
    height: 600px;
}
.project_cont_txt_ul{
    position: absolute;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: row-reverse;
    top: 0px;
    left: 0px;
    width: 250px;
}
.project_cont_blk.project_cont_blk_even .project_cont_txt_ul{
    right: 0px;
    left: auto;
    justify-content: flex-start;
}
.project_cont_txt_ul li{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding-top: 15px;
    position: relative;
    font-size: 1.6rem;
    font-weight: 700;
    margin-right: 12px;
    line-height: 100%;
    letter-spacing: 0.2rem;
    line-height: 145%;
}
.project_cont_txt_ul li.txtupright{
    text-orientation: upright;
}
.project_cont_blk.project_cont_blk_even .project_cont_txt_ul li{
    margin-right: 0px;
    margin-left: 12px;
}
.project_cont_txt_ul li.logobefore{
    margin-left: 10px !important;
}
.project_cont_txt_ul li::before{
    content: "";
    position: absolute;
    background-image: url(../images/icon_arrow_under.svg);
    width: 5.5px;
    height: 5.5px;
    right: 9.5px;
    top: 0px;
}
.project_cont_txt__p{
    position: absolute;
    font-size: 1.4rem;
    line-height: 205%;
    bottom: 0px;
    right: 0px;
}
.project_cont_blk.project_cont_blk_even .project_cont_txt__p{
    right: auto;
    left: 0px;
    text-align: justify;
    letter-spacing: 0em;
}
@media screen and (max-width:519px) {
    .project_cont{
        padding-bottom: 100px;
    }
    .project_cont_inner{
        width: 92%;
    }
    .project_cont_blk{
        flex-direction: column;
        margin-bottom: 80px;
    }
    .project_cont_blk.project_cont_blk_even{
        flex-direction: column;
    }
    .project_cont_img{
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    .project_cont_txt{
        width: 90%;
        margin: 0 auto;
        height: auto;
    }
    .project_cont_txt_ul{
        position: relative;
        flex-direction: column;
        margin-bottom: 30px;
        width: 100%;
    }
    .project_cont_txt_ul li{
        -ms-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        padding-top: 0px;
        margin-bottom: 10px;
        padding-left: 10px;
    }
    .project_cont_txt_ul li.logobefore{
        margin-left: 0px !important;
    }
    .project_cont_blk.project_cont_blk_even .project_cont_txt_ul li{
        margin-left: 0px;
    }
    .project_cont_txt_ul li::before{
        transform: rotate(-90deg);
        left: 0px;
        top: 9px;
    }
    .project_cont_txt__p{
        position: relative;
    }
}
.space_project_cont_txt_ul li{
    height: 100px;
}
.space_project_cont_txt_ul li.notitle{
    width: 16px;
}
.space_project_cont_txt_ul li.notitle::before{
    display: none;
}
.space_project_cont_txt_ul .project_cont_txt_ul_li_line{
    display: flex;
    width: 1px;
    background: #000;
    height: 18px;
    position: absolute;
    top: 120px;
    left: calc(50% - 1px);
}
.space_project_cont_txt_ul li a,.space_project_cont_txt_ul li span.logowrap{
    display: flex;
    position: absolute;
    width: 50px;
    top: 160px;
    left: calc(50% - 25px);
}
.space_project_cont_txt_ul .project_cont_txt_ul_li_logo{
    display: flex;
    height: 100px;
    padding-bottom: 0px;
}
.space_project_cont_txt_ul .project_cont_txt_ul_li_logo img{
    height: auto;
    width: 120px;
    object-fit: contain;
    transform: rotate(90deg);
    position: absolute;
    top: calc(50% - 0px);
    left: calc(50% - 60px);
    -webkit-backface-visibility: hidden;
}
.space_project_cont_txt_ul .project_cont_txt_ul_li_logo_first{
    height: 120px;
    padding-bottom: 0px;
}
.space_project_cont_txt_ul .project_cont_txt_ul_li_logo_first img{
    width: 120px;
    left: calc(50% - 60px);
    top: calc(50% - 10px);
}
.space_project_cont_txt_ul .project_cont_txt_ul_li_logo_um{
    width: 20px;
    right: 16px;
    position: absolute;
    top: -4px;
}
.space_project_cont_txt_ul .project_cont_txt_ul_li_logo_um img{
    transform: rotate(0deg);
    width: 20px;
    position: absolute;
    top: 0px;
    right: 0px;
}

.space_project_cont_txt_ul li a .hover_circle_btn{
    width: 15px;
    height: 15px;
    margin: 10px;
    position: absolute;
    top: 113px;
    right: calc(50% - 18.5px);
    margin: 10px;
}
.space_project_cont_txt_ul li:hover a .hover_circle_btn{
    width: 20px;
    height: 20px;
    background: #000;
    opacity: 1;
    border-radius: 30px;
    margin: 7px;
}
.space_project_cont_txt_ul li:hover a .hover_circle_btn .icon_arrow_bk{
    opacity: 0;
}
.space_project_cont_txt_ul li:hover a .hover_circle_btn .icon_arrow_w{
    opacity: 1;
}
@media screen and (max-width:519px) {
    .space_project_cont_txt_ul li{
        height: 50px;
    }
    .space_project_cont_txt_ul .project_cont_txt_ul_li_line{
        position: absolute;
        top: 40px;
        width: 18px;
        height: 1px;
        left: 12px;
    }
    .space_project_cont_txt_ul li a,.space_project_cont_txt_ul li span.logowrap{
        position: relative;
        top: 23px;
        left: 35px;
        width: auto;
    }
    .space_project_cont_txt_ul .project_cont_txt_ul_li_logo{
        height: auto;
    }
    .space_project_cont_txt_ul .project_cont_txt_ul_li_logo img{
        transform: none;
        position: relative;
        top: calc(50% - 15px);
    }
    .space_project_cont_txt_ul .project_cont_txt_ul_li_logo_first{
        height: auto;
    }
    .space_project_cont_txt_ul .project_cont_txt_ul_li_logo_um img{
        left: 0px;
        top: calc(50% - 33px);
    }
    .space_project_cont_txt_ul li a .hover_circle_btn{
        top: -23px;
        right: calc(50% - 98.5px);
    }
    .space_project_cont_txt_ul .project_cont_txt_ul_li_logo_um{
        width: 140px;
        left: 0px;
        position: absolute;
        top: -6px;
    }
    .space_project_cont_txt_ul .project_cont_txt_ul_li_logo_um img{
        width: 100%;
    }
    .space_project_cont_txt_ul li.notitle{
        height: 30px;
    }
    .space_project_cont_txt_ul li.notitle .project_cont_txt_ul_li_line{
        top: 10px;
    }
    .space_project_cont_txt_ul li.notitle span.logowrap{
        top: 3px;
    }
}

/* project_cont_txt_logo */
.project_cont_txt_logo{
    position: relative;
    margin-left: 10px !important;
}
.project_cont_txt_logo_um{
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.project_cont_txt_logo_last{
    margin-left: 14px !important;
}
.project_cont_txt_logo_alighright{
    margin-left: 2px !important;
}
.project_cont_txt_logo::before{
    content: none !important;
}
.project_cont_txt_logo a,.project_cont_txt_logo span.nolink{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.project_cont_txt_logo_span{
    width: 1px;
    background: #000;
    height: 18px;
    margin-bottom: 10px;
}
.project_cont_txt_logo_img{
    width: 20px;
}
.project_cont_txt_logo_img_um{
    width: 40px;
    margin-left: 5px;
}
.project_cont_txt_logo_img_s_logo_09{
    width: 90px;
}
.project_cont_txt_logo .hover_circle_btn{
    position: relative !important;
    top: auto !important;
    right: auto !important;
}
.project_cont_txt_logo .hover_circle_btn{
    width: 15px;
    height: 15px;
    margin: 10px;
    position: absolute;
    top: 160px;
    right: calc(50% - 17.5px);
    margin: 10px 0 0;
}
.project_cont_txt_logo a:hover .hover_circle_btn{
    background: #000;
    opacity: 1;
    border-radius: 30px;
}
.project_cont_txt_logo a:hover .hover_circle_btn .icon_arrow_bk{
    opacity: 0;
}
.project_cont_txt_logo a:hover .hover_circle_btn .icon_arrow_w{
    opacity: 1;
}
@media screen and (max-width:519px) {
    .project_cont_txt_logo{
        padding-left: 10px !important;
        margin-left: 0px !important;
    }
    .project_cont_txt_logo_last{
        padding-bottom: 5px !important;
    }
    .project_cont_txt_logo_span{
        width: 18px;
        height: 1px;
        margin-right: 10px;
        margin-bottom: 0px;
    }
    .project_cont_txt_logo_img{
        width: auto;
        height: 20px;
    }
    .project_cont_txt_logo_img_s_logo_09{
        height: 50px;
    }
    .project_cont_txt_logo_img_um{
        margin-left: 0px;
        height: 40px;
        margin-bottom: 5px;
    }
    .project_cont_txt_logo_img img{
        height: 100%;
        width: auto;
    }
    .project_cont_txt_logo .hover_circle_btn{
        margin: 0 0 0 10px;
    }
}


.space_project_cont_txt_ul_2 .space_project_cont_txt_ul_2_logolist{
    margin-left: 20px !important;
}
.space_project_cont_txt_ul_2 li a{
    display: flex;
    width: 20px;
    position: relative;
    margin-right: 10px;
}
.space_project_cont_txt_ul_2 .project_cont_txt_ul_li_line{
    display: flex;
    width: 1px;
    background: #000;
    height: 18px;
    position: absolute;
    top: 0px;
    left: calc(50% - 1px);
}
.space_project_cont_txt_ul_2 .project_cont_txt_ul_li_linesano{
    display: flex;
    width: 1px;
    background: #000;
    height: 18px;
    position: absolute;
    top: 0px;
    left: calc(50% - 1px);
}
.space_project_cont_txt_ul_2 .project_cont_txt_ul_li_logo{
    display: flex;
    height: 100px;
    padding-bottom: 0px;
    padding-top: 60px;
}
.space_project_cont_txt_ul_2 .project_cont_txt_ul_li_logosano{
    display: flex;
    height: 100px;
    padding-bottom: 0px;
    padding-top: 60px;
}
.space_project_cont_txt_ul_2 .project_cont_txt_ul_li_logo img{
    height: auto;
    width: 100px;
    object-fit: contain;
    transform: rotate(90deg);
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 50px);
    -webkit-backface-visibility: hidden;
}
.space_project_cont_txt_ul_2 .project_cont_txt_ul_li_logosano img{
    height: auto;
    width: 130px;
    object-fit: contain;
    transform: rotate(90deg);
    position: absolute;
    top: calc(50% - -7px);
    left: calc(50% - 65px);
    -webkit-backface-visibility: hidden;
}
.space_project_cont_txt_ul_2 li a .hover_circle_btn{
    width: 15px;
    height: 15px;
    margin: 10px;
    position: absolute;
    top: 160px;
    right: calc(50% - 17.5px);
    margin: 10px;
}
.space_project_cont_txt_ul_2 li a:hover .hover_circle_btn{
    width: 20px;
    height: 20px;
    background: #000;
    opacity: 1;
    border-radius: 30px;
    margin: 7px;
}
.space_project_cont_txt_ul_2 li a:hover .hover_circle_btn .icon_arrow_bk{
    opacity: 0;
}
.space_project_cont_txt_ul_2 li a:hover .hover_circle_btn .icon_arrow_w{
    opacity: 1;
}
@media screen and (max-width:519px) {
    .space_project_cont_txt_ul_2 .space_project_cont_txt_ul_2_logolist{
        margin-left: 0px !important;
        margin-bottom: 20px;
        height: 80px;
    }
    .space_project_cont_txt_ul_2 li a{
        position: relative;
        top: -10px;
        left: -10px;
        width: auto;
        height: 30px;
    }
    .space_project_cont_txt_ul_2 .project_cont_txt_ul_li_line{
        position: absolute;
        top: 29px;
        width: 18px;
        height: 1px;
        left: 12px;
    }
    .space_project_cont_txt_ul_2 .project_cont_txt_ul_li_linesano{
        position: absolute;
        top: 29px;
        width: 18px;
        height: 1px;
        left: 12px;
    }
    .space_project_cont_txt_ul_2 .project_cont_txt_ul_li_logo{
        height: auto;
    }
    .space_project_cont_txt_ul_2 .project_cont_txt_ul_li_logosano{
        height: auto;
    }
    .space_project_cont_txt_ul_2 .project_cont_txt_ul_li_logo img{
        transform: none;
        left: calc(50% - 42px);
        top: 20px;
    }
    .space_project_cont_txt_ul_2 .project_cont_txt_ul_li_logosano img{
        transform: none;
        left: calc(50% - 42px);
    }
    .space_project_cont_txt_ul_2 li a .hover_circle_btn{
        top: 11px;
        right: calc(50% - 123.5px);
    }
}
.space_project_cont_txt_ul_3 li a{
    display: flex;
    position: absolute;
    width: 100px;
    left: -85px;
    top: 170px;
}
.space_project_cont_txt_ul_3 .project_cont_txt_ul_li_line{
    display: flex;
    width: 1px;
    background: #000;
    height: 18px;
    position: absolute;
    top: 0px;
    right: 7px;
}
.space_project_cont_txt_ul_3 .project_cont_txt_ul_li_logo{
    display: flex;
    height: auto;
    padding-bottom: 0px;
    padding-top: 30px;
}
.space_project_cont_txt_ul_3 .project_cont_txt_ul_li_logo img{
    height: auto;
    width: 100px;
    object-fit: contain;
    position: absolute;
    left: 23px;
    -webkit-backface-visibility: hidden;
}
.space_project_cont_txt_ul_3 li a .hover_circle_btn{
    width: 15px;
    height: 15px;
    margin: 10px;
    position: absolute;
    top: 105px;
    right: -10px;
    margin: 10px;
}
.space_project_cont_txt_ul_3 li a:hover .hover_circle_btn{
    width: 20px;
    height: 20px;
    background: #000;
    opacity: 1;
    border-radius: 30px;
    margin: 7px;
}
.space_project_cont_txt_ul_3 li a:hover .hover_circle_btn .icon_arrow_bk{
    opacity: 0;
}
.space_project_cont_txt_ul_3 li a:hover .hover_circle_btn .icon_arrow_w{
    opacity: 1;
}
@media screen and (max-width:519px) {
    .space_project_cont_txt_ul_3 li{
        height: 110px;
    }
    .space_project_cont_txt_ul_3 li a{
        left: auto;
        top: 40px;
        width: 170px;
        height: 70px;
    }
    .space_project_cont_txt_ul_3 .project_cont_txt_ul_li_line{
        width: 18px;
        height: 1px;
        top: 35px;
        left: 0px;
    }
    .space_project_cont_txt_ul_3 .project_cont_txt_ul_li_logo img{
        left: 33px;
        top: 0px;
    }
    .space_project_cont_txt_ul_3 li a .hover_circle_btn{
        top: 15px;
        left: 140px;
    }
}
.space_project_cont_txt_ul_4 .space_project_cont_txt_ul_4_logolist{
    margin-left: 35px !important;
}
.space_project_cont_txt_ul_4 li a{
    display: flex;
    position: absolute;
    width: 20px;
    left: -30px;
    top: 0px;
}
.space_project_cont_txt_ul_4 .project_cont_txt_ul_li_line{
    display: flex;
    width: 1px;
    background: #000;
    height: 18px;
    position: absolute;
    top: 0px;
    left: calc(50% - 1px);
}
.space_project_cont_txt_ul_4 .project_cont_txt_ul_li_logo{
    display: flex;
    height: 100px;
    padding-bottom: 0px;
    padding-top: 60px;
}
.space_project_cont_txt_ul_4 .project_cont_txt_ul_li_logo img{
    height: auto;
    width: 100px;
    object-fit: contain;
    transform: rotate(90deg);
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 50px);
    -webkit-backface-visibility: hidden;
}
.space_project_cont_txt_ul_4 li a .hover_circle_btn{
    width: 15px;
    height: 15px;
    margin: 10px;
    position: absolute;
    top: 126px;
    right: calc(50% - 17.5px);
    margin: 10px;
}
.space_project_cont_txt_ul_4 li:hover a .hover_circle_btn{
    width: 20px;
    height: 20px;
    background: #000;
    opacity: 1;
    border-radius: 30px;
    margin: 7px;
}
.space_project_cont_txt_ul_4 li:hover a .hover_circle_btn .icon_arrow_bk{
    opacity: 0;
}
.space_project_cont_txt_ul_4 li:hover a .hover_circle_btn .icon_arrow_w{
    opacity: 1;
}
@media screen and (max-width:519px) {
    .space_project_cont_txt_ul_4 .space_project_cont_txt_ul_4_logolist{
        margin-left: 0px !important;
        height: 50px;
        margin-bottom: 20px;
    }
    .space_project_cont_txt_ul_4 li a{
        width: 160px;
        height: 20px;
        top: 35px;
        left: auto;
    }
    .space_project_cont_txt_ul_4 .project_cont_txt_ul_li_line{
        width: 18px;
        height: 1px;
        left: 0px;
        top: 6px;
    }
    .space_project_cont_txt_ul_4 .project_cont_txt_ul_li_logo{
        height: auto;
        padding-top: 0px;
    }
    .space_project_cont_txt_ul_4 .project_cont_txt_ul_li_logo img{
        transform: none;
        top: 0px;
        left: 30px;
    }
    .space_project_cont_txt_ul_4 li a .hover_circle_btn{
        top: -13px;
        left: 130px;
    }
}