/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

ol, ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}



/******************************
 common
*******************************/
body {
  font-family: "YuGothic", "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Verdana,  "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  text-align: justify;
  text-justify: distribute;
  word-break: normal;
  line-break: strict;
  background-color: #fff;
  color: #000;
  font-size: 16px;
}

.en {
  text-align: left;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: "";
  clear: both;
  height: 0;
}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.opa:hover {
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.pc { display: block !important; }
.pc-inline { display: inline !important; }
.sp,.sp-inline { display: none !important; }

a {
  text-decoration: none;
  color: #000;
}

a.line {
  text-decoration: underline;
}

.txt {
  line-height: 1.7;
}

.red {
  color: #ce2e29;
}

.bold {
  font-weight: bold !important;
}

.small {
  font-size: 0.8em;
}

.inr {
  width: 980px;
  margin: 0 auto;
  position: relative;
}

.center {
  text-align: center;
}

.w100 {
  width: 100%;
  height: auto;
}

.disc-list {
  list-style: disc outside;
  padding-left: 1.5em;
  /*text-indent: -1.5em;*/
  line-height: 1.7;
}

.decimal-list {
  line-height: 1.6;
  list-style-type: none;
  counter-reset: section;
  line-height: 1.7;
}

.decimal-list li {
  counter-increment: section;
  position: relative;
  padding-left: 30px;
}

.decimal-list li:before {
  content: counters(section,"");
  border: 2px solid #269a23;
  border-radius: 50%;
  display: inline-block;
  float: left;
  width: 23px;
  height: 23px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: 2px;
  left: 0;
  color: #269a23;
}

.asterisk-list {
  padding-left: 1.2em;
  text-indent: -1.2em;
  line-height: 1.7;
}

.asterisk-list li:before {
  content: '※ ';
}

/******************************
 header
*******************************/
header {
  width: 100%;
  background: #000;
  padding: 20px;
  min-width: 1180px;
  position: relative;
}

header .logo {
  position: absolute;
  top: 0;
  left: 20px;
  width: 12%;
  max-width: 237px;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (min-width: 769px) {
.nav-wrap {
  display: flex !important;
}
}

nav ul {
  font-size: 0;
}

nav ul li {
  display: inline-block;
  border-left: 1px solid #888787;
  padding: 0 1vw;
}

nav ul li:first-child {
  border-left: none;
}

nav ul li a {
  display: inline-block;
  padding: 10px 0;
  position: relative;
  font-size: 14px;
  font-size: 0.9vw;
  color: #fff;
}

nav ul li a:after{
  content: "";
  transition:0.5s all ease;
  position:absolute;
  bottom: 0;
  height:2px;
  width:0;
  background:#269a23;
  left:50%;
  -webkit-transform:translateX(-50%);
          transform:translateX(-50%);
}

nav ul li a:hover:after {
  width:100%;
}

nav ul .fc_gray a{
  color:#666;
  cursor:default;
}

header .winner a:after,
nav ul .fc_gray a:after{
  display: none;
}



header .winner a {
  background-image: url(../images/ico-wreath.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  font-weight: bold;
  color: #ce2e29;
  font-size: 14px;
}





.sns-list {
  font-size: 0;
}

.sns-list li {
  display: inline-block;
  margin-left: 0.7vw;
  width: 1.8vw;
  max-width: 25px;
}

@media screen and (max-width: 1180px) {
  nav ul li {
    padding: 0 10px;
  }
  nav ul li a {
    font-size: 12px;
  }
  .sns-list li {
    margin-left: 8px;
    width: 20px;
  }
}


/******************************
 container
*******************************/
[class*=col-], [class*=col_], [class~=col] {
  padding: 0 1rem 1rem;
}

.container {
  width: 100%;
  min-width: 1180px;
}

.sec {
  padding: 80px 0;
}

.sec-ttl {
  color: #269a23;
  font-size: 30px;
  line-height: 1.2;
  font-weight: bold;
  padding-bottom: 50px;
  letter-spacing: 0.1em;
}

.sec-subttl {
  font-size: 22px;
  line-height: 1.2;
  font-weight: bold;
  padding-bottom: 20px;
}




/*kv*/
.kv {
  position: relative;
}

.kv-wrap {
  background-image: url(../images/kv-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #000;
  height: 620px;
}

.kv .inr {
  width: 1180px;
  height: 100%;
}

.kv-ttl {
  padding-top: 80px;
}

.kv-special {
  margin-top: -10px;
  margin-left: 30px;
  margin-bottom: 20px;
}

.kv-btn-entry {
  position: absolute;
  top: 50px;
  right: 10px;
}

.kv-prize {
  position: absolute;
  bottom: 160px;
  right: 20px;
}

.kv-txt-sponsor {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.kv .btn a {
  display: block;
  font-size: 20px;
  padding: 30px;
  width: 350px;
  background: #011f5f;
  color: #fff;
  border: 2px solid #f1e38b;
}

.kv .finalist-btn a {
  color: #fff;
  font-size: 22px;
  padding: 12px;
  background: #752026;
  background: #053a0e;
  display: inline-block;
  width: 450px;
  position: relative;
}

.kv .finalist-btn a:before,
.kv .finalist-btn a:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 48px;
  height: 67px;
}

.kv .finalist-btn a:before {
  background-image: url(../images/ico-wreath-left.png);
}

.kv .finalist-btn a:after {
  background-image: url(../images/ico-wreath-right.png);
}

.kv .finalist-btn a .flag {
  position: absolute;
  top: -9px;
  left: 15px;
}



.kv-out-slider {
  position: absolute;
  left: 20px;
  bottom: 0;
  z-index: 1;
}

.kv-slider li {
  width: 320px;
}

.kv-slider img {
  width: 100%;
  height: auto;
}

.kv-slider {
  display:none;
}

.kv-slider.slick-initialized {
  display: block;
}

.sponsor-list-wrap {
  background: #fff;
  text-align: center;
}

.sponsor-list {
  display: inline-block;
  padding: 10px 0;
}

.sponsor-list li {
  display: inline-block;
  padding: 10px 20px;
  vertical-align: middle;
}

.sponsor-list li.meti {
  border-left: 1px solid #ccc;
}


#about,
#flow,
#category,
#lastpresen,
#past {
  background: #ebf5f7;
}

#guideline,
#schedule {
  background: #fff;
}


/*about*/
#about .img {
  margin-bottom: 20px;
  text-align: center;
}

#about .sec-ttl {
  text-align: center;
}


