@charset "utf-8";
/*共通設定*/
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-size: 16px;
    line-height: 1.7;
    color: #222;
    letter-spacing: 0.05em;
    font-family: YakuHanJP_Narrow, "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}

img {
    max-width: 100%;
}

.wrap {
    overflow: hidden;
    max-width: 1400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.br-sp,
.img-sp {
    display: none;
}
/*終わり*/

/*<header class="header">*/
.header {
    height: 60px;
}

.header-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    line-height: 60px;
}

.header-logo {
    width: 33%;
    height: 100%;
    text-align: center;
    font-size: 16px;
    position: relative;
}

.logo-con {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.header-logo a {
    display: inline-block;
    margin-right: 16px;
}

.header-logo img {
    display: block;
    width: 50px;
}

.header-text {
    width: 40%;
    height: 100%;
    text-align: center;
    font-size: 14px;
}

.header-line {
    width: 23%;
    height: 100%;
    text-align: center;
    background-color: #00B900;
    color: #fff;
    font-weight: bold;
}
/*終わり*/

/*<footer class="footer">*/
.copyright {
    text-align: center;
    background-color: #C9C3C3;
    padding: 8px 0;
    color: #fff;
}

.footer-nav {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 24px 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-nav li {
    line-height: 1;
    border-right: solid 1px #333;
    padding: 0 16px;
}

.footer-nav li:last-child {
    border-right: none;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/

/*終わり*/  
  

/*<header class="header">*/
    .header-logo {
        width: 20%;
    }

    .logo-name {
        display: none;
    }

    .header-text {
        width: 55%;
    }

    .header-line {
        width: 25%;
    }
/*終わり*/ 
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    .br-sp,
    .img-sp {
        display: block;
    }

    .img-pc {
        display: none;
    }
/*終わり*/  

/*<header class="header">*/
    .header-logo {
        width: 40%;
    }

    .header-text {
        display: none;
    }

    .header-line {
        width: 60%;
    }
/*終わり*/ 

/*<footer class="footer">*/
    .footer-nav {
        display: block;
    }

    .footer-nav li {
        line-height: 2.0;
        padding: 0;
    }

    .footer-nav li {
        border-right: none;
    }
/*終わり*/

}