html {
  font-size: 14px;
}

a,
a:link,
a:visited,
a:hover {
  color: #555;
}

@media (min-width: 480px) {
  html {
    font-size: 16px;
  }
}

.disable {
  display: none;
}

.Main__container {
  margin: 0 auto;
  font-family: sans-serif;
  color: #666666;
}

.ContactDetail_block {
  background-color: #fff;
  margin: 0 1.14rem 24px;
  padding: 1px 0 0;
}

#TrialContactForm {
  position: relative;
  max-width: 36rem;
  margin: 0 auto;
}

.TrialContactForm__calendar_title {
  margin: 24px 0;
  color: #555;
  text-align: center;
  line-height: 1.6;
  font-size: 18px;
}

.TrialContactForm__title {
  margin: 24px 0 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666666;
}

.TrialContactForm__attention {
  color: #666666;
  margin-left: 3px;
  font-size: 12px;
}

.TrialContactForm__attention_required {
  font-size: 12px;
  color: #ea3425;
}

.TrialContactForm__birth_spouse {
  display: flex;
  justify-content: space-between;
}

.TrialContactForm__gender {
  width: 32%;
}

.TrialContactForm__birth {
  width: 32%;
}

.TrialContactForm__spouse {
  width: 32%;
}
@media screen and (max-width: 480px) {
  .TrialContactForm__birth_spouse {
    flex-wrap: wrap;
  }

  .TrialContactForm__gender {
    width: 48%;
  }

  .TrialContactForm__birth {
    width: 48%;
  }

  .TrialContactForm__spouse {
    width: 48%;
  }
}

#TrialContactForm .error {
  display: block;
  text-align: left;
  font-size: 1rem;
  color: #f00;
  font-weight: normal;
}

.TrialContactForm__subtitle {
  display: inline-block;
  background-color: #235a97;
  color: #fff;
  font-size: 0.85rem;
  padding: 0.3rem 0.5rem;
}

.TrialContactForm__field_text {
  display: block;
  padding: 0 12px;
  height: 48px;
  line-height: 1.6;
  font-size: 1rem;
  background: #fff;
  width: 100%;
  border: 2px solid #cfcfcf;
  box-sizing: border-box;
  border-radius: 4px;
}
.TrialContactForm__field_text::placeholder {
  color: #afafaf;
}

.field_select {
  overflow: hidden;
}
.field_select select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
  appearance: none;
}
.field_select select::-ms-expand {
  display: none;
}
.field_select.field_sl {
  position: relative;
}
.field_select.field_sl::before {
  position: absolute;
  top: 1.4em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #c4c4c4;
  pointer-events: none;
}
.field_select.field_sl select {
  padding: 8px 38px 8px 8px;
  color: #333333;
}

.TrialContactForm__calendar_nav {
  display: flex;
  font-size: 0.85rem;
  justify-content: space-between;
}

.TrialContactForm__arrow {
  margin-bottom: 1px;
  padding: 0 2px;
}