/*guideline*/
.box2-wrap .box {
  width: 470px;
  margin-left: 40px;
  float: left;
}

.box {
  border: 1px solid #d5d5d5;
  background: #fff;
}

.box .box-ttl {
  padding: 20px 30px;
  border-bottom: 1px solid #d5d5d5;
  font-size: 22px;
  line-height: 1.4;
}

.box .box-inr {
  padding: 20px 30px;
}

/*flow*/
.flow-list {
  width: 100%;
  /*overflow: hidden;*/
  position: relative;
  background-color: #2cbd4c;
  background: -webkit-gradient(linear, left top, right bottom, from(#2cbd4c), to(#1ca4b7));
  background: -moz-linear-gradient(left, #2cbd4c, #1ca4b7);
  background: linear-gradient(left, #2cbd4c, #1ca4b7);
  display: table;
}

.flow-list li {
  display: table-cell;
  text-align: center;
  width: 25%;
  height: 180px;
  line-height: 1.7;
  vertical-align: middle;
  color: #fff;
  padding: 15px 15px 15px 40px;
}

.flow-list li .num {
  font-family: serif;
  position: absolute;
  color: #d8c9a1;
  top: -70px;
  left: 0;
  font-size: 80px;
  font-style: italic;
}

.flow-list li .txt01 {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4;
}

.flow-list li .txt02 {
  font-size: 13px;
  text-align: left;
  margin-top: 10px;
}

.en .flow-list li .txt02 {
  font-size: 11px;
}

.flow-list li:not(:last-child) {
  position: relative;
  z-index: 2;
}

.flow-list li:last-child {
  position: relative;
}

.flow-list li:not(:last-child):after,
.flow-list li:not(:last-child):before {
  content: '';
  z-index: -1;
  position: absolute;
  display: block;
  border-right: 1px #f1efea solid;
  width: 180px;
  height: 180px;
  right: 5px;
}

.flow-list li:not(:last-child):after {
  top: 33px;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  transform: rotate(30deg);
}

.flow-list li:not(:last-child):before {
  top: -33px;
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  transform: rotate(-30deg);
}


/*schedule*/
.schedule-list {
  position: relative;
  padding: 0;
  width: 800px;
  margin: 0 auto;
}

.schedule-list:after {
  content:"";
  z-index: 1;
  position: absolute;
  left: 0;
  top:0;
  width: 4px;
  min-height: 100%;
  background-color: #d5d5d5;
}

.schedule-list li {
  z-index: 2;
  position: relative;
  padding: 20px;
  margin-left: 20px;
  margin-bottom: 30px;
  background-color: #def1de;
}

.schedule-list li:before {
  content:"";
  z-index: 1;
  position: absolute;
  top: 14px;
  right: -6px;
  left: -6px;
  width: 12px;
  height: 12px;
  background-color: #def1de;
  transform: rotate(45deg);
}

.schedule-list li:after {
  content:"";
  z-index: 1;
  position: absolute;
  top: 14px;
  left: -25px;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 100%;
  background-color: #54bf51;
  transition: .2s;
}

.schedule-list li:hover:after {
  background-color: #269a23;
  top: 12px;
  left: -27px;
  width: 18px;
  height: 18px;
}

.schedule-list li .date {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

/*category*/
#category .box {
  margin-bottom: 40px;
}

#category .category-list {
  margin-bottom: 40px;
  display: table;
  width: 100%;
  background: #fff;
  border: 1px solid #d5d5d5;
  padding: 20px;
}

#category .category-list dt {
  display: table-cell;
  width: 27%;
  vertical-align: middle;
  background-image: url(../images/ico-wreath.png);
  background-repeat: no-repeat;
  background-position: center;
  min-width: 80px;
  min-height: 140px;
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.4;
  color: #269a23;
}

#category .category-list dt .small {
  font-size: 16px;
  font-weight: normal;
  display: inline-block;
  margin-top: 5px;
}

#category .category-list dd {
  display: table-cell;
  width: 70%;
  padding-left: 2%;
  line-height: 1.7;
}

