@charset "UTF-8";

/* modal */
.modal {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
}

.modal .inner {
    background-color: #fff;
    width: 950px;
    margin: 0 auto;
    border-radius: 5px;
}

.modal-btn-close {
    position: absolute;
    top: -65px;
    right: -10px;
    background-color: #ed582d;
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-btn-close:hover {
    background-color: #fff;
}

.modal-btn-close::before,
.modal-btn-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 30px;
    background-color: #fff;
    transition: all 0.3s;
}

.modal-btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal-btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-btn-close:hover:before,
.modal-btn-close:hover:after {
    background-color: #ed582d;
}

.modal-box {
    display: flex;
    justify-content: space-between;
    padding: 40px;
}

.modal-box-txt-area {
    width: 320px;
}

.modal-box-head {
    font-size: 22px;
    font-weight: bold;
    color: #ed582d;
}

.modal-box-txt {
    margin-top: 25px;
    line-height: 1.7;
}

.modal-box-notes {
    margin-top: 20px;
    font-size: 12px;
}

.modal-box-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 136px;
    height: 35px;
    margin: 25px auto 0;
    border: 2px solid #ed582d;
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
}

.modal-box-btn:hover {
    background-color: #ed582d;
}

.modal-box-btn-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #ed582d;
    transition: all 0.3s;
}

.modal-box-btn:hover .modal-box-btn-inner {
    color: #fff;
}

.modal-box-btn-icon {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.modal-box-btn-icon::before,
.modal-box-btn-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 15px;
    background-color: #ed582d;
    transition: all 0.3s;
}

.modal-box-btn:hover .modal-box-btn-icon::before,
.modal-box-btn:hover .modal-box-btn-icon::after {
    background-color: #fff;
}

.modal-box-btn-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal-box-btn-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-box-img {
    width: 500px;
}

@media (max-width: 1100px) {
    .modal .inner {
        width: calc(950vw / 1100 * 100);
        border-radius: calc(5vw / 1100 * 100);
    }

    .modal-btn-close {
        top: calc(-65vw / 1100 * 100);
        right: calc(-10vw / 1100 * 100);
        width: calc(48vw / 1100 * 100);
        height: calc(48vw / 1100 * 100);
    }

    .modal-btn-close::before,
    .modal-btn-close::after {
        width: calc(3vw / 1100 * 100);
        height: calc(30vw / 1100 * 100);
    }

    .modal-box {
        padding: calc(40vw / 1100 * 100);
    }

    .modal-box-txt-area {
        width: calc(320vw / 1100 * 100);
    }

    .modal-box-head {
        font-size: calc(22vw / 1100 * 100);
    }

    .modal-box-txt {
        margin-top: calc(25vw / 1100 * 100);
    }

    .modal-box-notes {
        margin-top: calc(20vw / 1100 * 100);
        font-size: calc(12vw / 1100 * 100);
    }

    .modal-box-btn {
        width: calc(136vw / 1100 * 100);
        height: calc(35vw / 1100 * 100);
        margin: calc(25vw / 1100 * 100) auto 0;
        border: calc(2vw / 1100 * 100) solid #ed582d;
        border-radius: calc(5vw / 1100 * 100);
    }

    .modal-box-btn-icon {
        width: calc(20vw / 1100 * 100);
        height: calc(20vw / 1100 * 100);
        margin-left: calc(10vw / 1100 * 100);
    }

    .modal-box-btn-icon::before,
    .modal-box-btn-icon::after {
        width: calc(2vw / 1100 * 100);
        height: calc(15vw / 1100 * 100);
    }

    .modal-box-img {
        width: calc(500vw / 1100 * 100);
    }
}