.TrialContactForm__calendar__button {
  border: 1px solid #b5b5b5;
  color: #25B2C7;
  border-radius: 2rem;
  font-weight: bold;
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.TrialContactForm__calendar__button_prev {
  border: 1px solid #b5b5b5;
  color: #25B2C7;
  border-radius: 2rem;
  font-weight: bold;
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.TrialContactForm__calendar__button_prev span {
  background-image: url(../img/trial_contact/active_arrow_left.svg);
  width: 10px;
  height: 12px;
  background-repeat: no-repeat;
}

.TrialContactForm__calendar__button_next {
  border: 1px solid #b5b5b5;
  color: #25B2C7;
  border-radius: 2rem;
  font-weight: bold;
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.TrialContactForm__calendar__button_next span {
  background-image: url(../img/trial_contact/active_arrow_right.svg);
  width: 10px;
  height: 12px;
  background-repeat: no-repeat;
}

.TrialContactForm__calendar__button_disable_prev {
  color: #b5b5b5;
  cursor: default;
}

.TrialContactForm__calendar__button_disable_prev span {
  background-image: url(../img/trial_contact/arrow_left.svg);
}

.TrialContactForm__calendar__button_disable_next {
  color: #b5b5b5;
  cursor: default;
}

.TrialContactForm__calendar__button_disable_next span {
  background-image: url(../img/trial_contact/arrow_right.svg);
}

@media (max-width: 320px) {
  .TrialContactForm__title {
    align-items: center;
    text-align: center;
    color: #666666;
  }

  .ContactDetail_block {
    background-color: #fff;
    margin: 0 1.14rem;
    padding: 1px 12px 0;
  }

  .TrialContactForm__calendar__button {
    padding: 8px 8px;
    display: flex;
    align-items: center;
  }
}

.TrialContactForm__calendar {
  font-size: 0.85rem;
  line-height: 1rem;
}

.TrialContactForm__calendar_loading {
  border: 4px solid #f0f0f0;
  border-top: 4px solid #f99eb8;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 0.6s linear infinite;
  margin: 200px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.TrialContactForm__calendar_table {
  width: 100%;
  text-align: center;
  margin: 10px 0 0;
  border: 1px solid #e1e1e1;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  visibility: hidden;
}

.TrialContactForm__calendar_slotsColumn {
  width: 4.5rem;
}

.TrialContactForm__calendar_slot {
  font-size: 0.9rem;
  font-weight: 300;
  background: #f2f2f2;
  height: 40px;
  padding: 0.3rem 0;
  border-top: 1px solid #e1e1e1;
}

.TrialContactForm__calendar_slot .startTime {
  font-weight: bold;
}

.TrialContactForm__calendar_slot .endTime {
  font-size: 0.8rem;
}

.TrialContactForm__calendar_timeCellcolumn {
  width: 4.5rem;
  border-left: 1px solid #e1e1e1;
}

.timeCell {
  padding: 0.3rem 0;
  height: 40px;
  line-height: 40px;
  border-top: 1px solid #e1e1e1;
}

.TrialContactForm__calendar_date {
  font-size: 12px;
  line-height: 0.9rem;
  padding: 0.5rem 0;
  font-weight: 300;
  background: #f2f2f2;
  height: 44px;
}

.TrialContactForm__calendar_date span {
  font-size: 12px;
  display: block;
  margin-bottom: 0.5rem;
}

#monthText {
  font-size: 12px;
  display: inline;
  margin-bottom: 0;
}

#dateText {
  font-size: 12px;
  display: inline;
  margin-bottom: 0;
}

.TrialContactForm__calendar_table_upper_left {
  background: #f2f2f2;
}

.TrialContactForm__calendar_table_full {
  background: #f2f2f2;
}

.TrialContactForm__calendar_table_holiday {
  color: #d23e61;
}

.TrialContactForm__calendar_table_sat {
  color: #2b9fe0;
}

.TrialContactForm__calendar_select {
  cursor: pointer;
  color: #60C7D5;
  font-size: 1rem;
  font-weight: bold;
}

.TrialContactForm__calendar_selected {
  background-color: #d4dcf7;
}

.TrialContactForm__calendar_attention {
  font-size: 13px;
  margin: 0.5rem 0 0.5rem;
  color: #949494;
}

.TrialContactForm__calendar_attention_icon {
  color: #60C7D5;
  font-weight: bold;
}

.TrialContactForm__active {
  vertical-align: middle;
  padding-bottom: 3px;
  pointer-events: none;
  cursor: pointer;
  width: 14px;
}

.TrialContactForm__calendar_choicee_date {
  display: flex;
}

.TrialContactForm__calendar_choice {
  border: 1px solid #999;
  margin-left: 5px;
  padding-left: 5px;
  width: 16rem;
  line-height: 1.8rem;
  pointer-events: none;
}

td.TrialContactForm__calendar_switching_date {
  background-color: #dcdcdc;
  border: none;
  font-size: 12px;
  border-left: 1px solid #aaa;
  max-width: 35%;
}

.TrialContactForm__select {
  position: absolute;
  display: block;
  padding: 0 12px;
  height: 3.3rem;
  line-height: 1.6;
  background: transparent;
  font-size: 1rem;
  border: 1px solid #999;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  z-index: 1;
}

.TrialContactForm__select::-ms-expand {
  display: none;
}

.TrialContactForm__textarea {
  display: block;
  padding: 0 12px;
  height: 7.3rem;
  line-height: 1.6;
  box-sizing: border-box;
  font-size: 1rem;
  background: #fff;
  border: 1px solid #999;
  border-radius: 6px;
  width: 100%;
  margin: 0.3rem 0;
}

#TrialContactForm__agree {
  border: 1px solid #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-content: flex-end;
  font-weight: 400;
  padding: 0.7rem;
  margin-bottom: 0.5rem;
  font-size: 1.07rem;
  color: #333;
  line-height: 1.7;
  cursor: pointer;
}

.TrialContactForm__checkbox {
  border: 1px solid #ccc;
  width: 24px;
  height: 24px;
  background-color: #fff;
  margin: 0 6px 0 0;
}

.TrialContactForm__checkbox_checked {
  background-color: #235994;
}

.TrialContactForm__checkbox_check {
  width: 16px;
  height: 16px;
  fill: #ffffff;
  margin: 4px 0 0 4px;
  vertical-align: top;
}

.calendar_note {
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  margin: 24px 0;
  color: #25B2C7;
}

@media screen and (min-width: 740px) {
  .calendar_note {
    font-size: 16px;
  }
}

.TrialContactForm__note {
  margin: 32px 0 32px 0;
  text-align: center;
  font-size: 11px;
}

.TrialContactForm__privacy_link {
  font-size: 11px;
  font-weight: 500;
  margin: 24px 0 14px;
}

.TrialContactForm__privacy_link a {
  text-decoration: underline;
}
.TrialContactForm__privacy_link {
  text-decoration: underline;
  font-size: 10px;
}
.TrialContactForm__attention_note {
  width: 400px;
  max-width: 100%;
  margin: 1rem auto 0;
}
.TrialContactForm__cancel_note {
  text-align: left;
  font-size: 11px;
  margin: 8px auto 8px;
  flex-wrap: wrap;
  max-width: 400px;
}

.TrialContactForm__mail_magazine {
  margin: 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: left;
}

.TrialContactForm__mail_magazine_checkbox {
  cursor: pointer;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-image: url(../img/trial_contact/icon_check_gray_b.png);
}

.TrialContactForm__mail_magazine_checkbox:checked {
  background-image: url(../img/trial_contact/icon_check.png);
}

.TrialContactForm__mail_magazine_label {
  cursor: pointer;
  color: #000;
  font-size: 12px;
  padding: 0 0 0 4px;
}

.TrialContactForm__mail_magazine_text {
  text-align: left;
  font-size: 10px;
  margin: 2px 0 0;
  color: #000;
}

@media (min-width: 520px) {
  .br-sp {
    display: none;
  }

  .TrialContactForm__mail_magazine {
    justify-content: center;
  }

  .TrialContactForm__mail_magazine_text {
    text-align: center;
  }
}

.submit__btn_mini {
  display: block;
  font-size: 9px;
}

.TrialContactForm__promise {
  margin: 1.5rem 0 0.6rem;
  color: #333;
  font-size: 0.92rem;
  text-align: center;
}

.TrialContactForm__submitbtn {
  display: block;
  box-sizing: border-box;
  max-width: 100%;
  border-radius: 38px;
  margin: 24px auto 24px;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
  color: #ffffff;
  width: 400px;
  height: 60px;
  background: #F77261;
  border-radius: 28px;
}

.TrialContactForm__submitbtn:hover,
.TrialContactForm__submitbtn:active {
  opacity: 0.8;
}

.TrialContactForm__thanx {
  margin: 0.2rem 0 1.5rem;
  text-align: center;
}

.TrialContactForm__selectedDate {
  margin: 1.5rem 0 0;
  text-align: center;
  font-size: 14px;
  color: #666666;
}

.TrialContactForm__selectedDate_title {
  display: inline-block;
  background-color: #f99eb8;
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 20px;
  border-radius: 6px 0 0 6px;
}

#TrialContactFormSelectedDate {
  padding: 0 0 0 1rem;
  font-weight: bold;
  font-size: 18px;
}

