/*-------- Variables ------*/
:root {
    --lp-color-text: rgba(5, 15, 26, 0.95);
    --lp-color-main: #092987;
}

/*-------- Common ------*/
body {
    color: var(--lp-color-text);
    font-family: NotoSansJP-font, Roboto-font;
    font-weight: normal;
    line-height: 1.8;
}
img {
    vertical-align: middle;
}
.line-break {
    display: inline-block;
}
.show-pc {
    display: none;
}
@media screen and (min-width: 769px) {
    .show-pc {
        display: block;
    }
    .hide-pc {
        display: none;
    }
}

/*-------- #consideration ------*/
.consideration {
    padding: 48px 0px 56px;
}
@media screen and (min-width: 769px) {
    .consideration {
        padding: 88px 0px 96px;
    }
}

.contents-area {
    padding: 0px 16px;
}
@media screen and (min-width: 769px) {
    .contents-area {
        width: 980px;
        margin: 0px auto;
        padding: 0px 24px;
    }
}

h2.consideration-heading {
    font-size: 24px !important;
    line-height: 1.2;
    color: #092987;
    font-weight: bold;
    text-align: center;
}
@media screen and (min-width: 769px) {
    h2.consideration-heading {
        font-size: 30px !important;
    }
}

.consideration-window {
    background-color: #f1f1f1;
    margin-top: 32px;
    padding: 16px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 16px;
}
@media screen and (min-width: 769px) {
    .consideration-window {
        margin-top: 40px;
        padding: 24px;
        font-size: 16px;
    }
}

.consideration-text p {
    line-height: 1.8 !important;
}
@media screen and (min-width: 769px) {
}

.consideration-text dl {
    display: flex;
    margin-top: 4px;
    margin-left: -8px;
}

.consideration-text dl:first-of-type {
    margin-top: 8px;
}
@media screen and (min-width: 769px) {
}

.consideration-text dl dt {
    line-height: 1.5;
}

.consideration-text dl dd {
    line-height: 1.5;
    
}