/*
@font-face {
    font-family: 'Noto Serif Japanese';
    font-style: normal;
    font-weight: 100;
    src: url(../fonts/NotoSerifCJKjp-ExtraLight.otf) format('opentype');
}
@font-face {
    font-family: 'Noto Serif Japanese';
    font-style: normal;
    font-weight: 200;
    src: url(../fonts/NotoSerifCJKjp-Light.otf) format('opentype');
}
@font-face {
    font-family: 'Noto Serif Japanese';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/NotoSerifCJKjp-Regular.otf) format('opentype');
}
@font-face {
    font-family: 'Noto Serif Japanese';
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/NotoSerifCJKjp-Medium.otf) format('opentype');
}
@font-face {
    font-family: 'Noto Serif Japanese';
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/NotoSerifCJKjp-SemiBold.otf) format('opentype');
}
@font-face {
    font-family: 'Noto Serif Japanese';
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/NotoSerifCJKjp-Bold.otf) format('opentype');
}
@font-face {
    font-family: 'Noto Serif Japanese';
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/NotoSerifCJKjp-Black.otf) format('opentype');
}
*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
body {
    font-family: 'Noto Serif Japanese', serif;
/*
    font-family: 'Noto Sans JP', sans-serif;
*/
}
a {
    color: #000;
    text-decoration: none;
}

/*--------------------
component
--------------------*/
#overlay {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9900;
    opacity: 0.6;
    background-color: rgb(136, 136, 136);
    display: none;
}
#component {
    position: fixed;
    top: 10%;
    left: 0;
    right: 0;
    display: none;
    width: 90%;
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    text-align: center;
    height: 80%;
    z-index: 9999;
}
#component .cinner {
    padding: 5%;
    width: 100%;
    height: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
}
#component .m_close {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: url(../images/pc/close.png)no-repeat 0 0;
    cursor: pointer;
}
#component h2 {
    font-size: 18px;
    font-weight: normal;
    color: #666666;
    text-align: center;
}
#component .component_inner {
    margin: 50px 0;
    padding: 50px 0;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    text-align: left;
}
#component .component_inner p {
    line-height: 1.6;
    color: #666666;
    padding-bottom: 20px;
    font-size: 14px;
    font-size: 1.4rem;
}
#component .component_inner p span {
    font-size: 12px;
    font-size: 1.2rem;
}
#component .component_inner p:last-child {
    padding-bottom: 0;
}
#component .m_close_button {
    display: inline-block;
    width: 260px;
    line-height: 50px;
    background: #8e8e8e;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
    margin: 0 auto;
}

#component .sp_show {
    display: none;
}

@media screen and (max-width: 768px) {
    #component {
        position: fixed;
        top: 5%;
        left: 0%;
        right: 0;
        display: none;
        width: 90%;
        max-width: 980px;
        background: #fff;
        text-align: center;
        height: 80%;
        z-index: 9999;
    }  
  
}

@media screen and (max-width: 641px) {
    #component .m_close {
        display: none;
    }
  
    #component .sp_show {
        display: block;
        margin-bottom: 50px;
    }
}