.Course__reserveByPhone {
  margin: 8px auto 40px;
  text-align: center;
  font-size: 16px;
  color: #555;
  max-width: 470px;
}

.Course__reserveByPhoneTime {
  font-size: 12px;
}

.Course__reserveByPhoneNumber {
  display: block;
  box-sizing: border-box;
  border: 1px solid #b5b5b5;
  color: #5080c9;
  border-radius: 1rem;
  padding: 3px 20px 3px 40px;
  margin: 16px auto 0;
  height: 35px;
  width: 200px;
  cursor: pointer;
  position: relative;
}

.Course__reserveByPhoneNumber svg {
  fill: #60C7D5;
}

.Course__reserveByPhoneIcon {
  position: absolute;
  top: 6px;
  left: 15px;
}

.Course__header {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-color: #ffffff;
  background-image: url(../img/trial_contact/calendar.jpg);
  width: 100%;
  height: 60vw;
}

.Course__header_result {
  margin-top: 18px;
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
}

.Line_link img {
  width: 100%;
}

.Course__header_consultant {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-color: #bcbcbc;
  background-image: url(../img/trial_contact/course_header_rola2.png);
  width: 100%;
}

.Course__header_top {
  display: flex;
  justify-content: center;
  color: #f99eb8;
  text-align: left;
  width: 100%;
  margin: 22px 0 0 0;
}

