.flex-box {
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
}

.flex-box__item {
    width: 100%;
}

.flex-box__item.flex-item2 {
    max-width: 50%;
}

@media screen and (max-width: 767px) {
    .flex-box__item.flex-item2 {
        max-width: 100%;
    }
}

.ul-none {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.border-box {
    width: 100%;
    border: 1px solid #D3D3D3;
}

.bg-white {
    background-color: #fff;
}

.sub-title {
    display: block;
    font-size: 2.1rem;
    font-weight: bold;
    color: #B8012E;
    font-family: "Noto Sans JP", sans-serif;
}

.sub-title2 {
    display: block;
    font-size: 1.8rem;
    color: #302D2C;
    font-weight: bold;
}

.text-desc {
    font-size: 1.5rem;
    color: #302D2C;
    line-height: 1.6;
}

.text-desc.small {
    font-size: 1.3rem;
}

.text-right {
    text-align: right;
}

.f-noto {
    font-family: "Noto Sans JP", sans-serif;
}

.f12 {
    font-size: 1.2rem;
}

.f13 {
    font-size: 1.3rem;
}

.f15 {
    font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
    .f15 {
        font-size: 1.3rem;
    }
}

.f16 {
    font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
    .f16 {
        font-size: 1.4rem;
    }
}

.f18 {
    font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
    .f18 {
        font-size: 1.4rem;
    }
}

.f26 {
    font-size: 2.6rem;
}

@media screen and (max-width: 767px) {
    .f26 {
        font-size: 1.6rem;
    }
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.line12 {
    line-height: 1.2;
}

.line16 {
    line-height: 1.6;
}

.line18 {
    line-height: 1.8;
}

.ml-03 {
    margin-left: 0.3rem;
}

.ml-05 {
    margin-left: 0.5rem;
}

.mt-05 {
    margin-top: 0.5rem;
}

.ml-1 {
    margin-left: 1rem;
}

.mt-1 {
    margin-top: 1rem;
}

.pr-1 {
    padding-right: 1rem;
}

.ml-2 {
    margin-left: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.pr-2 {
    padding-right: 2rem;
}

.ml-3 {
    margin-left: 3rem;
}

.mt-3 {
    margin-top: 3rem;
}

.pr-3 {
    padding-right: 3rem;
}

.ml-4 {
    margin-left: 4rem;
}

.mt-4 {
    margin-top: 4rem;
}

.pr-4 {
    padding-right: 4rem;
}

.ml-5 {
    margin-left: 5rem;
}

.mt-5 {
    margin-top: 5rem;
}

.pr-5 {
    padding-right: 5rem;
}

.ml-6 {
    margin-left: 6rem;
}

.mt-6 {
    margin-top: 6rem;
}

.pr-6 {
    padding-right: 6rem;
}

.ml-7 {
    margin-left: 7rem;
}

.mt-7 {
    margin-top: 7rem;
}

.pr-7 {
    padding-right: 7rem;
}

@media screen and (max-width: 767px) {
    .pr-4 {
        padding-right: 0;
    }
    .mt-2 {
        margin-top: 1rem;
    }
}

.pr-05 {
    padding-right: 0.5rem;
}

.mx-1 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.px-4 {
    padding-left: 4rem;
    padding-right: 4rem;
}

.px-7 {
    padding-left: 7rem;
    padding-right: 7rem;
}

.m-0 {
    margin: 0;
}

.mx-7 {
    margin-left: 7rem;
    margin-right: 7rem;
}

@media screen and (max-width: 767px) {
    .mx-7 {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

.mx-2 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.d-block {
    display: block;
}

.d-table {
    display: table;
}

@media screen and (max-width: 1024px) {
    .letter-spacing--05 {
        letter-spacing: 0;
    }
}

.letter-spacing-02 {
    letter-spacing: 0.2rem;
}

.letter-spacing-05 {
    letter-spacing: 0.5rem;
}

.f-symbol {
    display: inline-block;
    max-width: 0.8rem;
}

.comment-box {
    width: 100%;
    height: 3rem;
    border: 1px solid #302D2C;
    background-color: #fff;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    color: #302D2C;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    position: relative;
}

.comment-box::after {
    content: "";
    width: 1rem;
    height: 1rem;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    background-color: #fff;
    border-right: 1px solid #302D2C;
    border-left: 1px solid transparent;
    border-top: 1px solid transparent;
    border-bottom: 1px solid #302D2C;
    transform: translate(-50%, 5px) rotate(45deg);
}

.comment-box.custom-red {
    background-color: #B8012E;
    color: #fff;
    border-color: #B8012E;
}

.comment-box.custom-red::after {
    background-color: #B8012E;
    border-bottom-color: #B8012E;
    border-right-color: #B8012E;
}

.border-dotted {
    position: relative;
}

.border-dotted::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    border: 0;
    border-top: 3px dotted transparent;
    display: block;
    left: 100%;
    top: 0;
    transform-origin: top left;
}

.border-dotted.blue2::after {
    border-color: #91DBFC;
}

.border-dotted.gray2::after {
    border-color: #8FB4C4;
}

.border-dotted.green2::after {
    border-color: #90DD93;
}

.sale {
    position: relative;
}

.sale__info {
    width: 11.4rem;
    height: 11.4rem;
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    right: 0;
    top: 0;
}

.sale__info span {
    font-size: 4.6rem;
}

.sale__info span small {
    font-size: 1.9rem;
    font-weight: 900;
}

.triangle {
    position: relative;
    display: inline-block;
    border-left: 9px solid #302D2C;
    border-right: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-right: 1rem;
}

.triangle.red {
    border-left-color: #B8012E;
}

.text-throught {
    width: 100%;
    border-top: 1px solid #B8012E;
    position: relative;
}

.text-throught span,
.text-throught h3 {
    padding: 0 1rem;
    background-color: #fff;
    position: absolute;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #B8012E;
    left: 50%;
    top: 0;
    text-align: center;
    width: max-content;
    line-height: 1.2;
    transform-origin: top center;
    transform: translate(-50%, -50%);
}

.text-throught.dark {
    border-top: 1px solid #302D2C;
}

.text-throught.dark span {
    color: #302D2C;
}

.text-notice {
    display: inline-flex;
    align-items: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #B8012E;
    line-height: 1.4;
}

@media screen and (max-width: 767px) {
    .text-notice {
        font-size: 1.4rem;
    }
}