@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "hiragino-kaku-gothic-pron", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: normal;
  line-height: 1.8em;
  color: #2f2e2e;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  min-width: 312px;
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: 0.2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  line-break: normal;
  text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 500px) {
  body {
    font-size: 1.45rem;
  }
}
@media screen and (min-width: 501px) {
  body {
    font-size: 1.6rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  display: inline-block;
  color: #166eb8;
  text-decoration: underline;
  transition-property: opacity;
  transition-duration: 0.2s;
}
a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 500px) {
  input[type=radio] {
    margin-right: 6px;
  }
}
@media screen and (min-width: 501px) {
  input[type=radio] {
    margin-right: 6px;
  }
}

.checkbox input[type=checkbox] {
  display: none;
  margin: 0;
}
.checkbox input[type=checkbox]:checked + label::before {
  background-image: url("../../img/checkbox-on.svg") !important;
}
.checkbox input[type=checkbox]:disabled + label::before {
  background-image: url("../../img/checkbox-disabled.svg") !important;
}
.checkbox input[type=checkbox]:disabled + label:hover {
  cursor: default;
}
.checkbox label {
  display: flex;
  text-align: left;
}
.checkbox label:before {
  content: "";
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 30px;
  position: relative;
  flex-shrink: 0;
  margin-right: 10px;
  background-image: url("../../img/checkbox-off.svg");
}
@media screen and (max-width: 500px) {
  .checkbox label:before {
    width: 26px;
  }
}
@media screen and (min-width: 501px) {
  .checkbox label:before {
    width: 30px;
  }
}
input[type=text],
input[type=password],
input[type=date],
input[type=datetime-local],
select {
  height: 60px;
}

input[type=text],
input[type=password],
input[type=date],
input[type=datetime-local],
textarea,
select {
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  font-weight: normal;
  background-color: white;
  padding: 0.3em 0.6em;
  min-width: 100px;
  max-width: 100%;
  text-align: left;
  font-size: 2.2rem;
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=date]::placeholder,
input[type=datetime-local]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #bcbcbc;
}
input[type=text]:disabled,
input[type=password]:disabled,
input[type=date]:disabled,
input[type=datetime-local]:disabled,
textarea:disabled,
select:disabled {
  color: #858585;
  opacity: 1;
  background-color: #ebebeb;
}
input[type=text]:disabled:focus, input[type=text]:disabled:active,
input[type=password]:disabled:focus,
input[type=password]:disabled:active,
input[type=date]:disabled:focus,
input[type=date]:disabled:active,
input[type=datetime-local]:disabled:focus,
input[type=datetime-local]:disabled:active,
textarea:disabled:focus,
textarea:disabled:active,
select:disabled:focus,
select:disabled:active {
  outline: none;
}
input[type=text].readonly,
input[type=password].readonly,
input[type=date].readonly,
input[type=datetime-local].readonly,
textarea.readonly,
select.readonly {
  background-color: #ebebeb;
  color: #858585;
}
input[type=text].cancel_size,
input[type=password].cancel_size,
input[type=date].cancel_size,
input[type=datetime-local].cancel_size,
textarea.cancel_size,
select.cancel_size {
  font-size: inherit !important;
}

input[type=file] {
  font-size: 1.8rem;
}

textarea {
  padding-top: 0.6em;
  padding-bottom: 0.6em;
}

select {
  padding-right: 40px;
  background-image: url(../../img/select-arrow.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: right 19px center;
}

textarea:focus,
select:focus,
input[type=text]:focus,
input[type=radio]:focus,
input[type=password]:focus,
input[type=checkbox]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus {
  outline: 2px solid #6b6b6b;
  border: solid transparent 1px;
}

::-webkit-file-upload-button {
  color: #2f2e2e;
}

img {
  height: auto;
}

.input.radio {
  display: inline-block;
}
.input.radio input[type=radio] {
  display: none;
}
.input.radio input[type=radio]:checked + label:before {
  border: 6px solid #166eb8;
}
.input.radio label {
  display: inline-block;
  font-weight: normal;
  text-align: left;
  position: relative;
}
.input.radio label:before {
  content: "";
  background: white;
  border-radius: 100%;
  border: 6px solid #afafaf;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  top: 1px;
  margin-right: 6px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
}

.message {
  border-radius: 5px;
  padding: 8px 16px;
  text-align: left;
  margin: 0 -8px;
}
.message.success {
  background-color: #166eb8;
  color: white;
}
.message.error {
  background-color: #ff6c6c;
  color: white;
}

.error-message {
  text-align: left;
  background-image: url(../../img/error-cross.svg);
  background-repeat: no-repeat;
  color: #ff6c6c;
  margin-top: 3px;
  display: block;
}
@media screen and (max-width: 500px) {
  .error-message {
    font-size: 1.3rem;
    line-height: 1.6rem;
    background-size: 18px 18px;
    background-position: left 3px center;
    padding-top: 3px;
    padding-left: 26px;
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 501px) {
  .error-message {
    font-size: 1.4rem;
    line-height: 1.9rem;
    background-size: 20px 20px;
    background-position: left 3px center;
    padding-top: 5px;
    padding-left: 30px;
    padding-bottom: 4px;
  }
}

.input.error input[type=text],
.input.error input[type=password],
.input.error input[type=date],
.input.error input[type=datetime-local],
.input.error textarea,
.input.error select {
  border-width: 2px;
  border-color: #ff6c6c;
  background-color: rgba(255, 108, 108, 0.4);
}

.submit {
  display: inline-block;
}

.test_tbl {
  border-collapse: collapse;
  border-radius: 5px;
  border-spacing: 0;
  border: 1px solid red;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  font-size: 1.6rem;
  line-height: 1.8rem;
  text-align: left;
  color: red;
}
.test_tbl caption {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.5em;
}
.test_tbl th,
.test_tbl td {
  border: 1px solid red;
  padding: 0.5em;
}
form {
  margin: 0;
  padding: 0;
}

form button[type=submit],
form input[type=submit],
form input[type=button] {
  appearance: none;
  width: auto;
}

form button[type=submit]:not(:disabled),
form input[type=submit]:not(:disabled),
form input[type=button]:not(:disabled) {
  cursor: pointer;
}

form button[type=submit]:not(:disabled):hover,
form button[type=submit]:not(:disabled):focus,
form input[type=submit]:not(:disabled):hover,
form input[type=submit]:not(:disabled):focus,
form input[type=button]:not(:disabled):hover,
form input[type=button]:not(:disabled):focus {
  outline: none;
}

form button[type=submit]:disabled,
form input[type=submit]:disabled,
form input[type=button]:disabled {
  border-color: transparent;
  background-color: #eaeaea;
  color: #fff;
}

form button[type=submit] ::-moz-focus-inner,
form input[type=submit] ::-moz-focus-inner,
form input[type=button] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

textarea {
  resize: vertical;
}

textarea:hover,
textarea:focus {
  outline: none;
}

textarea:focus {
  outline: none;
  box-shadow: none;
  border-color: #707070;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  outline: none;
  box-shadow: none;
  border-color: #707070;
}

input[type=number],
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

input[type=checkbox] {
  display: inline-block;
  vertical-align: middle;
  visibility: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: 26px;
  height: 26px;
}

input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 30px;
}

input[type=checkbox] + span::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 1px solid #707070;
  width: 26px;
  height: 26px;
  content: "";
}

input[type=checkbox] + span::after {
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}

input[type=checkbox]:focus + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=checkbox]:checked:focus + span::before {
  outline: none;
}

input[type=checkbox]:checked + span::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-70%) translateX(0.5em) rotate(45deg);
  opacity: 1;
  border-right: 4px solid #166eb8;
  border-bottom: 4px solid #166eb8;
  width: 13px;
  height: 26px;
  content: "";
}

select::-ms-expand {
  display: none;
}

select:invalid {
  color: #eaeaea;
}

select:not(:disabled) {
  cursor: pointer;
}

[data-target] {
  cursor: pointer;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header.is-fixed {
  position: fixed;
  top: 0;
  box-shadow: 0 3px 6px rgba(117, 117, 117, 0.16);
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class])::after {
  display: inline-block;
  margin-left: 0.3em;
  width: 1em;
  height: 1em;
  color: inherit;
  font: var(--fa-font-solid);
  font-weight: bold;
  content: "\f35d";
}

/************************************************************************
* end base
************************************************************************/
.l-container {
  margin: 0 auto;
  padding: 0 24px;
  max-width: 1048px;
}

.l-container--narrow {
  max-width: 848px;
}

.l-container--wide {
  max-width: 1248px;
}

.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-main {
  background-color: #fff;
}

.l-main--top {
  padding-top: 20px;
  padding-bottom: 97px;
}

.c-headline {
  vertical-align: baseline;
  font-size: 32px;
  font-weight: bold;
}

.c-headline__icon {
  display: inline-block;
  vertical-align: baseline;
  margin-right: 0.7188em;
  width: 1.3125em;
  height: 1.3125em;
}

.c-iconMenu {
  font-size: 12px;
}

.c-iconMenu__icon {
  width: 2.5em;
  height: 2.5em;
}

.c-moreLink {
  display: inline-block;
  color: #166eb8;
  font-size: 1.3rem;
}

.c-moreLink::after {
  display: inline-block;
  margin-left: 1.25em;
  background: transparent url("../../img/designer/sprite/chevron-more.svg") no-repeat center center/contain;
  width: 0.4166666667em;
  height: 0.75em;
  content: "";
}

.c-moreLink:hover,
.c-moreLink:focus {
  opacity: 1;
  text-decoration: underline;
}

.p-banner__link {
  display: block;
}

.p-banner__link > picture {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
  width: 100%;
}

.p-subjects {
  gap: 0.8em 1.634%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  font-size: 20px;
}

.p-subjects__link {
  display: grid;
  place-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #f8f8f8;
  padding: 1em 0.5em;
  min-height: 5.65em;
  text-align: center;
}

.p-top__new {
  margin-top: 55px;
}

.p-top__today {
  margin-top: 32px;
}

.p-top__popular {
  margin-top: 60px;
}

.p-top__search {
  margin-top: 50px;
}

.p-topSection__body {
  margin-top: 26px;
}

.p-topSection__footer {
  margin-top: 30px;
  text-align: right;
}

.p-topSection__more {
  margin-top: auto;
  margin-left: auto;
}

/* modifier ******************************************************************/
.p-topSection--bgGray {
  background-color: #f8f8f8;
  padding-top: 52px;
  padding-bottom: 71px;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.u-fullWidthPc {
  margin-left: calc(50% - 50vw + (100vw - var(--vw, 100vw)) / 2);
  width: var(--vw, 100vw);
}

.u-fullWidthPc__inner {
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
  width: 1048px;
  max-width: 100%;
}

.u-hidden {
  display: none;
}

.u-overflowHidden {
  overflow: hidden;
}

.u-p0 {
  padding: 0 !important;
}

/************************************************************************
* MW WP Form Over write
************************************************************************/
.mwform-radio-field,
.mwform-checkbox-field {
  display: inline-block;
}

.mw_wp_form_preview .c-select::after {
  content: none;
}

.mw_wp_form_preview .p-hasPlaceholder__text {
  display: none;
}

.wpcf7-response-output {
  display: none;
}

/************************************************************************
* Table of Contents Plus
************************************************************************/
#toc_container {
  padding: 1.875rem 3.75rem;
  width: 100% !important;
}

#toc_container .toc_number {
  margin-right: 0.5em;
  color: #166eb8;
  font-weight: bold;
}

#toc_container .toc_list li {
  color: #2f2e2e;
}

#toc_container .toc_list li::before {
  display: none;
  color: #166eb8;
}

#toc_container .toc_list li + li {
  margin-top: 0.5em;
}

#toc_container .toc_list a {
  color: #2f2e2e;
}