.Course__header_text1 {
  font-size: 15px;
}

.Course__header_text2 {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 500;
}

.Course__header_text3 {
  font-size: 12px;
}

.Course__header_free {
  box-sizing: border-box;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 13px 0 0;
  margin: 0 14px 0 0;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
  text-align: center;
  background-color: #f99eb8;
}

/* for calendarb.html */
.Form__header_b {
  margin-top: 18px;
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
}
.Form__title_b {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fafafa;
  margin-bottom: 8px;
}
.Form__title_b__text {
  font-family: "Hiragino Kaku Gothic Pro";
  font-style: normal;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 10px;
  color: #3c3c3c;
}
.Form__footer_b {
  padding-top: 32px;
  height: 188px;
  background: #fafafa;
}
.Form__footer_b__text_1 {
  display: flex;
  justify-content: center;
}
.Form__footer_b__text_2 {
  display: flex;
  justify-content: center;
}
.Form__footer_b__business_hour_1 {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.Form__footer_b__business_hour_2 {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.Form__footer_b__phone_container {
  display: flex;
  justify-content: center;
}
.Form__footer_b__phone {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 36px;
  /* left: 87px; */
  /* top: 1104px; */
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 32px;

  font-family: "Hiragino Sans";
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 10px;

  color: #ee85a5;
}

.Form__header {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-color: #ffffff;
  background-image: url(../img/trial_contact/form_header.jpg);
  width: 100%;
  height: 53vw;
}

.Form__header_result {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-color: #ffffff;
  background-image: url(../img/trial_contact/result_header.jpg);
  width: 100%;
  height: 52vw;
}

.Form__header_top {
  display: flex;
  justify-content: center;
  color: #f99eb8;
  text-align: left;
  width: 100%;
  margin: 22px 0 0 0;
}

.Form__header_text1 {
  font-size: 15px;
}

.Form__header_text2 {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 500;
}

.Form__header_text3 {
  font-size: 12px;
}

.Form__header_free {
  box-sizing: border-box;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 13px 0 0;
  margin: 0 14px 0 0;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
  text-align: center;
  background-color: #f99eb8;
}

.Course__headline {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  margin: 1rem 0 -32px;
}

.Course__selectedStore {
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  margin: 1rem 0;
}

.Course__overview,
.Course__overview_note {
  padding: 16px;
  font-size: 14px;
  flex-wrap: wrap;
  line-height: 2;
  text-align: left;
}

.Course__overview dt {
  width: 55px;
  margin: -1px 0 0;
  padding: 8px 0 0;
  border-top: 1px solid #949494;
  border-bottom: 1px solid #949494;
  color: #8a8a8a;
  font-size: 14px;
}

.Course__overview dd {
  width: 250px;
  margin: -1px 0 0;
  padding: 10px 0;
  border-top: 1px solid #949494;
  border-bottom: 1px solid #949494;
  font-size: 13px;
}

.Course__overview_address {
  font-size: 10px;
  color: #666;
}

.Course__overview_store_wrapper {
  color: #f99eb8;
}

.priceList_container {
  background-color: #fff;
  margin: 0 1.14rem;
  padding: 1px 24px 0;
}

@media screen and (min-width: 740px) {
  .Course__header {
    height: 290px;
  }

  .Course__header_result {
    margin-top: 18px;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
  }

  .Line_link {
    margin: 0 auto;
    max-width: 640px;
  }

  .Course__header_consultant {
    height: 400px;
  }

  .Course__container {
    max-width: 700px;
  }

  .Course__header_free {
    width: 100px;
    height: 100px;
    font-size: 24px;
    line-height: 34px;
    padding-top: 15px;
    margin-right: 30px;
  }

  .Course__header_text1 {
    font-size: 22px;
  }

  .Course__header_text2 {
    font-size: 32px;
    font-weight: 400;
  }

  .Course__header_text3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
  }

  .Form__header {
    height: 289px;
  }

  .Form__header_result {
    height: 400px;
  }

  .Form__header_free {
    width: 100px;
    height: 100px;
    font-size: 24px;
    line-height: 34px;
    padding-top: 15px;
    margin-right: 30px;
  }

  .Form__header_text1 {
    font-size: 22px;
  }

  .Form__header_text2 {
    font-size: 32px;
    font-weight: 400;
  }

  .Form__header_text3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
  }

  .ShareButtons {
    width: 700px;
    max-width: inherit;
  }

  .Course__overview {
    font-size: 14px;
    padding: 32px 48px;
  }
  .Course__overview_note {
    padding: 0 48px 32px;
    font-size: 14px;
    flex-wrap: wrap;
    line-height: 2;
    text-align: left;
  }
  .Course__overview dt {
    width: 100px;
  }
  .Course__overview dd {
    width: 600px;
  }

  .priceList_container {
    background-color: #fff;
    margin: 0 1.14rem;
    padding: 1px 24px 0;
  }

  .priceList_img {
    max-width: 520px;
    height: auto;
    margin: auto;
  }

  .request_step {
    text-align: center;
  }

  .request_step img {
    max-width: 500px;
    width: 500px;
    height: auto;
  }

  .AnotherStores_inks_container {
    background-color: #fff;
    margin: 0 1.14rem;
    padding: 1px 24px 0;
  }
}

