/*---共通CSS---------------------*/
body{
    font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
    --green: #006837;
    --yellowgreen: #8CC63F;
    --haiiro: #e0e0e0;
    --usuifont: #a7a7a7;
    margin: 0;
    padding: 0;
}
p{
    padding: 0;
    margin: 0;
}
.gather{/*右側に寄せるCSS*/
    width: calc(90% - 170px);
    width: -webkit-calc(90% - 170px);
    width: -moz-calc(90% - 170px);
    width: -ms-calc(90% - 170px);
    margin: 0 0 0 auto;
}
.sub_line{
    width: 75%;
    margin: 0 auto;
}
.width_840{
    max-width: 840px;
    margin: 0 auto 0 0;
}
.sec_title{
    display: table;
    width: calc(80% - 170px);
    width: -webkit-calc(80% - 170px);
    width: -moz-calc(80% - 170px);
    width: -ms-calc(80% - 170px);
    margin: 0 0 0 auto;
}
.sec_title .image{
    display: table-cell;
    height: 3em;
    vertical-align: middle;
    width: 100px;
    white-space: nowrap;
}
.sec_title img{
    max-height: 100%;
}
.sec_title p.en{
    display: table-cell;
    font-size: 1.5em;
    vertical-align: middle;
    width: 100px;
    white-space: nowrap;
    padding: 0 30px;
}
.sec_title .border{
    display: table-cell;
    background-image: url(../images/border.png);
    background-repeat: repeat-x;
    vertical-align: middle;
    background-position: 0 50%;
}
.sec_title img.sp{
    display: none;
}
#what .sec_title p.en,
#app .sec_title p.en,
#comment .sec_title p.en{
    color: #006837;
}
#news .sec_title p.en,
#advisory .sec_title p.en{
    color: #8CC63F;
}
p.en_sp{
    display: none;
}
.sp{
    display: none;
}


/*---ハンバーガーメニュー-----------*/
/* gmenu button sp (off) css */
.navToggle{
    font-size: 1.2em;
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 10px;
    top: 10px;
    width: 42px;
    height: 40px;
    cursor: pointer;
    z-index: 5;
    text-align: center;
    border: solid 2px #006837;
    border-radius: 6px;
    background-color: #f2f3ed;
}

.navToggle span{
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 30px;
    border-bottom: solid 3px #006837;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
}

.navToggle span:nth-child(1){
    top: 9px;
}

.navToggle span:nth-child(2){
    top: 18px;
}

.navToggle span:nth-child(3){
    top: 27px;
}

/* gmenu button sp (on) css */
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1){
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3){
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* gmenu nav sp (close) */
nav.globalMenuSp{
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    background-color: #006837;
    color: #ffffff;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
}

nav.globalMenuSp ul{
    background-color: #006837;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

nav.globalMenuSp ul li{
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #FFF;
}
nav.globalMenuSp ul li:first-child{
    background-color: #FFF;
    padding: 30px 0;
}

nav.globalMenuSp ul li:last-child{
    padding-bottom: 0;
}
nav.globalMenuSp .image{
    height: 80px;
    text-align: center;
}
nav.globalMenuSp .image img{
    max-height: 100%;
}

nav.globalMenuSp ul li a{
    display: block;
    color: #FFF;
    text-align: center;
    padding: 15px 0 15px 10px;
    text-decoration: none;
    font-weight: bold;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active{
    transform: translateY(0%);
}

/* gmenu nav sp (open) */
.global_nav.active{
    transform: translateY(0%);
}

#g_menu_sp_sec{
    display: none;
}
.sns_sp{
    overflow: hidden;
    width: 260px;
    margin: 0 auto;
}
.sns_sp a{
    display: block;
    float: left;
    width: 50px;
    margin-right: 40px;
}
.sns_sp a:last-child{
    margin: 0;
}
.sns_sp img{
    max-width: 100%;
}

/*---サイドバー-------------------*/
#sidebar ul{
    background-color: #006837;
    margin: 0;
    position: fixed;
    z-index: 3;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 10%;
    padding: 0;
    width: 170px;
    box-shadow: 5px 2px 5px 2px rgba(0, 0, 0, 0.5);
}
#sidebar li{
    list-style: none;
    text-align: center;
}
#sidebar .logo{
    width: 100px;
    margin: 80px auto;
}
#sidebar .logo img{
    max-width: 100%;
}
#sidebar .click{
    list-style: none;
    color: #006837;
    font-size: 1.2em;
    text-align: center;
    background: #FFF;
}
#sidebar  .click .nav{
    display: table;
    width: 100%;
    border-collapse: collapse;
}
#sidebar .click .row{
    display: table-row;
}
#sidebar .click a{
    display: table-cell;
    vertical-align: middle;
    height: 100px;
    border-top: #000 1px solid;
    border-bottom: #000 1px solid;
    color: #006837;
    text-decoration: none;
}
#sidebar .click a:hover{
    background-color: #CCC;
}
#sidebar .sns table{
    width: 100%;
    text-align: center;
    vertical-align: middle;
}
#sidebar .sns td{
    padding: 40px 0 0;
}
#sidebar .sns img{
    max-width: 40px;
    vertical-align: bottom;
}


