/*------------------------
        基本設定
------------------------*/
*{
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", sans-serif;
}

*,
*::before,
*::after{
    box-sizing: border-box;
    font-weight: 500;
}


.hr1 {
  border-top: 1px dashed #aaa;
}

#head{
    width: 100%;
}

header, #main, .breadcrumbs{
    width: 1000px;
    margin: 0 auto;
}

.section{
    margin-bottom: 70px;
}
.section-close{
    margin-bottom: 10px;
}

img{
    max-width: 100%;
}

body, p{
    font-size: 16px;
    line-height: 190%;
}

article{
    position: relative;
}

.sp{
    display: none;
}

h1{
    padding-bottom: 16px;
    margin-bottom: 20px;
    font-size: 1.25em;
    border-bottom: 1px solid #000;
}

h1 span{
    padding-left: 8px;
    border-left: 4px solid #db4444;
    font-weight: bold;
}

h5{
    font-size: 1.3em;
    border-bottom: 1px solid #000;
    margin-bottom: 15px;
    padding-bottom: 10px;
}
h5 span{
    padding-left: 8px;
    border-left: 4px solid #db4444;
    font-weight: bold;
}

h3{
    font-size: 1.625em;
    border-left: 4px solid #db4444;
    padding-left: 8px;
    white-space: nowrap;
}

.small{
    font-size: 0.85em;
    line-height: 18px;
}

.big{
    font-size: 1.4em;
    line-height: 18px;
}

.f90 {
    font-size: 90%;
    display: block;
    padding-top: 0px;
}

.f80 {
    font-size: 80%;
    display: block;
    padding-top: 0px;
}

.bold{
    font-weight: bold;
}

.page_top {
    float: right;
    display: block;
    margin-bottom: 16px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

.page_top:before{
    content: "▲";
    color: #db4444;
}
/*------------------------
        ヘッダー
------------------------*/
header{
    position: fixed;
    top: 0;
    z-index: 3;
    width: 100%;
    padding: 10px 0;
    background: #fff;
}

header:after{
    content: "";
    display: block;
    clear: both;
}

#header_inner{
    width: 1000px;
    margin: 0 auto;
}

header img{
    float: left;
    margin-right: 20px;
}

.menu:after{
    content: "";
    display: block;
    clear: both;
    height: 100%;
}



.menu li{
    float: left;
    display: table;
    height: 48px;
    margin-right: 28px;
    vertical-align: middle;
}

.menu li a{
    display: table-cell;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    vertical-align: middle;
}

.menu li a:after {
    content: "▼";
    display: inline-block;
    margin-left: 3px;
    color: #db4444;
}

.menu li a:hover{
    opacity: 0.8;
}

nav{
    float: left;
    display: block;
}

#head_btn{
    float: right;
    margin-top: 8px;
    padding: 4px 16px;
    background: #db4444;
}

#head_btn:hover{
    opacity: 0.8;
}

#head_btn a{
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

#menu_btn{
    position: relative;
}

.menu-trigger, .menu-trigger span{
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    cursor: pointer;
}

.menu-trigger{
    position: absolute;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 2;
}

.menu-trigger span{
    position: absolute;
    left: 0;
    right: 0;
    width: 30px;
    height: 2px;
    margin: auto;
    background: #000;
}

.menu-trigger span:nth-of-type(1){
    top: 15px;
}

.menu-trigger span:nth-of-type(2){
    top: 0;
    bottom: 0;
}

.menu-trigger span:nth-of-type(3){
    bottom: 15px;
}

.menu-trigger.active span:nth-of-type(1){
    transform: translateY(9px) rotate(-45deg);
    -webkit-transform: translateY(9px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2){
    opacity: 0;
}

.menu-trigger.active span:nth-of-type(3){
    transform: translateY(-9px) rotate(45deg);
    -webkit-transform: translateY(-9px) rotate(45deg);
}

/*------------------------
        パンくず
------------------------*/
.breadcrumbs {
    margin-bottom: 40px;
    padding-top: 68px;
}
.breadcrumbs a {
    font-size: 0.8em;
    color: #605e5e;
    text-decoration: none;
}
.breadcrumbs a span {
    font-weight: normal;
}

/*------------------------
        メインビジュアル
------------------------*/
#main_visual{
    padding-top: 68px;
    width: 100%;
}

#main_visual img.pc{
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 1800px;
}

#head_catch{
    display: table;
    margin: 0 auto 20px;
    width: 100%;
    height: 50px;
    max-width: 1800px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    background: #db4444;
}

#head_catch span{
    display: table-cell;
    margin-bottom: 0;
    font-size: 1.3em;
    vertical-align: middle;
}


#head_catch a{
    display: inline;
	color: #fff;
	text-decoration: underline;
}

#head_catch br {
    display: none;
}

/*------------------------
        臨時ニュース（2020年５月追加）
------------------------*/
.note {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    color: #db4444;/*文字色*/
    background: #FFF;
    border: solid 2px #db4444;/*線*/
    border-radius: 5px;/*角の丸み*/
}
.note p {
    margin: 0; 
    padding: 0;
}

