@charset "UTF-8";

:root {
  --color-primary: #1f3b9e;
  --color-primary-light: #eef6fd;
  --color-accent: #fee302;
  --color-background: #ffffff;
  --color-text: #333333;
  --color-text-secondary: #ffffff;
  --color-gray: #cccccc;
  --color-red: #e52d2c;

  --color-orange: #faaf2d;
  --color-orange-bg: #fef9e3;
  --color-green: #97d000;
  --color-green-bg: #f0fee3;
  --color-blue: #27b5f4;
  --color-blue-bg: #eef6fd;
  --color-pink: #ef6088;
  --color-pink-bg: #ffedf3;

  --shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25);
}

:where(.main-visual, .english, .curriculum, .course-point, .online) {
  font-family:
    YakuHanJP,
    Noto Sans JP,
    Hiragino Sans,
    Meiryo,
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-feature-settings: 'palt';
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
}
:where(.main-visual, .english, .curriculum, .course-point, .online) img {
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 1025px) {
  :where(.main-visual, .english, .curriculum, .course-point, .online) {
    font-size: 16px;
  }
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/*-------------------------
  common
-------------------------*/
.pc {
  display: none !important;
}
.sp {
  display: block !important;
}
.u-color-primary {
  color: var(--color-primary);
}
.u-color-accent {
  color: var(--color-accent);
}
.u-color-red {
  color: var(--color-red);
}
.u-text-underline {
  background: linear-gradient(transparent 80%, var(--color-accent) 80%);
}
.u-text-highlight {
  padding: 0 5px;
  background: #fff287;
}
.u-text-bold {
  font-weight: bold;
}
.u-visuallyhidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.u-visuallyhidden.focusable:active,
.u-visuallyhidden.focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}

/*-------------------------
  CTA
-------------------------*/
.md-contact {
  padding: 31px 0;
  background-color: #d1ecff;
}

/*-------------------------
  contents-inner
-------------------------*/
.contents-inner {
  width: 100%;
  padding: 40px 16px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .contents-inner {
    max-width: 1000px;
    padding: 60px 0;
  }
}

/*-------------------------
  title
-------------------------*/
.contents-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .contents-title {
    font-size: 40px;
  }
}

/*-------------------------
  tab
-------------------------*/
.tab [data-tab='tab1'],
.tab [data-tab-panel='tab1'] {
  --tab-color: var(--color-orange);
  --tab-color-bg: var(--color-orange-bg);
}
.tab [data-tab='tab2'],
.tab [data-tab-panel='tab2'] {
  --tab-color: var(--color-green);
  --tab-color-bg: var(--color-green-bg);
}
.tab [data-tab='tab3'],
.tab [data-tab-panel='tab3'] {
  --tab-color: var(--color-blue);
  --tab-color-bg: var(--color-blue-bg);
}
.tab [data-tab='tab4'],
.tab [data-tab-panel='tab4'] {
  --tab-color: var(--color-pink);
  --tab-color-bg: var(--color-pink-bg);
}
.tab .tab__btn-wrap {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  min-height: 60px;
}
.tab .tab__btn {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-secondary);
  cursor: pointer;
  background: var(--tab-color);
  border: 1px solid var(--tab-color);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}
