@charset 'utf-8';

/* ==========================================================================

募集中

========================================================================== */

/*--------------------------------
    共通
--------------------------------*/

.container {
    max-width:990px;
}

#PAST .container {
  max-width:none;
}

/* 背景 */

.bg_green {
    background: #007A59;
    color: #fff;
}

.bg_silver {
    background: #dbdbdb;
    color: #007A59;
}

#PRIZE,
#FAQ,
#INSTAGRAM {
    position: relative;
    margin-top: 200px;
    color: #fff;
    text-align: center;
    letter-spacing: 0.1em;
}

#PRIZE:before { content: url(../images/line01.svg);}
#FAQ:before { content: url(../images/line02.svg);}
#INSTAGRAM:before { content: url(../images/line03.svg);}

#PRIZE:before,
#FAQ:before,
#INSTAGRAM:before {
    position: absolute;
    top: 2px;
    left: 0;
    -webkit-transform:translate(0%, -100%);
    transform:translate(0, -100%);
    display: block;
    width: 100%;
    height: auto;
    font-size: 0;
}

/* タイトル */

h2.skew {
    margin: 0 auto 3em;
    text-align: center;
}

* + h2.skew {
    margin-top: 6em;
}

h2.skew span {
    position: relative;
    display: inline-block;
    padding: 10px 35px;
    min-width: 220px;
    color: #fff;
    font-size: 2rem;
    letter-spacing: 0.2em;
    font-weight: bold;
    z-index: 1;
}

h2.skew span:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: #007A59;
    position: absolute;
    top: 0;
    left: 0;
    z-index:-1;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transform: skewX(-30deg);
    transform: skewX(-30deg);
}

.bg_green h2.skew span {
    color: #007A59;
}

.bg_green h2.skew span:after {
    background: #fff !important;
}

h3 {
    display: inline-block;
    margin: 30px 0 10px;
    padding: 1px 10px 0 10px;
    border: 2px solid #007A59;
    color: #007A59;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

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

    #PRIZE,
    #FAQ,
    #INSTAGRAM {
        margin-top: 100px;
        letter-spacing: 0;
    }

    #PRIZE:before { content: url(../images/line01_sp.svg);}
    #FAQ:before { content: url(../images/line02_sp.svg);}
    #INSTAGRAM:before { content: url(../images/line03_sp.svg);}

    /* タイトル */

    h2.skew {
        margin: 0 auto 2em;
        text-align: center;
    }

    * + h2.skew {
        margin-top: 5em;
    }

    h2.skew span {
        padding: 5px 20px;
        min-width: 150px;
        font-size: 1.7rem;
        letter-spacing: 0.1em;
    }

    h3 {
        font-size: 1.6rem;
    }

}


/*--------------------------------
    メインビジュアル
--------------------------------*/

.mainvisual {
    position: relative;
}

.mainvisual h1 {
    position: absolute;
    top:50%;
    left:0;
    width: 100%;
    -webkit-transform:translate(0%, -50%);
    transform:translate(0, -50%);
    z-index: 999;
}

.mainvisual h1::after {
    display: block;
    content: "";
    height: 7.7vh;
    width: 19.2vh;
    background: center center no-repeat url(../images/main_ttl_times.svg);
    background-size: contain;
    position: absolute;
    top:-9.5%;
    left:calc(50% - 22.5vh);
    -webkit-transform:translate(-50%, 0);
    transform:translate(-50%, 0);
}

.mainvisual h1 img {
    height: calc(33.33333vh - 24px);
    width: auto;
}

.mainvisual span {
    position: absolute;
    display: inline-block;
    bottom:0;
    right: 5%;
    z-index: 999;
    height: calc(33.33333vh - 24px);
    width: calc((33.33333vh - 24px) * 1.85529);
}

.mainvisual span img {
    height: calc(33.33333vh - 24px);
    width: calc((33.33333vh - 24px) * 1.85529);
}

.loopSlide {
    display: flex;
    width: 100vw;
    height: calc(33.33333vh - 26.66666px);
    min-height: calc(33.33333vh - 26.66666px);
    overflow: hidden;
    margin-top: 20px;
}

.loopSlide:last-of-type {
    margin-bottom: 20px;
}

