@charset "UTF-8";

/* common /////////////////////////////////////////////////////////////////////////////////////////// */

/* フォント設定 */
body {
	font-size:1.5rem;
	font-family: 'Zen Kaku Gothic New',"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif, Meiryo, メイリオ, Osaka;
	color:var(--cb);
    font-weight: 500;
	line-height: 1.66;
	letter-spacing:0.05em;
	-webkit-text-size-adjust:none;
}
a {
    /* color: var(--c3); */
    color: inherit;
}
/* a:hover{
    color: var(--c1);
} */

/* font-family */
.ffzkg{
    font-family: 'Zen Kaku Gothic New',"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif, Meiryo, メイリオ, Osaka;
}
.ffyugo{
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    /* font-family: "Helvetica Neue","Segoe UI","Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif; */
    /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; */
}
.ffoswald{
    font-family: 'Oswald','Times New Roman','Segoe UI',SegoeUI,'Helvetica Neue',Helvetica,Arial,sans-serif;
    font-weight: 400;
    letter-spacing: 0;
}

/* cmn ///////////////////////////////////// */

/* scrollbar */
/* body::-webkit-scrollbar{
    height: 10px;
    width: 10px;
    background-color: rgba(90,4,2,.6);
}

body::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background: rgba(90,4,2,1);
} */

/* header */
.header_home{
    position: absolute;
    top: 70px;
}
.header_infobar{
    width: calc(100% - 100px);
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 80px;
    z-index: 100000;
    overflow: hidden;
}
.header_infobar::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--cw);
    transform: skew(-26deg);
    transform-origin: 100% 100%;
}
.header_infobar > *{
    position: relative;
}
.header_nav,
.header_nav_list,
.header_nav_item,
.header_nav_link{
    height: 100%;
}
.header_nav{
    margin-left: auto;
}
.header_nav_link{
    display: flex;
    align-items: center;
}
.header_contact_link{
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 30px 0 45px;
    overflow: hidden;
    transform: skew(-26deg);
    transform-origin: 0% 100%;
}
.header_contact_link:hover{
    background-color: var(--c1);
}
.header_contact_link_inner{
    transform: skew(26deg);
    transform-origin: inherit;
}
@media only screen and (max-width: 1200px) {
    .header_infobar{
        padding-left: 60px;
    }
    .header_nav_link{
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media only screen and (max-width: 1000px) {
    .header_home{
        top: 0;
    }
    .header_infobar{
        padding-left: 80px;
    }
    .header_companyname{
        letter-spacing: 0.1em;
    }
    .header_contact_link{
        display: none;
    }
}
@media only screen and (max-width: 560px) {
    .header_infobar{
        width: calc(100% - 14px);
        padding: 0 0 0 46px;
        /* width: 100%; */
        /* padding: 0 0 0 20px; */
    }
    .header_infobar::before{
        /* transform: none; */
    }
    .header_companyname_wrap{
        margin-top: -6px;
    }
    .header_companyname{
        font-size: 2.3rem;
    }
}

/* modalmenu */
#header_modalmenu_check{
    display: none;
}
.header_modalmenu_btn{
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--c2);

    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;

	z-index: 90000;
}
.header_modalmenu_btn .box{
    display: inline-block;
    width: 30px;
    height: 20px;
    position: absolute;
    top: 20px;
    left: 15px;
}
.header_modalmenu_btn .box span{
    position: absolute;
    left: 0;
    top: calc((100% - 1px)/2);
    display: block;
    width: 100%;
    height: 1px;
    background-color: #FFFFFF;

    transition: all .3s;
}
.header_modalmenu_btn .top{
    transform: translateY(-8px);
}
.header_modalmenu_btn .bottom{
    transform: translateY(8px);
}
#header_modalmenu_check:checked ~ .header_modalmenu_btn .top{
    transform: rotate(-135deg);
}
#header_modalmenu_check:checked ~ .header_modalmenu_btn .center{
    opacity: 0;
}
#header_modalmenu_check:checked ~ .header_modalmenu_btn .bottom{
    transform: rotate(135deg);
}
#header_modalmenu_close_bg{
    width: 100%;
    height: 100%;

    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);

	z-index: -1;
}
#header_modalmenu_area{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;

    opacity: 0;
    pointer-events: none;
    transition: all .3s;

	z-index: 80000;
}
#header_modalmenu_check:checked ~ #header_modalmenu_area{
    opacity: 1;
    pointer-events: all;
}
.header_modalmenu_areainner{
    padding: 80px 0 46px;
    transform: translateY(-30px);
    transition: transform .3s;
    background-color: var(--c1);
}
#header_modalmenu_check:checked ~ #header_modalmenu_area .header_modalmenu_areainner{
    transform: translateY(0);
}
.header_modalmenu_nav{
    text-align: center;
}
.header_modalmenu_nav_item{
    margin-top: 6px;
    margin-bottom: 6px;
}
.header_modalmenu_nav_link{
    padding: 1em 2em;
}
.header_modalmenu_nav_ico{
    display: inline-block;
    margin-right: 14px;
    margin-bottom: -2px;
}
@media only screen and (max-width: 560px) {
    .header_modalmenu_nav_link{
        font-size: 1.8rem;
    }
}