.tab .tab__btn.is-active {
  height: 50px;
  font-size: 20px;
}
.tab .tab__content-item {
  display: none;
  padding: 36px 16px;
  background: var(--color-background);
  border: 4px solid var(--tab-color);
}
.tab .tab__content-item.is-active {
  display: block;
}
.tab .tab__content-item-title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
}
.tab .tab__content-item-lead {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .tab .tab__btn-wrap {
    gap: 16px;
  }
  .tab .tab__btn {
    height: 60px;
    font-size: 20px;
    border-radius: 8px 8px 0 0;
  }
  .tab .tab__btn.is-active {
    height: 84px;
    font-size: 26px;
  }
  .tab .tab__content-item {
    border-width: 6px;
  }
  .tab .tab__content-item-title {
    margin-bottom: 32px;
    font-size: 32px;
  }
  .tab .tab__content-item-lead {
    margin-bottom: 40px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .tab .tab__content-item {
    padding: 60px;
  }
}

/*-------------------------
  main-visual
-------------------------*/
.main-visual {
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: var(--color-background);
}
.main-visual .contents-inner {
  padding: 0;
}

@media screen and (min-width: 768px) {
}

/*-------------------------
  english
-------------------------*/
.english {
  background-image: linear-gradient(#eef3f8 1px, transparent 1px), linear-gradient(90deg, #eef3f8 1px, transparent 1px);
  background-size: 16px 16px;
}
.english__hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.english__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.english__title {
  position: relative;
  padding: 0 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
}
.english__title:before,
.english__title:after {
  position: absolute;
}
.english__title:before {
  top: 0;
  left: 0;
  content: '『';
}
.english__title:after {
  right: 0;
  bottom: 0;
  content: '』';
}
.english__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
.english__steps-img {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
/* point */
.english__point {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  max-width: 480px;
  padding: 20px;
  margin: 30px auto 0;
  background: var(--color-background);
  border: 1px solid var(--color-gray);
  border-radius: 12px;
  box-shadow: 0px 2px 8px 0px #00000033;
}
.english__point-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-blue);
  text-align: center;
}
.english__point-list {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: point;
}
.english__point-item {
  position: relative;
  padding-left: 51px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  counter-increment: point;
}
.english__point-item::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  content: counter(point);
  background: var(--color-blue);
  border-radius: 2px;
  transform: translateY(-50%);
}
/* message */
.english__message {
  margin-top: 32px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .english__text {
    gap: 28px;
    justify-content: center;
  }
  .english__title {
    padding: 0;
    font-size: 36px;
    text-align: left;
  }
  .english__title:before {
    top: -10px;
    left: -20px;
  }
  .english__title:after {
    right: -20px;
    bottom: -10px;
  }
  .english__description {
    font-size: 18px;
    text-align: left;
  }
  /* point */
  .english__point {
    max-width: 720px;
    padding: 24px;
    margin: 50px auto 0;
  }
  .english__point-title {
    font-size: 28px;
  }
  .english__point-item {
    padding-left: 50px;
    font-size: 22px;
  }
  .english__point-item::before {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
  /* message */
  .english__message {
    font-size: 32px;
  }
}
@media screen and (min-width: 1025px) {
  .english__hero {
    flex-direction: row;
    gap: 60px;
  }
  .english__text,
  .english__steps {
    width: 50%;
  }
}

/*-------------------------
  curriculum
-------------------------*/
.curriculum .contents-inner {
  padding: 40px 10px;
}
.curriculum .contents-title {
  font-size: 26px;
}
.curriculum__contents-body {
  margin-top: 20px;
}
.curriculum__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.curriculum__item {
  width: 100%;
  background: var(--tab-color-bg);
}
.curriculum__item-contents {
  padding: 20px;
}
.curriculum__item-title {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.4;
  color: var(--color-primary);
}
.curriculum__item-title .--num {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  line-height: 1;
  color: #fff;
  background: var(--tab-color);
  border-radius: 2px;
}
.curriculum__item-body {
  display: flex;
  flex-direction: column-reverse;
}
.curriculum__item-lead {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
}
.curriculum__item-description {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
}
.curriculum__item-image {
  flex: 0 0 auto;
}
.curriculum__item-image img {
  width: 100%;
}
.curriculum__contents-note {
  margin-top: 20px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
}
/* case */
.curriculum__case {
  padding: 30px 16px;
  margin: 24px -16px -36px;
  text-align: center;
  background: #f9f9f9;
}
.curriculum__case-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}
.curriculum__case-lead {
  margin-bottom: 20px;
  font-size: 12px;
}
.curriculum__case-table {
  padding-bottom: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.curriculum__case-table::-webkit-scrollbar {
  height: 4px;
}
.curriculum__case-table::-webkit-scrollbar-track {
  background: #eee;
}
.curriculum__case-table::-webkit-scrollbar-thumb {
  background: #aaa;
  border: none;
}
.curriculum__case-table::-webkit-scrollbar-thumb:hover {
  background: #999;
}
.curriculum__case-table table {
  width: 380px;
  margin: 0 auto;
  text-align: center;
  border-spacing: 0;
  border-collapse: collapse;
}
.curriculum__case-table table td,
.curriculum__case-table table th {
  border: 2px solid #ffffff;
}
.curriculum__case-table table th {
  white-space: nowrap;
}
.row_head {
  background: #999999;
}
.row_head {
  color: #ffffff;
}
.row_head th {
  height: 42px;
  font-size: 10px;
  line-height: 1.2;
  border-top: none !important;
}
.row_head th:first-of-type {
  visibility: hidden;
  border-left: none !important;
}
.row_head th:last-of-type {
  border-right: none !important;
}
.row_juniorhigh {
  background: #ffecdc;
}
.row_juniorhigh th {
  height: 120px;
  padding: 0 11px;
  font-size: 12px;
  background: #ff922e66;
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
}
.row_high {
  background: #daf6ea;
}
.row_high th {
  height: 120px;
  padding: 0 11px;
  font-size: 12px;
  background: #3bb97d66;
  border-right: none !important;
  border-left: none !important;
}
.row_university {
  background: #dcf1ff;
}
.row_university th {
  height: 120px;
  padding: 0 11px;
  font-size: 12px;
  background: #249bd966;
  border-right: none !important;
  border-bottom: none !important;
  border-left: none !important;
}
td.cell_school {
  height: 60px;
  padding: 0 12px;
  font-size: 10px;
  white-space: nowrap;
  border-left: none !important;
}
td.cell_score {
  font-size: 10px;
  white-space: nowrap;
}
.cell_score-small {
  font-size: 6px;
}
td.cell_content {
  padding: 0 11.1px;
  font-size: 10px;
  line-height: 1.3;
  text-align: left;
  border-right: none !important;
}
.row_university:last-of-type td {
  border-bottom: none !important;
}
.curriculum__case-table-note {
  margin: 20px auto 0;
  font-size: 10px;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .curriculum .contents-inner {
    padding: 60px 0;
  }
  .curriculum .contents-title {
    font-size: 40px;
  }
  .curriculum__contents-body {
    margin-top: 32px;
  }
  .curriculum__list {
    gap: 40px;
  }
  .curriculum__item-contents {
    padding: 40px 50px;
  }
  .curriculum__item-title {
    gap: 20px;
    font-size: 26px;
  }
  .curriculum .--num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    line-height: 1;
    color: #fff;
    background: var(--tab-color);
    border-radius: 2px;
  }
  .curriculum__item-body {
    display: flex;
    flex-direction: row;
    gap: 24px;
  }
  .curriculum__item-text {
  }
  .curriculum__item-lead {
    margin-top: 0;
    font-size: 20px;
    text-align: left;
  }
  .curriculum__item-description {
    font-size: 16px;
  }
  .curriculum__item-image {
    flex: 0 0 auto;
    max-width: 256px;
  }
  .curriculum__item-image img {
    width: 100%;
  }
  .curriculum__contents-note {
    margin-top: 32px;
  }
}

