@charset "Shift_JIS";

/*�ėp�ݒ�*/

body {
    color: #333;
    font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.7em;
    line-break: strict;
    word-break: break-all;
    text-align: justify;
    text-justify: distribute;
    background: url(../images/bg.jpg) top center no-repeat #fff fixed;
    background-size: cover;
}

a:link {
    text-decoration: none;
    color: #F60;
    -webkit-transition: all 500ms 0s ease;
  	transition: all 500ms 0s ease;
}

a:visited {
    text-decoration: none;
    color: #F60;
}

a:hover {
    text-decoration: underline;
    color: #ff9900;
}

img {
    border: none;
}

p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}

/*�G���A�w��*/

#headerLine {
    width: 100%;
    height: 60px;
    background: url(../images/line.png) repeat-x;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

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

/* header */
#top-head {
    font-size: 18px;
    top: -100px;
    position: absolute;
    width: 100%;
    margin: 100px auto 0;
    padding: 20px 0 0;
    line-height: 1;
    z-index: 999;
}


#top-head a,
#top-head {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

#top-head .inner {
    position: relative;
}

#top-head .logo {
    /*float: left;
	font-size: 20px;
	padding-left: 10px;*/
    display: none;
}

#global-nav ul {
    list-style: none;
    position: absolute;
    right: 20px;
    top: 0;
    font-size: 18px;
    text-shadow: 1px 1px 0 #fff,
        -1px 1px 0 #fff,
        1px -1px 0 #fff,
        -1px -1px 0 #fff;
}

#global-nav ul li {
    float: left;
    position: relative;
}

#global-nav ul li a {
    padding: 0 15px;
}

/* Btn Hover */
#global-nav ul li:after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    bottom: -5px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

#global-nav ul li:hover:after {
    background: #fff;
    bottom: -10px;
}


/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 10px;
    height: 49px;
    background: rgba(66, 167, 211, 0.9);
    border-bottom: 1px solid #fff;
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}

#top-head.fixed a {
    color: #fff;
}

#top-head.fixed .logo {
    font-size: 18px;
    color: #fff;
    padding-top: 10px;
    padding-left: 20px;
    display: block;
    -moz-text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
    -webkit-text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
}

#top-head.fixed #global-nav ul {
    top: 10px;
}

#top-head.fixed #global-nav ul li a {
    color: #333;
    padding: 0 15px;
}

/* Fixed Btn Hover */
#top-head.fixed #global-nav ul li:after {
    bottom: -5px;
}

#top-head.fixed #global-nav ul li:hover:after {
    background: #fff;
    bottom: -10px;
}

/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 17px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}

#nav-toggle div {
    position: relative;
}

#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #ff0;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
    top: 0;
}

#nav-toggle span:nth-child(2) {
    top: 11px;
}

#nav-toggle span:nth-child(3) {
    top: 22px;
}

#wrap {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 20px auto;
    overflow: hidden;
    z-index: 10;
    position: relative;
}

#header {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 100%;
    position: relative;
    width: 100%;
    background: url(../images/header.png) no-repeat;
    background-size: cover;
    overflow: hidden;
    text-indent: -9999px;
    margin-top: 60px;
}

#contents-wrap {
    width: 100%;
    box-sizing: border-box;
    padding: 30px;
    border: 5px solid #3ba1c3;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
}

h2 {
    position: relative;
     margin: 10px 30px 20px 30px;
     text-align: center;
     font-size: 1.6em;
   }
   
   h2:before,
   h2:after {
     position: absolute;
     z-index: 0;
     bottom: -10px;
     display: block;
     content: '';
     border: 1em solid #1a83a6;
   }
   
   h2:before {
     left: -30px;
     border-left-width: 15px;
     border-left-color: transparent;
   }
   
   h2:after {
     right: -30px;
     border-right-width: 15px;
     border-right-color: transparent;
   }
   
   h2 span {
     position: relative;
     z-index: 1;
     display: block;
     padding: 1rem 2rem;
     color: #fff;
     background: #3ba1c3;
     -moz-text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
    -webkit-text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
   }
   
   h2 span:before,
   h2 span:after {
     position: absolute;
     bottom: -20px;
     display: block;
     width: 10px;
     height: 10px;
     content: '';
     border-style: solid;
     border-color: #127191 transparent transparent transparent;
   }
   
   h2 span:before {
     left: 0;
     border-width: 10px 0 0 10px;
   }
   
   h2 span:after {
     right: 0;
     border-width: 10px 10px 0 0;
   }

