/* * * * * * * * */
/* header */
/* * * * * * * * */
.header {
    height: 90px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    border-top: 10px solid #59C5BF;
    background-color: #FFF;
}

.header a {
    color: #222;
}

.header a:hover {
    opacity: 0.5;
    transition: .3s;
}

.header-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* logo */
.main-title {
    width: 14em;
    padding-top: 1em;
}

@media all and (max-width: 600px) {
    .header-inner {
        display: block;
    }

    .main-title {
        width: 60%;
        padding-left: 2em;
    }
}

.header-nav {
    padding-top: 20px;
}

.header-nav-list {
    display: flex;
}

.header-nav-item {
    margin-right: 3em;
}

.header-nav-item:before {
    font-family: "Font Awesome 5 Free";
    content: "\f192";
    font-weight: 900;
    color: #59C5BF;
    position: absolute;
    text-indent: -20px;
    padding-top: 0.06em;
}

.header-nav-item:last-of-type {
    margin-right: 0;
}

.search-box {
    padding: 0;
    margin-top: 20px;
    background-color: #59C5BF;
}

#search-textarie {
    padding: 6px;
    font-size: 1.2rem;
    border: 1px solid #59C5BF;
    background-color: #fff;
}

.search-button {
    padding-right: 6px;
    font-size: 1.2rem;
    color: #fff;
    background-color: #59C5BF;
}

@media all and (max-width: 928px) {

    .header-nav,
    .search-box {
        display: none;
    }
}

.search-box-sp {
    width: 260px;
    padding: 0;
    margin: 20px auto;
    background-color: #59C5BF;
}

.search-box-sp #search-textarie {
    width: 232px;
}

/* * * * * * * * */
/* /header */
/* * * * * * * * */


/* button */
.btn-primary a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 0 1em;
    height: 34px;
    color: #FFF !important;
    font-size: 1.4rem;
    text-decoration: none;
    transition: 0.3s;
    background-color: #59c5bf;
    border: 1px solid transparent;
    border-radius:5px;
}

/* 
.btn-primary a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 8px 8px;
    border-color: transparent transparent #333 transparent;
}
 */

.btn-primary a:hover {
    background-color: #4daca7;
}

.btn-primary a:hover::after {
    border-color: transparent transparent #6ce7e1 transparent;
}

.no_count{
    color: #ccc !important;
}



/* * * * * * * * */
/* footer */
/* * * * * * * * */

.footer {
    padding: 10px 0 0;
    margin-top: 30px;
    text-align: center;
    background-color: #fff;
    border-top: 1px solid #59C5BF;
}

.footer a {
    color: #222;
}

.footer a:hover {
    opacity: 0.5;
    transition: .3s;
}

.footer-inner {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding-bottom: 10px;
}

.footer-nav {
    padding-top: 9px;
}

.footer-nav-list {
    display: flex;
}

.footer-nav-item {
    font-size: 1.3rem;
    margin-right: 8px;
    padding-right: 8px;
    border-right: 2px solid #9BC1BC;
}

.footer-nav-item:last-of-type {
    margin-right: 0;
    border: none;
}

.sns-icons {
    font-size: 2.6rem;
}

.sns-icons i {
    padding-right: 0.2em;
}

.sns-icons__fb {
    color: #002e92;
}

.sns-icons__tw {
    color: #0081bd;
}

.sns-icons__line {
    color: #007a1f;
}

/* company-information */
.footer-info {
    display: flex;
}

.footer-info_name {
    padding-right: 16px;
    line-height: 1;
}

.footer-info_name span {
    font-size: 2.2rem;
    font-weight: bold;
    padding-left: 8px;
}

.footer-info_contact {
    font-size: 1.2rem;
    padding-left: 12px;
    text-align: left;
    border-left: 2px solid #9BC1BC;
}

.footer-copy {
    padding: 10px;
    line-height: 1.6;
    background-color: #E9546A;
    color: #FFF;
    border-top: 1px solid #59C5BF;
}

.footer-copy-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-copy__copyright {
    align-items: center;
}

.footer-copy__licens {
    font-size: 1.2rem;
    line-height: 1;
}

.footer-copy__licens span {
    font-size: 1rem;
}

@media all and (max-width: 800px) {
    .footer-inner {
        justify-content: center;
    }

    .footer-nav {
        display: none;
    }

    .footer-nav__btn {
        margin-right: 6px;
    }
}

@media all and (max-width: 600px) {
    .footer-inner {
        text-align: center;
        flex-direction: column;
    }

    .footer-info {
        display: block;
        margin: 0 auto;
    }

    .footer-info_name {
        padding-bottom: 0.6em;
    }

    .footer-info_contact {
        padding-left: 0;
        border: none;
        text-align: center;
    }

    .footer-copy-inner {
        flex-direction: column;
    }

    .footer-copy__copyright {
        order: 2;
    }

    .footer-copy__licens {
        order: 1;
    }

    .sns-icons {
        order: 2;
    }

    .footer-info {
        order: 1;
    }

    .footer-nav__btn {
        order: 3;
        max-width: 200px;
        margin: 0 auto;
    }

    .sns-icons i {
        font-size: 3.8rem;
        padding: 0.2em;
    }
}

/* * * * * * * * */
/* /footer */
/* * * * * * * * */