@media (max-width: 750px) {
    .modal .inner {
        width: calc(660vw / 750 * 100);
        border-radius: calc(5vw / 750 * 100);
    }

    .modal-btn-close {
        top: calc(-75vw / 750 * 100);
        right: calc(-10vw / 750 * 100);
        width: calc(60vw / 750 * 100);
        height: calc(60vw / 750 * 100);
    }

    .modal-btn-close::before,
    .modal-btn-close::after {
        top: 50%;
        left: 50%;
        width: calc(3vw / 750 * 100);
        height: calc(30vw / 750 * 100);
    }

    .modal-box {
        position: relative;
        display: block;
        width: calc(568vw / 750 * 100);
        margin: 0 auto;
        padding: calc(60vw / 750 * 100) 0;
    }

    .modal-box-txt-area {
        width: 100%;
    }

    .modal-box-head {
        margin-bottom: calc(430vw / 750 * 100);
        font-size: calc(38vw / 750 * 100);
    }

    .modal-box-txt {
        margin-top: calc(25vw / 750 * 100);
        font-size: calc(27vw / 750 * 100);
    }

    .modal-box-notes {
        margin-top: calc(20vw / 750 * 100);
        font-size: calc(20vw / 750 * 100);
    }

    .modal-box-btn {
        width: calc(346vw / 750 * 100);
        height: calc(95vw / 750 * 100);
        margin: calc(30vw / 750 * 100) auto 0;
        border: calc(2vw / 750 * 100) solid #ed582d;
        border-radius: calc(5vw / 750 * 100);
    }

    .modal-box-btn-icon {
        width: calc(20vw / 750 * 100);
        height: calc(20vw / 750 * 100);
        margin-left: calc(30vw / 750 * 100);
    }

    .modal-box-btn-icon::before,
    .modal-box-btn-icon::after {
        width: calc(2vw / 750 * 100);
        height: calc(30vw / 750 * 100);
    }

    .modal-box-img {
        position: absolute;
        top: calc(140vw / 750 * 100);
        left: 0;
        right: 0;
        width: 100%;
    }
}

/* about */
.about {
    padding: 85px 0 0;
    text-align: center;
}

.about .inner {
    width: 880px;
}

.about-box-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 830px;
    margin: 70px auto 0;
}

.about-box {
    width: 260px;
    margin-bottom: 65px;
}

.scroll-anime-start .about-box:nth-child(1) {
    animation: fade-in-bottom 0.5s 0.5s forwards;
}

.scroll-anime-start .about-box:nth-child(2) {
    animation: fade-in-bottom 0.5s 0.7s forwards;
}

.scroll-anime-start .about-box:nth-child(3) {
    animation: fade-in-bottom 0.5s 0.9s forwards;
}

.scroll-anime-start .about-box:nth-child(4) {
    animation: fade-in-bottom 0.5s 1.1s forwards;
}

.scroll-anime-start .about-box:nth-child(5) {
    animation: fade-in-bottom 0.5s 1.3s forwards;
}

.scroll-anime-start .about-box:nth-child(6) {
    animation: fade-in-bottom 0.5s 1.5s forwards;
}

.about-box-img-area {
    position: relative;
    width: 168px;
    margin: 0 auto;
    cursor: pointer;
}

.about-box-img {
    transition: all 0.3s;
}

.about-box:hover .about-box-img {
    opacity: 0.7;
}

.about-box-img-loupe {
    position: absolute;
    top: -23px;
    right: -6px;
    width: 48px;
    cursor: pointer;
}

.about-box-img-loupe-txt {
    font-weight: bold;
    color: #ed582d;
}

.about-box-img-loupe-icon {
    margin-top: 5px;
    transition: all 0.3s;
}

.about-box:hover .about-box-img-loupe-icon {
    transform: scale(1.15);
}

.about-box-txt-area {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 20px;
}

.about-box-head {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}

.about-box:nth-child(n+4) .about-box-head {
    height: 50px;
}

.about-box-txt {
    margin-top: 20px;
    text-align: left;
    line-height: 1.7;
}

.about-details-list {
    margin: 50px auto 130px;
}

.about-details-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.about-details-box+.about-details-box {
    margin-top: 90px;
}

.about-details-box:nth-child(even) {
    flex-direction: row-reverse;
}

.about-details-box-txt-area {
    width: 435px;
}

.about-details-box-head {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #ed582d;
}

.about-details-box-txt {
    line-height: 1.7;
}

.about-details-box-txt+.about-details-box-txt {
    margin-top: 10px;
}

.about-details-box-notes {
    margin-top: 10px;
    font-size: 12px;
}

