@charset "utf-8";
/* reset
----------------------------------------------------------------------------*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,
strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,
details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {margin:0; padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;
/*background:transparent*/}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {display:block}nav ul {list-style:none}blockquote,q {quotes:none}
blockquote:before,blockquote:after,q:before,q:after {content:'';content:none}
a {margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration: none;}
ins {background-color:#ff9;color:#000;text-decoration:none}
mark {background-color:#ff9;color:#000;font-style:italic;font-weight:700}del {text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table {border-collapse:collapse;border-spacing:0}input,select {vertical-align:middle}img{vertical-align:top;vertical-align:bottom}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
ul {list-style: none;}li {list-style: none;}img {max-width: 100%;}

/*style css---------------------------------------------------------*/
body {
    font-family: sans-serif;
}


/* assets */
.text {
    color: #707070;
}

.pager {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 24px auto 0;
}

.pager__listFrame {
    display: flex;
    justify-content: space-between;
}

.pager__listItem {
    padding: 0 16px;
    box-sizing: border-box;
}

.pager__link.text:hover {
    cursor: pointer;
    border-bottom: 3px solid #D2E2DE;
}

.INPUT {
    display: block;
    padding: 0 0 0 16px;
    box-sizing: border-box;
    border-radius: 30px;
    border: solid 1px #707070;
    background-color: #E5F0F7;
}

.BUTTON {
    display: block;
    margin: 0 auto;
    width: 200px;
    height: 40px;
    border-radius: 30px;
    border: none;
}

.issue {
    cursor: pointer;
    margin: 24px auto;
    line-height: 40px;
}

/* score color --------*/
.veryLow {
    color: #DA291C
}

.Low {
    color: #FF7C4B;
}

.normal {
    color: #5DD9A0;
}

.veryHigh {
    color: #63C5DD;
}

/*SP---------------------------------------------------------------------------*/
.wrap {
    font-family: sans-serif;
    width: 100%;
    margin: 0 auto;
    padding: 80px 8px;
    box-sizing: border-box;
    text-align: center;
    background-color: #EDEDED;
}

.content__wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 40px;
    box-sizing: border-box;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
}

.content__ttl {
    position: relative;
    width: 320px;
    height: 40px;
    margin: 0 auto;
    transform: translateY(-20px);
    border-radius: 30px;
    line-height: 40px;
    text-align: center;
    font-weight: normal;
    color: #fff;
    background-color: #fff;
    box-shadow:  2px 2px 4px #AAAAAA,
             -2px -2px 4px #ffffff;
}

.content__ttl::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 120px;
    height: 64px;
    background-image: url(../img/mmap/ttl_logo.svg?b);
    background-size: contain;
    background-repeat: no-repeat;
}

.main {
    padding: 0 16px;
    box-sizing: border-box;
}

.main__ttl {
    position: relative;
    width: 100%;
    height: 40px;
    margin: 16px auto;
    border-radius: 30px;
    line-height: 40px;
    text-align: center;
    font-weight: normal;
    color: #fff;
    background-color: #5B897F;
}

.getBreadcrumb__wrapper {
    font-size: 12px;
    margin: 0 auto 40px;
}

.main__subttl.text {
    font-weight: normal;
    padding: 0 0 24px;
    box-sizing: border-box;
}

.breadcrumb__listFrame {
    display: flex;
    padding: 0 0 24px;
    box-sizing: border-box;
}

.breadcrumb__listItem {
    display: inline;
}

.breadcrumb__listItem::after {
    content: ">";
    padding: 0 8px;
    font-weight: bold;
    color: #707070;
}

.breadcrumb__listItem:last-child:after {
    content: "";
}

.breadcrumb__link {
    cursor: pointer;
    color: #707070;
}

.breadcrumb__link:hover {
    text-decoration: underline;
}

.breadcrumb__linkText.text {
    font-size: 14px;
}

.content__copy {
    display: none;
}

#menu {
    display: none;
}

