.manual .manual-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.manual .titleset {
    width: 100%;
    border-bottom: 2px solid #F2F5F7;
    position: relative;
    font-size: 24px;
}

.manual .titleset::after {
    position: absolute;
    display: block;
    content: "";
    bottom: -2px;
    left: 0;
    height: 2px;
    background: #D90429;
    width: 20%;
}

.manual .titleset h3 {
    color: #2B2D42;
    font-size: 1.5em;
    margin-bottom: 0;
    padding: 0.5em 0;
    text-align: left;
}

.manual .manual-box .list-box {
    width: 48%;
    font-size: 16px;
    margin-bottom: 5em;
}

.manual .manual-box .list-box:nth-child(odd) {
    margin-left: 2%;
}

.manual .manual-box .list-box:nth-child(even) {
    margin-right: 2%;
}

.manual .manual-box .list-box .title {
    background: #F3F5F8;
    border-left: 5px solid #D90429;
    font-size: 16px;
    padding: 0.5em;
}

.manual .manual-box .list-box .text {
    margin: 1em 0;
}

.manual .manual-box .list-box .link-list li {
    color: #036EB8;
    border-top: 1px solid #F3F5F8;
    margin: 0;
}

.manual .manual-box .list-box .link-list li a {
    display: block;
    padding: 0.8em 0;
}

.manual .manual-box .list-box .link-list li:last-child {
    text-align: right;
}

.manual .exercise-box ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.manual .exercise-box ul li {
    width: 30%;
    transition: all 0.5s 0s ease;
}

.manual .exercise-box ul li:hover {
    transform: scale(1.05);
}

.manual .exercise-box a {
    display: block;
    width: 100%;
    padding: 1em;
    border: 1px solid #7c7c7c;
}

.manual .exercise-box ul li:hover a {
    border: 1px solid #D90429;
}

.manual .exercise-box p:nth-child(1) {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 1em;
}

.manual .exercise-box p:nth-child(2) {
    text-align: center;
}

.manual .exercise-box p:nth-child(3) {
    margin-top: 1em;
}

@media screen and (max-width:767px) {
    .manual .manual-box {
        display: block;
        padding: 0;
        margin-bottom: 0 !important;
        padding-bottom: 1em;
    }

    .manual .manual-box .list-box {
        width: 98%;
        font-size: 14px;
    }

    .manual .manual-box .list-box:nth-child(odd),
    .manual .manual-box .list-box:nth-child(even) {
        margin-right: auto;
        margin-left: auto;
        margin-bottom: auto;
    }

    .manual .manual-box .list-box .title {
        padding: 1em;
        position: relative;
        padding-right: 3em;
        border-top: 1px solid #707070;
        font-size: 0.9em;
        margin-bottom: 0;
    }

    .manual .manual-box .list-box .title::after {
        position: absolute;
        top: 50%;
        margin: auto;
        content: "";
        vertical-align: middle;
        width: 10px;
        height: 10px;
        border-top: 3px solid #707070;
        border-right: 3px solid #707070;
        -webkit-transform: rotate(135deg) translate(-100%, -40%);
        transform: rotate(135deg) translate(-100%, -40%);
        right: 8%;
        transition: all 0.5s 0s ease;
    }

    .manual .manual-box .list-box .title.active::after {
        -webkit-transform: rotate(135deg) translate(-100%, -40%) scale(-1, -1);
        transform: rotate(135deg) translate(-100%, -40%) scale(-1, -1);
    }

    .manual .manual-box .list-box .text {
        padding: 0 1em;
        display: none;
    }

    .manual .manual-box .list-box .link-list {
        display: none;
    }

    .manual .manual-box .list-box .link-list li {
        padding: 0.5em 1em;
        font-size: 0.9em;
    }

    .manual .manual-box .list-box .link-list li a {
        position: relative;
        padding-right: 2em;
    }

    .manual .manual-box .list-box .link-list li a::after {
        position: absolute;
        top: 50%;
        margin: auto;
        content: "";
        vertical-align: middle;
        width: 10px;
        height: 10px;
        border-top: 2px solid #036EB8;
        border-right: 2px solid #036EB8;
        -webkit-transform: rotate(45deg) translate(-50%, -40%);
        transform: rotate(45deg) translate(-50%, -40%);
        right: 3%;
    }

    .manual .manual-box .list-box .link-list li:last-child {
        text-align: left;
    }

    .manual .exercise-box ul {
        display: block;
    }

    .manual .exercise-box ul li {
        width: 80%;
        margin: 1em auto;
    }

    .manual .titleset {
        width: 98%;
        margin: 5% auto;
    }
}