.about-details-box-img {
    width: 302px;
    margin: 0 40px;
}

.about-details-box:nth-child(2) .about-details-box-img {
    width: 290px;
    margin: 40px 50px 0;
}

.about-details-box:nth-child(3) .about-details-box-img {
    width: 220px;
    margin: 0 80px;
}

.about-example {
    background-color: #fff8f3;
    padding: 60px 0;
    text-align: left;
}

.about-example-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-example-box-img {
    width: 300px;
}

.about-example-box-txt-area {
    width: 510px;
}

.about-example-box-head {
    font-size: 24px;
    font-weight: bold;
}

.about-example-box-name {
    margin-top: 10px;
    font-weight: bold;
}

.about-example-box-txt {
    margin-top: 25px;
    line-height: 1.7;
}

.about-example-link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
}

.about-example-link::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    transform: rotate(45deg);
}

.about-example-btn {
    width: 250px;
    margin: 55px auto 0;
}

@media (max-width: 1100px) {
    .about {
        padding: calc(85vw / 1100 * 100) 0 0;
    }

    .about .inner {
        width: calc(880vw / 1100 * 100);
    }

    .about-box-list {
        width: calc(830vw / 1100 * 100);
        margin: calc(70vw / 1100 * 100) auto 0;
    }

    .about-box {
        width: calc(260vw / 1100 * 100);
        margin-bottom: calc(65vw / 1100 * 100);
    }

    .about-box-img-area {
        width: calc(168vw / 1100 * 100);
    }

    .about-box-img-loupe {
        top: calc(-23vw / 1100 * 100);
        right: calc(-6vw / 1100 * 100);
        width: calc(48vw / 1100 * 100);
    }

    .about-box-img-loupe-icon {
        margin-top: calc(5vw / 1100 * 100);
    }

    .about-box-txt-area {
        margin-top: calc(20vw / 1100 * 100);
    }

    .about-box-head {
        font-size: calc(20vw / 1100 * 100);
    }

    .about-box:nth-child(n+4) .about-box-head {
        height: calc(50vw / 1100 * 100);
    }

    .about-box-txt {
        margin-top: calc(20vw / 1100 * 100);
    }

    .about-details-list {
        margin: calc(50vw / 1100 * 100) auto calc(130vw / 1100 * 100);
    }

    .about-details-box+.about-details-box {
        margin-top: calc(90vw / 1100 * 100);
    }

    .about-details-box-txt-area {
        width: calc(435vw / 1100 * 100);
    }

    .about-details-box-head {
        margin-bottom: calc(20vw / 1100 * 100);
        font-size: calc(24vw / 1100 * 100);
    }

    .about-details-box-txt+.about-details-box-txt {
        margin-top: calc(10vw / 1100 * 100);
    }

    .about-details-box-notes {
        margin-top: calc(10vw / 1100 * 100);
        font-size: calc(12vw / 1100 * 100);
    }

    .about-details-box-img {
        width: calc(302vw / 1100 * 100);
        margin: 0 calc(40vw / 1100 * 100);
    }

    .about-details-box:nth-child(2) .about-details-box-img {
        width: calc(290vw / 1100 * 100);
        margin: calc(40vw / 1100 * 100) calc(50vw / 1100 * 100) 0;
    }

    .about-details-box:nth-child(3) .about-details-box-img {
        width: calc(220vw / 1100 * 100);
        margin: 0 calc(80vw / 1100 * 100);
    }

    .about-example {
        padding: calc(60vw / 1100 * 100) 0;
    }

    .about-example-box-img {
        width: calc(300vw / 1100 * 100);
    }

    .about-example-box-txt-area {
        width: calc(510vw / 1100 * 100);
    }

    .about-example-box-head {
        font-size: calc(24vw / 1100 * 100);
    }

    .about-example-box-name {
        margin-top: calc(10vw / 1100 * 100);
    }

    .about-example-box-txt {
        margin-top: calc(25vw / 1100 * 100);
    }

    .about-example-link {
        margin-top: calc(20vw / 1100 * 100);
    }

    .about-example-link::after {
        width: calc(10vw / 1100 * 100);
        height: calc(10vw / 1100 * 100);
        margin-left: calc(10vw / 1100 * 100);
        border-top: calc(1vw / 1100 * 100) solid #333333;
        border-right: calc(1vw / 1100 * 100) solid #333333;
    }

    .about-example-btn {
        width: calc(250vw / 1100 * 100);
        margin: calc(55vw / 1100 * 100) auto 0;
    }
}