.content__Button {
    position: fixed;
    width: 30px;
    height: 30px;
    top: 16px;
    right: 16px;
    z-index: 900;
    border-radius: 5px;
    background-color: #fff;
    transition: 0.4s;
}

.content__menuIcon {
    width: 20px;
    height: 2px;
    margin: 6px auto;
    position: relative;
}

.content__menuIcon::before,
.content__menuIcon::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
}
.content__menuIcon,
.content__menuIcon::before,
.content__menuIcon::after {
    background-color: #A6B8BC;
    transition: 0.4s;
}

.content__menuIcon::before {
    top: 8px;
}

.content__menuIcon::after {
    top: 16px;
}

#menu:checked ~ .content__Button {
    background-color: transparent;
}

#menu:checked ~ .content__Button .content__menuIcon {
    background-color: transparent;
}

#menu:checked ~ .content__Button .content__menuIcon::before,
#menu:checked ~ .content__Button .content__menuIcon::after {
    top: 8px;
}

#menu:checked ~ .content__Button .content__menuIcon::before {
    transform: rotate(-45deg);
}

#menu:checked ~ .content__Button .content__menuIcon::after {
    transform: rotate(45deg);
}

.menu__listFrame {
    position: fixed;
    width: 311px;
    height: 100vh;
    padding: 64px 0;
    box-sizing: border-box;
    right: -311px;
    top: 0;
    transition: ease 0.7s;
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: #313634;
    z-index: 800;
}

#menu:checked ~ .menu__listFrame {
    right: 0;
}

