@charset "UTF-8";

/*----------料金パーツ---------*/
.clm3 {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.txt_wrap [class*="contents"] {
    font-size: 2.2rem;
}

.clm3 [class*="contents"] {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    color: #fff;
}
.contents1 {
    background: #2CA3BA;
    border: 3px solid #2CA3BA;
    border-radius: 12px;
}
.contents2 {
    background: #63AA43;
    border: 3px solid #63AA43;
    border-radius: 12px;
}
.contents3 {
    background: #CB8F00;
    border: 3px solid #CB8F00;
    border-radius: 12px;
}

.contents3 .sm {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.clm3 [class*="contents"] .price {
    color: var(--i_txt_color);
    background: #fff;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 3.0rem;
    font-weight: bold;
    border-radius: 0 0 8px 8px;
}
.clm3 > span {
    font-size: 3rem;
}
.contents4 {
    display: flex;
    justify-content: center;
    color: #fff;
    background: #EB6120;
    border: 3px solid #EB6120;
    border-radius: 12px;
    width: 50%;
    justify-content: flex-end;
    margin: auto;
    align-items: center;
}
.contents4 span.total {
    width: 50%;
    text-align: center;
    font-weight: bold;
}
.contents4 .price {
    color: var(--i_txt_color);
    background: #fff;
    display: block;
    text-align: center;
    width: 50%;
    border-radius: 0 8px 8px 0;
    color: #EB6120;
    font-size: 3.0rem;
    font-weight: bold;
}

@media screen and (max-width: 900px) {
.clm3 {
    flex-direction: column;
        gap: 0;
}
.txt_wrap [class*="contents"] {
    width: 100% !important;
        font-size: 1.8rem !important;
}
.contents4 span.total {
    width: 20%;
}
.contents4 .price {
    padding: 0 10px;
    width: 80%;
}
}