:root {
    --charge-orange: #eeaa77;
    --charge-blue: #88ccdd;
    --charge-purple: #8888dd;
    --charge-red: #eeaaaa;

    --hira-w6: HiraKakuProN-W6;
    --hira-w3: HiraKakuProN-W3;

    --gutter-compensation: 0;

    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 2rem;
    --space-4: 4rem;
}

/* ======================================================================
 common
====================================================================== */
.m0 {
    margin: 0;
}
.mt0 {
    margin-top: 0;
}
.mr0 {
    margin-right: 0;
}
.mb0 {
    margin-bottom: 0;
}
.ml0 {
    margin-left: 0;
}
.mx0 {
    margin-left: 0;
    margin-right: 0;
}
.my0 {
    margin-top: 0;
    margin-bottom: 0;
}

.m1 {
    margin: var(--space-1);
}
.mt1 {
    margin-top: var(--space-1);
}
.mr1 {
    margin-right: var(--space-1);
}
.mb1 {
    margin-bottom: var(--space-1);
}
.ml1 {
    margin-left: var(--space-1);
}
.mx1 {
    margin-left: var(--space-1);
    margin-right: var(--space-1);
}
.my1 {
    margin-top: var(--space-1);
    margin-bottom: var(--space-1);
}

.m2 {
    margin: var(--space-2);
}
.mt2 {
    margin-top: var(--space-2);
}
.mr2 {
    margin-right: var(--space-2);
}
.mb2 {
    margin-bottom: var(--space-2);
}
.ml2 {
    margin-left: var(--space-2);
}
.mx2 {
    margin-left: var(--space-2);
    margin-right: var(--space-2);
}
.my2 {
    margin-top: var(--space-2);
    margin-bottom: var(--space-2);
}

.m3 {
    margin: var(--space-3);
}
.mt3 {
    margin-top: var(--space-3);
}
.mr3 {
    margin-right: var(--space-3);
}
.mb3 {
    margin-bottom: var(--space-3);
}
.ml3 {
    margin-left: var(--space-3);
}
.mx3 {
    margin-left: var(--space-3);
    margin-right: var(--space-3);
}
.my3 {
    margin-top: var(--space-3);
    margin-bottom: var(--space-3);
}

.m4 {
    margin: var(--space-4);
}
.mt4 {
    margin-top: var(--space-4);
}
.mr4 {
    margin-right: var(--space-4);
}
.mb4 {
    margin-bottom: var(--space-4);
}
.ml4 {
    margin-left: var(--space-4);
}
.mx4 {
    margin-left: var(--space-4);
    margin-right: var(--space-4);
}
.my4 {
    margin-top: var(--space-4);
    margin-bottom: var(--space-4);
}

.mxn1 {
    margin-left: -var(--space-1);
    margin-right: -var(--space-1);
}
.mxn2 {
    margin-left: -var(--space-2);
    margin-right: -var(--space-2);
}
.mxn3 {
    margin-left: -var(--space-3);
    margin-right: -var(--space-3);
}
.mxn4 {
    margin-left: -var(--space-4);
    margin-right: -var(--space-4);
}

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

.p0 {
    padding: 0;
}
.pt0 {
    padding-top: 0;
}
.pr0 {
    padding-right: 0;
}
.pb0 {
    padding-bottom: 0;
}
.pl0 {
    padding-left: 0;
}
.px0 {
    padding-left: 0;
    padding-right: 0;
}
.py0 {
    padding-top: 0;
    padding-bottom: 0;
}

.p1 {
    padding: var(--space-1);
}
.pt1 {
    padding-top: var(--space-1);
}
.pr1 {
    padding-right: var(--space-1);
}
.pb1 {
    padding-bottom: var(--space-1);
}
.pl1 {
    padding-left: var(--space-1);
}
.py1 {
    padding-top: var(--space-1);
    padding-bottom: var(--space-1);
}
.px1 {
    padding-left: var(--space-1);
    padding-right: var(--space-1);
}

.p2 {
    padding: var(--space-2);
}
.pt2 {
    padding-top: var(--space-2);
}
.pr2 {
    padding-right: var(--space-2);
}
.pb2 {
    padding-bottom: var(--space-2);
}
.pl2 {
    padding-left: var(--space-2);
}
.py2 {
    padding-top: var(--space-2);
    padding-bottom: var(--space-2);
}
.px2 {
    padding-left: var(--space-2);
    padding-right: var(--space-2);
}

