@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

html{
    font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
}
body{
    font-size: 1.4rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', "Helvetica Neue", "Segoe UI", Arial,  Meiryo, メイリオ, sans-serif;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    color: #333;
    line-height: 1.8em;
    letter-spacing: 0.1em;
    background: #fff;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
		font-feature-settings: "pkna";
	}
}

/* common */
.no-gutter > [class*='col-'] {
    padding-right:0;
    padding-left:0;
}
.no-padding{
    padding-left: 0;
    padding-right: 0;
}
.center{
    text-align: center;
}
.mb40{
    margin-bottom: 40px;
}
.mb80{
    margin-bottom: 80px;
}
.mg50{
    margin: 80px auto;
}
.pd20{
    padding: 20px 0;
}
.pt60{
    padding-top: 60px;
}
.pt65 {
	padding-top: 65px;
}
.pt70{
    padding-top: 80px;
}
.pt80{
    padding-top: 80px; 
}
.pb45{
    padding-bottom: 45px;
}
.pb50{
    padding-bottom: 50px;
}
.pb60{
    padding-bottom: 60px;
}
.pb70{
    padding-bottom: 70px;
}
.pb80{
    padding-bottom: 90px;
}
.ellipsis{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.ellipsis_pc{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.ellipsis_pc span{
    display:inline;
}
img{
    max-width: 100%;
}
a{
    color: #333;
}
.fright{
    float: right!important;
}
.right{
    text-align: right;
}
.left{
    text-align: left;
}
.relative{
    position: relative;
}
.recruit form input{
	 margin-right: 5px !important;
}
button,a, a img {
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    /* background: transparent; */
}
button:hover img,a:hover, a img:hover {
    /* opacity: 0.7; */
}
button:active,button:focus{
    outline: none;
}

@media screen and (max-width: 844px) {
	#chpoint {
		padding-top: 100px;
	}
	#media-business {
		padding-bottom: 0;
	}
}

