@charset "UTF-8";
.menu-area {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.menu-area .menu-panel {
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  min-width: 175px;
  vertical-align: top;
}
.menu-area .menu-panel .menu-title {
  font-size: 14px;
  font-weight: bold;
  margin: 15px 5px 15px 37px;
  position: relative;
}
.menu-area .menu-panel .menu-title::before {
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: 0;
  content: "";
  left: -30px;
  height: 24px;
  position: absolute;
  top: -3px;
  width: 24px;
}
.menu-area .menu-panel.menu-mypage .menu-title::before {
  background-image: url("../../../../site/img/icon/person_x48.png");
}
.menu-area .menu-panel.menu-mypage .menu-list {
  padding: 0 13px 15px 15px;
}
.menu-area .menu-panel.menu-favorite .menu-title::before {
  background-image: url("../../../../site/img/icon/flag_x48.png");
}
.menu-area .menu-panel.menu-score .menu-title::before {
  background-image: url("../../../../site/img/icon/score_x48.png");
}
.menu-area .menu-panel.menu-review .menu-title::before {
  background-image: url("../../../../site/img/icon/review_x48.png");
}
.menu-area .menu-panel.menu-information {
  min-width: 210px;
}
.menu-area .menu-panel.menu-information .menu-title::before {
  background-image: url("../../../../site/img/icon/information_x48.png");
}
.menu-area .menu-panel.menu-calendar .menu-title::before {
  background-image: url("../../../../site/img/icon/calendar_gr_x48.png");
}
.menu-area .menu-panel._wide {
  min-height: auto;
  padding: 0 15px;
  width: 100%;
}
.menu-area .menu-panel._wide:last-child {
  margin: 20px 0 0 0;
}
.menu-area .menu-panel .menu-list {
  padding: 0 13px 15px 13px;
}
.menu-area .menu-panel .menu-list .menu-list-item {
  margin: 0 0 15px 5px;
  position: relative;
}
.menu-area .menu-panel .menu-list .menu-list-item:last-child {
  margin-bottom: 0;
}
.menu-area .menu-panel .menu-list .menu-list-item::before {
  border: 4px solid transparent;
  border-left: 4px solid #999;
  box-sizing: border-box;
  content: "";
  left: -10px;
  height: 4px;
  position: absolute;
  top: 5px;
  vertical-align: middle;
  width: 4px;
}
.menu-area a {
  color: #0562d9;
}
.menu-area a:hover {
  color: #ff7d00;
}
.menu-area a:visited {
  color: #9720c9;
}
.menu-area._other {
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 40px;
}
.menu-area._other .menu-panel-inner {
  width: 100%;
  padding-bottom: 5px;
  position: relative;
}
.menu-area._other .menu-panel-inner:after {
  content: "";
  display: block;
  background-color: #ccc;
  width: 1px;
  height: calc(100% - 30px);
  position: absolute;
  top: 15px;
  right: 0;
}
.menu-area._other .menu-panel {
  display: flex;
  border: none;
  margin: 0;
}
.menu-area._other .menu-panel:last-child .menu-panel-inner:after {
  display: none;
}
.menu-area._other .menu-panel .menu-list {
  padding: 0 18px 15px 20px;
}
.menu-area._other .menu-panel .menu-title {
  margin: 15px 0 12px 15px;
}
.menu-area._other .menu-panel .menu-title:before {
  background-image: none;
}

.registrationAttention {
  border: solid 4px #ccc;
  padding: 24px 16px;
  text-align: center;
  margin-top: 32px;
}
.registrationAttention > p {
  font-size: 14px;
  text-align: center;
}
.registrationAttention-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
  color: #3b860d;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 4px;
}
.registrationAttention-title > svg {
  fill: #339f36;
  width: 20px;
  height: auto;
}

.border-b_gray {
  border-bottom: 1px solid #ccc;
}

.plan-price {
  color: #c00;
  font-size: 16px;
  font-weight: bold;
}

.plan-point {
  font-weight: bold;
  font-size: 12px;
  color: #c00;
}

.question {
  display: inline-block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  background-color: #fff;
  border-radius: 10px;
  color: #ea5800;
  font-size: 11px;
  vertical-align: baseline;
  cursor: pointer;
}

#__modalBack {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  z-index: 98;
}

.planDetail {
  position: absolute;
  border: 2px solid #999;
  width: 400px;
  background-color: #fff;
  border-radius: 5px;
  top: -225px;
  left: 50%;
  z-index: 10000;
  margin-left: -193px;
}
.planDetail:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 100%;
  left: 50%;
  border-top: 20px solid #999;
  margin-left: -42px;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
}
.planDetail:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 100%;
  left: 50%;
  border-top: 18px solid #fff;
  margin-left: -38px;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}