#category .category-list dd .name {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
}

#category .category-list dd .name img {
  vertical-align: middle;
  margin-right: 10px;
}



/*コメントなしの場合 （コメントが入ったら削除）*/
/*
#category .category-list-wrap {
  text-align: center;
}

#category .category-list {
  display: inline-block;
  width: 230px;
  height: 230px;
  vertical-align: middle;
  text-align: center;
  margin: 5px;
  background-image: url(../images/ico-wreath.png);
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 5px;
}

#category .category-list dt {
  height: 120px;
  background: none;
  display: table-cell;
  vertical-align: middle;
  height: 230px;
}

#category .category-list dd {
  display: none;
}
*/


/*entry*/
#entry {
  background-color: #1e2e4e;
  background-image: url(../images/entry-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  color: #fff;
}

#entry .sec-ttl {
  color: #fff;
}

#entry .btn-entry {
  margin: 20px 0;
}

#entry .btn-entry a {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 30px;
  font-size: 30px;
  font-weight: bold;
  position: relative;
  z-index: 2;
  background-color: #bb9d4d;
  border: 2px solid #bb9d4d;

  background-color: #999;
  border: 2px solid #999;

  color: #fff;
  overflow: hidden;
  display: inline-block;
  letter-spacing: 0.4em;
  cursor: default;
  line-height: 1.2;
}
/*
#entry .btn-entry a:hover {
  color: #bb9d4d;
}

#entry .btn-entry a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(.5);
  transform: scale(.5);
  -webkit-transition: all .3s;
  transition: all .3s;
}

#entry .btn-entry a:hover::after {
  background: #fff;
  -webkit-transform: scale(1);
  transform: scale(1);
}
*/
#entry .note {
  text-align: center;
}