.note2 {
	width: 80%;
	text-align: center;
    padding: 0.5em 1em;
    margin: 2em auto;
    font-weight: bold;
    color: #db4444;/*文字色*/
    background: #FFF;
    border: solid 2px #db4444;/*線*/
    border-radius: 5px;/*角の丸み*/
}
.note2 p {
    margin: 0 auto; 
    padding: 0;
}

/*------------------------
      MOVIE BUNNER
------------------------*/
.movie_bunner {
    margin: 15px 0px;
	text-align: center;
}
.movie_bunner img {
    width: 450px;
    height: auto;
}


/*------------------------
        リンクボタン
------------------------*/
.links-btn-area {
    margin: 15px 0px;
}
.links-btn-area p {
    text-align: center;
    color: #fff;
    text-decoration: none;
    background: #db4444;
    border-radius: 4px;
}
.links-btn-area p:hover {
    opacity: 0.8;
}
.links-btn-area > p:first-of-type {
    width: 560px;
    height: 40px;
    margin: 0 auto 10px;
}
.links-btn-area-bottom  {
    display: flex;
    justify-content: center;
}
.links-btn-area-bottom p {
    width: 560px;
    height: 40px;
}
.links-btn-area-bottom p:first-of-type {
    margin-right: 0px; 
}
.links-btn-area a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
}
.links-btn-area a span {
    display: inline;
    vertical-align: -22%;
}

.links-btn-area2 {
    margin: 0px 0px 30px 0px;
}
.links-btn-area2 p {
    text-align: center;
    color: #fff;
    text-decoration: none;
    background: #db4444;
    border-radius: 4px;
}
.links-btn-area2 p:hover {
    opacity: 0.8;
}
.links-btn-area2 > p:first-of-type {
    width: 250px;
    height: 40px;
    margin: 0 auto 10px;
}
.links-btn-area-bottom2  {
    display: flex;
    justify-content: center;
}
.links-btn-area-bottom2 p {
    width: 250px;
    height: 40px;
}
.links-btn-area-bottom2 p:first-of-type {
    margin-right: 0px; 
}
.links-btn-area2 a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
}
.links-btn-area2 a span {
    display: inline;
    vertical-align: -22%;
}

/*------------------------
        REDボタン
------------------------*/
.red-btn-area {
    margin: 15px 0px;
}
.red-btn-area p {
    text-align: center;
    color: #fff;
    text-decoration: none;
    background: #db4444;
    border-radius: 4px;
    line-height: 1.4em;
    padding: 8px;
}

.red-btn-area > p:first-of-type {
    width:85%;
    height: auto;
    margin: 0 auto;
}
.red-btn-area-bottom  {
    display: flex;
    justify-content: center;
}
.red-btn-area-bottom p {
    width: 560px;
    height: 60px;
}
.red-btn-area-bottom p:first-of-type {
    margin-right: 0px; 
}
.red-btn-area a {
    display: inline;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
}
.red-btn-area a span {
    display: inline;

}


/*------------------------
        お知らせ
------------------------*/
#news ul{
    border: 1px solid #000;
    padding: 20px 20px 0 20px;
}

#news ul li{
    margin-bottom: 20px;
}

#news ul li a{
    text-decoration: none;
    color: #000;
    display: block;
    height: 100%;
}

#news ul li a:first-of-type{
    display: inline;
    text-decoration: underline;
    color: #1111cc;
}

#news ul li a:first-of-type:hover{
    text-decoration: none;
}

.time{
    margin-right: 16px;
    color: #db4444;
}

/*------------------------
        開催概要
------------------------*/
#info h3{
    margin-bottom: 18px;
}

.info_in_right, .info_in_left{
    width: 360px;
}

.info_img_left{
    margin: 50px 0 60px;
}

.info_img_left img.pc{
    float: left;
    margin-left: -0px;
}

.info_img_left:after, .info_img_right:after{
    content: "";
    display: block;
    clear: both;
}

.info_in_right{
    float: right;
}

.info_img_right img.pc{
    float: right;
    margin-right: -0px;
}

.info_btn{
    margin-top: 8px;
    padding: 0 36px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    background: #db4444;
    border-radius: 6px;
}

.info_btn:hover{
    opacity: 0.8;
}


/*------------------------
        賞
------------------------*/
#grand{
    border: 1px solid #ccc;
    padding-bottom: 16px;
    margin-bottom: 40px;
}

#grand > p{
    margin-bottom: 16px;
    padding: 8px;
    color: #fff;
    font-size: 1.2em;
    text-align: center;
    font-weight: bold;
    background: #db4444;
}

#grand dl{
    width: 646px;
    margin: 0 auto;
}

#grand dl dt, #grand dl dd{
    display: inline-block;
}

#grand dl dt{
    font-size: 1.2em;
    font-weight: bold;
}

#grand dl dt span{
    font-weight: bold;
}

#grand dl dt span:before{
    content: "\25A0";
    color: #db4444;
}

#grand dl dt span:after{
    content: "";
    display: inline-block;
    border-top: 1px solid #ccc;
    height: 7px;
    margin: 0 8px 0;
}

#grand dl:nth-child(2) dt span:after{
    width: 150px;
}

#grand dl:nth-child(4) dt span:after{
    width: 189px;
}