.loopSlide img {
    height: calc(33.33333vh - 26.66666px);
    width: calc((33.33333vh - 26.66666px) * 16.0182927);
    min-width: 0;
    max-width: none;
    flex-shrink: 0;
    
    /* GPU acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

@keyframes slide1 {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes slide2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

@keyframes slide1_rev {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes slide2_rev {
    0% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}


/* PC */

.loaded .loopSlide.speed_pc1 img:first-child {
    animation: slide1 130s -65s linear infinite;
}

.loaded .loopSlide.speed_pc1 img:last-child {
    animation: slide2 130s linear infinite;
}

.loaded .loopSlide.speed_pc2 img:first-child {
    animation: slide1 100s -50s linear infinite;
}

.loaded .loopSlide.speed_pc2 img:last-child {
    animation: slide2 100s linear infinite;
}

.loaded .loopSlide.speed_pc3 img:first-child {
    animation: slide1 170s -85s linear infinite;
}

.loaded .loopSlide.speed_pc3 img:last-child {
    animation: slide2 170s linear infinite;
}

/* 反転 */

.loaded .loopSlide.speed_pc2.rev img:first-child {
    animation: slide1_rev 100s -50s linear infinite;
}

.loaded .loopSlide.speed_pc2.rev img:last-child {
    animation: slide2_rev 100s linear infinite;
}

/* SP */

.loaded .loopSlide.speed_sp1 img:first-child {
    animation: slide1 50s -25s linear infinite;
}

.loaded .loopSlide.speed_sp1 img:last-child {
    animation: slide2 50s linear infinite;
}

.loaded .loopSlide.speed_sp2 img:first-child {
    animation: slide1 70s -35s linear infinite;
}

.loaded .loopSlide.speed_sp2 img:last-child {
    animation: slide2 70s linear infinite;
}

.loaded .loopSlide.speed_sp3 img:first-child {
    animation: slide1 40s -20s linear infinite;
}

.loaded .loopSlide.speed_sp3 img:last-child {
    animation: slide2 40s linear infinite;
}

.loaded .loopSlide.speed_sp4 img:first-child {
    animation: slide1 50s -25s linear infinite;
}

.loaded .loopSlide.speed_sp4 img:last-child {
    animation: slide2 50s linear infinite;
}

.loaded .loopSlide.speed_sp5 img:first-child {
    animation: slide1 70s -35s linear infinite;
}

.loaded .loopSlide.speed_sp5 img:last-child {
    animation: slide2 70s linear infinite;
}

/* 反転 */

.loaded .loopSlide.speed_sp2.rev img:first-child {
    animation: slide1_rev 70s -35s linear infinite;
}

.loaded .loopSlide.speed_sp2.rev img:last-child {
    animation: slide2_rev 70s linear infinite;
}

.loaded .loopSlide.speed_sp4.rev img:first-child {
    animation: slide1_rev 50s -25s linear infinite;
}

.loaded .loopSlide.speed_sp4.rev img:last-child {
    animation: slide2_rev 50s linear infinite;
}

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

    .mainvisual h1::after {
        height: 4.6vh;
        width: 11.5vh;
        top:-6%;
        left:calc(50% - 15.5vh);
    }

    .mainvisual h1 img {
        height: calc(20vh - 8px);
    }

    .mainvisual span {
/*        bottom: -1px;*/
        bottom: calc(20vh - 8px);
        height: calc(20vh - 8px);
        width: auto;
    }

    .mainvisual span img {
        height: calc(20vh - 8px);
        width: auto;
    }

    .loopSlide {
        height: calc(20vh - 12px);
        min-height: calc(20vh - 12px);
        margin-top: 10px;
    }

    .loopSlide:last-of-type {
        margin-bottom: 10px;
    }
    
    .loopSlide img {
        height: calc(20vh - 12px);
        width: calc((20vh - 12px) * 8.012195);
    }

}

/*--------------------------------
    テーマ
--------------------------------*/

#THEME strong {
    display: block;
    margin-bottom: .5em;
    font-size: 5rem;
    text-align: center;
    color: #007A59;
    font-weight: 700;
}

#THEME p {
    max-width: 700px;
    margin: 0 auto;
}

#THEME .readcopy {
    max-width: 700px;
    margin: -50px auto 0;
    text-align: center;
    font-size: 3.0rem;
    line-height: 2.2;
}

@media only screen and (max-width: 812px) {
    #THEME strong {
        font-size: 3rem;
    }

    #THEME p {
        width: 90%;
    }
    
    #THEME .readcopy {
        width: 90%;
        margin: -30px auto 0;
        text-align: justify;
        font-size: 2.0rem;
        line-height: 2.0;
    }

}

/*--------------------------------
    賞品
--------------------------------*/

#PRIZE .container {
    max-width:1200px;
}

#PRIZE .column > div {
    position: relative;
    text-align: center;
    margin-bottom: 0;
    font-size: 0;
}

#PRIZE .column > div span {
    display: inline-block;
    width: 100%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    font-size: 0;
}

#PRIZE .column > div span:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 30%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0.05) 0%, rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0.05) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

#PRIZE .column > div span:before {
    -webkit-animation: shine 4s ease-in-out infinite;
    animation: shine 4s ease-in-out infinite;
}

@-webkit-keyframes shine {
    0% { left: -75%; }
    25% { left: 125%; }
    100% { left: 125%; }
}

@keyframes shine {
    0% { left: -75%; }
    25% { left: 125%; }
    100% { left: 125%; }
}

#PRIZE .column > div span img {
    width: 100%;
    height: auto;
}

#PRIZE .column > div i {
    position: absolute;
    bottom: 30px;
    right: -25px;
    width: 100px;
    z-index: 3;
}

#PRIZE .column > div:nth-of-type(4) i {
    width: 120px;
}