.Result__container {
  margin: 2rem auto 2.5rem;
  width: 480px;
}
.Result__container p {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 24px;
}

.Result__container_sub_title {
  text-align: left;
  font-weight: bold;
  font-size: 14px;
}

.Result_container_ml {
  margin-left: 80px !important;
}

@media (max-width: 450px) {
  .Result__container {
    margin: 2rem auto 2.5rem;
    width: 320px;
  }
  .Result__container p {
    text-align: center;
    font-weight: bold;
    margin-bottom: 24px;
  }
  .Result__container span {
    text-align: left;
  }
  .Result__container span {
    margin-left: 0;
  }
  .Result_container_ml {
    margin-left: 70px !important;
  }
  .TrialContactForm__arrow {
    margin-bottom: 1px;
    padding: 0 2px;
  }
}

@media (max-width: 320px) {
  .Result__container {
    margin: 2rem auto 2.5rem;
    width: 300px;
  }
  .Result__container p {
    text-align: center;
    font-weight: bold;
    margin-bottom: 24px;
  }
  .Result__container span {
    text-align: left;
  }
  .Result__container span {
    margin-left: 0;
  }
  .Result_container_ml {
    margin-left: 70px !important;
  }
}

@media (min-width: 768px) {
  .Result__container {
    margin: 2rem auto 2.5rem;
    width: 480px;
  }
}

.Training__image_container {
  margin: 0 auto 60px;
  max-width: 480px;
}

.Training__image_title {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 15px;
  color: #666666;
  padding: 21px 0 10px 0;
}

.Training__image_movie {
  position: relative;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
}

.Training__image_movie iframe {
  position: absolute;
  top: 0;
  right: 9px;
  width: 95%;
  height: 95%;
}

.Title__container {
  margin: 2.5rem 0 2rem;
  text-align: center;
}

.Title__label {
  text-align: center;
  font-size: 12px;
  color: #999999;
}

.Title__title {
  display: inline-block;
  padding-bottom: 2px;
  font-size: 20px;
  text-align: center;
}