#grand dl:nth-child(3) dt span:after{
    width: 73px;
}

#awades_lest{
    margin-bottom: 40px;
}

#awades_lest:after{
    content: "";
    display: block;
    clear: both;
}

#award_left{
    width: 50%;
    float: left;
	border-right: 1px solid #ccc;
	padding-right: 20px;
}

#award_right{
    width: 50%;
    float: right;
	padding-left: 20px; 
}

#award_left > div , #award_right > div{
    margin-bottom: 24px;
}

.award p{
    font-size: 1.2em;
    font-weight: bold;
}

.award p:before{
    content: "●";
    color: #db4444;
}

.award span{
    display: block;
}

.award:nth-child(4) span:nth-child(3){
    margin-bottom: 16px;
}

/*------------------------
        応募要項
------------------------*/
.apply_info{
    margin-bottom: 40px;
}

.apply_info dt span{
    padding: 4px 16px;
    color: #fff;
    font-weight: bold;
    background: #db4444;
    border-radius: 4px;
}

.apply_info dt p{
    font-size: 1.375em;
    font-weight: bold;
}

#category{
    margin-bottom: 10px;
    padding: 10px 20px;
    background: #fafafa;
    border: 1px solid #000;
}

#category dl dt{
    font-weight: bold;
    font-size: 14px;
}

#category dl dt:before{
    content: "\25A0";
    color: #db4444;
}

#category dl dd{
    font-size: 0.96em;
    font-weight: bold;
}

#apply_btn_wrap{
    margin: 0 auto;
    display: table;
    width: 535px;
    height: 69px;
    background: #db4444;
    border-radius: 8px;
    box-shadow: 0 5px 0 #a01d1d;
}

.apply_btn{
    display: table-cell;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.375em;
    text-align: center;
    vertical-align: middle;
}

#yoko-btn{
    display: inline-block;
    padding: 0 8px;
    color: #fff;
    text-decoration: none;
    background: #db4444;
    border-radius: 6px;
}

#yoko-btn:hover{
    opacity: 0.8;
}

/*------------------------
        スケジュール
------------------------*/
.scedule_list dl{
    display: table;
    width: 100%;
    margin-bottom: 20px;
    padding: 9px 26px 10px 24px;
    border: 1px solid #9a9a9a;
    vertical-align: middle;
}

.scedule_list dl:after{
    content: "";
    display: block;
    clear: both;
}

.scedule_list dt{
    width: 270px;
    display: table-cell;
}

.scedule_list dt p{
    font-size: 1.25em;
    font-weight: bold;
}

.scedule_list dt p:before{
    content: "\25A0";
    color: #db4444;
}

.scedule_list dt span{
    padding: 2px 16px;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    background: #db4444;
    border-radius: 4px;
}

.scedule_list dd{
    display: table-cell;
    vertical-align: middle;
}

/*------------------------
        審査員紹介
------------------------*/
#member_left, #member_left2{
    float: left;
}

.member_list 
a:link {
	color:#000000;
	font-weight: bold;
	text-decoration:none;
}

.member_list 
a:visited {
	color:#000000;
	text-decoration:none;
}

.member_list 
a:hover {
	color:#000000;
	text-decoration:none;
	background-color: #FEEDE9; 
}

.member_list 
a:active {
	color:#000000;
	text-decoration:none;
}

.member_list 
table a {
	display: block;
   padding: 0.3em 0.3em;
}

.member_list > div{
    width: 50%;
}

#member_right, #member_right2{
    float: right;
}

.member_list:after{
    content: "";
    display: block;
    clear: both;
}

.member_list table tr{
    height: 56px;
}

.member_list table th{
    font-weight: bold;
    font-size: 1.11em;
    text-align: left;
    padding: 0 20px 0 0;
    vertical-align: middle;
}

.member_list table td{
    font-size: 0.875em;
    line-height: 1.3em;
    text-align: left;
    vertical-align: middle;
}
.member_list span{
    font-weight:bold; 
}

/*------------------------
        Q&A
------------------------*/

.qa {
	width: 95%;  
}

.qa ul {
	list-style: none;
    
}

.qa h4 {

    padding-top: 30px;
    margin-bottom: 15px;
    padding-left: 38px;
    font-size: 20px;
    line-height: 1.6em;
    font-weight: bold;
	background: url("../img/q.png")left 0px top 30px no-repeat;
    background-size: 28px auto; 
}

.qa ul li {

	padding-left: 38px;
    margin-bottom: 35px;
	line-height: 1.8em;
	background: url("../img/a.png")left 0px top 0px no-repeat;
	background-size: 28px auto; 
}

.qa span {
	color: #db4444;
}


/*------------------------
        バナー
------------------------*/
#company{
    padding-top: 20px;
    border-top: 0px solid #000;
}

#bnr, #bnr2{
    margin-top: 20px;
    margin-bottom: 30px;
}

#bnr a, #bnr2 a{
    width: 50%;
    display: inline-block;
}

#bnr a:hover, #bnr2 a:hover{
    opacity: 0.8;
}

#bnr a:nth-child(2), #bnr2 a:nth-child(2){
    float: right;
}

