@charset "UTF-8";

/*

This CSS is Default CSS Stryle.

Author:SATC3

*/

/**********************************************************************
Default Structure
**********************************************************************/

/******* Fonts
***********************************************************************************/
@font-face {
    font-family: YuGothicM;
    src: local("Yu Gothic Medium");
}

body,
.copyright,
select,
input,
textarea {
    font-family: "Helvetica Neue", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothicM, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    color: #3E3A39;
}

#logo {
    font-size: 250%;
    font-weight: 700;
    line-height: 1;
}


/******* Link Style
***********************************************************************************/
a {
    color: #3E3A39;
}

a:hover {
    color: #262322;
}





/******* Class Style
***********************************************************************************/

/* Common Class Style*/
.ruby {
    display: block;
    color: #0062ff;
    margin-top: 0.5em;
    font-size: 0.4em;
    letter-spacing: 0em;
}

.inline {
    display: inline;
}

.dl-table::after {
    content: "";
    display: block;
    clear: both;
}

.dl-table dt {
    margin: 0 20px 0 0;
    padding: 10px 0;
    float: left;
    clear: both;
}

.dl-table dd {
    margin: 0;
    padding: 10px 0;
}

.table {
    display: table;
}

.td {
    display: table-cell;
}

.list {
    padding-left: 0;
    list-style: none;
}

.list ul {
    padding-left: 40px;
}

.notes {
    line-height: 1.2;
}

.btn-box {
    margin: auto;
    max-width: 800px;
}

.heading-area {
    padding: 80px 0 70px;
    text-align: center;
}

.page-heading-area {
    padding: 80px 0 70px;
    text-align: center;
}


.btn-top {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 0px;
    right: 0px;
    background: #CCC;
    z-index: 0;
    cursor: pointer;
}

.top-default {
    background-color: #CCC;
    -webkit-transition: .3s;
    transition: .3s;
}

.top-default:hover {
    background-color: #BBB;
}

.top-default span,
.top-default span::before,
.top-default span::after {
    position: absolute;
    display: block;
    width: 14px;
    height: 3px;
    background-color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
}

.top-default span {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,0);
}

.top-default span::before,
.top-default span::after {
    content: "";
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.top-default span::before {
    left: 30%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.top-default span::after {
    right: 30%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/***** helper
*************************************************************************/
.imgRep {
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}


/***********************************************************************************************************************************************************/



/**********************************************************************
Base Structure
**********************************************************************/

/******* Body
***********************************************************************************/
body,
#wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}


/******* Header
***********************************************************************************/
#header {
    width: 100%;
    height: 60px;
    background-color: rgba(255,255,255,0.8);
    -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,0.2);
    box-shadow: 0 0 2px 2px rgba(0,0,0,0.2);
    position: fixed;
    z-index: 1;
}



/******* LOGO
***********************************************************************************/
#logo {
    width: 250px;
    height: 60px;
    margin-bottom: 0;
    float: left;
    background-size: cover;
}

#logo a {
    width: inherit;
    height: inherit;
    display: block;
    background: url(../images/_default/logo.png) no-repeat center center;
}





/******* Navigation
***********************************************************************************/
#gNav a {
    line-height: 1;
}

#gNav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#gNav a:hover {
    text-decoration: none;
}


/***** SP Navigation Style 1 *****/
#menu-btn {
    width: 40px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 15px; /***** 調整箇所 *****/
    z-index: 2;
}

#menu-btn a {
    display: block;
    height: inherit;
    position: relative;
}

#menu-btn a span,
#menu-btn a span::before,
#menu-btn a span::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: #333;
    -webkit-transition: .3s;
    transition: .3s;
}

#menu-btn a span {
    top: 28px; /***** 調整箇所 *****/
    background-color: rgba(0,0,0,1);
}

#menu-btn a span::before,
#menu-btn a span::after {
    content: "";
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

#menu-btn a span::before {
    top: -13px;
}

#menu-btn a span::after {
    top: 13px;
}

.open #menu-btn a span {
    background-color: rgba(0,0,0,0);
}

.open #menu-btn a span::before,
.open #menu-btn a span::after {
    background-color: rgba(0,0,0,1);
    top: 0px;
}

.open #menu-btn a span::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.open #menu-btn a span::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}




/******* Main
***********************************************************************************/
#main {
    padding-top: 80px;
}

section {
    padding-bottom: 100px;
    background: rgba(255,255,255,0.8);
}



/******* Footer
***********************************************************************************/
#footer {
    text-align: center;
    background: #FFF;
    margin-top: auto;
    background-color: #f0f0f0;
}

#footer-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.copyright {
    margin: 0;
}


/******* Sidebar
***********************************************************************************/


/******* post
***********************************************************************************/
#post figure {
    height: 200px;
    overflow: hidden;
}

#post img {
    max-width: 100%;
    height: auto;
}





/**********************************************************************
Media Query
**********************************************************************/

@media screen and (max-width: 767px) { /* タブレットまで */
    /******* Class Style
    ***********************************************************************************/

    /* Common Class Style*/
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }
    
    .spBr {
        display: inline;
    }
    
    .tabBr {
        display: none;
    }
    
    .pcBr {
        display: none;
    }
    
    .dl-table dt {
        float: none;
        margin: 0;
        padding-bottom: 20px;
    }

    .dl-table dd {
        padding-left: 0 !important;
    }
}

@media screen and (max-width: 768px) {
   #gNav {
       width: 100%;
       height: 100vh;
       background-color: #f0f0f0;
       display: table;
       position: fixed;
       top: 0;
       left: -100%;
       z-index: 1;
       -webkit-transition: .3s ease-in-out;
       transition: .3s ease-in-out;
    }

    .open #gNav {
        left: 0;
    }

    #gNav-wrap {
        display: table-cell;
        text-align: center;
        vertical-align: middle;
    }

    #gNav a {
        padding: 10px 0; /*** デザインに合わせて幅調整 ***/
        font-size: 24px; /*** デザインに合わせてサイズ調整 ***/
        display: block;
        -webkit-transition: .3s;
        transition: .3s;
    }

    #gNav a:hover {
        background-color: #ccc;
    }
}

@media screen and (min-width: 768px) {
    /******* Class Style
    ***********************************************************************************/

    /* Common Class Style*/
    .sp {
        display: none;
    }

    .pc {
        display: none;
    }
    
    .spBr {
        display: none;
    }
    
    .tabBr {
        display: inline;
    }
    
    .pcBr {
        display: none;
    }
}

@media screen and (min-width: 769px) {
    /******* Class Style
    ***********************************************************************************/

    /* Common Class Style*/
    .sp {
        display: none;
    }
    
    .pc {
        display: block;
    }
    
    #header.fixed {
        height: 100px;
    }

    #menu-btn {
        display: none;
    }

    #gNav {
        height: inherit;
        float: right;
    }

    #gNav-wrap {
        height: inherit;
    }
    
    #gNav ul {
        height: inherit;
        display: table;
    }

    #gNav li {
        height: inherit;
        display: table-cell;
        vertical-align: middle;
    }

    #gNav a {
        font-size: 14px;
        height: inherit;
        padding: 24px 10px; /*** #header、ナビのフォントサイズに合わせて調整 ***/
        display: block;
        background-color: translate;
        -webkit-transition: .3s;
        transition: .3s;
    }

    #gNav a:hover {
        background-color: #ccc; /*** デザインに合わせてカラー調整 ***/
    }
}

@media screen and (max-width: 991px) {
    .pc-non {
        display: none;
    }

}

@media screen and (min-width: 992px) {
    .sp-non {
        display: none;
    }

}

