body {
    border-top: 3px solid #115FAD;　/* 最上部のボーダーカラー */
}

.original_header {
    padding: 10px 0;
}

.side-question .question-title,
.question.color-title .question-title {
    background-color: #ECECEC; /* 設問タイトルの背景色 */
    padding: 10px;
}

.side-question.orange .question-title,
.question.color-title.orange .question-title {
    background-color: #ffe1c3; /* 設問タイトルの背景色 */
}

.side-question.pink .question-title,
.question.color-title.pink .question-title {
    background-color: #ffe3e3; /* 設問タイトルの背景色 */
}
#ffe3e3

.question-title-text {
    padding: 0 !important;
}

.question.sub-title + .question {
    padding-top: 7px;
}

.side-question {
    display: flex;
    justify-content: space-between;
    padding-top: 2px;
}

.side-question:first-child {
    padding-top: 45px;
}

.side-question > div:first-child {
    display: none;
}

.side-question .question-title {
    width: 25%;
}

.side-question .question-body {
    padding: 0;
    width: 75%;
}

.side-question .question-body p {
    padding-left: 14px;
}

.display-flex {
    display: flex;
}

.footer-image {
    align-items: center;
    justify-content: center;
}

.footer-image img {
    vertical-align: bottom;
}

.footer-image p {
    margin-bottom: 3px;
    font-size: 13px;
}

.footer-link {
    list-style: none;
    padding: 0;
    justify-content: center;
    margin-top: 6px;
    flex-wrap: wrap;
}

.footer-link li {
    font-size: 11px;
    border-left: 1px solid #aaa;
    padding: 0 5px;
}

.footer-link li:first-child {
    padding-left: 0;
    border-left: 0;
}

.footer-link li a {
    color: #555;
    text-decoration: none;
}

/* 設問用CSS */
.padding-0 {
    padding: 0; /* 設問上部のpadding除去 */
}

.center {
    text-align: center; /* テキストをセンター寄せ */
}


@media screen and (max-width: 480px){
    body {
        padding: 0 10px;
    }

    .container {
        overflow: hidden;
    }

    .question .question-standard .question-standard-line {
        display: block !important;
    }

    .side-question {
        display: block;
        padding-top: 20px;
    }

    .side-question .question-title,
    .side-question .question-body {
        width: 100% !important;
    }

    .footer-link li {
        font-size: 10px;
    }
}