#bnr a:nth-child(2) img, #bnr2 a:nth-child(2) img{
    float: right;
}

#company_logo{
    margin-bottom: 40px;
}

#company_logo:after{
    content: "";
    display: block;
    clear: both;
}

.colum-up dl{
    float: left;
}

.colum1{
    width: 25%;
}

.colum1 span{
    text-align: left!important;
}

.colum1:nth-child(3) img{
    margin: 0 0 0 5%;
}

.colum1:nth-child(3) span{
    margin-left: -23%;
    display: block;
}

.colum1 dd div{
    padding: 0 0 0 20px;
    max-width: 155px;
}

.colum2{
    width: 50%;
    display: block;
    margin: 0 0 40px 0;
}

.colum2:after{
    content: "";
    display: block;
    clear: both;
}

.colum2 dt{
    margin-bottom: 24px;
}

.colum2 .logo-name, .colum4 .logo-name{
    display: inline!important;
    margin: 0 auto;
    float: left;
}

.colum2 .logo-name{
    width: calc(50% - 40px);
    margin-left: 16px;
}

.colum2 .logo-name:first-of-type img{
    width: 90%;
    margin-top: 14px;
}

.colum4 dd{
    width: 70%;
    margin: 0 auto;
}

.colum4 .logo-name{
    margin-left: 30px;
}

.colum4 div:first-of-type{
    margin-left: 0;
}

.colum4 .logo-name:first-child, .colum4 .logo-name:nth-child(2), .colum4 .logo-name:nth-child(3){
    width: calc(23% - 8px);
    margin-bottom: 32px;
}

.colum4 .logo-name:nth-child(n+4){
    width: calc(23% - 8px);
}

.colum4 .logo-name:first-child img, 
.colum4 .logo-name:nth-child(2) img, 
.colum4 .logo-name:nth-child(3) img, 
.colum4 .logo-name:nth-child(n+4) img{
    max-width: 143px;
}

.colum4 .logo-name:first-child img{
    float: right;
}

.colum4 .logo-name:nth-child(4) img{
    float: left;
}

.colum4 div:nth-of-type(2){
    margin-left: 0;
}

.logo-name *{
    display: block;
}

.logo-name span{
    text-align: center;
    font-size: .4em;
    font-weight: bold;
    color: gray;
}

.colum2 div:nth-of-type(2) span{
    margin-left: 20px;
}

.colum2 dt, .colum2 dd{
    margin: 0 auto;
    width: 100%;
}

.colum4{
    width: 100%;
}

.colum4 div img{
    margin: 0 auto;
}

.colum4 div:last-of-type{
    margin-right: 0;
}

.colum4{
    float: left;
}

#company_logo dl dt{
    font-weight: bold;
    margin-bottom: 20px;
}

#company_logo dl dt:before, #support dl dt:before{
    content: "\25A0";
    color: #db4444;
}

#company_logo dd{
    padding-left: 26px;
    box-sizing: border-box;
}

#support dl dt{
    font-weight: bold;
}

#support dd{
    font-size: 0.875em;
}

/*------------------------
        受賞者一覧
------------------------*/
.aword-page p {
    font-weight: 100;
}

#aword_menu {
    height: 85px;
    margin-bottom: 63px;
}

#aword_menu2 {
    
    background: #db4444;
}

#aword_menu p {
    padding: 3px 0;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    background: #db4444;
}
#aword_menu2 p {
    margin: 15px 0;
    color: #fff;
    font-size: 1.6em;
    font-weight: bold;
    text-align: center;
    background: #db4444;
}

.aword_menu_list{
    background: #434343;
}

#aword_menu ul {
    display: table;
    width: 100%;
    margin: 0 auto;
}

#aword_menu ul li {
    display: table-cell;
    padding: 4px 0;
    text-align: center;
}

#aword_menu ul li a {
    color: #fff;
    text-decoration: none;
}

#aword_menu ul li a:hover {
    text-decoration: underline;
}

#aword_menu ul li a:after {
    content: "▼";
    display: inline-block;
    margin-left: 3px;
}

#aword_menu ul li a span {
    font-weight: 100;
}

.aword-page h1 {
    font-weight: 100;
}

.aword_top {
    display: inline-flex;
}

.aword_top img {
   width: auto;
}

.aword_left {
    margin: 0 0 24px 0;
    
}

.aword_left2 {
    margin: 0 0 24px 0;
    width: 560px;
}

.aword_left h4 {
    
    font-weight: 600;
    color: #db4444;
    margin-bottom: 15px;
}

.aword_left2 h4 {
    
    font-weight: 600;
    color: #db4444;
    margin-bottom: 15px;
}

.aword_left span {
    
    color: #000000;
}

.aword_left2 span {
    
    color: #000000;
}

.aword_right {
    float: right;
}

.aword_img {
    margin: 0 24px 16px 0;
}

.aword_title h2 {
    width: 351px;
    height: 61px;
    margin-bottom: 16px;
    padding: 5px 16px;
    background: url(../img/aword-title.png) no-repeat;
    background-size: 100%; 
}

.aword_title h2 span {
    display: block;
    color: #fff;
    line-height: 135%;
}

.name {
    font-size: 1.6em;
}