@media (max-width: 750px) {
    .about {
        padding: calc(110vw / 750 * 100) 0 0;
    }

    .about .inner {
        width: calc(660vw / 750 * 100);
    }

    .about-box-list {
        display: block;
        width: 100%;
        margin: calc(85vw / 750 * 100) auto 0;
    }

    .about-box {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin-bottom: calc(40vw / 750 * 100);
    }

    .about-box-img-area {
        width: calc(200vw / 750 * 100);
        margin: calc(35vw / 750 * 100) 0 0;
    }

    .about-box-img-loupe {
        top: calc(-26vw / 750 * 100);
        right: calc(4vw / 750 * 100);
        width: calc(53vw / 750 * 100);
    }

    .about-box-img-loupe-txt {
        font-size: calc(16vw / 750 * 100);
    }

    .about-box-img-loupe-icon {
        margin-top: calc(5vw / 750 * 100);
    }

    .about-box-txt-area {
        display: flex;
        width: calc(430vw / 750 * 100);
        margin-top: calc(20vw / 750 * 100);
    }

    .about-box-head {
        display: block;
        font-size: calc(36vw / 750 * 100);
        text-align: left;
    }

    .about-box:nth-child(n+4) .about-box-head {
        height: auto;
    }

    .about-box-txt {
        margin-top: calc(10vw / 750 * 100);
        font-size: calc(28vw / 750 * 100);
    }

    .about-details-list {
        margin: calc(120vw / 750 * 100) auto calc(130vw / 750 * 100);
    }

    .about-details-box {
        display: block;
    }

    .about-details-box+.about-details-box {
        margin-top: calc(75vw / 750 * 100);
    }

    .about-details-box-txt-area {
        width: 100%;
    }

    .about-details-box-head {
        margin-bottom: calc(330vw / 750 * 100);
        font-size: calc(36vw / 750 * 100);
        text-align: center;
    }

    .about-details-box:nth-child(2) .about-details-box-head {
        margin-bottom: calc(360vw / 750 * 100);
    }

    .about-details-box:nth-child(3) .about-details-box-head {
        margin-bottom: calc(280vw / 750 * 100);
    }

    .about-details-box-txt {
        font-size: calc(29vw / 750 * 100);
    }

    .about-details-box-txt+.about-details-box-txt {
        margin-top: calc(10vw / 750 * 100);
    }

    .about-details-box-notes {
        margin-top: calc(20vw / 750 * 100);
        font-size: calc(20vw / 750 * 100);
    }

    .about-details-box-img {
        position: absolute;
        top: calc(137vw / 750 * 100);
        left: 0;
        right: 0;
        width: calc(500vw / 750 * 100);
        margin: 0 auto;
    }

    .about-details-box:nth-child(2) .about-details-box-img {
        width: calc(500vw / 750 * 100);
        margin: 0 auto;
    }

    .about-details-box:nth-child(3) .about-details-box-img {
        width: calc(500vw / 750 * 100);
        margin: 0 auto;
    }

    .about-example {
        padding: calc(90vw / 750 * 100) 0;
    }

    .about-example-box {
        display: block;
    }

    .about-example-box-img {
        width: 100%;
    }

    .about-example-box-txt-area {
        width: 100%;
        margin-top: calc(50vw / 750 * 100);
    }

    .about-example-box-head {
        font-size: calc(36vw / 750 * 100);
    }

    .about-example-box-name {
        margin-top: calc(25vw / 750 * 100);
    }

    .about-example-box-txt {
        margin-top: calc(15vw / 750 * 100);
        font-size: calc(27vw / 750 * 100);
    }

    .about-example-link {
        display: flex;
        margin-top: calc(20vw / 750 * 100);
        font-size: calc(28vw / 750 * 100);
    }

    .about-example-link::after {
        width: calc(10vw / 750 * 100);
        height: calc(10vw / 750 * 100);
        margin-left: calc(10vw / 750 * 100);
        border-top: calc(1vw / 750 * 100) solid #333333;
        border-right: calc(1vw / 750 * 100) solid #333333;
    }

    .about-example-btn {
        width: calc(550vw / 750 * 100);
        margin: calc(75vw / 750 * 100) auto 0;
    }
}

