@charset "utf-8";

.inner {
    position:relative;
    width:1200px;
    margin-left:auto;
    margin-right:auto;    
}

#wrap {
    position:relative;
    width:100%;
    min-width:1200px;
}
#header {
    position:relative;
    width:100%;
    background-color:var(--color-textbox);
    border-bottom:2px solid var(--primary-color);
    z-index:10;
}
#header .access-status {
    position:relative;
    display:flex;
    flex-direction:row;
    align-items:flex-start;
    margin-left:10px;
}
#header .access-status dl {
    position: relative;
    padding-left: 10px;
    display:flex;
    flex-wrap:wrap;
    flex-direction:row;
    align-items:flex-start;
}
#header .access-status dl::after {
    position:absolute;
    top:0;
    left:0;
    color: var(--text-sub-color);
    content: "·";
}
#header .access-status dl + dl {
    margin-left:10px;
}
#header .access-status dl dd {margin-left:5px;}
#header .utile-left {
    display:flex;
    align-items:flex-start;
}
.utile {
    position:relative;
    width:100%;
    padding-top:13px;
    padding-bottom:14px;
    color:var(--text-color);
    font-size:13px;
    border-bottom:1px solid var(--color-textbox);
}
.utile .inner {
    display:flex;
    justify-content:space-between;
}
.utile-menu {
    position:relative;
    display:flex;
    align-items:center;
    gap:24px;
}
.utile-menu .b-btn.small {
    padding:4px 10px;
    height:auto;
    line-height:1;
    font-size:12px;
}
.utile-menu a {
    color:var(--text-color);
}
.btn-bookmark {
    display:inline-flex;
    gap:5px;
    align-items:center;
    color:var(--text-color);
}
#gnb {
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;  
}
#gnb .logo {
    display:block;    
    width: 161px;
    height: 44px;   
}
#gnb .logo a{
    display:block;
    width:100%;
    height:100%;
    background:url('../images/common/logo.svg') no-repeat;
    background-size:contain;
}
:root[data-theme='dark'] {
    #gnb .logo a{
        background:url('../images/common/dark_logo.svg') no-repeat;
        background-size:contain;
    }
}
#gnb .gnb-menu .gnb-menu__1depth {
    position:relative;
    display:flex;
    flex-direction:row;
    align-items:center;
}
#gnb .gnb-menu .gnb-menu__1depth > li {
    position:relative;
}
#gnb .gnb-menu .gnb-menu__1depth > li + li {
    margin-left:20px;
}
#gnb .gnb-menu__link {
    position:relative;
    display:block;
    padding:24.25px 0;
    font-size:17px;
    font-weight:500;
    color:var(--text-basic-color);
}
#gnb .gnb-menu .gnb-menu__1depth > li.active .gnb-menu__link,
#gnb .gnb-menu__link:hover {
    color: var(--primary-color);
}
:root[data-theme='dark'] {   
    #gnb .gnb-menu .gnb-menu__1depth > li.active .gnb-menu__link,
    #gnb .gnb-menu__link:hover {
        color:#8bff89;
    }
}
#gnb .gnb-menu__2depth {
    position:absolute;
    top:74px;
    left:50%;
    width:140px;
    background-color:var(--color-textbox);
    border:2px solid var(--primary-color);
    border-top-color:var(--color-textbox);
    padding: 15px 10px;
    border-radius: 0 0 0 10px;
    z-index:10;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    transform: translateX(-50%);
    visibility:hidden;
}
#gnb .gnb-menu .gnb-menu__1depth > li.active .gnb-menu__2depth {    
    height:auto;
    opacity:1;
    visibility:visible;
}
#gnb .gnb-menu__2depth li a {
  font-size:15px;
  color: var(--text-sub-color);
}
#gnb .gnb-menu__2depth li a:hover {
  color: var(--primary-color);
}
:root[data-theme='dark'] {
    #gnb .gnb-menu__2depth li a:hover {
        color:#8bff89;
    }
}
#gnb .gnb-menu__2depth li + li {
  margin-top:8px;
}

#footer {
    position:relative;
    border-top:1px solid var(--border-light-color);
    margin-top:80px;
    padding-top:38px;
    padding-bottom:38px;
    color:var(--color-disabled);
    font-size:13px;
}
#footer .inner {
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}
#footer .copyright {margin-top:18px;}
#footer .access-status {
    position:relative;
    width:270px;
}
#footer .access-status dl {
    display:flex;
    flex-wrap:wrap;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
}
#footer .access-status dl + dl {
    margin-top:5px;
}

#footer .quick-menu {
    display:block;
    position:fixed;
    bottom:40px;
    right:50%;
    width:54px;
    margin-right: -690px;
    z-index:2;
}
#footer .quick-menu.absolute {
    position:absolute;
    bottom:250px;
}
#footer .top-btn {
    display:flex;
    align-items:center;
    justify-content:center;
    width: 54px;
    height: 54px;
    border-radius: 100px;
    background:var(--blue-color);
    opacity:0;
    transition:opacity 0.3s ease;
}
#footer .top-btn.show {opacity:1;}
#footer .top-btn .svg-icon {
    width:24px;
    height:24px;
    background-color:#fff;
}
#footer .mode-btn {
    position:absolute;
    left:0;
    bottom:62px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width: 54px;
    height: 54px;
    border-radius: 100px;
    background-color:#000;
    color:#fff;
    font-size:10px;
}
#footer .mode-btn .svg-icon {
    width:27px;
    height:27px;
    background-color:#fff;
}
#footer .mode-btn.light {background-color:#38393A;}
#footer .mode-btn.light .svg-icon {
    width:27px;
    height:27px;
    background-color:#FFC60C;
}

.snb {
    position:relative;
    display:flex;
    flex-direction:row;
    align-items:stretch;
    width:100%;
    border:1px solid var(--primary-color);
    border-radius:10px;
    background-color:var(--color-textbox);
    overflow:hidden;
    margin-bottom:30px;
}
.snb__title {
    position:relative;
    flex:none;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:15px 20px;
    font-size:20px;
    background-color:var(--primary-color);
    color:#fff;
}
.snb__list {
    display:flex;
    flex-direction:row;
    align-items:center;
    width:100%;
    padding:15px 20px;
    gap:15px;
    overflow-x:auto;
}
.snb__list li a {
    position:relative;
    display:block;
    padding-bottom:5px;
    color:var(--text-basic-color);
    white-space:nowrap;
    font-size:16px;    
}
.snb__list li a.active {    
    color:var(--primary-color);
    font-weight:700;
} 
.snb__list li a.active::after {
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:2px;
    background-color:var(--primary-color);
}
:root[data-theme='dark'] {
    .snb__list li a.active {    
        color:var(--text-basic-color);
        font-weight:700;
    } 
    .snb__list li a.active::after {
        content:"";
        position:absolute;
        left:0;
        bottom:0;
        width:100%;
        height:2px;
        background-color:var(--primary-btn-color);
    }
}

.aside-banner {
    position:absolute;
    top:0;
    left:0;
    width:100%;
}
.aside-banner__left,
.aside-banner__right {
    position:absolute;
    top:149px;
    width:150px;
    height:100%;
    z-index:1;
}
.aside-banner__left {
    left:-170px;
}
.aside-banner__right {
    right:-170px;
}