.subject {
    font-weight: normal;
}

.aword_work {
    position: relative;
    display: table;
    width: 500px;
    height: 114px;
    padding: 0 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}
.aword_work::before,
.aword_work::after {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.aword_work::before {
    top: 0;
    left: 0;
    border-top: 1px solid #555;
    border-left: 1px solid #555;
}
.aword_work::after {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid #555;
    border-right: 1px solid #555;
}
.aword_work p {
    display: table-cell;
    font-size: 1.25em;
    vertical-align: middle;
    line-height: 143%;
}
.aword_bottom {
    clear: both;
}
.aword_bottom h3 {
    border: none;
    padding: 0;
    font-size: 1em;
}
.aword_bottom h3:before {
    content: "■";
    color: #db4444;
}
.pdf {
    display: block;
    margin-top: 16px;
}
.pdf:before {
    content: "";
    float: left;
    display: block;
    width: 34px;
    height: 34px;
    margin: -2px 0 -16px 0;
    background: url(../img/pdf-icon.png) no-repeat;
    background-size: contain;
}
.underline {
    border-top: 1px dashed #ddd;
    padding-top: 32px;
}

.underline2 {
    border-top: 1px dashed #ddd;
    padding-top: 10px;
}

.aword_btn {
    width: 710px;
    margin: 0 auto 24px;
}
.aword_btn a {
    width: 344px;
    height: 44px;
    text-align: center;
    border-radius: 4px;
}
.aword_btn a:first-of-type {
    margin-right: 16px;
}
.aword_btn a span {
    vertical-align: -20%;
}
.review_btn a span {
    vertical-align: -20%;
}
.lead {
    margin-bottom: 50px;
}
.lead p{
    margin-bottom: 20px;
}

/*------------------------
        審査講評ページ
------------------------*/
.review-page p {
    font-weight: 100;
}
#all_review h2 {
    display: block;
    width: 130px;
    margin: 0 auto 24px;
    padding: 4px 0;
    text-align: center;
    font-size: 1.5em;
    border: 1px solid #000;
}
.review_btn {
    width: 718px;
    margin: 16px auto 8px;
}
.review_btn a:first-of-type {
    margin-right: 24px;
}
.review_btn a {
    width: 344px;
    height: 37px;
    text-align: center;
    border-radius: 4px;
}
.review_btn a span {
    vertical-align: -14%;
}
#field_review h2, #field_review_reason h2 {
    margin-bottom: 16px;
    font-weight: 100;
}
#field_review h2:before, #field_review_reason h2:before {
    content: "■";
    color: #db4444;
}
.review_img {
    display: block;
    margin: 0 auto 16px;
}
.aword_title {
    margin-bottom: 16px;
    font-weight: bold!important;
}
.review_left {
    float: left;
}
#reason_text {
    width: 54%;
    margin-right: 16px;
}
.review_left .info_btn {
    display: block;
    width: 340px;
    margin: 0 auto;
    text-align: center;
    border-radius: 4px;
}
#field_review_reason:after {
    content: "";
    display: block;
    clear: both;
}

/*------------------------
        優等賞
------------------------*/
.yuto-page p {
    display: table-cell;
    vertical-align: middle;
    font-weight: 100;
}
.yuto-page .school {
    margin-bottom: 0;
}
.yuto-page .aword_title {
    display: table;
    height: 100%;
}
.yuto-page h2:before {
    content: "■";
    color: #db4444;
}
.yuto-page .section {
    margin-bottom: 40px;
}
.yuto-page .section .aword_img {
    width: 240px;
    height: 180px;
}

/*------------------------
        追従ボタン
------------------------*/
.top_btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.top_btn:hover {
    cursor: pointer;
    opacity: .7;
    transition: all ease .5s
}

/*------------------------
        フッター
------------------------*/
footer{
    padding: 16px 0;
    color: #fff;
    text-align: center;
    background: #db4444;
    clear: both;
}

footer p{
    margin-bottom: -3px;
}

