@charset "UTF-8";

/*========================================
  01.index
========================================*/
/*
==================================
body
==================================
*/
/* pc */
@media(min-width:769px){
  body{
    color: #333333;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
/* sp */
@media(max-width:768px){
  body{
    color: #333333;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}


/*====================
  00.common
====================*/
/*===== PC =====*/
@media only screen and (min-width: 769px), print, tv {
  .sp {
    display: none;
  }
  /* 全体 */
  .top-wrap {
    overflow: hidden;
  }
  /* アコーディオン */
  .js-acc-text {
    cursor: pointer;
  }
  .js-acc-text:hover {
    opacity: 0.7;
  }
  noscript + img {
    display: none;
  }
}
/*===== SP =====*/
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  /* アコーディオン */
  .js-acc-text {
    cursor: pointer;
  }
  noscript + img {
    display: none;
  }
}


/*====================
  10.modal
====================*/
/*===== PC =====*/
@media only screen and (min-width: 769px), print, tv {
  .modal {
    display: none;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  .modal__bg {
    background-color: rgba(183, 183, 183, 0.9);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .modal__wrap {
    max-width: 960px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .modal__close {
    width: 50px;
    margin-bottom: 20px;
    cursor: pointer;
    position: absolute;
    top: -55px;
    right: 0;
  }
  .modal__close-icon {
    font-size: 0px;
    width: 30px;
    margin-bottom: 5px;
    margin-right: auto;
    margin-left: auto;
  }
  .modal__close-text {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
  }
  .modal__content {
    border-radius: 5px;
    background-color: #ffffff;
    width: 100%;
    max-height: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modal__title {
    font-size: 24px;
    font-weight: 600;
    color: #004fa8;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  .modal__btn {
    display: flex;
    flex-wrap: wrap;
    width: 660px;
    margin-right: auto;
    margin-left: auto;
  }
  .modal__btn-item {
    border-radius: 6px;
    box-shadow: 0px 4px 0px 0px #e2e2e2;
    width: 320px;
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .modal__btn-item:nth-child(2n) {
    margin-left: 20px;
  }
  .modal__btn-item:nth-child(n+3) {
    margin-top: 24px;
  }
  .modal__btn-link {
    display: block;
    border-radius: 6px;
    background-color: #004ea2;
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    line-height: 1.0;
    letter-spacing: 0.1em;
    text-decoration: none;
    padding: 24px;
    position: relative;
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  /* .modal__btn-link::after {
    content: "";
    background-image: url(/online-dance/assets/img/210506/icon_arrow_white.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 12px;
    height: 20px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
  } */
  .modal__btn-item-strong {
    font-size: 24px;
  }
  .modal__btn-item:hover {
    box-shadow: 0px 0px 0px 0px #e2e2e2;
  }
  .modal__btn-item:hover .modal__btn-link {
    opacity: 0.7;
    transform: translateY(4px);
  }
}
/*===== SP =====*/
@media only screen and (max-width: 768px) {
  .modal {
    display: none;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 8vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  .modal__bg {
    background-color: rgba(183, 183, 183, 0.9);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .modal__wrap {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .modal__close {
    width: 13.33333333vw;
    cursor: pointer;
    position: absolute;
    top: -12vw;
    right: 0;
  }
  .modal__close-icon {
    font-size: 0;
    width: 6.4vw;
    margin-bottom: 2vw;
    margin-right: auto;
    margin-left: auto;
  }
  .modal__close-text {
    font-size: 3.2vw;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    line-height: 1.0;
  }
  .modal__content {
    overflow: auto;
    border-radius: 1.33333333vw;
    background-color: #ffffff;
    width: 100%;
    max-height: 100%;
    padding-top: 5.33333333vw;
    padding-bottom: 5.33333333vw;
  }
  .modal__title {
    font-size: 4.26666666vw;
    font-weight: 600;
    color: #004fa8;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 5.33333333vw;
  }
  .modal__btn {
    display: flex;
    flex-wrap: wrap;
    padding-right: 4vw;
    padding-left: 4vw;
  }
  .modal__btn-item {
    border-radius: 4px;
    box-shadow: 0 0.53333333vw 0 0 #e2e2e2;
    width: 100%;
  }
  .modal__btn-item + .modal__btn-item {
    margin-top: 3.2vw;
  }
  .modal__btn-link {
    display: block;
    border-radius: 4px;
    background-color: #004ea2;
    font-size: 3.73333333vw;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    line-height: 1.0;
    letter-spacing: 0.1em;
    text-decoration: none;
    padding: 4vw;
    position: relative;
  }
  /* .modal__btn-link::after {
    content: "";
    background-image: url(/online-dance/assets/img/210506/icon_arrow_white.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 1.86666666vw;
    height: 3.2vw;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2.66666666vw;
  } */
  .modal__btn-item-strong {
    font-size: 4.53333333vw;
  }
}


/*========================================
  03.term
========================================*/
/*====================
  01.main
====================*/
/*===== PC =====*/
@media only screen and (min-width: 769px), print, tv {
  /* base */
  .term-main {
    background-color: #ffffff;
    margin-top: 150px;
  }
  .term-main__title {
    font-size: 36px;
    text-align: center;
    font-weight: bold;
  }
  .term-main__wrap {
    width: 960px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 40px;
    padding-bottom: 60px;
  }
  /* acc */
  .term-main__acc + .term-main__acc {
    margin-top: 10px;
  }
  .term-main__acc-title {
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .term-main__acc-icon {
    width: 34px;
    height: 34px;
    background-color: #fff;
    border-radius: 50%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    z-index: 10;
  }
  .term-main__acc-icon::before,
  .term-main__acc-icon::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
  }
  .term-main__acc-icon::before {
    width: 14px;
    height: 2.5px;
  }
  .term-main__acc-icon::after {
    width: 2.5px;
    height: 14px;
  }
  .active .term-main__acc-icon::after {
    display: none;
  }
  .term-main__acc.course .term-main__acc-title {
    border-radius: 6px;
    box-shadow: 0px 2px 0px 0px #e2e2e2;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    line-height: 1.0;
    padding: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .term-main__acc:not(.course) .term-main__acc-title {
    border-radius: 6px;
    box-shadow: 0px 2px 0px 0px #e2e2e2;
    background-color: #ececec;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    line-height: 1.0;
    padding: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .term-main__acc:not(.course) .term-main__acc-title span {
    font-size: 24px;
    line-height: 1.4;
  }
  .term-main__acc-title:hover {
    opacity: 0.7;
  }
  .term-main__acc-body {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .term-main__heading {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 50px;
  }
  .term-main__heading span {
    font-size: 20px;
  }
  .term-main__section-title03 {
    font-size: 20px;
    font-weight: 600;
    color: #002222;
    line-height: 1.2;
    margin-top: 45px;
    margin-bottom: 25px;
    padding-left: 1.0em;
    position: relative;
  }
  .term-main__section-title03::before {
    content: "";
    border-radius: 6px;
    width: 6px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .term-main__section-title04 {
    font-size: 16px;
    font-weight: 600;
    color: #002222;
    line-height: 1.7;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .term-main__section-text {
    font-size: 16px;
    font-weight: 400;
    color: #002222;
    line-height: 1.7;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 1.2em;
  }
  .term-main__section-bottom-text {
    font-size: 16px;
    font-weight: 400;
    color: #002222;
    text-align: right;
    line-height: 1.7;
    margin-top: 15px;
  }
  .term-main__section-number-item {
    font-size: 16px;
    font-weight: 400;
    color: #002222;
    line-height: 1.7;
    padding-left: 1.2em;
    position: relative;
  }
  .term-main__section-number-item + .term-main__section-number-item {
    margin-top: 10px;
  }
  .term-main__section-number-item::before {
    position: absolute;
    top: 0;
    left: 0;
  }
  .term-main__section-number-item:nth-child(1)::before {
    content: "1.";
  }
  .term-main__section-number-item:nth-child(2)::before {
    content: "2.";
  }
  .term-main__section-number-item:nth-child(3)::before {
    content: "3.";
  }
  .term-main__section-number-item:nth-child(4)::before {
    content: "4.";
  }
  .term-main__section-number-item:nth-child(5)::before {
    content: "5.";
  }
  .term-main__section-number-item:nth-child(6)::before {
    content: "6.";
  }
  .term-main__section-number-item:nth-child(7)::before {
    content: "7.";
  }
  .term-main__section-number-item:nth-child(8)::before {
    content: "8.";
  }
  .term-main__section-number-item:nth-child(9)::before {
    content: "9.";
  }
  .term-main__section-number-item:nth-child(10)::before {
    content: "10.";
  }
  .term-main__section-offer {
    margin-top: 20px;
  }
  .term-main__section-offer-item {
    font-size: 14px;
    color: #808080;
    padding-left: 1.2em;
    position: relative;
  }
  .term-main__section-offer-item::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
  }
}
/*===== SP =====*/
@media only screen and (max-width: 768px) {
  /* base */
  .term-main {
    background-color: #ffffff;
    margin-top: 30vw;
  }
  .term-main__title {
    font-size: 6.4vw;
    text-align: center;
    font-weight: bold;
  }
  .term-main__wrap {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }
  /* acc */
  .term-main__acc + .term-main__acc {
    margin-top: 2.66666666vw;
  }
  .term-main__acc-title {
    margin-right: 4vw;
    margin-left: 4vw;
  }
  .term-main__acc-icon {
    width: 5.33333333vw;
    height: 5.33333333vw;
    background-color: #fff;
    border-radius: 50%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2.66666666vw;
    z-index: 10;
  }
  .term-main__acc-icon::before,
  .term-main__acc-icon::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
  }
  .term-main__acc-icon::before {
    width: 2.4vw;
    height: 0.5vw;
  }
  .term-main__acc-icon::after {
    width: 0.5vw;
    height: 2.4vw;
  }
  .active .term-main__acc-icon::after {
    display: none;
  }
  .term-main__acc.course .term-main__acc-title {
    border-radius: 6px;
    box-shadow: 0px 2px 0px 0px #e2e2e2;
    font-size: 4.26666666vw;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
    padding: 2.66666666vw 10.13333333vw 2.66666666vw 5.33333333vw;
    position: relative;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .term-main__acc.course  .term-main__acc-title.term-main__acc-title--long {
    font-size: 3.733vw;
  }
  .term-main__acc:not(.course) .term-main__acc-title {
    border-radius: 6px;
    box-shadow: 0px 2px 0px 0px #e2e2e2;
    background-color: #ececec;
    font-size: 4.26666666vw;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    padding: 4vw 10.13333333vw 4vw 5.33333333vw;
    position: relative;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .term-main__acc:not(.course) .term-main__acc-title span {
    font-size: 3.2vw;
    line-height: 1.4;
  }
  .term-main__acc:not(.course) .term-main__acc-title.term-main__acc-title--long {
    font-size: 3.733vw;
  }
  .term-main__acc-body {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }
  .term-main__heading {
    font-size: 4.26666666vw;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 4vw;
  }
  .term-main__heading span {
    font-size: 3.2vw;
  }
  .term-main__section-title03 {
    font-size: 3.2vw;
    font-weight: 600;
    color: #002222;
    line-height: 1.2;
    margin-top: 8vw;
    margin-bottom: 2.66666666vw;
    padding-top: 1.6vw;
    padding-bottom: 1.6vw;
    padding-left: 8vw;
    position: relative;
  }
  .term-main__section-title03::before {
    content: "";
    width: 1.6vw;
    height: 70%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 4vw;
  }
  .term-main__section-title04 {
    font-size: 3.2vw;
    font-weight: 600;
    color: #002222;
    line-height: 1.7;
    margin-top: 2.66666666vw;
    margin-bottom: 2.66666666vw;
    padding-right: 4vw;
    padding-left: 4vw;
  }
  .term-main__section-text {
    font-size: 3.2vw;
    font-weight: 400;
    color: #002222;
    line-height: 1.7;
    margin-top: 4vw;
    margin-bottom: 4vw;
    padding-right: 4vw;
    padding-left: 4vw;
  }
  .term-main__section-bottom-text {
    font-size: 3.2vw;
    font-weight: 400;
    color: #002222;
    text-align: right;
    line-height: 1.7;
    margin-top: 4vw;
    padding-right: 4vw;
    padding-left: 4vw;
  }
  .term-main__section-number-item {
    font-size: 3.2vw;
    font-weight: 400;
    color: #002222;
    line-height: 1.7;
    padding-right: 4vw;
    padding-left: 8vw;
    position: relative;
  }
  .term-main__section-number-item + .term-main__section-number-item {
    margin-top: 2.66666666vw;
  }
  .term-main__section-number-item::before {
    position: absolute;
    top: 0;
    left: 4vw;
  }
  .term-main__section-number-item:nth-child(1)::before {
    content: "1.";
  }
  .term-main__section-number-item:nth-child(2)::before {
    content: "2.";
  }
  .term-main__section-number-item:nth-child(3)::before {
    content: "3.";
  }
  .term-main__section-number-item:nth-child(4)::before {
    content: "4.";
  }
  .term-main__section-number-item:nth-child(5)::before {
    content: "5.";
  }
  .term-main__section-number-item:nth-child(6)::before {
    content: "6.";
  }
  .term-main__section-number-item:nth-child(7)::before {
    content: "7.";
  }
  .term-main__section-number-item:nth-child(8)::before {
    content: "8.";
  }
  .term-main__section-number-item:nth-child(9)::before {
    content: "9.";
  }
  .term-main__section-number-item:nth-child(10)::before {
    content: "10.";
  }
  .term-main__section-offer {
    margin-top: 4vw;
  }
  .term-main__section-offer-item {
    font-size: 2.66666666vw;
    color: #808080;
    padding-right: 8vw;
    padding-left: 8vw;
    position: relative;
  }
  .term-main__section-offer-item::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 4vw;
  }
}


/*====================
  00.講座カラー
====================*/

:root {
--default-main-color: #004ea2;
--art-main-color: #ffae2e;
--creator-main-color: #006cff;
--dance-main-color: #ff89a5;
--shuuji-main-color: #8ed93c;
--soroban-main-color: #fa333b;
--tankyu-main-color: #11a339;
--micralish-main-color: #01BBFF;
--micraming-main-color: #0AA5A5;
--game-main-color: #654CE6;
--speech-main-color: #21c8ff;
}

/* default */
.term-main__acc.course .term-main__acc-title {
  background-color: var(--default-main-color);
}
.term-main__acc:not(.course) .term-main__acc-title {
  color: var(--default-main-color);
}
.term-main__acc .term-main__heading {
  color: var(--default-main-color);
}
.term-main__acc-icon::before,
.term-main__acc-icon::after {
  background-color: var(--default-main-color);
}
.term-main__acc .term-main__section-title03::before {
  background-color: var(--default-main-color);
}
.term-main__section-text a {
  color: var(--default-main-color);
}
@media only screen and (max-width: 768px) {
  .term-main__acc .term-main__section-title03 {
    background-color: #d7ecfa;
  }
}

/* online-art */
/* #online-art.term-main__acc.course .term-main__acc-title {
  background-color: var(--art-main-color);
}
#online-art.term-main__acc:not(.course) .term-main__acc-title {
  color: var(--art-main-color);
}
#online-art.term-main__acc .term-main__heading {
  color: var(--art-main-color);
}
#online-art.term-main__acc .term-main__acc-icon::before,
#online-art.term-main__acc .term-main__acc-icon::after {
  background-color: var(--art-main-color);
}
#online-art.term-main__acc .term-main__section-title03::before {
  background-color: var(--art-main-color);
}
#online-art.term-main__acc .term-main__section-text a {
  color: var(--art-main-color);
}
@media only screen and (max-width: 768px) {
  #online-art.term-main__acc .term-main__section-title03 {
    background-color: #FFFFE1;
  }
} */
/* online-creator */
/* #online-creator.term-main__acc.course .term-main__acc-title {
  background-color: var(--creator-main-color);
}
#online-creator.term-main__acc:not(.course) .term-main__acc-title {
  color: var(--creator-main-color);
}
#online-creator.term-main__acc .term-main__heading {
  color: var(--creator-main-color);
}
#online-creator.term-main__acc .term-main__acc-icon::before,
#online-creator.term-main__acc .term-main__acc-icon::after {
  background-color: var(--creator-main-color);
}
#online-creator.term-main__acc .term-main__section-title03::before {
  background-color: var(--creator-main-color);
}
#online-creator.term-main__acc .term-main__section-text a {
  color: var(--creator-main-color);
}
@media only screen and (max-width: 768px) {
  #online-creator.term-main__acc .term-main__section-title03 {
    background-color: #eaf4ff;
  }
} */
/* online-dance */
/* #online-dance.term-main__acc.course .term-main__acc-title {
  background-color: var(--dance-main-color);
}
#online-dance.term-main__acc:not(.course) .term-main__acc-title {
  color: var(--dance-main-color);
}
#online-dance.term-main__acc .term-main__heading {
  color: var(--dance-main-color);
}
#online-dance.term-main__acc .term-main__acc-icon::before,
#online-dance.term-main__acc .term-main__acc-icon::after {
  background-color: var(--dance-main-color);
}
#online-dance.term-main__acc .term-main__section-title03::before {
  background-color: var(--dance-main-color);
}
#online-dance.term-main__acc .term-main__section-text a {
  color: var(--dance-main-color);
}
@media only screen and (max-width: 768px) {
  #online-dance.term-main__acc .term-main__section-title03 {
    background-color: #ffeef5;
  }
} */
/* online-shuuji */
/* #online-shuuji.term-main__acc.course .term-main__acc-title {
  background-color: var(--shuuji-main-color);
}
#online-shuuji.term-main__acc:not(.course) .term-main__acc-title {
  color: var(--shuuji-main-color);
}
#online-shuuji.term-main__acc .term-main__heading {
  color: var(--shuuji-main-color);
}
#online-shuuji.term-main__acc .term-main__acc-icon::before,
#online-shuuji.term-main__acc .term-main__acc-icon::after {
  background-color: var(--shuuji-main-color);
}
#online-shuuji.term-main__acc .term-main__section-title03::before {
  background-color: var(--shuuji-main-color);
}
#online-shuuji.term-main__acc .term-main__section-text a {
  color: var(--shuuji-main-color);
}
@media only screen and (max-width: 768px) {
  #online-shuuji.term-main__acc .term-main__section-title03 {
    background-color: #E4F2D5;
  }
} */
/* online-soroban */
/* #online-soroban.term-main__acc.course .term-main__acc-title {
  background-color: var(--soroban-main-color);
}
#online-soroban.term-main__acc:not(.course) .term-main__acc-title {
  color: var(--soroban-main-color);
}
#online-soroban.term-main__acc .term-main__heading {
  color: var(--soroban-main-color);
}
#online-soroban.term-main__acc .term-main__acc-icon::before,
#online-soroban.term-main__acc .term-main__acc-icon::after {
  background-color: var(--soroban-main-color);
}
#online-soroban.term-main__acc .term-main__section-title03::before {
  background-color: var(--soroban-main-color);
}
#online-soroban.term-main__acc .term-main__section-text a {
  color: var(--soroban-main-color);
}
@media only screen and (max-width: 768px) {
  #online-soroban.term-main__acc .term-main__section-title03 {
    background-color: #FFDFE1;
  }
} */
/* online-tankyu */
/* #online-tankyu.term-main__acc.course .term-main__acc-title {
  background-color: var(--tankyu-main-color);
}
#online-tankyu.term-main__acc:not(.course) .term-main__acc-title {
  color: var(--tankyu-main-color);
}
#online-tankyu.term-main__acc .term-main__heading {
  color: var(--tankyu-main-color);
}
#online-tankyu.term-main__acc .term-main__acc-icon::before,
#online-tankyu.term-main__acc .term-main__acc-icon::after {
  background-color: var(--tankyu-main-color);
}
#online-tankyu.term-main__acc .term-main__section-title03::before {
  background-color: var(--tankyu-main-color);
}
#online-tankyu.term-main__acc .term-main__section-text a {
  color: var(--tankyu-main-color);
}
@media only screen and (max-width: 768px) {
  #online-tankyu.term-main__acc .term-main__section-title03 {
    background-color: #e7f6ea;
  }
} */
/* online-micralish */
/* #online-micralish.term-main__acc.course .term-main__acc-title {
  background-color: var(--micralish-main-color);
}
#online-micralish.term-main__acc:not(.course) .term-main__acc-title {
  color: var(--micralish-main-color);
}
#online-micralish.term-main__acc .term-main__heading {
  color: var(--micralish-main-color);
}
#online-micralish.term-main__acc .term-main__acc-icon::before,
#online-micralish.term-main__acc .term-main__acc-icon::after {
  background-color: var(--micralish-main-color);
}
#online-micralish.term-main__acc .term-main__section-title03::before {
  background-color: var(--micralish-main-color);
}
#online-micralish.term-main__acc .term-main__section-text a {
  color: var(--micralish-main-color);
}
@media only screen and (max-width: 768px) {
  #online-micralish.term-main__acc .term-main__section-title03 {
    background-color: #CAF1FF;
  }
} */
/* online-micraming */
/* #online-micraming.term-main__acc.course .term-main__acc-title {
  background-color: var(--micraming-main-color);
}
#online-micraming.term-main__acc:not(.course) .term-main__acc-title {
  color: var(--micraming-main-color);
}
#online-micraming.term-main__acc .term-main__heading {
  color: var(--micraming-main-color);
}
#online-micraming.term-main__acc .term-main__acc-icon::before,
#online-micraming.term-main__acc .term-main__acc-icon::after {
  background-color: var(--micraming-main-color);
}
#online-micraming.term-main__acc .term-main__section-title03::before {
  background-color: var(--micraming-main-color);
}
#online-micraming.term-main__acc .term-main__section-text a {
  color: var(--micraming-main-color);
}
@media only screen and (max-width: 768px) {
  #online-micraming.term-main__acc .term-main__section-title03 {
    background-color: #DFF4F4;
  }
} */
/* online-game */
/* #online-game.term-main__acc.course .term-main__acc-title {
  background-color: var(--game-main-color);
}
#online-game.term-main__acc:not(.course) .term-main__acc-title {
  color: var(--game-main-color);
}
#online-game.term-main__acc .term-main__heading {
  color: var(--game-main-color);
}
#online-game.term-main__acc .term-main__acc-icon::before,
#online-game.term-main__acc .term-main__acc-icon::after {
  background-color: var(--game-main-color);
}
#online-game.term-main__acc .term-main__section-title03::before {
  background-color: var(--game-main-color);
}
#online-game.term-main__acc .term-main__section-text a {
  color: var(--game-main-color);
}
@media only screen and (max-width: 768px) {
  #online-game.term-main__acc .term-main__section-title03 {
    background-color: #EAE6FF;
  }
} */
/* online-speech */
/* #online-speech.term-main__acc.course .term-main__acc-title {
  background-color: var(--speech-main-color);
}
#online-speech.term-main__acc:not(.course) .term-main__acc-title {
  color: var(--speech-main-color);
}
#online-speech.term-main__acc .term-main__heading {
  color: var(--speech-main-color);
}
#online-speech.term-main__acc .term-main__acc-icon::before,
#online-speech.term-main__acc .term-main__acc-icon::after {
  background-color: var(--speech-main-color);
}
#online-speech.term-main__acc .term-main__section-title03::before {
  background-color: var(--speech-main-color);
}
#online-speech.term-main__acc .term-main__section-text a {
  color: var(--speech-main-color);
}
@media only screen and (max-width: 768px) {
  #online-speech.term-main__acc .term-main__section-title03 {
    background-color: #e0f7ff;
  }
} */