#PRIZE small {
    display: block;
    font-size: 1.1rem;
    margin-top: 1em;
}

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

    #PRIZE .column {
        -webkit-flex-direction: row;
        flex-direction: row;
    }

    #PRIZE .column > div {
        width: 46%;
    }

    #PRIZE .column > div:nth-of-type(2n) {
        margin: 0 0 5vw 8%;
    }

    #PRIZE .column > div i {
        bottom: 50px;
        right: -18px;
        width: 70px;
    }

    #PRIZE .column > div:nth-of-type(4) i {
        width: 80px;
        bottom: 30px;
        right: -10px;
    }

}

/*--------------------------------
    インスタ
--------------------------------*/

#INSTAGRAM .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

#INSTAGRAM .container a.cmtin-morebtn {
    font-size: 16px !important;
    font-weight: bold !important;
}


/*
#INSTAGRAM a.link_btn {
    display: block;
    width: 450px;
    height: 60px;
    line-height: 60px;
    margin: 60px auto 0;
    border: 1px solid #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1em;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

#INSTAGRAM a.link_btn:link,
#INSTAGRAM a.link_btn:visited { color:#fff; background-color: #007A59; }
#INSTAGRAM a.link_btn:hover,
#INSTAGRAM a.link_btn:active	{ color:#007A59; background-color: #fff; }

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

    #INSTAGRAM a.link_btn {
        width: 100%;
        height: 50px;
        line-height: 50px;
        margin: 40px auto 0;
        font-size: 18px;
        -webkit-border-radius: 6px;
        border-radius: 6px;
    }
}
*/


/*--------------------------------
    応募方法
--------------------------------*/

#HOWTO ul {
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

#HOWTO ul li {
    -ms-flex: 0 0 46%;
    flex: 0 0 46%;
    width: 46%;
    position: relative;
}

#HOWTO ul li img {
    width: 100%;
    height: auto;
    display: block;

    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -ms-transition: all .8s ease;
    transition: all .8s ease;
}

#HOWTO ul li img:nth-of-type(1) {
    margin-bottom: 1em;
}

#HOWTO ul li a.link_insta {
    display: block;
    width: 180px;
    height: 40px;
    line-height: 38px;
    margin: 0 auto;
    border: 1px solid #007A59;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    position: absolute;
    top:45%;
    left: 11%;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

#HOWTO ul li a.link_insta:link,
#HOWTO ul li a.link_insta:visited { color:#fff; background-color: #007A59; }

@media only screen and (min-width: 813px) {
    #HOWTO ul li a.link_insta:hover,
    #HOWTO ul li a.link_insta:active { color:#007A59; background-color: #fff; }
}

#HOWTO ul li a.link_btn {
    display: block;
    width: 70%;
    min-width:0;
    height: 60px;
    line-height: 60px;
    margin: 0 auto;
    border: 1px solid #007A59;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    position: absolute;
    bottom:100px;
    left: 15%;
}

#HOWTO ul li a.link_btn:link,
#HOWTO ul li a.link_btn:visited { color:#fff; background-color: #007A59; }

@media only screen and (min-width: 813px) {
    #HOWTO ul li a.link_btn:hover,
    #HOWTO ul li a.link_btn:active { color:#007A59; background-color: #fff; }
}

#HOWTO ul + p {
    font-size: 1.8rem;
    margin: 60px auto 0;
}

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

    #HOWTO ul li {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 40px;
    }

    #HOWTO ul li a.link_insta {
        width: 140px;
        height: 35px;
        line-height: 33px;
        font-size: 1.3rem;
        top:42%;
        left: 10%;
        letter-spacing: 0;
    }

    #HOWTO ul li a.link_btn {
        width: 80%;
        bottom:80px;
        left: 10%;
    }
    
    #HOWTO ul + p {
        font-size: 1.5rem;
        margin: 20px auto 0;
    }
}

/*
@media only screen and (max-width: 320px) {
    #HOWTO ul li a.link_btn {
        width: 70%;
        bottom:80px;
        left: 15%;
    }
}
*/


/*--------------------------------
    応募要項
--------------------------------*/

#ABOUT ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: .5em;
    line-height: 1.5;
    text-align: left;
}

#ABOUT .scroll ul li {
    text-align: justify;
}

#ABOUT ul li:before {
    content: "・";
    display: block;
    position: absolute;
    top: 0;
    left: 10px;
}

#ABOUT ol li {
    list-style-type: none;
    counter-increment: cnt;
    margin-left: 2em;
    margin-bottom: .5em;
    line-height: 1.5;
    text-align: left;
}

#ABOUT ol li::before {
    content: "(" counter(cnt) ")";
    display:inline-block;
    margin-left:-2em;
    width: 2em;
}

#ABOUT ol + p {
    position: relative;
    margin-top: 1em;
    padding-left: 25px;
}

#ABOUT ol + p:before {
    content: "※";
    display: block;
    position: absolute;
    top: 0;
    left:3px;
}


/*--------------------------------
    応募規約
--------------------------------*/

#ABOUT .scroll {
    padding: 30px;
    border: 2px solid #007A59;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