@media screen and (min-width: 1025px) {
  /* case */
  .curriculum__case {
    padding: 40px 0;
    margin: 60px -60px -60px;
  }
  .curriculum__case-title {
    margin-bottom: 15px;
    font-size: 36px;
  }
  .curriculum__case-lead {
    margin-bottom: 50px;
    font-size: 16px;
  }
  .curriculum__case-table {
    padding-bottom: 0;
  }
  .curriculum__case-table table {
    width: 880px;
    margin: 0 auto;
  }
  .curriculum__case-table table th {
    padding: 0 20px;
    font-size: 16px;
  }
  .row_head th {
    height: 44px;
  }
  .row_juniorhigh th {
    height: 173px;
    padding: 0 25px;
  }
  .row_high th {
    height: 173px;
    padding: 0 25px;
  }
  .row_university th {
    height: 173px;
    padding: 0 25px;
  }
  td.cell_school {
    height: 85.5px;
    padding: 0 12px;
    font-size: 16px;
  }
  td.cell_score {
    font-size: 16px;
  }
  .cell_score-small {
    font-size: 16px;
  }
  td.cell_content {
    font-size: 14px;
  }
  .curriculum__case-table-note {
    width: 880px;
    margin: 20px auto 0;
    font-size: 12px;
    text-align: right;
  }
}

/*-------------------------
  course-point
-------------------------*/
.course-point {
  background: var(--color-primary);
}

@media screen and (min-width: 1025px) {
  .course-point__title .u-text-underline {
    background: linear-gradient(transparent 93%, var(--color-accent) 93%);
  }
}

.course-point__title {
  position: relative;
  padding-bottom: 48px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.26;
  color: var(--color-text-secondary);
  text-align: center;
  background: var(--color-primary);
}

@media screen and (min-width: 1025px) {
  .course-point__title {
    padding-bottom: 68px;
    font-size: 32px;
  }
}

.course-point__title .u-text-underline {
  background: linear-gradient(transparent 93%, var(--color-accent) 93%);
}

.course-point__title .--lg {
  font-size: 32px;
}

@media screen and (min-width: 1025px) {
  .course-point__title .--lg {
    font-size: 50px;
  }
}

.course-point__title .--lg .num {
  font-size: 54px;
  line-height: 1;
}

@media screen and (min-width: 1025px) {
  .course-point__title .--lg .num {
    font-size: 88px;
  }
}

.course-point__item:not(:first-child) {
  margin-top: 48px;
}

@media screen and (min-width: 1025px) {
  .course-point__item:not(:first-child) {
    margin-top: 70px;
  }
}

@media screen and (min-width: 1025px) {
  .course-point__item-body {
    max-width: 1000px;
    margin: 0 auto;
  }
}

.course-point__item-contents {
  position: relative;
  padding: 32px 20px 24px;
  background: var(--color-background);
  border-radius: 12px;
}
.course-point__item-contents:has(+ .learning-method) {
  padding: 32px 20px 60px;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 768px) {
  .course-point__item-contents:has(+ .learning-method) {
    padding: 60px 60px 50px;
    border-radius: 12px;
  }
}

@media screen and (min-width: 1025px) {
  .course-point__item-contents {
    padding: 60px 60px 50px;
  }
}

.tooltip {
  position: relative;
  padding: 10px;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: -0.5px;
  background: var(--color-primary-light);
  border-radius: 8px;
}

@media screen and (min-width: 1025px) {
  .tooltip {
    padding: 15px;
    margin-bottom: 50px;
    font-size: 28px;
  }
}

.course-point__item-contents .tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  display: inline-flex;
  padding: 4px 30px 6px;
  margin-bottom: 0;
  font-size: 16px;
  background: var(--color-accent);
  border-radius: 50px;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1025px) {
  .course-point__item-contents .tooltip {
    padding: 6px 35px 8px;
    font-size: 24px;
  }
}

@media screen and (min-width: 1025px) {
  .course-point__item-contents .course-point__item-column {
    display: flex;
    gap: 50px;
    align-items: center;
    /* margin-bottom: 30px; */
  }
}