/*　画面サイズが1000pxからはここを読み込む　*/
@media only screen and (max-width: 960px){


    /*------------------------
            基本設定
    ------------------------*/

    #main {
        padding: 20px;
    }
    .page_top {
        bottom: 16px;
    }
    
    header, #main, #youtube, .breadcrumbs {
        width: 100%;
        margin: 0 auto;
    }
    
    
    /*------------------------
            ヘッダー
    ------------------------*/
    #header_inner {
        width: 95%;
    }
    .breadcrumbs {
        padding: 68px 20px 0;
    }
    
    /*------------------------
            ヘッダー
    ------------------------*/
    .links-btn-area > p:first-of-type {
        width: 100%;
        margin: 0 auto 10px;
    }
    .links-btn-area-bottom {
        display: block;
    }
    .links-btn-area-bottom p {
        margin: 0 0 10px 0;
        width: 100%;
    }
    /*------------------------
            開催概要
    ------------------------*/
    /*#catch {
        font-size: 1.65em;
        line-height: 58px;
        margin: 20px 0 10px;
        white-space: nowrap;
    }*/
    #info img {
        margin-bottom: 50px;
    }
    .info_in_right, .info_in_left {
        float: none;
        width: 100%;
        margin-bottom: 70px
    }
    .info_img_left {
        margin-bottom: 45px;
    }
    #info img.pc {
        display: none;
    }
    #info img.sp {
        display: block;
    }
    
    
    /*------------------------
            審査員紹介
    ------------------------*/
    .member_list table th, .member_list table td {
        width: 100%;
        display: block;
    }

	.member_list table th {
        height: 35px;
        align-items:center;
		display: block;
    }
	
	.member_list table td {
        height: 45px;
        align-content: flex-start;
		display: block;
    }
	
    #member_right, #member_left, #member_right2, #member_left2 {
        float: none;
    }
    
    
    /*------------------------
            バナー
    ------------------------*/
    #bnr a img, #bnr2 a img {
        width: 90%;
    }
    #company_logo dd {
        padding-left: 0;
    }
    #company_logo {
        margin: 0 auto 40px;
        width: 100%;
    }
    #company_logo dl {
        margin-bottom: 40px;
    }
    #company_logo dl dt {
        margin-bottom: 0;
    }/*
    .colum1 {
        width: 25%;
    }*/
    .colum1 dt, .colum2 dt {
        margin-bottom: 16px!important;
    }
    .colum4 {
        float: none;
    }
    .colum4 div img {
        margin: 0 0 0 21%;
    }
    #kyoryoku_logo dt {
        margin-bottom: 32px!important;
    }
    #asahi_logo img:first-child {
        margin-top: 0;
        margin-right: 30px;
    }

}


/*　画面サイズが600pxからはここを読み込む　*/
@media only screen and (max-width: 600px){
    #company_logo {
        width: 400px;
    }
    .colum2 {
        width: 100%;
    }
    .colum1 {
        width: 50%;
    }
    .colum4 .logo-name, .colum4 .logo-name:first-child, .colum4 .logo-name:nth-child(2), .colum4 .logo-name:nth-child(3), .colum4 .logo-name:nth-child(n+4) {
        width: calc(50% - 20px);
        height: 80px;
        margin-bottom: 16px;
        max-width: 144px;;
    }
    .colum4 .logo-name:first-child img,
    .colum4 .logo-name:nth-child(2) img,
    .colum4 .logo-name:nth-child(3) img,
    .colum4 .logo-name:nth-child(n+4) img {
        max-width: 100%;
    }
    .colum4 .logo-name:first-child img, .colum4 .logo-name:nth-child(3) img {
        float: none;
    }
    .colum4 div:last-of-type {
        margin-left: 0;
    }
	
}