/*lastpresen*/
#lastpresen .ph-list {
  font-size: 0;
  text-align: center;
}

#lastpresen .ph-list li {
  display: inline-block;
}

#lastpresen .ph-list01 {
  margin: 20px 0;
}

#lastpresen .ph-list01 li:first-child {
  margin-right: 40px;
}

#lastpresen .ph-list02 li {
  margin: 10px;
}


/*ceremony*/
#ceremony .ph-list li {
  float: left;
  margin-top: 20px;
}

#ceremony .ph-list li:nth-child(3),
#ceremony .ph-list li:nth-child(5) {
  margin-left: 20px;
}



/*winner*/
#winner {
  background-image: url(../images/entry-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

#winner .sec-ttl {
  color: #fff;
}

#winner .first {
  border-bottom: 2px solid #e4dd91;
  margin-bottom: 60px;
}

#winner .first-ttl {
  overflow: hidden;
  text-align: center;
  color: #e4dd91;
  font-size: 24px;
}
#winner .first-ttl span {
  position: relative;
  display: inline-block;
  margin: 0 2.5em;
  padding: 0 1em;
  text-align: left;
}
#winner .first-ttl span::before,
#winner .first-ttl span::after {
  position: absolute;
  top: 50%;
  content: '';
  width: 800%;
  height: 2px;
  background-color: #e4dd91;
}
#winner .first-ttl span::before {
  right: 100%;
}
#winner .first-ttl span::after {
  left: 100%;
}


.winner-ttl:before,
.winner-ttl:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 48px;
  height: 67px;
}

.winner-ttl:before {
  background-image: url(../images/ico-wreath-left.png);
}

.winner-ttl:after {
  background-image: url(../images/ico-wreath-right.png);
}

#winner .table-finalist th {
  padding: 10px;
/*   background: rgba(36, 154, 36, 0.6); */
}

.table-finalist {
  margin: 30px 0;
  width: 100%;
}

.table-finalist th,
.table-finalist td {
  border: 1px solid #d5d5d5;
  padding: 20px;
  line-height: 1.6;
}

.table-finalist th {
  text-align: center;
  vertical-align: middle;
/*   background: #7dce89; */
  color: #fff;
  font-size: 20px;
  background: #11998e;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #38ef7d, #11998e);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #38ef7d, #11998e); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.table-finalist td {
  text-align: center;
  width: 50%;
  background: #fff;
  vertical-align: middle;
  font-weight: bold;
  font-size: 1.1rem;
}

.table-finalist td.ph {
  padding: 0 15px 0 0;
  background: transparent;
  border: none;
  width: 30%;
}

.table-finalist td.ph.right {
  padding: 0 0 0 15px;
}

.table-finalist td.ph.sp-right {
  display: none;
}

.table-finalist td.ph img {
  vertical-align: bottom;
}

.servicename {
  font-size: 1rem;
  font-weight: normal;
}



/*past*/
#past .winner-box {
  background: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 20px;
  width: 49%;
  margin-left: 2%;
  float: left;
  border: 1px solid #d5d5d5;
}

#past .winner-box.grand {
  width: 100%;
}

#past .winner-box .ttl-area {
  text-align: center;
  padding: 30px 10px 10px;
  position: relative;
}

#past .winner-box .ttl-area .first {
  background-image: url(../images/ico-wreath02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 70px;
  height: 70px;
  line-height: 62px;
  margin-right: 10px;
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
  color: #c00000;
}

#past .winner-box .ttl-area .category {
  background-image: url(../images/ico-wreath.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 60px;
  height: 60px;
  line-height: 58px;
  margin-right: 10px;
  font-size: 13px;
  display: inline-block;
  vertical-align: middle;
  color: #bf9d39;
}

#past .winner-box .ttl-area .ttl {
  font-size: 22px;
  color: #269a23;
}