.p3 {
    padding: var(--space-3);
}
.pt3 {
    padding-top: var(--space-3);
}
.pr3 {
    padding-right: var(--space-3);
}
.pb3 {
    padding-bottom: var(--space-3);
}
.pl3 {
    padding-left: var(--space-3);
}
.py3 {
    padding-top: var(--space-3);
    padding-bottom: var(--space-3);
}
.px3 {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
}

.p4 {
    padding: var(--space-4);
}
.pt4 {
    padding-top: var(--space-4);
}
.pr4 {
    padding-right: var(--space-4);
}
.pb4 {
    padding-bottom: var(--space-4);
}
.pl4 {
    padding-left: var(--space-4);
}
.py4 {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}
.px4 {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

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

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

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

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

.text-bold {
    font-weight: bold;
}

.text-w3 {
    font-family: var(--hira-w3);
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 16px;
}

.text-w6 {
    font-family: var(--hira-w6);
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 16px;
}

.text-f10 {
    font-size: 10px;
}

.text-f11 {
    font-size: 11px;
}

.text-f12 {
    font-size: 12px;
}

.text-f14 {
    font-size: 14px;
}

.text-f24 {
    font-size: 24px;
}

.text-grey {
    color: #666;
}

.text-black {
    color: #222;
}

.ls0 {
    letter-spacing: normal;
}
.ls1 {
    letter-spacing: 1px;
}
.ls2 {
    letter-spacing: 2px;
}
.ls3 {
    letter-spacing: 3px;
}

.lh1 {
    line-height: 1.5;
}

.lh2 {
    line-height: 2;
}

/* ======================================================================
 eys_charge
====================================================================== */
.eys_charge {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
        HelveticaNeue, "Segoe UI", "ヒラギノ角ゴ ProN W3",
        "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN",
        "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro",
        "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック",
        "MS PGothic", "游ゴシック体", YuGothic, "Yu Gothic M",
        "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
    line-height: 1;
    color: #222;
}
.eys_charge img {
    width: 100%;
    vertical-align: bottom;
}
.eys_charge a {
    text-decoration: none;
}
.eys_charge .eys_container {
    width: 92%;
}

.eys_charge .eys_banner_grayscale img {
    filter: grayscale(1);
}

.eys_charge .charge__point-section {
    padding: 16px 0 8px;
    text-align: center;
}

.eys_charge .charge__point-section h2 {
    margin-bottom: 17px;
}

.eys_charge .bottom_border_60px::after {
    content: "";
    width: 60px;
    border-bottom: 1px solid #707070;
    display: block;
    margin: 12px auto 20px;
}

.charge__h3 {
    font-size: 16px;
    font-family: var(--hira-w6);
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;

    letter-spacing: 1px;
}

.charge__text-bold {
    font-family: var(--hira-w6);
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: normal;
}

.charge__text_10 {
    color: #222;
    font-size: 12px;
    font-family: var(--hira-w3);
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: 5px;
}

.charge__section {
    margin: 20px 0;
    padding: 0 20px;
}

.charge__table {
    background: #fff;
    width: 100%;
}

.charge__table td {
    border: 1px solid #eeeeef;
    padding: 7px 8px;
}

.charge__table-bluetext {
    color: var(--charge-blue);
    font-size: 12px;
}

.charge__table-orangetext {
    color: var(--charge-orange);
    font-size: 12px;
}

.charge__table-bg {
    color: #fff;
    /* padding: 4px 7px; */
    line-height: 20px;
}

.charge__table-bg > span {
    color: #fff;
}

.charge__table-blue-bg {
    background-color: var(--charge-blue);
}

.charge__table-orange-bg {
    background-color: var(--charge-orange);
}

#mlc_present .charge__notice {
    color: #666;
}

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

.charge__notice-bg-grey {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 16px;

    line-height: 20px;
}

.eys_charge img.charge__bubble-100 {
    width: 100px;
}
.eys_charge img.charge__bubble-160 {
    width: 160px;
}

.charge__discount-hightlight {
    color: var(--charge-purple);
    font-size: 30px;
}

.charge__price {
    color: #000;
}

.charge__price span {
    font-size: min(3vw + 0.5rem, 30px);
}

.charge__online-wrapper {
    background-color: #ddd;
    border-radius: 10px;
    position: relative;
}

.charge__ticket-overflow {
    background-color: #fff;
    border-radius: 10px;

    margin: var(--space-2) calc(-1 * var(--space-3));
}