/* footer */
.footer_conts{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer_left{
    width: 45%;
}
.footer_right{
    width: 50%;
}
.footer_copyright{
    width: 100%;
}
.footer_navlist{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer_navlist_item{
    display: inline-block;
    margin: 6px 19px 6px 0;
    letter-spacing: 0.03em;
}
.footer_description{
    border-top: 1px solid var(--cw);
}
.footer_logobox{
    display: flex;
    align-items: center;
    /* margin-bottom: -6px; */
}
[class*="footer_logo_"]{
    /* display: inline-block;
    margin-top: 6px;
    margin-bottom: 6px;
    vertical-align: bottom; */
}
.footer_logobox_link_denyo{
    width: 152px;
}
.footer_logobox_link_nishihatsu{
    width: 204px;
}
.footer_gotop{
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 50000;
    display: none;
}
.footer_gotop_link{
    position: relative;
    display: inline-flex;
    vertical-align: bottom;
}
.footer_gotop_link::before{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-right: 15px solid var(--c2);
    border-bottom: 30px solid var(--c2);
    border-left: 15px solid transparent;
}
.footer_gotop_ico{
    max-width: none;
    height: 60px;
}
@media only screen and (max-width: 800px){
    .footer_conts{
        display: block;
    }
    .footer_companyname{
        text-align: center;
        white-space: nowrap;
    }
    .footer_companyname01{
        font-size: 2.9rem;
    }
    .footer_companyname02{
        font-size: 1.4rem;
    }
    .footer_address{
        display: table;
        max-width: 90%;
        margin: 20px auto 0;
        font-size: 1.2rem;
    }
    .footer_left{
        width: 100%;
    }
    .footer_right{
        width: 100%;
        margin-top: 30px;
    }
    .footer_navlist{
        justify-content: center;
    }
    .footer_navlist_item{
        margin: 6px 12px;
    }
    .footer_description{
        font-size: 1.3rem;
    }
    .footer_logobox{
        padding-left: 5%;
        padding-right: 5%;
    }
    .footer_logobox_link_denyo{
        width: 34%;
        margin-right: 0;
    }
    .footer_logobox_link_nishihatsu{
        width: 40%;
    }
    .footer_logobox{
        justify-content: space-evenly;
    }
    .footer_logobox_link{
        display: block;
    }
    [class*="footer_logo_"]{
        width: 100%;
    }
    .footer_copyright{
        font-size: 1.2rem;
    }
    .footer_gotop_link::before{
        border-top: 0px solid transparent;
        border-right: 0 solid transparent;
        border-bottom: 48px solid var(--c2);
        border-left: 24px solid transparent;
    }
    .footer_gotop_ico{
        height: 48px;
    }
}

/* cmn_box */
/* .cmn_box {
    padding-top: 94px;
    padding-bottom: 104px;
}
@media only screen and (max-width: 800px) {
    .cmn_box {
        padding-top: calc(94px * var(--mgper01));
        padding-bottom: calc(104px * var(--mgper01));
    }
}
@media only screen and (max-width: 560px) {
    .cmn_box {
        padding-top: calc(94px * var(--mgper02));
        padding-bottom: calc(104px * var(--mgper02));
    }
} */

/* cmn_title_2nd */
.cmn_title_2nd{
    position: relative;
    display: inline-block;
    max-width: 90%;
    padding-top: 0.3em;
    padding-bottom: 0.3em;
    color: var(--cw);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1em;
}
.cmn_title_2nd_left{
    padding-right: 2.8em;
}
.cmn_title_2nd_right{
    padding-left: 2.8em;
}
.cmn_title_2nd::before{
    content: '';
    position: absolute;
    top: 0;
    display: block;
    /* width: 100vw; */
    width: 100vw;
    height: 100%;
    transform: skew(-26deg);
    background-color: var(--c1);
}
.cmn_title_2nd_left::before{
    right: 0;
    transform-origin: 100% 0%;
}
.cmn_title_2nd_right::before{
    left: 0;
    transform-origin: 0% 100%;
}
.cmn_title_2nd_inner{
    position: relative;
}
@media only screen and (max-width: 560px) {
    .cmn_title_2nd{
        max-width: 96%;
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        font-size: 2.1rem;
    }
    .cmn_title_2nd_left{
        padding-left: 0.5em;
    }
    .cmn_title_2nd_right{
        padding-right: 0.5em;
    }
}
/* .cmn_title_2nd_wrap + *{
    margin-top: 50px;
}
@media only screen and (max-width: 800px) {
    .cmn_title_2nd_wrap + *{
        margin-top: calc(50px * var(--mgper01));
    }
}
@media only screen and (max-width: 560px) {
    .cmn_title_2nd_wrap + *{
        margin-top: calc(50px * var(--mgper01));
    }
} */


/* cmn_dl */
.cmn_dl_row{
    display: flex;
    justify-content: space-between;
    border-width: 1px 0 1px 0;
    border-style: solid;
    border-color: var(--cb);
    margin-top: -1px;
}
.cmn_dl_desc,
.cmn_dl_term{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 18px 20px;
    line-height: 1.6;
}
.cmn_dl_term{
    flex-shrink: 0;
    width: 150px;
    margin-right: 2%;
    letter-spacing: 0;
}
.cmn_dl_desc{
    width: 100%;
}
@media only screen and (max-width: 800px) {
    .cmn_dl_row{
        display: block;
        padding: 16px 0;
    }
    .cmn_dl_term{
        display: block;
        width: 100%;
        padding: 0 14px;
        margin-right: 0;
        font-weight: 700;
        font-size: 1.6rem;
    }
    .cmn_dl_desc{
        display: block;
        padding: 0 14px 0 calc(14px + 1em);
        /* padding: 0 14px; */
        margin-top: 10px;
    }
}

/* cmn_btn */
.cmn_btn_link{
    position: relative;
    display: inline-block;
    min-width: 250px;
    max-width: 88%;
    min-height: 50px;
    padding: 14px 40px;
    color: var(--cw);
    line-height: 1.5;
}
button.cmn_btn_link{
    appearance: none;
    border: 0;
    background-color: transparent;
}
.cmn_btn_link::before{
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: skew(-26deg) translate(-50%,0);
    transform-origin: center center;
    display: block;
    width: calc(100% - 24px);
    height: 100%;
    background-color: var(--c2);
}
.cmn_btn_link:hover::before{
    background-color: var(--c1);
}
.cmn_btn_link_inner{
    position: relative;
    /* display: block;
    width: 100%;
    padding-right: 40px; */
    display: inline-block;
    padding-right: 56px;
    background-image: url(../img/cmn_ico_arr_w.svg);
    background-repeat: no-repeat;
    /* background-position: right top .16em; */
    /* background-position: right 2.5em center; */
    background-position: right center;
    background-size: auto 1.16em;
}
@media only screen and (max-width: 560px) {
    .cmn_btn_link{
        max-width: none;
        /* padding: 14px 16px; */
        padding: 14px 20px;
    }
    .cmn_btn_link::before{
        width: 100%;
        transform: translate(-50%,0);
    }
    .cmn_btn_link_inner{
        /* padding: 0 36px; */
        padding: 0 48px;
        background-size: auto 0.9em;
    }
}


/* cmn_maintitle */
.cmn_maintitle{
    position: relative;
    background-image: url(../img/service_maintitle_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 300px;
}
.cmn_maintitle::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(24,90,222);
    background: linear-gradient(90deg, rgba(24,90,222,0.3) 0%, rgba(63,195,255,0.3) 100%);
}
.cmn_maintitle_conts{
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
    height: 100%;
    padding-top: 60px;
}
.cmn_maintitle_en{
    text-transform: capitalize;
}
header{
    position: absolute;
    height: 60px;
}
.header_infobar{
    height: 100%;
}
.header_nav_sub {display: none;}
@media only screen and (max-width: 560px) {
    .cmn_maintitle{
        height: 220px;
    }
    .cmn_maintitle_ja{
        font-size: 2.1rem;
    }
    .cmn_maintitle_en{
        font-size: 4.8rem;
        letter-spacing: 0.01em;
    }

}


/* home ///////////////////////////////////// */
.home_mainimg{
    position: relative;
    width: 100%;
    height: 50vw;
    min-height: 700px;
    max-height: 800px;
    background-image: url(../img/home_mainimg01.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.home_maintitle{
    position: absolute;
    left: 50%;
    bottom: calc(50% - 60px);
    transform: translate(-50%,50%);
    /* z-index: 0; */
    display: block;
    width: 100%;
    text-align: right;
}
.home_maintitle_wrap{
    width: 100%;
    height: 100%;
}
/* 縦書き（TOPページ） */
.home_recruit_tategaki,
.home_bizguide_tategaki{
    position: absolute;
    z-index: 1;
    display: block;
    width: auto;
    height: auto;
}
.home_recruit_tategaki{
    right: 0;
    top: 0;
}
.home_bizguide_tategaki{
    left: 0;
    top: 0;
    transform: translate(-50%,0);
}
.home_tategaki_conts{
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: flex-start;
}
.home_maintitle_conts{
    transform: translate(calc(50% - 20px), 0);
}
.home_tategaki_conts_colum{
    position: relative;
    display: inline-block;
    padding: 24px 0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    /* text-align: center; */
    overflow: hidden;
}
.home_maintitle_conts_colum{
    line-height: 100px;
}
.home_maintitle_conts_colum:nth-of-type(2){
    margin-top: 40px;
}
.home_recruit_tategaki_conts_colum,
.home_bizguide_tategaki_conts_colum{
    line-height: 60px;
    /* margin-left: -1px; */
}
.home_bizguide_tategaki_conts_colum .sp_text,
.home_recruit_tategaki_conts_colum .sp_text{
    display: none;
}
.home_tategaki_conts_colum::before{
    content: '';
    position: absolute;
    top: 0;
    z-index: -1;
    display: block;
    background: rgb(24,90,222);
    background: linear-gradient(45deg, rgba(24,90,222,1) 0%, rgba(63,195,255,1) 100%);
}
.home_maintitle_conts_colum::before{
    right: 0;
    width: calc(100% * 2);
    height: 388px;
}
.home_maintitle_conts_colum:nth-of-type(2)::before{
    height: calc(100% + 40px);
    transform: translate(100px,-40px);
}
.home_recruit_tategaki_conts_colum::before,
.home_bizguide_tategaki_conts_colum::before{
    width: calc(100% * 3);
}
.home_recruit_tategaki_conts_colum::before{
    height: 306px;
}
.home_bizguide_tategaki_conts_colum::before{
    height: 354px;
}
.home_recruit_tategaki_conts_colum:nth-of-type(2)::before,
.home_bizguide_tategaki_conts_colum:nth-of-type(2)::before{
    transform: translate(60px,0);
}
.home_recruit_tategaki_conts_colum:nth-of-type(3)::before,
.home_bizguide_tategaki_conts_colum:nth-of-type(3)::before{
    transform: translate(calc(60px * 2),0);
}
@media only screen and (max-width: 1200px) {
    .home_maintitle_conts{
        transform: none;
    }
    .home_bizguide_tategaki{
        transform: translate(-18px,0);
    }
}
@media only screen and (max-width: 1000px) {
    .home_recruit_tategaki,
    .home_bizguide_tategaki{
        position: static;
        transform: none;
    }
    .home_bizguide_tategaki{
        margin-top: -24px;
    }
    .home_recruit_tategaki_conts,
    .home_bizguide_tategaki_conts{
        /* align-items: flex-end; */
        flex-direction: column;
        width: 100%;
    }
    .home_recruit_tategaki_conts{
        justify-items: flex-start;
        align-items: flex-end;
    }
    .home_recruit_tategaki_conts_colum,
    .home_bizguide_tategaki_conts_colum{
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        display: inline-flex;
        align-items: center;
        /* flex-wrap: wrap; */
        min-height: 60px;
        padding: 0 16px;
        margin-top: 2px;
        margin-bottom: 2px;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        -ms-writing-mode: horizontal-tb;
        -o-writing-mode: horizontal-tb;
        -webkit-writing-mode: horizontal-tb;
        line-height: 1.4;
        white-space: nowrap;

    }
    .home_recruit_tategaki_conts_colum{
        z-index: 0;
        justify-items: flex-end;
    }
    .home_bizguide_tategaki_conts_colum .sp_text,
    .home_recruit_tategaki_conts_colum .sp_text{
        display: inline;
    }
    .home_bizguide_tategaki_conts_colum:nth-of-type(3),
    .home_recruit_tategaki_conts_colum:nth-of-type(3){
        display: none;
    }
    .home_recruit_tategaki_conts_colum::before,
    .home_bizguide_tategaki_conts_colum::before{
        height: calc((100% * 3) + 8px);
    }
    .home_recruit_tategaki_conts_colum::before{
        right: 0;
        top: 0;
        /* width: 310px; */
        width: 562px;
    }
    .home_bizguide_tategaki_conts_colum::before{
        left: 0;
        top: 0;
        /* width: 342px; */
        width: 584px;
    }
    .home_recruit_tategaki_conts_colum:nth-of-type(2):before,
    .home_bizguide_tategaki_conts_colum:nth-of-type(2):before{
        transform: translate(0,calc(-60px - 4px));
    }
    .home_recruit_tategaki_conts_colum:nth-of-type(3):before,
    .home_bizguide_tategaki_conts_colum:nth-of-type(3):before{
        transform: translate(0,calc(calc(-60px * 2) - 8px));
    }
}
@media only screen and (max-width: 560px) {
    .home_recruit_tategaki,
    .home_bizguide_tategaki{
        font-size: 1.8rem;
    }
    .home_bizguide_tategaki{
        margin-top: -12px;
    }
    .home_recruit_tategaki{
        margin-top: -12px;
    }
    .home_recruit_tategaki_conts_colum,
    .home_bizguide_tategaki_conts_colum{
        min-height: 44px;
    }
    .home_recruit_tategaki_conts_colum::before{
        /* width: 230px; */
        width: 356px;
    }
    .home_bizguide_tategaki_conts_colum::before{
        /* width: 280px; */
        width: 340px;
    }
    .home_recruit_tategaki_conts_colum:nth-of-type(2):before,
    .home_bizguide_tategaki_conts_colum:nth-of-type(2):before{
        transform: translate(0,calc(-44px - 4px));
    }
    .home_recruit_tategaki_conts_colum:nth-of-type(3):before,
    .home_bizguide_tategaki_conts_colum:nth-of-type(3):before{
        transform: translate(0,calc(calc(-44px * 2) - 8px));
    }
}

@media only screen and (max-width: 560px) {
    .home_mainimg{
        height: 100vh;
        min-height: 0;
        max-height: none;
        /* background-position: left 45% bottom; */
        background-position: right 25% bottom;
    }
    .home_maintitle{
        /* bottom: calc(50% - 40px);
        text-align: center; */

        left: auto;
        right: 4%;
        bottom: calc(64% - 60px);
        transform: translate(0,50%);
        /* display: inline-block; */
        /* width: auto; */
    }
    .home_maintitle_conts{
        display: flex; /* safariで表示されるよう */
        /* justify-content: center; */
        justify-content: flex-start;
    }
    .home_maintitle_conts_colum{
        line-height: 70px;
    }
    .home_maintitle_conts_colum:before{
        height: 296px;
    }
    .home_maintitle_conts_colum:nth-of-type(2)::before{
        height: calc(100% + 40px);
        transform: translate(70px,-40px);
    }
}
.home_service_topmsg{
    position: relative;
    display: flex;
    align-items: center;
    /* min-height: 360px; */
}
.home_service_topmsg_txtbox{
    position: absolute;
    top: 0;
    z-index: 1;
    /* width: 50%; */
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    /* height: 100%; */
}
.home_service_topmsg_txtbox_type01{
    /* order: 0; */
    transform: translate(-50%,0);
    left: 50%;
}
.home_service_topmsg_txtbox_type02{
    /* order: 1; */
    transform: translate(50%,-50%);
    right: 50%;
}
.home_service_title_en{
    order: -1;
    align-self: flex-start;
    display: inline-block;
    margin-top: -0.01em;
    color: #185ADE;
    background: linear-gradient(225deg, #185ADE, #3FC3FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
    opacity: 0.2;
}
.home_service_topmsg_maintxt{
    max-width: 400px;
}
.home_service_topmsg_maintxt_type01{
    margin-right: auto;
}
.home_service_topmsg_maintxt_type02{
    margin-left: auto;
}
.home_service_topmsg_imgbox{
    position: relative;
    width: 50%;
    max-height: 400px;
    overflow: hidden;
}
.home_service_topmsg_imgbox_type01{
    margin-left: auto;
}
.home_service_topmsg_imgbox_type02{
    margin-right: auto;
}
.home_service_topmsg_imgbox::after{
    content: '';
    position: absolute;
    top: 0;
    display: block;
    width: 29%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.home_service_topmsg_imgbox_type01::after{
    left: 0;
    background-position: left -1px top -1px;
    background-image: url(../img/cmn_sankaku_w_01.svg);
}
.home_service_topmsg_imgbox_type02::after{
    right: 0;
    background-position: right -1px top -1px;
    background-image: url(../img/cmn_sankaku_w_02.svg);
}
@media only screen and (max-width: 1000px) {
    .home_service_topmsg{
        flex-direction: column;
        align-items: flex-start;
    }
    .home_service_topmsg_txtbox{
        position: static;
        top: auto;
        padding-left: 3%;
        padding-right: 3%;
    }
    .home_service_topmsg_txtbox_type01{
        transform: none;
        left: auto;
    }
    .home_service_topmsg_txtbox_type02{
        transform: none;
        right: auto;
    }
    .home_service_title_en{
        margin-top: -0.2em;
        font-size: 8.4rem;
    }
    .home_service_topmsg_maintxt{
        max-width: none;
    }
    .home_service_topmsg_imgbox{
        position: static;
        width: 100%;
        max-width: 700px;
        max-height: none;
        /* max-height: 400px; */
        padding-left: 3%;
        padding-right: 3%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
    }
    .home_service_topmsg_imgbox::after{
        display: none;
    }
}
.home_bizguide{
    position: relative;
}
.home_bizguide_list{
    display: flex;
    justify-content: space-between;
}
.home_bizguide_list_item{
    width: 49%;
    max-width: 480px;
}
.home_bizguide_list_link{
    position: relative;
    overflow: hidden;
}
.home_bizguide_list_title{
    position: absolute;
    left: -1px;
    bottom: -1px;
    display: inline-block;
    width: auto;
}
.home_bizguide_list_title::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    transform: skew(-26deg);
    transform-origin: 100% 0%;
}
.home_bizguide_list_title_conts{
    position: relative;
    display: inline-block;
    /* padding: 0.4em 3.2em 0.4em 0; */
    padding: 10px 78px 10px 0;
    background-image: url(../img/home_service_arr_b.svg);
    background-repeat: no-repeat;
    background-position: right 26px top 14px;
    background-size: auto 0.8em;
}
.home_bizguide_list_imgbox_img{
    transition: transform .3s;
}
.home_bizguide_list_link:hover .home_bizguide_list_imgbox_img{
    transform: scale(1.1);
}
@media only screen and (max-width: 560px) {
    .home_bizguide_list{
        display: block;
    }
    .home_bizguide_list_item{
        width: 100%;
        max-width: 480px;
        margin: 20px auto;
    }
    .home_bizguide_list_title_conts{
        /* font-size: 1.8rem; */
        background-position: right 32px top 14px;
        padding-left: 20px;
    }
}
.home_recruit{
    position: relative;
}
.home_recruit_title_en_wrap{
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    display: block;
    width: 100%;
}
.home_recruit_title_en{
    display: block;
    width: 100%;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    /* text-align: right; */
}
.home_recruit_title_en_conts{
    transform: translate(calc(100% + 20px),0);
    display: inline-block;
    font-size: 14.8rem;

    /* align-self: flex-start; */
    color: #185ADE;
    background: linear-gradient(45deg, #185ADE, #3FC3FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
    opacity: 0.2;
}
.home_recruit_txtbox{
    position: absolute;
    left: 50%;
    top: calc(100px - 30px);
    transform: translate(-50%, 0);
    display: block;
    width: 100%;
}
.home_recruit_txtbox_title{
    margin-top: 80px;
}
.home_recruit_imgbox_wrap{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.home_recruit_imgbox{
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 900px;
}
.home_recruit_imgbox_img{
    flex-shrink: 0;
    width: calc(100vw - 50px - 100px - 50vw + 500px);
    max-width: 2000px;
    /* padding-left: 50px; */
}
.home_recruit_btn_wrap{
    position: absolute;
    left: 0;
    bottom: 25px;
    width: 100%;
}
@media only screen and (max-width: 1300px) {
    .home_recruit{
        background-color: var(--c3);
    }
    .home_recruit_title_en_wrap{
        left: 0;
        top: 0;
        z-index: auto;
        background-color: transparent;
    }
    .home_recruit_title_en{
        padding-top: 0;
        padding-bottom: 0;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        -ms-writing-mode: horizontal-tb;
        -o-writing-mode: horizontal-tb;
        -webkit-writing-mode: horizontal-tb;
    }
    .home_recruit_title_en_conts{
        transform: none;
        font-size: 10rem;
    }
}
@media only screen and (max-width: 1000px) {
    .home_recruit{
        padding-top: 8%;
        padding-bottom: 14%;
    }
    .home_recruit_title_en_wrap{
        position: static;
        left: auto;
        top: auto;
    }
    .home_recruit_title_en_conts{
        font-size: 8.4rem;
    }
    .home_recruit_txtbox{
        position: static;
        left: auto;
        top: auto;
        transform: none;
    }
    .home_recruit_txtbox_title{
        margin-top: 20px;
    }
    .home_recruit_imgbox_wrap{
        margin-top: 16px;
    }
    .home_recruit_imgbox{
        /* display: block; */
    }
    .home_recruit_imgbox_img{
        /* width: 100%; */
        width: 112%;
        max-width: none;
    }
    .home_recruit_btn_wrap{
        position: static;
        left: auto;
        bottom: auto;
        margin-top: 24px;
    }
    .home_recruit_btn{
        text-align: center;
    }
}
.home_bottom2col{
    display: flex;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 50px;
}
.home_bottom2col_item{
    width: calc(50% - 20px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.home_company{
    background-image: url(../img/home_company_bg.jpg);
}
.home_contact{
    background-image: url(../img/home_contact_bg.jpg);
}
.home_bottom2col_item_txtbox{
    min-height: 300px;
    background-color: rgba(255, 255, 255, 0.8);
}
.home_contact_tel{
    color: #3973E5;
}
@media only screen and (max-width: 1100px) {
    .home_bottom2col{
        padding-left: 3%;
        padding-right: 3%;
    }
    .home_bottom2col_item{
        padding: 30px;
    }
    .home_bottom2col_item_txtbox{
        min-height: 0;
    }
}
@media only screen and (max-width: 800px) {
    .home_bottom2col{
        display: block;
    }
    .home_bottom2col_item{
        width: 100%;
        max-width: 630px;
        padding: 16px;
        margin: 6% auto;
    }
    .home_bottom2col_maintxt{
        margin-top: 16px;
        font-size: 1.4rem;
    }
    .home_contact_tel{
        margin-top: 8px;
        font-size: 3.0rem;
    }
}




/* service ///////////////////////////////////// */
.service_body .cmn_maintitle {
    background-image: url(../img/service_maintitle_bg.jpg);
}
.service_toshop{
    position: relative;
    background-image: url(../img/service_toshop_bg01.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.service_toshop::before,
.service_toshop::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
}
.service_toshop::before{
    background-color: rgba(0, 60, 120, 0.5);
}
.service_toshop::after{
    background-image:
        url(../img/cmn_sankaku_w_01.svg),
        url(../img/cmn_sankaku_w_02.svg);
    background-repeat:
        no-repeat,
        no-repeat;
    background-position:
        left -1px top -1px,
        right -1px bottom -1px;
    background-size:
        auto 100%,
        auto 100%;
    pointer-events: none;
}
.service_toshop > *{
    position: relative;
    /* z-index: 1; */
}
@media only screen and (max-width: 800px) {
    .service_toshop::after{
        display: none;
    }
    .service_toshop_conts{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .service_toshop_title{
        font-size: 2.2rem;
    }
    .service_toshop_maintxt{
        margin-top: 24px;
    }
}
.service_2col{
    position: relative;
    display: flex;
    align-items: center;
    /* min-height: 360px; */
}
.service_2col_txtbox{
    position: absolute;
    top: 50%;
    z-index: 1;
    /* width: 50%; */
    width: 100%;
    max-width: 1000px;
    /* height: 100%; */
}
.service_2col_txtbox_type01{
    /* order: 0; */
    transform: translate(-50%,-50%);
    left: 50%;
}
.service_2col_txtbox_type02{
    /* order: 1; */
    transform: translate(50%,-50%);
    right: 50%;
}
.service_2col_maintxt{
    max-width: 500px;
}
.service_2col_maintxt_type01{
    margin-right: auto;
}
.service_2col_maintxt_type02{
    margin-left: auto;
}
.service_2col_imgbox{
    position: relative;
    width: 50%;
    max-height: 500px;
    overflow: hidden;
}
.service_2col_imgbox_type01{
    margin-left: auto;
}
.service_2col_imgbox_type02{
    margin-right: auto;
}
.service_2col_imgbox::after{
    content: '';
    position: absolute;
    top: 0;
    display: block;
    width: 29%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.service_2col_imgbox_type01::after{
    left: 0;
    background-position: left -1px top -1px;
    background-image: url(../img/cmn_sankaku_w_01.svg);
}
.service_2col_imgbox_type02::after{
    right: 0;
    background-position: right -1px top -1px;
    background-image: url(../img/cmn_sankaku_w_02.svg);
}
@media only screen and (max-width: 1000px) {
    .service_2col{
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .service_2col_txtbox{
        position: static;
        top: auto;
        padding-left: 3%;
        padding-right: 3%;
        margin-top: 30px;
    }
    .service_2col_txtbox_type01{
        transform: none;
        left: auto;
    }
    .service_2col_txtbox_type02{
        transform: none;
        right: auto;
    }
    .service_2col_maintxt{
        max-width: none;
    }
    .service_2col_imgbox{
        position: static;
        width: 100%;
        max-width: 700px;
        max-height: none;
        /* max-height: 400px; */
        margin-left: auto;
        margin-right: auto;
    }
    .service_2col_imgbox::after{
        display: none;
    }
}


/* company ///////////////////////////////////// */
.company_body .cmn_maintitle{
    background-image: url(../img/company_maintitle_bg.jpg);
}
@media only screen and (max-width: 560px){
    .company_body .cmn_maintitle{
        /* background-position: left 42% center; */
        /* background-position: left 49% center; */
        background-position: left 52% center;
    }
}
.company_aisatsu_2col{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.company_aisatsu_2col_imgbox{
    width: 48%;
}
/* .company_aisatsu_2col_img{
} */
.company_aisatsu_2col_txtbox{
    width: 46%;
    margin-top: 6%;
}
@media only screen and (max-width: 800px){
    .company_aisatsu_2col{
        display: block;
        margin-top: 34px;
    }
    .company_aisatsu_2col_imgbox{
        width: 100%;
        width: 85%;
        margin-left: auto;
        margin-right: auto;
    }
    .company_aisatsu_2col_txtbox{
        width: 100%;
        margin-top: 30px;
    }
}
.company_bizinfo,
.company_torihiki{
    overflow: hidden;
}
.company_title_2nd{
    position: relative;
    display: inline-block;
    padding: 0 50px 20px 20px;
    color: #003C78;
    white-space: nowrap;
}
.company_title_2nd:before{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: calc(100% + 50px);
    height: 100%;
    background-image: url(../img/company_bizinfo_underline.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 100%;
}
.company_torihiki_list{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
}
.company_torihiki_list_row{
    width: auto;
}
.company_torihiki_list_row:nth-of-type(2n-1){
    padding-right: 16px;
}
.company_torihiki_list_row:nth-of-type(2n){
    padding-left: 16px;
}
.company_torihiki_list_name{
    display: inline-block;
    padding-left: 16px;
    background-image: url(../img/company_torihikilist_circle.svg);
    background-repeat: no-repeat;
    background-position: left top 8px;
    background-size: auto;
}
@media only screen and (max-width: 560px){
    .company_bizinfo,
    .company_torihiki{
        padding-left: 20px;
        padding-right: 20px;
    }
    .company_torihiki_list_row:nth-of-type(2n-1){
        padding-right: 10px;
    }
    .company_torihiki_list_row:nth-of-type(2n){
        padding-left: 10px;
    }
    .company_torihiki_list_name{
        padding-left: 12px;
        background-position: left top 8px;
        font-size: 1.4rem;
    }
}
.company_access_list_row{
    display: flex;
}
.company_access_list_txtbox{
    width: 50%;
}
.company_access_list_mapbox{
    width: 50%;
}
@media only screen and (max-width: 700px){
    .company_access_list_row{
        flex-direction: column-reverse;
        /* width: 90%;
        margin-left: auto;
        margin-right: auto; */
    }
    .company_access_list_txtbox{
        width: 100%;
        padding: 24px 20px;
    }
    .company_access_list_mapbox{
        width: 100%;
    }
}
/* recruit ///////////////////////////////////// */
.recruit_body .cmn_maintitle{
    background-image: url(../img/recruit_maintitle_bg.jpg);
}
.recruit_2col{
    position: relative;
    display: flex;
    align-items: center;
    /* min-height: 360px; */
}
.recruit_2col_txtbox{
    position: absolute;
    top: 50%;
    z-index: 1;
    /* width: 50%; */
    width: 100%;
    max-width: 1000px;
    /* height: 100%; */
}
.recruit_2col_txtbox_type01{
    /* order: 0; */
    transform: translate(-50%,-50%);
    left: 50%;
}
.recruit_2col_txtbox_type02{
    /* order: 1; */
    transform: translate(50%,-50%);
    right: 50%;
}
.recruit_topmsg_txtbox{
    top: 0;
    transform: translate(-50%,0);
}
.recruit_shokumu_title_wrap{
    margin-bottom: -60px;
}
/* .recruit_shokumu_2col_txtbox{
    top: 0;
}
.recruit_2col_txtbox_type01{
    transform: translate(-50%,0);
}
.recruit_2col_txtbox_type02{
    transform: translate(50%,0);
} */
.recruit_shokumu_2col_title{
    display: flex;
    align-items: flex-end;
    max-width: 50%;
}
.recruit_shokumu_2col_title_type01{
    margin-right: auto;
}
.recruit_shokumu_2col_title_type02{
    margin-left: auto;
}
.recruit_shokumu_2col_title_num{
    margin-bottom: 0.1em;
    color: rgba(0, 120, 205, 0.2);
    vertical-align: bottom;
}
.recruit_2col_maintxt{
    max-width: 500px;
}
.recruit_topmsg_maintxt{
    max-width: 400px;
}
.recruit_2col_maintxt_type01{
    margin-right: auto;
}
.recruit_2col_maintxt_type02{
    margin-left: auto;
}
.recruit_2col_imgbox{
    position: relative;
    width: 50%;
    max-height: 500px;
    overflow: hidden;
}
.recruit_2col_imgbox_type01{
    margin-left: auto;
}
.recruit_2col_imgbox_type02{
    margin-right: auto;
}
.recruit_2col_imgbox::after{
    content: '';
    position: absolute;
    top: 0;
    display: block;
    width: 29%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.recruit_topmsg_imgbox::after{
    display: none;
}
.recruit_2col_imgbox_type01::after{
    left: 0;
    background-position: left -1px top -1px;
    background-image: url(../img/cmn_sankaku_w_01.svg);
}
.recruit_2col_imgbox_type02::after{
    right: 0;
    background-position: right -1px top -1px;
    background-image: url(../img/cmn_sankaku_w_02.svg);
}
@media only screen and (max-width: 1000px) {
    .recruit_shokumu_2col{
        margin-top: 30px;
    }
    .recruit_2col{
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .recruit_2col_txtbox{
        position: static;
        top: auto;
        padding-left: 3%;
        padding-right: 3%;
        margin-top: 30px;
    }
    .recruit_2col_txtbox_type01{
        transform: none;
        left: auto;
    }
    .recruit_2col_txtbox_type02{
        transform: none;
        right: auto;
    }
    .recruit_shokumu_title_wrap{
        margin-bottom: 0;
    }
    /* .recruit_shokumu_2col_txtbox{
        top: 0;
    }
    .recruit_2col_txtbox_type01{
        transform: translate(-50%,0);
    }
    .recruit_2col_txtbox_type02{
        transform: translate(50%,0);
    } */
    .recruit_shokumu_2col_title{
        display: block;
        max-width: none;
    }
    .recruit_2col_maintxt{
        max-width: none;
    }
    .recruit_2col_imgbox{
        position: static;
        width: 100%;
        max-width: 700px;
        max-height: none;
        /* max-height: 400px; */
        margin-left: auto;
        margin-right: auto;
    }
    .recruit_2col_imgbox::after{
        display: none;
    }
}
.recruit_jinzai_list{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.recruit_jinzai_list_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 32%;
    max-width: 280px;
}
.recruit_jinzai_list_illust{
    order: -1;
    max-width: 70%;
}
@media only screen and (max-width: 800px) {
    .recruit_jinzai_list{
        justify-content: space-around;
        flex-wrap: wrap;
    }
    .recruit_jinzai_list_item{
        width: 44%;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}
@media only screen and (max-width: 560px) {
    .recruit_jinzai_list{
        display: block;
    }
    .recruit_jinzai_list_item{
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}
.recruit_staff_list_item{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.recruit_staff_list_imgbox{
    flex-shrink: 0;
    width: 48%;
}
.recruit_staff_list_txtbox{
    flex-shrink: 0;
    width: 46%;
    letter-spacing: 0.02em;
}
@media only screen and (max-width: 700px) {
    .recruit_staff_list_item{
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .recruit_staff_list_imgbox{
        width: 92%;
    }
    .recruit_staff_list_txtbox{
        width: 92%;
    }
    .recruit_staff_list_name{
        font-size: 1.8rem;
    }
}
.recruit_contact{
    position: relative;
    width: calc(100% - 100px);
    margin-left: auto;
    margin-right: auto;
    background-image: url(../img/recruit_contact_bg01.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.recruit_contact::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(24,90,222);
    background: linear-gradient(90deg, rgba(24,90,222,0.5) 0%, rgba(63,195,255,0.5) 100%);
}
.recruit_contact_conts{
    position: relative;
}
@media only screen and (max-width: 1000px) {
    .recruit_contact{
        width: calc(100% - 10%);
        /* width: 100%; */
        margin-bottom: 50px;
        background-position: right 38% center;
    }
    .recruit_contact_titile{
        font-size: 1.9rem;
    }
}


/* contact ///////////////////////////////////// */
.contact_body .cmn_maintitle{
    background-image: url(../img/contact_maintitle_bg.jpg);
}
@media only screen and (max-width: 560px){
    .contact_body .cmn_maintitle{
        background-position: right 36% center;
    }
}
.contact_bizinfo{
    display: flex;
    justify-content: space-between;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.contact_bizinfo_name{
    /* flex-shrink: 0; */
    color: #003C78;
    text-align: center;
}
.contact_bizinfo_list{
    display: flex;
    justify-content: space-between;
}
.contact_bizinfo_list_row{
    /* width: auto; */
}
.contact_bizinfo_list_row:nth-of-type(2){
    border-left: 1px solid var(--cb);
}
.contact_bizinfo_list_name{
    color: #0078CD;
}
.contact_bizinfo_list_address{
    font-style: normal;
}
@media only screen and (max-width: 800px){
    .contact_bizinfo{
        display: block;
    }
    .contact_bizinfo_name{
        margin-right: 0;
    }
    .contact_bizinfo_list{
        display: flex;
        margin-top: 40px;
    }
    .contact_bizinfo_list_row{
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }
}
@media only screen and (max-width: 560px){
    .contact_bizinfo_list{
        display: block;
    }
    .contact_bizinfo_list_row{
        /* padding-left: 5%;
        padding-right: 5%; */
    }
    .contact_bizinfo_list_row:nth-of-type(2){
        border-left: 0;
    }
    .contact_bizinfo_list_row + *{
        margin-top: 30px;
    }
}
/* お問い合わせフォーム */
.contact_formlist_row{
    align-items: center;
}
.contact_formlist_term{
    width: 230px;
    padding-left: 50px;
    padding-right: 15px;
    margin-right: 0;
}
.contact_formlist_term > *{
    order: 2;
}
.contact_formlist_term::after{
    content: '　';
    order: 1;
    display: inline;
    width: 0.8em;
    height: 0.8em;
}
.contact_formlist_term_message{
    align-self: center;
}
.contact_formlist_desc{
    padding-left: 15px;
    padding-right: 50px;
}
@media only screen and (max-width: 800px){
    .contact_formlist_term{
        padding-left: 0;
    }
    .contact_formlist_desc{
        padding-left: 0;
        padding-right: 0;
    }
}
.contact_formlist select,
.contact_formlist textarea,
.contact_formlist input[type="text"],
.contact_formlist input[type="tel"],
.contact_formlist input[type="fax"],
.contact_formlist input[type="email"]{
    padding: .4em .6em;
    border: 1px solid #E6E6E6;
    background-color: var(--cw);
    font-size: 1.6rem;
}
.contact_formlist input[type="text"],
.contact_formlist input[type="tel"],
.contact_formlist input[type="fax"],
.contact_formlist input[type="email"]{
    appearance: none;
    -webkit-appearance: none;
}
#zip,
#tel,
#fax,
#username,
#companyname,
#mail0,
#mail1,
#addr{
    height: 34px;
    /* height: 44px; */
}
#toiawase{
    height: 44px;
}
.postMark{
    display: inline-block;
    min-width: 20px;
    vertical-align: middle;
    margin: 0 6px 6px 0;
    text-align: center;
}
#zip{
    width: calc(100% - 20px - 6px);
    max-width: 326px;
    margin: 0 0 10px 0;
}
#tel,
#fax{
    width: 100%;
    max-width: 350px;
}
#username,
#companyname,
#addr{
    width: 100%;
    max-width: 630px;
}
#mail0,
#mail1{
    display: inline-block;
    width: calc(100% - 80px);
    max-width: 630px;
    margin-right: 10px;
}
#toiawase{
    width: 100%;
    max-width: 350px;
}
#message{
    width: 100% !important;
    max-width: 630px;
    height: 246px !important;
}
.contact_formlist_row_kibou,
.contact_formlist_row_kibou01,
.contact_formlist_row_kibou02,
.contact_formlist_row_kibou03{
    border-top: 0;
    border-bottom: 0;
}
.contact_formlist_row_kibou{
    padding-top: 30px;
    padding-bottom: 5px;
}
.contact_formlist_row_kibou01,
.contact_formlist_row_kibou02{
    padding-top: 5px;
    padding-bottom: 5px;
}
.contact_formlist_row_kibou03{
    padding-top: 5px;
    padding-bottom: 30px;
}
.contact_privacy{
    max-width: 800px;
    max-height: 200px;
    border: 1px solid #B0B0B0;
    margin-left: auto;
    margin-right: auto;
    overflow-y: auto;
    background-color: var(--cw);
}
.contact_privacy_check{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.contact_btn{
    width: 230px;
    height: 60px;
    padding-right: 30px;
    border: 0;
    appearance: none;
    background-image: url(../img/cmn_ico_arr_r_w.svg);
    background-repeat: no-repeat;
    background-position: right 24px center;
    background-size: auto 0.8em;
}
@media only screen and (max-width: 800px){
    #zip,
    #tel,
    #fax,
    #username,
    #companyname,
    #mail0,
    #mail1,
    #addr{
        height: 40px;
    }
    #toiawase{
        height: 40px;
    }
    .contact_formlist_row{
        display: block;
        padding: 20px 20px;
    }
    .contact_formlist_term{
        width: 100%;
        margin-right: 0;
    }
    .contact_formlist_desc{
        margin-top: 6px;
    }
    .contact_formlist_row_kibou{
        padding-top: 30px;
        padding-bottom: 12px;
    }
    .contact_formlist_row_kibou01,
    .contact_formlist_row_kibou02{
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .contact_formlist_row_kibou03{
        padding-top: 12px;
        padding-bottom: 30px;
    }
    .contact_formlist_term_message{
        margin-top: 0;
    }
}