/*　画面サイズが750pxからはここを読み込む　*/
@media only screen and (max-width: 750px){

    /*------------------------
            基本設定
    ------------------------*/

    header, #main, #youtube, .breadcrumbs, footer {
        width: 100%;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    

    /*------------------------
            ヘッダー
    ------------------------*/
    header {    
        position: fixed;
    }
    #header_inner {
        width: 100%;
        margin: 0 auto;
    }
    header img {
        margin-left: 20px;
    }
    nav {
        display: none;
        position: absolute;
        top: 100%;
        width: 100%;
        background: #fff;
        border-top: 1px solid #000;
    }
    .nav_open {
        display: block;
    }
    .menu li {
        float: none;
        width: 100%;
        margin-right: 0;
        padding: 0 20px;
        border-bottom:  1px solid #000;
    }
    .menu li a:after {
        content: "▼";
        float: right;
        color: red;
        transform: rotate(-90deg);
    }
    #menu_black {
        display: none;
        position: fixed;
        z-index: 2;
        width: 100%;
        height: 100%;
        opacity: 0.5;
        background: #000;
    }


    /*------------------------
            メインビジュアル
    ------------------------*/
    #main_visual img.pc {
        display: none;
    }
    #head_catch span {
        font-size: 1.2em;
    }
    #head_catch br {
        display: block;
    }
    

    /*------------------------
            お知らせ
    ------------------------*/
    .section {
        margin-bottom: 50px;
    }
    #news ul li {
        padding-bottom: 8px;
        border-bottom: 1px solid #ddd;
        /*line-height: 155%;*/
    }
    #news ul li:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
    #news ul li a {
        line-height: 21px;
    }
    .title {
        font-size: 0.9em;
    }
    .time {
        display: block;
        margin-bottom: 4px;
    }


    /*------------------------
            開催概要
    ------------------------*/
    
    .info_btn {
        display: block;
        text-align: center;
        font-weight: bold;
        font-size: 1.2em;
        padding: 4px;
    }
    
    /*------------------------
            賞
    ------------------------*/
    
    #grand dl {
        padding: 0 5px 0;
        margin-bottom: 8px;
        width: 100%;
    }
    #grand dl dt {
        display: block;
    }
    #grand dl dt span:after {
        display: none;
    }
    #grand dl dd {
        font-size: 1.1em;
    }
    #awades_lest {
        width: 100%;
        margin: 0 auto 40px;
    }
    #award_left, #award_right{
        float: none;
        width: 100%;
		padding-left: 0;
    }
    #award_left {
		border-right: none;
        margin-bottom: 0; 
		padding-right: 0;
    }
    .award:nth-child(5) {
        margin-top: 0;
    }
    .award:nth-child(4) span:nth-child(3) {
        margin-bottom: 16px;
    }
    
    /*------------------------
            応募要項
    ------------------------*/
    #category {
        margin-bottom: 40px;
    }
    .apply_info dt p {
        font-size: 1.1em;
        margin: 10px 0;
        line-height: 27px;
    }
    #apply_btn_wrap {
        width: 100%;
        padding: 16px 24px;
    }
    #yoko-btn {
        display: block;
        text-align: center;
        font-weight:  bold;
        margin-top: 8px;
        padding: 4px 0;
    }
    
    /*------------------------
            スケジュール
    ------------------------*/
    .scedule_list dl, .scedule_list dt, .scedule_list dd {
        display: block;
    }
    .scedule_list dt {
        width: 100%;
    }
    
    
    /*------------------------
            バナー
    ------------------------*/
    #bnr,#bnr2 {
        margin-bottom: 20px!important;
    }
    #bnr a, #bnr2 a {
        width: 100%;
        margin-bottom: 10px;
    }
    #bnr a:nth-child(2), #bnr2 a:nth-child(2) {
        float: none;
    }
    #bnr a img, #bnr2 a img {
        width: 100%;
    }
    .colum2 img, .colum4 img {
        margin-right: 10px;
    }    
    .colum4 dd {
        width: 100%;
    }
    .colum4 .logo-name{
        width: calc(50% - 20px);
        max-width: 130px;
        height: 80px;
        margin-bottom: 16px;    
    }
    .colum4 div:first-of-type, .colum4 div:nth-of-type(3), .colum4 div:nth-of-type(5) {
        margin-left: 0;
        margin-right: 25px;
    }
    .colum4 div:nth-child(2n) {
        margin-left: 0;
    }
    .colum2 .logo-name {
        width: 50%;
        margin-left: -12px;
    }



    /*------------------------
            受賞者一覧
    ------------------------*/
    .aword-page p {
        font-weight: 100;
    }
    .aword-page h1 {
        color: #757575;
        font-size: .7em;
        line-height: 168%;
    }
    .aword-page h1 span {
        display: block;
        margin-bottom: 10px;
        color: #000!important;
        font-size: 1.9em!important;
    }
    .underline {
        padding-top: 50px;
    }
    .aword_left {
        float: none;
        margin: 0 0 16px 0;
    }
    .aword_title h2 {
        width: 100%;
        margin-bottom: 8px;
        padding: 8px 16px;
    }
    .aword_title h2 .small {
        font-size: 0.8em;
    }
    .aword_title h2 .big {
        font-size: 1.2em;
    }
    .aword_work {
        width: 100%;
        padding: 20px 23px;
        text-align: left;
    }
    .aword_work p {
        font-size: 1.2em;
        line-height: 140%;
    }
    .aword_btn {
        width: 100%;
    }
    .aword_btn a {
        width: 100%;
        margin-bottom: 16px;
    }
    #aword_menu {
        height: auto;
        margin-bottom: 24px;
    }
    #aword_menu p {
        font-size: 1em;
    }
    #aword_menu ul {
        width: 100%;
    }
    #aword_menu ul li {
        float: left;
        display: block;
        width: 33.33333%;
        height: 61px;
        padding: 0 4px;
        font-size: .8em;
        text-align: center;
        line-height: 104%;
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
    }
    #aword_menu ul li:first-of-type {
        width: 100%;
        height: 45px;
    }
    #aword_menu ul li:nth-of-type(4), #aword_menu ul li:nth-of-type(7) {
        border-right: none;
    }
    #aword_menu ul li a {
        display: table;
        width: 100%;        
        height: 100%;
    }
    #aword_menu ul li a:after {
        display: none;
    }
    #aword_menu ul li a span {
        display: table-cell;
        vertical-align: middle;    
    }
    .aword_btn a span {
        vertical-align: -13%;
    }
    #aword_menu ul li a span:after {
        content: "▼";
        display: block;
        margin: 8px 0 0 0;
    }
    #aword_menu ul li:first-of-type a span:after {
        display: inline;
        margin: 0 0 0 6px;
    }
    /*------------------------
            審査講評ページ
    ------------------------*/
    .review_btn {
        width: 100%;
    }
    #reason_text {
        width: 100%;
        margin-bottom: 24px;
    }
    .aword_title {
        line-height: 30px;
    }
    .review_btn a {
        width: 100%;
    }
    .review_btn a:first-of-type {
        margin-right: 0;
    }
    .review_btn a span {
        vertical-align: 0;
    }
    .review_left {
        float: none;
    }

    /*------------------------
            優等賞
    ------------------------*/
    .yuto-page .aword_title {
        padding-top: 0;
    }
    .aword_top {
        display: block;
    }
    .aword_img {
        width: 100%;
    }
    .yuto-page .section .aword_img {
        width: 100%;
        height: auto;
    }
	
 /*------------------------
            審査員紹介
    ------------------------*/
    .member_list table th, .member_list table td {
        width: 100%;
        display: block;
    }

	.member_list table th {
        height: 35px;
       
		display: block;
    }
	
	.member_list table td {
        height: 50px;
        
		display: block;
    }
	
    #member_right, #member_left, #member_right2, #member_left2 {
        float: none;
    }
    
	
	
    /*------------------------
            フッター
    ------------------------*/
    footer div span:nth-child(2) {
        display: block;
    }   
}
@media only screen and (max-width: 400px){
    h3 {
        font-size: 1.3em;
        white-space: inherit;
    }
    .scedule_list dt span {
        font-size: 0.9em;
    }
    #company_logo {
        width: 100%;
        box-sizing: border-box;
    }
    #asahi_logo img:first-child {
        margin-right: 17px;
    }
    .colum1 dd div {
        padding: 0 0 0 16px;
        max-width: 130px;
    }
    .colum2 .logo-name {
        margin-left: -4px;
    }
    .colum4 div img {
        margin: 0 0 0 7%;
    }
}
    /*------------------------
            YouTube
    ------------------------*/
