@charset "utf-8";

/***************************** sitemapBg *****************************/
.sitemapBg {
    width: 100%;
    height: 1000px;
    background: url(../img/sitemap/sitemap.jpg) no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}
.sitemapBg span.caption {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 2.4;
    color: #fff;
}
@media screen and (max-width: 768px) {
    .sitemapBg {
        width: 100%;
        height: 0;
        padding: 100% 0 0;
        background: url(../img/sitemap/sitemap_sp.jpg) no-repeat;
        background-size: cover;
        background-position: center;
    }
}

/***************************** mainCont *****************************/
.mainCont {
    width: 800px;
    position: absolute;
    top: 60px;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
}
@media screen and (max-width: 850px) {
    .mainCont {
        width: 700px;
    }
}
@media screen and (max-width: 768px) {
    .mainCont {
        width: 100%;
        margin: 30px auto 0;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        transform: translateX(0);
    }
}

/***************************** sitemapTxt *****************************/
.sitemapTxt {
    display: block;
    width: 800px;
    padding: 60px 0;
    text-align: center;
    background: rgba(255,255,255,0.8);
}
.sitemapTxt h2 {
    display: inline-block;
    margin: 0 0 55px;
    position: relative;
}
.sitemapTxt h2::before {
    content: '';
    background: url(../img/philosophy/underline.svg);
    display: inline-block;
    width: 120px;
    height: 4px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
}
.listCont {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}
ul.mapList {
    width: 50%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
ul.mapList li {
    display: block;
    width: 100%;
    position: relative;
    text-align: left;
}
ul.mainMapList li a.none {
    color: #999;
}
ul.mapList li a {
    font-size: 1.4rem;
    padding: 0 0 5px 20px;
}
.jpnList ul.mapList li a::before {
    content: "";
    opacity: 1;
    position: absolute;
    top: 6px;
    left: 0;
    border: 5px solid transparent;
    border-top: 9px solid #992424;
    transform: rotate(30deg);
    transition: all 0.5s ease;
}
.jpnList ul.mapList li a:nth-child(n + 2):before {
    content: "";
    opacity: 1;
    position: absolute;
    top: 6px;
    left: 0;
    border: 5px solid transparent;
    border-top: 9px solid #992424;
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

/***************************** sitemapTxt ENG *****************************/
.engList ul.mapList li a::before {
    content: "";
    opacity: 1;
    position: absolute;
    top: 3px;
    left: 0;
    border: 5px solid transparent;
    border-top: 9px solid #992424;
    transform: rotate(30deg);
    transition: all 0.5s ease;
}
.engList ul.mapList li a:nth-child(n + 2):before {
    content: "";
    opacity: 1;
    position: absolute;
    top: 3px;
    left: 0;
    border: 5px solid transparent;
    border-top: 9px solid #992424;
    transform: rotate(30deg);
    transition: all 0.5s ease;
}
@media screen and (max-width: 850px) {
    .sitemapTxt {
        width: 700px;
    }
}
@media screen and (max-width: 768px) {
    .sitemapTxt {
        width: 100%;
        padding: 0;
        background: rgba(255,255,255,0);
    }
}
@media screen and (max-width: 620px) {
    .listCont {
        width: 250px;
        flex-direction: column;
    }
    ul.mapList {
        width: 100%;
    }
    ul.mapList li:first-child {
        padding: 0 0 5px 0;
    }
    ul.mapList li:nth-child(n + 2) {
        padding: 0 0 5px 0;
    }
}
