@charset "UTF-8";
.lead h2 {
  font-size: 34px;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 999.98px) {
  .lead h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 679.98px) {
  .lead h2 {
    font-size: 24px;
  }
}

.local-nav {
  padding: 60px 0;
}
@media screen and (max-width: 999.98px) {
  .local-nav {
    padding: 10px 0;
  }
}
.local-nav ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: center;
}
@media screen and (max-width: 1199.98px) {
  .local-nav ul {
    flex-wrap: wrap;
    gap: 10px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 1199.98px) {
  .local-nav__item {
    box-sizing: border-box;
    width: calc(50% - 10px);
  }
}
.local-nav__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
  color: #fff;
  font-size: 26px;
  padding: 0 18px;
  border-radius: 25px;
  line-height: 1;
  height: 50px;
}
@media screen and (max-width: 999.98px) {
  .local-nav__item a {
    font-size: 18px;
  }
}
.local-nav__item--indiva a {
  background-color: #e2ae17;
}
.local-nav__item--metatron a {
  background-color: #5b9196;
}
.local-nav__item--fasting a {
  background-color: #f1913c;
}
@media screen and (max-width: 999.98px) {
  .local-nav__item--fasting a {
    font-size: 18px;
  }
}
@media screen and (max-width: 679.98px) {
  .local-nav__item--fasting a {
    font-size: 14px;
  }
}
.local-nav__item--chiropractic a {
  background-color: #87b413;
}