@media screen and (min-width: 1025px) {
  .course-point__item-contents .course-point__item-column .course-point__item-column-left {
    width: 400px;
  }
}

.course-point__item-contents .course-point__item-column .course-point__item-img-wrap {
  position: relative;
  margin: 24px 0 0;
}

@media screen and (min-width: 1025px) {
  .course-point__item-contents .course-point__item-column .course-point__item-img-wrap {
    margin: 0;
  }
}

@media screen and (min-width: 1025px) {
  .course-point__item-contents .course-point__item-column .course-point__item-column-right {
    flex: 1 0 480px;
  }
}

.course-point__item-title {
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-text);
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .course-point__item-title {
    font-size: 28px;
    text-align: left;
  }
}

.course-point__item-text-wrap {
  margin-top: 24px;
}
@media screen and (min-width: 1025px) {
  .course-point__item-text-wrap {
    margin-top: 20px;
  }
}

.course-point__item-description {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 1025px) {
  .course-point__item-description {
    font-size: 16px;
    line-height: 1.6;
  }
}
.course-point-self-study__note {
  margin-top: 8px;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .course-point-self-study__note {
    margin-top: 10px;
  }
}

/* learning-method */
.learning-method {
  position: relative;
  padding: 63px 16px 28px;
  background: var(--color-primary-light);
  border-radius: 0 0 12px 12px;
}

.learning-method__title {
  position: absolute;
  top: -30px;
  left: 50%;
  min-width: 250px;
  padding: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-secondary);
  text-align: center;
  background: #0379d6;
  border-radius: 8px;
  transform: translateX(-50%);
}
.learning-method__title::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 23px;
  height: 11px;
  content: '';
  background: #0379d6;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}

.learning-method__title--emp {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-accent);
  text-align: center;
}

.learning-method__body {
  /* padding: 63px 16px 24px; */
}

.learning-method__description {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.learning-method__img-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.learning-method__img {
}
@media screen and (min-width: 768px) {
  .learning-method {
    max-width: 880px;
    padding: 28px 40px;
    margin: 63px auto 0;
    border-radius: 8px;
  }

  .learning-method__title {
    left: 40px;
    transform: none;
  }

  .learning-method__title--emp {
  }

  .learning-method__body {
    display: flex;
    gap: 40px;
    align-items: center;
  }

  .learning-method__description {
    flex: 1 0 247px;
    font-size: 20px;
    line-height: 1.6;
  }

  .learning-method__img-wrap {
    gap: 12px;
    margin: 0;
  }

  .learning-method__img {
  }
}

/*-------------------------
    teacher-introduction
-------------------------*/
.teacher-introduction {
  background-color: #f2f2f2;
}
.teacher-introduction img {
  margin: 0;
}
.teacher-introduction .contents-inner {
  padding: 0;
}
.teacher-introduction__title {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.teacher-introduction__title--emp {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
}
.teacher-introduction__contents {
  padding: 40px 0;
}
.break {
  flex-basis: 100%;
  height: 0;
}
.u-fw_bold {
  font-weight: bold;
}
.c-bg-blue {
  padding: 2.5px 8px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #1f3b9e;
  border-radius: 3px;
}
.teacher--lg {
  font-size: 26px;
}
.teacher__list-item {
  display: flex;
  flex-direction: column;
  padding: 20px 12px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 8px;
  box-shadow: 2px 4px 9px 0px #a3a3a333;
}
.teacher__list-item-inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 15px;
}
.teacher__list-item-caption {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 15px;
}
.teacher__list-item-category {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5px 5px;
}
.teacher__list-item-caption .teacher__list-item-img {
  width: 7.5rem;
  height: 7.5rem;
}
.teacher__list-item-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary);
}
.teacher__list-item-name {
  font-size: 14px;
  font-weight: bold;
}
.teacher__list-item-achievement-wrap {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  margin-top: 10px;
}
.teacher__list-item-achievement-title {
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #666666;
}
.teacher__list-item-achievement-wrap-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
}
.teacher__list-item-achievement-note {
  margin-top: 15px;
  font-size: 10px;
}
.teacher__list-item-introduction {
  display: flex;
  flex-direction: column;
}
.teacher__list-item-contents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.teacher__list-item-introduction {
  gap: 15px;
}

.teacher__list-item-subjects,
.teacher__list-item-possible,
.teacher__list-item-what {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  background-color: #eef6fd;
}
.teacher__list-item-possible,
.teacher__list-item-what {
  flex: 1;
}

.teacher__list-item-what {
  margin-top: 15px;
}

.teacher__list-item-subjects-title,
.teacher__list-item-possible-title,
.teacher__list-item-what-title {
  width: 100%;
  padding-bottom: 8px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px #666666 solid;
}
.teacher__list-item-subjects-description,
.teacher__list-item-possible-description,
.teacher__list-item-what-description {
  flex: 1;
  font-size: 14px;
  line-height: 1.4em;
  letter-spacing: 0;
}
.teacher-introduction__note {
  margin-top: 23px;
  margin-right: 16px;
  margin-left: 16px;
  font-size: 10px;
  text-align: left;
}

