@charset "UTF-8";
:root {
  --primary-color: #182e4c;
  --primary-color-light: #eef6fd;
  --accent-color: #fee902;
  --accent-color-light: #fee302;
  --underline-color: #fee300;
  --background-color: #ffffff;
  --text-color: #333333;
  --text-color-secondary: #ffffff;
  --color-gray: #cccccc;
  --color-red: #e52d2c;
  --color-blue: #1f3b9e;
  --shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25);
}
body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}
main img {
  display: block;
  margin: auto;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 16px;
  }
}
/*-------------------------
    common
-------------------------*/
.pc {
  display: none !important;
}
.sp {
  display: block !important;
}
.u-color-primary {
  color: var(--primary-color);
}
.u-color-accent {
  color: var(--accent-color);
}
.u-color-red {
  color: var(--color-red);
}
.u-color-blue {
  color: var(--color-blue);
}
.u-text-underline {
  background: linear-gradient(transparent 80%, var(--underline-color) 80%);
}
.u-text-bold {
  font-weight: bold;
}
.u-text-align-center {
  text-align: center;
}
.u-text-align-left {
  text-align: left;
}
.u-text-align-right {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}

/*-------------------------
    contents-inner
-------------------------*/
.contents-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .contents-inner {
    max-width: 1000px;
    padding: 0;
  }
}

/*-------------------------
    notes
-------------------------*/
.notes {
  display: block;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  .notes {
    max-width: 1200px;
  }
}

/*-------------------------
    見出し
-------------------------*/
/* contents-title */
.contents-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contents-title {
    font-size: 40px;
  }
}

/* tooltip */
.tooltip {
  position: relative;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.5px;
  background: var(--primary-color-light);
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 25px;
}
.tooltip::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 22px;
  height: 12px;
  background: var(--primary-color-light);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media screen and (min-width: 1025px) {
  .tooltip {
    font-size: 28px;
    padding: 15px;
    margin-bottom: 50px;
  }
  .tooltip::after {
    bottom: -18px;
    width: 32px;
    height: 20px;
  }
}

/*-------------------------
    card-contents
-------------------------*/
.card-contents-wrapper.--column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.card-contents-wrapper.--pc-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.card-contents {
  display: flex;
  flex-direction: column;
}
.card-contents-head {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  padding: 10px 0;
  text-align: center;
}
.card-contents-title {
  color: var(--text-color-secondary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.card-contents-body {
  display: block;
  background: var(--background-color);
  border: solid 1px var(--primary-color);
  padding: 20px;
}
/* --radius */
.card-contents.--radius .card-contents-head {
  border-radius: 6px 6px 0 0;
}
.card-contents.--radius .card-contents-body {
  border-radius: 0 0 6px 6px;
}
@media screen and (min-width: 1025px) {
  .card-contents-wrapper.--pc-column {
    grid-template-columns: 1fr 1fr;
  }
  .card-contents-title {
    font-size: 24px;
  }
  .card-contents-body {
    padding: 24px;
  }
  /* --radius */
  .card-contents.--radius .card-contents-head {
    border-radius: 8px 8px 0 0;
  }
  .card-contents.--radius .card-contents-body {
    border-radius: 0 0 8px 8px;
  }
}

/*-------------------------
    CTA
-------------------------*/
.md-contact {
  background: var(--primary-color-light);
  padding: 33px 0;
}
#achievement + .md-contact {
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .md-contact {
    padding: 40px 0 50px;
  }
  #achievement + .md-contact {
    padding-bottom: 80px;
  }
}

/*-------------------------
    main-visual
-------------------------*/
.md_main-visual {
  background-color: #192963;
}
.md_main-visual--text {
  display: none;
  color: #ffff;
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 39.1px;
  padding: 24px 20px;
}
.md_main-visual > div {
  flex-direction: column;
  align-items: flex-start;
}
.md_main-visual .contents-inner {
  padding: 0;
}
.md_d-flex {
  display: flex;
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .md_main-visual--text {
    margin: auto;
  }
}