/***********
共通部分
************/

.manual .warp {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.manual .backred {
    background: #D91729;
    text-align: center;
    font-size: 24px;
    color: #fff;
    padding: 0.5em;
}


/**目次**/

.manual .warp .mokuji {
    background: #F3F5F8;
    border: 1px solid #EEEEEE;
    max-width: 450px;
    padding: 1em;
    margin-bottom: 4em;
}

.manual .warp .mokuji .title {
    border-bottom: 1px solid #EEEEEE;
    padding-bottom: 1em;
}

.manual .warp .mokuji .list {
    margin-top: 1em;
    counter-reset: item;
}

.manual .warp .mokuji .list>li {
    padding: 0.5em;
    font-size: 14px;
    color: #036EB8;
}

.manual .warp .mokuji .list>li>ul {
    margin-left: 1em;
}

.manual .warp .mokuji .list>li:before {
    counter-increment: item;
    content: counter(item)'.';
    font-weight: bold;
    color: #036EB8;
    display: inline-block;
}


/**メイン**/

.manual .main-box {
    max-width: 1200px;
    padding-left: 1em;
    margin-left: 1em;
    position: relative;
    counter-reset: set;
}

.manual .main-box::before {
    content: "";
    display: block;
    position: absolute;
    top: 20px;
    left: 0;
    width: 1px;
    height: calc(100% - 20px);
    background: #D90429;
}

.manual .big-title {
    text-align: center;
}

.manual .big-title .title {
    padding: 0.3em 0.8em;
    border-bottom: 3px solid #D90429;
    display: inline-block;
    font-size: 2em;
}

.manual .big-title p {
    margin-top: -1em;
    margin-bottom: 1em;
}

.manual .main-box .content-box {
    margin-bottom: 5em;
}

.manual .main-box .content-box .content-title .title {
    position: relative;
    padding-left: 0.5em;
    color: #2B2D42;
    font-size: 1.5em;
    margin-bottom: 0;
    padding: 0.5em 0;
    padding-left: 0.5em;
    text-align: left;
}

.manual .main-box .content-box .content-title .title:before {
    counter-increment: set;
    content: counter(set);
    font-weight: bold;
    color: #fff;
    padding: 0.5em;
    background: #D90429;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 12px;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    text-align: center;
    transform: translate(-100%, -50%);
}

.manual .main-box .text .step {
    border: 1px solid #707070;
    color: #707070;
    padding: 0.5em 1em;
    margin-right: 1em;
}

.manual .main-box .text .btn a {
    text-align: center;
}

.manual .main-box .text .btn a::after {
    display: none;
}

.manual .btn_back {
    text-align: center;
    max-width: 580px;
    width: 80%;
    text-align: center;
    margin: 1em auto;
}

.manual .btn_back .btn a {
    display: block;
    padding: 1em;
    background: #707070;
    color: #FFFFFF;
    transition: all 0.5s 0s ease;
}

.manual .btn_back .btn a:hover {
    background: #474747;
}

.manual .arrowset-up {
    fill: #5BA425 !important;
    vertical-align: text-bottom;
    width: 18px;
}

.manual .arrowset-down {
    fill: #d91729 !important;
    transform: rotate(180deg);
    vertical-align: text-bottom;
    width: 18px;
}

.manual .main-box .text table {
    width: 100%;
}

.manual .main-box .text table th {
    background: #F2F5F7;
    white-space: nowrap
}

.manual .main-box .text table th,
.manual .main-box .text table td {
    border: 1px solid #E8E8E8;
    padding: 0.5em;
    text-align: center;
    font-size: 16px;
}

.manual .main-box .img img {
    cursor: pointer
}

@media screen and (max-width:767px) {
    .manual .main-box {
        margin-left: 2em;
        padding: 0;
    }

    .manual .main-box .box {
        padding: 2em 0;
        margin: 0;
    }

    .manual .main-box .text {
        margin: 2em 0;
    }

    .manual .main-box .text .step {
        padding: 0 1em;
    }

    .manual .main-box .text .step::after {
        content: "\A";
        white-space: pre;
    }

    .manual .main-box .img img {
        filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
    }

    .manual .big-title .title {
        font-size: 1.8em;
    }

    .manual .backred {
        font-size: 14px;
    }
}

.manual .img-modal {
    display: none;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.manual .img-modal.active {
    display: block;
}

.manual .img-modal .box {
    max-width: 1000px;
    width: 90%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.manual .img-modal .box img {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 10px;
}

.content-box table {
    width: 100%;
}

.content-box table th,
.content-box table td {
    border: 1px solid #E8E8E8;
    text-align: center;
    vertical-align: middle;
    padding: 0.5em;
}

.content-box table th {
    background: #F2F5F7;
}

.status-on {
    background-color: #5ba425;
    border: none;
    border-radius: 50%;
    display: inline-block;
    height: 15px;
    width: 15px;
}

.status-out {
    display: block;
    position: relative;
    width: 15px;
    height: 15px;
    margin: auto;
}

.status-out::before,
.status-out::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 20px;
    background: #D90429;
}

.status-out::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.status-out::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.status-none {
    display: inline-block;
    background-color: #2B2D42;
    border: none;
    height: 3px;
    width: 15px;
}

/**追加ページ分 共通**/
.mainbox {
    width: 100%;
    display: flex;
}

.mainbox .img {
    width: 50%;
}

.mainbox .text {
    width: 50%;
    padding: 5em 1em;
    max-width: 520px;
}

.sabbox .title {
    width: fit-content;
    margin: 5em auto 1em;
}

.sabbox h2 {
    padding: 0.3em 0.8em;
    border-bottom: 3px solid #D90429;
    display: inline-block;
    font-size: 2.3em;
    text-align: center;
}

.sabbox .subtitle {
    color: #2B2D42;
    font-size: 1.5em;
    margin: 1em auto;
    padding: 0.5em 0;
    text-align: left;
    width: 100%;
}

.sabbox .subtitle {
    border-bottom: 2px solid #F2F5F7;
    position: relative;
}

.sabbox .subtitle::after {
    position: absolute;
    display: block;
    content: "";
    bottom: -2px;
    left: 0;
    height: 2px;
    background: #D90429;
    width: 20%;
}

.contentbox {
    display: flex;
    align-items: stretch;
    max-width: 1000px;
    margin: auto;
    margin: 3em auto 0;
}

.contentbox li:nth-child(1) {
    margin-bottom: 0;
}

.contentbox li:nth-child(1),
.contentbox li:nth-child(3) {
    width: 45%;
}

.contentbox li:nth-child(2) {
    width: 8%;
    margin: 1%;
}

.arrow {
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
    height: 100%;
}

.arrow::before,
.arrow::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.arrow::before {
    left: 8px;
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    border: 24px solid transparent;
    border-left: 24px solid #707070;
}

.arrow::after {
    left: -12px;
    width: 20px;
    height: 24px;
    border-left: 20px solid #707070;
}

.contentbox li {
    padding: 2em;
    border-radius: 10px;
    position: relative;
}

.contentbox li:nth-child(1) {
    border: 1px solid #707070;
}

.contentbox li:nth-child(1)::before,
.contentbox li:nth-child(3)::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    text-align: center;
    color: #fff;
    padding: 0.5em 3em;
    width: 80%;
    border-radius: 10px;
    font-size: 18px;
}

.contentbox li:nth-child(1)::before {
    content: "導入前";
    background: #707070;
}

.contentbox li:nth-child(3)::before {
    content: "導入後";
    background: #ED575E;
}


.contentbox li:nth-child(3) {
    border: 1px solid #ED575E;
}

.contentbox .btn,
.changebox .btn {
    border: 1px solid #707070;
}

.changebox .btn {
    width: fit-content;
    min-width: 350px;
}

.contentbox .btn a,
.changebox .btn a {
    display: block;
    width: 100%;
    padding: 0.5em 1em;
    color: #2F59C3;
    text-decoration: underline;
    display: flex;
    align-items: center
}

.contentbox .btn a .connection,
.changebox .btn a .connection {
    background: #707070;
    margin-right: 1em;
    color: #fff;
    padding: 0.5em;
    text-decoration: none;
    width: 60px;
    text-align: center;
}

.changebox {
    max-width: 10000px;
    margin: auto;
}

.changebox .textbox {
    width: calc(100% - 300px);
    padding: 1em;
}

.changebox .imgbox {
    width: 300px;
}

.changebox .pointbox {
    display: flex;
    align-items: center;
    margin-bottom: 2em;
}

.changebox .point {
    background: #707070;
    color: #fff;
    text-align: center;
    padding: 1em;
    line-height: 1.0;
    border-radius: 50%;
    margin-right: 1em;
}

.changebox .point span {
    font-size: 1.5em;
}

.changebox .pointbox .text {
    font-size: 24px;
    font-weight: bold;
}


@media screen and (max-width:767px) {
    .mainbox {
        display: block;
    }

    .website-production .mainbox .img {
        width: 100%;
        height: 250px;
    }

    .mainbox .text {
        width: 100%;
    }

    .contentbox {
        display: block;
    }

    .contentbox li:nth-child(1),
    .contentbox li:nth-child(2),
    .contentbox li:nth-child(3) {
        width: 100%;
    }

    .arrow {
        position: relative;
        margin: 1em auto 3em;
    }

    .arrow::before {
        left: -100%;
        top: 100%;
        bottom: initial;
        transform: rotate(90deg);
    }

    .arrow::after {
        left: -2px;
    }

    .contentbox li:nth-child(2) {
        text-align: center;
    }

    .changebox>div {
        display: block;
    }

    .changebox .textbox {
        width: 100%;
    }

    .changebox .imgbox {
        width: 100%;
    }

    .changebox .imgbox img {
        width: 100%;
        max-height: 250px;
        object-fit: cover;
    }

    .changebox>div:last-child img {
        object-position: 0 0;
    }

    .changebox .btn {
        min-width: inherit;
        width: 100%;
    }

    .sabbox h2 {
        font-size: 1.7em;
        padding: 0.3em 0.1em;
    }
}


/**追加ページ分 個別**/
.website-production .mainbox .img {
    background: url(../manual/website-production/img/01.png) center center no-repeat;
    background-size: cover;

}

.business-firm .mainbox .img {
    background: url(../manual/business-firm/img/01.png) center center no-repeat;
    background-size: cover;

}

.media-management .mainbox .img {
    background: url(../manual/media-management/img/01.png) center center no-repeat;
    background-size: cover;

}


@media screen and (max-width: 768px) {
    .sptitle {
        background: linear-gradient(transparent 70%, #DEE1E2 70%);
    }

    .text-bg::after {
        display: none;
    }
}

.lp-circle {
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background: #5BA425;
    display: block;
    margin: auto;
}

.lp-batten {
    display: block;
    position: relative;
}

.lp-batten::before,
.lp-batten::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1em;
    height: 0.2em;
    background: #333;
    background: #d91729;
}

.lp-batten::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.lp-batten::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.lp-bar {
    width: 1em;
    height: 0.2em;
    margin: auto;
    background: #000;
    display: block;
}

.dayup::after,
.daydown::after {
    display: inline-block;
    margin-left: 0.5em;
}

.dayup::after {
    content: "\025b2";
    color: #5BA425 !important;
}

.daydown::after {
    content: "\025bc";
    color: #d91729 !important;
}

/**検索ボックス**/
.searchbox>div {
    width: 100%;
}

.gsc-search-button-v2 {
    padding: 10px 30px !important;
}