.charge__ticket-overflow h2 {
    font-size: 18px;
}

.charge__benefit {
    font-size: 12px;
    color: var(--charge-red);
}

.music_class__section {
    background-color: #fff;
    position: relative;
    padding-top: 40px;
    font-family: "Hiragino Sans", sans-serif;
}

.fixed_system__section {
    font-family: "Hiragino Sans", sans-serif;
}

.music_class__section .music_class-fukidashi {
    position: absolute;
    left: 50%;
    top: -100px;
    transform: translate(-50%,0);
}

.fukidashi_lesson_fee_one_year-fix-top {
    display: block;
    height: 120px;
}

.fukidashi_lesson_fee_one_year-fix-bottom {
    display: block;
    height: 120px;
}

.music_class__section .music_class-item_title {
    color: #ffffff;
    font-weight: bold;
    font: bold 16px 'Hiragino Sans', sans-serif;
    padding: 10px 20px;
    position: absolute;
    left: 0;
    top: -22px;
    display: inline-block;
    z-index: 1;
    min-width: 70%;
}

.music_class__section .music_class-item_title::after {
    position: absolute;
    z-index: -1;
    content: "";
    right: -15px;
    top: 0;
    height: 100%;
    width: 50%;
    background-color: inherit;
    -webkit-transform: skewX(-145deg);
    -moz-transform: skewX(-145deg);
    -ms-transform: skewX(-145deg);
    transform: skewX(-145deg);
}

.music_class-item_title p {
    display: flex;
}

.music_class-item_title p i {
    margin-right: 15px;
}

.music_class-item_title img.price_list-title-icon {
    max-width: 20px;
    max-height: 20px;
    vertical-align: text-top;
}

.music_class-item_title img.price_list-title-icon-school {
    max-height: 20px;
    margin-right: 15px;
    vertical-align: middle;
}

.music_class__section .music_class-item_title.color-purple {
    background-color: var(--charge-purple);
}

.music_class__section .music_class-item_title.color-blue {
    background-color: var(--charge-blue);
}

.music_class__section .music_class-item_title.color-red {
    background-color: var(--charge-red);
}

.music_class__section .music_class-content {
    position: relative;
    padding: 50px 0 10px 0;
}

.music_class-content.eys_container {
    margin-bottom: 50px;
}

.music_class-content.eys_container.mb0 {
    margin-bottom: 0;
}

.music_class__section .music_class-content.color-purple {
    background-color:rgba(136, 136, 221, 0.25);
}

.music_class__section .music_class-content.color-blue {
    background-color:rgba(136, 204, 221, 0.25);
}

.music_class__section .music_class-content.color-red {
    background-color:rgba(238, 170, 170, 0.25);
}

.music_class__section .example_price.v-link.v-purple::after {
    background-color: var(--charge-purple);
}

.music_class__section .example_price.v-link.v-blue::after {
    background-color: var(--charge-blue);
}

.music_class__section .example_price.v-link.v-red::after {
    background-color: var(--charge-red);
}

.music_class__section .example_price.v-link::after {
    content: " ";
    display: block;
    width: 4px;
    height: 10px;
    background-color: var(--charge-purple);
    top: 0;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0);
}

.music_class__section span.color-purple, .music_class__section p.color-purple {
    color: var(--charge-purple);
}

.music_class__section span.color-blue, .music_class__section p.color-blue {
    color: var(--charge-blue);
}

.fixed_system__section p.color-red,
.music_class__section span.color-red, .music_class__section p.color-red {
    color: var(--charge-red);
}

.music_class__section .example_price p.color-light_black {
    color: #666666;
}

.music_class__section .va-mid {
    vertical-align: text-top;
}

.music_class__section .example_price {
    background-color: #ffffff;
    font-family: 'Hiragino Sans', sans-serif;
    padding: 25px;
    position: relative;
    filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, .15));
    transform: translateZ(0);
}

.music_class__section .example_price hr.title_hr {
    width: 8%;
    border: none;
    border-top: 1px #ddd solid;
    margin-bottom: 5px;
}

.music_class__section .price_list-main {
    background-color: #ffffff;
    position: relative;
    margin-bottom: 40px;
}

.music_class__section .price_list-main::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    display: flex;
    position: absolute;
    bottom: -20px;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0);
    border-style: solid;
    border-width: 20px 20px 0 20px;
    border-color: #fff transparent transparent transparent;
}