@media (min-width: 769px) {
  .sl\:w50per {
    width: 50%;
  }
  .md_main-visual--text {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .md_main-visual .contents-inner {
    max-width: 1200px;
  }
  .md_main-visual--text {
    font-size: min(calc(32 / 1200 * 100vw), 32px);
  }
  .md_main-visual--text > span {
    display: inline-block;
    border-bottom: 2.3px solid #fff;
    padding-bottom: 15px;
  }
  .md_main-visual > div {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/*-------------------------
    worry
-------------------------*/
#worry .worry__contents {
  position: relative;
  background: var(--primary-color);
  padding: 40px 0;
}
#worry .contents-title {
  color: var(--text-color-secondary);
}
#worry .worry__contents-body {
  margin-top: 32px;
}
#worry .worry__example-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
#worry .worry__example-item {
  width: 47%;
}
#worry .worry__example-item-text {
  background: #fff;
  border-radius: 8px;
  padding: 20px 15px;
}
#worry .worry__example-item-title {
  color: #192963;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}
#worry .worry__item-img {
  width: 100%;
  margin-top: 7px;
}
@media screen and (min-width: 1025px) {
  #worry .contents-inner {
    max-width: 1200px;
  }
  #worry .worry__contents {
    padding: 80px 0;
  }
  #worry .worry__contents-body {
    margin-top: 50px;
  }
  #worry .worry__example-list {
    gap: 15px;
    flex-wrap: nowrap;
  }
  #worry .worry__example-item {
    width: 360px;
  }
  #worry .worry__example-item-text {
    border-radius: 8px;
    padding: 30px 20px;
    /* height: 230px; */
  }
  #worry .worry__example-item-title {
    font-size: 20px;
    line-height: 1.6;
  }
  #worry .worry__item-img {
    width: 77%;
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  #worry .worry__contents {
    padding-right: 16px;
    padding-left: 16px;
  }
}

