@charset "utf-8";
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;
  font-family: "Helvetica Neue", "Helvetica","HelveticaNeueLTStd-Md","Open Sans", "Arial",'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', YuGothicM, YuGothic, Meiryo, "sans-serif";
  font-weight: normal;
  font-weight: 300;
}

html,body {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

img{
  width: 100%;
  display: block;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
    word-break: break-all;
}

a {
    text-decoration: none;
}

ol,
ul {
    list-style: none;
}

@font-face {
    font-family: 'FuturaStd-Bold';
    src: url('../font/FuturaStd-Bold.otf');
}

@font-face {
    font-family: 'FuturaStd-Heavy';
    src: url('../font/FuturaStd-Heavy.otf');
}

@font-face {
    font-family: 'FuturaStd-Medium';
    src: url('../font/FuturaStd-Medium.otf');
}

@font-face {
    font-family: 'HelveticaNeueLTStd-Bd';
    src: url('../font/HelveticaNeueLTStd-Bd.otf');
}

@font-face {
    font-family: 'HelveticaNeueLTStd-Md';
    src: url('../font/HelveticaNeueLTStd-Md.otf');
}

@font-face {
    font-family: 'HelveticaNeueLTStd-Roman';
    src: url('../font/HelveticaNeueLTStd-Roman.otf');
}

@import url('https://fonts.googleapis.com/css?family=Didact+Gothic|Noto+Sans|Open+Sans');

/*=======================================================
▼共通雨設定
=======================================================*/

#header,
#contents {
    position: relative;
    min-width: 320px;
}

.lead,
.credit,
.section {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.pcNone {
    display: none
}

.spNone {
    display: block;
}

@media screen and (max-width: 768px) {

    .inner {
        padding-left: 4.267%;
        padding-right: 4.267%;
    }


    .pcNone {
        display: block;
    }

    .spNone {
        display: none;
    }
}




/*========================================================
▼ヘッダー
========================================================*/

#header {
    width: 100%;
    background-color: #000;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

#header .headerInner {
    width: 100%;
    height: 80px;
    position: relative;
    padding: 15px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    #header {
        height: 50px;
    }

    #header .headerInner {
        padding: 2% 5%;
        height: 50px;
    }
}




/*
ロゴ部分
--------------------------------------------------------*/

#header .headerInner h1 {
    height: 50px;
}

#header .headerInner h1 a:hover img {
    opacity: 0.8;
}

#header .headerInner h1 img {
    width: 100px;
    max-height: 50px;
}

@media screen and (max-width: 768px) {
    #header .headerInner h1 {
        height: 35px;
    }

    #header .headerInner h1 img {
        width: auto;
        max-height: 35px;
    }
}





/*
SNSボタン部分
--------------------------------------------------------*/

#header .headerInner .sns {
    /*color: #fff;*/
}

#header .headerInner .sns li {
    display: inline-block;
}

#header .headerInner .sns a {
    color: #fff;
    font-size: 3rem;
    padding: 0.5em;
}

#header .headerInner .sns a:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    #header .headerInner .sns a {
        padding: 0 0.5em;
    }
}




/*========================================================
▼メインビジュアル
========================================================*/

#mv {
    background-color: #fff;
    margin-top: 80px;
    position: relative;
    height: 100vh;
}

#mv .mvInner {
    width: 100%;
    max-width: 2000px;
    background-image: url(../images/mv.jpg);
    background-size: cover;
    background-position: 0 0;
    margin: 0 auto;
    position: relative;
    height: 100vh;
    display: flex;
    align-items:center;
    justify-content: center;
}

#mv .mvInner .mvTxt {
    /*position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;*/
    width: 100%;
    max-width: 1000px;
}

#mv .mvInner .mvImg{
    width: 80%;
    max-width:800px;
    margin: 0 auto;
}




@media screen and (max-width: 768px) {
    #mv {
        margin-top: 50px;
        height: auto;
        min-height: calc(150px + 50vw);
    }

    #mv .mvInner {
        width: 100%;
        height: auto;
        min-height: calc(150px + 50vw);
    }

}




/*========================================================
▼コンテンツエリア
========================================================*/

#contents {
    background-color: #1d1d1d;
    color: #fff;
    font-size: 1.6rem;
    padding: 64px 0;
}

@media screen and (max-width: 768px) {
    #contents {
        background-color: #1d1d1d;
        color: #fff;
        font-size: 1.4rem;
        padding: 40px 0;
    }
}




/*リード
------------------------------------------------*/