.course-item {
  padding: 60px 0;
}
@media screen and (max-width: 1199.98px) {
  .course-item {
    box-sizing: border-box;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 999.98px) {
  .course-item {
    padding: 40px 0;
  }
}
.course-item__inner {
  box-sizing: border-box;
  width: 1160px;
  margin: 0 auto;
  padding: 50px;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 1199.98px) {
  .course-item__inner {
    width: 100%;
    padding: 20px;
  }
}
.course-item--indiva {
  background: #f9efd1;
}
.course-item--metatron {
  background: #dee9ea;
}
.course-item--fasting {
  background: #fce9d8;
}
.course-item--chiropractic {
  background: #e7f0d0;
}
.course-item__title {
  margin-bottom: 40px;
}
.course-item__title .sub {
  position: relative;
  text-align: center;
  padding: 5px 0;
  font-size: 24px;
}
@media screen and (max-width: 1099.98px) {
  .course-item__title .sub {
    font-size: 14px;
  }
}
.course-item__title .sub div {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}
.course-item__title .sub div::before, .course-item__title .sub div::after {
  position: absolute;
  top: 0;
  content: "";
  width: 0;
  height: 100%;
}
.course-item__title .sub div::before {
  border-radius: 12px;
  left: -30px;
  transform: skewX(25deg) scaleY(0.8);
}
@media screen and (max-width: 679.98px) {
  .course-item__title .sub div::before {
    border-radius: 8px;
    left: -10px;
    transform: skewX(25deg) scaleY(0.8);
  }
}
.course-item__title .sub div::after {
  border-radius: 12px;
  right: -30px;
  transform: skewX(-25deg) scaleY(0.8);
}
@media screen and (max-width: 679.98px) {
  .course-item__title .sub div::after {
    border-radius: 8px;
    right: -10px;
    transform: skewX(-25deg) scaleY(0.8);
  }
}
.course-item__title .main {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1099.98px) {
  .course-item__title .main {
    font-size: 24px;
  }
}
.course-item__title .main::after {
  content: '';
  display: block;
  margin: 8px auto 0;
  width: 256px;
  height: 1px;
  border-bottom-width: 4px;
  border-bottom-style: dotted;
}
@media screen and (max-width: 1099.98px) {
  .course-item__title .main::after {
    width: 208px;
  }
}
.course-item__title--indiva .sub {
  color: #e2ae17;
}
.course-item__title--indiva .sub div::before {
  border-left: 3px solid #e2ae17;
}
.course-item__title--indiva .sub div::after {
  border-right: 3px solid #e2ae17;
}
.course-item__title--indiva .main::after {
  border-bottom-color: #e2ae17;
}
.course-item__title--metatron .sub {
  color: #5b9196;
}
.course-item__title--metatron .sub div::before {
  border-left: 3px solid #5b9196;
}
.course-item__title--metatron .sub div::after {
  border-right: 3px solid #5b9196;
}
.course-item__title--metatron .main::after {
  border-bottom-color: #5b9196;
}
.course-item__title--fasting .sub {
  color: #f1913c;
}
.course-item__title--fasting .sub div::before {
  border-left: 3px solid #f1913c;
}
.course-item__title--fasting .sub div::after {
  border-right: 3px solid #f1913c;
}
.course-item__title--fasting .main::after {
  border-bottom-color: #f1913c;
}
.course-item__title--chiropractic .sub {
  color: #87b413;
}
.course-item__title--chiropractic .sub div::before {
  border-left: 3px solid #87b413;
}
.course-item__title--chiropractic .sub div::after {
  border-right: 3px solid #87b413;
}
.course-item__title--chiropractic .main::after {
  border-bottom-color: #87b413;
}
.course-item__lead {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media screen and (max-width: 999.98px) {
  .course-item__lead {
    flex-direction: column;
    gap: 20px;
  }
}
.course-item__lead-img {
  width: 450px;
}
.course-item__lead-img img {
  width: 450px;
}
@media screen and (max-width: 999.98px) {
  .course-item__lead-img {
    width: 100%;
  }
  .course-item__lead-img img {
    width: 100%;
  }
}
.course-item__lead-desc {
  line-height: 1.75;
}
.course-item__lead-desc p {
  margin-top: 0;
}
.course-item__lead-desc img {
  width: 100%;
}
.course-item__blocks {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.course-item__block {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 999.98px) {
  .course-item__block {
    flex-direction: column;
    gap: 20px;
  }
}
.course-item__block-title {
  width: 240px;
  text-align: center;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  font-size: 24px;
  margin-top: 16px;
  margin-bottom: 0;
}
@media screen and (max-width: 999.98px) {
  .course-item__block-title {
    width: 100%;
    text-align: center;
    border-bottom: none;
  }
  .course-item__block-title::after {
    content: '';
    display: block;
    margin: 8px auto 0;
    width: 40px;
    height: 1px;
    border-bottom-width: 4px;
    border-bottom-style: solid;
  }
}
.course-item__block-title--indiva {
  color: #e2ae17;
  border-bottom-color: #e2ae17;
}
.course-item__block-title--metatron {
  color: #5b9196;
  border-bottom-color: #5b9196;
}
.course-item__block-title--fasting {
  color: #f1913c;
  border-bottom-color: #f1913c;
}
.course-item__block-title--chiropractic {
  color: #87b413;
  border-bottom-color: #87b413;
}
.course-item__block-desc {
  width: calc(100% - 280px);
}
@media screen and (max-width: 999.98px) {
  .course-item__block-desc {
    width: 100%;
  }
}

.lead-heading,
.block-heading {
  padding: 0;
  margin: 0 0 4px;
  font-size: 18px;
  color: #e2ae17;
}

.course-item.course-item--indiva .lead-heading,
.course-item.course-item--indiva .block-heading {
  color: #e2ae17;
}

.course-item.course-item--metatron .lead-heading,
.course-item.course-item--metatron .block-heading {
  color: #5b9196;
}

.course-item.course-item--fasting .lead-heading,
.course-item.course-item--fasting .block-heading {
  color: #f1913c;
}

.course-item.course-item--chiropractic .lead-heading,
.course-item.course-item--chiropractic .block-heading {
  color: #87b413;
}

.marker {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  background: linear-gradient(transparent 70%, #f9d3b1 70%);
}
.marker strong {
  font-size: 56px;
  font-weight: bold;
}

.list {
  list-style: none;
  padding: 0 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.list li {
  text-indent: -1.5rem;
  padding-left: 1.5rem;
}
.list li::before {
  font: var(--fa-font-solid);
  font-size: 1.25rem;
  content: '\f14a';
  margin-right: 0.5rem;
  margin-top: 0.1rem;
}

.voice-list {
  list-style: none;
  padding: 0 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.voice-list li {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 4px;
  text-indent: -1.5rem;
  padding-left: 1.5rem;
}
.voice-list li::before {
  font: var(--fa-font-solid);
  font-size: 1.25rem;
  content: '\f192';
  margin-right: 0.5rem;
  margin-top: 0.1rem;
}

.course-item.course-item--indiva .list li::before,
.course-item.course-item--indiva .voice-list li::before {
  color: #e2ae17;
}

.course-item.course-item--metatron .list li::before,
.course-item.course-item--metatron .voice-list li::before {
  color: #5b9196;
}

.course-item.course-item--fasting .list li::before,
.course-item.course-item--fasting .voice-list li::before {
  color: #f1913c;
}

.course-item.course-item--chiropractic .list li::before,
.course-item.course-item--chiropractic .voice-list li::before {
  color: #87b413;
}

.effect-table {
  border-spacing: 4px;
}
@media screen and (max-width: 999.98px) {
  .effect-table {
    display: block;
    width: 100%;
  }
}
.effect-table th,
.effect-table td {
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 999.98px) {
  .effect-table th,
  .effect-table td {
    padding: 0.25rem 0.5rem;
    display: block;
  }
}
.effect-table th {
  white-space: nowrap;
  font-weight: 500;
}
@media screen and (max-width: 999.98px) {
  .effect-table td {
    padding-bottom: 1rem;
  }
}

.course-item.course-item--indiva .effect-table th {
  background: #f9efd1;
}

.course-item.course-item--metatron .effect-table th {
  background: #dee9ea;
}

.course-item.course-item--fasting .effect-table th {
  background: #fce9d8;
}

.course-item.course-item--chiropractic .effect-table th {
  background: #e7f0d0;
}

.price-table-wrap {
  overflow-x: auto;
}

.price-table {
  overflow-x: auto;
  border-spacing: 4px;
}
.price-table th,
.price-table td {
  padding: 0.25rem 2rem;
}
@media screen and (max-width: 999.98px) {
  .price-table th,
  .price-table td {
    padding: 0.25rem 0.5rem;
  }
}
.price-table th {
  white-space: nowrap;
  color: #fff;
  text-align: left;
}
.price-table th .number {
  display: inline-block;
  font-size: 1.35rem;
  transform: translateY(0.05rem);
}
.price-table td {
  padding-left: 1rem;
}
.price-table td .special {
  color: #d4414f;
}
.price-table tfoot td {
  font-size: 14px;
}

.price-number {
  font-size: 1.2rem;
  font-weight: 700;
}

.course-item--indiva .price-table td {
  width: 192px;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.course-item--indiva .price-table thead td {
  text-align: center;
  white-space: nowrap;
}
.course-item--indiva .price-table tbody td {
  text-align: center;
  white-space: nowrap;
}
.course-item--indiva .price-table tfoot td {
  white-space: nowrap;
}

@media screen and (max-width: 679.98px) {
  .course-item--metatron .price-table {
    width: 100%;
  }
}
.course-item--metatron .price-table tbody th {
  width: 1px;
  white-space: nowrap;
}
.course-item--metatron .price-table tbody td {
  text-align: center;
}

@media screen and (max-width: 679.98px) {
  .course-item--fasting .price-table {
    width: 100%;
  }
}
.course-item--fasting .price-table tbody th {
  width: 1px;
  white-space: nowrap;
}
.course-item--fasting .price-table tbody td {
  text-align: center;
}

.course-item.course-item--indiva .price-table tbody th {
  background: #e2ae17;
}

.course-item.course-item--metatron .price-table tbody th {
  background: #5b9196;
}

.course-item.course-item--fasting .price-table tbody th {
  background: #f1913c;
}

.course-item.course-item--chiropractic .price-table tbody th {
  background: #87b413;
}

.course-item.course-item--indiva .price-table tbody td {
  background: #f9efd1;
}

.course-item.course-item--metatron .price-table tbody td {
  background: #dee9ea;
}

.course-item.course-item--fasting .price-table tbody td {
  background: #fce9d8;
}

.course-item.course-item--chiropractic .price-table tbody td {
  background: #e7f0d0;
}

.price-table-note {
  font-size: 14px;
  list-style: none;
  margin-top: 5px;
  padding: 0;
}
.price-table-note li {
  text-indent: -1rem;
  margin-left: 1rem;
  line-height: 1.5;
}

.course-item.course-item--chiropractic .price-table-note li {
  color: #87b413;
}

.notice {
  list-style: none;
  padding: 0;
}
.notice li::before {
  content: '・';
}

.course-item.course-item--chiropractic .course-item__lead-img img:first-child {
  margin-bottom: 24px;
}

.metatron-flow {
  list-style: none;
  padding: 0;
}
.metatron-flow li {
  text-indent: -1.5rem;
  padding-left: 1.5rem;
}
.metatron-flow li .number {
  color: #5b9196;
  font-size: 1.2rem;
  font-weight: bold;
}

li b {
  font-weight: bold;
  text-decoration: #f9d3b1 wavy underline;
  -webkit-text-decoration: #f9d3b1 wavy underline;
}

/*# sourceMappingURL=course.css.map */