@media only screen and (min-width: 768px) {
  .teacher-introduction__contents {
    padding: 60px 0 72px;
    overflow: hidden;
  }
  .teacher-introduction__title {
    margin-bottom: 50px;
    font-size: 26px;
  }
  .teacher-introduction__title--emp {
    font-size: 40px;
  }
  .c-bg-blue {
    padding: 2.5px 8px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #1f3b9e;
    border-radius: 3px;
  }
  .teacher--lg {
    font-size: 26px;
  }
  .teacher__list-item {
    gap: 17px;
    max-width: 550px;
    padding: 29px 40px;
    background-color: #fff;
  }
  .teacher__list-item-inner {
    text-align: left;
    /* flex-direction: row; */
    /* gap: 40px; */
  }
  .teacher__list-item-introduction {
    flex: 0 0 calc(54% - 40px);
    min-width: 0;
  }
  .teacher__list-item-caption {
    margin-top: 0;
  }
  .teacher__list-item-caption .teacher__list-item-img {
    width: 100px;
    height: 100px;
  }
  .teacher__list-item-title {
    font-size: 18px;
    font-weight: bold;
  }
  .teacher__list-item-name {
    font-size: 14px;
    font-weight: bold;
  }
  .teacher__list-item-achievement-wrap-text {
    font-size: 16px;
  }
  .teacher__list-item-subjects,
  .teacher__list-item-possible,
  .teacher__list-item-what {
    padding: 16px 20px 20px;
    background-color: #eef6fd;
  }
  .teacher__list-item-what {
    margin-top: 15px;
  }
  .teacher__list-item-subjects-title,
  .teacher__list-item-possible-title,
  .teacher__list-item-what-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  .teacher__list-item-subjects-description,
  .teacher__list-item-possible-description,
  .teacher__list-item-what-description {
    font-size: 14px;
  }
  .teacher-introduction__note {
    margin-top: 24px;
    text-align: left;
  }
}

/*-------------------------
    teacher splide
-------------------------*/
#teacher-slider .splide__slide {
  height: 100%;
}
#teacher-slider .splide__pagination__page {
  opacity: 1;
}
#teacher-slider .splide__pagination {
  bottom: 5em;
}
#teacher-slider .splide__pagination__page.is-active {
  background: #224087;
}

/* splide__arrow */
#teacher-slider .splide__arrow {
  width: 41px;
  height: 41px;
  background: #0014284d;
  border-radius: 0;
  opacity: 1;
}
#teacher-slider .splide__arrow:disabled {
  opacity: 0.3;
}
#teacher-slider .splide__arrow svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: #fff;
}
#teacher-slider .splide__arrow--next {
  right: 0.4em;
}
#teacher-slider .splide__arrow--prev {
  left: 0.4em;
}

/* progress-bar */
#teacher-slider .splide__progress {
  margin: 23px 16px 0;
  overflow: hidden;
  background-color: #cccccc;
}

#teacher-slider .splide__progress__slide_teacher {
  width: 0;
  height: 5px;
  background: #1f3b9e;
  transition: width 400ms ease;
}

@media only screen and (min-width: 768px) {
  #teacher-slider .splide__progress {
    margin: 11px 16px 0;
  }
  #teacher-slider .splide__track {
    padding-bottom: 12px;
  }
  #teacher-slider .splide__pagination__page {
    opacity: 1;
  }
  #teacher-slider .splide__pagination {
    bottom: 2em;
  }
  #teacher-slider .splide__pagination__page.is-active {
    background: #224087;
  }

  /* splide__arrow */
  #teacher-slider .splide__arrow {
    width: 41px;
    height: 41px;
    background: #0014284d;
    border-radius: 0;
    opacity: 0.7;
  }
  #teacher-slider .splide__arrow svg {
    width: 18px;
    height: 18px;
    fill: #fff;
  }
  #teacher-slider .splide__arrow--next {
    right: 0.2em;
  }
  #teacher-slider .splide__arrow--prev {
    left: 0.2em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  /* splide__arrow */
  #teacher-slider .splide__arrow--next {
    right: 1.6em;
  }
  #teacher-slider .splide__arrow--prev {
    left: 1.6em;
  }
}