.lead {
    padding: 80px 0;
    text-align: center;
    background-color: #171717;
    margin-bottom: 30px;
}

.lead .sub {
    color: #ea760a;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 18px;
}

.lead .txt {
    font-size: 2.4rem;
    line-height: 1.8;
}

@media screen and (max-width: 768px) {
    .lead {
        width: 91.4%;
        padding-top: 30px;
        padding-bottom: 30px;
        text-align: center;
        background-color: #171717;
        margin-bottom: 30px;
    }

    .lead .sub {
        color: #ea760a;
        font-size: 1.4rem;
        font-weight: bold;
        margin-bottom: 1em;
    }

    .lead .txt {
        font-size: calc(1.1rem + 1vw);
        line-height: 1.8;
    }
}






/*article
------------------------------------------------*/


/*クレジット
------------------------------------------------*/

.credit {
    font-size: 1.3rem;
    margin-bottom: 60px;
    color: #bcbeb4;
}

.credit li {
    margin: 0 0 0 auto;
    text-align: right;
    line-height: 1.3;
    margin-bottom: 10px;
}

.credit li img {
    display: inline-block;
    width: auto;
    height: 1.3rem;
}

.credit li a:hover img {
    opacity: 0.5;
}

@media screen and (max-width: 768px) {
    .credit {
        margin-bottom: 40px;
    }
}




/*セクション共通
------------------------------------------------*/

.section {
    margin-bottom: 100px;
}

.section h2 {
    color: #ea760a;
    font-size: 4rem;
    font-weight: bold;
    font-family: 'ヒラギノ角ゴ ProN W8', 'Hiragino Kaku Gothic ProN', sans-serif;
    background-size: cover;
    padding: 20px;
    margin-bottom: 80px;
}

.section h2 span {
    font: inherit;
    display: block;
    border: 2px solid #ea760a;
    padding: 2em 1em;
}

.section h2.secTtl_setting {
    background-image: url('../images/img_01.jpg');
}

.section h2.secTtl_howto {
    background-image: url('../images/img_02.jpg');
}

.section h2.secTtl_store {
    background-image: url('../images/img_03.jpg');
}

.section h2.secTtl_setting span{
    padding: 2em 0.8em 2em 10em;
}

.section h2.secTtl_store span{
    text-align: right;
}

.section p.b {
    font-weight: bold;
    font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
    .section {
        margin-bottom: 40px;
    }

    .section h2 {
        font-size: 2rem;
        padding: 13px;
        margin-bottom: 40px;
    }

    .section h2 span {
        padding: 3em 1em;
    }

    .section h2.secTtl_setting span {
        padding: 2em 0 2em 5.3em;
    }

    .section h2.secTtl_howto span {}

    .section h2.secTtl_store span {
        padding-right: 1em;
        text-align: right;
    }

    .section p.b {
        font-size: 1.6rem;
        margin-bottom: 0;
    }
}




/*セッティング概要
---------------------*/

.setting p {
    line-height: 1.78;
    margin-bottom: 1em;
}



/*挑戦方法
---------------------*/