/*-------------------------
    point
-------------------------*/
#point .point__contents {
  padding: 30px 0;
}
#point .contents-title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
#point .contents-title::before,
#point .contents-title::after {
  content: '';
  background-color: #182e4c;
  width: 2px;
  height: 54px;
  border-radius: 20px;
}
#point .contents-title::before {
  transform: rotate(-28deg);
  margin-top: 12px;
  margin-right: 18px;
}
#point .contents-title::after {
  transform: rotate(28deg);
  margin-top: 12px;
  margin-left: 18px;
}
#point .point__contents-body {
  margin-top: 30px;
}
#point .point__item {
  position: relative;
  padding: 0 14px 20px;
  background: var(--background-color);
  box-shadow: 2px 4px 9px 0px #4673af33;
  border-radius: 7px;
  z-index: 1;
}
#point .point__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/bg-tile.webp) repeat center center / 20px auto;
  opacity: 0.2;
  z-index: -1;
  box-shadow: 2px 4px 9px 0px #4673af33;
  border-radius: 7px;
}
#point .point__item-title {
  color: #fff;
  font-size: 20px;
  line-height: 1.26;
  margin-bottom: 45px;
  background: var(--primary-color);
  border-radius: 0 0 7px 7px;
  text-align: center;
  margin: 0 20px;
  padding: 2px 0 8px;
}
#point .point__item-title .--sm {
  font-size: 12px;
}
#point .point__item-title .--lg {
  font-size: 30px;
  line-height: 0.8;
}
#point .point__item-body {
  margin-top: 20px;
}
#point .point__item-column:not(:first-of-type) {
  margin-top: 30px;
}
#point .point__item-column-head {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}
#point .point__item-number {
  font-family: Roboto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  color: var(--text-color-secondary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  background: var(--primary-color);
  width: 26px;
  height: 26px;
  border-radius: 50%;
}
#point .point__item-column-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}
#point .point__item-text-wrap {
  margin-top: 20px;
}
#point .point__item-description {
  font-size: 14px;
  line-height: 1.5;
}
#point .point__item-img-notes {
  display: block;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  margin-top: 2px;
  text-align: right;
}
#point .notes {
  margin-top: 10px;
}
#point .point__example {
  background: var(--primary-color-light);
  margin-top: 20px;
  padding: 11px 14px;
}
#point .point__example-title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  color: var(--primary-color);
}
#point .point__example-title::before,
#point .point__example-title::after {
  content: '';
  background-color: #182e4c;
  width: 2px;
  height: 13px;
  border-radius: 20px;
}
#point .point__example-title::before {
  transform: rotate(-28deg);
  margin-right: 6px;
}
#point .point__example-title::after {
  transform: rotate(28deg);
  margin-left: 6px;
}
#point .point__example-text {
  margin-top: 10px;
}
#point .point__example-list-item:not(:first-child) {
  padding-top: 7px;
}
#point .point__example-list-item-checked-text {
  position: relative;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  padding-left: 21px;
}
#point .point__example-list-item-checked-text::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--color-blue);
  border-radius: 50%;
}
#point .point__example-list-item-checked-text::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 5px;
  width: 6px;
  height: 9px;
  border: solid var(--text-color-secondary);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#point .point__btn-wrap {
  margin-top: 30px;
}
#point .point__btn-item:not(:first-child) {
  margin-top: 20px;
}
#point .point__btn {
  width: 100%;
  height: 60px;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 50px;
  color: #fff;
  position: relative;
}
#point .point__btn.--green {
  background: #00acb2;
  box-shadow: 0 4px 0 #1354cc4d;
}
#point .point__btn.--blue {
  background: #1354cc;
  box-shadow: 0 4px 0 #1354cc4d;
}
#point .point__btn-text-wrap {
  text-align: center;
  width: 100%;
  max-width: 220px;
}
#point .point__btn-img-item {
  width: 23px;
  position: absolute;
  right: 16px;
}
#point .point__btn-subtitle {
  position: relative;
  font-size: 10px;
  line-height: 1.4;
  border-bottom: 1.7px solid #ffffff;
  padding-bottom: 3px;
}
#point .point__btn-subtitle::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 6px 7px 0 7px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
#point .point__btn-subtitle::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 50%;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  translate: -50% 100%;
}
#point .point__btn.--green .point__btn-subtitle::after {
  border-color: #00acb2 transparent transparent;
}
#point .point__btn.--blue .point__btn-subtitle::after {
  border-color: #1354cc transparent transparent;
}
#point .point__btn-title {
  font-size: 12px;
  line-height: 1;
  margin-top: 8px;
}
#point .point__btn-title .--lg {
  font-size: 16px;
}
#point .point__img-item {
  margin-top: 30px;
}
#point .point__img-item-title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  color: var(--primary-color);
  margin-bottom: 15px;
}
#point .point__img-item-title::before,
#point .point__img-item-title::after {
  content: '';
  background-color: #182e4c;
  width: 2px;
  height: 20px;
  border-radius: 20px;
  margin-top: 4px;
}
#point .point__img-item-title::before {
  transform: rotate(-28deg);
  margin-right: 6px;
}
#point .point__img-item-title::after {
  transform: rotate(28deg);
  margin-left: 6px;
}
.tab {
  --color-elementary: #fea81d;
  --color-junior-high: #42b235;
  --color-high: #1354cc;
}
.tab .tab__btn-wrap {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.tab button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f2f2f2;
  color: #666666;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.4;
  width: 100%;
  border: 1px solid #ccc;
  border-bottom: none;
  border-radius: 5px 5px 0px 0px;
  outline: none;
  cursor: pointer;
  padding: 5px 0;
  transition: 0.3s;
}
.tab button.active {
  color: #fff;
}
.tab button.active:nth-child(1) {
  background: var(--color-elementary);
  border-color: var(--color-elementary);
}
.tab button.active:nth-child(2) {
  background: var(--color-junior-high);
  border-color: var(--color-junior-high);
}
.tab button.active:nth-child(3) {
  background: var(--color-high);
  border-color: var(--color-high);
}
.tab .tab__content-item {
  display: none;
  border-radius: 0 0 7px 7px;
  padding: 20px 13px;
}
.tab .tab__content-item:nth-child(1) {
  background: #fdf0b5;
  border-top: 4px solid var(--color-elementary);
}
.tab .tab__content-item:nth-child(2) {
  background: #d3f0ab;
  border-top: 4px solid var(--color-junior-high);
}
.tab .tab__content-item:nth-child(3) {
  background: #c2e2fc;
  border-top: 4px solid var(--color-high);
}
.tab .tab__btn-wrap.btn-text {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin-top: 30px;
}
.tab .tab__btn-wrap.btn-text.--right {
  justify-content: right;
}
.tab .tab__btn-wrap.btn-text.--left {
  justify-content: left;
}
.tab .tab__btn-wrap.btn-text button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  color: #182e4c;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.26;
  width: auto;
  border: none;
  border-bottom: 1px solid #182e4c;
  padding: 0 5px 3px;
}
.tab .tab__btn-wrap.btn-text button.icn-left::before {
  content: '';
  background: url(../img/arrow-blue-l.svg) no-repeat center center / contain;
  width: 13px;
  aspect-ratio: 1 / 1;
}
.tab .tab__btn-wrap.btn-text button.icn-right::after {
  content: '';
  background: url(../img/arrow-blue-r.svg) no-repeat center center / contain;
  width: 13px;
  aspect-ratio: 1 / 1;
}
@media screen and (min-width: 1025px) {
  #point .point__contents {
    padding: 80px 0;
  }
  #point .contents-inner {
    max-width: 1200px;
  }
  #point .contents-title {
    font-size: 40px;
  }
  #point .contents-title::before,
  #point .contents-title::after {
    width: 3px;
    height: 85px;
  }
  #point .contents-title::before {
    margin-top: 18px;
    margin-right: 28px;
  }
  #point .contents-title::after {
    margin-top: 18px;
    margin-left: 28px;
  }
  #point .point__contents-body {
    margin-top: 60px;
  }
  #point .point__item {
    padding: 0 50px 50px;
  }
  #point .point__item-title {
    max-width: 620px;
    font-size: 30px;
    line-height: 1.4;
    margin: 0 auto;
    padding: 10px 0 20px;
  }
  #point .point__item-title .--sm {
    font-size: 30px;
    line-height: 1.4;
  }
  #point .point__item-title .--lg {
    font-size: 48px;
    line-height: 1.4;
  }
  #point .point__item-body {
    margin-top: 60px;
  }
  #point .point__item-column {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  #point .point__item-column:not(:first-of-type) {
    margin-top: 60px;
  }
  #point .point__item-column-right {
    order: 2;
    width: 460px;
  }
  #point .point__item-column-left {
    order: 1;
    width: 500px;
  }
  #point .point__item-number {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
  #point .point__item-column-title {
    font-size: 28px;
    line-height: 1.4;
  }
  #point .point__item-text-wrap {
    padding-left: 45px;
  }
  #point .point__item-description {
    font-size: 16px;
    line-height: 1.6;
  }
  #point .point__item-img-notes {
    max-width: 1200px;
  }
  #point .notes {
    margin-top: 10px;
  }
  #point .point__example {
    margin: 30px 106px 0;
    padding: 20px 14px;
  }
  #point .point__example-title {
    font-size: 16px;
  }
  #point .point__example-title::before,
  #point .point__example-title::after {
    height: 16px;
  }
  #point .point__example-title::before {
    margin-right: 8px;
  }
  #point .point__example-title::after {
    margin-left: 8px;
  }
  #point .point__example-list-item-checked-text {
    font-size: 16px;
  }
  #point .point__example-list-item-checked-text::before {
    top: 4px;
  }
  #point .point__example-list-item-checked-text::after {
    top: 7px;
    border-width: 0 3px 3px 0;
  }
  #point .point__example-list {
    max-width: 330px;
    margin: 0 auto;
  }
  #point .point__img-item {
    margin-top: 60px;
  }
  #point .point__img-item-title {
    font-size: 35px;
    margin-bottom: 30px;
  }
  #point .point__img-item-title::before,
  #point .point__img-item-title::after {
    width: 3px;
    height: 34px;
  }
  #point .point__img-item-title::before {
    margin-right: 12px;
  }
  #point .point__img-item-title::after {
    margin-left: 12px;
  }
  #point .point__btn-wrap {
    margin-top: 60px;
  }
  #point .point__btn-item:not(:first-child) {
    margin-top: 30px;
  }
  #point .point__btn {
    justify-content: space-between;
    height: 90px;
    max-width: 680px;
    margin: 0 auto;
  }
  #point .point__btn-text-wrap {
    max-width: 350px;
    margin: 0 auto;
  }
  #point .point__btn-subtitle {
    font-size: 16px;
  }
  #point .point__btn-title {
    font-size: 18px;
  }
  #point .point__btn-title .--lg {
    font-size: 26px;
  }
  #point .point__btn-img-item {
    width: 30px;
    right: 25px;
  }
  .tab .tab__content-item {
    padding: 60px 50px;
  }
  .tab .tab__btn-wrap.btn-text button {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  #point .point__contents {
    padding-right: 16px;
    padding-left: 16px;
  }
  .tab .tab__btn-wrap {
    gap: 9px;
  }
  .tab button {
    font-size: 30px;
    border-radius: 8px 8px 0px 0px;
    padding: 15px 0;
  }
}

