@charset "UTF-8";
*, *::before, *::after {
    box-sizing: border-box;
}

button:focus {
    outline: none;
}

a:active, a:visited, a:hover {
    color: inherit;
}

body {
    color: #0d0d0d;
    font-family: "UD新ゴ コンデンス90 L";
    font-size: 16px;
}

html {
    font-size: 62.5%;
    list-style: none;
}

body {
    font-size: 16px;
}

body .loader {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    display: none;
}

body .loader.isActive {
    display: flex;
}

body .loader .mask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.3;
}

body .loader .loaderWrap {
    width: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body .loader .loaderWrap .bindingLine {
    content: "";
    width: 60px;
    height: 6px;
    margin: 0 auto;
    border: 3px solid #fff;
}

body .loader .loaderWrap .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60px;
    height: 70px;
    margin: 0 auto;
    padding: 10px 3px 10px 7px;
    border: 2px solid #fff;
    border-top: 0;
}

body .loader .loaderWrap .box .line {
    width: 40px;
    margin-bottom: 8px;
    border-top: 2px solid #fff;
    opacity: 0;
    animation: writeLine 3s infinite ease-in;
}

body .loader .loaderWrap .box .line.line1 {
    animation-delay: 0s;
}

body .loader .loaderWrap .box .line.line2 {
    animation-delay: 0.5s;
}

body .loader .loaderWrap .box .line.line3 {
    animation-delay: 1s;
}

body .loader .loaderWrap .box .line.line4 {
    animation-delay: 1.5s;
}

body .loader .loaderWrap .loaderText {
    font-size: 2rem;
    text-align: center;
    margin-top: 10px;
    color: #fff;
}