.price_list-main .price_list-fukidashi {
    width: 80%;
    position: absolute;
    text-align: center;
    top: -100px;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0);
}

.price_list-main .price_list-fukidashi-benefit {
    width: 90%;
    position: absolute;
    text-align: center;
    top: -120px;
    right: 0;
}

.music_class__section .price_list-fukidashi-benefit-top {
    margin-top: 138px;
}

.music_class__section .price_list-fukidashi-top {
    margin-top: 127px;
}
.music_class__section .price_list-fukidashi-bottom {
    padding-top: 60px;
}

.music_class__section .price_list-main.no-arrow::after {
    content: none;
}

.music_class__section .price_list-main.no-arrow {
    margin-bottom: 10px;
}

.music_class__section ul.price_list-container li {
    padding: 6px 15px;
    border-bottom: 1px solid #dddddd;
}

.music_class__section ul.price_list-container li:last-child {
    border-bottom: none;
}

.music_class__section ul.price_list-container li .price_list_icon {
    width: 16px;
    margin-right: 15px;
    vertical-align: middle;
}

.music_class__section ul.price_list-container li p {
    display: inline-flex;
    line-height: 24px;
    align-items: center;
    font-size: 16px;
    letter-spacing: .5px;
}

.music_class__section .music_class-content .music_class-item_content .w50 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.fixed_system__section .white-container {
    background-color: #ffffff;
    padding: 20px;
    margin-top: 20px;
}

@media only screen and (max-width: 500px) {
    .fukidashi_lesson_fee_one_year-fix-bottom {
        height: 18vw;
    }
    .price_list-main .price_list-fukidashi {
        top: -20vw;
    }
    .music_class__section .price_list-fukidashi-benefit-top {
        margin-top: 27.6vw;
    }
    .price_list-main .price_list-fukidashi-benefit {
        top: -24vw;
    }
    .music_class__section .price_list-fukidashi-top {
        margin-top: 25.4vw;
    }
    .music_class__section .price_list-fukidashi-bottom {
        padding-top: 12vw;
    }
    .music_class__section ul.price_list-container li p {
        font-size: 3.2vw;
        line-height: 4.8vw;
    }
    .music_class__section .price_list-main {
        margin-bottom: 8vw;
    }
}

/* Price Table New Style */

.charge__pointPriceTable {
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}

.charge__pointPriceTable table {
    width: 100%;
    line-height: 1.08;
    position: relative;
    z-index: 1;
}

.charge__pointPriceTable table th,
.charge__pointPriceTable table td {
    text-align: center;
}

.charge__pointPriceTable.charge__pointPriceTable--music th.horz {
    background-color: #CBCBF5;
}
.charge__pointPriceTable.charge__pointPriceTable--vocal th.horz {
    background-color: #F2C5A3;
}
.charge__pointPriceTable table tr:first-child {
    height: 65px;
}
.charge__pointPriceTable table tr:not(:first-of-type) {
    height: 50px;
    border-top: 1px solid #dddddd;
}

.charge__pointPriceTable table th.vert {
    background-color: #F5F5F5;
    font-size: 16px;
}
.charge__pointPriceTable table th.horz {
    font-size: 18px;
}
.charge__pointPriceTable table td {
    background-color: #ffffff;
    font-size: 13px;
}
.charge__pointPriceTable table td.trasnparent {
    background-color: transparent;
}
.charge__pointPriceTable table td:not(:first-of-type) {
    border-left: 1px solid #dddddd;
}
.charge__pointPriceTable table th.horz:not(:first-of-type) {
    border-left: 1px solid #dddddd;
}
.charge__pointPriceTable table th {
    font-weight: 600;
}

.charge__pointPriceTable ul {
    list-style-type: none;
    color: #222222;
    line-height: 1.7;
    font-size: 13px;
}

.charge__pointPriceTable--music .charge__pointPriceTableTitle {
    width: 100%;
    transform: translate(-10px, 60px);
    z-index: -1;
    position: relative;
    margin-top: -60px;
}
.charge__pointPriceTable--vocal .charge__pointPriceTableTitle {
    width: 100%;
    transform: translate(10px, 100px);
    z-index: -1;
    position: relative;
    margin-top: -100px;
}
.charge__pointPriceTable table .multiple {
    display: flex;
    justify-content: center;
    align-items: center;
}
.charge__pointPriceTable table .multiple i {
    margin-left: 10px;
}
.charge__pointPriceTable table .icon-people img {
    width: 17px;
    display: inline;
}
.charge__pointPriceTable table .icon-person img  {
    width: 10px;
    display: inline;
}

