@charset "utf-8";

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    margin: 0 auto;
    color: #362e2b;
    font-size: 14px;
font-family: heisei-maru-gothic-std, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body>div {
    padding-top: 25px;
}

body>div>div {
    width: calc(100% - .5em);
    height: 150px;
    margin: 0 0 100px;
    padding: .5em .5em .5em 120px;
    position: relative;
    z-index: 0;
    font-weight: bold;
    background: rgba(255, 255, 255, .75);
}

body>div>div:nth-of-type(1) {
    border: 1px solid #68ad67;
    box-shadow: .5em .5em 0 #68ad67;
}

body>div>div.green_01 {
    border: 1px solid #aecda7;
    box-shadow: .5em .5em 0 #aecda7;
}

body>div>div.green_02 {
    border: 1px solid #b0d148;
    box-shadow: .5em .5em 0 #b0d148;
}

body>div>div.green_03 {
    border: 1px solid #68ad66;
    box-shadow: .5em .5em 0 #68ad66;
}

body>div>div.green_04 {
    border: 1px solid #dfe100;
    box-shadow: .5em .5em 0 #dfe100;
}

body>div>div>div:nth-last-of-type(1) {
    z-index: 1;
    width: 116px;
    height: 200px;
    left: 0;
    top: -25px;
    content: " ";
}

body>div:nth-of-type(1)>div>div:nth-last-of-type(1) {
    background: url("./images/leaf_00.png") no-repeat 0 0;
    background-size: contain;
    position: absolute;
}

body>div>div.green_01>div:nth-last-of-type(1) {
    background: url("./images/leaf_01.png") no-repeat 0 0;
    background-size: contain;
    position: absolute;
}

body>div>div.green_02>div:nth-last-of-type(1) {
    background: url("./images/leaf_02.png") no-repeat 0 0;
    background-size: contain;
    position: absolute;
}

body>div>div.green_03>div:nth-last-of-type(1) {
    background: url("./images/leaf_03.png") no-repeat 0 0;
    background-size: contain;
    position: absolute;
}

body>div>div.green_04>div:nth-last-of-type(1) {
    background: url("./images/leaf_04.png") no-repeat 0 0;
    background-size: contain;
    position: absolute;
}

body>div>div>div>p:nth-last-of-type(1) {
    text-align: right;
}

.scroll-box {
    width: 100%;
    height: calc(149px - 1em);
    overflow-y: scroll;
}

.scroll-box::-webkit-scrollbar {
    width: 5px;
}

.scroll-box::-webkit-scrollbar-track {
    background: #d9d9d9;
    border-radius: 0;
}

.scroll-box::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #29abdf, #5cb98d, #8cc63e);
    border-radius: 0;
}

.scroll-box::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #8cc63e, #5cb98d, #29abdf);
}


@media screen and (max-width : 500px) {
    body>div>div {
        padding: .5em .5em .5em 84px;
    }

    body>div>div>div:nth-last-of-type(1) {
        max-width: 80px;
    }