#ABOUT .scroll div {
    height: 300px;
    padding-right: 2em;
    overflow-y: scroll;
    font-size: 1.5rem;
}

#ABOUT .scroll div strong {
    display: block;
    margin-bottom: 1em;
}

#ABOUT .scroll div ul {
    margin-bottom: 2em;
}

#ABOUT .scroll div ul li {
    margin-bottom: .5em;
    line-height: 1.5;
}

#ABOUT .scroll div::-webkit-scrollbar {
    width: 5px;
}

#ABOUT .scroll div::-webkit-scrollbar-track {
    background-color: #e0e0e0;
    border-radius: 5px;
}

#ABOUT .scroll div::-webkit-scrollbar-thumb {
    background-color: #007A59;
    border-radius: 5px;
}

@media only screen and (max-width: 812px) {
    
    #ABOUT .scroll {
        padding: 10px;
    }
    
    #ABOUT .scroll div {
        height: 200px;
        padding-right: 1em;
        font-size: 1.3rem;
        line-height: 1.5;
    }

    #ABOUT .scroll div ul li {
        padding-left: 15px;
    }

    #ABOUT .scroll div ul li:before {
        left: 3px;
    }

}

/*--------------------------------
    フォーム
--------------------------------*/

.form > p {
    text-align: center;
}

.form > p a:link,
.form > p a:visited { color:#00634c; text-decoration: underline; }

@media only screen and (min-width: 813px) {
    .form > p a:hover,
    .form > p a:active { color:#8fbab0; text-decoration:none; }
}

form {
    max-width: 700px;
    margin: 30px auto;
}

form > p {
    text-align: center;
}

.excuse {
    text-align: center;
}

form dl {
    margin: 30px auto 0;
    clear: both;
    min-height:1px;
    zoom:1;
}

form dl:nth-of-type(1) {
    margin: 30px auto 0;
}
form dl:nth-of-type(1) + p {
    margin: 50px auto 0;
}
form dl:nth-of-type(n+2) {
    margin: 50px auto 0;
}

form dl:after {
    content:".";
    display:block;
    clear:both;
    height:0px;
    visibility:hidden;
    font-size:0px;
}

form dt {
    margin:0 20px 20px 0;
    width:180px;
    font-size: 1.6rem;
    color: #007A59;
    float:left;
    clear:both;
    display:inline;
}

form dd {
    margin:0 0 20px 0;
    width:calc(100% - 200px);
    float:left;
    display:inline;
    line-height: 2;
    color: #000;
}

form dd img {
    max-width: 100%;
    height: auto;
}

form dd p {
    margin-top: 1em;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: bold;
}

form span {
    font-size: 1.1rem;
    margin: 0 0 20px;
    color: #777;
}

form input {
    position:relative;
    z-index:2;
    border: solid 1px #ccc;
    background-color: #fff;
    padding:5px;
}

form input#namae {
    width:calc(100% - 6em);
    height: 40px;
}

form input#email,
form input#email2 {
    width:calc(100% - 6em);
    height: 40px;
}

form input#address,
form input#title {
    width:100%;
    height: 40px;
}

form input#age {
    width: 50px;
}

form label {
    position:relative;
    padding:0 5px 0 28px;
    margin:0 5px 0 -20px;
    z-index:1;
    cursor: pointer;
    color: #007A59;
}

form .bumon label {
    font-size: 2rem;
    font-weight: bold;
}

form label em {
    display: inline-block;
    margin: 0 5px 0 0;
    font-weight: bold;
}

form textarea {
    display: block;
    border: solid 1px #ccc;
    background-color: #fff;
    padding:2px;
    width:100%;
    height:100px;
}

form input[type="tel"] {
    display: inline-block;
    width: 4em;
    height: 40px;
    line-height: 40px;
}

form input[type="radio"],
form input[type="checkbox"] {
    border: none;
    line-height: 1;
}

form input[type="button"] {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
}

form input[type="file"] {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    text-align: center;
    cursor: pointer;
    margin-bottom: 1em;
    cursor: pointer;
}

form input[type="file"] + span {
    display: block;
    font-size: 14px;
    text-align: left;
    margin-bottom: 1em;
}

form input[type="file"] + span img {
    display: block;
    width: 100%;
    height: auto;
    margin: 15px 0 0;
}

form input[type="file"] + span span {
    display: block;
    width: 10em;
    font-size: 13px;
    text-align: center;
    background-color: #efefef;
    border: 1px solid #000;
    padding: 0 0.3em;
    border-radius: 2px;
    margin: 1em 0 0 auto;
    color: #000;
    cursor: pointer;
}

@media print, screen and (min-width: 812px) {
    form input[type="file"] + span span:hover {
        background-color: #ddd;
    }
}

.check {
    margin: 30px auto;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
}

/* 内容確認ボタン */

form p.confirmBtn {
    max-width:300px;
    font-size: 1.8rem;
    text-align:center;
}

form p.confirmBtn input {
    border: none;
    width:100%;
    height:40px;
    cursor: pointer;
    background:#4c4c4c;
    color: #fff;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

form p.confirmBtn input#submit {
    background: #d0d1d0;
    cursor: default;
}

