@charset "UTF-8";

/* base_font setting */
html {
    font-size: 62.5%;
    /* font-size 1em = 10px on default browser settings */
}
body {
    font: 1.6rem/2.1rem sans-serif;
}

/* list_reset.css用 */
ul,ol,li {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul{
    margin-block-start: 0em;
    margin-block-end: 0em;
    padding-inline-start: 0px;
}
address{
    font-style: normal;
}

/* pc-flex */
@media screen and (min-width:481px) {
    .pc_flex{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

/* pcnone_spnone */
@media screen and (min-width:481px) {
    .pctab_none {
        display: none;
    }
}
@media screen and (min-width:768px) {
    .pc_none {
        display: none;
    }
}
@media screen and (max-width:767px) {
    .sptab_none {
        display: none;
    }
}
@media screen and (max-width:480px) {
    .sp_none {
        display: none;
    }
}

/* tel */
@media screen and (min-width: 768px) {
    a[href ^='tel:'] {
        pointer-events: none;
        cursor: default;
    }
}

/* base_layout */
footer,
.center-box {
    width: 100%;
    padding-left: calc( 50% - 500px );
    padding-right: calc( 50% - 500px );
}
main{
    width: 1000px;
    margin: auto;
    background: #fff;
}
@media screen and (max-width: 480px) {
    header,
    main,
    footer,
    .center-box {
     /*   width: calc(100% - 30px);*/
        padding: 0 10px;
    } 
    main{
        width: 100%;
    }

    header .logo {
    font-size: 25%;;
    }




}

/* header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* header_nav */
#header_nav {
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
}
#header_nav .menu_list {
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* footer_nav */
#footer_nav ul{
    display: flex;
    justify-content: flex-start;
}