@media screen and (max-width: 768px) {
    a.tel, a.mail {
        pointer-events: auto;
    }
}
input[type="text"],
input[type="tel"],
input[type="email"]{
    line-height: 18px;
    vertical-align: middle;
    padding: 4px;
    border:1px solid #B3CED7;
    background: rgba(255,255,255,0.5);
    margin-bottom: 2em;
    width: 100%;
    color: #111;
}
textarea{
    padding: 4px;
    border:1px solid #B3CED7;
    height: 8em;
    width: 100%;
    background: rgba(255,255,255,0.5)!important;
    color: #111;
}
.mark,.errMsg{
    color:red;
    background: transparent;
}
button{
    border: none;
    background: none;
    
}
form{width: 100%;}
.ggmap {
    position: relative;
    padding-bottom: 30%;
    height: 0;
    overflow: hidden;
    margin: 20px auto;
    width: auto;
    width: 100%;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.circlebt{
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #3EBA2B;
    color: #fff;
    display: inline-block;
    font-size: 2rem;
    line-height: 40px;
    vertical-align: middle;
    text-align: center;
}
.roboto{
    font-family: 'Roboto', sans-serif;
    word-spacing: 1px;
    font-weight: 100;
    font-size: 1.5rem;
}
.mt-30,.mt-60{
    margin-top: -60px;
    margin-bottom: 50px;
}
.mt-90{
	margin-top: -60px;
}
.row-eq-height {
    display: flex;
    flex-wrap: wrap;
}
i{
    margin-left: auto;
    margin-right: auto;
}
.go-animation,.go-animation2,
.animation,.animation2,
.animation3,.animation4{
    visibility: hidden;
}
.fadeInDown {
    -webkit-animation-fill-mode:both;
    -ms-animation-fill-mode:both;
    animation-fill-mode:both;
    -webkit-animation-duration:1s;
    -ms-animation-duration:1s;
    animation-duration:1s;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    visibility: visible !important;
}
@-webkit-keyframes fadeInDown {
    0% { opacity: 0; -webkit-transform: translateY(-20px); }
    100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInDown {
    0% { opacity: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); }
    100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}
.fadeInUp {
    -webkit-animation-fill-mode:both;
    -ms-animation-fill-mode:both;
    animation-fill-mode:both;
    -webkit-animation-duration:1s;
    -ms-animation-duration:1s;
    animation-duration:1s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    visibility: visible !important;
}
@-webkit-keyframes fadeInUp {
    0% { opacity: 0; -webkit-transform: translateY(20px); }
    100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInUp {
    0% { opacity: 0; -webkit-transform: translateY(20px); -ms-transform: translateY(20px); transform: translateY(20px); }
    100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}
.fadeInLeft {
    -webkit-animation-fill-mode:both;
    -ms-animation-fill-mode:both;
    animation-fill-mode:both;
    -webkit-animation-duration:1s;
    -ms-animation-duration:1s;
    animation-duration:1s;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    visibility: visible !important;
}
@-webkit-keyframes fadeInLeft {
    0% { opacity: 0; -webkit-transform: translateX(-20px); }
    100% { opacity: 1; -webkit-transform: translateX(0); }
}
@keyframes fadeInLeft {
    0% { opacity: 0; -webkit-transform: translateX(-20px); -ms-transform: translateX(-20px); transform: translateX(-20px); }
    100% { opacity: 1; -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); }
}
.fadeInRight {
    -webkit-animation-fill-mode:both;
    -ms-animation-fill-mode:both;
    animation-fill-mode:both;
    -webkit-animation-duration:1s;
    -ms-animation-duration:1s;
    animation-duration:1s;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    visibility: visible !important;
}
@-webkit-keyframes fadeInRight {
    0% { opacity: 0; -webkit-transform: translateX(20px); }
    100% { opacity: 1; -webkit-transform: translateX(0); }
}
@keyframes fadeInRight {
    0% { opacity: 0; -webkit-transform: translateX(20px); -ms-transform: translateX(20px); transform: translateX(20px); }
    100% { opacity: 1; -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); }
}
.delay-05s { animation-delay: 0.5s; -webkit-animation-delay: 0.5s; }
.delay-1s { animation-delay: 1s; -webkit-animation-delay: 1s; }
.delay-15s { animation-delay: 1.5s; -webkit-animation-delay: 1.5s; }
.delay-20s { animation-delay: 2s; -webkit-animation-delay: 2s; }

nav.navbar{
    padding: 10px;
    background: transparent; /* #242830 */
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
}
.navbar-brand{
    padding: 0;
    margin: 6px 0 0;
    height: 24px;
    position: relative;
    z-index: 99999999;
}
.navbar-brand img{
    height: 24px;
}
.navbars{
    position: absolute;
    top: 5px;
    right: 10px;
    width: 100%;
    text-align: right;
    margin: 0;
    padding: 0;
}
.nav-item{
    display: inline-block;
    margin-top: 10px;
    height: 30px;
    line-height: 30px;
}
.nav-link{
    padding: 0 8px;
    margin: 0;
    font-weight: bold;
    color: #fff;
}
.nav-link:hover{
    color: #3EBA2B;
}
#nav-toggle{ display: none; }
.sp-view{display: none;}
.sp-none{display: inline-block;}
h1{
    font-family: 'Roboto', sans-serif;
    font-size: 4.4rem;
    word-spacing: 1px;
    font-weight: 100;
    padding: 100px 0 23px;
    line-height: 70px;
}
h2{
    font-size: 1.6rem;
    line-height: 1.8em;
}
body .arial{
    font-family: Arial !important;
}