/*-------------------------
    map
-------------------------*/
#map .map__contents {
  padding: 80px 0;
}
#map .contents-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.4;
  color: #1f3b9e;
  text-align: center;
}
#map .contents-title .--sm {
  font-size: 30px;
  font-weight: 700;
}
#map .mapArea {
  position: relative;
  width: min(94%, 800px);
  height: 550px;
  margin: min(15%, 65px) auto 0 auto;
}
#map .mapArea .mapAll {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#map .mapArea [class^='area'] {
  position: absolute;
  width: 118px;
  font-size: 1.28rem;
  background: #d0edff;
  border-radius: 10px;
}
#map .mapArea [class^='area'] h3 {
  padding: 3px 5px;
  font-size: 1.28rem;
  font-weight: normal;
  color: #fff;
  letter-spacing: -0.5px;
  background: #1f377c;
  border-radius: 10px 10px 0 0;
}
#map .mapArea .area01 {
  top: 123px;
  left: min(84.25%, 674px);
}
#map .mapArea .area02 {
  top: 272px;
  left: min(84.25%, 674px);
}
#map .mapArea .area03 {
  top: 397px;
  left: min(84.25%, 674px);
}
#map .mapArea .area04 {
  top: 397px;
  left: min(74.13%, 593px);
  width: 63px;
}
#map .mapArea .area05 {
  top: 26px;
  left: min(24.25%, 194px);
}
#map .mapArea .area06 {
  top: 26px;
  left: min(7%, 56px);
}
#map .mapArea .area07 {
  top: 150px;
  left: min(24.25%, 194px);
  width: 63px;
}
#map .mapArea .area08 {
  top: 150px;
  left: min(7%, 56px);
}
#map .mapArea .mapList {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px;
}
#map .mapArea .area04 .mapList,
#map .mapArea .area07 .mapList {
  flex-direction: column;
}
#map .mapArea .mapList li {
  width: 49%;
  text-align: center;
}
#map .mapArea .mapList li a {
  color: #111;
  white-space: nowrap;
  text-decoration: none;
}
#map .mapArea .mapList li a.ls-1 {
  letter-spacing: -1px;
}
/* link-text */
#map .link-text {
  padding-top: 0;
  text-align: center;
}
#map .link-text a {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 0 5px 3px;
  font-size: 28px;
  font-weight: bold;
  color: #1f3b9e;
  text-align: center;
  border-bottom: 2px solid #1f3b9e;
}
#map .link-text a::after {
  width: 30px;
  aspect-ratio: 1/1;
  content: '';
  background: url('../img/arrow-blue.svg') no-repeat center center / contain;
}

@media (max-width: 750px) {
  #map .map__contents {
    padding: 40px 0;
  }
  #map .contents-title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.4;
    color: #1f3b9e;
    text-align: center;
  }
  #map .contents-title .--sm {
    font-size: 14px;
    font-weight: 700;
  }
  #map .mapArea {
    width: min(100%, 800px);
    height: 100%;
    padding-top: 86.67%;
    margin: min(5%, 30px) auto min(15%, 65px) auto;
  }
  #map .mapArea .mapAll {
    width: 72.93%;
  }
  #map .mapArea [class^='area'] {
    position: absolute;
    width: 19.6%;
    font-size: 2.13vw;
    border-radius: 5px;
  }
  #map .mapArea [class^='area'] h3 {
    font-size: 2.13vw;
    border-radius: 5px 5px 0 0;
  }
  #map .mapArea .area01 {
    top: 30%;
    left: 74.93%;
  }
  #map .mapArea .area02 {
    top: 60%;
    left: 74.93%;
  }
  #map .mapArea .area03 {
    top: 86.5%;
    left: 74.93%;
  }
  #map .mapArea .area04 {
    top: 86.5%;
    left: 59.93%;
    width: 12%;
  }
  #map .mapArea .area05 {
    top: 26px;
    left: 28.53%;
  }
  #map .mapArea .area06 {
    top: 26px;
    left: 5%;
  }
  #map .mapArea .area07 {
    top: 34%;
    left: 28.53%;
    width: 12%;
  }
  #map .mapArea .area08 {
    top: 34%;
    left: 5%;
  }
  #map .mapArea .mapList {
    padding: 8px;
  }
  /* link-text */
  #map .link-text {
    padding-top: 0;
    text-align: center;
  }
  #map .link-text a {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    padding: 0 5px 3px;
    font-size: 20px;
    font-weight: bold;
    color: #1f3b9e;
    text-align: center;
    border-bottom: 2px solid #1f3b9e;
  }
  #map .link-text a::after {
    width: 23px;
    aspect-ratio: 1/1;
    content: '';
    background: url('../img/arrow-blue.svg') no-repeat center center / contain;
  }
}

/*-------------------------
  faq
-------------------------*/
.faq-course {
  background-color: #eaf4fd;
}

.md-faq .l-container._middle {
  max-width: 1000px;
}
.md-faq .c-title._h2 {
  padding-bottom: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
}

.c-title._h2:after,
.c-title._h2:before {
  content: none;
}

.faq-course .p-qa-toggle__q > .c-toggle__btn {
  display: flex;
  gap: 5px;
}

@media screen and (min-width: 769px) {
  .md-faq .c-title._h2 {
    font-size: 48px;
    line-height: 1;
  }
  .faq-course .p-section__inner {
    padding: 80px 0;
  }
  .faq-course .p-qa-toggle__q > .c-toggle__btn {
    gap: 10px;
    font-size: 20px;
  }
}

.p-qa-toggle__q > .c-toggle__btn:before {
  content: none;
}

.icon-toggle__q {
  align-self: baseline;
  margin-top: -2px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #0379d6;
}

@media screen and (min-width: 769px) {
  .icon-toggle__q {
    align-self: center;
    font-size: 20px;
  }
}

.md-toggle__btn--has-icon {
  position: relative;
  display: block;
  padding: 0;
  font-weight: 700;
}