/*-------------------------
    parent-voice
-------------------------*/
#slider-1.contents-inner {
  padding: 0;
}
.parent-voice__contents img {
  margin: 0; 
}
.parent-voice__title {
  text-align: center;
  margin-bottom: 6px;
}
.parent-voice__title--text {
  font-size: 24px;
  font-weight: 700;
  color: #182E4C;
}
.voice--lg {
  font-size: 20px;
}
.u-fw_bold {
  font-weight: bold;
}
.voice__list-item {
  text-align: left;
  border: 1px #CCCCCC solid;
  border-radius: 8px;
  padding: 24px 26px;
  box-shadow: 2px 4px 9px 0px #4673AF33;
}
.voice__list-item-img {
  width: 6rem;
  height: 6rem;
}
.voice__list-item-img-wrap {
  display: flex;
  gap: 13px;
  align-items: center;
  color: #182E4C;
}
.voice__list-item-name {
  font-size: 14px;
  font-weight: bold;
}
.voice__list-item-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
  color: #182E4C;
}
.voice__list-item-description {
  margin-top: 15px;
  line-height: 1.6em;
  color: #333333;
}
.parent-voice__note {
  font-size: 10px;
  text-align: left;
  padding: 0 16px;
  color: #333333;
  margin-top: 16px;
}