#past .winner-box .ttl-area .ttl .ico-winner {
  vertical-align: middle;
}

#past .winner-box .ph-area {
  text-align: center;
}

#past .winner-box .ph-area img {
  display: inline-block;
  margin: 5px;
}

#past .winner-box .txt-area {
  padding: 10px 20px 30px;
}

#past .winner-box.grand .txt-area {
  padding: 10px 60px 30px;
}

#past .winner-box .txt-area .name {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 18px;
}

#past .winner-box .txt-area .detail {
  background-image: url(../images/past-plan.png);
   background-repeat: no-repeat;
   background-position: left top;
   padding-left: 70px;
   min-height: 60px;
  display: table-cell;
  vertical-align: middle;
  height: 60px;
}


/*sponsor*/
#sponsor .sponsor-block {
  margin-bottom: 60px;
  border: 2px solid #d5d5d5;
  padding-bottom: 20px;
  text-align: center;
}

#sponsor .sec-subttl {
  margin-top: -11px;
  padding-bottom: 0;
  line-height: 1;
  margin-bottom: 20px;
}

#sponsor .sec-subttl span {
  padding: 0 40px;
  background: #fff;
  display: inline-block;
  letter-spacing: 0.1em;
}

#sponsor .sponsor-list {
  display: inline-block;
}

#sponsor .sponsor-list li {
  display: inline-block;
  padding: 15px 45px;
  vertical-align: middle;
}



/******************************
 footer
*******************************/
footer {
  width: 100%;
  min-width: 1180px;
  padding: 40px 0;
  /*background: #34476b;*/
  background: #35383e;
  color: #fff;
}

footer a {
  color: #fff;
}

footer .txt {
  font-size: 13px;
}

footer .left {
  float: left;
  width: 450px;
}

footer .left .footer-logo {
  display: inline-block;
  padding: 6px;
  background: #fff;
  float: left;
  margin-right: 18px;
}

footer .left .txt {
  width: 370px;
  float: left;
}

footer .right {
  float: right;
  width: 450px;
}