/*---ヘッダー-------------------*/
#top{
    width: 100%;
}
#top .gather{
    display: table;
    height: 120px;
}
#top .image{
    display: table-cell;
    vertical-align: middle;
}
#top .image:nth-child(1){
    width: 70%;
    text-align: center;
}
#top .image:nth-child(2){
    width: 30%;
    text-align: left;
}
#top .image img:nth-child(1){
    vertical-align: bottom;
    max-height: 60px;
    max-width: 100%;
}
#top .image img:nth-child(2){
    vertical-align: bottom;
    max-height: 110px;
    max-width: 100%;
}
#header_image{
    background-image: url(../images/top_image.jpg);
    background-repeat: no-repeat;
    background-position: 50% 10%;
    background-attachment: fixed;
    background-size: cover;
    height: 800px;
    position: relative;
    max-width: 100%;
}
#header_image .image{
    text-align: center;
    position: absolute;
    left: calc(50% - 39px);
    left: -webkit-calc(50% - 39px);
    left: -ms-calc(50% - 39px);
    left: -mox-calc(50% - 39px);
    bottom: 100px;
    animation: scroll 2s ease 0s infinite alternate none running;
}
/*☆スクロールボタン_アニメーション☆*/
@keyframes scroll{
    0%{
        bottom: 100px;
    }
    50%{
        bottom: 60px;
    }
}


/*---ニアショアアワードとは？--------------*/
section#what,
section#news,
section#app,
section#advisory{
    padding: 60px 0;
}
#what{
    background-color: #8CC63F;
}
#what .sub_line{
    padding: 20px 0;
}

/*---お知らせ---------------------------*/
#news .news_area{
    border-top: #000 1px dashed;
    border-bottom: #000 1px dashed;
    padding-top: 20px;
    height: 230px;
    overflow: auto;
    scrollbar-base-color: #006837;
    scrollbar-track-color: #8CC63F;
}
#news .row{
    display: table;
    margin: 10px 0;
}
#news .date{
    display: table-cell;
    color: #006837;
    font-weight: bold;
    font-size: 1.2em;
    width: 115px;
}
#news .title{
    display: table-cell;
}


/*---応募要項---------------------------*/
#app{
    background-color: #8CC63F
}
#app a{
    color: #006837;
}
#app ul{
    margin: 10px 0;
    padding-left: 20px;
}
#app ol{
    margin: 10px 0;
    padding-left: 20px;
}
.app_area{
    background-color: #FFF;
    margin: 20px 0;
}
.app_area .yohaku{
    padding: 20px 40px;
}
.app_area th,
.app_area td{
    vertical-align: top;
    padding: 16px 0;
}
.app_area .entry_tokuten .image{
    display: block;
    width: 150px;
    margin: 10px 0;
}
.app_area .entry_tokuten img{
    width: 100%;
}
.app_area p.title{
    border: #006837 1px solid;
    width: 130px;
    margin-right: 20px;
    line-height: 50px;
    color: #006837;
    font-weight: bold;
}
.app_area .mailimage{
    height: 1.3em;
}
.app_area p.date{
    font-size: 2.8em;
    color: #006837;
    font-weight: bold;
    text-align: center;
}
.app_area p.date span.year{
    font-size: 0.8em;
}
.app_area p.limit{
    text-align: center;
    color: #006837;
}
.app_area .award{
    color: #006837;
    font-weight: bold;
    font-size: 1.3em;
}

/*---審査アドバイザー--------------------*/
.advisory_area p{
    margin: 10px 0;
    font-size: 1.1em;
    font-weight: bold;
}


/*---応援コメント--------------------*/
#background{
    background-color: #8CC63F;
    padding: 60px 0;
}
#comment .gather{
    padding: 20px 0 40px;
}
#comment .text{
    background-color: #FFF;
}
#comment .name{
    width: 90%;
    margin: 0 auto;
    padding: 15px 0 0;
    font-weight: bold;
    font-size: 1.2em;
    
}
#comment .text_line{
    width: 95%;
    margin: 0 auto;
    padding: 15px 0;
}


/*---後援・協力-------------------------*/
#involve .sec_title .subtitle{
    display: table-cell;
    font-size: 2em;
    font-weight: bold;
    color: #FFF;
    vertical-align: middle;
    width: 60px;
    white-space: nowrap;
}
#involve p.en{
    color: #006837;
}
#involve .logo_list{
    overflow: hidden;
    margin: 30px 0;
}
#involve .image{
    width: calc(840px / 4 - 20px);
    margin-right: 20px;
    float: left;
}
#involve .image:nth-child(4n){
    margin: 0;
}
#involve img{
    width: 100%;
}