.menu__link {
    display: block;
    width: 80%;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    margin: 24px auto;
    font-size: 14px;
    color: #fff;
    overflow: scroll;
    border-radius: 10px;
    background: linear-gradient(145deg, #343a38, #2c312f);
    box-shadow:  3px 3px 6px #252927,
                -3px -3px 6px #3d4441;
}

.BUTTON.menu__link {
    width: 60%;
    height: 42px;
    overflow-y: hidden;
    margin: 64px auto 0;
    background: linear-gradient(145deg, #696969, #797979);
}


.search.search__wrapper {
    display: block;
    width: 100%;
    margin: 24px auto;
}

.search__name {
    width: 200px;
    height: 40px;
    border-radius: 30px;
    border: solid 1px #cbcbcb;
    padding: 0 0 0 15px;
    box-sizing: border-box;
    margin: 0 auto;
}

.search__label.text {
    display: block;
    text-align: left;
    font-size: 14px;
}

.search__date {
    height: 40px;
    border-radius: 30px;
    border: 1px solid #cbcbcb;
    padding: 0 0 0 8px;
    box-sizing: border-box;
    margin: 0 auto;
}

.search__mark.text {
    height: 40px;
    line-height: 40px;
}

.search__box {
    display: flex;
    margin: 0 auto 24px;
}

.search .select {
    width: 160px;
    height: 40px;
    margin: 0 auto 24px;
    padding: 0 0 0 8px;
    box-sizing: border-box;
    border-radius: 30px;
    border: 1px solid #cbcbcb;
}

.clientList.main__table {
    padding: 0 0 40px;
    overflow-x: auto;
    color: #707070;
}

.clientList.main__table::before {
    content: "※横にスクロールしてください";
    display: block;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 0 8px;
    box-sizing: border-box;
    text-align: left;
    font-size: 10px;
}

.verticalTable {
    margin: 0 auto;
}

.verticalTable__headerTtl,
.verticalTable__bodyText {
    border: #cbcbcb solid 1px;
    font-size: 12px;
    white-space: nowrap;
    height: 40px;
    vertical-align: middle;
    padding: 0 8px;
    box-sizing: border-box;
}

.verticalTable__headerTtl {
    border-bottom-width: 0;
    height: 40px;
    vertical-align: middle;
    font-weight: normal;
    background-color: #D2E2DE;
}

.verticalTable__button {
    display: block;
    margin: 0 auto;
    width: 56px;
    height: 32px;
    padding: 0;
    font-size: 12px;
    border-radius: 30px;
    border: none;
    color: #fff;
    background-color: #DA291C;
    line-height: 32px;
}

.verticalTable__button:hover {
    color: #252927;
    background-color: #efefef;
}

.search__button {
    color: #fff;
    background-color: #DA291C;
}

.search__button:hover {
    color: #252927;
    background-color: #efefef;   
}

.copyFooter {
    position: relative;
    display: block;
    padding: 16px 0;
}

.copyFooter::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 26px;
    background-image: url(../img/mmap/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 8px;
}

.footer {
    display: block;
    margin: 0 auto;
}

.footer__listFrame {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
}

.footer__listItem {
    position: relative;
    display: block;
    width: 160px;
    font-size: 10px;
}

.footer__listItem:first-child {
    border-right: solid 1px #707070;
}

.reset .login__button {
    cursor: pointer;
    color: #fff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    background-color: #DA291C;
}

.reset .login__button:hover {
    box-shadow: none;
}

.resetLink {
    cursor: pointer;
    line-height: 40px;
    font-size: 14px;
    color: #fff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    background-color: #a6a6a6;
}

.resetLink:hover {
    box-shadow: none;
}

/*PC---------------------------------------------------------------------------*/

@media screen and (min-width: 960px) { 
.wrap {
    font-family: sans-serif;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0;
}

.content__wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 80px;
    box-sizing: border-box;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
}

.getBreadcrumb__wrapper {
    display: flex;
    padding: 0 0 0 48px;
    font-size: 16px;
}

.breadcrumbLink {
    display: block;
    padding: 0 8px;
}

.content__ttl {
    position: relative;
    width: 100%;
    max-width: 860px;
    height: 72px;
    margin: 0 auto 40px;
    transform: translateY(-36px);
    border-radius: 30px;
    line-height: 72px;
    text-align: center;
    font-size: 20px;
    font-weight: normal;
    color: #fff;
    background-color: #fff;
    box-shadow:  2px 2px 4px #AAAAAA,
             -2px -2px 4px #ffffff;
}

.content__ttl::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 200px;
    height: 64px;
    background-image: url(../img/mmap/ttl_logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.main__ttl {
    position: relative;
    width: 832px;
    height: 72px;
    margin: 0 0 24px 24px;
    border-radius: 30px;
    line-height: 72px;
    text-align: center;
    font-weight: normal;
    font-size: 20px;
    color: #fff;
    background-color: #5B897F;
}

.main__subttl.text {
    font-weight: normal;
    padding: 8px 0 24px;
    box-sizing: border-box;
}

.breadcrumb__listFrame {
    display: flex;
    padding: 0 0 24px 32px;
    box-sizing: border-box;
}

.content__copy {
    display: none;
}

.content__box {
    display: flex;
    margin: auto;
}

.main {
    width: 100%;
    max-width: 864px;
}

#menu {
    display: none;
}

.content__Button {
    display: none;
    position: fixed;
    width: 30px;
    height: 30px;
    top: 16px;
    right: 16px;
    z-index: 900;
    border-radius: 5px;
    background-color: #fff;
    transition: 0.4s;
}

.content__menuIcon {
    width: 20px;
    height: 2px;
    margin: 6px auto;
    position: relative;
}

.content__menuIcon::before,
.content__menuIcon::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
}
.content__menuIcon,
.content__menuIcon::before,
.content__menuIcon::after {
    background-color: #A6B8BC;
    transition: 0.4s;
}

.content__menuIcon::before {
    top: 8px;
}

.content__menuIcon::after {
    top: 16px;
}

#menu:checked ~ .content__Button {
    background-color: transparent;
}

#menu:checked ~ .content__Button .content__menuIcon {
    background-color: transparent;
}

#menu:checked ~ .content__Button .content__menuIcon::before,
#menu:checked ~ .content__Button .content__menuIcon::after {
    top: 8px;
}

#menu:checked ~ .content__Button .content__menuIcon::before {
    transform: rotate(-45deg);
}

#menu:checked ~ .content__Button .content__menuIcon::after {
    transform: rotate(45deg);
}