/* layout */
main{
    padding-bottom: 40px;
}
#home main{
    background: #F5F5F5;
}
#appearance{
    padding-top: 80px;
    background: #F5F5F5;
}
#appearance h2{
    font-size: 2.4rem;
}
.row{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
#mv{
    background: url(../images/mv_bg.jpg) no-repeat center -50px fixed;
    background-size: cover;
    padding: 160px 0 140px;
    color: #fff;
    overflow: hidden;
    position: relative;
}
#home #mv{
    padding: 200px 0 310px;
}
#mv p{
    margin-bottom: 20px;
}
.newscol{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    padding: 10px;
    text-align: center;
}
.news_tag{
    color: #333;
    line-height: 24px;
    margin-right: 0.5em;
    display: inline-block;
}
.news_tag span{
    display: inline-block;
    height: 20px;
    margin: 0 1em 0 0;
    line-height: 20px;
    vertical-align: middle;
    width: 120px;
    color: #fff;
    font-size: 80%;
    overflow: hidden;
    padding: 0 8px;
    border-radius: 10px;
    text-align: center;
}
.news_tag.topics span{
    background: #003D5C;
}
.news_tag.tv span{
    background: #206b32;
}
.news_tag.magazin span{
    background: #661f66;
}
.news_tag.net span{
    background: #c3c916;
}
.news_tag.radio span{
    background: #775706;
}
.news_tag.newspaper span{
    background: #3085a1;
}
.news_tag.press span{
    background: #A13058;
}
.news_text{
    color: #333;
    line-height: 24px;
    vertical-align: middle;
    display: inline-block;
}
.album{
    background: url(../images/service-bg.jpg) no-repeat center fixed;
    background-size: cover;
    overflow: hidden;
    padding: 100px 0;
}
.album h2{
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    word-spacing: 1px;
    font-weight: 100;
    padding: 0;
    line-height: 70px;
    text-align: center;
    color: #fff;
}
.album h3{
    text-align: center;
    font-size: 1.6rem;
    font-weight: 300;
    color: #000;
    padding: 16px 0;
    font-family: Arial,  Meiryo, メイリオ, sans-serif;
}
.album p{
    color: #000;
    font-size: 1.2rem;
}
.card-body{
    position: relative;
    padding-bottom: 80px;
}
.pb20 {
    padding-bottom: 20px;
}
.ignitebox{
    position: absolute;
    bottom: 10px;
    left: 0;
    text-align: center;
    width: 100%;
    height: 70px;
}
.ignite-btn{
    padding: 10px 40px;
    color: #47B604;
    border: solid 1px #47B604;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}
.ignite-btn:hover, .ignite-btn:focus, .btn-recruit:hover, .btn-recruit:focus  {
    color: #BF1E56;
    border: solid 1px #BF1E56;
    cursor: pointer;
}
.btn-recruit {
    padding: 10px 40px;
    color: #47B604;
    border: solid 1px #47B604;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 15px 0;
}
.wantedly a:hover {
    transition: 0.5s;
    opacity: 0.5;
}
.wantedly .img-wantedly {
	max-width:500px;
	width: 100%;
}
footer{
    padding: 40px 0 20px;
}
.sns{
    list-style: none;
    margin: 0 0 20px;;
    padding: 10px;
    text-align: center
}
.sns li{
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #242830;
    color: #fff;
    display: inline-block;
    font-size: 1.7rem;
    line-height: 40px;
    vertical-align: middle;
    text-align: center;
    margin: 0 4px;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.sns li:hover{
    background: #3EBA2B;
}
.sns li a{
    display: block;
    color: #fff;
}
.sns li a i{
    margin-left: 2px;
}
.sns li:hover a,.sns li a:hover{
    color: #fff;
}
.card-img-top{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.hover-parent {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.hover-mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(100, 194, 158, 0.8);
    opacity: 0;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 30px;
    transition: all 0.6s ease;
    padding-top: 0;
    text-align: center;
    font-size: 2.4rem;
}
.hover-parent:hover .hover-mask {
    padding-top: 30px;
    opacity: 1;
}
.card-img-top img {
    margin-left: -16%;
    transition: 0.5s;
    width: 120%;
    max-width: 120%;
    display: inline;
}
.hover-parent:hover img {
    -webkit-transform: translateX(10%);
    -moz-transform: translateX(10%);
    -ms-transform: translateX(10%);
    -o-transform: translateX(10%);
}
.row-eq-height .col-md-4{
    visibility: hidden;
}
.heading{
    margin-bottom: 40px;
}
.heading p{
    font-size: 2.4rem;
}
.GourmetBiz{
    color:#333;
    font-family:"Lucida Grande", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight:bold;
}
.VENTURENOW{
    color:#333;
    font-family:"Open Sans", "Helvetica Neue", Arial, sans-serif;
    font-weight:bold;
    text-transform:uppercase;
}
.appearance{
    font-size: 2rem;
}
.appearance img{
    height: 20px;
}
.appearance span{
    display: inline-block;
    margin: 20px;
}
.topicpath{
    background: #F5F5F5;
}
.topicpath ol{
    display: block;
    margin: 0;
    padding: 0;
    text-align: left;
    list-style: none;
    color: #000;
}
.topicpath span{
    font-size: 1rem;
    display: inline-block;
    margin: 0 0.5em;
}
.topicpath ol li{
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    margin-right: 1em;
    color: #000;
}
.news_content h2{
    margin-top: 1em;
    font-size: 2.2rem;
}
.service h2{
    font-size: 2.8rem;
}
.service h3{
    font-size: 1.4rem;
    margin-bottom: 30px;
}
.service .service3 h3{
    font-size: 2.8rem;
}
.opacity:hover{
    opacity: 0.7;
    cursor: pointer;
}
.company dl{
    border-bottom: 1px solid #ddd;
}
/*　*/
.company h2{
    font-size: 2.8rem;
}

.recruit h2{
    font-size: 2.8rem;
}
.accordion h3{
    margin: 0;
}
.accordion .card-header{
    overflow: hidden;
    display: inline-block;
    width: 100%;
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion .card-header a[data-toggle="collapse"] {
    display: block;
    padding: 1.25rem;
    margin: -1.25rem;
}
.accordion .card-header a[data-toggle="collapse"]:active,
.accordion .card-header a[data-toggle="collapse"]:hover,
.accordion .card-header a[data-toggle="collapse"]:focus {
    text-decoration: none;
}
.accordioncol{
    margin-bottom: 2em;
}
#recruits{
    background: #F5F5F5;
}
.recruit table{
    width: 100%;
}
.recruit th{
    vertical-align: top!important;
    padding-right: 2rem;
    padding-top: 1rem;
    white-space: nowrap;
}
.recruit td{
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
}
.recruit form{
    position: relative;
    padding-bottom: 100px;
}
.recruit form table th{
    line-height: 38px;
    text-align: right;
}
.recruit form table td{
    border: none;
	 text-align: left;
}
.recruit form input[type=text],
.recruit form input[type=tel],
.recruit form input[type=email],
.recruit form input[type=url]{
    font-size: 16px;
    padding: 10px;
    line-height: 16px;
    height: 36px;
}
.recruit form textarea{
    font-size: 16px;
    padding: 10px;
    line-height: 16px;
    height: 72px;
}
.contact form input[type=text],
.contact form textarea{
    padding: 20px;
    height: 56px;
    background: rgba(255, 255, 255, 0.8)!important;
    border: solid 1px #fff;
}
.contact form textarea{
    height: 12em!important;
    line-height: 20px;
}
.contact form input::-webkit-input-placeholder,
.contact form textarea::-webkit-input-placeholder {
    color: #999;
    font-weight: normal;
}
.contact form input:-ms-input-placeholder,
.contact form textarea:-ms-input-placeholder {
    color: #999;
    font-weight: normal;
}
.contact form input::-moz-placeholder,
.contact form textarea::-moz-placeholder {
    color: #999;
    font-weight: normal;
}
#form_bt {
    background: rgba(61, 201, 179, 0.5);
    border: solid 1px rgba(61, 201, 179, 0.5);
    padding: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    width: 100%;
    cursor: pointer;
}
#form_bt:hover {
    background: rgba(61, 201, 179, 1);
    border: solid 1px rgba(61, 201, 179, 0.8);
    color: #fff;
}
.input-group-btn{
    font-size: 16px;
    line-height: 16px;
    height: 36px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-border-radius: 0 4px 4px 0 / 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0 / 0 4px 4px 0;
    border-radius: 0 4px 4px 0 / 0 4px 4px 0;
    background: #3EBA2B;
}
.input-group-btn button{
    font-size: 16px;
    line-height: 16px;
    padding: 10px;
    height: 36px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-border-radius: 0 4px 4px 0 / 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0 / 0 4px 4px 0;
    border-radius: 0 4px 4px 0 / 0 4px 4px 0;
    color: #fff;
}
.filefield{
    -webkit-border-radius: 4px 0 0 4px / 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px / 4px 0 0 4px;
    border-radius: 4px 0 0 4px / 4px 0 0 4px;
}
.recruit form input[type=radio],
.recruit form input[type=checkbox],
.recruit form label{
    height: 36px;
    line-height: 36px;
    vertical-align: middle;
    display: inline-block;
    margin: 0;
}
.recruit form .question label{
    display: block;
    width: 100%;
    height: auto;
    margin-top: 4px;
}
.question label input[type=text]{
    display: inline-block;
    width: auto;
    height: 36px;
    margin: 0;
}
.bgglay{
    background: #F5F5F5;
    padding-bottom: 0;
}
.contact{
    background: url(../images/contact-bg.jpg) no-repeat center fixed;
    background-size: cover;
    color: #fff;
    overflow: hidden;
    margin-top: -110px;
}
.recruit form .question .recruit_question_text{
    width: 100%;
    max-width: 500px;
}

/* 〜767px sp-style */
@media screen and (max-width: 768px) {
    .row{
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0 auto;
    }
    .ggmap {
        padding-bottom: 50%;
    }
    .ellipsis_pc{
        overflow: visible;
        white-space: normal;
        text-overflow: none;
    }
    #nav-toggle{
        display: block;
        width: 30px;
        height: 30px;
        color: #fff;
        position: fixed;
        top:10px;
        right: 10px;
        cursor: pointer;
        z-index: 999999999;
        padding: 0;
        margin: 0;
    }
    nav.navbar ul li a:focus { text-decoration: none; color: #003D5C; }
    #nav-toggle span, #nav-toggle span:before, #nav-toggle span:after { cursor: pointer; border-radius: 1px; -moz-border-radius: 1px; -webkit-border-radius: 1px; -o-border-radius: 1px; height: 2px; width: 30px; background: #fff; position: absolute; display: block; content: ''; }
    #nav-toggle span:before { top: -10px; }
    #nav-toggle span:after { bottom: -10px; }
    #nav-toggle span, #nav-toggle span:before, #nav-toggle span:after { transition: all 500ms ease-in-out; -webkit-transition: all 500ms ease-in-out; -moz-transition: all 500ms ease-in-out; -o-transition: all 500ms ease-in-out; }
    #nav-toggle.active{
        top:10px;
    }
    #nav-toggle.active span:before, #nav-toggle.active span:after { background: #3EBA2B;}
    #nav-toggle.active span { background-color: transparent; }
    #nav-toggle.active span:before, #nav-toggle.active span:after { top: 0;}
    #nav-toggle.active span:before { transform: rotate(45deg); -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); }
    #nav-toggle.active span:after { transform: translateY(-10px) rotate(-45deg); -webkit-transform: translateY(-10px) rotate(-45deg); -ms-transform: translateY(-10px) rotate(-45deg); top: 10px; }
    .menu-trigger,
    .menu-trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }
    .menu-trigger {
        position: relative;
        width: 30px;
        height: 30px;
    }
    .menu-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #fff;
        border-radius: 4px;
    }
    .menu-trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(0px) rotate(-360deg);
        transform: translateY(0px) rotate(-360deg);
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger.active span:nth-of-type(3) {
        -webkit-transform: translateY(-20px) rotate(360deg);
        transform: translateY(-20px) rotate(360deg);
    }
    .navbars{
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        text-align: left;
        margin: 0;
        padding: 0;
        height: auto;
        width: 100%;
        background: rgba(255,255,255,.9);
        padding-top: 50px;
        overflow: visible;
    }
    .navbars:before{
        display: block;
        width: 100%;
        height: 24px;
        position: fixed;
        top: 19px;
        left: 11px;
        background: url(../images/logo-g.png) no-repeat left;
        background-size: auto 24px;
        content: "";
        z-index: 999999999;
    }
    .nav-item{
        display: block;
        width: 100%;
        margin-top: 10px;
        height: 60px;
        line-height: 60px;
        text-align: center;
        border-bottom: 1px #3EBA2B solid;
    }
    .nav-link{
        padding: 0 8px;
        margin: 0;
        font-weight: bold;
        font-size: 1.4rem;
        color: #3EBA2B;
    }
    .nav-link:hover{
        color: #3EBA2B;
    }
    #mv{
        background: url(../images/mv_bg.jpg) no-repeat center;
        background-size: cover;
        padding: 0 0 100px;
        height: auto;
        margin: 0;
    }
    #home #mv{
        padding: 100px 0 0 0;
        height: 100vh;
    }
    h1{
        font-size: 3.4rem;
        word-spacing: 1px;
        font-weight: 100;
        padding: 140px 0 23px;
        line-height: 44px;
        width: 60%;
        margin: 0 auto;
        display: block;
    }
    #home h1{
        padding: 50px 0 23px;
    }
    .pt60{
        padding-top: 10px;
    }
    .pt70{
        padding-top: 90px;
    }
    #policy p{
        word-break: break-all;
    }
    .sp-view{
        display: inline-block;
    }
    .sp-none{
        display: none;
    }
    #recruit{
        padding-top: 100px;
    }
    .mt-60{
        margin-top: -90px;
        margin-bottom: 80px;
    }
    .newscol{
        text-align: left;
    }
    .heading{
        margin-top: 40px;
    }
    #recruits th,
    #recruits td,
    .accordion th,
    .accordion td{
        display: block;
        width: 100%;
    }
    #recruits th{
        text-align: left;
    }
    .service h2{
        font-size: 2.4rem;
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"]{
        margin-bottom: 1em;
    }
    .recruit_question_text{
        width: 100%!important;
    }
    .sppt80{
        padding-top: 80px;
    }
}
.top-table dt{
	font-size: 1.6rem;
    line-height: 2.8em;
}
/* */
    .company h2{
        font-size: 2.4rem;
    }