/*---フッター--------------------------*/
#sns{
    width: 310px;
    margin: 0 auto;
    overflow: hidden;
    padding: 50px 0;
}
#sns .image{
    width: 50px;
    float: left;
    padding-right: 80px;
}
#sns .image:last-child{
    padding: 0;
}
#sns img{
    width: 100%;
}

.copyright{
    background-color: #e0e0e0;
    text-align: center;
    color: #a7a7a7;
    padding: 20px 0;
    font-weight: bold;
}


@media screen and (max-width:1410px){
    #sidebar{
        zoom:0.7;
        overflow: auto;
    }
    
    #sidebar .sns img{
        max-width: 35px;
    }
    #sidebar .logo{
        margin: 60px auto;
    }
    #sidebar .click a{
        height: 85px;
    }
    
    #support .image:nth-child(4){
        margin-right: 20px;
    }
}
@media screen and (max-width:1200px){/*タブレット以下*/
    .gather{
        width: 100%;
        margin: 0;
    }
    .width_840{
        max-width: 100%;
    }
    .sec_title{
        width: 87.5%;
        margin: 0 0 0 auto;
    }
    .sec_title p.en{
        display: none;
    }
    p.en_sp{
        display: block;
        font-size: 1.2em;
        width: 87%;
        margin: 0 0 0 auto;
        font-weight: bold;
    }
    
    #what p.en_sp,
    #app p.en_sp{
        color: #006837;
    }
    #news p.en_sp,
    #advisory p.en_sp{
        color: #8CC63F;
    }
    #involve p.en_sp,
    #comment p.en_sp{
        color: #006837;
    }
    .app_area p.date{
        font-size: 2em;
    }
    
    #support .image:nth-child(4){
        margin-right: 0;
    }
    
    /*ハンバーガーメニュー******/
    #sidebar{
        display: none;
    }
    #top .image:nth-child(2){
        display: none;
    }
    #globalMenuSp a{
        background: #006837;
        text-align: center;
        display: block;
    }
    #g_menu_sp_sec{
        display: block;
    }
    .click_show_1{
        display: none;
        background-color:  !important;
    }

    .click_show_1 li a{
        padding: 10px 0 10px 25px !important;
    }

    .click_show_2{
        display: none;
        background-color: #0f2144 !important;
    }

    .click_show_2 li a{
        padding: 10px 0 10px 25px !important;
    }
    
    /****トップ画像**********/
    #header_image{
        height: 600px;
        background-attachment: scroll;
    }
}
@media screen and (max-width:1093px){
    #support .image:nth-child(4){
        margin-right: 20px;
    }
}

@media screen and (max-width:857px){
    #top .gather{
        height: 100px;
        padding-bottom: 10px;
    }
    #top .image:nth-child(1){
        vertical-align: bottom;
    }
    #top .image img:nth-child(1){
        max-width: 90%;
    }
    
    
    .sub_line,
    .sec_title,
    p.en_sp{
        width: 90%;
        margin: 0 auto;
    }
    #what p.en_sp,
    #app p.en_sp{
        width: 90%;
        margin: 0 auto;
        border-bottom: #FFF 1px dashed;
    }
    .sp{
        display: inline;
    }
    
    #what .sec_title .image{
        height: 5em;
    }
    .sec_title .image{
        height: 2.5em;
    }
    .sec_title img.sp{
        display: block;
    }
    .sec_title img.pc,
    #what .sec_title .border,
    #news .sec_title .border,
    #app .sec_title .border,
    #advisory .sec_title .border{
        display: none;
    }
    
    .app_area .yohaku{
        padding: 0 15px;
    }
    .app_area th,
    .app_area td{
        display: block;
    }
    .app_area th{
        padding: 20px 0 0;
    }
    .app_area .entry_tokuten .image{
        margin: 10px auto;
    }
    .app_area p.title{
        width: 100%;
    }
    .app_area p.date{
        font-size: 1.8em;
    }
    .app_area td.award{
        text-align: center;
    }
    
    #involve .image{
        width: calc(50% - 10px);
        margin-right: 20px;
    }
    #involve .image:nth-child(2n){
        margin: 0;
    }
    
}

/****選定企業**********/
.companies td.maindiv {
	font-size: 2em; 
	color: #006837;
	border-bottom: #8CC63F dotted 4px;
}

.companies td.subdiv {
	font-size: large;
	font-weight: bold
}
.companies td.company_name {
	width: 51%;
	font-size: large;
}

.companies td.company_link {
	vertical-align: middle;
	padding-left: 2px;
}

.companies td.nv_logo {
	padding: 0 0 0 2px;
	vertical-align: middle;
}
.new-item  {
	background-color: red;
}
.new-item a {
	color: white !important;
}
.new-item a::before {
	content:"- new - \A";
	white-space: pre;
	position: relative;
    color: white;
    font-weight: bold;
}