/**
 * #28b7bd   基本のバックの緑
 *
 *
 *
 *
 */ 
body{
    background-color: #fff;
    font-family: "tbudgothic-std", sans-serif;
}
div.all{
    width: 100%;
}

/* menu ----------------------------*/
section.menu{
    background-color: #FFF;
    height: 50px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 3px 6px -3px grey;
}
section.menu a img.logo{
    height: 40px;
    left: 16px;
    position: absolute;
    padding: 5px;
}
section.menu ul.pc{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    margin: 0 auto;
}
section.menu ul.pc li{
    display: block;
    font-size: 0.8rem;
    margin: 0 5px;
}

section.menu ul.pc li a{
    display: inline-block;
    color: #000;
    text-decoration: none;
    padding: 5px 10px;
    border-bottom: solid 1px #fff;
}
section.menu ul.pc a:hover{
    border-bottom: solid 1px #000;
}
section.menu ul.pc li.download-menu:hover,
section.menu ul.pc li.logo:hover {
    border-bottom: initial;
}
section.menu ul.pc li.download-menu a{
    padding: 10px;
    border-radius: 10px;
    border: solid 2px #28b7bd;
    color: #28b7bd;
    background-color: #fff;
}
section.menu ul.pc li.download-menu a:hover{
    color: #FFF;
    background-color: #28b7bd;
}

section.menu ul.sp{
    background: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
    display: none;
    position: fixed;
    top: 50px;
    right: 0px;
    width: 100vw;
}
section.menu ul.sp li{
    border-bottom: 2px solid #333;
    box-sizing: border-box;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    padding: 5px 10px;
    width: 80vw;
}
section.menu ul.sp li a{
    display: block;
    color: #000;
    text-decoration: none;
    width: 100%;
}
section.menu > i{
    display: none;
    font-size: 2rem;
    position: absolute;
    right: 16px;
    top: 10px;
}
section.menu a.download {
    display: none;
    font-size: 0.9em;
    position: absolute;
    right: 64px;
    top: 6px;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    border: solid 2px #28b7bd;
    color: #28b7bd;
    background-color: #fff;
}
section.menu a.download:hover{
    color: #FFF;
    background-color: #28b7bd;
}

@media screen and (max-width: 1100px) {
    section.menu ul.pc li {
        margin: 0;
    }
    section.menu ul.pc li a {
        padding: 5px;
        margin: 0 5px;
        font-size: 0.9em;
    }
}

#cancelButton {
    display: none;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke: 3px white;
}


/* デザイン上はここが限界 */
@media screen and (max-width: 823px) {
    section.menu ul.pc{
        display: none;
    }
    section.menu ul.sp{
        display: none;
    }
    section.menu > i{
        display: block;
    }
    section.menu a.download{
        display: block;
    }
}


/* footer -----------------------------*/
footer{
    background-color: #28b7bd;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 10px;
}
footer ul{
    flex-basis: auto;
    margin: 24px;
}
footer ul li{
    padding-bottom: 8px;
}
footer ul li a{
    color: #fff;
    font-size: 0.8rem;
    text-decoration: none;
}
footer div.news{
    float: left;
    flex-basis: auto;
    width: 40%;
    margin: 24px 36px 24px 0;
    background-color: #e1f1f2;
    height: 300px;
    overflow: auto;
}

footer div.news p{
    margin-bottom: 8px;
}
footer div.news p img{
    margin: 4px;
    max-width: 120px;
    width: 70%;
}
footer div.news ul{
    margin: 16px auto;
    max-width: 950px;
    width: 100%;
    text-align: left;
}
footer div.news li{
    padding: 4px 4px;
}
footer div.news li span.date{
    font-size: 0.7rem;
    margin-right: 8px;
    padding-top: 4px;
    float: left;
}
footer div.news li a{
    text-decoration: none;
    color: inherit;
}
footer div.news li a:hover{
    opacity: .6;
}
footer div.news li span.body{
    font-size: 0.7rem;
}

footer div.news li span.body::before{
    background-color: #f00;
    border-radius:20px;
    box-sizing: border-box;
    color: #fff;
    display: inline-block;
    margin-right: 8px;
    padding: 4px 12px;
    text-align: center;
    width: 49px;
    float: left;
}
footer div.news li span.body.news::before{
    content: "news";
    background-color: #18b7be;
}
footer div.news li span.body.blog::before{
    content: "blog";
    background-color: #2871bb;
}

footer address{
    color: #fff;
    font-size: 0.6rem;
    padding-left: 30px;
    margin-bottom: 12px;
    width: 100%;
    text-align: center;
}

footer address a{
    color: #fff;
    font-size: 0.6rem;
}


/* このサイトは 823 がブレークポイント */
@media screen and (max-width: 823px) {
    footer ul {
        width: 80%;
        text-align: center;
        margin-bottom: 8px;
    }
    footer ul li {
        text-align: left;
    }
    footer div.news {
        width: 100%;
    }
}