/* dashboard */
.dashboard {
    background-color: #f5f5f5;
    padding: 120px 0;
}

.dashboard-box-list {
    margin-top: 70px;
}

.dashboard-box+.dashboard-box {
    margin-top: 80px;
}

.dashboard-box-head {
    padding-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #e8440b;
    border-bottom: 2px solid #dcdcdc;
}

.dashboard-box-txt {
    margin-top: 15px;
}

.dashboard-box-details-area {
    position: relative;
    margin-top: 84px;
}

.dashboard-box:nth-child(2) .dashboard-box-details-area {
    margin-top: 40px;
}

.dashboard-box-details-txt {
    position: absolute;
    width: 160px;
    font-size: 14px;
    line-height: 1.9;
}

.dashboard-box:nth-child(1) .dashboard-box-details-txt:nth-child(-n+3) {
    left: 0;
}

.dashboard-box:nth-child(1) .dashboard-box-details-txt:nth-child(n+4) {
    right: 10px;
    width: 150px;
}

.dashboard-box:nth-child(1) .dashboard-box-details-txt:nth-child(1) {
    top: 10px;
}

.dashboard-box:nth-child(1) .dashboard-box-details-txt:nth-child(2) {
    top: 156px;
}

.dashboard-box:nth-child(1) .dashboard-box-details-txt:nth-child(3) {
    top: 281px;
}

.dashboard-box:nth-child(1) .dashboard-box-details-txt:nth-child(4) {
    top: 10px;
}

.dashboard-box:nth-child(1) .dashboard-box-details-txt:nth-child(5) {
    top: 133px;
}

.dashboard-box:nth-child(2) .dashboard-box-details-txt:nth-child(-n+2) {
    left: 0;
}

.dashboard-box:nth-child(2) .dashboard-box-details-txt:nth-child(1) {
    top: 62px;
}

.dashboard-box:nth-child(2) .dashboard-box-details-txt:nth-child(2) {
    top: 283px;
}

.dashboard-box:nth-child(2) .dashboard-box-details-txt:nth-child(3) {
    width: 182px;
    top: 219px;
    right: -10px;
}

.dashboard-box-details-txt .accent {
    color: #ed582d;
}

.dashboard-box-details-notes {
    margin-top: 5px;
    font-size: 12px;
}

.dashboard-box-details-txt-img_01 {
    width: 170px;
    margin-left: -10px;
}

.dashboard-box-details-txt-img_02 {
    width: 15px;
    margin: 0 5px;
    vertical-align: middle;
}