#youtube {

    padding-top: 10px;
    text-align: center;
    
}

.topic-titl {
    width: 100%;
    padding: 2px 16px;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    background: #db4444;
    border-radius: 4px;
    display: table-cell;
}

.topic-titl:after{
    content: "";
    display: block;
    clear: both;
}
.bold {
    font-weight: bold;
}
.center {
    text-align: center;
}

.mb15 {
    margin-bottom: 15px;
}
.mb30 {
    margin-bottom: 30px;
}
.mt15 {
    margin-top: 15px;
}
.mt30 {
    margin-top: 30px;
}



/*------------------------
       2019.9.6追加
------------------------*/
.colum_box1{
	float: left;
	margin: 0 39px 0 0;
	width: 598px;
}
.colum_box2{
	float: left;
	margin: 0;	
	width: 363px;
}
.colum_box3{
	float: both;	
	width: 100%;	
}
.colum_box4{
	clear: both;
	width: 100%;	
}
.colum_box5{
	clear: both;
	width: 100%;	
}
.colum_box6{
	clear: both;
	width: 100%;	
}
.colum_support{
	clear: both;
	width: 100%;	
}
.colum_box1 dt,.colum_box2 dt,.colum_box3 dt,.colum_box4 dt,.colum_support dt,#support dt,.colum_box5 dt,.colum_box6 dt{
	border-bottom: 1px solid #000;
}
.logo-name-box{
	float: left;
	display: block;
	margin: 0 0 15px;
	text-align: center;
}
.logo-name-box2{
	float: left;
	display: block;
	margin: 0 0 15px;
	text-align: center;
}
.colum_box1 .logo-name-box{
	width: 50%;
}
.colum_box2 .logo-name-box{
	width: 100%;
}
.colum_box3 .logo-name-box{
	width: 33%;
}
.colum_box3 dd{
	padding: 0 5px !important;
	width: 100%;
}
.colum_box4 dt{
	text-align: left;
}
.colum_box4 dd{
	padding: 0 60px !important;
	width: 100%;
}
.colum_box4 .logo-name-box{
	width: 25%;
}
.colum_box5 .logo-name-box{
	width: 20%;
}
.colum_box5 dd{
	padding: 0 5px 0 10px !important;
	width: 100%;
}

.colum_box6 .logo-name-box{
	width: 16.666%;
}
.colum_box6 dd{
	padding: 0px !important;
	width: 100%;
}
.colum_support dt{
	text-align: left;
}
.colum_support dd{
	font-size: 14px;
	padding: 0px !important;
	width: 100%;
}
#support dd{
	padding-top: 10px;
}

.colum_box1 img,.colum_box2 img,.colum_box3 img,.colum_box4 img,.colum_box5 img,.colum_box6 img{
	width: 160px;
}

@media only screen and (max-width: 960px){
.colum_box1{
	float: none;
	margin: 0 0 0 0;
	width: 100%;
}
.colum_box2{
	float: none;
	margin: 0 0 0 0;
	width: 100%;
}
.colum_box3{
	float: none;
	margin: 0 0 0 0;
	width: 100%;	
}
.logo-name-box{
	margin: 15px 0 25px;	
}	
.colum_box1 .logo-name-box{
	margin: 10px auto 0;
	text-align: center;
}	
.colum_box2 .logo-name-box{
	margin: 15px auto 0;
	width: 50%;	
	text-align: center;
}	
.colum_box3 .logo-name-box{
	margin: 15px auto 30px;	
	width: 50%;
	text-align: center;	
}	
.colum_box4 .logo-name-box{
	margin: 15px auto 30px;	
	width: 50%;
	text-align: center;	
}
.colum_box4 dd{
	padding: 0 0 !important;
	width: 100%;
}
.colum_box5 .logo-name-box{
	margin: 15px auto 30px;	
	width: 50%;
	text-align: center;	
}
.colum_box5 dd{
	padding: 0 0 !important;
	width: 100%;
}
	
	.colum_box6 .logo-name-box{
	margin: 15px auto 30px;	
	width: 50%;
	text-align: center;	
}
	
	.colum_box1 img,.colum_box2 img,.colum_box3 img,.colum_box4 img,.colum_box5 img,.colum_box6 img{
	width: 160px;
}
	
}