@charset "utf-8";

@import url("base.css");

/***************************************************************************
 *
 * COMMON STYLE
 *
 ***************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

@font-face {
    font-family: 'guesssans';
    src: url('../fonts/GuessSans-ExtraBold.eot');
    src: url('../fonts/GuessSans-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GuessSans-ExtraBold.woff2') format('woff2'),
        url('../fonts/GuessSans-ExtraBold.woff') format('woff'),
        url('../fonts/GuessSans-ExtraBold.svg#GuessSans-ExtraBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
.notosan{
    font-family: 'Noto Sans JP', sans-serif;
}

.guessSans{
   font-family: guesssans;
}


body {
    background-color: #000;
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
    font-family: 'Noto Serif JP', serif;
    width:100%;
    box-sizing: border-box;
}

body.fixed {
    overflow: hidden;
}

.inner {
    width: 100%;
    margin: 0 auto;
}


/* HEADER */
#header {
    width: 100%;
}

/* CONTENT */
#content {
    width: 100%;
}

/* FOOTER */
#footer {
    width: 100%;
    background: #fff;
    padding: 150px 0;
}

#footer .btnAmazing{
    width: 530px;
    margin: 0 auto 90px;
}
#footer .btnAmazing a{
    text-align: center;
    font-size: 27px;
    background: #000 url(../images/index/arrow.png) no-repeat right 20px center;
    color: #fff;
    display: block;
    padding: 27.51px 35px;
    min-width:300px;
}
#footer .btnAmazing a span {
    color: #C09933;
    font-size:20px;
}
#footer .ftmenu{
    text-align: center;
    margin-bottom: 10px;
}
#footer .ftmenu li{
    display: inline-block;
    position: relative;
    margin-right: 20px;
}
#footer .ftmenu li:after{
    content: "";
    position: absolute;
    background: #666666;
    width: 1px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
}
#footer .ftmenu li:last-child:after{
    content: "";
    display: none;
}



#footer .ftmenu li a{
    font-size: 20px;
    color: #666666;
}
#copyRight{
    font-size: 18px;
    color: #666666;
    text-align: center;
}

.sp {
    display: none;
}

/* FIX TABLET */
@media (max-width: 1230px) and (min-width: 769px) {
    body {
        width: 100%;
    }
}

/* PC ONLY */
@media (min-width: 751px) {
    #header.scrollX {
        width: 100%;
    }
}

/* STYLE MOBILE */
@media (max-width: 750px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .inner {
        width: 100%;
        padding: 0 4%;
    }
    #footer{
        padding: 38px 0 13px;
    }

    #footer .btnAmazing{
        width: 70.8%;
        min-width: 256px;
        margin: 0 auto 46px;
    }
    #footer .btnAmazing a{
        font-size: 14px;
        padding: 14px 0;
        letter-spacing: 2px;
        font-weight: normal;
        background: #000 url(../images/index/arrow.png) no-repeat right 13px center;
        background-size: 6px 11px;
    }
    #footer .btnAmazing a span {
      font-size:10px;
    }
    #footer .ftmenu{
        margin-bottom: 2px;
    }
    #footer .ftmenu li{
        margin-right: 10px
    }
    #footer .ftmenu li:after{
        height: 11px;
        top: 58%;
        right: -9px;
    }
    #footer .ftmenu li a{
        font-size: 10px;
    }

    #copyRight{
        font-size: 9px;
    }
}

/*IE FIX*/
@media all and (-ms-high-contrast:none) {}

/*IP5*/
@media(max-width: 320px) {}