.planDetail span.closeBtn {
  text-align: right;
  display: block;
  width: 14px;
  position: absolute;
  right: 10px;
  top: 12px;
}
.planDetail p {
  font-weight: normal;
  font-size: 12px;
  text-align: left;
}
.planDetail ul {
  display: table;
  width: 100%;
  border: none;
  margin-top: 5px;
}
.planDetail ul li {
  display: table-cell;
  vertical-align: top;
}
.planDetail ul li ul {
  display: block;
}
.planDetail ul li ul li {
  display: block;
  width: 90px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.planDetail ul li ul li:first-child {
  border-left: none;
}
.planDetail ul li ul li.tips-header {
  background-color: #fbf8e9;
  color: #ea5800;
  padding: 5px 0;
  text-align: center;
  font-weight: bold;
}
.planDetail ul li ul li.tips-icons {
  margin-top: 5px;
  width: 90px;
  height: 24px;
}

.reservList {
  position: absolute;
  width: 400px;
  top: -245px;
  left: 50%;
  text-align: center;
  background-color: #fff;
  border: 2px solid #999;
  border-radius: 5px;
  margin-left: -200px;
  font-weight: normal;
  z-index: 100;
}
.reservList:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 100%;
  left: 50%;
  border-top: 20px solid #999;
  margin-left: -42px;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
}
.reservList:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 100%;
  left: 50%;
  border-top: 18px solid #fff;
  margin-left: -38px;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}
.reservList span.closeBtn {
  text-align: right;
  display: block;
  width: 14px;
  position: absolute;
  right: 10px;
  top: 12px;
}

ul.month-help_header, ul.month-help_content {
  display: table;
}

.mg_t35 {
  margin-top: 35px;
}

ul.month-help_header li {
  background-color: #e6e6e6;
  border-left: 1px solid #ccc;
  display: table-cell;
  vertical-align: middle;
  width: 126px;
  height: 38px;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  font-weight: normal;
}

ul.month-help_header {
  margin-top: 10px;
}

ul.month-help_header li:last-child, ul.month-help_content li:last-child {
  border-right: 1px solid #ccc;
}

ul.month-help_content li {
  background-color: #fff;
  border-left: 1px solid #ccc;
  display: table-cell;
  vertical-align: middle;
  width: 126px;
  height: 38px;
  border-bottom: 1px solid #ccc;
  font-weight: normal;
}

.blue {
  color: #0D5186;
  background: #EBF6FF;
}

.red {
  color: #971709;
  background: #fff1F0;
}

/* .rsvCalendarの設定は統一するので削除
.rsvCalendar th {
  background: import.$c_colorGray2;
}

.rsvCalendar th, .rsvCalendar td {
  border-right: 1px solid import.$c_lightGray;
  border-bottom: 1px solid import.$c_lightGray;
}

.rsvCalendar {
  table-layout: fixed;
  width: 100%;
  margin-top: 10px;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid import.$c_lightGray;
  border-left: 1px solid import.$c_lightGray;
}
*/
.mypage-recommend-cassette {
  border: 2px solid #339f36;
  border-radius: 8px;
  margin: 10px 0;
  padding: 10px;
}

.search-result_course-info_icon {
  width: 75%;
  text-align: left;
  margin-bottom: 5px;
  margin-top: 21px;
}

.search-result_course-info_icon_practice {
  display: inline-block;
  width: 110px;
  height: 20px;
  text-align: center;
  line-height: 20px;
}

.search-result_course-info_icon_practice.ok {
  background-color: #4cab4f;
  border: 1px solid #4cab4f;
  border-radius: 3px;
  color: #fff;
}

.search-result_course-info_icon_practice.ng {
  border: 1px solid #333;
  border-radius: 3px;
  color: #333;
}

.search-result_course-info_icon_coupon.ng {
  border: 1px solid #333;
  border-radius: 3px;
  color: #333;
}

.search-result_course-info_icon_point {
  display: inline-block;
  width: 110px;
  height: 20px;
  text-align: center;
  line-height: 20px;
}

.search-result_course-info_icon_point.ok {
  border: 1px solid #4cab4f;
  border-radius: 3px;
  color: #4cab4f;
}

.search-result_course-info_icon_point.ng {
  border: 1px solid #333;
  border-radius: 3px;
  color: #333;
}

.search-result_course-info_icon_coupon {
  display: inline-block;
  width: 110px;
  height: 20px;
  text-align: center;
  line-height: 20px;
}

.search-result_course-info_icon_coupon.ok {
  border: 1px solid #ea5800;
  border-radius: 3px;
  color: #ea5800;
}

.search-result_course-info_icon_coupon.ng {
  border: 1px solid #333;
  border-radius: 3px;
  color: #333;
}

.search-result_course-info {
  position: relative;
}

.search-result_course-info ul li {
  display: inline-block;
}

.search-result_course-info_content {
  width: 62%;
  vertical-align: top;
  margin: 0 10px;
}

.search-result_course-info_img_gallery {
  position: absolute;
  width: 150px;
  height: 20px;
  padding-left: 10px;
  padding-top: 3px;
  background-color: #fff;
  top: 93px;
  opacity: 0.8;
  text-decoration: none;
  font-size: 11px;
  left: 0;
  box-sizing: border-box;
}

a.calendar_link {
  color: #000;
  text-decoration: none;
}

.calendar_btn-position {
  position: absolute;
  top: 0;
  right: 0;
}