.faq-course .p-qa-toggle__q > .c-toggle__btn .md-toggle__btn-title {
  width: calc(100% - 25px - 18px);
}
.faq-course .p-qa-toggle__q > .c-toggle__btn .icon-toggle__q {
  width: auto;
}
.faq-course .p-qa-toggle__q > .c-toggle__btn .con-toggle__add {
  width: 24px;
  height: 24px;
}

@media screen and (min-width: 769px) {
  .faq-course .p-qa-toggle__q > .c-toggle__btn .md-toggle__btn-title {
    width: calc(100% - 40px - 30px);
  }
  .faq-course .p-qa-toggle__q > .c-toggle__btn .con-toggle__add {
    width: 30px;
    height: 30px;
  }
}

.p-qa-toggle__q > .c-toggle__btn .c-toggle__btn-icon:before {
  content: none;
}

.p-qa-toggle__q > .c-toggle__btn[aria-expanded='true'] .c-toggle__btn-icon:before {
  content: none;
}

.icon-toggle__close {
  display: none;
}

.is-open .icon-toggle__close {
  display: block;
}

.is-open .icon-toggle__open {
  display: none;
}

.p-qa-toggle__a:before {
  content: none;
}

.faq-course .p-qa-toggle__a > div,
.p-qa-toggle__a > span {
  font-size: 14px;
}

.faq-course .p-qa-toggle__a > div,
.p-qa-toggle__a > span {
  font-size: 14px;
}

.faq-course dd .c-toggle__answer {
  display: flex;
  gap: 5px;
  align-items: baseline;
  padding: 0 40px 20px 15px;
}

@media screen and (min-width: 769px) {
  .faq-course dd .c-toggle__answer {
    gap: 10px;
    padding: 0 40px 30px 25px;
    padding-left: 15px;
  }
}

.faq-course .p-qa-toggle__a .c-toggle__answer .icon-toggle__a {
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #0379d6;
}

@media screen and (min-width: 769px) {
  .faq-course .p-qa-toggle__a .c-toggle__answer .icon-toggle__a {
    font-size: 20px;
  }
}

.c-toggle__answer span {
  padding: 0;
  font-size: 14px;
}
.c-toggle__answer a {
  color: #0379d6;
}

@media screen and (min-width: 769px) {
  .faq-course .p-qa-toggle__a.md-qa-toggle .c-toggle__answer span {
    width: calc(100% - 30px);
    padding: 0;
    padding-top: 0;
    font-size: 18px;
  }
}

/*-------------------------
    flow
-------------------------*/
.flow .contents-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  background: #1f3b9e;
  border-radius: 12px 12px 0px 0px;
}
.flow__contents-body {
  padding: 30px 20px;
  border: 2px solid #1f3b9e;
  border-radius: 0 0 12px 12px;
}
.flow__item:not(:first-child) {
  padding-top: 30px;
}
.flow__item:not(:last-child) {
  padding-bottom: 30px;
  border-bottom: 1px solid #1f3b9e;
}
.flow__item-title {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #1f3b9e;
}
.flow__item-title span {
  display: inline-block;
  padding: 6px 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #1f3b9e;
  text-align: center;
  background: #fee302;
  border-radius: 4px;
}
.flow__item-description {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #333333;
}
.flow__item-notes {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  color: #666666;
}
/* flow__cta */
.flow__cta-wrap {
  margin-top: 12px;
}

@media screen and (min-width: 768px) {
  .flow .contents-inner {
    max-width: 700px;
  }
  .flow .contents-title {
    padding: 20px 0;
    font-size: 30px;
  }
  .flow__contents-body {
    padding: 40px;
  }
  .flow__item-title {
    font-size: 28px;
  }
  .flow__item-title span {
    padding: 5px 20px;
    font-size: 18px;
    line-height: 1.6;
  }
  .flow__item-notes {
    font-size: 14px;
  }
  /* flow__cta */
  .flow__cta-wrap {
    max-width: 540px;
    margin: 12px auto 0;
  }
}

/*-------------------------
    online
-------------------------*/
.online__title--sub {
  position: relative;
  padding: 10px;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #1f3b9e;
  text-align: center;
  letter-spacing: -0.5px;
  background: #cdf0ff;
  border-radius: 8px;
}
.online__title--sub::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 22px;
  height: 12px;
  content: '';
  background: #cdf0ff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}
.online__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: #1f3b9e;
  text-align: center;
}
.online__img {
  margin-top: 20px;
}
.online__description {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .online .contents-inner {
    max-width: 700px;
    padding: 0 0 60px;
  }
  .online__title--sub {
    padding: 15px;
    margin-bottom: 50px;
    font-size: 28px;
  }
  .online__title--sub::after {
    bottom: -18px;
    width: 32px;
    height: 20px;
  }
  .online__title {
    font-size: 33px;
    line-height: 1;
  }
  .online__img {
    margin-top: 30px;
  }
  .online__description {
    margin-top: 30px;
    font-size: 20px;
  }
}

/*-------------------------
共通レイアウト
-------------------------*/
.l-container {
  width: 90vw;
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
}
.l-container._middle {
  max-width: 1200px;
}

