:root {
    --text-base-color: #222;
    --text-link-color: #e4007f;
    --line-color: #aaa;
}
* {
    box-sizing: border-box;
}
html {
    font-size: 16px;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    text-align: justify;
    color: var(--text-base-color);
    line-height: 1.75;
}
a {
    text-decoration: none;
    transition: .3s;
}
a:link, a:visited {
    color: var(--text-base-color);
}
a:hover {
    color: var(--text-link-color);
}
img {
    vertical-align: bottom;
}


/* LAYOUT */
.l-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
.l-site-header, .l-site-main {
    width: 100%;
    height: 100vh;
}
.l-site-main {
    /* padding-top: 60px; */
    padding-top: 0;
}
.l-site-header__inner, .l-site-main__inner, .l-site-footer {
    padding: 2em 1em;
}
.l-offcanvas-header {
    display: block;
    width: 100vw;
    padding: .25em 1em;
    background-color: #f5f5f5;
}
.c-offcanvas-btn {
    position: absolute;
    top: 1em;
    left: 1em;
}
@media screen and (min-width: 768px) {
    .l-site-header {
        width: 220px;
    }
    .l-site-main {
        width: calc(100% - 220px);
        padding-top: 0;
    }
    .l-offcanvas-header {
        display: none;
    }
    .l-site-header__inner, .l-site-main__inner, .l-site-footer {
        padding: 2em;
    }
}
@media screen and (min-width: 960px) {
    .l-site-header {
        width: 256px;
    }
    .l-site-main {
        width: calc(100% - 256px);
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    .l-offcanvas-header {
        visibility: hidden;
        height: 1px;
    }
    .js-acms-offcanvas, .acms-pager {
        display: none;
    }
}




/* Compornent */
nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.copyright {
    font-size: .75em;
    text-align: center;
}
.c-offcanvas-title {
    text-align: center;
}
.c-article-header {
    padding: 2em 0;
    text-align: center;
}
.c-article-header p, .c-article-header h1 {
    margin: 0;
}
.c-article-header ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.c-article-header ul li {
    margin: 0 .75em;
}
.icon-subcat {
    vertical-align: sub;
}
.c-article-section th {
    font-weight: 500;
    white-space: nowrap;
}

/* project */
.brand-logo a {
    display: flex;
    justify-content: center;
}
.p-category-menu a {
    position: relative;
    display: block;
    padding: .5em;
    border-bottom: 1px dotted var(--line-color);
}
.p-category-menu a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--line-color);
    border-right: 1px solid var(--line-color);
    transform: rotate(45deg);
    position: absolute;
    top: 40%;
    right: .5em;
}
.p-slide {
    margin: 0;
    padding: 0;
    list-style: none;
}


/* SUMMARY */
.l-summary-list {
    display: flex;
    flex-wrap: wrap;
}
.c-summary {
    width: 50%;
    padding: 10px;
    display: flex;
    position: relative;
}
.c-summary-thumb {
    margin: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
    background-color: #eee;
    display: flex;
    justify-content: center;
}
.c-summary-thumb img {
    height: 100%;
    width: auto;
}
.c-summary-info {
    width: calc(100% - 100px);
    padding: 0 0 0 1em;
}
.c-summary-info h3 {
    margin: 0;
}
.c-summary-info .sub-category {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.c-summary-info .sub-category li {
    margin: 0 .25em;
}
.c-summary a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.c-summary a:hover {
    background-color: rgba(255,255,255,.3);
}
.p-locate {
    margin: 0;
    font-size: .875em;
}

@media screen and (max-width:768px) {
    .l-summary-list {
        flex-direction: column;
    }
    .c-summary {
        width: 100%;
    }
}


.information-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #aaa;
}
.information-table th, .information-table td {
    padding: .5em .25em;
    border-bottom: 1px solid #aaa;
}
.information-table th {
    width: 8em;
}
.information-table th span {
    display: block;
    width: 100%;
    background-color: #dbdcdc;
    text-align: center;
    border-radius: 1em;
}


.c-summary-info ul.categories {
    padding: 0;
    list-style: none;
    display: flex;
    font-size: 12px;
}
.c-summary-info ul.categories li {
    margin-right: 10px;
}