a:link { color: #fff; }
a:visited { color: #fff; }
a:hover { color: #fff; }
a:active { color: #fff; }

.howTo {}

.howTo>.inner>dl {
    margin-bottom: 24px;
}

.howTo>.inner>dl>dt {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 6px;
}

.howTo>.inner>dl>dd {
    color: #ccc;
    font-size: 1.6rem;
    line-height: 1.5;
}

.howTo>.inner>dl>dd.chance{
    color: #fff;
}

.howTo>.inner>dl>dd .note{
    color: #ea760a;
    font-weight: bold;
    display: block;
    margin-top:2em;
    margin-bottom:8px;
    font-size: 2rem;
}

.howTo>.inner>dl>dd .uLine{
    text-decoration: underline;
        color: #fff;


}

.howTo>.inner>dl:last-of-type {
    margin-bottom: 60px;
}

.howTo .period {
    background-color: #171717;
    padding-top: 30px;
    padding-bottom: 30px;
}

.howTo .period .days {
    color: #ea760a;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.08em;
    padding: 30px 0;
}

hr {
    width: 300px;
    margin: 0 auto;
    background-color: #ea760a;
    color: #ea760a;
    height: 3px;
    border: none;
}

@media screen and (max-width: 768px) {
    .howTo {}

    .howTo>.inner>dl {
        margin-bottom: 24px;
    }

    .howTo>.inner>dl>dt {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }

    .howTo>.inner>dl>dd {
        font-size: 1.4rem;
    }

    .howTo>.inner>dl>dd .note{
        font-size: 1.6rem;
        text-align: center;
    }

    .howTo>.inner>dl:last-of-type {
        margin-bottom: 30px;
    }

    .howTo .period {
        padding: 30px 0.6em;
    }

    .howTo .period .days {
        font-size: 1.5rem;
        letter-spacing: 0.08em;
        padding: 30px 0;
    }

    hr {
        width: 100%;
        margin: 0 auto;
        background-color: #ea760a;
        color: #ea760a;
        height: 3px;
        border: none;
    }
}




/*設置店
---------------------*/

.store {}




/*ショップリスト*/

.shop {
    /*  width: 800px;*/
    margin: 0 auto 80px;
}



/*見出しデザイン*/

.shop h3 {
    font-size: 2.2rem;
    display: flex;
    margin-bottom: 20px;
}


.shop h3 span {
    margin: 0 auto;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 55px;
}

.shop h3 span:before,
.shop h3 span:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 45px;
    height: 1px;
    background-color: #fff;
}

.shop h3 span:before {
    left: 0;
}

.shop h3 span:after {
    right: 0;
}

.shop>.inner>dl {
    display: flex;
    margin-bottom: 30px;
}

.shop>.inner>dl:last-of-type {
    margin-bottom: 0;
}

.shop>.inner>dl>dt {
    width: 300px;
    padding-right: 30px;
}

.shop>.inner>dl>dd {
    padding: 10px 0;
}

.shop>.inner>dl>dd>span {
    color: #ea760a;
    font-weight: bold;
    display: block;
}

@media screen and (max-width: 768px) {
    .shop {
        /*  width: 800px;*/
    }

    .shop h3 {
        font-size: 1.8rem;
        display: flex;
        margin-bottom: 20px;
    }


    .shop h3 span {
        margin: 0 auto;
        text-align: center;
        position: relative;
        display: inline-block;
        padding: 0 55px;
    }

    .shop h3 span:before,
    .shop h3 span:after {
        content: '';
        position: absolute;
        top: 50%;
        display: inline-block;
        width: 45px;
        height: 1px;
        background-color: #fff;
    }

    .shop>.inner>dl>dt {
        width: 40%;
        padding-right: 4%;
    }

    .shop>.inner>dl>dd {
        width: 56%;
        padding: 0;
        word-break: break-all;
    }

    .shop>.inner>dl>dd>span {
        margin-bottom: 5px;
    }
}




/*ショップ名*/

.shop>.inner>dl>dd>dl>dt {
    margin-bottom: 10px;
}

.shop>.inner>dl>dd>dl>dd p {
    margin-bottom: 10px;
}

.shop>.inner>dl>dd>dl>dd a {
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.shop>.inner>dl>dd>dl>dd a:hover {
    color: #ea760a;
}

.shop>.inner>dl>dd>dl>dd span {
    font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
    .shop>.inner>dl>dd>dl>dt {
        margin-bottom: 8px;
        font-weight: bold;
        font-weight: 1.4rem;
    }
    .shop>.inner>dl>dd>dl>dd p {
        margin-bottom: 8px;
    }

    .shop>.inner>dl>dd>dl>dd span {
        font-size: 1.2rem;
    }

    .shop>.inner>dl>dd>dl>dd a:hover,
    .shop>.inner>dl>dd>dl>dd a:active {
        color: #fff;
    }
}



/*フッター前バナー*/

.btmTxt {
    text-align: center;
    margin-bottom: 20px;
}

.btmBnr {
    width: 600px;
    margin: 0 auto;
}

.btmBnr a:hover img{
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .btmTxt{
        font-size: 1.4rem;
        width: 80%;
        margin: 0 auto 1em;
        line-height: 1.6;
    }

    .btmBnr {
        width: 70%;
        margin: 0 auto;
    }
}




/*フッター前ロゴ*/

.btmLogo {
    width: 228px;
    margin: 0 auto;
    display: block;
}

.btmLogo:hover {
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .btmLogo {
        width: 40%;
        max-width: 228px;
        margin: 0 auto;
        display: block;
    }
}




/*========================================================
▼1000px以下共通設定
========================================================*/
@media screen and (max-width: 1000px) {
.inner {
        padding-left: 4.267%;
        padding-right: 4.267%;
    }
}

/*========================================================
▼フッター
========================================================*/

#footer {
    background-color: #000;
    clear: both;
    padding: 18px 0;
    text-align: center;
}

#footer small {
    color: #fff;
    font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
    #footer small {
        color: #fff;
        font-size: 1.3rem;
    }
}