@media only screen and (min-width: 768px) {
  #slider-1.contents-inner {
    max-width: 1200px;
  }
  .parent-voice__contents {
    padding: 30px 0 60px;
    /* zoomの相殺ではみ出たコンテンツを隠す */
    overflow: hidden;
  }
  .parent-voice__title {
    margin-bottom: 30px;
  }
  .parent-voice__title--text {
    font-size: 40px;
  }
  .parent-voice__note {
    font-size: 12px;
    padding: 0 16px;
    margin-top: 30px;
  }
}


/*-------------------------
    teacher-introduction
-------------------------*/
#slider-2.contents-inner {
  padding: 0;
}
.teacher-introduction__contents {
  padding: 16px 0 50px;
}
.teacher-introduction__contents img {
  margin: 0;
}
.teacher-introduction .contents-inner {
  position: relative;
}
.teacher-introduction__title--text {
  color: #182E4C;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.teacher-introduction__contents .teacher-introduction__title {
  font-size: 24px;
  font-weight: 700;
  color: #182E4C;
  text-align: center;
  margin-bottom: 16px;
}

.c-bg-blue {
  font-size: 14px;
  background-color: #1F3B9E;
  color: #fff;
  padding: 2.5px 8px;
  border-radius: 3px;
  font-weight: bold;
}
.teacher--lg {
  font-size: 28px;
}
.teacher__list-item {
  background-color: #fff;
  text-align: left;
  padding: 20px 12px;
  box-shadow: 2px 4px 9px 0px #A3A3A333;
  border-radius: 8px;
  color: #333333;
  border: 1px #CCCCCC solid;
}
.teacher__list-item-img {
  width: 7.5rem;
  height: 7.5rem;
}
.teacher__list-item-img-wrap {
  display: block;
}
.teacher__list-item-caption {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
}
.teacher__list-item-category {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.teacher__list-item-title {
  color: #1F3B9E;
  font-size: 20px;
  font-weight: bold;
  margin-top: 16px;
}
.teacher__list-item-name {
  font-size: 20px;
  font-weight: bold;
}
.teacher__list-item-possible,
.teacher__list-item-what {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #EEF6FD;
  gap: 10px;
  padding: 12px;
}

.teacher__list-item-possible {
  margin-top: 15px;
}

.teacher__list-item-what {
  margin-top: 15px;
}

.teacher__list-item-possible-title,
.teacher__list-item-what-title {
  width: 100%;
  border-bottom: 1px #666666 solid;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
}

.teacher__list-item-possible-description,
.teacher__list-item-what-description {
  flex: 1;
}
.teacher-introduction__note {
  text-align: left;
  margin: 16px 16px 0;
  font-size: 10px;
  color: #333333;
}


@media only screen and (min-width: 768px) {
  #slider-2.contents-inner {
    max-width: 1200px;
  }
  .teacher-introduction__contents {
    padding: 30px 0 60px;
    /* zoomの相殺ではみ出たコンテンツを隠す */
    overflow: hidden;
  }
  .teacher-introduction__contents .teacher-introduction__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .teacher-introduction__contents .teacher-introduction__title--text {
    font-size: 44px;
  }
  .c-bg-blue {
    font-size: 16px;
    background-color: #1F3B9E;
    color: #fff;
    padding: 2.5px 8px;
    border-radius: 3px;
    font-weight: bold;
  }
  .teacher--lg {
    font-size: 28px;
  }
  .teacher__list-item {
    background-color: #fff;
    text-align: left;
    padding: 40px;
  }
  .teacher__list-item-caption {
    display: block;
    margin: 0;
  }
  .teacher__list-item-img {
    width: 120px;
    height: 120px;
  }
  .teacher__list-item-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
  .teacher__list-item-title {
    color: #1F3B9E;
    font-size: 20px;
    font-weight: bold;
    margin-top: 16px;
  }
  .teacher__list-item-name {
    font-size: 20px;
    font-weight: bold;
  }
  .teacher__list-item-possible,
  .teacher__list-item-what {
    display: flex;
    flex-direction: row; 
    align-items: stretch;
    padding: 20px 30px;
    background-color: #EEF6FD;
    gap: 30px;
  }
  .teacher__list-item-possible {
    margin-top: 30px;
  }
  .teacher__list-item-what {
    margin-top: 15px;
  }
  .teacher__list-item-possible-title,
  .teacher__list-item-what-title {
    width: 135px;
    border-bottom: none;
    border-right: 1px #666666 solid;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
  }
  .teacher__list-item-possible-description,
  .teacher__list-item-what-description {
    flex: 1;
  }
  .teacher-introduction__note {
    text-align: left;
    margin-top: 30px;
  }
}