h3 {
    font-size: 1.4em;
    margin: 1.5em 0;
    font-weight: bold;
    border-bottom: 1px solid #f27191;
    padding-bottom: 0.5em;
    color: #f27191;
}

h3.-awards::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    content: "\f521";
    margin-right: 0.5em;
    font-weight: bold;
    color: #3ba1c3;
}

h4{
    font-size: 1.2em;
    margin-bottom: 1em;
    color: #3ba1c3;
}

h4.-awards2::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    content: "\f091";
    margin-right: 0.5em;
    font-weight: bold;
    color: #f60;
}

.awards
{
	top: 0px;
	left: 0px;
	height: 0;
    padding-top: 52.222222%;
	position: relative;
	width: 100%;
	background: url("../images/awards.png") no-repeat;
	background-size: cover;
	overflow: hidden;
	text-indent: -9999px;
}

.-mb{
    margin-bottom: 2em;
}

.result-list p{
    font-weight: bold;
    margin-bottom: 0.8rem;
}

.result-list p span{
    font-weight: normal;
    color: #f90;
}

#info dt {
    float: left;
    width: 8em;
    text-align: left;
    color: #A31619;
}

#info dd {
    margin: 0 0 0 8em;
    text-align: left;
}

.thanks {
    font-size: 1.6em;
    font-weight: bold;
    color: #f00;
}

.text-wrap {
    box-sizing: border-box;
    padding: 25px 20px;
}

.cc01 {
    font-size: 1.2em;
    font-weight: bold;
    color: #f60;
}

.cc02 {
    font-size: 1.2em;
    font-weight: bold;
    color: #00C4BF;
}

.cc03 {
    font-weight: bold;
    font-size: 1.1em;
}

.prize-wrap{
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}
.prize {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 57.14285%;
    position: relative;
    width: 100%;
    background: url(../images/prize.png) no-repeat;
    background-size: cover;
    overflow: hidden;
    text-indent: -9999px;
}

.profbox {
    padding: 30px;
    box-sizing: border-box;
    margin-bottom: 30px;
    border-radius: 5px;
    background: rgb(234,227,198);
background: linear-gradient(180deg, rgba(234,227,198,0.5046393557422969) 0%, rgba(215,199,154,0.5046393557422969) 100%);
}

.profbox .title{
    font-weight: bold;
    font-size: 1.6em;
    margin-bottom: 0.5em;
    line-height: 1.3;
}

.profbox .name {
    margin-bottom: 1.5em;
    border-bottom: 2px dotted #ccc;
    padding-bottom: 1.5em;
	text-align: right;
}

.profbox .rank {
    font-weight: bold;
    color: #fff;
	text-align: center;
	background: #FF5A7F;
	width: 13em;
	margin: 0 auto 1em auto;
	border-radius: 20px;
	line-height: 1;
	padding: 0.5em;
	box-sizing: border-box;
}


.entry {
    max-width: 450px;
    width: 100%;
    margin: 0 auto 1em auto;
}

.entry img {
    width: 100%;
}

#footer-wrap {
    width: 100%;
    background: #fff;
    padding: 20px 10px;
    box-sizing: border-box;
}

#footer {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.8em;
}
#page-top {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 50px;
    margin-bottom: 0;
    z-index: 100;
}

#page-top img {
    width: 100%;
}

.link-btn{
    max-width: 400px;
    width: 100%;
    margin: 0 auto 3em auto;
}