@media screen and (min-width: 768px) {
  .l-container {
    width: calc(100% - 60px);
  }
}

/*-------------------------
共通ボタン
-------------------------*/
.md-btn {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.64px;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 8px;
}
.md-btn--l-border-radius {
  border-radius: 100px;
}
.md-btn--m-border-radius {
  border-radius: 8px;
}
.md-btn--left-arrow::before {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 8px;
  height: 8px;
  content: '';
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  transform-origin: right;
}
.md-btn--orange {
  color: #ffffff;
  background-color: #f1a92c;
}
.md-btn--l-border-radius.md-btn--orange {
  box-shadow: 0 4px 0 #b17816;
}
.md-btn--light-green {
  color: #ffffff;
  background-color: #399d26;
}
.md-btn--l-border-radius.md-btn--light-green {
  box-shadow: 0 4px 0 #287519;
}
.md-btn--light-blue {
  color: #224087;
  background-color: #e0f0ff;
}

@media screen and (min-width: 768px) {
  .md-btn--left-arrow::before {
    width: 10px;
    height: 10px;
  }
}

/*-------------------------
md-course-services
-------------------------*/
.md-course-services {
  padding: 33px 0;
  background-color: #224087;
}
.md-course-services .md-course-services__header {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: #ffffff;
  text-align: center;
}
.md-course-services__box {
  padding: 12px 12px 20px;
  background-color: #ffffff;
  border-radius: 10px;
}
.md-course-services__box .md-course-services__thumb-img img {
  width: 100%;
  object-fit: contain;
}
.md-course-services__box .md-course-services__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: #ff6e0e;
  text-align: center;
  letter-spacing: 0px;
}
.md-course-services__title-img {
  width: 80%;
  margin: 5px auto;
  text-align: center;
}
.md-course-services__box .md-course-services__detail {
  padding-right: 15px;
  padding-left: 15px;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}
.md-course-services .md-course-services__box .md-course-services__detail {
  width: 80%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}
.md-course-services .md-course-services__note {
  font-size: 9px;
  font-weight: 400;
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .md-block-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 0;
  }
  .md-course-services .md-course-services__header {
    width: 100%;
    font-size: 40px;
    line-height: 1.4;
  }
  .md-course-services__box {
    display: flex;
    flex-direction: column;
    width: 49%;
  }
  .md-course-services__box .md-course-services__detail {
    flex: 1;
    font-size: 15px;
  }
  .md-course-services .md-course-services__note {
    font-size: 12px;
  }
  .md-course-services .md-btn-service {
    width: 500px;
    margin: 50px auto;
  }
}

@media screen and (min-width: 1025px) {
  .md-course-services {
    padding: 0;
    margin: 0;
  }
  .md-course-services .md-course-services__header {
    width: 30%;
    font-size: 40px;
    line-height: 1.4;
    text-align: left;
  }
  .md-course-services__box {
    width: 33%;
    margin-top: 0;
  }
  .md-course-services__box .md-course-services__thumb-img img {
    height: 206px;
  }
  .md-course-services .md-course-services__note {
    font-size: 15px;
    line-height: normal;
  }
}

/*-------------------------
md-course-fee
-------------------------*/
.md-course-fee {
  padding: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.md-course-fee__btn-wrap .md-course-fee__btn {
  padding: 25px 15px;
  font-size: clamp(2rem, 1.707rem + 0.78vw, 2.8rem);
  border-radius: 15px;
}
.md-course-fee .md-btn {
  padding-left: 20px;
  text-align: left;
  border-radius: 8px;
}
.md-course-fee .md-course-fee__btn.md-btn--light-blue.md-btn--left-arrow::before {
  width: 12px;
  height: 12px;
  border-top: 2px solid #224087;
  border-right: 2px solid #224087;
}

@media screen and (min-width: 768px) {
  .md-course-fee {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .md-course-fee__btn-wrap .md-course-fee__btn {
    padding: 20px;
  }
}

@media screen and (min-width: 1025px) {
  .md-course-fee__btn-wrap {
    display: flex;
    gap: 30px;
  }
  .md-course-fee__btn-wrap .md-course-fee__btn {
    margin-top: 0;
  }
}

/*-------------------------
ユーティリティ
-------------------------*/
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.fs-8 {
  font-size: 8px;
}
.md-w-200 {
  width: 200px;
}
.md-mx-auto {
  margin-right: auto;
  margin-left: auto;
}
.md-mt-14 {
  margin-top: 14px;
}
.md-mt-20 {
  margin-top: 20px;
}
.md-mt-22 {
  margin-top: 22px;
}
.md-mt-24 {
  margin-top: 24px;
}
.md-mt-27 {
  margin-top: 27px;
}

@media screen and (min-width: 768px) {
  .sl\:fs-12 {
    font-size: 12px;
  }
}

@media screen and (min-width: 1025px) {
  .lg\:d-block {
    display: block;
  }
  .lg\:order-1 {
    order: 1;
  }
  .lg\:mt-0 {
    margin-top: 0;
  }
}