/* ========================================
    splide
========================================= */
.splide__track{
  padding: 10px;
  box-sizing: border-box;
}
.splide__pagination__page {
  opacity: 1;
}
.splide__pagination {
  bottom: 4.4em;
}
.splide__pagination__page.is-active {
  background: #224087;
}

/* splide__arrow */
.splide__arrow {
  background: #0014284d;
  border-radius: 0;
  height: 41px;
  opacity: 1;
  width: 41px;
}
.splide__arrow svg {
  fill: #fff;
  height: 18px;
  width: 18px;
}
.splide__arrow--next {
  right: 0.4em;
}
.splide__arrow--prev {
  left: 0.4em;
}

/* progress-bar */
.splide__progress {
  background-color: #CCCCCC;
  margin: 6px 16px 0;
  overflow: hidden;
}

.splide__progress__slide {
  background: #1F3B9E;
  height: 5px;
  transition: width 400ms ease;
  width: 0;
}

@media only screen and (min-width: 769px) {
  /* zoomの相殺 */
  .parent-voice__contents .splide__track {
    transform: scale(1.1111);
    transform-origin: center center;
    padding: 30px 0 10px;
  }
  .teacher-introduction__contents .splide__track {
    transform: scale(1.1111);
    transform-origin: center center;
    padding: 30px 0 10px;
  }
}

