@charset "UTF-8";

/* CSS INFORMATION -====================================================
File name : base.css
Description :
===================================================================== */

/* =====================================================================
*    共通・大枠
* =================================================================== */
html {
    font-size: 3.33333vw;
}

@media screen and (min-width: 768px) {
    html {
        font-size: 0.90909vw;
    }
}

@media screen and (min-width: 1100px) {
    html {
        font-size: 10px;
    }
}

.gDef-contents {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', HiraginoCustom, 'Hiragino Kaku Gothic ProN', YuGothic, 'Yu Gothic Medium', Meiryo, sans-serif;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    background-color: ##fff;
    position:relative;
}

.gDef-contents * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.inner {
    width: calc(700 / 750 * 100%);
    margin: 0 auto;
    position: relative;
}

@media screen and (min-width: 768px) {
    .inner {
        width: 100%;
        max-width: 1100px;
        padding: 0 calc(100 / 1100 * 100%);
    }
}

@media screen and (min-width: 1100px) {
    .inner {
        padding: 0 100px;
    }
}

.gDef-contents img {
    width: 100%;
    height: auto;
    display: block;
}

.gDef-contents a {
    display: block;
}

@media screen and (min-width: 768px) {
    .gDef-contents a {
        -webkit-transition: 0.2s ease;
        transition: 0.2s ease;
    }

    .gDef-contents a:hover {
        -webkit-transition: 0.2s ease;
        transition: 0.2s ease;
    }
}

@media screen and (max-width: 767px) {
    .pc {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .sp {
        display: none !important;
    }
}

/* =====================================================================
*    footer
* =================================================================== */
.footer {
    background-color: #ededed;
    margin-top:48px;
}

.footer .inner {
    width: 100%;
}

.footer small {
    display: block;
    color: #333;
    font-size: 0.7rem;
    line-height: 1;
    text-align: center;
    padding: 5% 2.5% 5%;
}

.pagetop {
    display: none;
    position: fixed;
    bottom: 2%;
    right: 2%;
    
}
.pagetop a {
    display: block;
    color:#fff;
    padding:0.5rem 1rem;
    border-radius: 3px;
    background-color:rgba(0, 0, 0, .5);
}

@media screen and (min-width: 768px) {
    .footer small {
        font-size: 1.45rem;
        padding: 3.5% 0 3%;
    }
    
    .pagetop {
    }
    
    .pagetop a {
    }
    
}

@media screen and (min-width: 1100px) {
    .footer small {
        font-size: 1.2rem;
    }
    .pagetop {
        font-size: 1.6rem;
    }
    .pagetop a {
        display: block;
        padding:0.8rem 1.6rem;
    }
    .pagetop a:hover {
        opacity: .6;
    }
}