@media only screen and (max-width: 767px) {
  .l-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .l-footer {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .l-main--top {
    padding-top: 0.625rem;
    padding-bottom: 2.5rem;
  }

  .c-headline {
    font-size: 2rem;
  }

  .c-headline__icon {
    vertical-align: middle;
    margin-right: 0.6875rem;
    width: 1.05em;
    height: 1.05em;
  }

  .p-fv__slider {
    padding-top: 1.25rem;
    padding-bottom: 3.4375rem;
  }

  .p-fv__slide {
    margin-right: 0;
    height: auto;
  }

  .p-fv__paginationWrap {
    justify-content: space-between;
    padding-right: 1.6875rem;
    padding-left: 1.6875rem;
  }

  .p-fv__pagination .swiper-pagination-bullet {
    width: 0.6875rem;
    height: 0.6875rem;
  }

  .p-gallery {
    margin-right: -16px;
    padding-right: 16px;
    padding-bottom: 0.5em;
    width: calc(100vw - 16px);
    font-size: 0.75rem;
  }

  .p-gallery__item {
    min-width: 4.5rem;
  }

  .p-gallery__itemFooter {
    margin-top: 3px;
    margin-left: -2px;
  }

  .p-gallery__itemTag {
    margin-top: 2px;
    margin-left: 2px;
    font-size: 0.625rem;
  }

  .p-subjects {
    gap: 0.6875rem;
    grid-template-columns: repeat(auto-fill, minmax(6.5625rem, 1fr));
    font-size: 1rem;
  }

  .p-subjects__link {
    min-height: 4.875rem;
  }

  .p-top__new {
    margin-top: 2.5rem;
  }

  .p-top__today {
    margin-top: 1.875rem;
  }

  .p-top__popular {
    margin-top: 2.5rem;
  }

  .p-top__search {
    margin-top: 2.5rem;
  }

  .p-topSection__body {
    margin-top: 14px;
  }

  .p-topSection--bgGray {
    padding-top: 1.875rem;
    padding-bottom: 2.5rem;
  }

  .u-hidden--sp {
    display: none;
  }

  #toc_container {
    padding: 1.875rem 1.25rem;
  }
}
@media print, screen and (min-width: 1000px) {
  .u-hidden--pc {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 999px) {
  .u-hidden--tab {
    display: none;
  }
}
/*# sourceMappingURL=map/style.css.map */
.p-floatingBanner {
  position: fixed;
  bottom: 10px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  transition-property: visibility opacity;
  width: 100vw;
}

.p-floatingBanner.is-active {
  visibility: visible;
  opacity: 1;
}

.p-floatingBanner .p-banner__link {
  margin-right: auto;
  margin-left: auto;
  max-width: 375px;
}

.ly_sect {
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
}
@media screen and (max-width: 500px) {
  .ly_sect {
    padding: 12px 16px 68px;
  }
}
@media screen and (min-width: 501px) {
  .ly_sect {
    padding: 12px 16px 68px;
  }
}
.ly_sect__mini {
  max-width: 648px;
}
.ly_sect__top {
  max-width: 1048px;
}

.ly_header {
  top: -110%;
  left: 0;
  z-index: 20;
  transition: top 0.3s ease 0s;
  background: #fff;
  width: 100%;
}
.ly_header.is-fixed {
  position: fixed;
  top: 0;
  box-shadow: 0 3px 6px rgba(117, 117, 117, 0.16);
}

.ly_footer {
  margin-top: auto;
  background-color: #166eb8;
}
@media screen and (max-width: 500px) {
  .ly_footer {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 68px;
  }
}
@media screen and (min-width: 501px) {
  .ly_footer {
    padding-top: 50px;
    padding-bottom: 30px;
    margin-bottom: 0;
  }
}

.el_headerIcon {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.el_headerIcon img {
  height: 25px;
}
.el_headerIcon span {
  color: #2f2e2e;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5rem;
}

.el_footerIcon {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.el_footerIcon img {
  height: 25px;
}
.el_footerIcon span {
  color: #2f2e2e;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-top: 8px;
}

.el_btn {
  display: inline-block;
  height: 70px;
  background-color: #166eb8;
  border-color: #166eb8;
  border-width: 2px;
  border-radius: 35px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  line-height: 70px;
  color: white;
}
@media screen and (max-width: 500px) {
  .el_btn {
    padding: 0px 35px;
    min-width: 250px;
  }
}
@media screen and (min-width: 501px) {
  .el_btn {
    padding: 0px 35px;
    min-width: 250px;
  }
}
.el_btn:visited {
  color: white;
}
.el_btn:active {
  opacity: 0.8;
}
.el_btn:hover {
  opacity: 0.8;
}
.el_btn:focus, .el_btn:focus-within, .el_btn:focus-visible {
  outline: 2px solid #a7a7a7;
  outline-offset: 0px;
  border-color: transparent;
}
.el_btn:disabled, .el_btn__disabled {
  border-color: gray;
  background-color: gray;
  cursor: default;
}
.el_btn:disabled:hover, .el_btn__disabled:hover {
  opacity: 1;
}
.el_btn__img img {
  vertical-align: middle;
  margin-right: 8px;
}
.el_btn__s {
  font-size: 1.4rem;
  padding: 4px 12px;
}
.el_btn__search {
  width: 150px;
  padding: 6px 0;
}
.el_btn__white {
  background-color: white;
  color: #166eb8;
}
.el_btn__white:visited {
  color: #166eb8;
}
.el_btn__caution {
  background-color: #ff6c6c;
}
.el_btn__red {
  background-color: #ff6c6c;
}

.el_item {
  text-align: left;
}
.el_item dt {
  font-weight: normal;
}
.el_item_note {
  display: block;
  font-size: 0.6em;
  line-height: 1.35em;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 500px) {
  .el_item_note {
    margin-top: 2px;
  }
}
@media screen and (min-width: 501px) {
  .el_item_note {
    margin-top: 6px;
    line-height: 19px;
  }
}
.el_item dd {
  font-size: 2.2rem;
}
.el_item dd.el_item__prefix {
  position: relative;
}
.el_item dd.el_item__prefix .el_item__prefixVal {
  position: absolute;
  left: 12px;
  top: 17px;
  color: #6e6e6e;
  pointer-events: none;
}
.el_item dd.el_item__prefix input {
  padding-left: 34px;
}
.el_item dd.el_item__withBtn .input {
  display: inline-block;
  margin-right: 4px;
}

.el_refItem {
  text-align: left;
  padding: 12px 0px;
  border-bottom: 1px solid rgb(218, 218, 218);
  margin-top: 16px;
}
.el_refItem dt {
  font-size: 1.13em;
  color: gray;
  font-weight: bold;
}
.el_refItem dd {
  font-size: 1.25em;
  margin-top: 6px;
}

.el_subBtn {
  background-color: #f2f2f2;
  height: 34px;
  min-width: 100px;
  width: auto;
  padding: 0 12px;
  border-radius: 5px;
  color: #166eb8;
  font-size: 1.2rem;
  line-height: 1.4rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.el_subBtn img {
  height: 17px;
  margin-right: 5px;
}

.el_gmnTtl {
  padding: 2px;
  text-align: left;
  margin-top: 22px;
  margin-bottom: 16px;
}
.el_gmnTtl img {
  vertical-align: middle;
  display: inline-block;
}
@media screen and (max-width: 500px) {
  .el_gmnTtl img {
    height: 23px;
    margin-right: 7px;
    margin-bottom: 6px;
  }
}
@media screen and (min-width: 501px) {
  .el_gmnTtl img {
    height: 25px;
    margin-right: 8px;
    margin-bottom: 6px;
  }
}
.el_gmnTtl span {
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.8em;
}

.el_ttl2 {
  display: flex;
  align-items: center;
  border-left: 6px solid #166eb8;
  padding: 0 10px;
  text-align: left;
  font-weight: bold;
  font-size: 1.15em;
  line-height: 2.3rem;
  margin-left: 2px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.el_h3 {
  font-weight: bold;
  line-height: 2.8rem;
  font-size: 1.8rem;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 12px;
}

.el_h4 {
  line-height: 2.4rem;
  font-size: 1.6rem;
  text-align: left;
  margin-top: 16px;
  margin-bottom: 10px;
}

.el_month_year {
  font-family: "alternate-gothic-no-1-d";
  font-weight: normal;
  font-size: 1.6em;
  line-height: 3.1rem;
  margin-right: 8px;
}
.el_month_month {
  font-family: "alternate-gothic-no-1-d";
  font-weight: normal;
  font-size: 2.6em;
  line-height: 5rem;
}
.el_month_unit {
  font-size: 1.4rem;
  line-height: 2.1rem;
  font-weight: normal;
}

.el_tag {
  display: inline-block;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1.8rem;
  background: #166eb8;
  color: white;
  border: 1px solid #166eb8;
  border-radius: 0.35714286em;
  padding: 0.28571429em 0.35714286em;
}

.c-label {
  display: inline-block;
  border: 1px solid currentColor;
  border-radius: 0.35714286em;
  padding: 0.28571429em 0.35714286em;
  color: #166eb8;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
}

.el_tagBlack {
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 1.8rem;
  background: rgb(47, 46, 46);
  color: white;
  border-radius: 5px;
  padding: 4px 6px;
}

.el_logo {
  font-family: "alternate-gothic-no-1-d", sans-serif;
  font-size: 3rem;
  line-height: 4rem;
}
.el_logo a {
  color: #2f2e2e;
  text-decoration: none;
}

.el_note {
  padding: 0 12px;
  text-align: left;
  color: #565656;
  font-size: 1.3rem;
  line-height: 1.9rem;
  margin-top: 12px;
  margin-bottom: 6px;
}

.el_link {
  color: #565656;
}

.el_required {
  color: #ff6c6c;
}

.el_staticMsg {
  border-width: 2px;
  border-style: solid;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.05em;
  line-height: 1.6em;
  text-align: left;
  padding: 8px 14px;
}
.el_staticMsg__alert {
  border-color: #ff6c6c;
  color: #ff6c6c;
}
.el_staticMsg__normal {
  border-color: #166eb8;
  color: #166eb8;
}

.el_userNm {
  font-size: 2.2rem;
  margin-top: 24px;
}

.el_toTop {
  display: block;
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  transition: all 0.3s ease 0s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  width: 42px;
  height: 42px;
}
@media screen and (max-width: 500px) {
  .el_toTop {
    display: none;
  }
}
.el_toTop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 3px solid #166eb8;
  border-right: 3px solid #166eb8;
  width: 14px;
  height: 14px;
  content: "";
}
.el_toTop.is-active {
  visibility: visible;
  opacity: 0.7;
}
.el_toTop.is-active:hover, .el_toTop.is-active:focus {
  opacity: 1;
}

.el_consult {
  display: block;
  position: fixed;
  z-index: 30;
}
.el_consult img {
  width: 100%;
}
@media screen and (min-width: 501px) {
  .el_consult {
    right: 48px;
    bottom: -5px;
    width: 110px;
  }
}
@media screen and (max-width: 500px) {
  .el_consult {
    right: -5px;
    bottom: 63px;
    width: 100px;
  }
}

.el_lctrImg {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 20px;
}
.el_lctrImg img {
  height: 120px;
  width: 120px;
  text-align: center;
  display: inline-block;
  object-fit: cover;
  border-radius: 100px;
  border: 1px solid rgb(240, 240, 240);
}

.el_lctrComment {
  text-align: left;
  width: 100%;
  padding: 8px 16px;
  max-height: 600px;
  overflow-y: auto;
  border: 1px solid #c4c4c4;
  background-color: #f5f5f5;
}

.el_judgeLabel {
  padding: 16px 6px 10px;
  border: 1px solid #ff6c6c;
  color: #ff6c6c;
  border-radius: 5px;
  margin-bottom: 36px;
}
.el_judgeLabel span {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}

.el_alertLabel {
  padding: 16px 6px 10px;
  border: 1px solid #ff6c6c;
  color: #ff6c6c;
  border-radius: 5px;
  margin-bottom: 28px;
}
.el_alertLabel span {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}

.el_snsLoginBtn {
  margin-top: 12px;
}
.el_snsLoginBtn img {
  width: 274px;
}

.el_dotLine {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 3px;
}
.el_dotLine::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #8E8E8E 0, #8E8E8E 4px, transparent 4px, transparent 7px);
}

.el_normalMsg {
  font-size: 1.1em;
  margin-top: 48px;
  margin-bottom: 24px;
}

.el_miniSentence {
  display: block;
  margin-left: auot;
  margin-right: auto;
  text-align: left;
  font-size: 0.85em;
  line-height: 1.4em;
  text-indent: -1em;
  padding-left: 1em;
}
.el_miniSentence_link {
  text-indent: initial;
  font-weight: bold;
  text-decoration: none;
}
.el_miniSentence_link::after {
  content: "";
}

.bl_header {
  display: flex;
  align-items: center;
  padding: 1.3333333333em 40px;
  height: 100%;
}
.bl_header__logo a {
  display: flex;
  align-items: center;
}
.bl_header__logo img, .bl_header__logo svg {
  object-fit: contain;
}
@media screen and (max-width: 500px) {
  .bl_header__logo img, .bl_header__logo svg {
    width: 100px;
  }
}
@media screen and (min-width: 501px) {
  .bl_header__logo img, .bl_header__logo svg {
    width: 120px;
  }
}
.bl_header__nav {
  margin-left: auto;
}
.bl_header__navList {
  display: flex;
  align-items: center;
}
.bl_header__navLink {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #2f2e2e;
}
.bl_header__navLink > p {
  font-weight: bold;
  margin-top: 2px;
  line-height: 1.5em;
  font-size: 1.2em;
}
.bl_header__navIcon {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 500px) {
  .bl_header__navIcon {
    width: 4.6em;
    height: 4.6em;
  }
}
@media screen and (min-width: 501px) {
  .bl_header__navIcon {
    width: 2.5em;
    height: 2.5em;
  }
}
.bl_header__navIcon > img {
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 500px) {
  .bl_header {
    padding: 9px 3px 9px 20px;
    font-size: 0.625rem;
  }
  .bl_header__navItem + .bl_header__navItem {
    margin-left: 15px;
  }
  .bl_header__drawer {
    margin-left: 0;
  }
}
@media screen and (min-width: 501px) {
  .bl_header {
    padding: 16px 40px 16px 40px;
    font-size: 1.2rem;
  }
  .bl_header__navItem + .bl_header__navItem {
    margin-left: 26px;
  }
  .bl_header__drawer {
    margin-left: 26px;
  }
}

.bl_drawer {
  z-index: 40;
  text-align: left;
}
.bl_drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .bl_drawer__icon {
    padding: 19px 17.5px 19px 17.5px;
  }
}
@media screen and (min-width: 501px) {
  .bl_drawer__icon {
    padding: 14.141px 13.025px 14.141px 13.025px;
  }
}
.bl_drawer__icon::after {
  display: none;
  margin-top: 4px;
  min-width: 5em;
  color: #2f2e2e;
  font-size: 0.5rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  content: "MENU";
}
.bl_drawer__icon.is-opened::after {
  content: "CLOSE";
}
.bl_drawer__bars {
  display: inline-block;
  vertical-align: bottom;
  width: 30px;
  height: 12px;
}
.bl_drawer__bar {
  display: block;
  transition: all 0.3s linear 0s;
  margin-top: 10px;
  background: #707070;
  width: 100%;
  height: 1px;
}
.bl_drawer__bar:first-child {
  margin-top: 0;
}
.is-opened .bl_drawer__bar {
  background: transparent;
}
.is-opened .bl_drawer__bar:first-child {
  transform: translateY(5.5px) rotate(45deg);
  transform-origin: center;
  background: #707070;
  width: 100%;
}
.is-opened .bl_drawer__bar:last-child {
  transform: translateY(-5.5px) rotate(-45deg);
  transform-origin: center;
  background: #707070;
  width: 100%;
}
.bl_drawer__bg {
  transition: all 0.3s ease 0s;
}
.bl_drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  width: 100vw;
  height: 100vh;
}
.bl_drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  transform: translateX(105%);
  z-index: 40;
  transition: all 0.5s ease 0s;
  background: #fff;
  padding-top: 106px;
  padding-right: 27px;
  padding-left: 27px;
  max-width: 90%;
  height: 100%;
  overflow: auto;
  color: #2f2e2e;
}
@media screen and (max-width: 500px) {
  .bl_drawer__content {
    width: 240px;
  }
}
@media screen and (min-width: 501px) {
  .bl_drawer__content {
    width: 280px;
  }
}
.bl_drawer__content.is-opened {
  transform: translateX(0);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}
.bl_drawer__content--left {
  right: auto;
  left: 0;
  transform: translateX(-105%);
}
.bl_drawer__content--top {
  top: 0;
  bottom: auto;
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}
.bl_drawer__content--cover {
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.bl_drawer__navItem + .bl_drawer__navItem {
  margin-top: 20px;
}
.bl_drawer__navLink {
  display: block;
  color: #2f2e2e;
  text-decoration: none;
}
@media screen and (max-width: 500px) {
  .bl_drawer__navLink {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 501px) {
  .bl_drawer__navLink {
    font-size: 1.8rem;
  }
}

.bl_footer {
  color: #fff;
  font-size: 0.9em;
  text-align: center;
}
.bl_footer__logo img {
  width: 10.2142857143em;
  object-fit: contain;
}
.bl_footer__nav {
  margin-top: 2.8571428571em;
}
@media (max-width: 599px) {
  .bl_footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1428571429em 2%;
    justify-content: center;
  }
}
@media (max-width: 420px) {
  .bl_footer__nav .bl_footer_br {
    display: block;
  }
}
@media (min-width: 600px) {
  .bl_footer__navItem {
    display: inline-block;
    margin-left: 12px;
    margin-right: 12px;
  }
  .bl_footer__navItem a {
    white-space: nowrap;
  }
}
.bl_footer__nav a {
  color: white;
  text-decoration: none;
}
.bl_footer__navItem > a::after {
  display: inline-block;
  margin-left: 0.9642857143em;
  background: transparent url("../../img/designer/sprite/chevron-right.svg") no-repeat center center/contain;
  width: 0.5em;
  height: 0.8571428571em;
  content: "";
}
.bl_footer__navItem > a:hover, .bl_footer__navItem > a:focus {
  opacity: 1;
  text-decoration: underline;
}
.bl_footer__copy {
  margin-top: 4.6428571429em;
  font-family: "Squada One", cursive;
  font-size: 1.1428571429em;
}
@media (max-width: 599px) {
  .bl_footer__nav {
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .bl_footer__navItem {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    width: 50%;
  }
  .bl_footer__navItem:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
  }
  .bl_footer__navItem > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1.25rem 1rem 1.25rem 1.25rem;
    height: 100%;
    text-align: left;
  }
  .bl_footer__navItem > a::after {
    margin-left: auto;
    background-position: right center;
    padding-left: 1.25rem;
  }
  .bl_footer__copy {
    margin-top: 1.875rem;
  }
}

.bl_slideMenu {
  display: none;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.bl_slideMenu_nav {
  background-color: white;
  height: 100%;
  width: 300px;
  position: fixed;
  top: 0px;
  right: 0;
  overflow-y: auto;
  text-align: right;
}
@media screen and (max-width: 500px) {
  .bl_slideMenu_nav {
    padding: 12px 12px 24px 20px;
  }
}
@media screen and (min-width: 501px) {
  .bl_slideMenu_nav {
    padding: 12px 12px 24px 20px;
  }
}
.bl_slideMenu_nav li a {
  display: block;
  color: black;
  text-align: left;
  text-decoration: none;
}
@media screen and (max-width: 500px) {
  .bl_slideMenu_nav li a {
    padding: 10px 10px;
  }
}
@media screen and (min-width: 501px) {
  .bl_slideMenu_nav li a {
    padding: 10px 10px;
  }
}
.bl_slideMenu_nav li a:hover, .bl_slideMenu_nav li a:active {
  opacity: 0.8;
}
.bl_slideMenu_close {
  display: inline-block;
  text-align: left;
  position: relative;
  width: 38px;
  height: 38px;
}
.bl_slideMenu_close:before, .bl_slideMenu_close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 24px;
  background: #333;
}
.bl_slideMenu_close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.bl_slideMenu_close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.bl_slideMenu_close:hover {
  opacity: 0.7;
  cursor: pointer;
}
.bl_slideMenu_close:active {
  background-color: cadetblue;
  opacity: 0.7;
}
.bl_slideMenu_bg {
  background: rgba(0, 0, 0, 0.6);
  height: 100vh;
  width: 100%;
}

.bl_hamBtn {
  display: block;
  cursor: pointer;
  caret-color: transparent;
}
@media screen and (max-width: 500px) {
  .bl_hamBtn {
    top: 10px;
    right: 10px;
    height: 36px;
    width: 36px;
  }
}
@media screen and (min-width: 501px) {
  .bl_hamBtn {
    top: 4px;
    right: 21px;
    height: 42px;
    width: 42px;
  }
}
.bl_hamBtn_line {
  display: block;
  position: relative;
  background-color: #707070;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 500px) {
  .bl_hamBtn_line {
    width: 30px;
    height: 2px;
  }
}
@media screen and (min-width: 501px) {
  .bl_hamBtn_line {
    width: 30px;
    height: 2px;
  }
}
.bl_hamBtn_line:nth-child(1) {
  top: -5px;
}
.bl_hamBtn_line:nth-child(2) {
  top: 5px;
}
.bl_hamBtn:active {
  background-color: cadetblue;
  opacity: 0.7;
}