@media only screen and (min-width: 768px) {
  .splide__progress {
    margin: 54px 16px 0;
  }
  .splide__track{
    padding-bottom: 12px;
  }
  .splide__pagination__page {
    opacity: 1;
  }
  .splide__pagination {
    bottom: 2em;
  }
  .splide__pagination__page.is-active {
    background: #224087;
  }

  /* splide__arrow */
  .splide__arrow {
    background: #0014284d;
    border-radius: 0;
    height: 60px;
    opacity: 0.7;
    width: 60px;
  }
  .splide__arrow svg {
    fill: #fff;
    height: 23px;
    width: 23px;
  }
  .splide__arrow--next {
    right: -1.8em;
  }
  .splide__arrow--prev {
    left: -1.8em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  /* splide__arrow */
  .splide__arrow--next {
    right: 1.6em;
  }
  .splide__arrow--prev {
    left: 1.6em;
  }
}



/*-------------------------
    study-support
-------------------------*/
#study-support .study-support__contents {
  position: relative;
  background: #fff;
  border-radius: 5px;
  padding: 50px 16px;
}
#study-support .study-support__contents-sub-title {
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 14px;
  border: 1.7px solid #182e4c;
  border-radius: 7px;
  background-color: #ffffff;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #182e4c;
  white-space: nowrap;
  font-weight: bold;
}
#study-support .study-support__contents-sub-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 13px 10px 0 10px;
  border-color: #182e4c transparent transparent;
  translate: -50% 100%;
}
#study-support .study-support__contents-sub-title::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 50%;
  border-style: solid;
  border-width: 12.1px 9.5px 0 9.5px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
#study-support .study-support__list {
  display: block;
}
#study-support .study-support__list-item {
  text-align: center;
}
#study-support .study-support__list-item:not(:first-child) {
  border-left: none;
  border-top: 1px solid #182e4c;
  padding-left: 0;
  padding-top: 24px;
}
#study-support .study-support__list-item:not(:last-child) {
  padding-right: 0;
  padding-bottom: 25px;
}
#study-support .study-support__list-item-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  line-height: 1.3;
}
#study-support .study-support__list-item-subtitle-text {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  color: #182E4C;
}
#study-support .highlight {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #ffeaea;
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}
#study-support .study-support__list-item-title-text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 14px;
}
#study-support .study-support__list-item-title-label {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #e52d2c;
  background: #ffeaea;
  padding: 2px 10px;
  margin-right: 8px;
  margin-top: 5px;
}
#study-support .study-support__list-item-title-text-emp {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-right: 15px;
  text-align: left;
  color: #182E4C;
}
#study-support .study-support__list-item-description {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
  margin-top: 16px;
}
@media screen and (min-width: 1025px) {
  #study-support .study-support__contents {
    padding: 90px 20px 28px;
    margin: 0 auto;
  }
  #study-support .contents-inner {
    max-width: 1200px;
  }
  #study-support .study-support__contents-sub-title {
    font-size: 24px;
    width: 370px;
    height: 70px;
    top: -37px;
    left: 50%;
    text-align: center;
    line-height: 70px;
    padding: 0;
  }
  #study-support .study-support__list {
    display: flex;
    justify-content: space-between;
  }
  #study-support .study-support__list-item {
    width: 31%;
  }
  #study-support .study-support__list-item:not(:first-child) {
    border-top: none;
    border: none;
    padding-top: 0;
  }
  #study-support .study-support__list-item-title {
    margin-bottom: 28px;
  }
  #study-support .study-support__list-item-title-label {
    padding: 5px 12px;
    margin-right: 9px;
  }
  #study-support .study-support__list-item-title-text-emp {
    font-size: 26px;
    margin-right: 15px;
  }
  #study-support .study-support__list-item-description {
    font-size: 16px;
    margin-top: 24px;
  }
  #study-support .study-support__list-item:nth-child(2) .study-support__list-img {
    padding: 3.8px 0px;
  }
  #study-support .study-support__list-item:nth-child(3) .study-support__list-img {
    padding: 12.4px 0;
  }
  #study-support .study-support__list-item-subtitle-text {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
}