.menu__image {
    position: absolute;
    top: -48px;
    right: 0;
    left: 0;
    margin: auto;
    width: 80%;
    z-index: 900;
}

.menu__listFrame {
    position: relative;
    width: 280px;
    height: auto;
    padding: 80px 0;
    box-sizing: border-box;
    right: initial;
    top: initial;
    transition: ease 0.7s;
    overflow-y: visible;
    overflow-x: visible;
    border-radius: 30px;
    background-color: #313634;
    z-index: initial;
}

.menu__listItem {
    overflow: hidden;
}

#menu:checked ~ .menu__listFrame {
    right: 0;
}

.menu__link {
    display: block;
    width: 216px;
    height: 48px;
    line-height: 48px;
    box-sizing: border-box;
    margin: 24px auto;
    font-size: 15px;
    color: #fff;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(145deg, #343a38, #2c312f);
    box-shadow: 3px 3px 3px #252927, -3px -3px 3px #3d4441;
}

.BUTTON.menu__link {
    width: 216px;
    height: 48px;
    overflow-y: hidden;
    margin: 64px auto 0;
    background: linear-gradient(145deg, #696969, #797979);
}

.menu__link:hover {
    box-shadow: none;
}

.menu__link--active {
    background: #5B897F;
    box-shadow: inset 5px 5px 10px rgba(0,0,0,0.4),
                inset -5px -5px 10px rgba(255,255,255,0.2);
}

.search.search__wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 24px auto;
    max-width: 640px;
}

.search__name {
    width: 160px;
    height: 40px;
    border-radius: 30px;
    border: solid 1px #cbcbcb;
    padding: 0 0 0 15px;
    box-sizing: border-box;
    margin: 0 auto;
}

.search__label.text {
    display: block;
    text-align: left;
    font-size: 14px;
    padding: 0;
    height: 40px;
    line-height: 40px;
}

.search__mark {
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 6px;
}

.clientList.main__table {
    padding: 0 0 40px;
    overflow-x: auto;
    color: #707070;
    width: 100%;
    max-width: 832px;
    box-sizing: border-box;
    margin: 0 auto;
}

.clientList.main__table::before {
    content: "※横にスクロールしてください";
    display: none;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 0 8px;
    box-sizing: border-box;
    text-align: left;
    font-size: 10px;
}

.verticalTable {
    margin: 0 auto;
}

.verticalTable__headerTtl,
.verticalTable__bodyText {
    position: relative;
    border: none;
    font-size: 12px;
    white-space: nowrap;
    height: 56px;
    vertical-align: middle;
    padding: 0;
    box-sizing: border-box;
}

.verticalTable__headerTtl {
    border-bottom-width: 0;
    font-weight: normal;
    background-color: #D2E2DE;
}

.verticalTable__headerTtl:first-child,
.verticalTable__bodyText:first-child {
    position: relative;
    width: 160px;
    border-radius: 10px 0 0 10px;
}

.verticalTable__headerTtl:last-child {
    border-radius: 0 10px 10px 0;
}

.verticalTable__headerTtl::after,
.verticalTable__bodyText::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 32px;
    border-right: 1px solid #C7C7C7;
}

.verticalTable__headerTtl:first-child::after,
.verticalTable__bodyText:first-child:after {
    border: none;

}

.verticalTable__headerTtl:nth-child(2) {
    width: 128px;
}

.verticalTable__headerTtl:nth-child(3),
.verticalTable__headerTtl:nth-child(6),
.verticalTable__headerTtl:nth-child(7) {
    width: 96px;

}

.verticalTable__headerTtl:nth-child(4),
.verticalTable__headerTtl:nth-child(5) {
    width: 128px;

}

.verticalTable__bodyRow {
    border-bottom: 1px solid #C7C7C7;
}

.verticalTable__button {
    width: 56px;
    height: 32px;
    border-radius: 30px;
    border: none;
    padding: 0;
}

.copyFooter.text {
    margin: 24px auto 0;
    text-align: center;
    display: block;
}

.footer__listItem {
    position: relative;
    display: block;
    width: 200px;
    font-size: 14px;
}


}