.bl_searchBox {
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  background-color: #f8f8f8;
  text-align: left;
  margin-bottom: 16px;
}
.bl_searchBox_accordion {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  user-select: none;
}
@media screen and (max-width: 500px) {
  .bl_searchBox_accordion {
    padding: 14px 16px;
  }
}
@media screen and (min-width: 501px) {
  .bl_searchBox_accordion {
    padding: 16px 22px;
  }
}
.bl_searchBox_accordion:hover {
  cursor: pointer;
  opacity: 0.7;
}
.bl_searchBox_accordionImg1 {
  flex-grow: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 500px) {
  .bl_searchBox_accordionImg1 {
    width: 18px;
    margin-right: 12px;
  }
}
@media screen and (min-width: 501px) {
  .bl_searchBox_accordionImg1 {
    width: 16px;
    margin-right: 8px;
  }
}
.bl_searchBox_accordionTxt {
  flex: 1 1 100px;
  color: #166eb8;
  font-weight: bold;
}
@media screen and (max-width: 500px) {
  .bl_searchBox_accordionTxt {
    font-size: 1.4rem;
    line-height: 2.1rem;
  }
}
@media screen and (min-width: 501px) {
  .bl_searchBox_accordionTxt {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
.bl_searchBox_accordionImg2 {
  flex-grow: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 500px) {
  .bl_searchBox_accordionImg2 {
    width: 18px;
    margin-left: 8px;
  }
}
@media screen and (min-width: 501px) {
  .bl_searchBox_accordionImg2 {
    width: 20px;
    margin-left: 12px;
  }
}
@media screen and (max-width: 500px) {
  .bl_searchBox_accordionZone {
    padding: 0px 16px 12px;
  }
}
@media screen and (min-width: 501px) {
  .bl_searchBox_accordionZone {
    padding: 0px 22px 14px;
  }
}
.bl_searchBox_chkbox {
  margin-bottom: 8px;
}
.bl_searchBox_chkbox .input.checkbox {
  display: inline-block;
  margin-right: 12px;
}
@media screen and (max-width: 500px) {
  .bl_searchBox_chkbox {
    margin-top: 16px;
  }
}
@media screen and (min-width: 501px) {
  .bl_searchBox_chkbox {
    margin-top: 22px;
  }
}
.bl_searchBox dl {
  margin-bottom: 12px;
}
.bl_searchBox dl dt {
  display: inline-block;
}
@media screen and (max-width: 500px) {
  .bl_searchBox dl dt {
    font-size: 1.4rem;
    width: 88px;
  }
}
@media screen and (min-width: 501px) {
  .bl_searchBox dl dt {
    font-size: 1.6rem;
    width: 96px;
  }
}
.bl_searchBox dl dd {
  display: inline-block;
}
@media screen and (max-width: 500px) {
  .bl_searchBox dl dd {
    width: calc(100% - 94px);
  }
}
@media screen and (min-width: 501px) {
  .bl_searchBox dl dd {
    width: 100%;
    max-width: 200px;
  }
}
.bl_searchBox dl dd input,
.bl_searchBox dl dd select {
  height: 48px;
  font-size: 1.6rem;
  width: 100%;
}

.bl_searchBoxTags {
  margin-bottom: 8px;
}
.bl_searchBoxTags > div {
  display: flex;
  margin-bottom: 3px;
}
.bl_searchBoxTags > div > div:nth-child(1) {
  text-align: right;
  flex: 0 0 90px;
  padding-top: 5px;
  font-weight: bold;
}
.bl_searchBoxTags > div > div:nth-child(2) {
  padding-left: 4px;
  text-align: left;
}
.bl_searchBoxTags_tag {
  display: inline-block;
  background: #f8f8f8;
  border: 1px solid #d0d0d0;
  border-radius: 100px;
  font-size: 1.3rem;
  height: 42px;
  padding: 5px 14px 0px;
  margin-right: 8px;
  margin-bottom: 8px;
}
.bl_searchBoxTags_tag > span {
  margin-left: 10px;
  font-size: 1.8rem;
  color: #166eb8;
}
.bl_searchBoxTags_tag__clickable {
  cursor: pointer;
}
.bl_searchBoxTags_tag__clickable:hover {
  opacity: 0.7;
}
.bl_searchBoxTags > span {
  display: inline-block;
}
.bl_itemUnitSrch > div {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 12px;
}
.bl_itemUnitSrch > div > .input {
  flex: 1 1 50%;
}
.bl_itemUnitSrch > div > .input input[type=text],
.bl_itemUnitSrch > div > .input input[type=password],
.bl_itemUnitSrch > div > .input input[type=date],
.bl_itemUnitSrch > div > .input textarea,
.bl_itemUnitSrch > div > .input select {
  width: 100%;
}
.bl_itemUnitSrch > div > .input:nth-child(1) {
  margin-right: 10px;
}
@media screen and (max-width: 500px) {
  .bl_itemUnitSrch {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 501px) {
  .bl_itemUnitSrch {
    margin-bottom: 14px;
  }
}

.bl_itemUnit {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 500px) {
  .bl_itemUnit {
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (min-width: 501px) {
  .bl_itemUnit {
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
  }
}
.bl_itemUnit .el_item {
  width: 100%;
}
.bl_itemUnit .el_item input[type=text],
.bl_itemUnit .el_item input[type=password],
.bl_itemUnit .el_item input[type=date],
.bl_itemUnit .el_item textarea,
.bl_itemUnit .el_item select {
  width: 100%;
}
.bl_itemUnit .el_item__2c dd {
  display: flex;
}
.bl_itemUnit .el_item__2c dd .input {
  display: inline-block;
  width: 50%;
}
.bl_itemUnit .el_item__2c dd .input:nth-child(1) {
  margin-right: 8px;
}
@media screen and (max-width: 500px) {
  .bl_itemUnit .el_item {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 501px) {
  .bl_itemUnit .el_item {
    margin-bottom: 32px;
  }
}

.bl_loginFrame {
  padding: 19px 24px 24px;
  margin-top: 24px;
}
.bl_loginFrame_ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.bl_loginFrame p {
  text-align: center;
}
.bl_loginFrame input {
  margin-top: 12px;
}
.bl_loginFrame a {
  margin-top: 12px;
}
.bl_loginFrame .bl_btnZone {
  margin-top: 24px !important;
}

.bl_imgTtl {
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
}
.bl_imgTtl * {
  vertical-align: middle;
}
.bl_imgTtl img {
  height: 22px;
  margin-right: 8px;
}

.bl_lssnCard {
  width: 100%;
  max-width: 560px;
  text-align: left;
  border-radius: 10px;
  color: #2f2e2e;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 5px 25px 1px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  text-decoration: none;
  margin-bottom: 24px;
}
@media screen and (max-width: 500px) {
  .bl_lssnCard {
    padding: 3.2% 5.8% 3.2%;
  }
}
@media screen and (min-width: 501px) {
  .bl_lssnCard {
    padding: 26px 22px 13px;
  }
}
.bl_lssnCard__alert {
  background-color: #ff6c6c !important;
  color: white !important;
}
.bl_lssnCard__alert .bl_lssnCard_upper {
  border-color: white !important;
}
.bl_lssnCard__alert .bl_lssnCard_userNm {
  color: white !important;
}
.bl_lssnCard__alert .bl_lssnDate_time {
  color: white !important;
  background-image: url(../../img/icon-watch-white.svg) !important;
}
.bl_lssnCard_today {
  background-color: #ea1e1e;
  color: white;
  position: absolute;
  top: -8px;
  left: -8px;
  border-radius: 5px;
  padding: 2px 9px 1px;
  font-size: 1em;
}
.bl_lssnCard_upper {
  display: block;
  border-bottom: 1px dashed #8e8e8e;
  padding-top: 17px;
  padding-bottom: 9px;
}
.bl_lssnCard_lower {
  display: flex;
  padding-top: 17px;
}
.bl_lssnCard_img {
  margin-right: 8px;
}
.bl_lssnCard_img img {
  border-radius: 200px;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 500px) {
  .bl_lssnCard_img img {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 501px) {
  .bl_lssnCard_img img {
    width: 50px;
    height: 50px;
  }
}
.bl_lssnCard_clsNm {
  flex: 1 1 200px;
}
.bl_lssnCard_clsTag {
  display: inline-block;
  font-size: 0.7em;
  line-height: 1.7rem;
  background-color: #2f2e2e;
  border-radius: 5px;
  color: white;
  padding: 2px 10px;
}
.bl_lssnCard_lctrNm {
  display: block;
  margin-top: 1px;
  color: #2f2e2e;
  font-size: 1em;
}
.bl_lssnCard_userNm {
  display: inline-block;
  margin-top: 8px;
  margin-left: 12px;
  font-size: 2.2rem;
  color: #2f2e2e;
}
.bl_lssnCard_upd {
  flex: 0 0 123px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.bl_lssnCard_upd span {
  color: white;
  padding-top: 12px;
  padding-bottom: 5px;
  padding-left: 34px;
  background-image: url(../../img/icon-caution.svg);
  background-repeat: no-repeat;
  background-size: 26px 26px;
  background-position: left 0 center;
}
@media screen and (max-width: 500px) {
  .bl_lssnCard_upd span {
    font-size: 0.9em;
  }
}
@media screen and (min-width: 501px) {
  .bl_lssnCard_upd span {
    font-size: 1em;
  }
}

.bl_lssnDate {
  font-family: "alternate-gothic-no-1-d";
}
.bl_lssnDate * {
  display: inline-block;
  vertical-align: baseline;
}
.bl_lssnDate_year {
  font-size: 2.2em;
}
.bl_lssnDate_date {
  font-size: 3.2em;
}
.bl_lssnDate_week {
  font-size: 1.6em;
  margin-right: 12px;
}
.bl_lssnDate_time {
  font-size: 1.2em;
  color: #8e8e8e;
  padding-left: 28px;
  background-image: url(../../img/icon-watch.svg);
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: left 0 bottom 4px;
}

.bl_cardList {
  gap: 16px 1.5%;
  display: grid;
}
@media screen and (max-width: 767px) {
  .bl_cardList {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .bl_cardList {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bl_card {
  box-shadow: rgba(0, 0, 0, 0.18) 0px 5px 25px 1px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border-radius: 5px;
  background-color: #fff;
}
.bl_card a {
  color: #2f2e2e;
  text-decoration: none;
}
.bl_card__link {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0.7142857143em;
  height: 100%;
}
.bl_card__head {
  display: flex;
  align-items: flex-start;
}
.bl_card__img {
  flex-shrink: 0;
  border-radius: 100px;
  overflow: hidden;
}
@media screen and (max-width: 500px) {
  .bl_card__img {
    margin-top: 7px;
    width: 47px;
    height: 47px;
  }
}
@media screen and (min-width: 501px) {
  .bl_card__img {
    margin-top: 8px;
    width: 50px;
    height: 50px;
  }
}
.bl_card__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bl_card__headBody {
  flex-grow: 1;
  margin-left: 0.7em;
}
.bl_card__headBodyTop {
  display: flex;
  align-items: flex-end;
}
.bl_card__title {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .bl_card__title {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .bl_card__title {
    font-size: 1.6rem;
  }
}
.bl_card__rating {
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 0.625rem;
  letter-spacing: -0.4em;
}
.bl_card__star {
  display: inline-block;
  vertical-align: text-bottom;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .bl_card__star {
    line-height: 17px;
  }
  .bl_card__star img {
    width: 15px;
    margin-bottom: 3px;
  }
}
@media screen and (min-width: 768px) {
  .bl_card__star {
    line-height: 17px;
  }
  .bl_card__star img {
    width: 18px;
    margin-bottom: 3px;
  }
}
.bl_card__star + .bl_card__star {
  margin-left: 1px;
}
.bl_card__evaluation {
  vertical-align: baseline;
  margin-left: 0.375em;
  line-height: 1;
  font-family: "alternate-gothic-no-1-d";
}
@media screen and (max-width: 767px) {
  .bl_card__evaluation {
    font-size: 2.2rem;
    margin-bottom: 2px;
  }
}
@media screen and (min-width: 768px) {
  .bl_card__evaluation {
    font-size: 2.4rem;
    margin-bottom: 4px;
  }
}
.bl_card__labels {
  margin-top: 2px;
  margin-left: -4px;
  font-size: 0;
  text-align: left;
}
.bl_card__label {
  margin-top: 4px;
  margin-left: 4px;
}
@media screen and (max-width: 767px) {
  .bl_card__label {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .bl_card__label {
    font-size: 0.75rem;
  }
}
.bl_card__body {
  margin-top: 0.7857142857em;
  background-color: #f8f8f8;
  padding: 0.3571428571em 0.8571428571em;
  line-height: 1.5;
  text-align: left;
  font-size: 1.4rem;
}
.bl_card__text > span {
  color: #8e8e8e;
}
.bl_card__foot {
  display: flex;
  align-items: flex-end;
  margin-top: 0.7142857143em;
}
.bl_card__status {
  display: inline-block;
  border-radius: 5px;
  background-color: #2f2e2e;
  padding: 1px 5px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .bl_card__status {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .bl_card__status {
    font-size: 1.2rem;
  }
}
.bl_card__footRight {
  display: flex;
  align-items: baseline;
  margin-left: auto;
}
.bl_card__originalPrice {
  color: #8e8e8e;
  font-weight: bold;
  text-decoration: line-through;
}
@media screen and (max-width: 767px) {
  .bl_card__originalPrice {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 768px) {
  .bl_card__originalPrice {
    font-size: 1.3rem;
  }
}
.bl_card__originalPrice > span {
  margin-right: 0.5em;
  font-size: 10px;
}
.bl_card__conditions {
  margin-right: 0.5625rem;
  color: #8e8e8e;
  font-size: 10px;
  font-weight: bold;
}
.bl_card__specialConditions {
  margin-right: 0.25rem;
  color: #ff6c6c;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .bl_card__specialConditions {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .bl_card__specialConditions {
    font-size: 1.3rem;
  }
}
.bl_card__price {
  line-height: 1;
  font-family: "alternate-gothic-no-1-d";
}
@media screen and (max-width: 500px) {
  .bl_card__price {
    font-size: 3.7rem;
  }
}
@media screen and (min-width: 501px) {
  .bl_card__price {
    font-size: 4rem;
  }
}
.bl_card__priceDscnt {
  color: #ff6c6c;
}
.bl_card__price > span {
  margin-left: 3px;
  font-size: 1.9rem;
}

.bl_overlay {
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 4000;
}
.bl_overlay_cvSpinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bl_overlay_spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
.bl_overlay .is-hide {
  display: none;
}

@media screen and (max-width: 500px) {
  .bl_examTblWrap {
    min-height: 148px;
  }
}
@media screen and (min-width: 501px) {
  .bl_examTblWrap {
    min-height: 130px;
  }
}

.bl_examTbl {
  width: auto;
  border: 1px solid black;
  border-collapse: collapse;
}
.bl_examTbl th {
  background-color: rgba(241, 241, 241, 0.75);
}
.bl_examTbl td {
  min-width: 48px;
  height: 42px;
  font-size: 0.95em;
  line-height: 1.6em;
  padding: 12px 8px 6px;
  text-align: center;
}
.bl_examTbl th,
.bl_examTbl td {
  border: 1px solid rgb(227, 227, 227);
}
.bl_examTbl_year {
  font-size: 1.1rem;
  font-weight: normal;
  line-height: 2rem;
  text-align: center;
  vertical-align: middle;
  height: 30px;
}
.bl_examTbl_subj {
  text-align: left;
  max-width: 120px;
  min-width: 120px;
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 2rem;
  padding: 12px 8px 6px;
}
.bl_examTbl_circle {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background-color: #166eb8;
}

.bl_lctrMonthly {
  width: 100%;
  table-layout: fixed;
}
.bl_lctrMonthly .bl_weekLink:hover {
  opacity: 0.7;
  background-color: #166eb8;
  color: white;
  cursor: pointer;
}
.bl_lctrMonthly .bl_weekLink:hover span {
  border-color: white !important;
}
.bl_lctrMonthly .bl_weekLink:active {
  background-color: cadetblue;
}
.bl_lctrMonthly th {
  font-size: 1.1rem;
  line-height: 1.6rem;
  font-weight: normal;
  text-align: center;
  border-bottom: 1px solid #e3e3e3;
  padding: 4px;
  min-height: 30px;
}
.bl_lctrMonthly td {
  border: 1px solid #e3e3e3;
  height: 54px;
  min-height: 30px;
}
.bl_lctrMonthly__date {
  font-size: 1.4rem;
  line-height: 1.7rem;
  margin-bottom: 6px;
}
.bl_lctrMonthly_circle {
  display: inline-block;
  border: 2px solid #166eb8;
  width: 20px;
  height: 20px;
  border-radius: 10px;
}
.bl_lctrMonthly_cross {
  display: inline-block;
  position: relative;
  width: 14px;
  height: 14px;
}
.bl_lctrMonthly_cross::before, .bl_lctrMonthly_cross::after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  /* 棒の幅（太さ） */
  height: 14px;
  /* 棒の高さ */
  background: #c5c5c5;
}
.bl_lctrMonthly_cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.bl_lctrMonthly_cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.bl_lctrWeeklyWrap {
  width: 100%;
  overflow-x: auto;
}

.bl_lctrWeekly {
  width: 100%;
}
.bl_lctrWeekly td {
  border: 1px solid #e3e3e3;
  height: 34px;
  min-width: 38px;
}
.bl_lctrWeekly_date {
  text-align: center;
  font-weight: normal;
  font-size: 0.7em;
  line-height: 1.8rem;
  color: #2f2e2e;
  vertical-align: bottom;
  padding-bottom: 2px;
  user-select: none;
}
.bl_lctrWeekly_time {
  vertical-align: middle;
  padding-right: 4px;
  text-align: right;
  font-weight: 600;
  font-size: 0.7em;
  line-height: 2rem;
  user-select: none;
}
@media screen and (max-width: 500px) {
  .bl_lctrWeekly_time {
    min-width: 48px;
    width: 48px;
  }
}
@media screen and (min-width: 501px) {
  .bl_lctrWeekly_time {
    min-width: 56px;
    width: 56px;
  }
}
.bl_lctrWeekly_reserved {
  height: 100%;
  width: 100%;
  background-color: #166eb8;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: auto !important;
  user-select: none;
}
.bl_lctrWeekly_circle {
  height: 100%;
  width: 100%;
  background-color: #166eb8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.bl_lctrWeekly_circle::before {
  position: absolute;
  content: "";
  position: absolute;
  border: 2px solid white;
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 10px;
}
.bl_lctrWeekly_cross {
  height: 100%;
  width: 100%;
  background-color: #bebebe;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.bl_lctrWeekly_cross::before, .bl_lctrWeekly_cross::after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  /* 棒の幅（太さ） */
  height: 14px;
  /* 棒の高さ */
  background: #8e8e8e;
}
.bl_lctrWeekly_cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.bl_lctrWeekly_cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.bl_lctrWeekly_hyphen {
  height: 100%;
  width: 100%;
  background-color: #bebebe;
  color: #8e8e8e;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.bl_lctrWeekly_changed {
  background-color: #ff6c6c;
}
.bl_lctrWeekly_changed.bl_lctrWeekly_cross::before, .bl_lctrWeekly_changed.bl_lctrWeekly_cross::after {
  background: white;
}
.bl_lctrWeekly input[type=checkbox] {
  display: none;
}

.bl_calendarSrch {
  margin-top: 12px;
}
.bl_calendarSrch .input.radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.bl_calendarSrch label {
  margin-right: 12px;
  margin-bottom: 4px;
}

.bl_calendarTtl {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0px 12px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.bl_calendarTtl_paging {
  display: inline-block;
  position: relative;
  color: #166eb8;
  text-decoration: none;
  width: 66px;
}
.bl_calendarTtl_paging:visited {
  color: #166eb8;
}
.bl_calendarTtl_paging::before {
  content: "";
  width: 8px;
  height: 14px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 500px) {
  .bl_calendarTtl__previous {
    padding-left: 14px;
  }
}
@media screen and (min-width: 501px) {
  .bl_calendarTtl__previous {
    padding-left: 30px;
  }
}
.bl_calendarTtl__previous::before {
  top: 7px;
  left: 4px;
  background-image: url(../../img/page-previous.svg);
}
@media screen and (max-width: 500px) {
  .bl_calendarTtl__next {
    padding-right: 14px;
  }
}
@media screen and (min-width: 501px) {
  .bl_calendarTtl__next {
    padding-right: 30px;
  }
}
.bl_calendarTtl__next::before {
  right: 4px;
  background-image: url(../../img/page-next.svg);
}
@media screen and (max-width: 500px) {
  .bl_calendarTtl__next::before {
    top: 6px;
  }
}
@media screen and (min-width: 501px) {
  .bl_calendarTtl__next::before {
    top: 7px;
  }
}

.bl_ttlPlus {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.bl_ttlPlus .el_gmnTtl {
  margin-bottom: 16px;
}
.bl_ttlPlus .el_subBtn {
  margin-bottom: 16px;
}

.bl_breadcrumbs {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  font-size: 0.88em;
  line-height: 1.55em;
  margin-top: 8px;
}
.bl_breadcrumbs li {
  list-style: none;
  font-weight: bold;
  display: inline-block;
}
.bl_breadcrumbs li:after {
  content: ">";
  padding: 0 0.2em;
  color: #ff6c6c;
}
@media screen and (max-width: 500px) {
  .bl_breadcrumbs li:after {
    margin-bottom: 1.6px;
  }
}
@media screen and (min-width: 501px) {
  .bl_breadcrumbs li:after {
    margin-bottom: 1px;
  }
}
.bl_breadcrumbs li a {
  text-decoration: none;
  color: #838383;
}
.bl_breadcrumbs li:last-child a {
  color: #2f2e2e;
}
.bl_breadcrumbs li:last-child:after {
  content: "";
}
.bl_breadcrumbs li a:hover {
  text-decoration: underline;
}

.bl_paymentConfirm {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-top: 40px;
}
@media screen and (max-width: 500px) {
  .bl_paymentConfirm {
    padding: 0 0;
  }
}
@media screen and (min-width: 501px) {
  .bl_paymentConfirm {
    padding: 0 32px;
  }
}
.bl_paymentConfirm .bl_paymentConfirm_rec {
  display: flex;
  margin-bottom: 8px;
  padding-right: 12px;
}
@media screen and (max-width: 500px) {
  .bl_paymentConfirm .bl_paymentConfirm_rec {
    flex-direction: column;
  }
  .bl_paymentConfirm .bl_paymentConfirm_rec span:nth-child(1) {
    text-align: left;
    width: 100%;
    margin-bottom: 4px;
  }
  .bl_paymentConfirm .bl_paymentConfirm_rec span:nth-child(2) {
    text-align: right;
    width: 100%;
  }
}
@media screen and (min-width: 501px) {
  .bl_paymentConfirm .bl_paymentConfirm_rec {
    justify-content: space-between;
  }
  .bl_paymentConfirm .bl_paymentConfirm_rec span:first-child {
    text-align: right;
    width: 270px;
  }
}
.bl_paymentConfirm .bl_paymentConfirm_total {
  border-top: #2f2e2e solid 1px;
  font-weight: bold;
  padding-top: 12px;
  font-size: 2rem;
}

.bl_btnZone {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: center;
  margin-top: 44px;
}
.bl_btnZone .el_btn {
  margin: 0 4px 8px;
}

.bl_lctrImgNm {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
}
.bl_lctrImgNm_img {
  width: 60px;
  height: 60px;
  margin-right: 36px;
}
.bl_lctrImgNm_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 100px;
}
.bl_lctrImgNm_nm {
  font-size: 2.2rem;
}

.bl_ansPreviewNote {
  width: 100%;
  text-align: left;
  max-width: 460px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 28px;
  margin-bottom: 24px;
}

.bl_ansPreviewArea {
  margin-top: 8px;
}
.bl_ansPreviewArea .bl_ansPreview {
  border: 1px solid #d0d0d0;
  padding: 8px;
  padding-left: 0px;
  width: 100%;
  max-height: 240px;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: row;
  margin-bottom: 8px;
}
.bl_ansPreviewArea .bl_ansPreview_num {
  flex: 0 0 50px;
  text-align: center;
  font-size: 3rem;
}
.bl_ansPreviewArea .bl_ansPreview_img {
  flex: 1 1 auto;
  text-align: left;
  cursor: pointer;
}
.bl_ansPreviewArea .bl_ansPreview_img img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
}
.bl_ansPreviewArea .bl_ansPreview_func {
  flex: 0 0 70px;
  text-align: center;
  margin-left: 8px;
}
.bl_ansPreviewArea .bl_ansPreview_func .bl_ansPreview_sortBtn {
  width: 100%;
  height: 56px;
  border: 1px solid #d0d0d0;
  color: #166eb8;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.6rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
}
.bl_ansPreviewArea .bl_ansPreview_func .bl_ansPreview_delBtn {
  background-color: #f2f2f2;
  height: 42px;
  width: 100%;
  padding: 0 12px;
  border-radius: 5px;
  color: #166eb8;
  font-size: 1.6rem;
  line-height: 1.4rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.bl_ansConfirm {
  display: block;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 8px;
}
.bl_ansConfirm div {
  border: 1px solid #d0d0d0;
  margin-top: 16px;
}
.bl_ansConfirm p {
  text-align: left;
  background-color: #f5f5f5;
  padding: 4px 12px;
}
.bl_ansConfirm img {
  width: 100%;
  margin-bottom: 12px;
}

.bl_ansReference {
  padding-top: 68px;
  padding-bottom: 68px;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  margin-top: 16px;
  margin-bottom: 36px;
}
.bl_ansReference_img {
  background-color: white;
  width: 100%;
  padding: 8px;
}
.bl_ansReference_img img {
  width: 100%;
}
.bl_ansReference_comment {
  padding: 16px 16px 24px;
  text-align: left;
  min-height: 100px;
  max-height: 500px;
  width: 100%;
  overflow-y: auto;
  margin-top: 12px;
  font-size: 1.7rem;
  line-height: 2.6rem;
}
.bl_ansReference_comment__edit {
  padding-bottom: 12px;
}
.bl_ansReference_comment__edit textarea {
  width: 100%;
  min-height: 400px;
  font-size: 1.7rem;
  line-height: 2.8rem;
}
.bl_ansReference_autosaveLabelWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  margin-top: 12px;
}
@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
.bl_ansReference_spinner {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
  margin-right: 8px;
}
.bl_ansReference_autosaveLabel {
  display: inline-block;
}
.bl_ansReference .swiper-container {
  position: relative;
  border: 1px solid #c4c4c4;
  background-color: #f5f5f5;
}
.bl_ansReference .swiper-slide {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.bl_ansReference .swiper-pagination {
  top: -48px !important;
  bottom: auto !important;
}
.bl_ansReference .swiper-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 24px;
}
.bl_ansReference .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2f2e2e !important;
}

.bl_generalComment textarea {
  width: 100%;
  min-height: 550px;
  font-size: 1.7rem;
  line-height: 2.8rem;
}

.bl_ansRef {
  width: 100%;
  margin-top: 24px;
}
.bl_ansRef textarea {
  width: 100%;
}

.bl_nps {
  width: 100%;
  text-align: left;
  border-radius: 5px;
  color: #2f2e2e;
  position: relative;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 5px 25px 1px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  margin-bottom: 24px;
}
@media screen and (max-width: 500px) {
  .bl_nps {
    padding: 16px 8px 13px;
  }
}
@media screen and (min-width: 501px) {
  .bl_nps {
    padding: 26px 22px 13px;
  }
}
.bl_nps_score {
  margin-top: 12px;
}
.bl_nps_score .input.radio {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.bl_nps_score .input.radio input[type=radio] {
  display: none;
}
.bl_nps_score .input.radio label {
  flex-shrink: 0;
  flex-grow: 1;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  margin-right: 2px;
}
@media screen and (max-width: 500px) {
  .bl_nps_score .input.radio label {
    width: 22px;
    height: 28px;
    font-size: 1.2rem;
    line-height: 2.6rem;
    border-radius: 2px;
  }
}
@media screen and (min-width: 501px) {
  .bl_nps_score .input.radio label {
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
    line-height: 3.5rem;
    border-radius: 4px;
  }
}
.bl_nps_score .input.radio label::before {
  content: none;
}
.bl_nps_score .input.radio label:hover {
  opacity: 0.7;
}
.bl_nps_score .input.radio input[type=radio]:checked + label {
  color: white;
  background-color: #166eb8;
}
.bl_nps_scale {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}
@media screen and (max-width: 500px) {
  .bl_nps_scale {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media screen and (min-width: 501px) {
  .bl_nps_scale {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
.bl_nps_scale span:nth-child(2) {
  margin: 0 20px;
}
.bl_nps_trouble {
  text-align: center;
  color: #166eb8;
  margin-top: 28px;
}
.bl_nps_trouble button {
  text-decoration: underline;
}

.bl_review {
  width: 100%;
  text-align: left;
  border-radius: 5px;
  color: #2f2e2e;
  position: relative;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 5px 25px 1px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  margin-top: 4px;
}
@media screen and (max-width: 500px) {
  .bl_review {
    padding: 16px 8px 13px;
  }
}
@media screen and (min-width: 501px) {
  .bl_review {
    padding: 26px 22px 13px;
  }
}
.bl_review textarea {
  width: 100%;
}

.bl_subBtnZone {
  display: flex;
  padding: 12px 0px;
  justify-content: center;
}
.bl_subBtnZone .el_subBtn {
  margin-right: 12px;
  font-size: 1.6rem;
}

.bl_multiChk {
  display: flex;
  flex-wrap: wrap;
  padding: 0px 6px;
}
.bl_multiChk .checkbox {
  margin: 0px 12px 12px 0px;
  font-size: 1.8rem;
}

.bl_earningMeisai {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}
.bl_earningMeisai .el_staticMsg {
  margin-bottom: 40px;
}
.bl_earningMeisai_line {
  border-top: 1px solid gray;
  display: block;
  width: 100%;
  margin: 14px auto 14px;
}
.bl_earningMeisai_record {
  width: 100%;
  margin: 0 auto;
  padding: 0px 6px;
  margin-top: 0px;
}
.bl_earningMeisai_itemNm {
  font-size: 1.5rem;
  text-align: left;
}
.bl_earningMeisai_amount {
  font-size: 1.6rem;
  text-align: right;
  font-weight: bold;
  margin-top: -4px;
}
.bl_earningMeisai_amount__minus {
  color: red;
}
.bl_earningMeisai_sum {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 12px 6px;
  font-size: 1.7rem;
  margin-top: -5px;
  margin-bottom: 32px;
}
.bl_earningMeisai_sum_itemNm {
  text-align: left;
  font-weight: bold;
}
.bl_earningMeisai_sum_amount {
  text-align: right;
  font-weight: bold;
}

.bl_earningWeekly {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0px 0px;
  margin-top: 46px;
  margin-bottom: 24px;
}
@media screen and (max-width: 500px) {
  .bl_earningWeekly > div:nth-child(1) {
    width: 60px;
  }
}
@media screen and (min-width: 501px) {
  .bl_earningWeekly > div:nth-child(1) {
    width: 70px;
  }
}
@media screen and (max-width: 500px) {
  .bl_earningWeekly > div:nth-child(3) {
    width: 60px;
  }
}
@media screen and (min-width: 501px) {
  .bl_earningWeekly > div:nth-child(3) {
    width: 70px;
  }
}
.bl_earningWeekly_date {
  font-weight: bold;
  margin-bottom: -1px;
}
.bl_earningWeekly_date span:nth-child(1) {
  display: block;
}
@media screen and (max-width: 500px) {
  .bl_earningWeekly_date {
    font-size: 1.5rem;
    line-height: 2.2rem;
  }
}
@media screen and (min-width: 501px) {
  .bl_earningWeekly_date {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}
.bl_earningWeekly_wavy {
  margin-left: -4px;
  margin-right: -4px;
}
.bl_earningWeekly_paging {
  display: inline-block;
  position: relative;
  color: #166eb8;
  text-decoration: none;
}
.bl_earningWeekly_paging:visited {
  color: #166eb8;
}
.bl_earningWeekly_paging::before {
  content: "";
  width: 8px;
  height: 14px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 500px) {
  .bl_earningWeekly__previous {
    font-size: 1.4rem;
    padding-left: 22px;
  }
}
@media screen and (min-width: 501px) {
  .bl_earningWeekly__previous {
    padding-left: 32px;
  }
}
.bl_earningWeekly__previous::before {
  top: 7px;
  left: 4px;
  background-image: url(../../img/page-previous.svg);
}
@media screen and (max-width: 500px) {
  .bl_earningWeekly__next {
    font-size: 1.4rem;
    padding-right: 22px;
  }
}
@media screen and (min-width: 501px) {
  .bl_earningWeekly__next {
    padding-right: 32px;
  }
}
.bl_earningWeekly__next::before {
  top: 7px;
  right: 4px;
  background-image: url(../../img/page-next.svg);
}

.bl_skinMeisai {
  font-weight: bold;
}

.bl_skinRecordWrap .bl_skinRecord:last-child {
  border-bottom: 1px solid #d9d9d9;
}
.bl_skinRecordWrap .bl_skinRecord {
  width: 100%;
  margin: 0 auto;
  max-width: 400px;
  padding: 12px 8px;
  border-top: 1px solid #d9d9d9;
}
.bl_skinRecordWrap .bl_skinRecord dl {
  display: flex;
  justify-content: space-between;
}
.bl_skinRecordWrap .bl_skinRecord dl dt {
  font-weight: normal;
  text-align: left;
}
.bl_skinRecordWrap .bl_skinRecord dl dd {
  text-align: right;
}

.bl_scheduleLegend {
  text-align: center;
  margin-top: 12px;
}
.bl_scheduleLegend > div {
  display: inline-block;
}
@media screen and (max-width: 500px) {
  .bl_scheduleLegend > div {
    margin-right: 5px;
  }
}
@media screen and (min-width: 501px) {
  .bl_scheduleLegend > div {
    margin-right: 10px;
  }
}
.bl_scheduleLegend > div span:first-child {
  display: inline-block;
  font-size: 0.85em;
  line-height: 1.5em;
}
@media screen and (max-width: 500px) {
  .bl_scheduleLegend > div span:first-child {
    height: 19px;
    width: 30px;
    margin-right: 4px;
  }
}
@media screen and (min-width: 501px) {
  .bl_scheduleLegend > div span:first-child {
    height: 20px;
    width: 32px;
    margin-right: 6px;
  }
}
.bl_scheduleLegend > div span:nth-child(2) {
  font-size: 0.9em;
  line-height: 1.6rem;
}
.bl_scheduleLegend span {
  vertical-align: middle;
}
.bl_scheduleLegend_circle span:first-child {
  background-color: #166eb8;
  color: white;
}
.bl_scheduleLegend_disabled span:first-child {
  background-color: #bebebe;
  color: #8e8e8e;
}
.bl_scheduleLegend_reserved span:first-child {
  background-color: #166eb8;
  color: white;
  line-height: 1.8em !important;
  font-size: 0.7em !important;
}
.bl_scheduleLegend_edit span:first-child {
  background-color: #ff6c6c;
  color: white;
}

.bl_editSubjTblWrap {
  width: 100%;
  overflow-y: auto;
}

.bl_editSubjTbl {
  border: 1px solid #f1f1f1;
  border-collapse: collapse;
  overflow-y: scroll;
  font-size: 0;
  line-height: 0;
}
.bl_editSubjTbl th,
.bl_editSubjTbl td {
  border: 1px solid #f1f1f1;
  text-align: center;
  vertical-align: middle;
  padding: 12px 12px;
}
.bl_editSubjTbl td {
  min-width: 59px;
}
.bl_editSubjTbl_subj {
  min-width: 130px !important;
  padding: 3px 3px !important;
  line-height: 2rem !important;
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.bl_editSubjTbl .checkbox label {
  display: inline-block !important;
}
.bl_editSubjTbl .checkbox label:before {
  margin-right: 0;
}
.bl_editSubjTbl_year {
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 2.1rem;
}

.bl_instFin {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  border-radius: 5px;
  color: #2f2e2e;
  position: relative;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 5px 25px 1px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  margin-top: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 500px) {
  .bl_instFin {
    padding: 16px 8px 13px;
  }
}
@media screen and (min-width: 501px) {
  .bl_instFin {
    padding: 26px 22px 13px;
  }
}
.bl_instFin .el_ttl2 {
  margin-bottom: 24px;
}
.bl_instFin .input {
  padding: 4px;
}
.bl_instFin textarea {
  width: 100%;
}
.bl_instFin p {
  margin-top: 12px;
}
.bl_instFin h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.bl_footerMenuWrap {
  width: 100%;
  background-color: white;
  bottom: 0;
  left: 0;
  width: 100%;
  position: fixed;
  z-index: 1000;
}
@media screen and (min-width: 501px) {
  .bl_footerMenuWrap {
    display: none;
  }
}

.bl_footerMenu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 68px;
  max-width: 1048px;
  margin: 0 auto;
}
.bl_footerMenu li {
  flex-grow: 1;
  width: 60px;
  border-right: 1px solid rgb(191, 191, 191);
}
.bl_footerMenu li a {
  width: 100%;
}
.bl_footerMenu li:last-child {
  border-right: transparent;
}

.bl_refUnit__framed {
  border-radius: 5px;
  padding: 8px 16px 24px;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 5px 25px 1px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.bl_refUnit__framed .el_btn {
  margin-top: 32px;
}

.bl_stepCard {
  border: 1px solid rgb(218, 218, 218);
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 5px 25px 1px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  padding: 20px 16px;
  margin-top: 12px;
}
.bl_stepCard_upper {
  text-align: left;
  display: flex;
  align-items: flex-start;
}
.bl_stepCard_check {
  flex-shrink: 0;
  width: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.bl_stepCard_check img {
  width: 46px;
  margin-bottom: 4px;
}
.bl_stepCard_check span {
  font-weight: bold;
  font-size: 1.2rem;
}
@media screen and (max-width: 500px) {
  .bl_stepCard_check {
    margin-right: 8px;
  }
}
@media screen and (min-width: 501px) {
  .bl_stepCard_check {
    margin-right: 20px;
  }
}
.bl_stepCard_title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 3rem;
  padding-top: 8px;
}
.bl_stepCard_p {
  text-align: left;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2.4rem;
  padding: 16px 0;
}
.bl_stepCard .el_btn {
  margin-top: 20px;
}

.bl_stepProgress {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 16px;
}
.bl_stepProgress span:nth-child(1) {
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 24px;
}
.bl_stepProgress span:nth-child(2) {
  font-size: 52px;
}
.bl_stepProgress span:nth-child(3) {
  font-size: 1.8rem;
  font-weight: bold;
  margin-left: 24px;
}

.bl_lctrFvw {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bl_lctrFvw img {
  height: 150px;
  width: 150px;
  object-fit: cover;
  border-radius: 200px;
  margin-bottom: 8px;
}
.bl_lctrFvw_cls {
  background-color: black;
  color: white;
  line-height: 1.4rem;
  font-size: 1rem;
  border-radius: 5px;
  padding: 2px 9px;
}
.bl_lctrFvw_nm {
  font-weight: bold;
  font-size: 2rem;
  line-height: 30px;
}
.bl_lctrFvw_shogo {
  background-color: #f8f8f8;
  padding: 0.3571428571em 0.8571428571em;
  line-height: 1.5;
  text-align: left;
  font-size: 1.4rem;
  max-width: 452px;
  width: 100%;
  margin-top: 12px;
}

.bl_lctrProfile {
  text-align: left;
  background-color: #f8f8f8;
  padding: 8px 8px;
}

.bl_lssnMiCardWrap .bl_lssnMiCard {
  margin-bottom: 12px;
}

.bl_lssnMiCard {
  border: 2px solid #166eb8;
  border-radius: 10px;
  padding: 18px 28px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 340px;
  margin-right: auto;
  margin-left: auto;
  text-decoration: none;
}
.bl_lssnMiCard_title img {
  width: 30px;
  margin-right: 13px;
}
.bl_lssnMiCard_title p {
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 2.6rem;
  display: inline-block;
}
.bl_lssnMiCard_userNm {
  font-size: 1.4rem;
  margin-top: 12px;
}
.bl_lssnMiCard_datetime {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8e8e8e;
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.bl_lssnMiCard_datetime img {
  width: 20px;
  margin-right: 12px;
}

.bl_commentSend {
  padding: 32px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  border-radius: 5px;
  color: #2f2e2e;
  position: relative;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 5px 25px 1px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  margin-top: 48px;
}

.bl_pagination {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
}
.bl_pagination ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bl_pagination .active {
  background-color: #166eb8;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  text-align: center;
  line-height: 4.1rem;
}
.bl_pagination .active a {
  color: white;
}
.bl_pagination .prev a,
.bl_pagination .next a,
.bl_pagination .first a,
.bl_pagination .last a {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 16px;
  width: 21px;
}
.bl_pagination .prev a {
  background-image: url("../../img/pagination-left.svg");
}
.bl_pagination .next a {
  background-image: url("../../img/pagination-right.svg");
}
.bl_pagination .first a {
  background-image: url("../../img/pagination-left2.svg");
}
.bl_pagination .last a {
  background-image: url("../../img/pagination-right2.svg");
}
.bl_pagination a {
  text-decoration: none;
  color: #2f2e2e;
  font-size: 1.6rem;
}

.bl_lssnSrch {
  margin-top: 12px;
  margin-bottom: 12px;
}
.bl_lssnSrch .input.radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.bl_lssnSrch label {
  margin-right: 12px;
  margin-bottom: 4px;
}

.bl_oviceZone {
  margin-bottom: 44px;
}
.bl_oviceZone_msg {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 12px;
}
.bl_oviceZone_noteWrap .bl_oviceZone_note:first-child {
  margin-top: 8px;
}
.bl_oviceZone_noteWrap .bl_oviceZone_note:last-child {
  margin-bottom: 20px;
}
.bl_oviceZone_note {
  display: block;
  margin: 0 auto 0;
  max-width: 500px;
  text-align: left;
  font-size: 0.85em;
  line-height: 1.4em;
  text-indent: -1em;
  padding-left: 1em;
}
.bl_oviceZone_link {
  text-indent: initial;
  font-weight: bold;
  text-decoration: none;
}
.bl_oviceZone_no {
  display: block;
  font-weight: bold;
  font-size: 1.4rem;
  margin-top: 18px;
}
.bl_oviceZone_no span {
  font-size: 2.8rem;
  color: #166eb8;
}

.bl_gallery {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  font-size: 1em;
  padding-bottom: 8px;
  white-space: nowrap;
  height: 170px;
}
.bl_gallery__item {
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  margin: 0 9px;
}
@media (max-width: 500px) {
  .bl_gallery__item {
    height: 80px;
    width: 80px;
  }
  .bl_gallery__item:nth-child(5), .bl_gallery__item:nth-child(6), .bl_gallery__item:nth-child(7), .bl_gallery__item:nth-child(8) {
    display: inline-block !important;
  }
}
@media (max-width: 650px) {
  .bl_gallery__item {
    height: 80px;
    width: 80px;
  }
  .bl_gallery__item:nth-child(5) {
    display: none;
  }
}
@media (max-width: 750px) {
  .bl_gallery__item {
    height: 85px;
    width: 85px;
  }
  .bl_gallery__item:nth-child(6) {
    display: none;
  }
}
@media (max-width: 870px) {
  .bl_gallery__item {
    height: 85px;
    width: 85px;
  }
  .bl_gallery__item:nth-child(7) {
    display: none;
  }
}
@media (max-width: 1050px) {
  .bl_gallery__item {
    height: 90px;
    width: 90px;
  }
  .bl_gallery__item:nth-child(8) {
    display: none;
  }
}
@media (min-width: 1051px) {
  .bl_gallery__item {
    height: 95px;
    width: 95px;
  }
}
.bl_gallery__link {
  display: block;
}
.bl_gallery__img > img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgb(238, 238, 238);
}
.bl_gallery__name {
  margin-top: 0.875em;
  font-weight: normal;
  line-height: 1.3em;
  font-size: 0.7em;
  white-space: normal;
}
.bl_gallery__itemFooter {
  margin-top: 1px;
  margin-left: -6px;
  line-height: 1;
}
.bl_gallery__itemTag {
  display: inline-block;
  margin-top: 6px;
  margin-left: 6px;
  border-radius: 5px;
  background-color: #2f2e2e;
  padding: 4px 3px;
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.bl_planCard {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}
.bl_planCard + label {
  box-shadow: rgba(0, 0, 0, 0.18) 0px 5px 25px 1px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border-radius: 10px;
  background-color: #fff;
  color: #2f2e2e;
  display: block;
  padding: 0.5rem 1rem;
  margin-right: 18px;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
@media screen and (max-width: 500px) {
  .bl_planCard + label {
    padding: 16px 8px 8px;
    margin-top: 12px;
  }
}
@media screen and (min-width: 501px) {
  .bl_planCard + label {
    padding: 20px 17px 13px;
    margin-top: 12px;
  }
}
.bl_planCard + label .bl_planCard_upper {
  display: flex;
}
.bl_planCard + label .bl_planCard_upper .bl_planCard_chk {
  margin-right: 12px;
  padding: 4px 6px;
}
.bl_planCard + label .bl_planCard_upper .bl_planCard_chk span {
  display: block;
  background-image: url(../../img/plan-chk-off.svg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 50px;
  width: 50px;
}
.bl_planCard + label .bl_planCard_upper .bl_planCard_planNm {
  font-size: 1.4em;
  font-weight: bold;
}
.bl_planCard + label .bl_planCard_upper .bl_planCard_planNm_mon {
  font-size: 1.5rem;
}
.bl_planCard + label .bl_planCard_upper .bl_planCard_ticket {
  max-width: 200px;
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.bl_planCard + label .bl_planCard_upper .bl_planCard_ticket .bl_planCard_ticketImg {
  margin-right: 10px;
  margin-top: 8px;
}
.bl_planCard + label .bl_planCard_upper .bl_planCard_ticket .bl_planCard_ticketImg span {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../../img/icon-ticket-black.svg);
}
@media screen and (max-width: 500px) {
  .bl_planCard + label .bl_planCard_upper .bl_planCard_ticket .bl_planCard_ticketImg span {
    height: 20px;
    width: 29px;
  }
}
@media screen and (min-width: 501px) {
  .bl_planCard + label .bl_planCard_upper .bl_planCard_ticket .bl_planCard_ticketImg span {
    height: 23px;
    width: 33px;
  }
}
.bl_planCard + label .bl_planCard_upper .bl_planCard_ticket .bl_planCard_ticketCnt {
  font-size: 1.05em;
  color: #8E8E8E;
  display: inline-block;
}
.bl_planCard + label .bl_planCard_line {
  position: relative;
  width: 100%;
  height: 6px;
  overflow: hidden;
}
@media screen and (max-width: 500px) {
  .bl_planCard + label .bl_planCard_line {
    margin-top: 8px;
    margin-bottom: 14px;
  }
}
@media screen and (min-width: 501px) {
  .bl_planCard + label .bl_planCard_line {
    margin-top: 8px;
    margin-bottom: 24px;
  }
}
.bl_planCard + label .bl_planCard_line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #8E8E8E 0, #8E8E8E 4px, transparent 4px, transparent 7px);
}
.bl_planCard + label .bl_planCard_lower {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.bl_planCard + label .bl_planCard_lower .bl_planCard_priceWrap {
  flex: 1 1 250px;
  text-align: right;
}
.bl_planCard + label .bl_planCard_lower .bl_planCard_priceWrap .bl_planCard_normalPrice {
  color: #8E8E8E;
  text-decoration: line-through;
  font-size: 0.85em;
  margin-right: 3%;
  margin-top: -4px;
}
.bl_planCard + label .bl_planCard_lower .bl_planCard_priceWrap .bl_planCard_price {
  white-space: nowrap;
  color: #ff6c6c;
  display: inline-block;
  margin-top: 4px;
}
.bl_planCard + label .bl_planCard_lower .bl_planCard_priceWrap .bl_planCard_price span:nth-child(1) {
  font-size: 1em;
}
.bl_planCard + label .bl_planCard_lower .bl_planCard_priceWrap .bl_planCard_price span:nth-child(2) {
  font-size: 2.8em;
  margin-bottom: 4px;
}
.bl_planCard + label .bl_planCard_lower .bl_planCard_priceWrap .bl_planCard_price span:nth-child(3) {
  font-size: 1em;
}
.bl_planCard:checked + label {
  background: #166eb8;
  color: #fff;
}
.bl_planCard:checked + label .bl_planCard_chk span {
  background-image: url(../../img/plan-chk-on.svg);
}
.bl_planCard:checked + label .bl_planCard_ticket .bl_planCard_ticketImg span {
  background-image: url(../../img/icon-ticket-white.svg);
}
.bl_planCard:checked + label .bl_planCard_ticket .bl_planCard_ticketCnt {
  color: white;
}
.bl_planCard:checked + label .bl_planCard_line::after {
  background: repeating-linear-gradient(to right, white 0, white 4px, transparent 4px, transparent 7px);
}
.bl_planCard:checked + label .bl_planCard_lower .bl_planCard_priceWrap .bl_planCard_normalPrice {
  color: white;
}
.bl_planCard:checked + label .bl_planCard_lower .bl_planCard_priceWrap .bl_planCard_priceMongon {
  color: white;
}
.bl_planCard:checked + label .bl_planCard_lower .bl_planCard_priceWrap .bl_planCard_price {
  display: inline-block;
  color: white;
}

.bl_planBuyCard {
  box-shadow: rgba(0, 0, 0, 0.18) 0px 5px 25px 1px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border-radius: 10px;
  background-color: #fff;
  color: #2f2e2e;
  display: block;
  padding: 0.5rem 1rem;
  margin-right: 18px;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  text-decoration: none;
}
@media screen and (max-width: 500px) {
  .bl_planBuyCard {
    padding: 23px 16px 12px;
    margin-top: 12px;
  }
}
@media screen and (min-width: 501px) {
  .bl_planBuyCard {
    padding: 26px 22px 13px;
    margin-top: 12px;
  }
}
.bl_planBuyCard_upper {
  display: flex;
}
.bl_planBuyCard_upper .bl_planBuyCard_planNm {
  text-decoration: none;
}
.bl_planBuyCard_upper .bl_planBuyCard_planNm > span:nth-child(1) {
  font-size: 2em;
}
.bl_planBuyCard_upper .bl_planBuyCard_planNm > span:nth-child(3) {
  font-size: 1.1em;
}
.bl_planBuyCard .bl_planBuyCard_line {
  position: relative;
  width: 100%;
  height: 20px;
  overflow: hidden;
}
.bl_planBuyCard .bl_planBuyCard_line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #8E8E8E 0, #8E8E8E 4px, transparent 4px, transparent 7px);
}
.bl_planBuyCard_lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}
.bl_planBuyCard_lower .bl_planBuyCard_lctr {
  width: 200px;
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.bl_planBuyCard_lower .bl_planBuyCard_lctr .bl_planBuyCard_lctrImg {
  padding: 6px;
  padding-left: 2px;
}
@media screen and (max-width: 500px) {
  .bl_planBuyCard_lower .bl_planBuyCard_lctr .bl_planBuyCard_lctrImg {
    margin-right: 4px;
  }
}
@media screen and (min-width: 501px) {
  .bl_planBuyCard_lower .bl_planBuyCard_lctr .bl_planBuyCard_lctrImg {
    margin-right: 6px;
  }
}
.bl_planBuyCard_lower .bl_planBuyCard_lctr .bl_planBuyCard_lctrImg img {
  border-radius: 200px;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 500px) {
  .bl_planBuyCard_lower .bl_planBuyCard_lctr .bl_planBuyCard_lctrImg img {
    width: 38px;
    height: 38px;
  }
}
@media screen and (min-width: 501px) {
  .bl_planBuyCard_lower .bl_planBuyCard_lctr .bl_planBuyCard_lctrImg img {
    width: 46px;
    height: 46px;
  }
}
.bl_planBuyCard_lower .bl_planBuyCard_lctr .bl_planBuyCard_lctrNm {
  font-size: 1.13em;
  display: inline-block;
}
.bl_planBuyCard_lower .bl_planBuyCard_ticket {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 8px;
}
.bl_planBuyCard_lower .bl_planBuyCard_ticket .bl_planBuyCard_ticketImg {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .bl_planBuyCard_lower .bl_planBuyCard_ticket .bl_planBuyCard_ticketImg {
    margin-right: 11px;
  }
}
@media screen and (min-width: 501px) {
  .bl_planBuyCard_lower .bl_planBuyCard_ticket .bl_planBuyCard_ticketImg {
    margin-right: 14px;
  }
}
.bl_planBuyCard_lower .bl_planBuyCard_ticket .bl_planBuyCard_ticketImg span {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../../img/icon-ticket-black.svg);
}
@media screen and (max-width: 500px) {
  .bl_planBuyCard_lower .bl_planBuyCard_ticket .bl_planBuyCard_ticketImg span {
    min-height: 23px;
    width: 33px;
  }
}
@media screen and (min-width: 501px) {
  .bl_planBuyCard_lower .bl_planBuyCard_ticket .bl_planBuyCard_ticketImg span {
    min-height: 30px;
    width: 40px;
  }
}
.bl_planBuyCard_lower .bl_planBuyCard_ticket .bl_planBuyCard_ticketStr {
  color: #8E8E8E;
  font-size: 1em;
  display: inline-block;
}

.bl_planSmry {
  max-width: 500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  margin-top: 2%;
  margin-bottom: 2.5%;
}
.bl_planSmry_l {
  margin-right: 6%;
}
.bl_planSmry_l img {
  border-radius: 200px;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 500px) {
  .bl_planSmry_l img {
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width: 501px) {
  .bl_planSmry_l img {
    width: 120px;
    height: 120px;
  }
}
.bl_planSmry_r {
  text-align: left;
  flex-grow: 1;
  padding-top: 8px;
}
.bl_planSmry_lctrTag {
  width: auto;
  display: inline-block;
  vertical-align: middle;
  font-size: 0.7em;
  line-height: 1.1em;
}
.bl_planSmry_lctrNm {
  font-size: 1.05em;
  display: inline-block;
  vertical-align: middle;
}
.bl_planSmry_planNm {
  font-weight: bold;
  margin-top: 8px;
}
.bl_planSmry_planNm span:nth-child(1) {
  font-size: 1.5em;
}
.bl_planSmry_planNm span:nth-child(2) {
  font-size: 1em;
  white-space: nowrap;
}
.bl_planSmry_ticket {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.bl_planSmry_ticketImg {
  margin-right: 2.8%;
}
@media screen and (max-width: 500px) {
  .bl_planSmry_ticketImg {
    min-width: 26px;
    height: 22px;
  }
}
@media screen and (min-width: 501px) {
  .bl_planSmry_ticketImg {
    min-width: 38px;
    height: 23px;
  }
}
.bl_planSmry_ticketCnt {
  margin-top: 3px;
  color: #8E8E8E;
  display: inline-block;
}

.bl_planSmry_line {
  max-width: 500px;
  margin: 0 auto;
}

.bl_planSmry_price {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  line-height: 5rem;
  margin-top: 2.7%;
}
.bl_planSmry_priceNormal {
  display: inline-block;
  text-decoration: line-through;
  color: #8E8E8E;
  margin-right: 3%;
  font-size: 0.95em;
}
.bl_planSmry_priceNow {
  display: inline-block;
  color: #ff6c6c;
}
.bl_planSmry_priceNow span:nth-child(1) {
  font-size: 1.2em;
}
.bl_planSmry_priceNow span:nth-child(2) {
  font-size: 3.6em;
}
.bl_planSmry_priceNow span:nth-child(3) {
  font-size: 1.2em;
}

.bl_miYykTicket {
  margin-bottom: 3%;
  margin-top: 24px;
}
.bl_miYykTicket_tag {
  display: inline-block;
  background-color: black;
  border-radius: 5px;
  color: white;
  font-size: 1.3rem;
  padding: 0px 8px;
  vertical-align: middle;
  margin-right: 6px;
}
.bl_miYykTicket_ticket {
  margin-top: 2px;
  font-size: 1.6rem;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}

.bl_skipTrial {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 48px;
}

.bl_planStmi {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.bl_planStmi .bl_note {
  margin-top: 20px;
}
.bl_planStmi_p {
  max-width: 428px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4%;
}
.bl_planStmi_toggle {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  color: #166eb8;
  cursor: pointer;
  user-select: none;
  margin-top: 4%;
}
.bl_planStmi_dtl {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.bl_planStmi_dtl dl {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}
.bl_planStmi_dtl dl dt {
  width: 60%;
}

.bl_note {
  border: 2px solid #166eb8;
  border-radius: 10px;
  max-width: 340px;
  padding: 18px 28px;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-decoration: none;
}
.bl_note_title img {
  width: 30px;
  margin-right: 13px;
}
.bl_note_title p {
  font-weight: bold;
  font-size: 1.7rem;
  color: #166eb8;
  line-height: 2.6rem;
  display: inline-block;
}
.bl_note_content {
  font-size: 0.95em;
  color: #166eb8;
  margin-top: 12px;
}

.bl_planStmiOpen {
  text-align: left;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  color: #166eb8;
  cursor: pointer;
  margin-bottom: 24px;
}

.bl_planStmiCard {
  box-shadow: rgba(0, 0, 0, 0.18) 0px 5px 25px 1px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border-radius: 10px;
  background-color: #fff;
  color: #2f2e2e;
  display: block;
  padding: 0.5rem 1rem;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.bl_planStmiCard_upper .bl_planStmiCard_planNm {
  font-size: 2rem;
  font-weight: bold;
}
.bl_planStmiCard_upper .bl_planStmiCard_planNm_mon {
  font-size: 1.4rem;
}
.bl_planStmiCard_line {
  position: relative;
  width: 100%;
  height: 20px;
  overflow: hidden;
}
.bl_planStmiCard_line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #8E8E8E 0, #8E8E8E 4px, transparent 4px, transparent 7px);
}
.bl_planStmiCard_ticket {
  width: 200px;
  display: flex;
  align-items: center;
}
.bl_planStmiCard_ticketImg {
  padding: 6px;
  margin-right: 6px;
}
.bl_planStmiCard_ticketImg span {
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../img/icon-ticket-black.svg);
  height: 30px;
  width: 44px;
}
.bl_planStmiCard_ticketCnt {
  color: #8E8E8E;
  display: inline-block;
}
@media screen and (max-width: 500px) {
  .bl_planStmiCard {
    padding: 16px 8px 13px;
    margin-top: 12px;
  }
}
@media screen and (min-width: 501px) {
  .bl_planStmiCard {
    padding: 26px 26px 42px;
    margin-top: 8%;
  }
}

.bl_purchaseHistory {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.bl_purchaseHistory_unit {
  padding: 8px 8px;
}
.bl_purchaseHistory.bl_purchaseHistory__lctr dt {
  width: 140px;
}
.bl_purchaseHistory dl {
  display: flex;
  justify-content: space-between;
  margin-top: 2px;
}
.bl_purchaseHistory dl dt,
.bl_purchaseHistory dl dd {
  font-size: 0.9em;
  font-weight: normal;
  text-align: left;
}
.bl_purchaseHistory dl dt {
  width: 110px;
}
.bl_purchaseHistory dl dd a {
  text-decoration: auto !important;
}

.bl_subjects {
  gap: 0.8em 1.634%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  font-size: 20px;
}
.bl_subjects_link {
  display: grid;
  place-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #f8f8f8;
  padding: 1em 0.5em;
  min-height: 5.65em;
  text-align: center;
}

.bl_terms {
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  background-color: #fbfbfb;
  font-weight: normal;
  background-color: white;
  padding: 18px 18px;
  min-width: 100px;
  max-width: 100%;
  text-align: left;
  font-size: 1.5rem;
  line-height: 2.2rem;
  height: 400px;
  overflow-y: auto;
}
.bl_terms_ttl {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 13px;
}
@media screen and (max-width: 500px) {
  .bl_terms p {
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 501px) {
  .bl_terms p {
    margin-bottom: 18px;
  }
}

.bl_skinTbl {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
}
.bl_skinTbl .bl_skinRec {
  border: 1px solid #A9A9A9;
  border-radius: 6px;
  padding: 16px 16px;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 5px 25px 1px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  text-decoration: none;
  margin-bottom: 16px;
}
.bl_skinTbl .bl_skinRec_upper {
  margin-bottom: 12px;
}
.bl_skinTbl .bl_skinRec_upper > div:nth-child(1) {
  text-align: left;
}
.bl_skinTbl .bl_skinRec_upper > div:nth-child(2) {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.bl_skinTbl .bl_skinRec_tarYm {
  font-weight: bold;
  font-size: 1.25em;
  margin-bottom: 12px;
}
.bl_skinTbl .bl_skinRec_tag {
  display: inline-block;
  border: 1px solid #166eb8;
  border-radius: 6px;
  color: #166eb8;
  font-size: 0.88em;
  padding: 0px 16px;
  text-align: center;
}
.bl_skinTbl .bl_skinRec_btn {
  display: inline-block;
  background-color: #166eb8;
  border-color: #166eb8;
  color: white;
  border-width: 2px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-size: 1em;
}
@media screen and (max-width: 500px) {
  .bl_skinTbl .bl_skinRec_btn {
    padding: 4px 12px;
  }
}
@media screen and (min-width: 501px) {
  .bl_skinTbl .bl_skinRec_btn {
    padding: 4px 12px;
  }
}
.bl_skinTbl .bl_skinRec_btn:visited {
  color: white;
}
.bl_skinTbl .bl_skinRec_btn:active {
  opacity: 0.8;
}
.bl_skinTbl .bl_skinRec_btn:hover {
  opacity: 0.8;
}
.bl_skinTbl .bl_skinRec table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.bl_skinTbl .bl_skinRec table th,
.bl_skinTbl .bl_skinRec table td {
  border: 1px solid #A9A9A9;
}
@media screen and (max-width: 500px) {
  .bl_skinTbl .bl_skinRec table th,
.bl_skinTbl .bl_skinRec table td {
    padding: 4px 11px;
  }
}
@media screen and (min-width: 501px) {
  .bl_skinTbl .bl_skinRec table th,
.bl_skinTbl .bl_skinRec table td {
    padding: 6px 16px;
  }
}
.bl_skinTbl .bl_skinRec table th {
  text-align: left;
  font-weight: normal;
  background-color: rgb(240, 240, 240);
}
@media screen and (max-width: 500px) {
  .bl_skinTbl .bl_skinRec table th {
    width: 134px;
  }
}
@media screen and (min-width: 501px) {
  .bl_skinTbl .bl_skinRec table th {
    width: 170px;
  }
}

.hp_num {
  font-family: "alternate-gothic-no-1-d", sans-serif !important;
  font-weight: normal !important;
  font-style: normal !important;
}

.hp_retro {
  font-family: ab-clip-medium, sans-serif !important;
  font-style: normal !important;
  font-weight: normal !important;
}

.hp_dspBlock {
  display: block !important;
}

.hp_overflowHidden {
  overflow: hidden !important;
}

.hp_dBlock {
  display: block !important;
}

.is_dBlock {
  display: block !important;
}

.hp_dNone {
  display: none !important;
}

.is_dNone {
  display: none !important;
}

.is_dIBLock {
  display: inline-block !important;
}

.hp_vaMiddle {
  vertical-align: middle !important;
}

.hp_overflowHidden {
  overflow: hidden !important;
}

.hp_bgYellow {
  background-color: rgb(255, 255, 66) !important;
}

.hp_fw500 {
  font-weight: 500 !important;
}

.hp_fwBold {
  font-weight: bold !important;
}

.hp_tdUnderLine {
  text-decoration: underline !important;
}

.hp_taLeft {
  text-align: left !important;
}

.hp_taCenter {
  text-align: center !important;
}

.hp_cRed {
  color: #ff6c6c !important;
}

.hp_whNowrap {
  white-space: nowrap !important;
}

.hp_readOnly {
  background-color: gray !important;
}

@media screen and (min-width: 501px) {
  .hp_blockPc {
    display: block !important;
  }
}

@media screen and (max-width: 500px) {
  .hp_blockMob {
    display: block !important;
  }
}

.hp_dBlock {
  display: block !important;
}

@media screen and (min-width: 501px) {
  .hp_dBlockPc {
    display: block !important;
  }
}

@media screen and (max-width: 500px) {
  .hp_dBlockMob {
    display: block !important;
  }
}

.hp_ma300pxPc {
  width: 100% !important;
}
@media screen and (min-width: 501px) {
  .hp_ma300pxPc {
    max-width: 300px !important;
  }
}

.hp_ma400pxPc {
  width: 100% !important;
}
@media screen and (min-width: 501px) {
  .hp_ma400pxPc {
    max-width: 400px !important;
  }
}

.hp_w100Per {
  width: 100% !important;
}

.hp_lh21px {
  line-height: 21px !important;
}

@media screen and (max-width: 500px) {
  .hp_fzM {
    font-size: 1.7rem !important;
  }
}
@media screen and (min-width: 501px) {
  .hp_fzM {
    font-size: 2rem !important;
  }
}

@media screen and (max-width: 500px) {
  .hp_fzL {
    font-size: 2rem !important;
  }
}
@media screen and (min-width: 501px) {
  .hp_fzL {
    font-size: 2.4rem !important;
  }
}

.hp_fsz09em {
  font-size: 0.9em !important;
}

.hp_fsz05em {
  font-size: 0.5em !important;
}

.hp_fsz12em {
  font-size: 1.2em !important;
}

.hp_fsz16em {
  font-size: 1.6em !important;
}

.hp_fsz18rem {
  font-size: 1.8rem !important;
}

.hp_fsz20rem {
  font-size: 2rem !important;
}

.m-16 {
  margin: -16px !important;
}

.mb-16 {
  margin-bottom: -16px !important;
}

.mt-16 {
  margin-top: -16px !important;
}

.ml-16 {
  margin-left: -16px !important;
}

.mr-16 {
  margin-right: -16px !important;
}

.p-16 {
  padding: -16px;
}

.pb-16 {
  padding-bottom: -16px !important;
}

.pt-16 {
  padding-top: -16px !important;
}

.pl-16 {
  padding-left: -16px !important;
}

.pr-16 {
  padding-right: -16px !important;
}

@media screen and (min-width: 501px) {
  .mg-16Pc {
    margin: -16px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb-16Pc {
    margin-bottom: -16px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt-16Pc {
    margin-top: -16px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml-16Pc {
    margin-left: -16px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr-16Pc {
    margin-right: -16px !important;
  }
}

@media screen and (min-width: 501px) {
  .p-16Pc {
    padding: -16px;
  }
}

@media screen and (min-width: 501px) {
  .pb-16Pc {
    padding-bottom: -16px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt-16Pc {
    padding-top: -16px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl-16Pc {
    padding-left: -16px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr-16Pc {
    padding-right: -16px !important;
  }
}

@media screen and (max-width: 500px) {
  .m-16Mob {
    margin: -16px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb-16Mob {
    margin-bottom: -16px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt-16Mob {
    margin-top: -16px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml-16Mob {
    margin-left: -16px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr-16Mob {
    margin-right: -16px !important;
  }
}

@media screen and (max-width: 500px) {
  .p-16Mob {
    padding: -16px;
  }
}

@media screen and (max-width: 500px) {
  .pb-16Mob {
    padding-bottom: -16px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt-16Mob {
    padding-top: -16px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl-16Mob {
    padding-left: -16px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr-16Mob {
    padding-right: -16px !important;
  }
}

.m-12 {
  margin: -12px !important;
}

.mb-12 {
  margin-bottom: -12px !important;
}

.mt-12 {
  margin-top: -12px !important;
}

.ml-12 {
  margin-left: -12px !important;
}

.mr-12 {
  margin-right: -12px !important;
}

.p-12 {
  padding: -12px;
}

.pb-12 {
  padding-bottom: -12px !important;
}

.pt-12 {
  padding-top: -12px !important;
}

.pl-12 {
  padding-left: -12px !important;
}

.pr-12 {
  padding-right: -12px !important;
}

@media screen and (min-width: 501px) {
  .mg-12Pc {
    margin: -12px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb-12Pc {
    margin-bottom: -12px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt-12Pc {
    margin-top: -12px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml-12Pc {
    margin-left: -12px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr-12Pc {
    margin-right: -12px !important;
  }
}

@media screen and (min-width: 501px) {
  .p-12Pc {
    padding: -12px;
  }
}

@media screen and (min-width: 501px) {
  .pb-12Pc {
    padding-bottom: -12px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt-12Pc {
    padding-top: -12px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl-12Pc {
    padding-left: -12px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr-12Pc {
    padding-right: -12px !important;
  }
}

@media screen and (max-width: 500px) {
  .m-12Mob {
    margin: -12px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb-12Mob {
    margin-bottom: -12px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt-12Mob {
    margin-top: -12px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml-12Mob {
    margin-left: -12px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr-12Mob {
    margin-right: -12px !important;
  }
}

@media screen and (max-width: 500px) {
  .p-12Mob {
    padding: -12px;
  }
}

@media screen and (max-width: 500px) {
  .pb-12Mob {
    padding-bottom: -12px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt-12Mob {
    padding-top: -12px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl-12Mob {
    padding-left: -12px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr-12Mob {
    padding-right: -12px !important;
  }
}

.m-8 {
  margin: -8px !important;
}

.mb-8 {
  margin-bottom: -8px !important;
}

.mt-8 {
  margin-top: -8px !important;
}

.ml-8 {
  margin-left: -8px !important;
}

.mr-8 {
  margin-right: -8px !important;
}

.p-8 {
  padding: -8px;
}

.pb-8 {
  padding-bottom: -8px !important;
}

.pt-8 {
  padding-top: -8px !important;
}

.pl-8 {
  padding-left: -8px !important;
}

.pr-8 {
  padding-right: -8px !important;
}

@media screen and (min-width: 501px) {
  .mg-8Pc {
    margin: -8px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb-8Pc {
    margin-bottom: -8px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt-8Pc {
    margin-top: -8px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml-8Pc {
    margin-left: -8px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr-8Pc {
    margin-right: -8px !important;
  }
}

@media screen and (min-width: 501px) {
  .p-8Pc {
    padding: -8px;
  }
}

@media screen and (min-width: 501px) {
  .pb-8Pc {
    padding-bottom: -8px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt-8Pc {
    padding-top: -8px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl-8Pc {
    padding-left: -8px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr-8Pc {
    padding-right: -8px !important;
  }
}

@media screen and (max-width: 500px) {
  .m-8Mob {
    margin: -8px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb-8Mob {
    margin-bottom: -8px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt-8Mob {
    margin-top: -8px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml-8Mob {
    margin-left: -8px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr-8Mob {
    margin-right: -8px !important;
  }
}

@media screen and (max-width: 500px) {
  .p-8Mob {
    padding: -8px;
  }
}

@media screen and (max-width: 500px) {
  .pb-8Mob {
    padding-bottom: -8px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt-8Mob {
    padding-top: -8px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl-8Mob {
    padding-left: -8px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr-8Mob {
    padding-right: -8px !important;
  }
}

.m-4 {
  margin: -4px !important;
}

.mb-4 {
  margin-bottom: -4px !important;
}

.mt-4 {
  margin-top: -4px !important;
}

.ml-4 {
  margin-left: -4px !important;
}

.mr-4 {
  margin-right: -4px !important;
}

.p-4 {
  padding: -4px;
}

.pb-4 {
  padding-bottom: -4px !important;
}

.pt-4 {
  padding-top: -4px !important;
}

.pl-4 {
  padding-left: -4px !important;
}

.pr-4 {
  padding-right: -4px !important;
}

@media screen and (min-width: 501px) {
  .mg-4Pc {
    margin: -4px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb-4Pc {
    margin-bottom: -4px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt-4Pc {
    margin-top: -4px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml-4Pc {
    margin-left: -4px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr-4Pc {
    margin-right: -4px !important;
  }
}

@media screen and (min-width: 501px) {
  .p-4Pc {
    padding: -4px;
  }
}

@media screen and (min-width: 501px) {
  .pb-4Pc {
    padding-bottom: -4px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt-4Pc {
    padding-top: -4px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl-4Pc {
    padding-left: -4px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr-4Pc {
    padding-right: -4px !important;
  }
}

@media screen and (max-width: 500px) {
  .m-4Mob {
    margin: -4px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb-4Mob {
    margin-bottom: -4px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt-4Mob {
    margin-top: -4px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml-4Mob {
    margin-left: -4px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr-4Mob {
    margin-right: -4px !important;
  }
}

@media screen and (max-width: 500px) {
  .p-4Mob {
    padding: -4px;
  }
}

@media screen and (max-width: 500px) {
  .pb-4Mob {
    padding-bottom: -4px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt-4Mob {
    padding-top: -4px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl-4Mob {
    padding-left: -4px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr-4Mob {
    padding-right: -4px !important;
  }
}

.m0 {
  margin: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.p0 {
  padding: 0px;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

@media screen and (min-width: 501px) {
  .mg0Pc {
    margin: 0px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb0Pc {
    margin-bottom: 0px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt0Pc {
    margin-top: 0px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml0Pc {
    margin-left: 0px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr0Pc {
    margin-right: 0px !important;
  }
}

@media screen and (min-width: 501px) {
  .p0Pc {
    padding: 0px;
  }
}

@media screen and (min-width: 501px) {
  .pb0Pc {
    padding-bottom: 0px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt0Pc {
    padding-top: 0px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl0Pc {
    padding-left: 0px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr0Pc {
    padding-right: 0px !important;
  }
}

@media screen and (max-width: 500px) {
  .m0Mob {
    margin: 0px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb0Mob {
    margin-bottom: 0px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt0Mob {
    margin-top: 0px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml0Mob {
    margin-left: 0px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr0Mob {
    margin-right: 0px !important;
  }
}

@media screen and (max-width: 500px) {
  .p0Mob {
    padding: 0px;
  }
}

@media screen and (max-width: 500px) {
  .pb0Mob {
    padding-bottom: 0px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt0Mob {
    padding-top: 0px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl0Mob {
    padding-left: 0px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr0Mob {
    padding-right: 0px !important;
  }
}

.m4 {
  margin: 4px !important;
}

.mb4 {
  margin-bottom: 4px !important;
}

.mt4 {
  margin-top: 4px !important;
}

.ml4 {
  margin-left: 4px !important;
}

.mr4 {
  margin-right: 4px !important;
}

.p4 {
  padding: 4px;
}

.pb4 {
  padding-bottom: 4px !important;
}

.pt4 {
  padding-top: 4px !important;
}

.pl4 {
  padding-left: 4px !important;
}

.pr4 {
  padding-right: 4px !important;
}

@media screen and (min-width: 501px) {
  .mg4Pc {
    margin: 4px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb4Pc {
    margin-bottom: 4px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt4Pc {
    margin-top: 4px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml4Pc {
    margin-left: 4px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr4Pc {
    margin-right: 4px !important;
  }
}

@media screen and (min-width: 501px) {
  .p4Pc {
    padding: 4px;
  }
}

@media screen and (min-width: 501px) {
  .pb4Pc {
    padding-bottom: 4px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt4Pc {
    padding-top: 4px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl4Pc {
    padding-left: 4px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr4Pc {
    padding-right: 4px !important;
  }
}

@media screen and (max-width: 500px) {
  .m4Mob {
    margin: 4px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb4Mob {
    margin-bottom: 4px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt4Mob {
    margin-top: 4px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml4Mob {
    margin-left: 4px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr4Mob {
    margin-right: 4px !important;
  }
}

@media screen and (max-width: 500px) {
  .p4Mob {
    padding: 4px;
  }
}

@media screen and (max-width: 500px) {
  .pb4Mob {
    padding-bottom: 4px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt4Mob {
    padding-top: 4px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl4Mob {
    padding-left: 4px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr4Mob {
    padding-right: 4px !important;
  }
}

.m8 {
  margin: 8px !important;
}

.mb8 {
  margin-bottom: 8px !important;
}

.mt8 {
  margin-top: 8px !important;
}

.ml8 {
  margin-left: 8px !important;
}

.mr8 {
  margin-right: 8px !important;
}

.p8 {
  padding: 8px;
}

.pb8 {
  padding-bottom: 8px !important;
}

.pt8 {
  padding-top: 8px !important;
}

.pl8 {
  padding-left: 8px !important;
}

.pr8 {
  padding-right: 8px !important;
}

@media screen and (min-width: 501px) {
  .mg8Pc {
    margin: 8px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb8Pc {
    margin-bottom: 8px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt8Pc {
    margin-top: 8px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml8Pc {
    margin-left: 8px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr8Pc {
    margin-right: 8px !important;
  }
}

@media screen and (min-width: 501px) {
  .p8Pc {
    padding: 8px;
  }
}

@media screen and (min-width: 501px) {
  .pb8Pc {
    padding-bottom: 8px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt8Pc {
    padding-top: 8px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl8Pc {
    padding-left: 8px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr8Pc {
    padding-right: 8px !important;
  }
}

@media screen and (max-width: 500px) {
  .m8Mob {
    margin: 8px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb8Mob {
    margin-bottom: 8px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt8Mob {
    margin-top: 8px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml8Mob {
    margin-left: 8px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr8Mob {
    margin-right: 8px !important;
  }
}

@media screen and (max-width: 500px) {
  .p8Mob {
    padding: 8px;
  }
}

@media screen and (max-width: 500px) {
  .pb8Mob {
    padding-bottom: 8px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt8Mob {
    padding-top: 8px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl8Mob {
    padding-left: 8px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr8Mob {
    padding-right: 8px !important;
  }
}

.m12 {
  margin: 12px !important;
}

.mb12 {
  margin-bottom: 12px !important;
}

.mt12 {
  margin-top: 12px !important;
}

.ml12 {
  margin-left: 12px !important;
}

.mr12 {
  margin-right: 12px !important;
}

.p12 {
  padding: 12px;
}

.pb12 {
  padding-bottom: 12px !important;
}

.pt12 {
  padding-top: 12px !important;
}

.pl12 {
  padding-left: 12px !important;
}

.pr12 {
  padding-right: 12px !important;
}

@media screen and (min-width: 501px) {
  .mg12Pc {
    margin: 12px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb12Pc {
    margin-bottom: 12px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt12Pc {
    margin-top: 12px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml12Pc {
    margin-left: 12px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr12Pc {
    margin-right: 12px !important;
  }
}

@media screen and (min-width: 501px) {
  .p12Pc {
    padding: 12px;
  }
}

@media screen and (min-width: 501px) {
  .pb12Pc {
    padding-bottom: 12px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt12Pc {
    padding-top: 12px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl12Pc {
    padding-left: 12px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr12Pc {
    padding-right: 12px !important;
  }
}

@media screen and (max-width: 500px) {
  .m12Mob {
    margin: 12px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb12Mob {
    margin-bottom: 12px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt12Mob {
    margin-top: 12px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml12Mob {
    margin-left: 12px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr12Mob {
    margin-right: 12px !important;
  }
}

@media screen and (max-width: 500px) {
  .p12Mob {
    padding: 12px;
  }
}

@media screen and (max-width: 500px) {
  .pb12Mob {
    padding-bottom: 12px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt12Mob {
    padding-top: 12px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl12Mob {
    padding-left: 12px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr12Mob {
    padding-right: 12px !important;
  }
}

.m16 {
  margin: 16px !important;
}

.mb16 {
  margin-bottom: 16px !important;
}

.mt16 {
  margin-top: 16px !important;
}

.ml16 {
  margin-left: 16px !important;
}

.mr16 {
  margin-right: 16px !important;
}

.p16 {
  padding: 16px;
}

.pb16 {
  padding-bottom: 16px !important;
}

.pt16 {
  padding-top: 16px !important;
}

.pl16 {
  padding-left: 16px !important;
}

.pr16 {
  padding-right: 16px !important;
}

@media screen and (min-width: 501px) {
  .mg16Pc {
    margin: 16px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb16Pc {
    margin-bottom: 16px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt16Pc {
    margin-top: 16px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml16Pc {
    margin-left: 16px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr16Pc {
    margin-right: 16px !important;
  }
}

@media screen and (min-width: 501px) {
  .p16Pc {
    padding: 16px;
  }
}

@media screen and (min-width: 501px) {
  .pb16Pc {
    padding-bottom: 16px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt16Pc {
    padding-top: 16px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl16Pc {
    padding-left: 16px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr16Pc {
    padding-right: 16px !important;
  }
}

@media screen and (max-width: 500px) {
  .m16Mob {
    margin: 16px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb16Mob {
    margin-bottom: 16px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt16Mob {
    margin-top: 16px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml16Mob {
    margin-left: 16px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr16Mob {
    margin-right: 16px !important;
  }
}

@media screen and (max-width: 500px) {
  .p16Mob {
    padding: 16px;
  }
}

@media screen and (max-width: 500px) {
  .pb16Mob {
    padding-bottom: 16px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt16Mob {
    padding-top: 16px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl16Mob {
    padding-left: 16px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr16Mob {
    padding-right: 16px !important;
  }
}

.m20 {
  margin: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.p20 {
  padding: 20px;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

@media screen and (min-width: 501px) {
  .mg20Pc {
    margin: 20px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb20Pc {
    margin-bottom: 20px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt20Pc {
    margin-top: 20px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml20Pc {
    margin-left: 20px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr20Pc {
    margin-right: 20px !important;
  }
}

@media screen and (min-width: 501px) {
  .p20Pc {
    padding: 20px;
  }
}

@media screen and (min-width: 501px) {
  .pb20Pc {
    padding-bottom: 20px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt20Pc {
    padding-top: 20px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl20Pc {
    padding-left: 20px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr20Pc {
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 500px) {
  .m20Mob {
    margin: 20px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb20Mob {
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt20Mob {
    margin-top: 20px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml20Mob {
    margin-left: 20px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr20Mob {
    margin-right: 20px !important;
  }
}

@media screen and (max-width: 500px) {
  .p20Mob {
    padding: 20px;
  }
}

@media screen and (max-width: 500px) {
  .pb20Mob {
    padding-bottom: 20px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt20Mob {
    padding-top: 20px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl20Mob {
    padding-left: 20px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr20Mob {
    padding-right: 20px !important;
  }
}

.m24 {
  margin: 24px !important;
}

.mb24 {
  margin-bottom: 24px !important;
}

.mt24 {
  margin-top: 24px !important;
}

.ml24 {
  margin-left: 24px !important;
}

.mr24 {
  margin-right: 24px !important;
}

.p24 {
  padding: 24px;
}

.pb24 {
  padding-bottom: 24px !important;
}

.pt24 {
  padding-top: 24px !important;
}

.pl24 {
  padding-left: 24px !important;
}

.pr24 {
  padding-right: 24px !important;
}

@media screen and (min-width: 501px) {
  .mg24Pc {
    margin: 24px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb24Pc {
    margin-bottom: 24px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt24Pc {
    margin-top: 24px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml24Pc {
    margin-left: 24px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr24Pc {
    margin-right: 24px !important;
  }
}

@media screen and (min-width: 501px) {
  .p24Pc {
    padding: 24px;
  }
}

@media screen and (min-width: 501px) {
  .pb24Pc {
    padding-bottom: 24px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt24Pc {
    padding-top: 24px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl24Pc {
    padding-left: 24px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr24Pc {
    padding-right: 24px !important;
  }
}

@media screen and (max-width: 500px) {
  .m24Mob {
    margin: 24px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb24Mob {
    margin-bottom: 24px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt24Mob {
    margin-top: 24px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml24Mob {
    margin-left: 24px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr24Mob {
    margin-right: 24px !important;
  }
}

@media screen and (max-width: 500px) {
  .p24Mob {
    padding: 24px;
  }
}

@media screen and (max-width: 500px) {
  .pb24Mob {
    padding-bottom: 24px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt24Mob {
    padding-top: 24px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl24Mob {
    padding-left: 24px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr24Mob {
    padding-right: 24px !important;
  }
}

.m28 {
  margin: 28px !important;
}

.mb28 {
  margin-bottom: 28px !important;
}

.mt28 {
  margin-top: 28px !important;
}

.ml28 {
  margin-left: 28px !important;
}

.mr28 {
  margin-right: 28px !important;
}

.p28 {
  padding: 28px;
}

.pb28 {
  padding-bottom: 28px !important;
}

.pt28 {
  padding-top: 28px !important;
}

.pl28 {
  padding-left: 28px !important;
}

.pr28 {
  padding-right: 28px !important;
}

@media screen and (min-width: 501px) {
  .mg28Pc {
    margin: 28px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb28Pc {
    margin-bottom: 28px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt28Pc {
    margin-top: 28px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml28Pc {
    margin-left: 28px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr28Pc {
    margin-right: 28px !important;
  }
}

@media screen and (min-width: 501px) {
  .p28Pc {
    padding: 28px;
  }
}

@media screen and (min-width: 501px) {
  .pb28Pc {
    padding-bottom: 28px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt28Pc {
    padding-top: 28px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl28Pc {
    padding-left: 28px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr28Pc {
    padding-right: 28px !important;
  }
}

@media screen and (max-width: 500px) {
  .m28Mob {
    margin: 28px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb28Mob {
    margin-bottom: 28px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt28Mob {
    margin-top: 28px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml28Mob {
    margin-left: 28px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr28Mob {
    margin-right: 28px !important;
  }
}

@media screen and (max-width: 500px) {
  .p28Mob {
    padding: 28px;
  }
}

@media screen and (max-width: 500px) {
  .pb28Mob {
    padding-bottom: 28px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt28Mob {
    padding-top: 28px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl28Mob {
    padding-left: 28px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr28Mob {
    padding-right: 28px !important;
  }
}

.m32 {
  margin: 32px !important;
}

.mb32 {
  margin-bottom: 32px !important;
}

.mt32 {
  margin-top: 32px !important;
}

.ml32 {
  margin-left: 32px !important;
}

.mr32 {
  margin-right: 32px !important;
}

.p32 {
  padding: 32px;
}

.pb32 {
  padding-bottom: 32px !important;
}

.pt32 {
  padding-top: 32px !important;
}

.pl32 {
  padding-left: 32px !important;
}

.pr32 {
  padding-right: 32px !important;
}

@media screen and (min-width: 501px) {
  .mg32Pc {
    margin: 32px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb32Pc {
    margin-bottom: 32px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt32Pc {
    margin-top: 32px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml32Pc {
    margin-left: 32px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr32Pc {
    margin-right: 32px !important;
  }
}

@media screen and (min-width: 501px) {
  .p32Pc {
    padding: 32px;
  }
}

@media screen and (min-width: 501px) {
  .pb32Pc {
    padding-bottom: 32px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt32Pc {
    padding-top: 32px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl32Pc {
    padding-left: 32px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr32Pc {
    padding-right: 32px !important;
  }
}

@media screen and (max-width: 500px) {
  .m32Mob {
    margin: 32px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb32Mob {
    margin-bottom: 32px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt32Mob {
    margin-top: 32px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml32Mob {
    margin-left: 32px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr32Mob {
    margin-right: 32px !important;
  }
}

@media screen and (max-width: 500px) {
  .p32Mob {
    padding: 32px;
  }
}

@media screen and (max-width: 500px) {
  .pb32Mob {
    padding-bottom: 32px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt32Mob {
    padding-top: 32px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl32Mob {
    padding-left: 32px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr32Mob {
    padding-right: 32px !important;
  }
}

.m36 {
  margin: 36px !important;
}

.mb36 {
  margin-bottom: 36px !important;
}

.mt36 {
  margin-top: 36px !important;
}

.ml36 {
  margin-left: 36px !important;
}

.mr36 {
  margin-right: 36px !important;
}

.p36 {
  padding: 36px;
}

.pb36 {
  padding-bottom: 36px !important;
}

.pt36 {
  padding-top: 36px !important;
}

.pl36 {
  padding-left: 36px !important;
}

.pr36 {
  padding-right: 36px !important;
}

@media screen and (min-width: 501px) {
  .mg36Pc {
    margin: 36px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb36Pc {
    margin-bottom: 36px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt36Pc {
    margin-top: 36px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml36Pc {
    margin-left: 36px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr36Pc {
    margin-right: 36px !important;
  }
}

@media screen and (min-width: 501px) {
  .p36Pc {
    padding: 36px;
  }
}

@media screen and (min-width: 501px) {
  .pb36Pc {
    padding-bottom: 36px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt36Pc {
    padding-top: 36px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl36Pc {
    padding-left: 36px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr36Pc {
    padding-right: 36px !important;
  }
}

@media screen and (max-width: 500px) {
  .m36Mob {
    margin: 36px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb36Mob {
    margin-bottom: 36px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt36Mob {
    margin-top: 36px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml36Mob {
    margin-left: 36px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr36Mob {
    margin-right: 36px !important;
  }
}

@media screen and (max-width: 500px) {
  .p36Mob {
    padding: 36px;
  }
}

@media screen and (max-width: 500px) {
  .pb36Mob {
    padding-bottom: 36px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt36Mob {
    padding-top: 36px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl36Mob {
    padding-left: 36px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr36Mob {
    padding-right: 36px !important;
  }
}

.m40 {
  margin: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.p40 {
  padding: 40px;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

@media screen and (min-width: 501px) {
  .mg40Pc {
    margin: 40px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb40Pc {
    margin-bottom: 40px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt40Pc {
    margin-top: 40px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml40Pc {
    margin-left: 40px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr40Pc {
    margin-right: 40px !important;
  }
}

@media screen and (min-width: 501px) {
  .p40Pc {
    padding: 40px;
  }
}

@media screen and (min-width: 501px) {
  .pb40Pc {
    padding-bottom: 40px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt40Pc {
    padding-top: 40px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl40Pc {
    padding-left: 40px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr40Pc {
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 500px) {
  .m40Mob {
    margin: 40px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb40Mob {
    margin-bottom: 40px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt40Mob {
    margin-top: 40px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml40Mob {
    margin-left: 40px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr40Mob {
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 500px) {
  .p40Mob {
    padding: 40px;
  }
}

@media screen and (max-width: 500px) {
  .pb40Mob {
    padding-bottom: 40px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt40Mob {
    padding-top: 40px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl40Mob {
    padding-left: 40px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr40Mob {
    padding-right: 40px !important;
  }
}

.m44 {
  margin: 44px !important;
}

.mb44 {
  margin-bottom: 44px !important;
}

.mt44 {
  margin-top: 44px !important;
}

.ml44 {
  margin-left: 44px !important;
}

.mr44 {
  margin-right: 44px !important;
}

.p44 {
  padding: 44px;
}

.pb44 {
  padding-bottom: 44px !important;
}

.pt44 {
  padding-top: 44px !important;
}

.pl44 {
  padding-left: 44px !important;
}

.pr44 {
  padding-right: 44px !important;
}

@media screen and (min-width: 501px) {
  .mg44Pc {
    margin: 44px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb44Pc {
    margin-bottom: 44px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt44Pc {
    margin-top: 44px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml44Pc {
    margin-left: 44px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr44Pc {
    margin-right: 44px !important;
  }
}

@media screen and (min-width: 501px) {
  .p44Pc {
    padding: 44px;
  }
}

@media screen and (min-width: 501px) {
  .pb44Pc {
    padding-bottom: 44px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt44Pc {
    padding-top: 44px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl44Pc {
    padding-left: 44px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr44Pc {
    padding-right: 44px !important;
  }
}

@media screen and (max-width: 500px) {
  .m44Mob {
    margin: 44px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb44Mob {
    margin-bottom: 44px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt44Mob {
    margin-top: 44px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml44Mob {
    margin-left: 44px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr44Mob {
    margin-right: 44px !important;
  }
}

@media screen and (max-width: 500px) {
  .p44Mob {
    padding: 44px;
  }
}

@media screen and (max-width: 500px) {
  .pb44Mob {
    padding-bottom: 44px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt44Mob {
    padding-top: 44px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl44Mob {
    padding-left: 44px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr44Mob {
    padding-right: 44px !important;
  }
}

.m48 {
  margin: 48px !important;
}

.mb48 {
  margin-bottom: 48px !important;
}

.mt48 {
  margin-top: 48px !important;
}

.ml48 {
  margin-left: 48px !important;
}

.mr48 {
  margin-right: 48px !important;
}

.p48 {
  padding: 48px;
}

.pb48 {
  padding-bottom: 48px !important;
}

.pt48 {
  padding-top: 48px !important;
}

.pl48 {
  padding-left: 48px !important;
}

.pr48 {
  padding-right: 48px !important;
}

@media screen and (min-width: 501px) {
  .mg48Pc {
    margin: 48px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb48Pc {
    margin-bottom: 48px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt48Pc {
    margin-top: 48px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml48Pc {
    margin-left: 48px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr48Pc {
    margin-right: 48px !important;
  }
}

@media screen and (min-width: 501px) {
  .p48Pc {
    padding: 48px;
  }
}

@media screen and (min-width: 501px) {
  .pb48Pc {
    padding-bottom: 48px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt48Pc {
    padding-top: 48px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl48Pc {
    padding-left: 48px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr48Pc {
    padding-right: 48px !important;
  }
}

@media screen and (max-width: 500px) {
  .m48Mob {
    margin: 48px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb48Mob {
    margin-bottom: 48px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt48Mob {
    margin-top: 48px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml48Mob {
    margin-left: 48px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr48Mob {
    margin-right: 48px !important;
  }
}

@media screen and (max-width: 500px) {
  .p48Mob {
    padding: 48px;
  }
}

@media screen and (max-width: 500px) {
  .pb48Mob {
    padding-bottom: 48px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt48Mob {
    padding-top: 48px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl48Mob {
    padding-left: 48px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr48Mob {
    padding-right: 48px !important;
  }
}

.m52 {
  margin: 52px !important;
}

.mb52 {
  margin-bottom: 52px !important;
}

.mt52 {
  margin-top: 52px !important;
}

.ml52 {
  margin-left: 52px !important;
}

.mr52 {
  margin-right: 52px !important;
}

.p52 {
  padding: 52px;
}

.pb52 {
  padding-bottom: 52px !important;
}

.pt52 {
  padding-top: 52px !important;
}

.pl52 {
  padding-left: 52px !important;
}

.pr52 {
  padding-right: 52px !important;
}

@media screen and (min-width: 501px) {
  .mg52Pc {
    margin: 52px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb52Pc {
    margin-bottom: 52px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt52Pc {
    margin-top: 52px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml52Pc {
    margin-left: 52px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr52Pc {
    margin-right: 52px !important;
  }
}

@media screen and (min-width: 501px) {
  .p52Pc {
    padding: 52px;
  }
}

@media screen and (min-width: 501px) {
  .pb52Pc {
    padding-bottom: 52px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt52Pc {
    padding-top: 52px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl52Pc {
    padding-left: 52px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr52Pc {
    padding-right: 52px !important;
  }
}

@media screen and (max-width: 500px) {
  .m52Mob {
    margin: 52px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb52Mob {
    margin-bottom: 52px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt52Mob {
    margin-top: 52px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml52Mob {
    margin-left: 52px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr52Mob {
    margin-right: 52px !important;
  }
}

@media screen and (max-width: 500px) {
  .p52Mob {
    padding: 52px;
  }
}

@media screen and (max-width: 500px) {
  .pb52Mob {
    padding-bottom: 52px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt52Mob {
    padding-top: 52px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl52Mob {
    padding-left: 52px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr52Mob {
    padding-right: 52px !important;
  }
}

.m56 {
  margin: 56px !important;
}

.mb56 {
  margin-bottom: 56px !important;
}

.mt56 {
  margin-top: 56px !important;
}

.ml56 {
  margin-left: 56px !important;
}

.mr56 {
  margin-right: 56px !important;
}

.p56 {
  padding: 56px;
}

.pb56 {
  padding-bottom: 56px !important;
}

.pt56 {
  padding-top: 56px !important;
}

.pl56 {
  padding-left: 56px !important;
}

.pr56 {
  padding-right: 56px !important;
}

@media screen and (min-width: 501px) {
  .mg56Pc {
    margin: 56px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb56Pc {
    margin-bottom: 56px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt56Pc {
    margin-top: 56px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml56Pc {
    margin-left: 56px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr56Pc {
    margin-right: 56px !important;
  }
}

@media screen and (min-width: 501px) {
  .p56Pc {
    padding: 56px;
  }
}

@media screen and (min-width: 501px) {
  .pb56Pc {
    padding-bottom: 56px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt56Pc {
    padding-top: 56px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl56Pc {
    padding-left: 56px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr56Pc {
    padding-right: 56px !important;
  }
}

@media screen and (max-width: 500px) {
  .m56Mob {
    margin: 56px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb56Mob {
    margin-bottom: 56px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt56Mob {
    margin-top: 56px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml56Mob {
    margin-left: 56px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr56Mob {
    margin-right: 56px !important;
  }
}

@media screen and (max-width: 500px) {
  .p56Mob {
    padding: 56px;
  }
}

@media screen and (max-width: 500px) {
  .pb56Mob {
    padding-bottom: 56px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt56Mob {
    padding-top: 56px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl56Mob {
    padding-left: 56px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr56Mob {
    padding-right: 56px !important;
  }
}

.m60 {
  margin: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.p60 {
  padding: 60px;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

@media screen and (min-width: 501px) {
  .mg60Pc {
    margin: 60px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb60Pc {
    margin-bottom: 60px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt60Pc {
    margin-top: 60px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml60Pc {
    margin-left: 60px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr60Pc {
    margin-right: 60px !important;
  }
}

@media screen and (min-width: 501px) {
  .p60Pc {
    padding: 60px;
  }
}

@media screen and (min-width: 501px) {
  .pb60Pc {
    padding-bottom: 60px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt60Pc {
    padding-top: 60px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl60Pc {
    padding-left: 60px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr60Pc {
    padding-right: 60px !important;
  }
}

@media screen and (max-width: 500px) {
  .m60Mob {
    margin: 60px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb60Mob {
    margin-bottom: 60px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt60Mob {
    margin-top: 60px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml60Mob {
    margin-left: 60px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr60Mob {
    margin-right: 60px !important;
  }
}

@media screen and (max-width: 500px) {
  .p60Mob {
    padding: 60px;
  }
}

@media screen and (max-width: 500px) {
  .pb60Mob {
    padding-bottom: 60px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt60Mob {
    padding-top: 60px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl60Mob {
    padding-left: 60px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr60Mob {
    padding-right: 60px !important;
  }
}

.m64 {
  margin: 64px !important;
}

.mb64 {
  margin-bottom: 64px !important;
}

.mt64 {
  margin-top: 64px !important;
}

.ml64 {
  margin-left: 64px !important;
}

.mr64 {
  margin-right: 64px !important;
}

.p64 {
  padding: 64px;
}

.pb64 {
  padding-bottom: 64px !important;
}

.pt64 {
  padding-top: 64px !important;
}

.pl64 {
  padding-left: 64px !important;
}

.pr64 {
  padding-right: 64px !important;
}

@media screen and (min-width: 501px) {
  .mg64Pc {
    margin: 64px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb64Pc {
    margin-bottom: 64px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt64Pc {
    margin-top: 64px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml64Pc {
    margin-left: 64px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr64Pc {
    margin-right: 64px !important;
  }
}

@media screen and (min-width: 501px) {
  .p64Pc {
    padding: 64px;
  }
}

@media screen and (min-width: 501px) {
  .pb64Pc {
    padding-bottom: 64px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt64Pc {
    padding-top: 64px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl64Pc {
    padding-left: 64px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr64Pc {
    padding-right: 64px !important;
  }
}

@media screen and (max-width: 500px) {
  .m64Mob {
    margin: 64px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb64Mob {
    margin-bottom: 64px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt64Mob {
    margin-top: 64px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml64Mob {
    margin-left: 64px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr64Mob {
    margin-right: 64px !important;
  }
}

@media screen and (max-width: 500px) {
  .p64Mob {
    padding: 64px;
  }
}

@media screen and (max-width: 500px) {
  .pb64Mob {
    padding-bottom: 64px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt64Mob {
    padding-top: 64px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl64Mob {
    padding-left: 64px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr64Mob {
    padding-right: 64px !important;
  }
}

.m68 {
  margin: 68px !important;
}

.mb68 {
  margin-bottom: 68px !important;
}

.mt68 {
  margin-top: 68px !important;
}

.ml68 {
  margin-left: 68px !important;
}

.mr68 {
  margin-right: 68px !important;
}

.p68 {
  padding: 68px;
}

.pb68 {
  padding-bottom: 68px !important;
}

.pt68 {
  padding-top: 68px !important;
}

.pl68 {
  padding-left: 68px !important;
}

.pr68 {
  padding-right: 68px !important;
}

@media screen and (min-width: 501px) {
  .mg68Pc {
    margin: 68px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb68Pc {
    margin-bottom: 68px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt68Pc {
    margin-top: 68px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml68Pc {
    margin-left: 68px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr68Pc {
    margin-right: 68px !important;
  }
}

@media screen and (min-width: 501px) {
  .p68Pc {
    padding: 68px;
  }
}

@media screen and (min-width: 501px) {
  .pb68Pc {
    padding-bottom: 68px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt68Pc {
    padding-top: 68px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl68Pc {
    padding-left: 68px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr68Pc {
    padding-right: 68px !important;
  }
}

@media screen and (max-width: 500px) {
  .m68Mob {
    margin: 68px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb68Mob {
    margin-bottom: 68px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt68Mob {
    margin-top: 68px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml68Mob {
    margin-left: 68px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr68Mob {
    margin-right: 68px !important;
  }
}

@media screen and (max-width: 500px) {
  .p68Mob {
    padding: 68px;
  }
}

@media screen and (max-width: 500px) {
  .pb68Mob {
    padding-bottom: 68px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt68Mob {
    padding-top: 68px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl68Mob {
    padding-left: 68px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr68Mob {
    padding-right: 68px !important;
  }
}

.m72 {
  margin: 72px !important;
}

.mb72 {
  margin-bottom: 72px !important;
}

.mt72 {
  margin-top: 72px !important;
}

.ml72 {
  margin-left: 72px !important;
}

.mr72 {
  margin-right: 72px !important;
}

.p72 {
  padding: 72px;
}

.pb72 {
  padding-bottom: 72px !important;
}

.pt72 {
  padding-top: 72px !important;
}

.pl72 {
  padding-left: 72px !important;
}

.pr72 {
  padding-right: 72px !important;
}

@media screen and (min-width: 501px) {
  .mg72Pc {
    margin: 72px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb72Pc {
    margin-bottom: 72px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt72Pc {
    margin-top: 72px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml72Pc {
    margin-left: 72px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr72Pc {
    margin-right: 72px !important;
  }
}

@media screen and (min-width: 501px) {
  .p72Pc {
    padding: 72px;
  }
}

@media screen and (min-width: 501px) {
  .pb72Pc {
    padding-bottom: 72px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt72Pc {
    padding-top: 72px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl72Pc {
    padding-left: 72px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr72Pc {
    padding-right: 72px !important;
  }
}

@media screen and (max-width: 500px) {
  .m72Mob {
    margin: 72px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb72Mob {
    margin-bottom: 72px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt72Mob {
    margin-top: 72px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml72Mob {
    margin-left: 72px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr72Mob {
    margin-right: 72px !important;
  }
}

@media screen and (max-width: 500px) {
  .p72Mob {
    padding: 72px;
  }
}

@media screen and (max-width: 500px) {
  .pb72Mob {
    padding-bottom: 72px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt72Mob {
    padding-top: 72px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl72Mob {
    padding-left: 72px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr72Mob {
    padding-right: 72px !important;
  }
}

.m76 {
  margin: 76px !important;
}

.mb76 {
  margin-bottom: 76px !important;
}

.mt76 {
  margin-top: 76px !important;
}

.ml76 {
  margin-left: 76px !important;
}

.mr76 {
  margin-right: 76px !important;
}

.p76 {
  padding: 76px;
}

.pb76 {
  padding-bottom: 76px !important;
}

.pt76 {
  padding-top: 76px !important;
}

.pl76 {
  padding-left: 76px !important;
}

.pr76 {
  padding-right: 76px !important;
}

@media screen and (min-width: 501px) {
  .mg76Pc {
    margin: 76px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb76Pc {
    margin-bottom: 76px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt76Pc {
    margin-top: 76px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml76Pc {
    margin-left: 76px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr76Pc {
    margin-right: 76px !important;
  }
}

@media screen and (min-width: 501px) {
  .p76Pc {
    padding: 76px;
  }
}

@media screen and (min-width: 501px) {
  .pb76Pc {
    padding-bottom: 76px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt76Pc {
    padding-top: 76px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl76Pc {
    padding-left: 76px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr76Pc {
    padding-right: 76px !important;
  }
}

@media screen and (max-width: 500px) {
  .m76Mob {
    margin: 76px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb76Mob {
    margin-bottom: 76px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt76Mob {
    margin-top: 76px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml76Mob {
    margin-left: 76px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr76Mob {
    margin-right: 76px !important;
  }
}

@media screen and (max-width: 500px) {
  .p76Mob {
    padding: 76px;
  }
}

@media screen and (max-width: 500px) {
  .pb76Mob {
    padding-bottom: 76px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt76Mob {
    padding-top: 76px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl76Mob {
    padding-left: 76px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr76Mob {
    padding-right: 76px !important;
  }
}

.m80 {
  margin: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mt80 {
  margin-top: 80px !important;
}

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

.mr80 {
  margin-right: 80px !important;
}

.p80 {
  padding: 80px;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

@media screen and (min-width: 501px) {
  .mg80Pc {
    margin: 80px !important;
  }
}

@media screen and (min-width: 501px) {
  .mb80Pc {
    margin-bottom: 80px !important;
  }
}

@media screen and (min-width: 501px) {
  .mt80Pc {
    margin-top: 80px !important;
  }
}

@media screen and (min-width: 501px) {
  .ml80Pc {
    margin-left: 80px !important;
  }
}

@media screen and (min-width: 501px) {
  .mr80Pc {
    margin-right: 80px !important;
  }
}

@media screen and (min-width: 501px) {
  .p80Pc {
    padding: 80px;
  }
}

@media screen and (min-width: 501px) {
  .pb80Pc {
    padding-bottom: 80px !important;
  }
}

@media screen and (min-width: 501px) {
  .pt80Pc {
    padding-top: 80px !important;
  }
}

@media screen and (min-width: 501px) {
  .pl80Pc {
    padding-left: 80px !important;
  }
}

@media screen and (min-width: 501px) {
  .pr80Pc {
    padding-right: 80px !important;
  }
}

@media screen and (max-width: 500px) {
  .m80Mob {
    margin: 80px !important;
  }
}

@media screen and (max-width: 500px) {
  .mb80Mob {
    margin-bottom: 80px !important;
  }
}

@media screen and (max-width: 500px) {
  .mt80Mob {
    margin-top: 80px !important;
  }
}

@media screen and (max-width: 500px) {
  .ml80Mob {
    margin-left: 80px !important;
  }
}

@media screen and (max-width: 500px) {
  .mr80Mob {
    margin-right: 80px !important;
  }
}

@media screen and (max-width: 500px) {
  .p80Mob {
    padding: 80px;
  }
}

@media screen and (max-width: 500px) {
  .pb80Mob {
    padding-bottom: 80px !important;
  }
}

@media screen and (max-width: 500px) {
  .pt80Mob {
    padding-top: 80px !important;
  }
}

@media screen and (max-width: 500px) {
  .pl80Mob {
    padding-left: 80px !important;
  }
}

@media screen and (max-width: 500px) {
  .pr80Mob {
    padding-right: 80px !important;
  }
}

.t_waku {
  border: 1px solid black;
  padding: 12px;
  margin: 8px 0px;
  display: block;
}

.un_mypageTrial {
  margin-top: 32px;
}
.un_mypageTrial img {
  width: 100%;
}
@media screen and (max-width: 500px) {
  .un_mypageTrial img {
    max-width: 274px;
  }
}
@media screen and (min-width: 501px) {
  .un_mypageTrial img {
    max-width: 400px;
  }
}
.un_mypageTrial_txt1 {
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 3.9rem;
  margin-top: 24px;
}
.un_mypageTrial_txt2 {
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 2.1rem;
  margin-top: 10px;
}
.un_mypageTrial .el_btn {
  margin-top: 32px;
  margin-bottom: 44px;
}

.un_law dl:first-child {
  border-top: 1px solid gray;
}
.un_law dl {
  border-bottom: 1px solid gray;
  margin: 0px;
  text-align: left;
  display: flex;
}
@media screen and (max-width: 500px) {
  .un_law dl {
    flex-direction: column;
    padding: 8px 8px;
  }
}
@media screen and (min-width: 501px) {
  .un_law dl {
    flex-direction: row;
    padding: 13px 12px;
  }
}
.un_law dl dt,
.un_law dl dd {
  padding: 4px 0;
  font-size: 0.9em;
  line-height: 1.7em;
}
.un_law dl dt p,
.un_law dl dd p {
  margin: 0 !important;
}
.un_law dl dt {
  font-weight: bold;
  padding-right: 12px;
}
@media screen and (min-width: 501px) {
  .un_law dl dt {
    flex: 0 1 35%;
  }
}
.un_law dl dd {
  margin: 0;
}
@media screen and (min-width: 501px) {
  .un_law dl dd {
    flex: 0 1 65%;
  }
}

.un_privacyPolicy p,
.un_termsOfService p {
  text-align: left;
}
@media screen and (max-width: 500px) {
  .un_privacyPolicy p,
.un_termsOfService p {
    margin-bottom: 22px;
  }
}
@media screen and (min-width: 501px) {
  .un_privacyPolicy p,
.un_termsOfService p {
    margin-bottom: 30px;
  }
}

.un_confirm .inner-wrap {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.un_confirm .inner-wrap .inner {
  max-width: 600px !important;
}
.un_confirm .inner-wrap .inner .in-inner {
  min-height: auto !important;
}
@media screen and (max-width: 500px) {
  .un_confirm .inner-wrap .inner .in-inner {
    padding: 32px 10px 32px;
  }
}
@media screen and (min-width: 501px) {
  .un_confirm .inner-wrap .inner .in-inner {
    padding: 32px 16px 32px;
  }
}
.un_confirm h2 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.un_confirm_btns {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: center;
  margin-top: 44px;
}
.un_confirm_btns .el_btn {
  margin: 0 4px 8px;
}

.un_imgModal .inner {
  max-width: 800px !important;
}
.un_imgModal .in-inner {
  min-height: unset !important;
}
.un_imgModal_img {
  margin-top: 18px;
  margin-bottom: 32px;
}
.un_imgModal_img img {
  width: 100%;
  height: auto;
}

#plan-setumei-modal .inner {
  max-width: 600px !important;
}