#c-bns button:first-child,#s-bns button:first-child {
    background: #4BBC06!important;
}
/*カテゴリーページ*/
.archive_link{
	margin-top: -35px;
}
.archive_link_1{
	margin-bottom:30px;
}
.archive_link_1 li,.archive_link_2 li{
	list-style:none;
	padding: 8px 10px;
   border-bottom: 1px solid #7373;
}
.archive_link_1 a:hover,.archive_link_2 a:hover{
	color:inherit;
	text-decoration: none;
	opacity:0.6;
	transition:0.3s;
}
.archive_link_1 .title ,.archive_link_2 .title {
	font-weight:bold;
	font-size:18px;
	padding: 10px 10px;
   border-bottom: 1px solid #333;
}
@media screen and (max-width: 991px) {
	.archive_link{
		margin-top:30px;
	}
	.archive_link_1 ul{
	 padding-left: 100px;
    padding-right: 50px;
	}
	.archive_link_2 ul{
	padding-right: 150px;	
		padding-left: 0px;
	}
}
@media screen and (max-width: 767px) {
	.archive_link_1 ul{
    padding-left: 0px;
	}
	.archive_link_2 ul{
	padding-right: 50px;
	padding-left:0px;
	}	
}
@media screen and (max-width: 575px) {
	.archive_link{
		width:90%;
	}
	.archive_link_1 ul{
    padding-left: 0px;
    padding-right: 0px;		
	}
	.archive_link_2 ul{
	padding-right: 0px;		
	padding-left:0px;
	}	
}