form p.confirmBtn input#submit.checked {
    background: #4c4c4c;
    cursor: pointer;
}

form p.confirmBtn input#submit:not(:disabled) {
    cursor: pointer;
    background: #007A59;
    color:#fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

form p.confirmBtn input#submit:not(:disabled):hover {
    cursor: pointer;
    background: #8fbab0;
}

/* 戻るボタン */

form p.backBtn {
    width:76px;
    text-align:center;
}

form p.backBtn a {
    display:block;
    width:100%;
    height:40px;
    line-height:40px;
    background: #4c4c4c;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

form p.backBtn a:link,
form p.backBtn a:visited { color:#fff; }

@media only screen and (min-width: 813px) {
    form p.backBtn a:hover,
    form p.backBtn a:active { color:#fff; background-color: #d0d1d0; }
}

/* 送信ボタン */

form p.submitBtn {
    font-size: 1.8rem;
    width:300px;
    text-align:center;
}

form p.submitBtn input {
    border: none;
    width:100%;
    height:40px;
    cursor: pointer;
    background:#4c4c4c;
    color:#fff;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

@media only screen and (min-width: 813px) {
    form p.submitBtn input:hover {
        background-color: #d0d1d0;
    }
}

/* トップに戻るボタン */

p.topBtn {
    font-size: 1.6rem;
    text-align:left;
    float:none;
    display:inline;
}

p.topBtn a {
    display:block;
    width:300px;
    height:40px;
    line-height:40px;
    background:#4c4c4c;
    color:#fff;
}

p.topBtn a:link,
p.topBtn a:visited { color:#fff; }
p.topBtn a:hover,
p.topBtn a:active { color:#fff; }


/* エラー */

form dd.error input,
form dd.error textarea,
form dd.error label,
form dl dd.error select {
    background-color:#ffe7e7;
}

form dl dd.error b {
    display: block;
    color:#f00;
    font-size:1.3rem;
    font-weight: normal;
    margin-top:0.3em;
}

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

    form dl dd.error b {
        font-size:1.2rem;
        margin-top:0.2em;
    }

}

form span.confirm {
    display: block;
    font-size: 1.6rem;
    margin: 0 0 30px;
}

.contact {
    max-width: 550px;
    margin: 0 auto;
}

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

    form {
        margin: 30px auto;
    }

    form dl {
        margin: 1em auto 0;
    }

    form dl:nth-of-type(1) {
        margin: 1em auto 0;
    }
    form dl:nth-of-type(1) + p {
        margin: 2em auto 0;
    }
    form dl:nth-of-type(n+2) {
        margin: 2em auto 0;
    }

    form dt {
        margin:0 0 5px 0;
        width:100%;
        font-size: 1.4rem;
    }

    form dd {
        margin:0 0 10px 0;
        width: 100%;
        line-height: 1.6;
    }

    form span {
        font-size: 1.1rem;
        margin: 0 0 10px;
    }

    form input {
        padding:3px;
        font-size: 16px;
    }

    form label {
        padding:0 5px 0 28px;
        margin:0 5px 0 -20px;
    }

    form .bumon label {
        font-size: 1.8rem;
    }

    form label em {
        margin: 0 5px 0 0;
    }

    form textarea {
        height:80px;
        font-size: 16px;
    }

    form input[type="button"] {
        width: 100%;
        height: 40px;
        line-height: 40px;
    }

    form input[type="file"] + img {
        margin: 1em 0 0;
    }

    .check {
        margin: 1em auto;
        font-size: 1.4rem;
    }

    /* 内容確認ボタン */
    
    form p.confirmBtn {
        font-size: 1.6rem;
        margin: 0 auto;
    }

    form p.confirmBtn input {
        background:#4c4c4c;
        color: #fff;
    }

    form p.confirmBtn input#submit {
        background: #4c4c4c;
    }

    form p.confirmBtn input#submit.checked {
        background: #4c4c4c;
    }

    form p.confirmBtn input#submit.checked:hover {
        background: #4c4c4c;
    }

    /* 戻るボタン */

    form p.backBtn {
        width:76px;
    }

    form p.backBtn a {
        display:block;
        width:100%;
        height:40px;
        line-height:40px;
        background: #4c4c4c;
    }

    /* 送信ボタン */
    
    form p.submitBtn {
        font-size: 1.6rem;
        width:90%;
    }

    form p.submitBtn input {
        background:#4c4c4c;
        color:#fff;
    }

    /* トップに戻るボタン */

    p.topBtn {
        font-size: 1.6rem;
    }

    p.topBtn a {
        width:90%;
        height:40px;
        line-height:40px;
    }

    form span.confirm {
        font-size: 1.4rem;
    }
}



/*--------------------------------
    FAQ
--------------------------------*/

#FAQ .faq_box {
    text-align: left;
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.8rem;
}

#FAQ .faq_box .toggle {
    padding: 15px 60px;
    background: #fff;
    color: #000;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