/*-------------------------
    support-system
-------------------------*/
#support-system .support-system__contents {
  background: #182e4c;
  padding: 40px 0px;
}
#support-system .contents-title {
  color: var(--text-color-secondary);
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
}
#support-system .support-system__list {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
  gap: 17px;
  margin-top: 30px;
}
#support-system .support-system__list-item {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 5px;
  padding: 13px 31px;
}
#support-system .support-system__list-img {
  max-width: 65px;
  margin: 0;
}
#support-system .support-system__list-item-text {
  color: #182E4C;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  margin-left: 35px;
  width: 70%;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  #support-system .support-system__contents {
    padding: 80px 0;
  }
  #support-system .contents-inner {
    max-width: 1200px;
  }
  #support-system .contents-title {
    font-size: 35px;
    line-height: 0.8;
  }
  #support-system .support-system__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 32px;
    margin-top: 50px;
  }
  #support-system .support-system__list-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    padding: 22px 44.5px;
  }
  #support-system .support-system__list-img {
    max-width: 112px;
  }
  #support-system .support-system__list-item-text {
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    margin-left: 38px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  #support-system .support-system__contents {
    padding-right: 16px;
    padding-left: 16px;
  }
}

/*-------------------------
    flow
-------------------------*/
#flow .flow__contents {
  padding: 40px 0;
}
#flow .contents-title {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  border-radius: 12px 12px 0px 0px;
  padding: 17px 0;
}
#flow .flow__contents-body {
  border: 2px solid var(--primary-color);
  border-radius: 0 0 12px 12px;
  padding: 30px 20px;
}
#flow .flow__item:not(:first-child) {
  padding-top: 30px;
}
#flow .flow__item:not(:last-child) {
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 30px;
}
#flow .flow__item-title {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
#flow .flow__item-title span {
  display: inline-block;
  background: #fee302;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  padding: 6px 12px;
  border-radius: 4px;
  line-height: 1;
}
#flow .flow__item-description {
  color: #333333;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  margin-top: 12px;
}
#flow .flow__item-notes {
  color: #666666;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  margin-top: 5px;
}
/* flow__cta */
#flow .flow__cta-wrap {
  margin-top: 12px;
}

@media screen and (min-width: 768px) {
  #flow .flow__contents {
    padding: 60px 0;
  }
  #flow .contents-inner {
    max-width: 700px;
  }
  #flow .contents-title {
    font-size: 30px;
    padding: 20px 0;
  }
  #flow .flow__contents-body {
    padding: 40px;
  }
  #flow .flow__item-title {
    font-size: 28px;
  }
  #flow .flow__item-title span {
    font-size: 18px;
    line-height: 1.6;
    padding: 5px 20px;
  }
  /* flow__cta */
  #flow .flow__cta-wrap {
    max-width: 540px;
    margin: 12px auto 0;
  }
}

/*-------------------------
    faq
-------------------------*/
.md-faq .faq-course {
  background-color: var(--primary-color-light);
}
.md-faq .l-container._middle {
  max-width: 1200px;
}
.md-faq a {
  color: #1d7ad2;
}
.md-faq .c-title._h2 {
  color: #182E4C;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
}
.md-faq .md-toggle__btn--has-icon {
  font-weight: 700;
}
.md-faq .p-section__footer .md_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  background: #1f3b9e;
  height: auto;
  padding: 18px 60px 18px 22px;
  box-shadow: 0 4px 0 #002d6a;
}
.md-faq .p-section__footer .md_button::after {
  position: absolute;
  content: '';
  background: url(/futoukou002/img/icon-arrow-blue.webp) no-repeat center / contain;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

@media (any-hover: hover) {
  .md-faq a:hover {
    text-decoration: underline;
  }
}
@media screen and (min-width: 769px) {
  .faq-course .p-section__inner {
    padding: 80px 0;
  }
}
@media screen and (min-width: 768px) {
  .md-faq .c-title._h2 {
    font-size: 40px;
  }
  .md-faq .p-section.faq-course {
    padding: 60px 10px 85px;
  }
  .md-faq .p-section__footer {
    max-width: 580px;
    margin: 50px auto 0;
  }
  .md-faq .p-section__footer .md_button {
    font-size: 20px;
    border-radius: 16px;
    height: 64px;
    padding: 18px;
    box-shadow: 0 8px 0 #002d6a;
  }
  .md-faq .p-section__footer .md_button::after {
    right: 20px;
    width: 24px;
    height: 24px;
  }
}

/*-------------------------
    try-services
-------------------------*/
@media only screen and (min-width: 768px) {
  .md_price.try-services {
    max-width: none;
  }
}