.Title__title_inner {
  background: linear-gradient(transparent 70%, #f99eb8 70%);
  padding: 0 5px 2px;
  font-weight: 400;
}

.Footer__container {
  background-color: #666;
}

.Course__description {
  font-size: 14px;
  margin: 0 auto;
  padding: 0.6rem 0 0 0;
  background-color: #fafafa;
  max-width: 34rem;
}

@media screen and (min-width: 740px) {
  .Course__description {
    width: 544px;
    margin: 0 auto 56px;
  }
}

.Course__header_points {
  display: flex;
  justify-content: space-around;
  max-width: 370px;
  margin: 0 auto 1.6rem;
}

.Course__header_point {
  box-sizing: border-box;
  width: 31vw;
  height: 31vw;
  max-width: 103px;
  max-height: 103px;
  border-radius: 50%;
  margin: 0 7px;
  padding: 22px 0 0;
  background-color: #fff;
  border: 3px #000 solid;
  font-size: 14px;
  color: #000;
  text-align: center;
  font-size: 17px;
  line-height: 22px;
}

@media screen and (min-width: 740px) {
  .Course__header_point {
    width: 140px;
    height: 140px;
    max-width: inherit;
    max-height: inherit;
    border-width: 4px;
    padding-top: 40px;
  }
}

@media screen and (min-width: 740px) {
  .Course__header_points {
    width: 460px;
    max-width: inherit;
  }
}

.Course__header_point.Course__header_point3 {
  padding-top: 16px;
}

@media screen and (min-width: 740px) {
  .Course__header_point.Course__header_point3 {
    padding-top: 16px;
  }

  .Course__header_point.Course__header_point3 {
    padding-top: 31px;
  }
}

.Course__header_point_s {
  display: block;
  margin: 3px 0 0;
  font-size: 10px;
  line-height: 12px;
}

.text-bold {
  font-weight: bold;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.small-line-height {
  line-height: 1.5;
}

.Stores_store {
  display: flex;
  margin: 1rem 17px 0;
  text-align: left;
  border-top: 1px solid #949494;
  width: 96vw;
}

.Stores__list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.Stores__img {
  margin: 2rem 15px 2rem 0;
  flex-grow: 0;
}

.Stores__address {
  font-size: 12px;
  color: #666;
  margin: 2rem 0 0;
  flex-grow: 1;
}

@media screen and (min-width: 740px) {
  .Stores_store {
    max-width: 380px;
    width: 45vw;
    margin: 1rem 0 0;
  }
}

#TopContents__Rola_video {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 740px) {
  #TopContents__Rola_video {
    display: block;
    width: 460px;
    max-width: 96vw;
    margin: 0 auto;
  }
}

.Review___container {
  margin: 48px 0 4rem;
  text-align: center;
}

.Review_Title__container {
  margin: 1rem 0;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .scroll_list {
    margin: 0 auto;
    padding: 0;
    width: 100% !important;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    justify-content: start;
  }
  .scroll_list li {
    display: inline-block;
    display: inline !important;
    list-style: none;
    height: 256px;
    vertical-align: top !important;
    display: table-cell !important;
  }
}

.scroll_list {
  margin: 0 auto;
  width: 45%;
}

.scroll_list li {
  display: inline-block;
  list-style: none;
  height: 256px;
}

@media screen and (min-width: 451px) {
  .scroll_list li img {
    width: 280px;
  }
}

.list3 {
  flex-direction: row;
  flex-wrap: wrap;
}

.list5 {
  display: none !important;
}

.Maintenance {
  box-sizing: border-box;
  background: rgba(235, 75, 75, 0.1);
  border-radius: 6px;
  margin: 24px auto 0;
  width: calc(100vw - 24px);
  max-width: 544px;
  padding: 16px 12px;
  color: #eb4b4b;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.Maintenance__title {
  font-weight: bold;
  line-height: 1;
}

.Maintenance__text {
  margin: 8px 0 0;
}

.validate_error_balloon {
  display: none;
  position: absolute;
  width: 205px;
  padding: 8px;
  z-index: 999;
  bottom: 207px;
  left: 95px;
  background-color: rgb(237, 0, 0);
  border-radius: 5px;
  text-align: left;
  line-height: 100%;
  color: #ffffff;
  font-weight: bold;
  font-size: 12px;
}

.validate_error_balloon:before {
  display: block;
  content: "";
  position: absolute;
  bottom: -12px;
  left: 7px;
  border: 10px solid transparent;
  border-top-width: 0;
  border-right-width: 13px;
  border-bottom-width: 13px;
  border-right-color: rgb(237, 0, 0);
  height: 0;
  width: 0;
  z-index: 1;
}

#TrialContactForm .validate_error_balloon .error {
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: bold;
  padding: 3px;
  line-height: 16px;
}