#FAQ .faq_box .toggle:before {
    position: absolute;
    top: 10px;
    left: 20px;
    content: "Q.";
    font-size: 2rem;
    font-weight: bold;
    color: #007A59;
}

#FAQ .faq_box .toggle:first-of-type {
    margin: 0;
}

@media only screen and (min-width: 813px) {
    #FAQ .faq_box .toggle:hover {
        background-color: #8fbab0;
    }
}

#FAQ .faq_box .toggle img {
    position: absolute;
    top:50%;
    right: 20px;
    display: block;
    margin: -12px 0 0 0;
    width: 24px;
    height: 24px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    will-change: transform;
    max-width:100%;
}

#FAQ .faq_box .toggle.open img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center;
    transform-origin: center;
}

#FAQ .faq_box .toggle + div {
    position: relative;
    padding: 15px 20px 15px 60px;
    background: transparent;
}

#FAQ .faq_box .toggle + div:before {
    position: absolute;
    top: 15px;
    left: 20px;
    content: "A.";
    font-size: 2rem;
    font-weight: bold;
}

#FAQ .faq_box .toggle + div a:link,
#FAQ .faq_box .toggle + div a:visited { color:#fff; }

@media only screen and (min-width: 813px) {
    #FAQ .faq_box .toggle + div a:hover,
    #FAQ .faq_box .toggle + div a:active { color:#8fbab0; }
}


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

    #FAQ .faq_box {
        font-size: 1.4rem;
    }

    #FAQ .faq_box .toggle {
        margin: 20px 0 0;
        padding: 10px 35px;
        line-height: 1.6;
    }

    #FAQ .faq_box .toggle:before {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 1.4rem;
    }

    #FAQ .faq_box .toggle img {
        right: 10px;
        margin: -10px 0 0 0;
        width: 20px;
        height: 20px;
    }

    #FAQ .faq_box .toggle + div {
        padding: 10px 0 10px 30px;
        line-height: 1.6;
    }

    #FAQ .faq_box .toggle + div:before {
        top: 10px;
        left: 10px;
        font-size: 1.4rem;
    }

}

/*--------------------------------
    過去
--------------------------------*/

#PAST ul {
    text-align: center;
}

#PAST ul li {
    display: inline-block;
    margin: 0 1.2em 1em;
    font-size: 2rem;
    font-weight: bold;
}


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

    #PAST ul li {
        display: block;
        margin: 0 auto 1em;
        font-size: 1.8rem;
    }
}

/*--------------------------------
    フッター
--------------------------------*/

#FOOTER {
    position: relative;
    margin-top: 60px;
    color: #fff;
    text-align: center;
    font-size: 2rem;
    letter-spacing: 0.1em;
}

#FOOTER:before {
    content: url(../images/line04.svg);
    position: absolute;
    top: 2px;
    left: 0;
    -webkit-transform:translate(0%, -100%);
    transform:translate(0, -100%);
    display: block;
    width: 100%;
    height: auto;
    font-size: 0;
}

#FOOTER img {
    display: inline-block;
    /* margin: 0 15px 10px 15px;
    vertical-align: bottom;
    width: 280px; */

    display: inline-block;
    width: 80px;
    vertical-align: middle;
    margin: -15px 10px -10px 10px;
}

@media only screen and (max-width: 812px) {
    #FOOTER {
      font-size: 1.4rem;
      letter-spacing: 0;
    }

    #FOOTER:before {
      content: url(../images/line04_sp.svg);
    }

    #FOOTER img {
      width: 40px;
    }

}


/* ==========================================================================

募集終了

========================================================================== */

.mainvisual strong {
    position: absolute;
    display: inline-block;
    top:5vh;
    left: 5%;
    z-index: 999;
    height: 30vh;
    width: 30vh;
}

.mainvisual strong img {
    height: 30vh;
    width: 30vh;
}

@media only screen and (max-width: 812px) {
 
    .mainvisual strong {
        height: 22vh;
        width: 22vh;
    }

    .mainvisual strong img {
        height: 22vh;
        width: 22vh;
    }
}

#FINISH {
    padding-top: 50px;
}

#FINISH .container strong {
    display: block;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: #016F4F;
}

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

    #FINISH {
        padding-top: 20px;
    }
    
    #FINISH .container strong {
        font-size: 20px;
    }
}




/* ==========================================================================

結果発表

========================================================================== */



/*--------------------------------
    右下「結果発表」バッジ位置微調整
--------------------------------*/

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

    .mainvisual span {
        bottom: calc(20vh - 2px);
        height: calc(20vh - 12px);
        width: auto;
    }

    .mainvisual span img {
        height: calc(20vh - 12px);
        width: auto;
    }

}


/*--------------------------------
    社長挨拶
--------------------------------*/

#GREETING .greeting_box {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

#GREETING .greeting_box::after {
    content: "";
    display: block;
    clear: both;
}

#GREETING .greeting_box > p {
    float: left;
    width: 500px;
    font-size: 18px;
    line-height: 2;
}

#GREETING .greeting_box > .ceo {
    float: right;
    width: 150px;
    max-width: 600px;
}

#GREETING .greeting_box > .ceo img {
    width: 100%;
    height: auto;
}