.link-btn a{
    display: block;
    overflow: hidden;
    width: 100%;
    text-align: center;
    background: #F60;
    color: #fff;
    font-weight: bold;
    padding: 0.5em;
    border-radius: 50px;
    font-size: 1.2em;
    border: #fff solid 3px;
    -moz-box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.7);
	-webkit-box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.7);
	box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.7);
    box-sizing: border-box;
}

.link-btn a:hover{
    opacity: 0.7;
    text-decoration: none;
}

.banner{
	margin-bottom: 3%;
}

.banner img{
	width: 100%;
}




/*MOBILE--------------------------------------------------------------------------------------*/

@media screen and (max-width: 900px) {

    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }

    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }

    #top-head a {
        color: #fff;
    }

    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }

    #mobile-head {
        background: rgba(66, 167, 211, 0.9);
        width: 100%;
        height: 60px;
        z-index: 999;
        position: relative;
        border-bottom: 1px solid #fff;
    }

    #top-head.fixed .logo,
    #top-head .logo {
        position: absolute;
        left: 10px;
        top: 22px;
        color: #fff;
        font-size: 18px;
        display: block;
        -moz-text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
        -webkit-text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
    }

    #top-head.fixed .logo {
        top: 12px;
        left: -10px;
    }

    #global-nav {
        position: absolute;
        /* �J���ĂȂ��Ƃ��͉�ʊO�ɔz�u */
        top: -500px;
        background: rgba(255, 255, 255, 0.9);
        width: 100%;
        text-align: center;
        padding: 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }

    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }

    #global-nav ul li {
        float: none;
        position: static;
    }

    #global-nav ul li:after {
        display: none;
    }

    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #502f22;
        padding: 15px 0;
        border-bottom: 1px solid #ccc;
    }

    #nav-toggle {
        display: block;
    }

    /* #nav-toggle �؂�ւ��A�j���[�V���� */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }

    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }

    /* #global-nav �X���C�h�A�j���[�V���� */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(560px);
        -webkit-transform: translateY(560px);
        transform: translateY(560px);
    }

    #wrap {
        padding: 0 10px;
        box-sizing: border-box;
    }

}

@media screen and (max-width: 600px) {


    body {
        font-size: 13px;
    }

    #header {
        top: 0px;
        left: 0px;
        height: 0;
        padding-top: 170%;
        position: relative;
        width: 100%;
        background: url(../images/header2.png) no-repeat;
        background-size: cover;
        overflow: hidden;
        text-indent: -9999px;
        margin-top: 60px;
    }

    #headerLine {
        display: none;
    }

    #contents-wrap {
        padding: 15px;
    }

    .text-wrap {
        padding: 20px 10px;
    }

    #info dt {
        float: noe;
        width: 100%;
        text-align: left;
        color: #A31619;
    }

    #info dd {
        margin: 0 0 0 0;
        text-align: left;
    }

    .awards
{
	top: 0px;
	left: 0px;
	height: 0;
    padding-top: 115.55555%;
	position: relative;
	width: 100%;
	background: url("../images/awards2.png") no-repeat;
	background-size: cover;
	overflow: hidden;
	text-indent: -9999px;
}

    .prize {
        top: 0px;
        left: 0px;
        height: 0;
        padding-top: 123.3333%;
        position: relative;
        width: 100%;
        background: url(../images/prize2.png) no-repeat;
        background-size: cover;
        overflow: hidden;
        text-indent: -9999px;
    }

    #footer {
        text-align: left;
    }

    ul.entry {
        width: 100%;
        margin-right: 0;
        overflow: hidden;
        margin-bottom: 0;
        list-style: none;
    }

    ul.entry li {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 1em;
    }

    .link-btn{
        max-width: 400px;
        width: 100%;
        margin: 0 auto 2em auto;
    }
    
    .result-list span::before {
        content: "\A";
        white-space: pre;
    }

    .link-btn{
        max-width: 400px;
        width: 100%;
        margin: 0 auto 2rem auto;
    }


}