.charge__pointPriceTable table .price {
    color: #EA5B5B;
    font-family: Roboto, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 24px;
}

.price__sectionSchemaOne {
    position: relative;
}
.price__sectionSchemaOne figcaption span {
    position: absolute;
    font-family: Roboto, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #000000;
}
.price__sectionSchemaOne figcaption span:nth-child(3),
.price__sectionSchemaOne figcaption span:nth-child(4) {
    color: #EA5B5B;
}
.price__sectionSchemaOne figcaption span:nth-child(1) {
    left: 32%;
    top: 37%;
}
.price__sectionSchemaOne figcaption span:nth-child(2) {
    left: 47%;
    top: 50%;
}
.price__sectionSchemaOne figcaption span:nth-child(3) {
    left: 62%;
    top: 60%;
}
.price__sectionSchemaOne figcaption span:nth-child(4) {
    right: 2%;
    bottom: 31%;
}

.price__sectionSchemaTwo {
    position: relative;
    font-family: Roboto, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.price__sectionSchemaTwo figcaption div:nth-child(1) {
    font-size: 32.4px;
    font-weight: 600;
    color: #ffffff;
}

.price__sectionSchemaTwo figcaption div:nth-child(1) span:nth-child(1) {
    position: absolute;
    left: 29.5%;
    top: 13%;
    transform: rotate(-9deg);
}
.price__sectionSchemaTwo figcaption div:nth-child(1) span:nth-child(2) {
    position: absolute;
    left: 32.5%;
    top: 25%;
    transform: rotate(-9deg);
}

.price__sectionSchemaTwo figcaption div:nth-child(2) {
    font-size: 18.5px;
    font-weight: normal;
    color: #000000;
}
.price__sectionSchemaTwo figcaption div:nth-child(2) span {
    position: absolute;
}
.price__sectionSchemaTwo figcaption div:nth-child(2) span:nth-child(3),
.price__sectionSchemaTwo figcaption div:nth-child(2) span:nth-child(4) {
    font-weight: 600;
    color: #EA5B5B;
}
.price__sectionSchemaTwo figcaption div:nth-child(2) span:nth-child(1) {
    left: 15%;
    top: 40%;
}
.price__sectionSchemaTwo figcaption div:nth-child(2) span:nth-child(2) {
    left: 33%;
    top: 53%;
}
.price__sectionSchemaTwo figcaption div:nth-child(2) span:nth-child(3) {
    left: 52%;
    top: 64%;
}
.price__sectionSchemaTwo figcaption div:nth-child(2) span:nth-child(4) {
    left: 71%;
    top: 69%;
}

.price__sectionSchemaThree {
    position: relative;
}

.price__sectionSchemaThree figcaption {
    font-family: Roboto, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: #222222;
}

.price__sectionSchemaThree figcaption span {
    position: absolute;
}

.price__sectionSchemaThree figcaption span:nth-child(1) {
    left: 22%;
    top: 35.5%;
}
.price__sectionSchemaThree figcaption span:nth-child(2) {
    left: 22%;
    top: 81%;
}

@media only screen and (max-width: 500px){
    .charge__pointPriceTable table th.transparent {
        background: none;
    }
    .charge__pointPriceTable table th.horz {
        font-size: 3.73vw;
    }
    .charge__pointPriceTable table th.vert {
        font-size: 3.2vw;
        width: 16.53vw;
    }
    .charge__pointPriceTable table td {
        font-size: 2.67vw;
    }

    .charge__pointPriceTable ul {
        font-size: 2.67vw;
    }
    .charge__pointPriceTable table tr:first-child {
        height: 50px;
    }
    .charge__pointPriceTable table tr:not(:first-of-type) {
        height: 40px;
    }
    .charge__pointPriceTable table .price {
        font-size: 6vw;
    }
    .price__sectionSchemaOne figcaption span {
        font-size: 3.85vw;
    }
    .price__sectionSchemaTwo figcaption div:nth-child(1) {
        font-size: 6.49vw;
    }
    .price__sectionSchemaTwo figcaption div:nth-child(2) {
        font-size: 3.63vw;
    }
    .price__sectionSchemaThree figcaption {
        font-size: 10vw;
    }
}