#GREETING .greeting_box > .ceo p {
    font-size: 1.3rem;
    margin-top: 1em;
}

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

    #GREETING .greeting_box > p {
        float: none;
        width: 100%;
        font-size: 14px;
        line-height: 1.8;
        text-align: justify;
    }

    #GREETING .greeting_box > .ceo {
        float: none;
        width: 120px;
        margin: 20px auto 0;
    }

    #GREETING .greeting_box > .ceo img {
        width: 100%;
        height: auto;
    }

    #GREETING .greeting_box > .ceo p {
        font-size: 1.2rem;
    }

}

/*--------------------------------
    選者紹介
--------------------------------*/


#JUDGE {
    color: #007A59;
}

#JUDGE ul {
    margin: 0 auto 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

#JUDGE ul li {
  width: 30%;
  margin: 0 5% 0 0;
}

#JUDGE ul li:nth-child(3n) {
  margin-right: 0;
}

#JUDGE ul li img {
    width: 150px;
    height: auto;
    margin: 0 auto 20px;
}

#JUDGE ul li strong {
  display: block;
  font-size: 1.6rem;
  text-align: center;
  font-weight: normal;
  margin: 0 0 20px;
}

#JUDGE ul li strong small {
    font-size: 1.2rem;
}
#JUDGE ul li strong + p {
  font-size: 1.5rem;
}

#JUDGE ul + h2 + img {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
}

#JUDGE ul + h2 + img + p {
    max-width: 600px;
    margin: 1em auto 0;
}


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

  #JUDGE ul {
      margin: 0 auto 50px;
  }
  #JUDGE ul li {
      display: block;
      width: 100%;
      margin: 0 0 30px 0;
      font-size: 1.2rem;
  }
  #JUDGE ul li:last-child {
    margin: 0;
  }
  #JUDGE ul li img {
    width: 120px;
    margin: 0 auto 10px;
  }
  #JUDGE ul li strong {
    font-size: 1.4rem;
    margin: 0 0 10px;
  }
  #JUDGE ul li strong small {
      font-size: 1.0rem;
  }
  #JUDGE ul li strong + p {
    font-size: 1.3rem;
  }
}


/*--------------------------------
    芝生画像
--------------------------------*/

#GREETING,
#GOLD_PRIZE,
#SILVER_PRIZE,
#BRONZE_PRIZE {
    position: relative;
    padding-top: 200px;
    color: #fff;
    text-align: center;
    letter-spacing: 0.1em;
}

#SILVER_PRIZE {
    background-color: #dbdbdb;
    color: #007a59;
}

#GREETING:before { content: url(../images/line01.svg);}
#GOLD_PRIZE:before { content: url(../images/line02.svg);}
#SILVER_PRIZE:before { content: url(../images/line03_silver.svg);}
#BRONZE_PRIZE:before { content: url(../images/line05.svg);}

#GREETING:before,
#GOLD_PRIZE:before,
#SILVER_PRIZE:before,
#BRONZE_PRIZE:before {
    position: absolute;
    top: 2px;
    left: 0;
    -webkit-transform:translate(0%, -100%);
    transform:translate(0, -100%);
    display: block;
    width: 100%;
    height: auto;
    font-size: 0;
}

#THEME,
#JUDGE,
#GOLD_PRIZE,
#SILVER_PRIZE {
    padding-bottom: 300px;
}


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

    #GREETING,
    #GOLD_PRIZE,
    #SILVER_PRIZE,
    #BRONZE_PRIZE {
        padding-top: 80px;
        letter-spacing: 0;
    }

    #GREETING:before { content: url(../images/line01_sp.svg);}
    #GOLD_PRIZE:before { content: url(../images/line02_sp.svg);}
    #SILVER_PRIZE:before { content: url(../images/line03_silver_sp.svg);}
    #BRONZE_PRIZE:before { content: url(../images/line05_sp.svg);}

    #THEME,
    #JUDGE,
    #GOLD_PRIZE,
    #SILVER_PRIZE {
        padding-bottom: 150px;
    }

}


/*--------------------------------
    賞バッジ
--------------------------------*/

h2.prize {
    width: 50%;
    height: auto;
    max-width: 400px;
    margin: 0 auto;
}

@media only screen and (max-width: 812px) {
    h2.prize {
        width: 60%;
        max-width: 400px;
        margin: 0 auto;
    }
}

/*--------------------------------
    最優秀賞
--------------------------------*/


.prize_gold {
    width: 100%;
    margin: 100px auto 0;
}

.prize_gold img {
    display: block;
    border: 10px solid #fff;
    background-color: #fff;
    margin: 0 auto;
    max-width: 100%;
    max-height: 95vh;
    width:auto;
    height: auto;
}

.prize_gold p {
    font-size: 2.2rem;
    text-align: center;
    font-weight: bold;
    margin: 20px auto 0;
}

.prize_gold p span {
    font-size: 1.5rem;
    display: block;
    font-weight: normal;
}