@keyframes writeLine {
    0% {
        width: 0px;
        opacity: 0;
    }
    45% {
        width: 40px;
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

body .container-fluid header {
    /* メニュー固定 */
    position: sticky;
    top: 0;
    z-index: 60;
}

body .container-fluid header .hamburger {
    background-color: #0f5cd6;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    height: 50px;
    position: fixed;
    left: 10px;
    top: 15px;
    transition: 0.3s;
    width: 50px;
    z-index: 100;
}

body .container-fluid header .hamburger:hover {
    opacity: 0.5;
}

body .container-fluid header .hamburger span {
    background: #ffffff;
    border-radius: 5px;
    display: inline-block;
    height: 2px;
    left: 14px;
    position: absolute;
    transition: all 0.4s;
    width: 45%;
}

body .container-fluid header .hamburger span:nth-of-type(1) {
    top: 13px;
}

body .container-fluid header .hamburger span:nth-of-type(2) {
    top: 19px;
}

body .container-fluid header .hamburger span:nth-of-type(3) {
    top: 25px;
}

body .container-fluid header .hamburger span:nth-of-type(3)::after {
    color: #ffffff;
    content: "メニュー";
    font-size: 0.6rem;
    left: -8px;
    position: absolute;
    text-transform: uppercase;
    top: 5px;
    white-space: nowrap;
}

body .container-fluid header .hamburger.isActive {
    background-color: #0f5cd6;
    border-radius: 5px;
    cursor: pointer;
    height: 50px;
    width: 50px;
}

body .container-fluid header .hamburger.isActive span:nth-of-type(1) {
    left: 18px;
    top: 14px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

body .container-fluid header .hamburger.isActive span:nth-of-type(2) {
    opacity: 0;
}

body .container-fluid header .hamburger.isActive span:nth-of-type(3) {
    left: 18px;
    top: 26px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

body .container-fluid header .hamburger.isActive span:nth-of-type(3)::after {
    content: "とじる";
    left: 4px;
    top: 5px;
    transform: translateY(0) rotate(-45deg);
}

body .container-fluid header .hamburgerSearch {
    background-color: #0f5cd6;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    height: 50px;
    position: fixed;
    right: 10px;
    top: 15px;
    transition: 0.3s;
    width: 50px;
    z-index: 100;
}

body .container-fluid header .hamburgerSearch:hover {
    opacity: 0.5;
}

body .container-fluid header .hamburgerSearch span {
    background: #ffffff;
    border-radius: 5px;
    display: inline-block;
    height: 2px;
    right: 14px;
    position: absolute;
    transition: all 0.4s;
    width: 45%;
}

body .container-fluid header .hamburgerSearch span:nth-of-type(1) {
    top: 13px;
}

body .container-fluid header .hamburgerSearch span:nth-of-type(2) {
    top: 19px;
}

body .container-fluid header .hamburgerSearch span:nth-of-type(3) {
    top: 25px;
}

body .container-fluid header .hamburgerSearch span:nth-of-type(3)::after {
    color: #ffffff;
    content: "さがす";
    font-size: 0.6rem;
    left: -3px;
    position: absolute;
    text-transform: uppercase;
    top: 5px;
    white-space: nowrap;
}

body .container-fluid header .navListSearchSp {
    align-items: center;
    justify-content: center;
    background-color: #fff;
    cursor: pointer;
    display: none;
    flex-direction: column;
    padding: 3px;
    position: fixed;
    top: 15px;
    transition: 0.3s;
    right: 75px;
    border-radius: 5px;
    border: 3px solid #0F5CD6;
    height: 50px;
    width: 50px;
}

body .container-fluid header .navListSearchSp .bi-search {
    color: #0F5CD6;
    font-size: 24px;
}

body .container-fluid header .navListSearchSp:hover {
    opacity: 0.5;
}

body .container-fluid header .navberMenu {
    background-color: #F5FCFF;
    border-bottom: 2px solid #0f5cd6;
    display: flex;
    flex-direction: column;
    left: 0;
    overflow: visible;
    padding: 10px;
    position: relative;
    transition: 0.2s;
    width: 100%;
    z-index: 50;
}

body .container-fluid header .navberMenu .navberHeading {
    align-items: center;
    border-bottom: 3px dotted #0f5cd6;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 10px;
}

body .container-fluid header .navberMenu .navberHeading .navLogo {
    background-size: cover;
    height: auto;
    margin-top: 10px;
    width: 200px;
}

body .container-fluid header .navberMenu .navberHeading .navLogo .navLogoImg {
    height: auto;
    width: 100%;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo {
    display: flex;
    gap: 10px;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons {
    align-items: center;
    color: #0f5cd6;
    display: flex;
    gap: 10px;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .notLoginMenu {
    display: flex;
    gap: 10px;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .notLoginMenu .userRegistrationBtn {
    align-items: center;
    background-color: #3770cb;
    background-image: url("/images/btn-blue.png");
    background-size: cover;
    border: 2px solid #0f5cd6;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 0 5px;
    width: 150px;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .notLoginMenu .userRegistrationBtn:hover {
    opacity: 0.7;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .notLoginMenu .loginBtn {
    align-items: center;
    background-color: #ffc107;
    background-image: url("/images/btn-yellow.png");
    background-size: cover;
    border: 2px solid #ffc107;
    border-radius: 5px;
    display: flex;
    font-weight: bold;
    height: 40px;
    justify-content: center;
    padding: 0 5px;
    width: 150px;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .notLoginMenu .loginBtn:hover {
    opacity: 0.7;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenu.isLogin {
    display: flex;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenuBtn {
    align-items: center;
    background-color: #0f5cd6;
    border: 2px solid #0f5cd6;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    height: 40px;
    padding: 0 5px;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenuBtn:hover {
    opacity: 0.7;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenuList {
    color: #0f5cd6;
    font-size: 16px;
    min-width: 110px;
    padding: 5px;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenuList li {
    align-items: center;
    display: flex;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenuList li .bi-person-circle,
body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenuList li .bi-door-closed-fill {
    font-size: 20px;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenuList li:hover {
    opacity: 0.7;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .notLoginMenu {
    display: flex;
    opacity: 0.3s;
    transition: 0.3s;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .notLoginMenu.isNotLogin {
    display: none;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenu {
    display: none;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenu.isLogin {
    display: flex;
}

body .container-fluid header .navberMenu .navHeadingBtn {
    align-items: center;
    display: flex;
    gap: 10px;
    height: auto;
    margin-right: 60px;
}

body .container-fluid header .navberMenu .navHeadingBtn .furiganaChangeBtn {
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #0f5cd6;
    border-radius: 5px;
    color: #333333;
    color: #0f5cd6;
    display: flex;
    gap: 5px;
    height: 40px;
    justify-content: center;
    padding: 0 3px;
    text-align: center;
    transition: 0.1s;
    width: calc(100% - 32px);
}

body .container-fluid header .navberMenu .navHeadingBtn .furiganaChangeBtn p {
    font-size: 1rem;
}

body .container-fluid header .navberMenu .navHeadingBtn .furiganaChangeBtn .furiganaOnOffBtn .furiganaOff {
    border: 1px solid #0f5cd6;
    border-radius: 10px;
    color: #0f5cd6;
    display: none;
    font-size: 0.6rem;
    padding: 2px;
}

body .container-fluid header .navberMenu .navHeadingBtn .furiganaChangeBtn .furiganaOnOffBtn .furiganaOff.isActive {
    display: block;
}

body .container-fluid header .navberMenu .navHeadingBtn .furiganaChangeBtn .furiganaOnOffBtn .furiganaOn {
    background-color: #0f5cd6;
    border: 1px solid #0f5cd6;
    border-radius: 10px;
    color: #ffffff;
    display: none;
    font-size: 0.6rem;
    padding: 2px;
}

body .container-fluid header .navberMenu .navHeadingBtn .furiganaChangeBtn .furiganaOnOffBtn .furiganaOn.isActive {
    display: block;
}

body .container-fluid header .navberMenu .navHeadingBtn .furiganaChangeBtn:hover {
    opacity: 0.7;
}

body .container-fluid header .navberMenu .navHeadingBtn .selectLanguage .languageBtn {
    background-color: #ffffff;
    border: 2px solid #0f5cd6;
    border-radius: 5px;
    color: #0f5cd6;
    height: 40px;
}

body .container-fluid header .navberMenu .navHeadingBtn .selectLanguage .languageBtn:hover {
    opacity: 0.7;
}

body .container-fluid header .navberMenu .navHeadingBtn .selectLanguage .btn:focus {
    border: 2px solid #0f5cd6;
    box-shadow: none;
}

body .container-fluid header .navberMenu .navHeadingBtn .selectLanguage .dropdown-menu {
    min-width: 0;
    width: 140px;
}

body .container-fluid header .navberMenu .navHeadingBtn .selectLanguage .languageMenu .dropdown-item {
    padding: 0;
    text-align: center;
}

body .container-fluid header .navberMenu .navHeadingBtn .selectLanguage .languageMenu .dropdown-item:hover {
    background-color: transparent;
    opacity: 0.7;
}

body .container-fluid header .navberMenu .navList {
    border-radius: 5px;
    color: #0f5cd6;
    display: flex;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
}

body .container-fluid header .navberMenu .navList .navListBlock {
    display: flex;
    position: relative;
}

/*body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(1)::after,
body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(2)::after,
body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(3)::after,*/
body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(6)::after,
body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(7)::after,
body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(8)::after {
    background-color: #0f5cd6;
    content: "";
    height: 70%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
}

body .container-fluid header .navberMenu .navList .navListBlock:hover {
    opacity: 0.7;
}

body .container-fluid header .navberMenu .navList .navListBlock .navLink {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 5px;
    padding: 7px;
    transition: 0.3s;
    width: 145px;
}

body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(4) .navLink,
body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(7) .navLink{
    width: 130px;
}

body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(1) .navLink,
body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(8) .navLink,
body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(9) .navLink {
    width: 110px;
}

body .container-fluid header .navberMenu .navList .navListBlock .navLink .bsIcon {
    font-size: 30px;
}

body .container-fluid header .navberMenu .navList .navListBlock .navLink .navberItem {
    align-items: center;
    border-radius: 10px;
    display: flex;
    gap: 5px;
    text-align: center;
}

body .container-fluid header .navberMenu .navList .navListBlock .furiganaImg {
    height: auto;
    width: 35px;
}

body .container-fluid header .navberMenu .navList .navListBlock .brailleImg {
    height: auto;
    width: 30px;
}

body .container-fluid header .navberMenu .navList .navListBlock .textConversionImg {
    height: auto;
    width: 28px;
}

body .container-fluid header .navberMenu .navList .navListBlock .homeIcon {
    border-radius: 10px;
    position: relative;
}

body .container-fluid header .navberMenu .navList .navListBlock .homeIcon.isActive {
    background-color: #0f5cd6;
    color: #ffffff;
}

body .container-fluid header .navberMenu .navList .navListBlock .libraryIcon {
    border-radius: 10px;
    position: relative;
}

body .container-fluid header .navberMenu .navList .navListBlock .libraryIcon.isActive {
    background-color: #0f5cd6;
    color: #ffffff;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu {
    background-color: #f5fcff;
    border: 2px solid #0f5cd6;
    border-radius: 10px;
    display: none;
    left: 50%;
    padding: 5px;
    position: absolute;
    top: 110px;
    transform: translate(-50%, -50%);
    z-index: 1;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu .navUploadList {
    cursor: pointer;
    display: flex;
    padding: 7px;
    transition: 0.3s;
    width: 120px;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu .navUploadList:hover {
    opacity: 0.7;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu .navUploadList .bsIcon {
    font-size: 1.6rem;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu .navUploadList .navberItem {
    align-items: center;
    border-radius: 10px;
    display: flex;
    font-size: 0.9rem;
    gap: 5px;
    text-align: center;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu .navUploadList .navberItem .navLink {
    padding: 0 5px;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu .navUploadList .navberItem .navLinkPDF {
    font-size: 0.6rem;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu .navUploadList .furiganaImg {
    height: auto;
    width: 35px;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu .navUploadList .brailleImg {
    height: auto;
    width: 30px;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu .navUploadList .textConversionImg {
    height: auto;
    width: 28px;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu.isVisible {
    display: flex;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu::before {
    border-bottom: 12px solid #0f5cd6;
    /* 三角形の外枠の色 */
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    top: -12px;
    transform: translateX(-50%);
    width: 0;
    z-index: 0;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu::after {
    border-bottom: 10px solid #f5fcff;
    /* 三角形の内部の色 */
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    top: -9px;
    transform: translateX(-50%);
    width: 0;
    z-index: 1;
}

body .container-fluid header .navberMenu .navList .libraryOnlyRequestBlock {
    display: none;
    justify-content: center;
}

body .container-fluid header .navberMenu .navList .libraryOnlyRequestBlock:hover {
    opacity: 0.5;
}

body .container-fluid header .navberMenu .navList .libraryOnlyRequestBlock .requestRankingBtnSp {
    padding: 7px;
    transition: 0.3s;
    width: 100px;
}

body .container-fluid header .navberMenu .navList .libraryOnlyRequestBlock .requestRankingBtnSp img {
    width: 100%;
}

body .container-fluid header .navberMenu .isLoginBtn {
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 1200px) {
    body .container-fluid header .hamburgerSearch {
        display: block;
    }

    body .container-fluid header .navberMenu .navList .navListBlock .navListSearch {
        display: flex;
    }

    body .container-fluid header .navberMenu .navList .libraryOnlySearchBlock {
        display: flex;
    }
}

@media screen and (max-width: 1200px) and (max-width: 992px) {
    body .container-fluid header .navberMenu .navberHeading {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-bottom: 10px;
    }

    body .container-fluid header .navberMenu .navberHeading .otherLogo .navHeadingBtn {
        margin-right: 0;
    }

    body .container-fluid header .navberMenu .navList .navUploadBlock .navUploadMenu {
        left: 52%;
        position: absolute;
        top: 170px;
    }

    body .container-fluid header .navberMenu .navList .navUploadBlock .navUploadMenu.isVisible {
        display: block;
    }
}

@media screen and (max-width: 1200px) and (max-width: 768px) {
    body .container-fluid header .hamburger {
        display: block;
    }

    body .container-fluid header .navListSearchSp {
        display: flex;
    }

    body .container-fluid header .navberMenu {
        display: none;
    }

    body .container-fluid header .navberMenu.isVisible {
        display: flex;
    }

    body .container-fluid header .navberMenu .navberHeading .otherLogo {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons {
        flex-direction: column;
    }

    body .container-fluid header .navberMenu .navList .navUploadBlock .navUploadMenu {
        left: 50%;
    }
}

@media screen and (max-width: 1200px) and (max-width: 576px) {
    body .container-fluid header .navberMenu {
        display: none;
        overflow: scroll;
        height: 100vh;
    }

    body .container-fluid header .navberMenu.isVisible {
        position: fixed;
        top: 0;
    }

    body .container-fluid header .navberMenu .navberHeading {
        margin-bottom: 0;
    }

    body .container-fluid header .navberMenu .navberHeading .otherLogo {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    body .container-fluid header .navberMenu .navList {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    body .container-fluid header .navberMenu .navList .navListBlock {
        display: block;
    }

    body .container-fluid header .navberMenu .navList .navListBlock .libraryIcon {
        margin: 0;
    }

    body .container-fluid header .navberMenu .navList .navListBlock .navLink {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
    }

    body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(4) .navLink,
    body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(7) .navLink{
        width: 100%;
    }

    body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(1) .navLink,
    body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(8) .navLink,
    body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(9) .navLink {
        width: 100%;
    }

    body .container-fluid header .navberMenu .navList .navListBlock .navLink .requestRankingBtnSp {
        text-align: center;
        width: 100px;
    }

    body .container-fluid header .navberMenu .navList .navListBlock .navLink .requestRankingBtnSp img {
        width: 100%;
    }

    body .container-fluid header .navberMenu .navList .navListBlock .navUploadBlock .navUploadMenu {
        top: 140px;
    }

body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(6), body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(7), body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(8){
        border-bottom: 2px dotted #0f5cd6;
    }

    body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(1)::after, body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(2)::after, body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(3)::after, body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(6)::after, body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(7)::after, body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(8)::after{
        display: none;
    }

    body .container-fluid header .navberMenu .navList .libraryOnlySearchBlock {
        display: none;
    }

    body .container-fluid header .navberMenu .navList .libraryOnlyRequestBlock {
        display: flex;
    }
}

/*
fornt 図書一覧ページ z-index設定一覧

// ヘッダー
header: 60
// ヘッダー内グローバルメニュー
header .navberMenu: 50
// ハンバーガーメニュー(グローバルメニュー表示用）
header .hamburger: 100
// ハンバーガーメニュー(グローバルメニュー表示用）
header .hamburgerSearch: 100

// ジャンル選択のモーダル
main .genresModal : 100

// 図書検索機能サイドバー表示のマスク
main .searchMask : 70
// 図書検索機能サイドバー表示エリア
main .search : 75

// 12月リリース時不使用 =============================
// グローバルメニュー内のその他一覧
.navberMenu .navList .navListBlock .navUploadMenu: 1
  // ビフォアー
  .navUploadMenu::before :0
  // アフター
  .navUploadMenu::after : 1

*/
body .container-fluid {
    padding: 0;
    /* header ========================================== */
}

body .container-fluid header {
    /* メニュー固定 */
    position: sticky;
    top: 0;
    z-index: 60;
}

body .container-fluid header .hamburger {
    background-color: #0f5cd6;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    height: 50px;
    position: fixed;
    left: 10px;
    top: 15px;
    transition: 0.3s;
    width: 50px;
    z-index: 100;
}

body .container-fluid header .hamburger:hover {
    opacity: 0.5;
}

body .container-fluid header .hamburger span {
    background: #ffffff;
    border-radius: 5px;
    display: inline-block;
    height: 2px;
    left: 14px;
    position: absolute;
    transition: all 0.4s;
    width: 45%;
}

body .container-fluid header .hamburger span:nth-of-type(1) {
    top: 13px;
}

body .container-fluid header .hamburger span:nth-of-type(2) {
    top: 19px;
}

body .container-fluid header .hamburger span:nth-of-type(3) {
    top: 25px;
}

body .container-fluid header .hamburger span:nth-of-type(3)::after {
    color: #ffffff;
    content: "メニュー";
    font-size: 10px;
    left: -8px;
    position: absolute;
    text-transform: uppercase;
    top: 5px;
    white-space: nowrap;
}

body .container-fluid header .hamburger.isActive {
    background-color: #0f5cd6;
    border-radius: 5px;
    cursor: pointer;
    height: 50px;
    width: 50px;
}

body .container-fluid header .hamburger.isActive span:nth-of-type(1) {
    left: 18px;
    top: 14px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

body .container-fluid header .hamburger.isActive span:nth-of-type(2) {
    opacity: 0;
}

body .container-fluid header .hamburger.isActive span:nth-of-type(3) {
    left: 18px;
    top: 26px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

body .container-fluid header .hamburger.isActive span:nth-of-type(3)::after {
    content: "とじる";
    left: 4px;
    top: 5px;
    transform: translateY(0) rotate(-45deg);
}

body .container-fluid header .hamburgerSearch {
    background-color: #0f5cd6;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    height: 50px;
    position: fixed;
    right: 10px;
    top: 15px;
    transition: 0.3s;
    width: 50px;
    z-index: 100;
}

body .container-fluid header .hamburgerSearch:hover {
    opacity: 0.5;
}

body .container-fluid header .hamburgerSearch span {
    background: #ffffff;
    border-radius: 5px;
    display: inline-block;
    height: 2px;
    right: 14px;
    position: absolute;
    transition: all 0.4s;
    width: 45%;
}

body .container-fluid header .hamburgerSearch span:nth-of-type(1) {
    top: 13px;
}

body .container-fluid header .hamburgerSearch span:nth-of-type(2) {
    top: 19px;
}

body .container-fluid header .hamburgerSearch span:nth-of-type(3) {
    top: 25px;
}

body .container-fluid header .hamburgerSearch span:nth-of-type(3)::after {
    color: #ffffff;
    content: "さがす";
    font-size: 0.6rem;
    left: -3px;
    position: absolute;
    text-transform: uppercase;
    top: 5px;
    white-space: nowrap;
}

body .container-fluid header .navListSearchSp {
    align-items: center;
    justify-content: center;
    background-color: #fff;
    cursor: pointer;
    display: none;
    flex-direction: column;
    padding: 3px;
    position: fixed;
    top: 15px;
    transition: 0.3s;
    right: 75px;
    border-radius: 5px;
    border: 3px solid #0F5CD6;
    height: 50px;
    width: 50px;
}

body .container-fluid header .navListSearchSp .bi-search {
    color: #0F5CD6;
    font-size: 24px;
}

body .container-fluid header .navListSearchSp:hover {
    opacity: 0.5;
}

body .container-fluid header .navberMenu {
    display: flex;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    flex-direction: column;
    padding: 10px;
    background-color: #f5fcff;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: 2px solid #0f5cd6;
    transition: 0.2s;
    z-index: 50;
    overflow: visible;
}

body .container-fluid header .navberMenu.isVisible {
    display: flex;
}

body .container-fluid header .navberMenu .navberHeading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px dotted #0f5cd6;
    margin-bottom: 10px;
}

body .container-fluid header .navberMenu .navberHeading .navLogo {
    width: 200px;
    height: auto;
    margin-top: 10px;
    background-size: cover;
    margin-left: 20px;
}

body .container-fluid header .navberMenu .navberHeading .navLogo .navLogoImg {
    width: 100%;
    height: auto;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo {
    display: flex;
    gap: 10px;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons {
    color: #0f5cd6;
    display: flex;
    gap: 10px;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .notLoginMenu {
    display: flex;
    gap: 10px;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .notLoginMenu .userRegistrationBtn {
    align-items: center;
    background-color: #3770cb;
    background-image: url("/images/btn-blue.png");
    background-size: cover;
    border: 2px solid #0f5cd6;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 0 5px;
    width: 150px;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .notLoginMenu .userRegistrationBtn:hover {
    opacity: 0.7;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .notLoginMenu .loginBtn {
    align-items: center;
    background-color: #ffc107;
    background-image: url("/images/btn-yellow.png");
    background-size: cover;
    border: 2px solid #ffc107;
    border-radius: 5px;
    display: flex;
    font-weight: bold;
    height: 40px;
    justify-content: center;
    padding: 0 5px;
    width: 150px;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .notLoginMenu .loginBtn:hover {
    opacity: 0.7;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenu.isLogin {
    display: flex;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenuBtn {
    align-items: center;
    background-color: #0f5cd6;
    border: 2px solid #0f5cd6;
    border-radius: 5px;
    color: #ffffff;
    display: flex;
    font-size: 16px;
    height: 40px;
    padding: 0 5px;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenuBtn:hover {
    opacity: 0.7;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenuList {
    color: #0f5cd6;
    font-size: 16px;
    padding: 5px;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenuList li {
    display: flex;
    align-items: center;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenuList li .bi-person-circle,
body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenuList li .bi-door-closed-fill {
    font-size: 2.5rem;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenuList li:hover {
    opacity: 0.7;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .notLoginMenu {
    display: flex;
    opacity: 0.3s;
    transition: 0.3s;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .notLoginMenu.isNotLogin {
    display: none;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenu {
    display: none;
}

body .container-fluid header .navberMenu .navberHeading .otherLogo .accountIcons .loginMenu.isLogin {
    display: flex;
}

@media (min-width: 769px) and (max-width: 896px) {
    body .container-fluid header .navberMenu .navberHeading {
        justify-content: center;
        padding-bottom: 10px;
    }
}

body .container-fluid header .navberMenu .navHeadingBtn {
    display: flex;
    align-items: center;
    gap: 10px;
    height: auto;
}

body .container-fluid header .navberMenu .navHeadingBtn .furiganaChangeBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: calc(100% - 32px);
    height: 40px;
    color: #333;
    text-align: center;
    background-color: #fff;
    padding: 0 3px;
    border: 2px solid #0f5cd6;
    color: #0f5cd6;
    border-radius: 5px;
    transition: 0.1s;
}

body .container-fluid header .navberMenu .navHeadingBtn .furiganaChangeBtn p {
    font-size: 16px;
}

body .container-fluid header .navberMenu .navHeadingBtn .furiganaChangeBtn .furiganaOnOffBtn .furiganaOff {
    display: none;
    font-size: 10px;
    border: 1px solid #0f5cd6;
    color: #0f5cd6;
    border-radius: 10px;
    padding: 2px;
}

body .container-fluid header .navberMenu .navHeadingBtn .furiganaChangeBtn .furiganaOnOffBtn .furiganaOff.isActive {
    display: block;
}

body .container-fluid header .navberMenu .navHeadingBtn .furiganaChangeBtn .furiganaOnOffBtn .furiganaOn {
    display: none;
    font-size: 10px;
    color: #fff;
    background-color: #0f5cd6;
    border: 1px solid #0f5cd6;
    border-radius: 10px;
    padding: 2px;
}

body .container-fluid header .navberMenu .navHeadingBtn .furiganaChangeBtn .furiganaOnOffBtn .furiganaOn.isActive {
    display: block;
}

body .container-fluid header .navberMenu .navHeadingBtn .furiganaChangeBtn:hover {
    opacity: 0.7;
}

body .container-fluid header .navberMenu .navHeadingBtn .selectLanguage .languageBtn {
    height: 40px;
    color: #0f5cd6;
    border: 2px solid #0f5cd6;
    background-color: #ffffff;
    border-radius: 5px;
    font-size: 16px;
}

body .container-fluid header .navberMenu .navHeadingBtn .selectLanguage .languageBtn:hover {
    opacity: 0.7;
}

body .container-fluid header .navberMenu .navHeadingBtn .selectLanguage .btn:focus {
    border: 2px solid #0f5cd6;
    box-shadow: none;
}

body .container-fluid header .navberMenu .navHeadingBtn .selectLanguage .dropdown-menu {
    width: 140px;
    min-width: 0;
}

body .container-fluid header .navberMenu .navHeadingBtn .selectLanguage .languageMenu .dropdown-item {
    font-size: 16px;
    padding: 0;
    color: #0f5cd6;
    text-align: center;
}

body .container-fluid header .navberMenu .navList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: 100%;
    color: #0f5cd6;
    border-radius: 5px;
    display: flex;
}

body .container-fluid header .navberMenu .navList .navListBlock {
    position: relative;
    display: flex;
}

/*body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(1)::after,
body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(2)::after,
body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(3)::after,*/
body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(7)::after,
body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(8)::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 2px;
    height: 70%;
    background-color: #0f5cd6;
}

body .container-fluid header .navberMenu .navList .navListBlock:last-of-type::after {
    content: none;
}

body .container-fluid header .navberMenu .navList .navListBlock .navListGroup {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    width: 120px;
    padding: 7px;
    cursor: pointer;
    transition: 0.3s;
}

body .container-fluid header .navberMenu .navList .navListBlock .navListGroup:hover {
    opacity: 0.7;
}

body .container-fluid header .navberMenu .navList .navListBlock .navListGroup .bsIcon {
    font-size: 30px;
}

body .container-fluid header .navberMenu .navList .navListBlock .navListGroup .navberItem {
    text-align: center;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
}

body .container-fluid header .navberMenu .navList .navListBlock .navListGroup .navberItem .navLink {
    padding: 0 5px;
}

body .container-fluid header .navberMenu .navList .navListBlock .navListGroup .furiganaImg {
    width: 35px;
    height: auto;
}

body .container-fluid header .navberMenu .navList .navListBlock .navListGroup .brailleImg {
    width: 30px;
    height: auto;
}

body .container-fluid header .navberMenu .navList .navListBlock .navListGroup .textConversionImg {
    width: 28px;
    height: auto;
}

body .container-fluid header .navberMenu .navList .navListBlock .chattyBoxIcon {
    position: relative;
    margin: 0 10%;
    border-radius: 10px;
}

body .container-fluid header .navberMenu .navList .navListBlock .chattyBoxIcon.isActive {
    background-color: #0f5cd6;
    color: #fff;
}

body .container-fluid header .navberMenu .navList .navListBlock .chattyBoxIcon:hover {
    transform: scale(1);
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu {
    display: none;
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px;
    background-color: #f5fcff;
    border: 2px solid #0f5cd6;
    border-radius: 10px;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu .navUploadList {
    display: flex;
    width: 120px;
    padding: 7px;
    cursor: pointer;
    transition: 0.3s;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu .navUploadList .navberItem {
    text-align: center;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu .navUploadList .navberItem .navLink {
    padding: 0 5px;
    white-space: nowrap;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu .navUploadList .navberItem .navLinkPDF {
    font-size: 10px;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu .navUploadList .furiganaImg {
    width: 35px;
    height: auto;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu .navUploadList .brailleImg {
    width: 30px;
    height: auto;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu .navUploadList .textConversionImg {
    width: 28px;
    height: auto;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu .navUploadList:hover {
    opacity: 0.7;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu.isVisible {
    display: flex;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid #0f5cd6;
    /* 三角形の外枠の色 */
    z-index: 0;
}

body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu::after {
    content: "";
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #f5fcff;
    /* 三角形の内部の色 */
    z-index: 1;
}

body .container-fluid header .navberMenu .navList .navListBlock:last-child .navListGroup:last-child {
    display: none;
}

body .container-fluid header .navberMenu .navList .navListBlock .notLoginMenu {
    display: flex;
    opacity: 0.3s;
    transition: 0.3s;
}

body .container-fluid header .navberMenu .navList .navListBlock .notLoginMenu.isNotLogin {
    display: none;
}

body .container-fluid header .navberMenu .navList .navListBlock .notLoginMenu:hover {
    color: #fff;
    background-color: #0f5cd6;
    border: 1px solid #0f5cd6;
}

body .container-fluid header .navberMenu .navList .navListBlock .notLoginMenu .navberItem .navLink:hover {
    color: #fff;
}

body .container-fluid header .navberMenu .navList .navListSearchGroup {
    display: none;
}

body .container-fluid header .navberMenu .navList .navListShareBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50px;
    height: auto;
}

body .container-fluid header .navberMenu .navList .navListShareBox img {
    width: 80%;
}

body .container-fluid header .navberMenu .navList .navListShareBox .navberItem {
    white-space: nowrap;
}

body .container-fluid header .navberMenu .navList .navUploadBlock {
    z-index: 10;
}

body .container-fluid header .navberMenu .isLoginBtn {
    position: absolute;
    top: 0;
    z-index: 1000;
}

body .container-fluid header .generalMode {
    display: block;
}

body .container-fluid header .generalMode .container-fluid {
    position: absolute;
    top: 0%;
    left: 0%;
    background-color: #fff;
    padding: 0 10px 20px;
    z-index: 1;
}

body .container-fluid header .generalMode .container-fluid .navbar-brand {
    font-size: 40px;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .navbar-nav .myBoxNavBtn {
    width: 100%;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    transition: 0.5s;
    cursor: pointer;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .navbar-nav .myBoxNavBtn.isShow {
    background-color: #696969;
    color: #fff;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .navbar-nav .accordion.isShow .accordion-button {
    background-color: #696969;
    color: #fff;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .navbar-nav .accordion .accordion-button {
    display: block;
    height: 40px;
    text-align: center;
    color: #000;
    background-color: #fff;
    border-color: #333;
    font-size: 1.6rem;
    box-shadow: none;
    padding: 0;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .navbar-nav .accordion .accordion-button::after {
    color: #000;
    transform: rotate(0deg);
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .navbar-nav .accordion .accordion-collapse {
    padding: 10px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .navbar-nav .accordion .accordion-body {
    padding: 0 0 20px;
    max-height: 100px;
    overflow-y: scroll;
    padding: 0;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .navbar-nav .accordion .generalNavShareBtn {
    width: 100%;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .navbar-nav .accordion .generalNavShareBtn::after {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    color: #000;
    line-height: 1;
    width: 10px;
    height: 10px;
    border: 1px solid #000;
    border-left: 0;
    border-bottom: 0;
    transform: translateY(-25%) rotate(135deg);
    background-image: none;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .navbar-nav .accordion .generalNavShareBtn.isShow {
    color: #fff;
    background-color: #696969;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .navbar-nav .accordion .generalNavShareBtn.isShow::after {
    border: 1px solid #fff;
    border-left: 0;
    border-bottom: 0;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .navbar-nav .accordion .generalNavBtn {
    font-size: 16px;
    outline: none;
    width: 100%;
    text-align: center;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .navbar-nav .accordion .generalNavBtn span {
    margin-left: 10px;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .navbar-nav .accordion .generalNavBtn.isShow {
    color: #fff;
    background-color: #696969;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .navbar-nav .accordion .generalNavBtn:hover {
    color: #fff;
    background-color: #a9a9a9;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .navbar-nav .accordion-body .generalNavBtn {
    display: block;
    cursor: pointer;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .commonHeaderBtn {
    font-size: 16px;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .commonHeaderBtn .nav-item {
    border: 1px solid #000;
}

body .container-fluid header .generalMode .container-fluid .navbar-collapse .commonHeaderBtn .nav-item:hover {
    background-color: #696969;
    color: #fff;
}

body .container-fluid header .supporterMode {
    display: none;
}

body .container-fluid header .supporterMode .container-fluid {
    position: absolute;
    top: 0%;
    left: 0%;
    background-color: #fff;
    padding: 0 10px 20px;
    z-index: 1;
}

body .container-fluid header .supporterMode .container-fluid .navbar-brand {
    font-size: 40px;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 16px;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .navbar-nav .myBoxNavBtn {
    width: 100%;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    transition: 0.5s;
    cursor: pointer;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .navbar-nav .myBoxNavBtn.isShow {
    background-color: #333;
    color: #fff;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .navbar-nav .accordion.isShow .accordion-button {
    background-color: #696969;
    color: #fff;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .navbar-nav .accordion .accordion-button {
    display: block;
    height: 40px;
    text-align: center;
    color: #000;
    background-color: #fff;
    border-color: #333;
    font-size: 1.6rem;
    box-shadow: none;
    padding: 0;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .navbar-nav .accordion .accordion-button::after {
    color: #000;
    transform: rotate(0deg);
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .navbar-nav .accordion .accordion-collapse {
    padding: 10px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .navbar-nav .accordion .accordion-body {
    padding: 0 0 20px;
    max-height: 100px;
    overflow-y: scroll;
    padding: 0;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .navbar-nav .accordion .supporterNavShareBtn {
    width: 100%;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .navbar-nav .accordion .supporterNavShareBtn::after {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    color: #000;
    line-height: 1;
    width: 10px;
    height: 10px;
    border: 1px solid #000;
    border-left: 0;
    border-bottom: 0;
    transform: translateY(-25%) rotate(135deg);
    background-image: none;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .navbar-nav .accordion .supporterNavShareBtn.isShow {
    color: #fff;
    background-color: #333;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .navbar-nav .accordion .supporterNavShareBtn.isShow::after {
    border: 1px solid #fff;
    border-left: 0;
    border-bottom: 0;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .navbar-nav .accordion .supporterNavBtn {
    font-size: 16px;
    outline: none;
    width: 100%;
    text-align: center;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .navbar-nav .accordion .supporterNavBtn.isShow {
    color: #fff;
    background-color: #333;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .navbar-nav .accordion .supporterNavBtn:hover {
    color: #fff;
    background-color: #a9a9a9;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .navbar-nav .accordion-body .supporterNavBtn {
    display: block;
    cursor: pointer;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .commonHeaderBtn {
    font-size: 16px;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .commonHeaderBtn .nav-item {
    border: 1px solid #000;
}

body .container-fluid header .supporterMode .container-fluid .navbar-collapse .commonHeaderBtn .nav-item:hover {
    background-color: #333;
    color: #fff;
}

body .container-fluid .sideAreaMask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0.5;
    transition: 0.3s;
    z-index: 70;
    visibility: hidden;
    opacity: 0;
}

body .container-fluid .sideAreaMask.isVisible {
    visibility: visible;
    opacity: 1;
}

body .container-fluid .sideArea {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    padding: 200px 10px 10px 10px;
    background-color: #f5fcff;
    border-left: 2px solid #0f5cd6;
}

body .container-fluid .sideArea .generalMode {
    width: 100%;
}

body .container-fluid .sideArea .generalMode .generaShareBoxHeading {
    display: flex;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    background-color: #0f5cd6;
    padding: 5px;
    border-radius: 20px;
    margin-bottom: 10px;
}

body .container-fluid .sideArea .generalMode .generaShareBoxList {
    height: calc(100vh - 320px);
    /* 70pxはbottomAreaの高さ */
    padding: 5px;
    border: 2px solid #0f5cd6;
    border-radius: 10px;
    background-color: #fff;
}

body .container-fluid .sideArea .generalMode .generaShareBoxList .generaShareBoxItem .bi-pencil {
    cursor: pointer;
}

body .container-fluid .sideArea .supporterMode {
    width: 100%;
}

body .container-fluid .sideArea .supporterMode .supporterShareBoxHeading {
    display: flex;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    background-color: #0b449a;
    padding: 5px;
    border-radius: 20px;
    margin-bottom: 10px;
}

body .container-fluid .sideArea .supporterMode .supporterShareBoxList {
    height: calc(100vh - 320px);
    /* 70pxはbottomAreaの高さ */
    padding: 5px;
    border: 2px solid #0b449a;
    border-radius: 10px;
    background-color: #fff;
    overflow: auto;
}

body .container-fluid .sideArea .supporterMode .supporterShareBoxList .supporterShareBoxItem {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

body .container-fluid .sideArea .supporterMode .supporterShareBoxList .supporterShareBoxItem .editShareBoxBtn {
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #0b449a;
    border-radius: 5px;
    color: #0b449a;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 3px;
    transition: 0.3s;
}

body .container-fluid .sideArea .supporterMode .supporterShareBoxList .supporterShareBoxItem .editShareBoxBtn:hover {
    opacity: 0.7;
}

body .container-fluid .sideArea .supporterMode .supporterShareBoxList .supporterShareBoxItem .editShareBoxBtn .bi-pencil {
    cursor: pointer;
}

body .container-fluid .sideArea .closeSideberBtn {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    justify-content: flex-end;
    font-size: 28px;
    color: #0f5cd6;
    cursor: pointer;
}

body .container-fluid .sideArea .closeSideberBtn:hover {
    opacity: 0.5;
}

body .container-fluid .sideArea .hiddenLogo {
    width: 200px;
    height: auto;
    margin-right: 0;
}

body .container-fluid .sideArea .hiddenLogo img {
    width: 100%;
}

body .container-fluid main {
    align-items: start;
    width: calc(100% - 250px);
    /* <header>内だとz-indexの関係でマスクの下に潜ってしまう */
}

body .container-fluid main .shareBoxCreateModal .modal-dialog .modal-content .modal-header {
    display: flex;
    justify-content: center;
    border: none;
    margin-bottom: 20px;
}

body .container-fluid main .shareBoxCreateModal .modal-dialog .modal-content .modal-header .modal-title {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

body .container-fluid main .shareBoxCreateModal .modal-dialog .modal-content .modal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

body .container-fluid main .shareBoxCreateModal .modal-dialog .modal-content .modal-body .shareBoxName {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

body .container-fluid main .shareBoxCreateModal .modal-dialog .modal-content .modal-body .shareBoxName .shareBoxNameInput {
    width: 300px;
    height: 35px;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

body .container-fluid main .shareBoxCreateModal .modal-dialog .modal-content .modal-body .shareBoxPeriod {
    margin-bottom: 20px;
    cursor: pointer;
}

body .container-fluid main .shareBoxCreateModal .modal-dialog .modal-content .modal-body .permitDL {
    display: flex;
    gap: 5px;
}

body .container-fluid main .shareBoxCreateModal .modal-dialog .modal-content .modal-body .permitDL .permitDLCheck {
    width: 20px;
}

body .container-fluid main .shareBoxCreateModal .modal-dialog .modal-content .modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    border: none;
}

body .container-fluid main .shareBoxCreateModal .modal-dialog .modal-content .modal-footer .shareBoxCreateCancelBtn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100px;
    height: 35px;
    padding: 0 3px;
    border: 2px solid #696969;
    color: #696969;
    border-radius: 5px;
    transition: 0.2s;
}

body .container-fluid main .shareBoxCreateModal .modal-dialog .modal-content .modal-footer .shareBoxCreateCancelBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .shareBoxCreateModal .modal-dialog .modal-content .modal-footer .shareBoxCreateSaveBtn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100px;
    height: 35px;
    color: #fff;
    background-color: #0f5cd6;
    padding: 0 3px;
    border: 2px solid #0f5cd6;
    border-radius: 5px;
    transition: 0.1s;
}

body .container-fluid main .shareBoxCreateModal .modal-dialog .modal-content .modal-footer .shareBoxCreateSaveBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .sharBoxEditModal .modal-dialog .modal-content .modal-header {
    display: flex;
    justify-content: center;
    border: none;
    margin-bottom: 20px;
}

body .container-fluid main .sharBoxEditModal .modal-dialog .modal-content .modal-header .modal-title {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

body .container-fluid main .sharBoxEditModal .modal-dialog .modal-content .modal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

body .container-fluid main .sharBoxEditModal .modal-dialog .modal-content .modal-body .editBoxName {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

body .container-fluid main .sharBoxEditModal .modal-dialog .modal-content .modal-body .editBoxName .editBoxNameInput {
    width: 300px;
    height: 35px;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

body .container-fluid main .sharBoxEditModal .modal-dialog .modal-content .modal-body .editBoxPeriod {
    margin-bottom: 20px;
    cursor: pointer;
}

body .container-fluid main .sharBoxEditModal .modal-dialog .modal-content .modal-body .permitDL {
    display: flex;
    gap: 5px;
}

body .container-fluid main .sharBoxEditModal .modal-dialog .modal-content .modal-body .permitDL .permitDLCheck {
    width: 20px;
}

body .container-fluid main .sharBoxEditModal .modal-dialog .modal-content .modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    border: none;
}

body .container-fluid main .sharBoxEditModal .modal-dialog .modal-content .modal-footer .editBoxCancelBtn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100px;
    height: 35px;
    padding: 0 3px;
    border: 2px solid #696969;
    color: #696969;
    border-radius: 5px;
    transition: 0.2s;
}

body .container-fluid main .sharBoxEditModal .modal-dialog .modal-content .modal-footer .editBoxCancelBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .sharBoxEditModal .modal-dialog .modal-content .modal-footer .editBoxSaveBtn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100px;
    height: 35px;
    color: #fff;
    background-color: #0f5cd6;
    padding: 0 3px;
    border: 2px solid #0f5cd6;
    border-radius: 5px;
    transition: 0.1s;
}

body .container-fluid main .sharBoxEditModal .modal-dialog .modal-content .modal-footer .editBoxSaveBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-header {
    justify-content: center;
    gap: 10px;
    font-size: 24px;
    border: none;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-header .btn-close {
    padding: 10px 10px 0 10px;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body .heading {
    font-size: 24px;
    display: flex;
    gap: 10px;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body .heading .bi-share {
    font-size: 24px;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body form {
    display: flex;
    padding-top: 10px;
    margin-bottom: 20px;
    width: 90%;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body form .searchSharingPartner {
    padding: 5px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-right: 10px;
    margin-bottom: 10px;
    width: 100%;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body form .searchSharingPartnerBtn {
    align-items: center;
    background-color: #0f5cd6;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 3px;
    transition: 0.3s;
    width: 100px;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body form .searchSharingPartnerBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body p {
    display: flex;
    justify-content: center;
    font-size: 20px;
    padding: 5px;
    margin-bottom: 10px;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body .sharingListWrap {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body .sharingListWrap p {
    font-size: 20px;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body .sharingListWrap .sharingList {
    width: 100%;
    height: 300px;
    overflow-y: scroll;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 20px;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body .sharingListWrap .sharingList li {
    margin-bottom: 10px;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body .sharingListWrap .sharingList li:last-of-type {
    margin-bottom: 0;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body .sharingListWrap .sharingList li label {
    cursor: pointer;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body .sharingListWrap .sharingList li span {
    margin: 0 10px;
    color: #0f5cd6;
    background-color: #f5fcff;
    padding: 3px 5px;
    border: 2px solid #0f5cd6;
    border-radius: 30px;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body .sharingListWrap .allSharingBtn {
    display: flex;
    align-self: flex-start;
    margin-bottom: 20px;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body .sharingListWrap .allSharingBtn label {
    cursor: pointer;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body .selectSharePartnerDecisionBtn {
    align-items: center;
    background-color: #0f5cd6;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 3px;
    transition: 0.3s;
    width: 90%;
}

body .container-fluid main .selectSharePartnerModal .modal-dialog .modal-content .modal-body .selectSharePartnerDecisionBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .shareBoxListMask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0.5;
    transition: 0.3s;
    z-index: 70;
    visibility: hidden;
    opacity: 0;
}

body .container-fluid main .shareBoxListMask.isVisible {
    visibility: visible;
    opacity: 1;
}

body .container-fluid main .shareBoxListModal {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(90vw, 500px);
    height: 500px;
    padding: 10px;
    background-color: #fff;
    z-index: 3010;
}

body .container-fluid main .shareBoxListModal.isVisible {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body .container-fluid main .shareBoxListModal .shareBoxListHeading {
    justify-content: center;
    gap: 10px;
    font-size: 2rem;
    background-color: #f5fcff;
    margin-bottom: 20px;
    border: none;
}

body .container-fluid main .shareBoxListModal .supporterShareBoxList {
    width: 60%;
    height: 300px;
    overflow-y: scroll;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 20px;
}

body .container-fluid main .shareBoxListModal .shareBoxListCloseModalBtnBlock {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 10px;
}

body .container-fluid main .shareBoxListModal .shareBoxListCloseModalBtnBlock .shareBoxListCloseModalBtn {
    font-size: 1.6rem;
    background-color: #999999;
    color: #fff;
    transition: 0.5s;
    cursor: pointer;
}

body .container-fluid main .shareBoxListModal .shareBoxListCloseModalBtnBlock .shareBoxListCloseModalBtn:hover {
    background-color: #fff;
    color: #999999;
    border: 1px solid #999999;
    transform: scale(1.05);
}

body .container-fluid main .shareBoxListModal .shareBoxListCloseModalBtnBlock .shareBoxListModalAddBtn {
    font-size: 1.6rem;
    background-color: #0f5cd6;
    color: #fff;
    transition: 0.5s;
    cursor: pointer;
}

body .container-fluid main .shareBoxListModal .shareBoxListCloseModalBtnBlock .shareBoxListModalAddBtn:hover {
    background-color: #fff;
    color: #0f5cd6;
    border: 1px solid #0f5cd6;
    transform: scale(1.05);
}

body .container-fluid main .addLabelModal .modal-content .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addNewLabel .currentNewLabel {
    display: flex;
    align-items: center;
    width: 200px;
    height: 30px;
    border: 2px solid #000;
    border-radius: 10px;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addNewLabel .currentNewLabel .addLabelImg {
    width: 25px;
    height: 15px;
}

body .container-fluid main .addLabelModal .modal-content .modal-body label {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelNameInput {
    display: flex;
    flex-direction: column;
    width: 200px;
    padding: 5px;
    border: 2px solid #000;
    border-radius: 10px;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelNameInput.isChange::-moz-placeholder {
    color: red;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelNameInput.isChange::placeholder {
    color: red;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .chooseColor {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .chooseColor .chooseColorInput {
    width: 80px;
    height: 35px;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .chooseColor .addNewColorLabelSvg {
    width: 25px;
    height: 15px;
    display: none;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addNewLabelDisplay {
    width: 200px;
    height: 30px;
    padding: 5px;
    border: 2px solid #000;
    border-radius: 10px;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addNewLabelDisplay.isHidden {
    visibility: hidden;
    opacity: 0;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addNewLabelDisplay .labelLi {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addNewLabelDisplay .labelLi .addNewColorLabelSvg {
    width: 25px;
    height: 15px;
    pointer-events: none;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addNewLabelDisplay .labelLi span {
    pointer-events: none;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addNewColorLabelSvg {
    width: 25px;
    height: 15px;
    margin-right: 5px;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceMask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.5;
    z-index: 3000;
    display: none;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceMask.isVisible {
    display: block;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceModal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(90vw, 500px);
    height: 400px;
    background-color: #fff;
    z-index: 3010;
    display: none;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceModal.isVisible {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceModal .heading {
    background-color: #0b449a;
    color: #fff;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 20px;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceModal .currentLabelListWrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 200px;
    max-height: 150px;
    padding: 5px;
    overflow-y: scroll;
    border: 2px solid #000;
    border-radius: 10px;
    margin-bottom: 20px;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceModal .currentLabelListWrap .currentLabelList {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    /* 現在のラベル */
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceModal .currentLabelListWrap .currentLabelList .labelLi {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceModal .currentLabelListWrap .currentLabelList .labelLi .labelImgSvg {
    width: 25px;
    height: 15px;
    fill: #556b2f;
    pointer-events: none;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceModal .currentLabelListWrap .currentLabelList .labelLi:nth-of-type(2) .labelImgSvg {
    fill: #6495ed;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceModal .currentLabelListWrap .currentLabelList .labelLi:nth-of-type(3) .labelImgSvg {
    fill: #ffb6c1;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceModal .addNewLabelDisplayText {
    display: block;
    pointer-events: none;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceModal .addNewLabelDisplayText.isHidden {
    display: none;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceModal .addNewLabelDisplay {
    display: flex;
    height: 35px;
    align-items: center;
    border-radius: 10px;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceModal .addLabelSecondModalBtnBlock {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3010;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceModal .addLabelSecondModalBtnBlock .addLabelPlaceBackBtn {
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #696969;
    border-radius: 5px;
    color: #696969;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    height: 40px;
    justify-content: center;
    padding: 3px;
    transition: 0.3s;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceModal .addLabelSecondModalBtnBlock .addLabelPlaceBackBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .addLabelModal .modal-content .modal-body .addLabelPlaceModal .addLabelSecondModalBtnBlock .addLabelPlaceSaveBtn {
    align-items: center;
    background-color: #0f5cd6;
    border: 2px solid #0f5cd6;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 3px;
    transition: 0.3s;
}

body .container-fluid main .addLabelModal .modal-content .modal-footer .addLabelModalSaveBtn {
    font-size: 16px;
}

body .container-fluid main .addLabelModal .modal-content .modal-footer .addLabelModalCloseBtn {
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #696969;
    border-radius: 5px;
    color: #696969;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    height: 40px;
    justify-content: center;
    padding: 3px;
    transition: 0.3s;
}

body .container-fluid main .addLabelModal .modal-content .modal-footer .addLabelModalCloseBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .addLabelModal .modal-content .modal-footer .addLabelNextBtn,
body .container-fluid main .addLabelModal .modal-content .modal-footer .editLabelBtn {
    align-items: center;
    background-color: #0f5cd6;
    border: 2px solid #0f5cd6;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    height: 40px;
    justify-content: center;
    padding: 3px;
    transition: 0.3s;
}

body .container-fluid main .addLabelModal .modal-content .modal-footer .addLabelNextBtn:hover,
body .container-fluid main .addLabelModal .modal-content .modal-footer .editLabelBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .addLabelModal .modal-content .modal-footer .addLabelNextBtn .bi-pencil-square,
body .container-fluid main .addLabelModal .modal-content .modal-footer .editLabelBtn .bi-pencil-square {
    font-size: 2rem;
}

body .container-fluid main .editLabelModal .modal-body {
    display: flex;
    justify-content: center;
    gap: 30px;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel {
    display: flex;
    flex-direction: column;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .currentLabelList {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 200px;
    max-height: 150px;
    margin-bottom: 20px;
    padding: 10px;
    overflow-y: scroll;
    border: 2px solid #000;
    border-radius: 10px;
    /* 現在のラベル */
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .currentLabelList .labelLi {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .currentLabelList .labelLi .labelImgSvg {
    width: 25px;
    height: 15px;
    fill: #556b2f;
    pointer-events: none;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .currentLabelList .labelLi:nth-of-type(2) .labelImgSvg {
    fill: #6495ed;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .currentLabelList .labelLi:nth-of-type(3) .labelImgSvg {
    fill: #ffb6c1;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .editLabelListWrap {
    margin-bottom: 10px;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .editLabelListWrap .editLabelList {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 200px;
    max-height: 150px;
    border: 1px solid #000;
    border-radius: 10px;
    margin: 0 auto;
    padding: 10px;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .editLabelListWrap .editLabelList .labelItem {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .editLabelListWrap .editLabelList .labelItem .labelImg {
    width: 25px;
    height: 15px;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap {
    margin-bottom: 10px;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .currentEditLabel {
    display: flex;
    align-items: center;
    width: 200px;
    height: 30px;
    border: 2px solid #000;
    margin: 0 auto;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .currentEditLabel .labelLi {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .currentEditLabel .labelLi .labelImgSvg {
    width: 25px;
    height: 15px;
    fill: #556b2f;
    pointer-events: none;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .currentEditLabel .labelLi:nth-of-type(2) .labelImgSvg {
    fill: #6495ed;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .currentEditLabel .labelLi:nth-of-type(3) .labelImgSvg {
    fill: #ffb6c1;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .currentEditLabel .labelItem {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .currentEditLabel .labelItem .labelImg {
    width: 25px;
    height: 15px;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .editLabelModalBtnBlock {
    display: flex;
    justify-content: center;
    gap: 5px;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .editLabelModalBtnBlock .startEditLabelBtn {
    font-size: 1.6rem;
    background-color: #0f5cd6;
    color: #fff;
    transition: 0.5s;
    cursor: pointer;
    font-size: 16px;
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .editLabelModalBtnBlock .startEditLabelBtn:hover {
    background-color: #fff;
    color: #0f5cd6;
    border: 1px solid #0f5cd6;
    transform: scale(1.05);
}

body .container-fluid main .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .editLabelModalBtnBlock .deleteLabelBtn {
    align-items: center;
    background-color: #f06060;
    border: 2px solid #f06060;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    height: 40px;
    justify-content: center;
    padding: 3px;
    transition: 0.3s;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 400px;
    background-color: #fff;
    z-index: 3010;
    display: none;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .currentSelectEditLabel {
    display: flex;
    align-items: center;
    width: 200px;
    height: 30px;
    padding: 5px;
    border: 1px solid #000;
    border-radius: 10px;
    margin-bottom: 20px;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .currentSelectEditLabel .labelLi {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .currentSelectEditLabel .labelLi .labelImgSvg {
    width: 25px;
    height: 15px;
    fill: #556b2f;
    pointer-events: none;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .currentSelectEditLabel .labelLi:nth-of-type(2) .labelImgSvg {
    fill: #6495ed;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .currentSelectEditLabel .labelLi:nth-of-type(3) .labelImgSvg {
    fill: #ffb6c1;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible label {
    text-align: center;
    margin-bottom: 20px;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible label .editLabelNameInput {
    width: 200px;
    height: 30px;
    padding: 5px;
    text-align: left;
    color: #a9a9a9;
    border: 1px solid #000;
    border-radius: 10px;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible label .editLabelNameInput .labelLi {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible label .editLabelNameInput .labelLi .labelImgSvg {
    width: 25px;
    height: 15px;
    fill: #556b2f;
    pointer-events: none;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible label .editLabelNameInput .labelLi:nth-of-type(2) .labelImgSvg {
    fill: #6495ed;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible label .editLabelNameInput .labelLi:nth-of-type(3) .labelImgSvg {
    fill: #ffb6c1;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .editChooseColor {
    display: grid;
    place-items: center;
    margin-bottom: 50px;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .editChooseColor .heading {
    margin-bottom: 10px;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .editChooseColor .editChooseColorInput {
    text-align: center;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .editChooseColor .editNewColorLabelSvg {
    width: 25px;
    height: 15px;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .editLabelSecondModalBtnBlock {
    display: flex;
    gap: 10px;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .editLabelSecondModalBtnBlock .editLabelBackBtn,
body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .editLabelSecondModalBtnBlock .editLabelSaveBtn {
    font-size: 16px;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal .editNewLabelDisplay {
    display: flex;
    align-items: center;
    border-radius: 5px;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal .editLabelPlaceSaveBtn {
    display: none;
}

body .container-fluid main .editLabelModal .modal-body .editLabelNameAndColorModal .editLabelPlaceSaveBtn.isVisible {
    display: block;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 16px;
    z-index: 3010;
}

body .container-fluid main .editLabelModal .modal-body .editLabelMask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.5;
    z-index: 3000;
    display: none;
}

body .container-fluid main .editLabelModal .modal-body .editLabelMask.isVisible {
    display: block;
}

body .container-fluid main .editLabelModal .modal-body .labeleditOperation {
    display: none;
}

body .container-fluid main .editLabelModal .modal-body .labeleditOperation.isVisible {
    display: flex;
    flex-direction: column;
}

body .container-fluid main .editLabelModal .modal-body .labeleditOperation .changeLabelName .labelInputName {
    width: 150px;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 5px;
}

body .container-fluid main .editLabelModal .modal-body .labeleditOperation .channgeLabelColor {
    text-align: center;
}

body .container-fluid main .editLabelModal .modal-body .labeleditOperation .channgeLabelColor .labelColorList {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 150px;
    margin-bottom: 10px;
    padding: 5px;
    border: 1px solid #000;
    border-radius: 10px;
}

body .container-fluid main .editLabelModal .modal-body .labeleditOperation .channgeLabelColor .labelColorList .labelColorItem {
    display: flex;
    align-items: center;
    cursor: pointer;
}

body .container-fluid main .editLabelModal .modal-body .labeleditOperation .channgeLabelColor .labelColorList .labelColorItem.isActive {
    transform: scale(1.3);
}

body .container-fluid main .editLabelModal .modal-body .labeleditOperation .channgeLabelColor .labelColorList .labelColorItem .labelColorImg {
    width: 25px;
    height: 15px;
}

body .container-fluid main .editLabelModal .modal-body .labeleditOperation .editExecutionBtn {
    font-size: 16px;
}

body .container-fluid main .editLabelModal .modal-footer .editLabelModalCloseBtn {
    font-size: 16px;
}

body .container-fluid main .upperArea {
    top: 0;
    gap: 10px;
    width: 100%;
    padding: 20px 20px 0 20px;
    background-color: #fff;
}

body .container-fluid main .upperArea .fixArea {
    display: flex;
    flex-direction: column;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .chattyBoxLogo {
    width: 180px;
    height: auto;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .chattyBoxLogo img {
    width: 100%;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo {
    display: flex;
    align-items: center;
    gap: 20px;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .upperBtnGroup {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-right: 20px;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .upperBtnGroup .shareBoxCreateBtn,
body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .upperBtnGroup .upLoadBtn {
    align-items: center;
    background-color: #0f5cd6;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    height: 40px;
    padding: 3px;
    justify-content: center;
    transition: 0.3s;
    font-size: 16px;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .upperBtnGroup .shareBoxCreateBtn:hover,
body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .upperBtnGroup .upLoadBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .changeViewBtnBlock {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .changeViewBtnBlock .isGridViewBtn,
body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .changeViewBtnBlock .isListViewBtn {
    font-size: 40px;
    padding: 0px 10px;
    color: #0f5cd6;
    transition: 0.3s;
    cursor: pointer;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .changeViewBtnBlock .isGridViewBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .changeViewBtnBlock .isGridViewBtn.isActive {
    background-color: #0f5cd6;
    border-radius: 10px;
    color: #fff;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .changeViewBtnBlock .isListViewBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .changeViewBtnBlock .isListViewBtn.isActive {
    background-color: #0f5cd6;
    border-radius: 10px;
    color: #fff;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .showCover {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .showCover .showCoverToggleBtn {
    position: relative;
    width: 50px;
    height: 20px;
    margin: auto;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .showCover .showCoverToggleBtn .showCoverinput {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .showCover .showCoverToggleBtn .showCoverinput:checked + .showCoverLabel {
    background-color: #0f5cd6;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .showCover .showCoverToggleBtn .showCoverinput:checked + .showCoverLabel::after {
    left: 30px;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .showCover .showCoverLabel {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 20px;
    background-color: #ccc;
    border-radius: 40px;
    transition: 0.4s;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .showCover .showCoverLabel::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: 0.4s;
    top: 0;
    left: 0;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .showCover.isListDisplayed {
    visibility: visible;
    opacity: 1;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .selectMultiple .selectMultipleBtn {
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #0f5cd6;
    border-radius: 5px;
    color: #0f5cd6;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 3px;
    transition: 0.3s;
}

body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .selectMultiple .selectMultipleBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock {
    display: flex;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: auto;
    margin-bottom: 20px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label {
    display: flex;
    gap: 10px;
    background-color: #f5fcff;
    padding: 5px 10px;
    border-radius: 10px;
    border: 2px solid #0f5cd6;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .labelSelectBtn {
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #0f5cd6;
    border-radius: 5px;
    color: #0f5cd6;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 3px;
    transition: 0.3s;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .labelSelectBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .labelSelectBtn.isHidden {
    display: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .labelSelectMenu {
    padding: 5px;
    font-size: 16px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .labelSelectMenu .labelLi {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .labelSelectMenu .labelLi .labelImgSvg {
    width: 25px;
    height: 15px;
    fill: #556b2f;
    pointer-events: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .labelSelectMenu .labelLi:nth-of-type(2) .labelImgSvg {
    fill: #6495ed;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .labelSelectMenu .labelLi:nth-of-type(3) .labelImgSvg {
    fill: #ffb6c1;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelBtn {
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #0f5cd6;
    border-radius: 10px;
    color: #0f5cd6;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 3px;
    transition: 0.3s;
    width: 40px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelBtn .bi-plus {
    font-size: 20px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addNewLabel .currentNewLabel {
    display: flex;
    align-items: center;
    width: 200px;
    height: 30px;
    border: 2px solid #000;
    border-radius: 10px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addNewLabel .currentNewLabel .addLabelImg {
    width: 25px;
    height: 15px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body label {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelNameInput {
    display: flex;
    flex-direction: column;
    width: 200px;
    padding: 5px;
    border: 2px solid #000;
    border-radius: 10px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelNameInput.isChange::-moz-placeholder {
    color: red;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelNameInput.isChange::placeholder {
    color: red;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .chooseColor {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .chooseColor .chooseColorInput {
    width: 80px;
    height: 35px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .chooseColor .addNewColorLabelSvg {
    width: 25px;
    height: 15px;
    display: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addNewLabelDisplay {
    width: 200px;
    height: 30px;
    padding: 5px;
    border: 2px solid #000;
    border-radius: 10px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addNewLabelDisplay.isHidden {
    visibility: hidden;
    opacity: 0;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addNewLabelDisplay .labelLi {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addNewLabelDisplay .labelLi .addNewColorLabelSvg {
    width: 25px;
    height: 15px;
    pointer-events: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addNewLabelDisplay .labelLi span {
    pointer-events: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addNewColorLabelSvg {
    width: 25px;
    height: 15px;
    margin-right: 5px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceMask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.5;
    z-index: 3000;
    display: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceMask.isVisible {
    display: block;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceModal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(90vw, 500px);
    height: 400px;
    background-color: #fff;
    z-index: 3010;
    display: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceModal.isVisible {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceModal .heading {
    background-color: #0b449a;
    color: #fff;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 20px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceModal .currentLabelListWrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 200px;
    max-height: 150px;
    padding: 5px;
    overflow-y: scroll;
    border: 2px solid #000;
    border-radius: 10px;
    margin-bottom: 20px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceModal .currentLabelListWrap .currentLabelList {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    /* 現在のラベル */
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceModal .currentLabelListWrap .currentLabelList .labelLi {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceModal .currentLabelListWrap .currentLabelList .labelLi .labelImgSvg {
    width: 25px;
    height: 15px;
    fill: #556b2f;
    pointer-events: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceModal .currentLabelListWrap .currentLabelList .labelLi:nth-of-type(2) .labelImgSvg {
    fill: #6495ed;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceModal .currentLabelListWrap .currentLabelList .labelLi:nth-of-type(3) .labelImgSvg {
    fill: #ffb6c1;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceModal .addNewLabelDisplayText {
    display: block;
    pointer-events: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceModal .addNewLabelDisplayText.isHidden {
    display: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceModal .addNewLabelDisplay {
    display: flex;
    height: 35px;
    align-items: center;
    border-radius: 10px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceModal .addLabelSecondModalBtnBlock {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3010;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceModal .addLabelSecondModalBtnBlock .addLabelPlaceBackBtn {
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #696969;
    border-radius: 5px;
    color: #696969;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    height: 40px;
    justify-content: center;
    padding: 3px;
    transition: 0.3s;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceModal .addLabelSecondModalBtnBlock .addLabelPlaceBackBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-body .addLabelPlaceModal .addLabelSecondModalBtnBlock .addLabelPlaceSaveBtn {
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #0f5cd6;
    border-radius: 10px;
    color: #0f5cd6;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 3px;
    transition: 0.3s;
    width: 40px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-footer .addLabelModalSaveBtn {
    font-size: 16px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-footer .addLabelModalCloseBtn {
    font-size: 1.6rem;
    background-color: #696969;
    color: #fff;
    transition: 0.5s;
    cursor: pointer;
    font-size: 16px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelModal .modal-content .modal-footer .addLabelModalCloseBtn:hover {
    background-color: #fff;
    color: #696969;
    border: 1px solid #696969;
    transform: scale(1.05);
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelNextBtn,
body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelBtn {
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #0f5cd6;
    border-radius: 10px;
    color: #0f5cd6;
    cursor: pointer;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    padding: 3px;
    transition: 0.3s;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelNextBtn:hover,
body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .addLabelNextBtn .bi-pencil-square,
body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelBtn .bi-pencil-square {
    font-size: 2rem;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body {
    display: flex;
    justify-content: center;
    gap: 30px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel {
    display: flex;
    flex-direction: column;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentLabelList {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 200px;
    max-height: 150px;
    margin-bottom: 20px;
    padding: 10px;
    overflow-y: scroll;
    border: 2px solid #000;
    border-radius: 10px;
    /* 現在のラベル */
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentLabelList .labelLi {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentLabelList .labelLi .labelImgSvg {
    width: 25px;
    height: 15px;
    fill: #556b2f;
    pointer-events: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentLabelList .labelLi:nth-of-type(2) .labelImgSvg {
    fill: #6495ed;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentLabelList .labelLi:nth-of-type(3) .labelImgSvg {
    fill: #ffb6c1;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .editLabelListWrap {
    margin-bottom: 10px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .editLabelListWrap .editLabelList {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 200px;
    max-height: 150px;
    border: 1px solid #000;
    border-radius: 10px;
    margin: 0 auto;
    padding: 10px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .editLabelListWrap .editLabelList .labelItem {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .editLabelListWrap .editLabelList .labelItem .labelImg {
    width: 25px;
    height: 15px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap {
    margin-bottom: 10px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .currentEditLabel {
    display: flex;
    align-items: center;
    width: 200px;
    height: 30px;
    border: 2px solid #000;
    margin: 0 auto;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .currentEditLabel .labelLi {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .currentEditLabel .labelLi .labelImgSvg {
    width: 25px;
    height: 15px;
    fill: #556b2f;
    pointer-events: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .currentEditLabel .labelLi:nth-of-type(2) .labelImgSvg {
    fill: #6495ed;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .currentEditLabel .labelLi:nth-of-type(3) .labelImgSvg {
    fill: #ffb6c1;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .currentEditLabel .labelItem {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .currentEditLabel .labelItem .labelImg {
    width: 25px;
    height: 15px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .editLabelModalBtnBlock {
    display: flex;
    justify-content: center;
    gap: 5px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .editLabelModalBtnBlock .startEditLabelBtn {
    font-size: 1.6rem;
    background-color: #0f5cd6;
    color: #fff;
    transition: 0.5s;
    cursor: pointer;
    font-size: 16px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .editLabelModalBtnBlock .startEditLabelBtn:hover {
    background-color: #fff;
    color: #0f5cd6;
    border: 1px solid #0f5cd6;
    transform: scale(1.05);
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .editLabelModalBtnBlock .deleteLabelBtn {
    font-size: 1.6rem;
    background-color: #333;
    color: #fff;
    transition: 0.5s;
    cursor: pointer;
    font-size: 16px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .beforeEditLabel .currentEditLabelWrap .editLabelModalBtnBlock .deleteLabelBtn:hover {
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
    transform: scale(1.05);
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 400px;
    background-color: #fff;
    z-index: 3010;
    display: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .currentSelectEditLabel {
    display: flex;
    align-items: center;
    width: 200px;
    height: 30px;
    padding: 5px;
    border: 1px solid #000;
    border-radius: 10px;
    margin-bottom: 20px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .currentSelectEditLabel .labelLi {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .currentSelectEditLabel .labelLi .labelImgSvg {
    width: 25px;
    height: 15px;
    fill: #556b2f;
    pointer-events: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .currentSelectEditLabel .labelLi:nth-of-type(2) .labelImgSvg {
    fill: #6495ed;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .currentSelectEditLabel .labelLi:nth-of-type(3) .labelImgSvg {
    fill: #ffb6c1;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible label {
    text-align: center;
    margin-bottom: 20px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible label .editLabelNameInput {
    width: 200px;
    height: 30px;
    padding: 5px;
    text-align: left;
    color: #a9a9a9;
    border: 1px solid #000;
    border-radius: 10px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible label .editLabelNameInput .labelLi {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible label .editLabelNameInput .labelLi .labelImgSvg {
    width: 25px;
    height: 15px;
    fill: #556b2f;
    pointer-events: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible label .editLabelNameInput .labelLi:nth-of-type(2) .labelImgSvg {
    fill: #6495ed;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible label .editLabelNameInput .labelLi:nth-of-type(3) .labelImgSvg {
    fill: #ffb6c1;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .editChooseColor {
    display: grid;
    place-items: center;
    margin-bottom: 50px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .editChooseColor .heading {
    margin-bottom: 10px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .editChooseColor .editChooseColorInput {
    text-align: center;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .editChooseColor .editNewColorLabelSvg {
    width: 25px;
    height: 15px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .editLabelSecondModalBtnBlock {
    display: flex;
    gap: 10px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .editLabelSecondModalBtnBlock .editLabelBackBtn,
body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal.isVisible .editLabelSecondModalBtnBlock .editLabelSaveBtn {
    font-size: 16px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal .editNewLabelDisplay {
    display: flex;
    align-items: center;
    border-radius: 5px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal .editLabelPlaceSaveBtn {
    display: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelNameAndColorModal .editLabelPlaceSaveBtn.isVisible {
    display: block;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 16px;
    z-index: 3010;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelMask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.5;
    z-index: 3000;
    display: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .editLabelMask.isVisible {
    display: block;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .labeleditOperation {
    display: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .labeleditOperation.isVisible {
    display: flex;
    flex-direction: column;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .labeleditOperation .changeLabelName .labelInputName {
    width: 150px;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 5px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .labeleditOperation .channgeLabelColor {
    text-align: center;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .labeleditOperation .channgeLabelColor .labelColorList {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 150px;
    margin-bottom: 10px;
    padding: 5px;
    border: 1px solid #000;
    border-radius: 10px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .labeleditOperation .channgeLabelColor .labelColorList .labelColorItem {
    display: flex;
    align-items: center;
    cursor: pointer;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .labeleditOperation .channgeLabelColor .labelColorList .labelColorItem.isActive {
    transform: scale(1.3);
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .labeleditOperation .channgeLabelColor .labelColorList .labelColorItem .labelColorImg {
    width: 25px;
    height: 15px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-body .labeleditOperation .editExecutionBtn {
    font-size: 16px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label .editLabelModal .modal-footer .editLabelModalCloseBtn {
    font-size: 16px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .sort {
    align-items: end;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .sort .sortSelectBtn {
    font-size: 16px;
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #0f5cd6;
    border-radius: 5px;
    color: #0f5cd6;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    transition: 0.3s;
    padding: 3px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .sort .sortSelectBtn:hover {
    opacity: 0.7;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .sort .sortSelectMenu {
    font-size: 16px;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .selectsharePartner {
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #0f5cd6;
    border-radius: 5px;
    color: #0f5cd6;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 3px;
    transition: 0.3s;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .selectsharePartner:hover {
    opacity: 0.7;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .dataVolume {
    margin-left: auto;
    z-index: 1;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .dataVolume.isHidden {
    display: none;
}

body .container-fluid main .upperArea .fixArea .fixSecondBlock .dataVolume .dataGauge {
    width: 100px;
    height: 30px;
}

body .container-fluid main .mainArea {
    width: 100%;
    max-height: calc(100vh - 155px - 70px);
    padding: 10px;
}

body .container-fluid main .mainArea .dataVolume {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
}

body .container-fluid main .mainArea .dataVolume.isHidden {
    display: none;
}

body .container-fluid main .mainArea .dataVolume meter {
    background-color: #0f5cd6;
}

body .container-fluid main .mainArea .dataVolume .dataGauge {
    width: 100px;
    height: 30px;
}

body .container-fluid main .mainArea .displayBookArea {
    display: none;
    grid-template-columns: repeat(6, 1fr);
    justify-items: center;
    gap: 5px;
    padding-bottom: 70px;
}

body .container-fluid main .mainArea .displayBookArea.isShow {
    display: grid;
}

body .container-fluid main .mainArea .displayBookArea .eachBook {
    position: relative;
    display: grid;
    justify-items: center;
    align-items: end;
    width: 100%;
    padding: 10px;
    border-right: 4px solid #ccc;
    border-bottom: 2px solid #ccc;
/*    cursor: pointer;*/
}

body .container-fluid main .mainArea .displayBookArea .eachBook:hover {
    background-color: #f5fcff;
    border-right: 4px solid #0f5cd6;
    border-bottom: 2px solid #0f5cd6;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .bookSelectCheck {
    position: absolute;
    top: 0;
    right: 20px;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .bookSelectCheck .bookSelectCheckBtn {
    transform: scale(1.8);
}

body .container-fluid main .mainArea .displayBookArea .eachBook .bookSelectCheck.isShow {
    display: block;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .bookImg {
    position: relative;
    width: 10vw;
    height: auto;
    cursor: pointer;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .bookImg img {
    width: 100%;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .bookImg .label {
    position: absolute;
    top: 0px;
    left: -20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .bookImg .label .labelImgSvg {
    width: 25px;
    height: 15px;
    fill: #efd690;
    pointer-events: none;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .bookImg .label .labelImgSvg:nth-of-type(2) {
    fill: #6ab580;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .bookImg .label .labelImgSvg:nth-of-type(3) {
    fill: #b46ab5;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .bookTitleAndAuthor {
    word-break: break-word;
    text-align: center;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .bookTitleAndAuthor .bookTitle {
    font-size: 2rem;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .bookTitleAndAuthor .bookAuthor {
    font-size: 1.6rem;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .listDisplayedOnly {
    display: none;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .listDisplayedOnly .bookBtn {
    font-size: 2rem;
    display: block;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .listDisplayedOnly .bookBtn:hover {
    opacity: 0.5;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .attachAndDetachLabelModal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-color: #fff;
    z-index: 3010;
    display: none;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .attachAndDetachLabelModal.isVisible {
    display: block;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .attachAndDetachLabelModal .currentLabelListWrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 200px;
    max-height: 150px;
    padding: 10px;
    overflow-y: scroll;
    border-radius: 5px;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .attachAndDetachLabelModal .currentLabelListWrap .currentLabelList {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 5px;
    /* 現在のラベル */
}

body .container-fluid main .mainArea .displayBookArea .eachBook .attachAndDetachLabelModal .currentLabelListWrap .currentLabelList .labelLi {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .attachAndDetachLabelModal .currentLabelListWrap .currentLabelList .labelLi .attachAndDetachLabelCheckBox {
    margin-right: 5px;
    transform: scale(1.5);
}

body .container-fluid main .mainArea .displayBookArea .eachBook .attachAndDetachLabelModal .currentLabelListWrap .currentLabelList .labelLi .labelImgSvg {
    width: 25px;
    height: 15px;
    fill: #556b2f;
    pointer-events: none;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .attachAndDetachLabelModal .currentLabelListWrap .currentLabelList .labelLi:nth-of-type(2) .labelImgSvg {
    fill: #6495ed;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .attachAndDetachLabelModal .currentLabelListWrap .currentLabelList .labelLi:nth-of-type(3) .labelImgSvg {
    fill: #ffb6c1;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .attachAndDetachLabelModal .attachAndDetachLabelModalBtnBlock {
    display: flex;
    gap: 10px;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .attachAndDetachLabelModal .attachAndDetachLabelModalBtnBlock .attachAndDetachLabelModalSaveBtn,
body .container-fluid main .mainArea .displayBookArea .eachBook .attachAndDetachLabelModal .attachAndDetachLabelModalBtnBlock .attachAndDetachLabelModalCloseBtn {
    font-size: 16px;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .attachAndDetachMask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.5;
    z-index: 3000;
    display: none;
}

body .container-fluid main .mainArea .displayBookArea .eachBook .attachAndDetachMask.isVisible {
    display: block;
}

body .container-fluid main .mainArea .displayBookArea .eachBookModal {
    width: 90%;
}

body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-header {
    justify-content: center;
    border: none;
    padding: 20px;
}

body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-header img {
    width: 50%;
    height: auto;
}

body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-dialog {
    justify-content: center;
    overflow: visible;
}

body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-dialog .modal-content {
    font-size: 16px;
    text-align: center;
    overflow: visible;
}

body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-dialog .modal-content .modal-body {
    overflow: visible;
}

body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-dialog .modal-content .modal-body .eachBookModalBtnBlock {
    display: flex;
    justify-content: center;
    gap: 10px;
}

body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-dialog .modal-content .modal-body .eachBookModalBtnBlock .bookOperationMenu {
    font-size: 16px;
    overflow: auto;
}

body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-dialog .modal-content .modal-body .eachBookModalBtnBlock .bookReadBtn,
body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-dialog .modal-content .modal-body .eachBookModalBtnBlock .installAnAppBtn {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background-color: #0f5cd6;
    border-radius: 5px;
    padding: 5px;
    transition: 0.5s;
    border: 2px solid #fff;
    transition: 0.2s;
    cursor: pointer;
}

body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-dialog .modal-content .modal-body .eachBookModalBtnBlock .deleteBookbtn {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background-color: #f06060;
    border-radius: 5px;
    padding: 5px;
    transition: 0.5s;
    border: 2px solid #fff;
    transition: 0.2s;
    cursor: pointer;
}

body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-dialog .modal-footer {
    border: none;
}

body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-dialog .modal-footer .eachBookSelectMenuClose {
    font-size: 16px;
    background-color: #696969;
    border: none;
}

body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-dialog.inActive {
    display: none;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    /* 垂直方向に中央揃え */
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .bookImg {
    display: grid;
    grid-row: 1/4;
    grid-column: 1/2;
    width: 10vw;
    /* 本のサイズ*/
    pointer-events: none;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .bookImg.isHidden {
    display: none;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .bookImg img {
    width: 100%;
    max-height: 120px;
    -o-object-fit: contain;
    object-fit: contain;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .bookTitleAndAuthor {
    grid-column: 2/3;
    grid-row: 1/3;
    text-align: center;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .bookTitleAndAuthor .bookTitle {
    grid-column: 2/3;
    grid-row: 1/2;
    font-size: 2rem;
    text-align: center;
    white-space: nowrap;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .bookTitleAndAuthor .bookAuthor {
    grid-column: 2/3;
    grid-row: 2/3;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .listDisplayedOnly {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .listDisplayedOnly .bookDate {
    display: flex;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .listDisplayedOnly .bookDate .bookVersion::after {
    content: " / ";
    margin: 0 15px;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .listDisplayedOnly .bookDate .bookExpiration {
    grid-column: 2/3;
    grid-row: 1/2;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .listDisplayedOnly .eachBookBtnBlock {
    justify-content: center;
    display: flex;
    gap: 10px;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .listDisplayedOnly .eachBookBtnBlock .bookOperationBtn {
    font-size: 16px;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .listDisplayedOnly .eachBookBtnBlock .bookReadBtn {
    font-size: 1.6rem;
    background-color: #0f5cd6;
    color: #fff;
    transition: 0.5s;
    cursor: pointer;
    font-size: 16px;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .listDisplayedOnly .eachBookBtnBlock .bookReadBtn:hover {
    background-color: #fff;
    color: #0f5cd6;
    border: 1px solid #0f5cd6;
    transform: scale(1.05);
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .listDisplayedOnly .eachBookBtnBlock .installAnAppBtn {
    font-size: 1.6rem;
    background-color: #0f5cd6;
    color: #fff;
    transition: 0.5s;
    cursor: pointer;
    font-size: 16px;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .listDisplayedOnly .eachBookBtnBlock .installAnAppBtn:hover {
    background-color: #fff;
    color: #0f5cd6;
    border: 1px solid #0f5cd6;
    transform: scale(1.05);
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .listDisplayedOnly .eachBookBtnBlock .deleteBookbtn {
    font-size: 1.6rem;
    background-color: #f06060;
    color: #fff;
    transition: 0.5s;
    cursor: pointer;
    font-size: 16px;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .listDisplayedOnly .eachBookBtnBlock .deleteBookbtn:hover {
    background-color: #fff;
    color: #f06060;
    border: 1px solid #f06060;
    transform: scale(1.05);
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed.isChange {
    grid-template-columns: repeat(4, 1fr);
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed.isChange .eachBook .bookSelectCheck {
    position: absolute;
    top: 0;
    left: 7px;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed.isChange .eachBook .bookSelectCheck .bookSelectCheckBtn {
    transform: scale(1.8);
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed.isChange .eachBook .bookSelectCheck.isShow {
    display: block;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed.isChange .eachBook .bookTitleAndAuthor {
    grid-column: 1/2;
    grid-row: 1/3;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed.isChange .eachBook .bookTitleAndAuthor .bookTitle {
    grid-column: 1/2;
    grid-row: 1/2;
    font-size: 2rem;
    text-align: center;
    white-space: nowrap;
}

body .container-fluid main .mainArea .displayBookArea.isListDisplayed.isChange .eachBook .bookTitleAndAuthor .bookAuthor {
    grid-column: 1/2;
    grid-row: 2/3;
}

body .container-fluid main .mainArea .generalDocument {
    display: none;
}

body .container-fluid main .mainArea .generalDocument.isShow {
    display: block;
}

body .container-fluid main .mainArea .generalDocument .eachBook {
    position: relative;
    display: grid;
    justify-items: center;
    align-items: end;
    width: 100%;
    padding: 10px;
    border-right: 4px solid #ccc;
    border-bottom: 2px solid #ccc;
    cursor: pointer;
}

body .container-fluid main .mainArea .generalDocument .eachBook:hover {
    background-color: #f5fcff;
    border-right: 4px solid #0f5cd6;
    border-bottom: 2px solid #0f5cd6;
}

body .container-fluid main .mainArea .generalDocument .eachBook .bookSelectCheck {
    position: absolute;
    top: 0;
    right: 20px;
}

body .container-fluid main .mainArea .generalDocument .eachBook .bookSelectCheck .bookSelectCheckBtn {
    transform: scale(1.8);
}

body .container-fluid main .mainArea .generalDocument .eachBook .bookSelectCheck.isShow {
    display: block;
}

body .container-fluid main .mainArea .generalDocument .eachBook .bookImg {
    position: relative;
    width: 10vw;
    height: auto;
    cursor: pointer;
}

body .container-fluid main .mainArea .generalDocument .eachBook .bookImg img {
    width: 100%;
}

body .container-fluid main .mainArea .generalDocument .eachBook .bookImg .label {
    position: absolute;
    top: 0px;
    left: -20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

body .container-fluid main .mainArea .generalDocument .eachBook .bookImg .label .labelImgSvg {
    width: 25px;
    height: 15px;
    fill: #efd690;
    pointer-events: none;
}

body .container-fluid main .mainArea .generalDocument .eachBook .bookImg .label .labelImgSvg:nth-of-type(2) {
    fill: #6ab580;
}

body .container-fluid main .mainArea .generalDocument .eachBook .bookImg .label .labelImgSvg:nth-of-type(3) {
    fill: #b46ab5;
}

body .container-fluid main .mainArea .generalDocument .eachBook .bookTitleAndAuthor {
    word-break: break-word;
    text-align: center;
}

body .container-fluid main .mainArea .generalDocument .eachBook .bookTitleAndAuthor .bookTitle {
    font-size: 2rem;
}

body .container-fluid main .mainArea .generalDocument .eachBook .bookTitleAndAuthor .bookAuthor {
    font-size: 1.6rem;
}

body .container-fluid main .mainArea .generalDocument .eachBook .listDisplayedOnly {
    display: none;
}

body .container-fluid main .mainArea .generalDocument .eachBook .listDisplayedOnly .bookBtn {
    font-size: 2rem;
    display: block;
}

body .container-fluid main .mainArea .generalDocument .eachBook .listDisplayedOnly .bookBtn:hover {
    opacity: 0.5;
}

body .container-fluid main .mainArea .generalTest {
    display: none;
}

body .container-fluid main .mainArea .generalTest.isShow {
    display: block;
}

body .container-fluid main .mainArea .generalTest .eachBook {
    position: relative;
    display: grid;
    justify-items: center;
    align-items: end;
    width: 100%;
    padding: 10px;
    border-right: 4px solid #ccc;
    border-bottom: 2px solid #ccc;
    cursor: pointer;
}

body .container-fluid main .mainArea .generalTest .eachBook:hover {
    background-color: #f5fcff;
    border-right: 4px solid #0f5cd6;
    border-bottom: 2px solid #0f5cd6;
}

body .container-fluid main .mainArea .generalTest .eachBook .bookSelectCheck {
    position: absolute;
    top: 0;
    right: 20px;
}

body .container-fluid main .mainArea .generalTest .eachBook .bookSelectCheck .bookSelectCheckBtn {
    transform: scale(1.8);
}

body .container-fluid main .mainArea .generalTest .eachBook .bookSelectCheck.isShow {
    display: block;
}

body .container-fluid main .mainArea .generalTest .eachBook .bookImg {
    position: relative;
    width: 10vw;
    height: auto;
    cursor: pointer;
}

body .container-fluid main .mainArea .generalTest .eachBook .bookImg img {
    width: 100%;
}

body .container-fluid main .mainArea .generalTest .eachBook .bookImg .label {
    position: absolute;
    top: 0px;
    left: -20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

body .container-fluid main .mainArea .generalTest .eachBook .bookImg .label .labelImgSvg {
    width: 25px;
    height: 15px;
    fill: #efd690;
    pointer-events: none;
}

body .container-fluid main .mainArea .generalTest .eachBook .bookImg .label .labelImgSvg:nth-of-type(2) {
    fill: #6ab580;
}

body .container-fluid main .mainArea .generalTest .eachBook .bookImg .label .labelImgSvg:nth-of-type(3) {
    fill: #b46ab5;
}

body .container-fluid main .mainArea .generalTest .eachBook .bookTitleAndAuthor {
    word-break: break-word;
    text-align: center;
}

body .container-fluid main .mainArea .generalTest .eachBook .bookTitleAndAuthor .bookTitle {
    font-size: 2rem;
}

body .container-fluid main .mainArea .generalTest .eachBook .bookTitleAndAuthor .bookAuthor {
    font-size: 1.6rem;
}

body .container-fluid main .mainArea .generalTest .eachBook .listDisplayedOnly {
    display: none;
}

body .container-fluid main .mainArea .generalTest .eachBook .listDisplayedOnly .bookBtn {
    font-size: 2rem;
    display: block;
}

body .container-fluid main .mainArea .generalTest .eachBook .listDisplayedOnly .bookBtn:hover {
    opacity: 0.5;
}

body .container-fluid main .mainArea .supporterContent .fa-envelope {
    font-size: 3rem;
    cursor: pointer;
    position: absolute;
    top: -33px;
    right: 0;
}

body .container-fluid main .mainArea .supporterContent .mailLinkModal1 .modal-dialog .modal-content .modal-body,
body .container-fluid main .mainArea .supporterContent .mailLinkModal2 .modal-dialog .modal-content .modal-body {
    font-size: 1.6rem;
}

body .container-fluid main .mainArea .supporterContent .mailLinkModal1 .modal-dialog .modal-content .modal-body .sharingLinkMail,
body .container-fluid main .mainArea .supporterContent .mailLinkModal2 .modal-dialog .modal-content .modal-body .sharingLinkMail {
    padding: 10px;
    border: 1px solid #000;
    border-radius: 10px;
}

body .container-fluid main .mainArea .supporterContent .mailLinkModal1 .modal-dialog .modal-content .modal-body .modal-footer .sharingLinkSubmitMail,
body .container-fluid main .mainArea .supporterContent .mailLinkModal2 .modal-dialog .modal-content .modal-body .modal-footer .sharingLinkSubmitMail {
    font-size: 1.6rem;
}

body .container-fluid main .mainArea .supporterContent .mailLinkModal1 .modal-dialog .modal-content .modal-body .modal-footer .sharingLinkModalClose,
body .container-fluid main .mainArea .supporterContent .mailLinkModal2 .modal-dialog .modal-content .modal-body .modal-footer .sharingLinkModalClose {
    font-size: 1.6rem;
}

body .container-fluid main .mainArea .supporterContent .mailLinkModal1 .modal-dialog .modal-content .modal-body .selectSharingBtn,
body .container-fluid main .mainArea .supporterContent .mailLinkModal2 .modal-dialog .modal-content .modal-body .selectSharingBtn {
    font-size: 1.6rem;
    margin-bottom: 30px;
    cursor: pointer;
}

body .container-fluid main .mainArea .supporterContent .selectsharePartnerBtn {
    margin-bottom: 30px;
    font-size: 1.6rem;
    cursor: pointer;
    position: absolute;
    top: -33px;
    right: 50px;
}

body .container-fluid main .mainArea .supporterDocument {
    display: none;
}

body .container-fluid main .mainArea .supporterDocument.isShow {
    display: block;
}

body .container-fluid main .mainArea .supporterDocument .eachBook {
    position: relative;
    display: grid;
    justify-items: center;
    align-items: end;
    width: 100%;
    padding: 10px;
    border-right: 4px solid #ccc;
    border-bottom: 2px solid #ccc;
    cursor: pointer;
}

body .container-fluid main .mainArea .supporterDocument .eachBook:hover {
    background-color: #f5fcff;
    border-right: 4px solid #0f5cd6;
    border-bottom: 2px solid #0f5cd6;
}

body .container-fluid main .mainArea .supporterDocument .eachBook .bookSelectCheck {
    position: absolute;
    top: 0;
    right: 20px;
}

body .container-fluid main .mainArea .supporterDocument .eachBook .bookSelectCheck .bookSelectCheckBtn {
    transform: scale(1.8);
}

body .container-fluid main .mainArea .supporterDocument .eachBook .bookSelectCheck.isShow {
    display: block;
}

body .container-fluid main .mainArea .supporterDocument .eachBook .bookImg {
    position: relative;
    width: 10vw;
    height: auto;
    cursor: pointer;
}

body .container-fluid main .mainArea .supporterDocument .eachBook .bookImg img {
    width: 100%;
}

body .container-fluid main .mainArea .supporterDocument .eachBook .bookImg .label {
    position: absolute;
    top: 0px;
    left: -20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

body .container-fluid main .mainArea .supporterDocument .eachBook .bookImg .label .labelImgSvg {
    width: 25px;
    height: 15px;
    fill: #efd690;
    pointer-events: none;
}

body .container-fluid main .mainArea .supporterDocument .eachBook .bookImg .label .labelImgSvg:nth-of-type(2) {
    fill: #6ab580;
}

body .container-fluid main .mainArea .supporterDocument .eachBook .bookImg .label .labelImgSvg:nth-of-type(3) {
    fill: #b46ab5;
}

body .container-fluid main .mainArea .supporterDocument .eachBook .bookTitleAndAuthor {
    word-break: break-word;
    text-align: center;
}

body .container-fluid main .mainArea .supporterDocument .eachBook .bookTitleAndAuthor .bookTitle {
    font-size: 2rem;
}

body .container-fluid main .mainArea .supporterDocument .eachBook .bookTitleAndAuthor .bookAuthor {
    font-size: 1.6rem;
}

body .container-fluid main .mainArea .supporterDocument .eachBook .listDisplayedOnly {
    display: none;
}

body .container-fluid main .mainArea .supporterDocument .eachBook .listDisplayedOnly .bookBtn {
    font-size: 2rem;
    display: block;
}

body .container-fluid main .mainArea .supporterDocument .eachBook .listDisplayedOnly .bookBtn:hover {
    opacity: 0.5;
}

body .container-fluid main .mainArea .supporterTest {
    display: none;
}

body .container-fluid main .mainArea .supporterTest.isShow {
    display: block;
}

body .container-fluid main .mainArea .supporterTest .eachBook {
    position: relative;
    display: grid;
    justify-items: center;
    align-items: end;
    width: 100%;
    padding: 10px;
    border-right: 4px solid #ccc;
    border-bottom: 2px solid #ccc;
    cursor: pointer;
}

body .container-fluid main .mainArea .supporterTest .eachBook:hover {
    background-color: #f5fcff;
    border-right: 4px solid #0f5cd6;
    border-bottom: 2px solid #0f5cd6;
}

body .container-fluid main .mainArea .supporterTest .eachBook .bookSelectCheck {
    position: absolute;
    top: 0;
    right: 20px;
}

body .container-fluid main .mainArea .supporterTest .eachBook .bookSelectCheck .bookSelectCheckBtn {
    transform: scale(1.8);
}

body .container-fluid main .mainArea .supporterTest .eachBook .bookSelectCheck.isShow {
    display: block;
}

body .container-fluid main .mainArea .supporterTest .eachBook .bookImg {
    position: relative;
    width: 10vw;
    height: auto;
    cursor: pointer;
}

body .container-fluid main .mainArea .supporterTest .eachBook .bookImg img {
    width: 100%;
}

body .container-fluid main .mainArea .supporterTest .eachBook .bookImg .label {
    position: absolute;
    top: 0px;
    left: -20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

body .container-fluid main .mainArea .supporterTest .eachBook .bookImg .label .labelImgSvg {
    width: 25px;
    height: 15px;
    fill: #efd690;
    pointer-events: none;
}

body .container-fluid main .mainArea .supporterTest .eachBook .bookImg .label .labelImgSvg:nth-of-type(2) {
    fill: #6ab580;
}

body .container-fluid main .mainArea .supporterTest .eachBook .bookImg .label .labelImgSvg:nth-of-type(3) {
    fill: #b46ab5;
}

body .container-fluid main .mainArea .supporterTest .eachBook .bookTitleAndAuthor {
    word-break: break-word;
    text-align: center;
}

body .container-fluid main .mainArea .supporterTest .eachBook .bookTitleAndAuthor .bookTitle {
    font-size: 2rem;
}

body .container-fluid main .mainArea .supporterTest .eachBook .bookTitleAndAuthor .bookAuthor {
    font-size: 1.6rem;
}

body .container-fluid main .mainArea .supporterTest .eachBook .listDisplayedOnly {
    display: none;
}

body .container-fluid main .mainArea .supporterTest .eachBook .listDisplayedOnly .bookBtn {
    font-size: 2rem;
    display: block;
}

body .container-fluid main .mainArea .supporterTest .eachBook .listDisplayedOnly .bookBtn:hover {
    opacity: 0.5;
}

body .container-fluid .bottomArea {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    padding: 5px 10px;
    width: 100%;
    height: 70px;
    margin-top: 20px;
    background-color: #fff;
    border-top: 2px solid #ccc;
    z-index: 2;
}

body .container-fluid .bottomArea .comSwitching {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100vw;
}

body .container-fluid .bottomArea .comSwitching.isHidden {
    display: none;
}

body .container-fluid .bottomArea .comSwitching .onlineBtn {
    width: 40vw;
    font-size: 2rem;
    background-color: #0f5cd6;
    color: #fff;
}

body .container-fluid .bottomArea .comSwitching .DownLoadBtn {
    width: 40vw;
    font-size: 2rem;
    color: #0f5cd6;
    background-color: #ffd569;
}

body .container-fluid .bottomArea .comSwitching .DownLoadBtn .spOnly {
    display: none;
}

body .container-fluid .bottomArea .dataVolume.isHidden {
    display: none;
}

body .container-fluid .bottomArea .dataVolume .dataGauge {
    width: 100px;
    height: 30px;
}

body .container-fluid .bottomArea .selectMultipleModeOnly {
    display: none;
    width: 100%;
}

body .container-fluid .bottomArea .selectMultipleModeOnly.isShow {
    display: flex;
    justify-content: space-between;
}

body .container-fluid .bottomArea .selectMultipleModeOnly .deleteLabel {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

body .container-fluid .bottomArea .selectMultipleModeOnly .deleteLabel .fa-trash-alt {
    font-size: 3rem;
}

body .container-fluid .bottomArea .selectMultipleModeOnly .deleteLabel p {
    font-size: 16px;
}

body .container-fluid .bottomArea .selectMultipleModeOnly .addLabel {
    cursor: pointer;
}

body .container-fluid .bottomArea .selectMultipleModeOnly .addLabel .labelSelectBtn {
    font-size: 16px;
}

body .container-fluid .bottomArea .selectMultipleModeOnly .addLabel .labelSelectMenu {
    font-size: 16px;
}

body .container-fluid .bottomArea .selectMultipleModeOnly .addLabel .labelSelectMenu li {
    display: flex;
    align-items: center;
}

body .container-fluid .bottomArea .selectMultipleModeOnly .addLabel .labelSelectMenu li .labelImg {
    width: 25px;
    height: 15px;
}

body .container-fluid .bottomArea .selectMultipleModeOnly .selectDeleteLabelBtn {
    font-size: 16px;
    cursor: pointer;
}

@media screen and (max-width: 1919px) {
    body .container-fluid main .mainArea .displayBookArea {
        grid-template-columns: repeat(5, 1fr);
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed {
        grid-template-columns: repeat(2, 1fr);
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed.isChange {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed.isChange .eachBook {
        display: block;
        text-align: center;
    }
}

@media screen and (max-width: 1400px) {
    body .container-fluid main .mainArea .displayBookArea {
        grid-template-columns: repeat(4, 1fr);
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed {
        display: flex;
        flex-direction: column;
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed.isChange {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed.isChange .eachBook {
        display: block;
        text-align: center;
    }
}

@media screen and (max-width: 1341px) {
    body .container-fluid .sideArea {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    padding: 300px 10px 10px 10px;
    background-color: #f5fcff;
    border-left: 2px solid #0f5cd6;
    }
}

@media screen and (max-width: 1200px) {
    body .container-fluid header .navberMenu .navList .navListBlock:last-child .navListGroup:last-child {
        display: flex;
        background-color: #fff;
        justify-content: center;
        border-radius: 20px;
    }

    body .container-fluid header .navberMenu .navList .navListBlock .navUploadMenu {
        flex-direction: column;
        top: 180px;
        left: 52%;
    }

    body .container-fluid .upperArea {
        width: 100%;
    }

    body .container-fluid main {
        width: 100%;
    }

    body .container-fluid main .sideArea {
        display: none;
        padding-top: 60px;
        z-index: 75;
    }

    body .container-fluid main .sideArea.isVisible {
        display: flex;
    }

    body .container-fluid main .sideArea .closeSideberBtn {
        display: block;
        color: #696969;
    }

    body .container-fluid main .mainArea .displayBookArea {
        grid-template-columns: repeat(3, 1fr);
    }

    body .container-fluid main .mainArea .displayBookArea .eachBook .bookImg {
        width: 10vw;
        /* 本のサイズ  */
    }
}

@media screen and (max-width: 992px) {
    body .container-fluid header .navberMenu .navberHeading {
        flex-direction: column;
        padding-bottom: 10px;
    }

    body .container-fluid header .navberMenu .navList .navListBlock:last-child .navListGroup:last-child {
        display: flex;
    }

    body .container-fluid main .upperArea .fixArea .fixFirstBlock {
        flex-direction: column;
        align-items: flex-start;
    }

    body .container-fluid main .upperArea .fixArea .fixFirstBlock .chattyBoxLogo {
        margin-bottom: 10px;
    }

    body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare {
        flex-wrap: wrap;
    }

    body .container-fluid main .mainArea .displayBookArea .eachBook .bookImg {
        width: 15vw;
        /* 本のサイズ  */
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook {
        display: grid;
        justify-content: space-evenly;
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed.isChange {
        display: flex;
        flex-direction: column;
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed.isChange .eachBook {
        display: flex;
        justify-content: space-between;
        text-align: start;
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed.isChange .eachBook .bookSelectCheck {
        position: static;
    }
}

@media screen and (max-width: 768px) {
    body .container-fluid header .hamburger {
        display: block;
    }

    body .container-fluid header .navberMenu {
        display: none;
    }

    body .container-fluid header .navberMenu .navberHeading .otherLogo {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    body .container-fluid main {
        margin-top: 50px;
    }

    body .container-fluid main .upperArea .fixArea .fixFirstBlock .chattyBoxLogo {
        margin-bottom: 10px;
    }

    body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo {
        flex-wrap: wrap;
        gap: 0;
    }

    body .container-fluid main .upperArea .fixArea .fixSecondBlock {
        flex-wrap: wrap;
    }

    body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .sort .sortSelectBtn {
        padding: 2px 3px;
    }

    body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .sort .sortSelectBtn .bi-arrow-down-up {
        font-size: 2.5rem;
    }

    body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .selectsharePartner .selectsharePartnerBtn {
        padding: 0px 3px;
    }

    body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .selectsharePartner .selectsharePartnerBtn .bi-share {
        font-size: 2.5rem;
        height: 35px;
    }

    body .container-fluid main .upperArea .fixArea .fixSecondBlock .dataVolume .dataGauge {
        width: 70px;
    }

    body .container-fluid main .upperArea .fixArea .fixSecondBlock .dataVolume .dateRatio {
        font-size: 12px;
    }

    body .container-fluid main .mainArea {
        width: 100%;
    }

    body .container-fluid main .mainArea .displayBookArea {
        display: none;
    }

    body .container-fluid main .mainArea .displayBookArea .eachBook .bookImg {
        width: 15vw;
        /* 本のサイズ  */
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed.isChange {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    body .container-fluid header .navberMenu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
    }

    body .container-fluid header .navberMenu .navberHeading {
        flex-direction: column;
        padding-bottom: 10px;
    }

    body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(1)::after, body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(2)::after, body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(3)::after, body .container-fluid header .navberMenu .navList .navListBlock:nth-of-type(5)::after {
        content: none;
    }

/*    body .container-fluid header .navberMenu .navList .navListBlock:last-of-type {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        place-items: center;
    }*/

    body .container-fluid header .navberMenu .navList .navListBlock:last-of-type .navListGroup:last-of-type {
        grid-column: 2/3;
        border-left: 0;
    }

    body .container-fluid header .navberMenu .navList .navListBlock:last-of-type .navListShareBoxGroup {
        margin: 0 auto;
    }

    body .container-fluid header .navberMenu .navList .navListBlock .chattyBoxIcon.isActive {
        height: 80px;
    }

    body .container-fluid main .upperArea {
        padding: 10px;
    }

    body .container-fluid main .upperArea .fixArea .fixFirstBlock .chattyBoxLogo {
        width: 120px;
        margin-bottom: 10px;
    }

    body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo {
        flex-wrap: wrap;
        gap: 10px;
    }

    body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .changeViewBtnBlock {
        gap: 5px;
    }

    body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .changeViewBtnBlock .isGridViewBtn,
    body .container-fluid main .upperArea .fixArea .fixFirstBlock .otherLogo .changeView .changeViewBtnBlock .isListViewBtn {
        font-size: 30px;
    }

    body .container-fluid main .upperArea .fixArea .fixSecondBlock {
        flex-wrap: wrap;
    }

    body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare {
        gap: 10px;
    }

    body .container-fluid main .upperArea .fixArea .fixSecondBlock .labelAndSortAndShare .label {
        padding: 5px;
    }

    body .container-fluid main .upperArea .fixArea .dataVolume .dateRatio {
        font-size: 10px;
    }

    body .container-fluid main .mainArea .mainAreaMenu {
        flex-direction: column;
    }

    body .container-fluid main .mainArea .displayBookArea {
        grid-template-columns: repeat(2, 1fr);
    }

    body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-dialog .modal-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-dialog .modal-content .modal-body .bookReadBtn,
    body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-dialog .modal-content .modal-body .installAnAppBtn,
    body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-dialog .modal-content .modal-body .deleteBookbtn,
    body .container-fluid main .mainArea .displayBookArea .eachBookModal .modal-dialog .modal-content .modal-body .bookOperationBtn {
        display: flex;
        gap: 10px;
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook {
        display: flex;
        flex-direction: column;
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .bookImg {
        width: 20vw;
        /* 本のサイズ*/
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .listDisplayedOnly .bookDate {
        flex-direction: column;
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .listDisplayedOnly .bookDate .bookVersion::after {
        content: " ";
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed .eachBook .listDisplayedOnly .eachBookBtnBlock {
        gap: 10px;
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed.isChange {
        grid-template-columns: repeat(2, 1fr);
    }

    body .container-fluid main .mainArea .displayBookArea.isListDisplayed.isChange .eachBook {
        display: flex;
        flex-direction: column;
    }

    body .container-fluid main .mainArea .generalDocument .fa-envelope {
        top: 10px;
        left: 160px;
    }

    body .container-fluid main .mainArea .generalDocument .selectsharePartnerBtn {
        top: 10px;
        left: 0;
        width: 150px;
    }

    body .container-fluid main .mainArea .supporterContent .fa-envelope {
        top: 10px;
        left: 160px;
    }

    body .container-fluid main .mainArea .supporterContent .selectsharePartnerBtn {
        top: 10px;
        left: 0;
        width: 150px;
    }

    body .container-fluid .bottomArea .comSwitching .onlineBtn {
        font-size: 16px;
    }

    body .container-fluid .bottomArea .comSwitching .DownLoadBtn {
        font-size: 16px;
    }

    body .container-fluid .bottomArea .comSwitching .DownLoadBtn .spOnly {
        display: block;
    }
}

body {
    font-size: 1.6rem;
}

body .container {
    padding: 20px;
}

body .container .upperArea {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

body .container .upperArea .title {
    margin-right: auto;
    font-size: 3rem;
}

body .container .upperArea .upperAreaMenu {
    align-self: end;
    display: flex;
}

body .container .upperArea .upperAreaMenu .linkBookShelf {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0F5CD6;
}

body .container .upperArea .upperAreaMenu .linkBookShelf:hover {
    opacity: 0.5;
}

body .container .upperArea .upperAreaMenu .selectLanguage .languageBtn {
    font-size: 1.6rem;
    color: #000;
    border: 1px solid #000;
    background-color: #fff;
}

body .container .upperArea .upperAreaMenu .selectLanguage .languageMenu {
    min-width: 7rem;
    font-size: 1.6rem;
}

body {
    font-size: 1.6rem;
}

body .container main .processArea {
    margin-bottom: 50px;
}

body .container main .processArea .processDescription {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 3px solid #0F5CD6;
    border-radius: 10px;
    background-color: #F5FCFF;
    margin-bottom: 50px;
}

body .container main .processArea .processDescription .fa-circle-info {
    font-size: 3rem;
}

body .container main .processArea .selsectProcess {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

body .container main .processArea .selsectProcess .selectList {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 120px;
    height: 120px;
    border: 3px solid #000;
    border-radius: 10px;
    line-height: 1.2;
    cursor: pointer;
    transition: 0.3s;
}

body .container main .processArea .selsectProcess .selectList.isActive {
    background-color: #0b449a;
    color: #fff;
    border: 1px solid #fff;
    transform: scale(1.1);
}

body .container main .processArea .selsectProcess .selectList:hover {
    transform: scale(1.1);
}

body .container main .processArea .selsectProcess .DAISYReplay {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 120px;
    height: 120px;
    border: 3px solid #000;
    border-radius: 10px;
    line-height: 1.2;
    cursor: pointer;
    transition: 0.3s;
    gap: 5px;
}

body .container main .processArea .selsectProcess .DAISYReplay.isActive {
    background-color: #0b449a;
    color: #fff;
    border: 1px solid #fff;
    transform: scale(1.1);
}

body .container main .processArea .selsectProcess .DAISYReplay:hover {
    transform: scale(1.1);
}

body .container main .processArea .selsectProcess .DAISYReplay .bi-play-btn {
    font-size: 5rem;
}

body .container main .processArea .selsectProcess .PDFAndWord {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 120px;
    height: 120px;
    border: 3px solid #000;
    border-radius: 10px;
    line-height: 1.2;
    cursor: pointer;
    transition: 0.3s;
    gap: 5px;
}

body .container main .processArea .selsectProcess .PDFAndWord.isActive {
    background-color: #0b449a;
    color: #fff;
    border: 1px solid #fff;
    transform: scale(1.1);
}

body .container main .processArea .selsectProcess .PDFAndWord:hover {
    transform: scale(1.1);
}

body .container main .processArea .selsectProcess .PDFAndWord .bi-filetype-pdf,
body .container main .processArea .selsectProcess .PDFAndWord .bi-file-earmark-word {
    gap: 5px;
    font-size: 4rem;
}

body .container main .processArea .selsectProcess .text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 120px;
    height: 120px;
    border: 3px solid #000;
    border-radius: 10px;
    line-height: 1.2;
    cursor: pointer;
    transition: 0.3s;
    gap: 5px;
}

body .container main .processArea .selsectProcess .text.isActive {
    background-color: #0b449a;
    color: #fff;
    border: 1px solid #fff;
    transform: scale(1.1);
}

body .container main .processArea .selsectProcess .text:hover {
    transform: scale(1.1);
}

body .container main .processArea .selsectProcess .text .textIcon {
    display: flex;
    gap: 5px;
    font-size: 4rem;
}

body .container main .processArea .selsectProcess .clipboard {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 120px;
    height: 120px;
    border: 3px solid #000;
    border-radius: 10px;
    line-height: 1.2;
    cursor: pointer;
    transition: 0.3s;
}

body .container main .processArea .selsectProcess .clipboard.isActive {
    background-color: #0b449a;
    color: #fff;
    border: 1px solid #fff;
    transform: scale(1.1);
}

body .container main .processArea .selsectProcess .clipboard:hover {
    transform: scale(1.1);
}

body .container main .processArea .selsectProcess .clipboard .bi-clipboard {
    font-size: 4rem;
}

body .container main .processArea .selsectProcess .textbook {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 120px;
    height: 120px;
    border: 3px solid #000;
    border-radius: 10px;
    line-height: 1.2;
    cursor: pointer;
    transition: 0.3s;
}

body .container main .processArea .selsectProcess .textbook .textbookLink.isActive {
    background-color: orange;
    color: #fff;
    transform: scale(1.1);
}

body .container main .processArea .selsectProcess .textbook .textbookLink.isActive:hover {
    color: #fff;
}

body .container main .processArea .selsectProcess .textbook .textbookLink .bi-book {
    font-size: 4rem;
}

body .container main .processArea .settingModalMask {
    background-color: rgba(0, 0, 0, 0.2);
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0.5;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: 0.3s;
    visibility: hidden;
    width: 100%;
    z-index: 1000;
}

body .container main .processArea .settingModalMask.isVisible {
    opacity: 1;
    visibility: visible;
}

body .container main .processArea .PDFAndWordModal {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #333;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    width: max(350px, 50%);
    z-index: 1100;
}

body .container main .processArea .PDFAndWordModal.isVisible {
    display: block;
}

body .container main .processArea .PDFAndWordModal .pageRange {
    margin-bottom: 20px;
}

body .container main .processArea .PDFAndWordModal .pageRange .Subheading {
    text-align: center;
    background-color: #0b449a;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
}

body .container main .processArea .PDFAndWordModal .pageRange .pageRangeStart {
    text-align: center;
    border: 1px solid #000;
    border-radius: 5px;
}

body .container main .processArea .PDFAndWordModal .pageRange .pageRangeEnd {
    text-align: center;
    border: 1px solid #000;
    border-radius: 5px;
}

body .container main .processArea .PDFAndWordModal .layoutType {
    margin-bottom: 20px;
}

body .container main .processArea .PDFAndWordModal .layoutType .Subheading {
    text-align: center;
    background-color: #0b449a;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
}

body .container main .processArea .PDFAndWordModal .layoutType form {
    margin-bottom: 10px;
}

body .container main .processArea .PDFAndWordModal .layoutType .aboutlayoutType {
    display: flex;
    align-items: center;
}

body .container main .processArea .PDFAndWordModal .layoutType .aboutlayoutType .bi-question-circle {
    color: orange;
}

body .container main .processArea .PDFAndWordModal .layoutType .aboutlayoutType a {
    color: #0d6efd;
}

body .container main .processArea .PDFAndWordModal .audioType {
    margin-bottom: 10px;
}

body .container main .processArea .PDFAndWordModal .audioType .Subheading {
    text-align: center;
    background-color: #0b449a;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
}

body .container main .processArea .PDFAndWordModal .audioType form {
    margin-bottom: 10px;
}

body .container main .processArea .PDFAndWordModal .audioType .warningStatement {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

body .container main .processArea .PDFAndWordModal .audioType .warningStatement .bi-exclamation-triangle {
    font-size: 20px;
    color: #d60f0f;
}

body .container main .processArea .PDFAndWordModal .rubyType {
    margin-bottom: 20px;
}

body .container main .processArea .PDFAndWordModal .rubyType .Subheading {
    text-align: center;
    background-color: #0b449a;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
}

body .container main .processArea .PDFAndWordModal .separation {
    margin-bottom: 50px;
}

body .container main .processArea .PDFAndWordModal .separation .Subheading {
    text-align: center;
    background-color: #0b449a;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
}

body .container main .processArea .PDFAndWordModal .separation .selectSeparation {
    display: flex;
    margin-bottom: 10px;
}

body .container main .processArea .PDFAndWordModal .separation .aboutSeparation {
    display: flex;
    align-items: center;
}

body .container main .processArea .PDFAndWordModal .separation .aboutSeparation .fa-question-circle {
    color: orange;
}

body .container main .processArea .PDFAndWordModal .separation .aboutSeparation a {
    color: #0d6efd;
}

body .container main .processArea .PDFAndWordModal .PDFAndWordModalBtnBlock {
    display: flex;
    gap: 10px;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

body .container main .processArea .PDFAndWordModal .PDFAndWordModalBtnBlock .PDFAndWordModalCancelBtn {
    border: 2px solid #696969;
    color: #696969;
    border-radius: 5px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

body .container main .processArea .PDFAndWordModal .PDFAndWordModalBtnBlock .PDFAndWordModalCancelBtn:hover {
    opacity: 0.5;
}

body .container main .processArea .PDFAndWordModal .PDFAndWordModalBtnBlock .PDFAndWordModalSubmitBtn {
    background-color: #0F5CD6;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

body .container main .processArea .PDFAndWordModal .PDFAndWordModalBtnBlock .PDFAndWordModalSubmitBtn:hover {
    opacity: 0.5;
}

body .container main .processArea .textModal {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #333;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    width: max(350px, 50%);
    z-index: 1100;
}

body .container main .processArea .textModal.isVisible {
    display: block;
}

body .container main .processArea .textModal .audioType {
    margin-bottom: 10px;
}

body .container main .processArea .textModal .audioType .Subheading {
    text-align: center;
    background-color: #0b449a;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
}

body .container main .processArea .textModal .audioType form {
    margin-bottom: 10px;
}

body .container main .processArea .textModal .audioType .warningStatement {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

body .container main .processArea .textModal .audioType .warningStatement .bi-exclamation-triangle {
    font-size: 20px;
    color: #d60f0f;
}

body .container main .processArea .textModal .rubyType {
    margin-bottom: 20px;
}

body .container main .processArea .textModal .rubyType .Subheading {
    text-align: center;
    background-color: #0b449a;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
}

body .container main .processArea .textModal .separation {
    margin-bottom: 50px;
}

body .container main .processArea .textModal .separation .Subheading {
    text-align: center;
    background-color: #0b449a;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
}

body .container main .processArea .textModal .separation .selectSeparation {
    display: flex;
    margin-bottom: 10px;
}

body .container main .processArea .textModal .separation .aboutSeparation {
    display: flex;
    align-items: center;
}

body .container main .processArea .textModal .separation .aboutSeparation a {
    color: #0d6efd;
}

body .container main .processArea .textModal .textlBtnBlock {
    display: flex;
    gap: 10px;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

body .container main .processArea .textModal .textlBtnBlock .textModalCancelBtn {
    border: 2px solid #696969;
    color: #696969;
    border-radius: 5px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

body .container main .processArea .textModal .textlBtnBlock .textModalCancelBtn:hover {
    opacity: 0.5;
}

body .container main .processArea .textModal .textlBtnBlock .textModalSubmitBtn {
    background-color: #0F5CD6;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

body .container main .processArea .textModal .textlBtnBlock .textModalSubmitBtn:hover {
    opacity: 0.5;
}

body .container main .processArea .spImageModal .modal-body {
    font-size: 2rem;
}

body .container main .processArea .spImageModal .modal-body .selectSpImage {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body .container main .processArea .spImageModal .modal-body .selectSpImage .launchCamera {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

body .container main .processArea .spImageModal .modal-body .selectSpImage .launchCamera .spCameraIcon {
    font-size: 3rem;
}

body .container main .processArea .spImageModal .modal-body .selectSpImage .accessImage {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

body .container main .processArea .spImageModal .modal-body .selectSpImage .accessImage .spImageIcon {
    font-size: 3rem;
}

body .container main .selectFileArea {
    width: 100%;
    height: 80px;
    border: 3px solid #333;
    padding: 10px;
    border-radius: 20px;
    opacity: 0.2;
    display: flex;
    align-items: center;
    pointer-events: none;
    position: relative;
}

body .container main .selectFileAreaSeparate {
    width: 100%;
    height: 80px;
    padding: 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    pointer-events: none;
    position: relative;
}

body .container main .selectFileArea.isVisible {
    opacity: 1;
    pointer-events: auto;
}

body .container main .selectFileArea .fileSelectMode {
    display: none;
    cursor: pointer;
}

body .container main .selectFileArea .fileSelectMode.isVisible {
    display: flex;
}

body .container main .selectFileArea .fileSelectMode .selectFile {
    cursor: pointer;
}

body .container main .selectFileArea .fileSelectMode .selectFileSubmitBtn {
    /* 初めは見えないように */
    display: none;
    position: absolute;
    cursor: pointer;
    width: 100px;
    height: 40px;
    background-color: #0F5CD6;
    color: #fff;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0px;
    bottom: -50px;
}


body .container main .selectFileArea .fileSelectMode .selectProjectBtn {
    /* 初めは見えないように */
    display: none;
    position: absolute;
    cursor: pointer;
    width: 100px;
    height: 40px;
    background-color: #0F5CD6;
    color: #fff;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0px;
    bottom: -50px;
}

body .container main .selectFileArea .fileSelectMode .selectFileSubmitBtn.isVisible {
    display: flex;
}

body .container main .selectFileArea .fileSelectMode .selectFileSubmitBtn.isVisible:hover {
    opacity: 0.5;
}

body .container main .selectFileArea .pasteMode {
    display: none;
    cursor: pointer;
}

body .container main .selectFileArea .pasteMode.isVisible {
    display: flex;
}

body .container main .selectFileArea .pasteMode .pasteFileSubmitBtn {
    /* 初めは見えないように */
    position: absolute;
    cursor: pointer;
    width: 100px;
    height: 40px;
    background-color: #0F5CD6;
    color: #fff;
    border-radius: 5px;
    align-items: center;
    display: flex;
    justify-content: center;
    position: absolute;
    right: 0px;
    bottom: -50px;
}

body .container main .selectFileArea .pasteMode .git:hover {
    opacity: 0.5;
}

body .container main .uploadMask {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    transition: 0.5s;
    z-index: 1;
}

body .container main .uploadMask.isActive {
    display: block;
}

body .container main .uploadSuccess {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 315px;
    height: 200px;
    border: 2px solid #000;
    border-radius: 10px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.3);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

body .container main .uploadSuccess.isActive {
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
    opacity: 1;
}

body .container main .uploadSuccess .uploadSuccessClose {
    position: absolute;
    top: 22px;
    right: 0;
    transform: translate(-50%, -50%);
    cursor: pointer;
    border-radius: 10px;
}

body .container main .uploadSuccess .uploadSuccessClose .bi-x-square-fill {
    margin-top: 50px;
    font-size: 2.5rem;
}

body .container main .uploadSuccess .uploadSuccessClose :hover {
    opacity: 0.7;
}

body .container main .uploadSuccess .uploadSpace {
    width: 100%;
    height: 40px;
}

body .container main .uploadSuccess p {
    font-size: 2rem;
}

body .container main .uploadSuccess .bi-check-circle {
    font-size: 6rem;
    color: #008080;
}

body .container main .uploadFailed {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 315px;
    height: 200px;
    border: 2px solid #000;
    border-radius: 10px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.3);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

body .container main .uploadFailed.isActive {
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
    opacity: 1;
}

body .container main .uploadFailed .uploadFailedClose {
    position: absolute;
    top: 22px;
    right: 0;
    transform: translate(-50%, -50%);
    cursor: pointer;
    border-radius: 10px;
}

body .container main .uploadFailed .uploadFailedClose .bi-x-square-fill {
    margin-top: 50px;
    font-size: 2.5rem;
}

body .container main .uploadFailed .uploadFailedClose :hover {
    opacity: 0.7;
}

body .container main .uploadFailed .uploadSpace {
    width: 100%;
    height: 40px;
}

body .container main .uploadFailed p {
    font-size: 2rem;
}

body .container main .uploadFailed .bi-x-circle {
    font-size: 6rem;
    color: #cc4400;
}

body .container main .filelNotSelect {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 315px;
    height: 200px;
    border: 2px solid #000;
    border-radius: 10px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.3);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

body .container main .filelNotSelect.isActive {
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
    opacity: 1;
}

body .container main .filelNotSelect .uploadSpace {
    width: 100%;
    height: 40px;
}

body .container main .filelNotSelect p {
    font-size: 2rem;
}

body .container main .filelNotSelect .ufilelNotSelectClose {
    position: absolute;
    top: 22px;
    right: 0;
    transform: translate(-50%, -50%);
    cursor: pointer;
    border-radius: 10px;
}

body .container main .filelNotSelect .ufilelNotSelectClose .bi-x-square-fill {
    margin-top: 50px;
    font-size: 2.5rem;
}

body .container main .filelNotSelect .ufilelNotSelectClose :hover {
    opacity: 0.7;
}

body .container main .filelNotSelect .bi-exclamation-circle {
    font-size: 6rem;
    color: #cc4400;
}

body {
    font-size: 16px;
}

body .container-fruid {
    padding: 20px;
}

body .container-fruid .heading {
    font-size: 3rem;
    margin-bottom: 10px;
}

body .container-fruid .upperArea .discription {
    display: inline-block;
    margin-bottom: 15px;
    padding: 10px; /*内側余白*/
    background-color: #f4f4f4; /*背景色*/
    position: relative;
}

body .container-fruid .upperArea .discription::after {
    position: absolute;
    content: "";
    right: 0px;
    top: 0px;
    border-width: 0 15px 15px 0;
    border-style: solid;
    border-color: #ccc #fff #ccc;
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}

body .container-fruid .upperArea .sarch {
    display: flex;
    gap: 20px;
}

body .container-fruid .upperArea .sarch .sarchBook {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

body .container-fruid .upperArea .sarch .sarchBook .keyword {
    width: 250px;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #000;
    border-radius: 5px;
}

body .container-fruid .upperArea .sarch .sarchBook .dropdown button {
    font-size: 16px;
}

body .container-fruid .upperArea .sarch .sarchBook .dropdown .dropdown-menu .dropdown-item {
    font-size: 16px;
}

body .container-fruid .upperArea .sarch .btnBlock .sarchBtn,
body .container-fruid .upperArea .sarch .btnBlock .clearBtn {
    border-radius: 10px;
    font-size: 16px;
    background-color: darkorange;
    color: #fff;
    transition: 0.5s;
}

body .container-fruid .upperArea .sarch .btnBlock .sarchBtn:hover,
body .container-fruid .upperArea .sarch .btnBlock .clearBtn:hover {
    background-color: #fff;
    color: darkorange;
    opacity: 0.7;
    border: 1px solid darkorange;
}

body .container-fruid .upperArea .sarch .btnBlock .sarchBtn {
    margin-right: 10px;
}

body .container-fruid .upperArea .select {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

body .container-fruid .upperArea .select .selectBookBtn {
    margin-right: 20px;
    font-size: 16px;
    background-color: #333;
    color: #fff;
    transition: 0.1s;
}

body .container-fruid .upperArea .select .selectBookBtn:hover {
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
    opacity: 0.7;
}

body .container-fruid .upperArea .select .allRemovableBtn {
    transition: 0.5s;
}

body .container-fruid .upperArea .select .allRemovableBtn .allBookSelectBtn {
    font-size: 16px;
    background-color: #000080;
    color: #fff;
    transition: 0.5s;
    margin-right: 10px;
}

body .container-fruid .upperArea .select .allRemovableBtn .allBookSelectBtn:hover {
    background-color: #fff;
    color: #000080;
    border: 1px solid #000080;
    opacity: 0.7;
}

body .container-fruid .upperArea .select .allRemovableBtn .allBookReleaseBtn {
    font-size: 16px;
    background-color: #fff;
    color: #000080;
    border: 1px solid #000080;
    transition: 0.5s;
}

body .container-fruid .upperArea .select .allRemovableBtn .allBookReleaseBtn:hover {
    background-color: #000080;
    color: #fff;
    border: 1px solid #fff;
    opacity: 0.7;
}

body {
    font-size: 16px;
}

body .container-fruid .mainArea .displayBookArea .eachBookList {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook {
    display: flex;
    position: relative;
    justify-items: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    gap: 10px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook .bookImg {
    width: 15vw;
    height: auto;
    cursor: pointer;
    align-items: center;
}

body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook .bookImg img {
    width: 100%;
}

body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook .bookInfo {
    width: 100%;
    align-items: start;
    gap: 5px;
}

body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook .bookInfo .bookHeading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook .bookInfo .bookHeading .bookCategory {
    font-size: 3rem;
}

body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook .bookInfo .bookHeading .pageRange {
    vertical-align: middle;
    padding: 0 5px;
    background-color: #333;
    color: #fff;
    border-radius: 10px;
}

body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook .bookInfo .bookTitle {
    margin-bottom: 10px;
    background-color: #faf0e6;
    padding: 3px;
    text-align: center;
    border-radius: 5px;
}

body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook .bookInfo .bookUnit {
    margin-bottom: 10px;
}

body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook .bookSelectCheck {
    position: absolute;
    right: 20px;
    bottom: 20px;
    justify-self: end;
}

body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook .bookSelectCheck .bookSelectCheckBtn {
    transform: scale(1.8);
}

body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook.isSelected {
    background-color: #fff0f5;
    animation-name: changeBookSize;
    animation-duration: 0.7s;
    animation-timing-function: ease-out;
}

@keyframes changeBookSize {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
        /*アニメーションを終了するときのCSSを記述*/
    }
}

body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook.isSelected .bookTitle {
    border: 1px solid #000;
    border-radius: 5px;
    box-sizing: border-box;
}

body .container-fruid .bottomArea {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: fixed;
    bottom: 0;
    width: calc(100% - 40px);
    height: 70px;
    margin-top: 20px;
    background-color: #fff;
    border-top: 2px solid #ccc;
}

body .container-fruid .bottomArea .inMyBoxBtn {
    font-size: 16px;
}

body {
    font-size: 16px;
}

body .container {
    padding: 20px;
}

body .container .upperArea {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

body .container .upperArea .title {
    margin-right: auto;
    font-size: 3rem;
}

body .container .upperArea .upperAreaMenu {
    display: flex;
    align-self: end;
}

body .container .upperArea .upperAreaMenu .linkBookShelf {
    cursor: pointer;
    color: darkorange;
}

body .container .upperArea .upperAreaMenu .selectLanguage .languageBtn {
    font-size: 16px;
    color: #000;
    border: 1px solid #000;
    background-color: #fff;
}

body .container .upperArea .upperAreaMenu .selectLanguage .languageMenu {
    min-width: 7rem;
    font-size: 16px;
}

body {
    font-size: 16px;
}

body .container .processArea {
    margin-bottom: 50px;
}

body .container .processArea .processDescription {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    background-color: #faf0e6;
    margin-bottom: 50px;
}

body .container .processArea .processDescription .fa-circle-info {
    font-size: 3rem;
}

body .container .processArea .brailleConversion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

body .container .processArea .brailleConversion .beforeBrailleConversion {
    display: flex;
    gap: 20px;
    border: 3px solid #000;
    border-radius: 20px;
    padding: 10px;
}

body .container .processArea .brailleConversion .beforeBrailleConversion .PDFGroup,
body .container .processArea .brailleConversion .beforeBrailleConversion .textGroup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

body .container .processArea .brailleConversion .beforeBrailleConversion .pdfWord,
body .container .processArea .brailleConversion .beforeBrailleConversion .textWord {
    background-color: darkorange;
    color: #fff;
    border-radius: 5px;
    padding: 3px;
}

body .container .processArea .brailleConversion .beforeBrailleConversion .fa-file-pdf,
body .container .processArea .brailleConversion .beforeBrailleConversion .fa-file-lines {
    font-size: 5rem;
}

body .container .processArea .brailleConversion .fa-arrow-right {
    font-size: 5rem;
}

body .container .processArea .brailleConversion .afterBrailleConversion {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border: 3px solid #000;
    border-radius: 20px;
    padding: 10px;
}

body .container .processArea .brailleConversion .afterBrailleConversion .brailleGroup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

body .container .processArea .brailleConversion .afterBrailleConversion .brailleWord {
    background-color: darkorange;
    color: #fff;
    border-radius: 5px;
    padding: 3px;
}

body .container .processArea .brailleConversion .afterBrailleConversion .brailleIcon {
    font-size: 5rem;
}

body {
    font-size: 16px;
}

body .selectFileArea {
    position: relative;
    padding: 10px;
    height: 200px;
    background-color: #f5f5f5;
    border: 1px dashed #000;
    border-radius: 10px;
    margin-bottom: 30px;
}

body .selectFileArea .dragAndDragMode {
    display: none;
}

body .selectFileArea .dragAndDragMode.isVisible {
    display: block;
}

body .selectFileArea .dragAndDragMode .inner {
    display: flex;
    align-items: center;
}

body .selectFileArea .dragAndDragMode .inner .selectFileBtn {
    font-size: 16px;
    background-color: #f5deb3;
}

body .selectFileArea .pasteMode {
    display: none;
}

body .selectFileArea .pasteMode.isVisible {
    display: flex;
}

body .selectFileArea .pasteMode .inner {
    display: flex;
    align-items: center;
}

body .selectFileArea .pasteMode .inner .submitBtn {
    font-size: 16px;
    position: absolute;
    bottom: -50px;
    right: 0;
}

body {
    font-size: 16px;
}

body .container .bottomArea .separation {
    text-align: right;
}

body {
    font-size: 16px;
}

body .container {
    padding: 20px;
}

body .container .upperArea {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

body .container .upperArea .title {
    margin-right: auto;
    font-size: 3rem;
}

body .container .upperArea .upperAreaMenu {
    align-self: end;
    display: flex;
}

body .container .upperArea .upperAreaMenu .linkBookShelf {
    cursor: pointer;
    color: darkorange;
}

body .container .upperArea .upperAreaMenu .selectLanguage .languageBtn {
    font-size: 16px;
    color: #000;
    border: 1px solid #000;
    background-color: #fff;
}

body .container .upperArea .upperAreaMenu .selectLanguage .languageMenu {
    min-width: 7rem;
    font-size: 16px;
}

body {
    font-size: 16px;
}

body .container .processArea {
    margin-bottom: 50px;
}

body .container .processArea .processDescription {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    background-color: #faf0e6;
    margin-bottom: 50px;
}

body .container .processArea .processDescription .fa-circle-info {
    font-size: 3rem;
}

body .container .processArea .addFurigana {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

body .container .processArea .addFurigana .beforeAddFurigana {
    display: flex;
    gap: 20px;
    border: 3px solid #000;
    border-radius: 20px;
    padding: 10px;
}

body .container .processArea .addFurigana .beforeAddFurigana .PDFGroup,
body .container .processArea .addFurigana .beforeAddFurigana .HTMLGroup,
body .container .processArea .addFurigana .beforeAddFurigana .textGroup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

body .container .processArea .addFurigana .beforeAddFurigana .pdfWord,
body .container .processArea .addFurigana .beforeAddFurigana .HTMLWord,
body .container .processArea .addFurigana .beforeAddFurigana .textWord {
    background-color: darkorange;
    color: #fff;
    border-radius: 5px;
    padding: 3px;
}

body .container .processArea .addFurigana .beforeAddFurigana .fa-file-pdf,
body .container .processArea .addFurigana .beforeAddFurigana .fa-code,
body .container .processArea .addFurigana .beforeAddFurigana .fa-file-lines {
    font-size: 5rem;
}

body .container .processArea .addFurigana .fa-arrow-right {
    font-size: 5rem;
}

body .container .processArea .addFurigana .afterAddFurigana {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border: 3px solid #000;
    border-radius: 20px;
    padding: 10px;
}

body .container .processArea .addFurigana .afterAddFurigana .furiganaWord {
    text-align: center;
    padding: 5px;
    background-color: #333;
    color: #fff;
    border: 1px solid #333;
    border-radius: 10px;
}

body .container .processArea .addFurigana .afterAddFurigana .HTMLAndTextBlock {
    display: flex;
    gap: 20px;
}

body .container .processArea .addFurigana .afterAddFurigana .HTMLAndTextBlock .HTMLGroup,
body .container .processArea .addFurigana .afterAddFurigana .HTMLAndTextBlock .textGroup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

body .container .processArea .addFurigana .afterAddFurigana .HTMLAndTextBlock .HTMLWord,
body .container .processArea .addFurigana .afterAddFurigana .HTMLAndTextBlock .textWord {
    background-color: darkorange;
    color: #fff;
    border-radius: 5px;
    padding: 3px;
}

body .container .processArea .addFurigana .afterAddFurigana .HTMLAndTextBlock .fa-file-pdf,
body .container .processArea .addFurigana .afterAddFurigana .HTMLAndTextBlock .fa-code,
body .container .processArea .addFurigana .afterAddFurigana .HTMLAndTextBlock .fa-file-lines {
    font-size: 5rem;
}

body {
    font-size: 16px;
}

body .selectFileArea {
    position: relative;
    height: 200px;
    padding: 10px;
    background-color: #f5f5f5;
    border: 1px dashed #000;
    border-radius: 10px;
    margin-bottom: 30px;
}

body .selectFileArea .dragAndDragMode {
    display: none;
}

body .selectFileArea .dragAndDragMode.isVisible {
    display: block;
}

body .selectFileArea .dragAndDragMode .inner {
    display: flex;
    align-items: center;
}

body .selectFileArea .dragAndDragMode .furiganaModal .modal-body .furiganaFileType .subheading {
    text-align: center;
    padding: 5px;
    background-color: darkorange;
    color: #fff;
    margin-bottom: 10px;
}

body .selectFileArea .dragAndDragMode .furiganaModal .modal-body .furiganaFileType form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border: 3px solid #000;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

body .selectFileArea .dragAndDragMode .furiganaModal .modal-body .furiganaFileType form .HTMLLabel,
body .selectFileArea .dragAndDragMode .furiganaModal .modal-body .furiganaFileType form .textLabel {
    display: flex;
    align-items: center;
    gap: 5px;
}

body .selectFileArea .dragAndDragMode .furiganaModal .modal-body .furiganaFileType form .fa-code,
body .selectFileArea .dragAndDragMode .furiganaModal .modal-body .furiganaFileType form .fa-file-lines {
    font-size: 3rem;
}

body .selectFileArea .dragAndDragMode .furiganaModal .modal-body .separation .Subsubheading {
    text-align: center;
    background-color: #8fbc8f;
    color: #fff;
    margin-bottom: 10px;
}

body .selectFileArea .dragAndDragMode .furiganaModal .modal-body .separation .selectSeparation {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
}

body .selectFileArea .dragAndDragMode .furiganaModal .modal-body .separation .aboutSeparation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

body .selectFileArea .dragAndDragMode .furiganaModal .modal-body .separation .aboutSeparation .fa-question-circle {
    color: orange;
}

body .selectFileArea .dragAndDragMode .furiganaModal .modal-body .separation .aboutSeparation a {
    color: #0d6efd;
}

body .selectFileArea .dragAndDragMode .furiganaModal .modal-footer .furiganaCancelBtn,
body .selectFileArea .dragAndDragMode .furiganaModal .modal-footer .furiganaSaveBtn {
    font-size: 16px;
}

body .selectFileArea .dragAndDragMode .selectFileBtn {
    font-size: 16px;
    background-color: #f5deb3;
}

body .selectFileArea .pasteMode {
    display: none;
}

body .selectFileArea .pasteMode.isVisible {
    display: flex;
}

body .selectFileArea .pasteMode .inner {
    display: flex;
    align-items: center;
}

body .selectFileArea .pasteMode .inner .submitBtn {
    font-size: 16px;
    position: absolute;
    bottom: -50px;
    right: 0;
}

body {
    font-size: 16px;
}

body .container {
    padding: 20px;
}

body .container .upperArea {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

body .container .upperArea .title {
    margin-right: auto;
    font-size: 3rem;
}

body .container .upperArea .upperAreaMenu {
    display: flex;
    align-self: end;
}

body .container .upperArea .upperAreaMenu .linkBookShelf {
    cursor: pointer;
    color: darkorange;
}

body .container .upperArea .upperAreaMenu .selectLanguage .languageBtn {
    font-size: 16px;
    color: #000;
    border: 1px solid #000;
    background-color: #fff;
}

body .container .upperArea .upperAreaMenu .selectLanguage .languageMenu {
    min-width: 7rem;
    font-size: 16px;
}

body {
    font-size: 16px;
}

body .container .processArea {
    margin-bottom: 50px;
}

body .container .processArea .processDescription {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    background-color: #faf0e6;
    margin-bottom: 50px;
}

body .container .processArea .processDescription .fa-circle-info {
    font-size: 3rem;
}

body .container .processArea .characteRecognition {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

body .container .processArea .characteRecognition .beforeRecognition {
    display: flex;
    gap: 20px;
    border: 3px solid #000;
    border-radius: 20px;
    padding: 10px;
}

body .container .processArea .characteRecognition .beforeRecognition .imagePDFGroup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

body .container .processArea .characteRecognition .beforeRecognition .imagePDFWord {
    background-color: darkorange;
    color: #fff;
    border-radius: 5px;
    padding: 3px;
}

body .container .processArea .characteRecognition .beforeRecognition .imagePDFIcon {
    display: flex;
    align-items: center;
    gap: 10px;
}

body .container .processArea .characteRecognition .beforeRecognition .imagePDFIcon .fa-file-pdf,
body .container .processArea .characteRecognition .beforeRecognition .imagePDFIcon .fa-image {
    font-size: 5rem;
}

body .container .processArea .characteRecognition .beforeRecognition .pdfWord,
body .container .processArea .characteRecognition .beforeRecognition .textWord {
    background-color: darkorange;
    color: #fff;
    border-radius: 5px;
    padding: 3px;
}

body .container .processArea .characteRecognition .beforeRecognition .fa-file-pdf,
body .container .processArea .characteRecognition .beforeRecognition .fa-file-lines {
    font-size: 5rem;
}

body .container .processArea .characteRecognition .fa-arrow-right {
    font-size: 5rem;
}

body .container .processArea .characteRecognition .afterRecognition {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 3px solid #000;
    border-radius: 20px;
    padding: 10px;
}

body .container .processArea .characteRecognition .afterRecognition .textPDFGroup, body .container .processArea .characteRecognition .afterRecognition .EPUBGroup, body .container .processArea .characteRecognition .afterRecognition .HTMLGroup, body .container .processArea .characteRecognition .afterRecognition .textGroup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

body .container .processArea .characteRecognition .afterRecognition .textPDFGroup .textPDFWord, body .container .processArea .characteRecognition .afterRecognition .textPDFGroup .EPUBword, body .container .processArea .characteRecognition .afterRecognition .textPDFGroup .HTMLWord, body .container .processArea .characteRecognition .afterRecognition .textPDFGroup .textWord, body .container .processArea .characteRecognition .afterRecognition .EPUBGroup .textPDFWord, body .container .processArea .characteRecognition .afterRecognition .EPUBGroup .EPUBword, body .container .processArea .characteRecognition .afterRecognition .EPUBGroup .HTMLWord, body .container .processArea .characteRecognition .afterRecognition .EPUBGroup .textWord, body .container .processArea .characteRecognition .afterRecognition .HTMLGroup .textPDFWord, body .container .processArea .characteRecognition .afterRecognition .HTMLGroup .EPUBword, body .container .processArea .characteRecognition .afterRecognition .HTMLGroup .HTMLWord, body .container .processArea .characteRecognition .afterRecognition .HTMLGroup .textWord, body .container .processArea .characteRecognition .afterRecognition .textGroup .textPDFWord, body .container .processArea .characteRecognition .afterRecognition .textGroup .EPUBword, body .container .processArea .characteRecognition .afterRecognition .textGroup .HTMLWord, body .container .processArea .characteRecognition .afterRecognition .textGroup .textWord {
    background-color: darkorange;
    color: #fff;
    border-radius: 5px;
    padding: 3px;
}

body .container .processArea .characteRecognition .afterRecognition .textPDFGroup .textPDFIcon, body .container .processArea .characteRecognition .afterRecognition .EPUBGroup .textPDFIcon, body .container .processArea .characteRecognition .afterRecognition .HTMLGroup .textPDFIcon, body .container .processArea .characteRecognition .afterRecognition .textGroup .textPDFIcon {
    display: flex;
    gap: 10px;
}

body .container .processArea .characteRecognition .afterRecognition .textPDFGroup .textPDFIcon .fa-file-lines, body .container .processArea .characteRecognition .afterRecognition .textPDFGroup .textPDFIcon .fa-file-pdf, body .container .processArea .characteRecognition .afterRecognition .EPUBGroup .textPDFIcon .fa-file-lines, body .container .processArea .characteRecognition .afterRecognition .EPUBGroup .textPDFIcon .fa-file-pdf, body .container .processArea .characteRecognition .afterRecognition .HTMLGroup .textPDFIcon .fa-file-lines, body .container .processArea .characteRecognition .afterRecognition .HTMLGroup .textPDFIcon .fa-file-pdf, body .container .processArea .characteRecognition .afterRecognition .textGroup .textPDFIcon .fa-file-lines, body .container .processArea .characteRecognition .afterRecognition .textGroup .textPDFIcon .fa-file-pdf {
    font-size: 5rem;
}

body .container .processArea .characteRecognition .afterRecognition .textPDFGroup .fa-microphone-slash, body .container .processArea .characteRecognition .afterRecognition .textPDFGroup .fa-code, body .container .processArea .characteRecognition .afterRecognition .textPDFGroup .fa-file-lines, body .container .processArea .characteRecognition .afterRecognition .EPUBGroup .fa-microphone-slash, body .container .processArea .characteRecognition .afterRecognition .EPUBGroup .fa-code, body .container .processArea .characteRecognition .afterRecognition .EPUBGroup .fa-file-lines, body .container .processArea .characteRecognition .afterRecognition .HTMLGroup .fa-microphone-slash, body .container .processArea .characteRecognition .afterRecognition .HTMLGroup .fa-code, body .container .processArea .characteRecognition .afterRecognition .HTMLGroup .fa-file-lines, body .container .processArea .characteRecognition .afterRecognition .textGroup .fa-microphone-slash, body .container .processArea .characteRecognition .afterRecognition .textGroup .fa-code, body .container .processArea .characteRecognition .afterRecognition .textGroup .fa-file-lines {
    font-size: 5rem;
}

body {
    font-size: 16px;
}

body .selectFileArea {
    position: relative;
    padding: 10px;
    height: 200px;
    background-color: #f5f5f5;
    border: 1px dashed #000;
    border-radius: 10px;
    margin-bottom: 30px;
}

body .selectFileArea .dragAndDragMode {
    display: none;
}

body .selectFileArea .dragAndDragMode.isVisible {
    display: block;
}

body .selectFileArea .dragAndDragMode .inner {
    display: flex;
    align-items: center;
}

body .selectFileArea .dragAndDragMode .inner .selectFileBtn {
    font-size: 16px;
    background-color: #f5deb3;
}

body .selectFileArea .recognitionModal .modal-body .recognitionFileType .subheading {
    text-align: center;
    padding: 5px;
    background-color: darkorange;
    color: #fff;
    margin-bottom: 10px;
}

body .selectFileArea .recognitionModal .modal-body .recognitionFileType form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border: 3px solid #000;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

body .selectFileArea .recognitionModal .modal-body .recognitionFileType form .selectRecognitionFile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr); /* 2行を等しい高さで定義 */
    gap: 20px; /* グリッドセル間の隙間を10pxに設定 */
    flex-direction: column;
    align-items: center;
}

body .selectFileArea .recognitionModal .modal-body .recognitionFileType form .selectRecognitionFile .textPDFWordLabel,
body .selectFileArea .recognitionModal .modal-body .recognitionFileType form .selectRecognitionFile .EPUBLabel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

body .selectFileArea .recognitionModal .modal-body .recognitionFileType form .selectRecognitionFile .fa-file-lines,
body .selectFileArea .recognitionModal .modal-body .recognitionFileType form .selectRecognitionFile .fa-file-pdf,
body .selectFileArea .recognitionModal .modal-body .recognitionFileType form .selectRecognitionFile .fa-microphone-slash {
    font-size: 3rem;
}

body .selectFileArea .recognitionModal .modal-body .recognitionFileType form .selectRecognitionFile .HTMLLabel,
body .selectFileArea .recognitionModal .modal-body .recognitionFileType form .selectRecognitionFile .textLabel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

body .selectFileArea .recognitionModal .modal-body .recognitionFileType form .selectRecognitionFile .fa-code,
body .selectFileArea .recognitionModal .modal-body .recognitionFileType form .selectRecognitionFile .fa-file-lines {
    font-size: 3rem;
}

body .selectFileArea .recognitionModal .modal-footer .furiganaCancelBtn,
body .selectFileArea .recognitionModal .modal-footer .furiganaSaveBtn {
    font-size: 16px;
}

@media screen and (max-width: 992px) {
    body .container main .processArea .selsectProcess {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px;
        place-items: center;
    }
}

@media screen and (max-width: 576px) {
    body .container main .processArea .selsectProcess {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
}

@media screen and (max-width: 1919px) {
    body .container-fruid .mainArea .displayBookArea .eachBookList {
        grid-template-columns: repeat(3, 1fr);
    }

    body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook .bookImg {
        width: 15vw;
    }
}

@media screen and (max-width: 1400px) {
    body .container-fruid .mainArea .displayBookArea .eachBookList {
        grid-template-columns: repeat(3, 1fr);
    }

    body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook .bookInfo .bookHeading {
        display: block;
    }

    body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook .bookInfo .bookHeading .pageRange {
        display: inline-block;
        margin: 0 auto;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 992px) {
    body .container-fruid .mainArea .displayBookArea .eachBookList {
        grid-template-columns: repeat(2, 1fr);
    }

    body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook .bookImg {
        width: 20vw;
    }
}

@media screen and (max-width: 768px) {
    body .container-fruid .upperArea .sarch {
        flex-direction: column;
        gap: 0;
    }

    body .container-fruid .upperArea .sarch .sarchBook {
        margin-bottom: 0;
    }

    body .container-fruid .upperArea .sarch .btnBlock {
        margin-bottom: 30px;
    }

    body .container-fruid .mainArea .displayBookArea .eachBookList {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    body .container-fruid .mainArea .displayBookArea .eachBookList {
        grid-template-columns: repeat(2, 1fr);
    }

    body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook {
        flex-direction: column;
    }

    body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook .bookImg {
        flex-grow: 1;
    }

    body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook .bookInfo {
        flex-grow: 1;
    }

    body .container-fruid .mainArea .displayBookArea .eachBookList .eachBook .bookSelectCheck {
        position: static;
        text-align: right;
    }
}

@media screen and (max-width: 768px) {
    body .container-fruid .logIn {
        width: 90vw;
    }

    body .container-fruid .logIn .inputField .idLabel .br-sp {
        display: block;
    }
}

@media screen and (max-width: 576px) {
    body .container-fruid .logIn .inputField .idLabel .br-sp {
        display: block;
    }

    body .container-fruid .logIn .formBottomBlock {
        flex-direction: column;
    }
}

@media screen and (max-width: 992px) {
    body .container .processArea {
        margin-bottom: 20px;
    }

    body .container .processArea .processDescription {
        margin-bottom: 20px;
    }

    body .container .processArea .characteRecognition {
        flex-direction: column;
    }

    body .container .processArea .characteRecognition .fa-arrow-right {
        transform: rotate(90deg);
    }
}

@media screen and (max-width: 768px) {
    body .container .processArea .processDescription {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    body .container .processArea .brailleConversion {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    body .container .processArea .brailleConversion .beforeBrailleConversion .pdfWord,
    body .container .processArea .brailleConversion .beforeBrailleConversion .HTMLWord,
    body .container .processArea .brailleConversion .beforeBrailleConversion .textWord {
        padding: 1px;
    }

    body .container .processArea .brailleConversion .beforeBrailleConversion .brailleIcon {
        font-size: 4rem;
    }

    body .container .processArea .fa-arrow-right {
        font-size: 4rem;
        transform: rotate(90deg);
    }

    body .container .processArea .afterBrailleConversion .HTMLAndTextBlock .brailleWord {
        padding: 1px;
    }

    body .container .processArea .afterBrailleConversion .HTMLAndTextBlock .brailleIcon {
        font-size: 3rem;
    }
}

@media screen and (max-width: 992px) {
    body .container .processArea {
        margin-bottom: 20px;
    }

    body .container .processArea .processDescription {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    body .container .processArea .processDescription {
        flex-direction: column;
    }

    body .container .processArea .addFurigana {
        flex-direction: column;
    }

    body .container .processArea .addFurigana .fa-arrow-right {
        transform: rotate(90deg);
    }
}

@media screen and (max-width: 576px) {
    body .container .processArea .addFurigana {
        gap: 5px;
        flex-direction: column;
    }

    body .container .processArea .addFurigana .beforeAddFurigana .pdfWord,
    body .container .processArea .addFurigana .beforeAddFurigana .HTMLWord,
    body .container .processArea .addFurigana .beforeAddFurigana .textWord {
        padding: 1px;
    }

    body .container .processArea .addFurigana .beforeAddFurigana .fa-file-pdf,
    body .container .processArea .addFurigana .beforeAddFurigana .fa-code,
    body .container .processArea .addFurigana .beforeAddFurigana .fa-file-lines {
        font-size: 4rem;
    }

    body .container .processArea .addFurigana .fa-arrow-right {
        font-size: 4rem;
        transform: rotate(90deg);
    }

    body .container .processArea .addFurigana .afterAddFurigana .HTMLAndTextBlock .HTMLWord,
    body .container .processArea .addFurigana .afterAddFurigana .HTMLAndTextBlock .textWord {
        padding: 1px;
    }

    body .container .processArea .addFurigana .afterAddFurigana .HTMLAndTextBlock .fa-file-pdf,
    body .container .processArea .addFurigana .afterAddFurigana .HTMLAndTextBlock .fa-code,
    body .container .processArea .addFurigana .afterAddFurigana .HTMLAndTextBlock .fa-file-lines {
        font-size: 3rem;
    }
}

@media screen and (max-width: 992px) {
    body .container .processArea {
        margin-bottom: 20px;
    }

    body .container .processArea .processDescription {
        margin-bottom: 20px;
    }

    body .container .processArea .characteRecognition {
        flex-direction: column;
    }

    body .container .processArea .characteRecognition .fa-arrow-right {
        transform: rotate(90deg);
    }
}

@media screen and (max-width: 768px) {
    body .container .processArea .processDescription {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    body .container .processArea .characteRecognition .afterRecognition {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    body .container .selectFileArea .recognitionModal .modal-dialog {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    body .container .selectFileArea .recognitionModal .modal-dialog .modal-content {
        width: min(300px, 90vw);
    }

    body .container .selectFileArea .recognitionModal .modal-dialog .modal-content .modal-body form .selectRecognitionFile {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr); /* 2行を等しい高さで定義 */
    }
}


/* 上記cssを修正し使用（共有Box） */

.supporterShareBoxItem {
    align-items: center;
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.supporterShareBoxItem .editShareBoxBtn {
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #0b449a;
    border-radius: 5px;
    color: #0b449a;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 0px 3px;
    transition: 0.3s;
}

.ShareBoxBtn {
    display: inline-block;
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #0b449a;
    border-radius: 5px;
    color: #0b449a;
    cursor: pointer;
    padding:2px 7px;
    margin: 10px 0px 10px 0px;
    transition: 0.3s;
}

.ShareBoxBtn:hover,
.supporterShareBoxItem .editShareBoxBtn:hover {
    color: #db7093;
    border-color: #db7093;
}

.supporterShareBoxItem .editShareBoxBtn .bi-pencil {
    cursor: pointer;
}


/*上野さん修正分*/
/**
* 共有ボックス（支援対象者・図書の選択）
**/
.tab {
    display: flex;
    justify-content: center;
    flex-direction: row;
    text-align: center;
    background-color: #fff !important;
    margin: 0 !important;
    padding: 0;
    list-style: none;
}

.tab__item {
    flex: 1;
    max-width: 100%;
}

.tab__link {
    display: block;
    text-decoration: none;
    color: #fff;
    background-color: #65c6ba;
    cursor: pointer;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    max-width: 100%;
}

.tab__link.orange {
    background-color: #ff8c00;
}

.tab__link.on {
    background-color: #b1e2dc;
}

.tab__link.orange.on {
    background-color: #ff8c0099;
}

.tab-body__item {
    margin: 5px 30px;
    display: none;
    white-space: nowrap;
}

.tab-body__item.on {
    display: block;
}

.tab-body {
    border: 2px solid #fff;
    width: 97%;
    height: 200px;
    margin: 0 auto;
    overflow: auto;
}

.share_wrapper {
    width: 300px;
    margin: 0 auto;
    padding: 20px 0px;
    border: 2px solid #fff;
}

.inputField {
    display: flex;
    flex-direction: column;
}

.share_check {
    opacity: 0;
    position: absolute;
}

.share_check:focus + span {
    outline: none;
}

.share_check + span {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0.3em 0.3em 0.3em 2em;
    line-height: 1;
    vertical-align: middle;
    cursor: pointer;
}

.share_check + span::before {
    position: absolute;
    top: 0.2em;
    left: 0;
    content: "";
    width: 1.0em;
    height: 1.0em;
    border: 1px solid #999;
    background: #fff;
    line-height: 1;
    vertical-align: middle;
}

.share_check + span::after {
    content: "";
    display: none;
}

.share_check:checked + span::after {
    display: block;
    position: absolute;
    top: 0em;
    left: 0.4em;
    width: 0.4em;
    height: 0.9em;
    content: "";
    border-bottom: 3px solid #00a497;
    border-right: 3px solid #00a497;
    transform: rotate(45deg);
}

.share_check.orange:checked + span::after {
    border-bottom: 3px solid #f08300;
    border-right: 3px solid #f08300;
}

/**
* ログインしてください
**/

.tx-align {
    text-align: center;
}

.lg_wrapper {
    width: 90%;
    display: inline-block;
    padding: 0.5em 1em;
    margin: 0 0 2em;
    color: #5d627b;
    background: white;
    border: solid 2px #ff000099;
    box-shadow: 0px 3px 5px 0px #ff000080;
}

.lg_font_dec {
    display: inline-block;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.lg_a_dec {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: #0000ff;
}

.lg_a_dec:visited {
    color: #0000ff;
}

.lg_a_dec:hover {
    color: #ff0000;
}

/**
* メニュー（ガイド）
**/
.howto_btn {
    display: inline-block;
    width: 300px;
    max-width: 100%;
    padding: 5px 0px;
    background-color: #fef4f4;
    border: 2px solid transparent;
    border-radius: 5px;
    color: #e95295e6;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: .25s;
    text-shadow: 0.2px 0.6px 0px #fef4f4, -0.2px -0.6px 0px #f5b1aa,
    -0.2px 0.6px 0px #f5b1aa, 0.2px -0.6px 0px #fef4f4,
    0.2px 0px 0px #fef4f4, -0.2px 0px 0px #f5b1aa,
    0px 0.6px 0px #fef4f4, 0px -0.6px 0px #fef4f4;
}

.howto_sbt {
    display: inline-block;
    width: 60px;
    max-width: 100%;
    padding: 2px 0px;
    background-color: #e95295e6;
    border: 2px solid transparent;
    border-radius: 5px;
    color: #fef4f4;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: .25s;
    text-shadow: 0.2px 0.6px 0px #fef4f4, -0.2px -0.6px 0px #f5b1aa,
    -0.2px 0.6px 0px #f5b1aa, 0.2px -0.6px 0px #fef4f4,
    0.2px 0px 0px #fef4f4, -0.2px 0px 0px #f5b1aa,
    0px 0.6px 0px #fef4f4, 0px -0.6px 0px #fef4f4;
}

.howto_sbt:visited {
    color: #fef4f4;
}

.howto_sbt:hover {
    background-color: #fef4f4;
    color: #e95295e6;
}

/**
* Web上編集
**/
.FlexTextarea {
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    width: 100%;
    margin: 0 auto;
}

.FlexTextarea__dummy {
    overflow: hidden;
    visibility: hidden;
    box-sizing: border-box;
    padding: 0px 15px;
    min-height: 500px;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
    border: 1px solid;
    margin: 0 auto;
}

.FlexTextarea__textarea {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    padding: 5px 15px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 1px solid #89c3eb;
    border-radius: 4px;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    resize: none;
}

.FlexTextarea__textarea:focus {
    box-shadow: 0 0 0 4px rgba(35, 167, 195, 0.3);
    outline: 0;
}

.web_textarea {
    resize: none;
/**    min-height: 65vh;
    max-height: 65vh;**/
    width: 100%;
    border: 1px solid #89c3eb;
}

.web_textarea:focus {
    box-shadow: 0 0 0 4px rgba(35, 167, 195, 0.3);
    outline: 0;
    border: 0;
}

/** ChattyPad **/
.info_wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.info_text {
    color: #b22222;
    font-family: sans-serif;
    font-weight: bold;
    margin: 0 20px 0 20px;
    text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff,
    -2px 2px 0px #fff, 2px -2px 0px #fff,
    2px 0px 0px #fff, -2px 0px 0px #fff,
    0px 2px 0px #fff, 0px -2px 0px #fff;
}

.overlay_info_pads,
.overlay_info_pada {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(193, 228, 233, 1);
    cursor: pointer;
}

#pad_buttons {
    display: none;
}

.pad_btn {
    font-family: 'ヒラギノ角ゴシック';
    display: inline-block;
    width: 230px;
    max-width: 100%;
    padding: 5px 0px;
    background-color: #f5fcff;
    border: 2px solid transparent;
    border-radius: 5px;
    /*    color: #0f5cd6;*/
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
    transition: .25s;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3px;
}

.pad_sbt {
    font-family: sans-serif;
    display: inline-block;
    width: 100px;
    max-width: 100%;
    padding: 2px 0px;
    background-color: #d3d3d3;
    border: 2px solid transparent;
    border-radius: 5px;
    color: #fef4f4;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: .25s;
}

.pad_sbt:hover {
    background-color: #fffaf0;
    color: #808080;
}

.overlay_info_pads_close,
.overlay_info_pada_close {
    background: #b22222;
    font-family: sans-serif;
    color: #fff;
    border-radius: 10px;
    font-weight: bold;
    border: solid 2px transparent;
    margin-top: 30px;
    padding: 3px 10px 3px;
    outline: none;
    cursor: pointer;
    text-decoration: none;
}

.overlay_info_pads_close:visited,
.overlay_info_pada_close:visited {
    color: #fff;
}

.overlay_info_pads_close:hover,
.overlay_info_pada_close:hover {
    border: solid 2px #b22222;
    background: #fff;
    color: #b22222;
}

.pad_down {
    background: #007bbb;
    font-family: sans-serif;
    color: #fff;
    border-radius: 10px;
    font-weight: bold;
    border: solid 2px transparent;
    margin-top: 30px;
    padding: 3px 10px 3px;
    text-decoration: none;
    cursor: pointer;
}

.pad_down:visited {
    color: #fff;
}

.pad_down:hover {
    border: solid 2px #007bbb;
    background: #fff;
    color: #007bbb;
}

.pad_img {
    display: inline-block;
    margin-right: 5px;
    width: 35px;
    height: auto;
}

.pad_img:hover {
    color: #808080;
}

.soft_name {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    color: #0d0d0d;
}

.soft_name:hover {
    color: #808080;
}

/**
* Factoryユーザーへのメッセージ
**/

.fac_info_wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.fac_info_text{
    color: #000;
    font-family: sans-serif;
    font-weight: bold;
    margin: 0 20px 0 20px;
    text-shadow:
           2px 2px 0px #fff, -2px -2px 0px #fff,
          -2px 2px 0px #fff,  2px -2px 0px #fff,
           2px 0px 0px #fff, -2px  0px 0px #fff,
           0px 2px 0px #fff,  0px -2px 0px #fff;
}

.fac_overlay_info{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(193,228,233,1);
    cursor: pointer;
}

.fac_overlay_close{
    background: #b22222;
    font-family: sans-serif;
    color: #fff;
    border-radius: 10px;
    font-weight: bold;
    border: solid 2px transparent;
    margin-top: 20px;
    padding: 3px 10px 3px;
    outline: none;
    cursor: pointer;
}

.fac_overlay_close:hover{
    border: solid 2px #b22222;
    background: #fff;
    color: #b22222;
}

.factory_img{
    width: 1200px;
    height: auto;
    max-width: 100%;
}

.factory_btn{
    background: #b22222;
    font-family: sans-serif;
    color: #fff;
    font-weight: bold;
    border: solid 2px transparent;
    padding: 3px 10px 3px;
    outline: none;
    cursor: pointer;
}

.factory_btn:hover{
    border: solid 2px #b22222;
    background: #fff;
    color: #b22222;
}

/* ヘルプボタン */
.cl-tooltip {
    position: relative;
    cursor: pointer;
    background-color: transparent;
    outline: none;
    border: none;
    box-shadow: none;
    z-index: calc(infinity);
}

.tooltip-text {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  display: inline-block;
  padding: 5px;
  white-space: nowrap;
  font-size: 1.2rem;
  line-height: 1.3;
  background: #ffc107;
  color: #3770cb;
  border-radius: 3px;
  transition: 0.3s ease-in;
  font-weight: 700;
}

.cl-tooltip:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}

.tooltip-img{
    display: inline-block;
    width: 35px;
    height: auto;
}

/* 共有Boxに共有対象者追加 */

.addIDshare{
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background-color: #0b9685;
    border-radius: 5px;
    padding: 5px;
    transition: 0.5s;
    border: 2px solid #fff;
    transition: 0.2s;
    cursor: pointer;
}

.addIDshare:hover{
    background-color: #65c6ba;
    color: #fff;
}

.share_icon{
    font-size: 16px;
    color: #0b449a;
    margin-right: 5px;
}

/* 共有Boxアコーディオン */
.cb_accordion {
    border: 2px solid #0f5cd6;
    border-bottom: 0;
    margin-bottom: 10px;
}

.cb_accordion .el_heading {
    display: block;
    margin: 0;
    padding: 5px;
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid #0f5cd6;
    background: #0b449a;
    position: relative;
    text-align: center;
    cursor: pointer;
}

.cb_accordion .el_heading::after{
    background: #f5fcff;
    box-sizing: border-box;
    content: '開く　';
    color: #0b449a;
    display: block;
    font-weight: 900;
    height: 52px;
    padding: 5px 20px;
    position: absolute;
    height: 100%;
    right: 0px;
    top: 0px;
}

.cb_accordion .bl_content {
    padding: 0 1em;
    border-bottom: 2px solid #0f5cd6;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease-out 0s;
}

.cb_accordion .el_checkbox {
    display: none;
}

.cb_accordion .el_checkbox:checked + .el_heading::after{
    content: '閉じる';
}

.cb_accordion .el_checkbox:checked + .el_heading + .bl_content {
    max-height: 100%;
    transition: max-height 0.2s ease-in;
    overflow: auto;
}

/*.cb_mybox{
    display: inline-block;
    margin: 10px 0 10px 45px;
    text-decoration: none;
}*/

.cb_share{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.cb_share_space{
    display: inline-block;
    margin-bottom: 5px;
}

.m_right_20{
    margin-right: 20px;
}

.a_decoration{
    color: #1e90ff;
}

.a_decoration:visited{
    color: #1e90ff;
}

.a_decoration:hover{
    color: #f8747d;
}

@media (min-width: 768px) {
    #pad_buttons {
        display: block;
    }
}