@media (max-width: 1100px) {
    .dashboard {
        padding: calc(120vw / 1100 * 100) 0;
    }

    .dashboard-box-list {
        margin-top: calc(70vw / 1100 * 100);
    }

    .dashboard-box+.dashboard-box {
        margin-top: calc(80vw / 1100 * 100);
    }

    .dashboard-box-head {
        padding-bottom: calc(15vw / 1100 * 100);
        font-size: calc(24vw / 1100 * 100);
        border-bottom: calc(2vw / 1100 * 100) solid #dcdcdc;
    }

    .dashboard-box-txt {
        margin-top: calc(15vw / 1100 * 100);
    }

    .dashboard-box-details-area {
        margin-top: calc(84vw / 1100 * 100);
    }

    .dashboard-box:nth-child(2) .dashboard-box-details-area {
        margin-top: calc(40vw / 1100 * 100);
    }

    .dashboard-box-details-txt {
        width: calc(160vw / 1100 * 100);
        font-size: calc(14vw / 1100 * 100);
    }

    .dashboard-box:nth-child(1) .dashboard-box-details-txt:nth-child(n+4) {
        right: calc(10vw / 1100 * 100);
        width: calc(150vw / 1100 * 100);
    }

    .dashboard-box:nth-child(1) .dashboard-box-details-txt:nth-child(1) {
        top: calc(10vw / 1100 * 100);
    }

    .dashboard-box:nth-child(1) .dashboard-box-details-txt:nth-child(2) {
        top: calc(156vw / 1100 * 100);
    }

    .dashboard-box:nth-child(1) .dashboard-box-details-txt:nth-child(3) {
        top: calc(281vw / 1100 * 100);
    }

    .dashboard-box:nth-child(1) .dashboard-box-details-txt:nth-child(4) {
        top: calc(10vw / 1100 * 100);
    }

    .dashboard-box:nth-child(1) .dashboard-box-details-txt:nth-child(5) {
        top: calc(133vw / 1100 * 100);
    }

    .dashboard-box:nth-child(2) .dashboard-box-details-txt:nth-child(1) {
        top: calc(62vw / 1100 * 100);
    }

    .dashboard-box:nth-child(2) .dashboard-box-details-txt:nth-child(2) {
        top: calc(283vw / 1100 * 100);
    }

    .dashboard-box:nth-child(2) .dashboard-box-details-txt:nth-child(3) {
        width: calc(182vw / 1100 * 100);
        top: calc(219vw / 1100 * 100);
        right: calc(-10vw / 1100 * 100);
    }

    .dashboard-box-details-notes {
        margin-top: calc(5vw / 1100 * 100);
        font-size: calc(12vw / 1100 * 100);
    }

    .dashboard-box-details-txt-img_01 {
        width: calc(170vw / 1100 * 100);
        margin-left: calc(-10vw / 1100 * 100);
    }

    .dashboard-box-details-txt-img_02 {
        width: calc(15vw / 1100 * 100);
        margin: 0 calc(5vw / 1100 * 100);
    }
}

@media (max-width: 750px) {
    .dashboard {
        padding: calc(120vw / 750 * 100) 0;
    }

    .dashboard-box-list {
        margin-top: calc(60vw / 750 * 100);
    }

    .dashboard-box+.dashboard-box {
        margin-top: calc(75vw / 750 * 100);
    }

    .dashboard-box-head {
        padding-bottom: calc(20vw / 750 * 100);
        font-size: calc(36vw / 750 * 100);
        border-bottom: calc(2vw / 750 * 100) solid #dcdcdc;
    }

    .dashboard-box-txt {
        margin-top: calc(30vw / 750 * 100);
        font-size: calc(27vw / 750 * 100);
        line-height: 1.7;
    }

    .dashboard-box-details-area {
        margin-top: calc(55vw / 750 * 100);
    }

    .dashboard-box:nth-child(2) .dashboard-box-details-area {
        margin-top: calc(60vw / 750 * 100);
    }

    .dashboard-box-details-list {
        margin-top: calc(35vw / 750 * 100);
    }

    .dashboard-box-details-txt {
        position: static;
        width: 100% !important;
        padding-bottom: calc(25vw / 750 * 100);
        padding-left: calc(65vw / 750 * 100);
        text-indent: calc(-65vw / 750 * 100);
        font-size: calc(28vw / 750 * 100);
        border-bottom: calc(2vw / 750 * 100) solid #dcdcdc;
        line-height: 1.5;
    }

    .dashboard-box-details-txt:last-child {
        border: none;
    }

    .dashboard-box-details-txt+.dashboard-box-details-txt {
        margin-top: calc(25vw / 750 * 100);
    }

    .dashboard-box-details-txt .num {
        display: inline;
        margin-right: calc(20vw / 750 * 100);
        font-size: calc(46vw / 750 * 100);
        color: #ed582d;
    }

    .dashboard-box-details-notes {
        margin-top: calc(10vw / 750 * 100);
        font-size: calc(18vw / 750 * 100);
        text-align: left;
        text-indent: 0;
    }

    .dashboard-box-details-txt-img_01 {
        width: calc(405vw / 750 * 100);
        margin: 10px 0 0;
    }

    .dashboard-box-details-txt-img_02 {
        width: calc(30vw / 750 * 100);
        margin: 0 calc(5vw / 750 * 100);
    }
}