footer .right .ttl {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

footer .copyright {
  font-size: 12px;
  text-align: center;
  padding: 40px 0 0;
}

.fs12 {
  font-size: 12px;
}





.mt0 { margin-top: 0 !important; }
.mt5 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt25 { margin-top: 25px !important; }
.mt30 { margin-top: 30px !important; }
.mt35 { margin-top: 35px !important; }
.mt40 { margin-top: 40px !important; }
.mt45 { margin-top: 45px !important; }
.mt50 { margin-top: 50px !important; }
.mt55 { margin-top: 55px !important; }
.mt60 { margin-top: 60px !important; }
.mt65 { margin-top: 65px !important; }
.mt70 { margin-top: 70px !important; }
.mt75 { margin-top: 75px !important; }
.mt80 { margin-top: 80px !important; }
.mt85 { margin-top: 85px !important; }
.mt90 { margin-top: 90px !important; }
.mb0 { margin-bottom: 0 !important; }
.mb2 { margin-bottom: 2px !important; }
.mb5 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb25 { margin-bottom: 25px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb35 { margin-bottom: 35px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb45 { margin-bottom: 45px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb55 { margin-bottom: 55px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb65 { margin-bottom: 65px !important; }
.mb70 { margin-bottom: 70px !important; }
.mb75 { margin-bottom: 75px !important; }
.mb80 { margin-bottom: 80px !important; }
.mb85 { margin-bottom: 85px !important; }
.mb90 { margin-bottom: 90px !important; }
.ml0 { margin-left: 0 !important; }
.ml15 { margin-left: 15px !important; }
.mr15 { margin-right: 15px !important; }
.pt0 { padding-top: 0 !important; }
.pt5 { padding-top: 5px !important; }
.pt20 { padding-top: 20px !important; }
.pt25 { padding-top: 25px !important; }
.pt30 { padding-top: 30px !important; }
.pt35 { padding-top: 35px !important; }
.pt40 { padding-top: 40px !important; }
.pt45 { padding-top: 45px !important; }
.pt50 { padding-top: 50px !important; }
.pt55 { padding-top: 55px !important; }
.pt60 { padding-top: 60px !important; }
.pt65 { padding-top: 65px !important; }
.pt70 { padding-top: 70px !important; }
.pt75 { padding-top: 75px !important; }
.pt80 { padding-top: 80px !important; }
.pt85 { padding-top: 85px !important; }
.pt90 { padding-top: 90px !important; }
.pb0 { padding-bottom: 0 !important; }
.pb5 { padding-bottom: 5px !important; }
.pb20 { padding-bottom: 20px !important; }
.pb25 { padding-bottom: 25px !important; }
.pb30 { padding-bottom: 30px !important; }
.pb35 { padding-bottom: 35px !important; }
.pb40 { padding-bottom: 40px !important; }
.pb45 { padding-bottom: 45px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb55 { padding-bottom: 55px !important; }
.pb60 { padding-bottom: 60px !important; }
.pb65 { padding-bottom: 65px !important; }
.pb70 { padding-bottom: 70px !important; }
.pb75 { padding-bottom: 75px !important; }
.pb80 { padding-bottom: 80px !important; }
.pb85 { padding-bottom: 85px !important; }
.pb90 { padding-bottom: 90px !important; }
.pr0 { padding-right: 0 !important; }
.pr5 { padding-right: 5px !important; }
.pr10 { padding-right: 10px !important; }
.pr20 { padding-right: 20px !important; }
.pr25 { padding-right: 25px !important; }
.pr30 { padding-right: 30px !important; }
.pr35 { padding-right: 35px !important; }
.pr40 { padding-right: 40px !important; }
.pr45 { padding-right: 45px !important; }
.pr50 { padding-right: 50px !important; }
.pr55 { padding-right: 55px !important; }
.pr60 { padding-right: 60px !important; }
.pr65 { padding-right: 65px !important; }
.pr70 { padding-right: 70px !important; }
.pr75 { padding-right: 75px !important; }
.pr80 { padding-right: 80px !important; }
.pr85 { padding-right: 85px !important; }
.pr90 { padding-right: 90px !important; }
.pl0 { padding-left: 0 !important; }
.pl5 { padding-left: 5px !important; }
.pl20 { padding-left: 20px !important; }
.pl25 { padding-left: 25px !important; }
.pl30 { padding-left: 30px !important; }
.pl35 { padding-left: 35px !important; }
.pl40 { padding-left: 40px !important; }
.pl45 { padding-left: 45px !important; }
.pl50 { padding-left: 50px !important; }
.pl55 { padding-left: 55px !important; }
.pl60 { padding-left: 60px !important; }
.pl65 { padding-left: 65px !important; }
.pl70 { padding-left: 70px !important; }
.pl75 { padding-left: 75px !important; }
.pl80 { padding-left: 80px !important; }
.pl85 { padding-left: 85px !important; }
.pl90 { padding-left: 90px !important; }



/******************************
 en
*******************************/

.kv-special_en {
    margin: 0 0 20px;
}

.kv-prize_en {
  bottom: 150px;
  right: 0;
}

#past .winner-box .ttl-area .first_e {
    background-image: url(../images/ico-wreath02.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 70px;
    height: 70px;
    line-height: 16px;
    margin-right: 10px;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    color: #c00000;
    padding-top: 16px;
    margin-bottom: 10px;
}

#past .winner-box .ttl-area .category_e {
    background-image: url(../images/ico-wreath.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 60px;
    height: 60px;
    line-height: 13px;
    font-size: 8px;
    display: inline-block;
    vertical-align: middle;
    color: #bf9d39;
    padding-top: 17px;
    margin-bottom: 10px;
}

.small_07 {
  font-size: 0.7em;
}

.flow-list li .txt03 {
  font-size: 11px;
  text-align: left;
  margin-top: 10px;
}

.ln12,
#past .winner-box .ttl-area .ttl_e {
  font-size: 22px;
  color: #269a23;
  line-height: 1.2;
}