.calendar_btn {
  position: relative;
  width: 150px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: right;
  padding-right: 12px;
  margin-left: auto;
  line-height: 40px;
  box-shadow: 0px 2px 0px #ccc;
  font-weight: bold;
  font-size: 14px;
}

.calendar_btn:hover {
  background-color: #eee;
  color: #2ea130;
}

.calendar_btn:active {
  color: #2ea130;
  background-color: #eee;
  box-shadow: 0 2px 0 #ccc inset;
}

.calendar_btn:after {
  content: "";
  position: absolute;
  background: url(../../../img/icon_calendar.png) no-repeat;
  width: 40px;
  height: 30px;
  top: 6px;
  left: 10px;
  background-size: 28px;
}

.supplement {
  color: #0562d9;
  position: relative;
  top: -1px;
}

.rsvCalendar .calendar-plan-name {
  padding: 5px;
}

.camlabel {
  display: inline-block;
}
.camlabel .camlabel-link {
  color: #c00;
  font-weight: 300;
  padding: 2px 0;
}
.camlabel .camlabel-link:hover {
  color: #fa8131;
}
.camlabel._al {
  display: block;
  position: relative;
  height: 28px;
}
.camlabel._al .camlabel-link {
  color: #c00;
  right: 0;
  padding: 2px 0;
  position: absolute;
  white-space: nowrap;
}
.camlabel._al .camlabel-link:hover {
  color: #fa8131;
}

.btn-area {
  background-color: #eee;
  margin-top: 30px;
  padding: 40px 30px;
}

.border_top_green {
  border-top: 2px solid #2ea130;
}

.sort-type {
  position: relative;
  top: -5px;
}

.sort-round-border {
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.sort-round-border dl {
  margin: 5px 10px 5px 5px;
}
.sort-round-border dt,
.sort-round-border dd {
  display: inline;
}

.reserveid {
  position: relative;
  height: 30px;
  background-color: #999;
}
.reserveid .reserveid_number {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: -10px auto 0;
  color: #ffffff;
  font-size: fs_L;
  font-weight: bold;
  text-align: center;
}
.reserveid .reserveid_timestamp {
  position: absolute;
  top: 50%;
  right: 10px;
  margin: -10px auto 0;
  color: #ffffff;
  font-size: 12px;
}

.canceledstep {
  list-style: none;
  overflow: hidden;
  width: 480px;
  height: 42px;
  margin: 20px auto;
  border: 1px solid #ccc;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.canceledstep li {
  position: relative;
  float: left;
  height: 42px;
  line-height: 42px;
}
.canceledstep .second {
  width: 227px;
  padding-left: 10px;
  color: #ccc;
  background-color: #eee;
}
.canceledstep .first {
  width: 233px;
  padding-left: 10px;
  color: #3b860d;
  background-color: #fff;
}
.canceledstep .first:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 21px solid transparent;
  border-left-color: #fff;
  top: 0;
  right: -42px;
  z-index: 2;
}
.canceledstep .first:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 21px solid transparent;
  border-left-color: #ccc;
  top: 0;
  right: -43px;
  z-index: 1;
}

.btn_radio-input {
  display: none;
}
.btn_radio-input + .btn_radio-lable {
  position: relative;
  line-height: 18px;
  margin: 0 8px 0 0;
  padding-left: 24px;
  display: inline-block;
  cursor: pointer;
}
.btn_radio-input + .btn_radio-lable::before {
  content: "";
  background-image: url("../../../../site/img/page/reserve/radioBtn_off.png");
  background-size: contain;
  border: none;
  position: absolute;
  width: 20px;
  height: 20px;
  top: -1px;
  left: 0;
  margin: 0;
}
.btn_radio-input:checked + .btn_radio-lable {
  cursor: auto;
}
.btn_radio-input:checked + .btn_radio-lable::before {
  background-image: url("../../../../site/img/page/reserve/radioBtn_on.png");
}

.canceled_table-wrap {
  width: 100%;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
}
.canceled_table-wrap > ul {
  display: flex;
  border-top: 1px solid #ccc;
}
.canceled_table-wrap > ul > li {
  vertical-align: top;
}

.canceled_table_title {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 140px;
  padding: 10px;
  background-color: #eee;
  vertical-align: top;
  font-weight: bold;
}
.canceled_table_title ._required {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 4px 3px 4px;
  background-color: #fa8131;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.canceled_table_content {
  width: 100%;
  padding: 20px;
}
.canceled_table_content ._list > li {
  margin-top: 15px;
}
.canceled_table_content ._list > li:first-child {
  margin-top: 0;
}
.canceled_table_content ._textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 5px;
  font-size: 12px;
}
.canceled_table_content ._textarea.is-over {
  background: #fceaf0;
}

.canceled_errortext {
  height: 25px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.canceled_errortext > span {
  display: none;
  font-size: 14px;
  font-weight: bold;
  color: #666;
}
.canceled_errortext > span.is-show {
  display: inline;
}
/*# sourceMappingURL=../../_mapDartSass/page/my/index.css.map */
