@charset "UTF-8";
/*
 * layout.css
 *
 *  version --- 1.0
 *  updated --- 2021/02/04
 */

/* !wrapper
---------------------------------------------------------- */

.wrapper {
    position: relative;
    min-height: 100vh;
    padding: 0 0 62px;
    box-sizing: border-box;
    background: #f4f5f7;
}

/* !header
---------------------------------------------------------- */

.header {
    width: 100%;
    background: #fff;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
}

.header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo a {
    display: block;
    font-size: 0;
    line-height: 1;
}

.header-logo a:hover {
    text-decoration: none;
    opacity: .7;
}

.header-logo img {
    display: block;
    height: 46px;
}

.header-login {
    text-align: right;
    font-size: 12px;
    line-height: 1.66;
}

.header-login a {
    font-weight: bold;
    color: #0A685A;
    padding-right: 20px;
    background: url("../img/icon_link.svg") right center no-repeat;
    display: inline-flex;
    border-bottom: 1px solid #0A685A;
}

.header-login a:hover {
    text-decoration: none;
}

/* !global-navigation
---------------------------------------------------------- */

.global-navigation {
    background: #0A685A;
    width: 100%;
}

.global-navigation > ul {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1008px;
    margin: 0 auto;
    border-left: 1px solid #fff;
}

.global-navigation > ul > li {
    position: relative;
    border-right: 1px solid #fff;
}

.global-navigation > ul > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    height: 40px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    position: relative;
}

.global-navigation > ul > li > a.is_current{
    background: #58B1A6;
}

/* !breadcrumb
---------------------------------------------------------- */

.breadcrumb {}

/* !contents
---------------------------------------------------------- */

.contents {
    width: 100%;
    padding: 32px 20px 50px;
    box-sizing: border-box;
}
.main {
    width: 100%;
    max-width: 1008px;
    margin: 0 auto;
}

/* !footer
---------------------------------------------------------- */

.footer {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
}

.copyright {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.16;
    color: #333;
    padding: 20px 0;
}
