@charset "UTF-8";

/* c-section
-------------------------*/
.c-section__heading--border {
    position: relative;
    font-weight: bold;
    text-align: center;
    padding-bottom: 16px;
}
@media print,
screen and (min-width: 769px) {
    .c-section__heading--border {
        font-size: 2.25rem;
        margin-bottom: 40px;
    }
}
@media not all and (min-width: 769px) {
    .c-section__heading--border {
        font-size: 1.75rem;
        margin-bottom: 24px;
    }
}
.c-section__heading--border::after {
    content: "";
    display: block;
    width: 460px;
    height: 4px;
    transform: skew(-20deg) translateX(-50%);
    background-color: #10069F;
    position: absolute;
    left: 50%;
    bottom: 0px;
}

/* center
-------------------------*/
.center-text {
    font-size: 0.875rem;
}
@media print, screen and (min-width: 769px) {
    .center-text {
        text-align: center;
    }
}
.center-text span {
    font-size: 0.75rem;
}

.center-title {
    font-size: 1.5rem;
    text-align: center;
}
@media print, screen and (min-width: 769px) {
    .center-title {
        font-size: 2rem;
        margin: 120px 0 32px 0;
    }
}
@media not all and (min-width: 769px) {
    .center-title {
        font-size: 1.5rem;
        margin: 40px 0 24px 0;
    }
}

/* note
-------------------------*/
.note {
    font-size: 0.75rem;
    color: #939DAD;
}
@media print, screen and (min-width: 769px) {
    .note {
        margin: 24px 0 8px 0;
    }
}
@media not all and (min-width: 769px) {
    .note {
        margin: 16px 0 8px 0;
    }
}

/* other-block
-------------------------*/
.other-block {
    font-size: 0.875rem;
    margin-top: 28px;
}
.other-block__subtitle {
    font-weight: bold;
}
.other-block__text {
    margin-top: 8px;
}
.other-block__note {
    color: #697180;
    padding-top:56px;
    padding-bottom: 96px;
}

/* fuel-list
-------------------------*/
@media print, screen and (min-width: 769px) {
    .fuel-list {
        display: flex;
        justify-content: space-between;
        gap: 24px;
    }
}
@media not all and (min-width: 769px) {
    .fuel-list {
        border: 1px solid #C0C5CC;
    }
}
.fuel-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    padding: 8px;
}
@media print, screen and (min-width: 769px) {
    .fuel-list li {
        width: 352px;
        border: 1px solid #C0C5CC;
    }
}
@media not all and (min-width: 769px) {
    .fuel-list li:not(:last-child) {
        border-bottom: 1px solid #C0C5CC;
    }
}
.fuel-list__link {
    width: 80px;
}
.fuel-list__link a {
    color: #3064D5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: all 0.3s;
}
@media (hover: hover) {
    .fuel-list__link a:not(.is-disabled-hover):hover:hover {
        color: #140D77;
        text-decoration: underline;
    }
}
.fuel-list__link a::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-color: #3064D5;
    margin-left: 4px;
    -webkit-mask-image: url("../images/blank_blue.svg?sanitize=true");
    mask-image: url("../images/blank_blue.svg?sanitize=true");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: background-color 0.3s;
}

/* text-link
-------------------------*/
.text-link {
    color: #3064D5;
    transition: all 0.3s;
}
@media (hover: hover) {
    .text-link:not(.is-disabled-hover):hover:hover {
        color: #140D77;
        text-decoration: underline;
    }
}