.prize_gold p.comment {
  font-size: 1.8rem;
  line-height: 2;
  text-align: justify;
  font-weight: normal;
  width: 50%;
  margin: 40px auto 0;
}

.prize_gold_review {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: stretch;
    align-items: stretch;
    margin: 80px auto 0;
}

.prize_gold_review strong {
    display: block;
    width: 30%;
    padding: 8px 0;
    border-top:1px solid #fff;
    border-bottom:1px solid #fff;
    font-size: 1.7rem;
    font-weight: bold;
    
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.prize_gold_review p {
    width: 65%;
    line-height: 2;
    font-size: 1.8rem;
    text-align: justify;
    margin: 0;
}


@media only screen and (max-width: 812px) {
    
    .prize_gold {
        margin: 40px auto 0;
    }

    .prize_gold img {
        border: 5px solid #fff;
    }

    .prize_gold p {
        font-size: 1.8rem;
    }

    .prize_gold p.comment {
      font-size: 1.5rem;
      width: 100%;
      margin: 40px auto 0;
    }

    .prize_gold_review {
        display: block;
        margin: 40px auto 0;
    }
    
    .prize_gold_review strong {
        width: 100%;
        margin: 0 auto 20px;
    }

    .prize_gold_review p {
        width: 100%;
        font-size: 1.5rem;
    }

    
}


/*--------------------------------
    優秀賞
--------------------------------*/


.prize_silver {
    margin: 100px auto 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

.prize_silver .photo {
    width: 65%;
    height: auto;
    text-align: center;
}

.prize_silver .photo img {
    border: 7px solid #fff;
    background-color: #fff;
    max-width: 100%;
    max-height: 630px;
    height: auto;
    width: auto;
}

.prize_silver .text {
    width: 30%;
    line-height: 2;
}

.prize_silver:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.prize_silver .text > p {
    padding: 0 0 15px;
    margin: 0 auto 15px;
    font-size: 2.0rem;
    line-height: 1.8;
    font-weight: bold;
}

.prize_silver .text > p span {
    font-size: 1.5rem;
    display: block;
    font-weight: normal;
}

.prize_silver .text > p.comment {
  font-size: 1.6rem;
  text-align: justify;
  margin: 20px auto 40px;
}

.prize_silver .text div {
    line-height: 2;
}

.prize_silver .text div strong {
    display: block;
    padding: 8px 0;
    border-top: 1px solid #007a59;
    border-bottom: 1px solid #007a59;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 20px;
}

.prize_silver .text div strong + p {
    font-size: 1.6rem;
    text-align: justify;
    font-weight: bold;
}


@media only screen and (max-width: 812px) {
    
    .prize_silver {
        margin: 80px auto 0;
        display: block;
    }
    
    .prize_silver:nth-of-type(1) {
        margin: 40px auto 0;
    }

    .prize_silver .photo {
        width: 100%;
        height: auto;
        text-align: center;
    }

    .prize_silver .photo img {
        border: 5px solid #fff;
    }

    .prize_silver .text {
        width: 100%;
    }

    .prize_silver .text > p {
        padding: 0;
        margin: 20px auto 0;
        font-size: 1.8rem;
    }

    .prize_silver .text > p span {
        font-size: 1.5rem;
        display: block;
        font-weight: normal;
    }

    .prize_silver .text > p.comment {
      font-size: 1.5rem;
      margin: 40px auto;
    }

    .prize_silver .text div {
        margin: 40px auto 0;
    }

    .prize_silver .text div strong {
    }

    .prize_silver .text div strong + p {
        font-size: 1.5rem;
    }
    

}


/*--------------------------------
    佳作
--------------------------------*/

.prize_bronze {
    margin: 100px auto 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    
}

.prize_bronze li {
    width: 47.5%;
    margin: 0 0 100px;
}

.prize_bronze li img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    width: auto;
    height: auto;
    /* max-height: 456px; */
    border: 5px solid #fff;
    background-color: #fff;
}

/*
.prize_bronze li:nth-of-type(3) p {
    max-width:366px;
}

.prize_bronze li:nth-of-type(4) p {
    max-width:366px;
}

.prize_bronze li:nth-of-type(6) p {
    max-width:307px;
}

.prize_bronze li:nth-of-type(11) p {
    max-width:366px;
}

.prize_bronze li:nth-of-type(12) p {
    max-width:308px;
}

*/

.prize_bronze li p {
    text-align: left;
    margin: 1em auto 0;
    font-weight: bold;
    font-size: 1.6rem;
    
    text-align: center;
    max-width: none !important;
}

.prize_bronze li p span {
    float: right;
    font-weight: normal;
    font-size: 1.5rem;
    
    float: none;
    display: block;
}

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

    .prize_bronze {
        margin: 80px auto 0;
    }
    
    .prize_bronze li {
        width: 100%;
        margin: 0 0 50px;
    }

    .prize_bronze li img {
        border: 5px solid #fff;
        width: 100%;
    }

/*
    .prize_bronze li p {
        text-align: center;
        max-width: none !important;
    }

    .prize_bronze li p span {
        float: none;
        display: block;
    }
*/

}
