@charset "UTF-8";
:root {
  --primary-color: #1f3b9e;
  --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: #E6003D;
  --color-blue: #0379d6;
  --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-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: 1200px;
    padding: 0;
  }
}

/*-------------------------
    タブ
-------------------------*/
.tab__content-item {
  display: none;
}
.tab__content-item.is-active {
  display: block;
}

/*-------------------------
    main-visual
-------------------------*/
.md_main-visual {
  background-color: #192963;
}
.md_main-visual--text {
  color: #ffff;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.4;
  padding: 24px 20px;
}
.md_main-visual > div {
  flex-direction: column;
  align-items: flex-start;
}

.md_main-visual .contents-inner {
  padding: 0;
}

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

@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);
    padding: 24px 0;
  }
  .md_main-visual > div {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}


/*-------------------------
    trouble
-------------------------*/
#trouble .trouble__contents {
  background: var(--primary-color-light);
  padding: 40px 0;
}
#trouble .contents-title {
  color: var(--text-color);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  text-align: center;
}
#trouble .trouble__contents-body {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
#trouble .trouble__item {
  flex: 1;
  background: var(--background-color);
  border-radius: 16px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#trouble .trouble__item:nth-child(1) {
  position: relative;
  gap: 6px;
}
#trouble .trouble__item:nth-child(2) {
  gap: 7px;
  padding: 34px 20px 28px;
}
#trouble .trouble__item:nth-child(1)::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  width: 25px;
  aspect-ratio: 25/15;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#trouble .trouble__item-img {
  width: 100%;
  height: auto;
}
#trouble .trouble__item-description {
  font-size: 14px;
  line-height: 1.6;
}
#trouble .trouble__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  color: var(--primary-color);
}

@media screen and (min-width: 1025px) {
  #trouble .trouble__contents {
    padding: 80px 0;
  }
  #trouble .contents-title {
    font-size: 40px;
  }
  #trouble .trouble__contents-body {
    flex-direction: row;
    gap: 72px;
  }
  #trouble .trouble__item {
    padding: 32px 40px;
  }
  #trouble .trouble__item:nth-child(1)::after {
    top: 50%;
    right: -9%;
    bottom: unset;
    left: unset;
    transform: translateY(-50%);
    width: 21px;
    aspect-ratio: 21/35;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
  #trouble .trouble__item:nth-child(1) {
    gap: 28px;
  }
  #trouble .trouble__item:nth-child(2) {
    gap: 12px;
    padding: 32px 40px;
  }
  #trouble .trouble__item:nth-child(2) .trouble__item-img {
    max-width: 400px;
  }
  #trouble .trouble__item-description {
    font-size: 18px;

  }
  #trouble .trouble__item-title {
    font-size: 28px;
    line-height: 1.4;
  }
}

/*-------------------------
    reason
-------------------------*/
#reason .reason__contents {
  position: relative;
}
#reason .reason__contents-title {
  text-align: center;
  background-color: var(--primary-color);
  padding: 21px 0 21px;
  color: #fff;
  position: relative;
}
#reason .reason__contents-title h2 {
  font-size: 20px;
  line-height: 1;
}
#reason .u-fs-M {
  font-size: 26px;
}
#reason .u-fs-L {
  font-size: 38.93px;
}
#reason .reason__contents-title::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  width: 23px;
  height: 10px;
  background: var(--primary-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#reason .reason__contents-body {
  margin: 29px 0 35px;
}
#reason .reason__item {
  display: flex;
  flex-direction: column;
}
#reason .reason__item.point01 {
  margin-bottom: 18px;
}
#reason .reason__item.point02{
  margin-top: 60px;
}
#reason .reason__item.point03 {
  margin-top: 47px;
}
#reason .reason__item-text_header {
  display: flex;
}
#reason .reason__item-number {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #0379D6;
  color: #ffffff;
  border-radius: 50%;
  line-height: 35px;
  text-align: center;
  font-weight: bold;
  font-size: 21px;
  margin-right: 5px;
}
#reason .reason__item-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
#reason .reason__item-title {
  flex: 1;
  line-height: 1.4;
}
#reason .reason__item-title p {
  font-size: 18px;
  font-weight: bold;
}
#reason .reason__item-title h3 {
  font-size: 20px;
  color: var(--primary-color);
  font-feature-settings: "palt";
}
#reason .reason__item-description {
  font-size: 14px;
  font-feature-settings: "palt";
  line-height: 1.5;
}
#reason .reason__item-description .reason__item-note {
  margin-top: 16px;
  font-size: 10px;
}
#reason .reason__item-point {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: var(--primary-color);
  background-color: #EEF6FD;
  padding: 10px 0;
  line-height: 1.4;
  margin-top: 21px;
}
#reason .reason__item-img-note {
  font-size: 10px;
  text-align: right;
  margin-top: 4px;
}
/* schedule */

#reason .schedule .tab__btn-wrap {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
#reason .schedule .tab__btn-wrap button {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 72px;
  border-style: solid;
  border-width: 2px 2px 0;
  cursor: pointer;
}
#reason .schedule .tab__btn-wrap button.active {
  height: 74px;
  transform: translateY(2px);
}
#reason .schedule .tab__btn-wrap button:nth-of-type(1) {
  border-color: #ff9312;
}
#reason .schedule .tab__btn-wrap button:nth-of-type(2) {
  border-color: #97D000;
}
#reason .schedule .tab__btn-wrap button:nth-of-type(3) {
  border-color: #27B5F4;
}
#reason .schedule .tab__links-head {
  color: var(--text-color-secondary);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  padding: 5px 10px;
}
#reason .schedule .tab__btn-wrap button:nth-of-type(1) .tab__links-head {
  background: #ff9312;
}
#reason .schedule .tab__btn-wrap button:nth-of-type(2) .tab__links-head {
  background: #97D000;
}
#reason .schedule .tab__btn-wrap button:nth-of-type(3) .tab__links-head {
  background: #27B5F4;
}
#reason .schedule .tab__links-body {
  flex: 1;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  padding: 7px;
  background: var(--background-color);
}
#reason .schedule .tab__content-item {
  border: 2px solid;
  padding: 20px 18px 23px;
}
#reason .schedule .tab__content-item:nth-of-type(1) {
  border-color: #ff9312;
}
#reason .schedule .tab__content-item:nth-of-type(2) {
  border-color: #97D000;
}
#reason .schedule .tab__content-item:nth-of-type(3) {
  border-color: #27B5F4;
}
#reason .schedule .tab__content-item-head {
  display: flex;
  gap: 7px;
}
#reason .schedule .tab__content-item-head-img {
  flex: 0 0 auto;
  width: 80px;
  aspect-ratio: 1/1;
}
#reason .schedule .tab__content-item-head-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 10px 2px;
  padding-bottom: 3px;
  margin-bottom: 7px;
}
#reason .schedule .tab__content-item:nth-of-type(1) .tab__content-item-head-title {
  background-image: linear-gradient(to right, #ff9312 6px, transparent 4px);
}
#reason .schedule .tab__content-item:nth-of-type(2) .tab__content-item-head-title {
  background-image: linear-gradient(to right, #97D000 6px, transparent 4px);
}
#reason .schedule .tab__content-item:nth-of-type(3) .tab__content-item-head-title {
  background-image: linear-gradient(to right, #27B5F4 6px, transparent 4px);
}
#reason .schedule .tab__content-item-head-description {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
}
#reason .schedule .tab__content-item-body {
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  #reason .reason__contents-title {
    padding: 45px 0 42px;
  }
  #reason .reason__contents-title h2 {
    font-size: 37px;
    line-height: 1;
  }
  #reason .u-fs-M {
    font-size: 53px;
  }
  #reason .u-fs-L {
    font-size: 79.58px;
  }
  #reason .reason__contents-title::before {
    bottom: -14px;
    width: 37px;
    height: 15px;
  }
  #reason .reason__contents-body {
    margin: 95px 0 100px;
  }
  #reason .reason__item {
    flex-direction: row;
  }
  #reason .reason__item.point01 {
    margin-bottom: 47px;
  }
  #reason .reason__item.point02,
  #reason .reason__item.point03 {
    margin-top: 80px;
  }
  #reason .reason__item-number {
  width: 72px;
  height: 72px;
  line-height: 69px;
  font-size: 43px;
  margin-right: 28px;
  }
  #reason .reason__item-text_wrap {
    margin-left: 100px;
  }
  #reason .reason__item-text {
    gap: 24px;
    margin-right: 40px;
  }
  #reason .reason__item-title p {
    font-size: 24px;
  }
  #reason .reason__item-title h3 {
    font-size: 28px;
  }
  #reason .reason__item-description {
    font-size: 18px;
  }
  #reason .reason__item-description .reason__item-note {
    margin-top: 16px;
    font-size: 10px;
  }
  #reason .reason__item-point {
    font-size: 22px;
    padding: 28px 0;
    margin-top: 24px;
  }
  #reason .reason__item-img {
    max-width: 460px;
    flex: 1;
  }
  #reason .reason__item-img-note {
    font-size: 10px;
  }
  /* schedule */
  #reason .schedule .tab {
    max-width: 920px;
    margin: 0 auto;
  }
  #reason .schedule .tab__btn-wrap {
    gap: 15px;
  }
  #reason .schedule .tab__btn-wrap button {
    height: 73px;
  }
  #reason .schedule .tab__btn-wrap button.active {
    height: 75px;
  }
  #reason .schedule .tab__links-head {
    font-size: 14px;
    padding: 3.22px 4.78px;
  }
  #reason .schedule .tab__links-body {
    font-size: 18px;
    padding: 10px;
  }
  #reason .schedule .tab__content-item {
    padding: 33px 40px;
  }
  #reason .schedule .tab__content-item .contents-column {
    display: flex;
    gap: 43px;
  }
  #reason .schedule .tab__content-item-head {
    align-items: center;
    gap: 20px;
  }
  #reason .schedule .tab__content-item-head-img {
    width: 135px;
  }
  #reason .schedule .tab__content-item-head-title {
    font-size: 26px;
  }
  #reason .schedule .tab__content-item-head-description {
    font-size: 18px;
    line-height: 1.5;
  }
  #reason .schedule .tab__content-item-body {
    margin-top: 0;
    flex: 0 0 340px;
  }

}

/*-------------------------
    learning-environment
-------------------------*/
#learning-environment .learning-environment__contents {
  background: var(--primary-color);
  padding: 37px 0 56px;
}
#learning-environment .learning-environment__contents-title {
  font-size: 26px;
  color: #fff;
  text-align: center;
  margin-bottom: 27px;
}
#learning-environment .learning-environment__item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 24px 20px;
}
#learning-environment .learning-environment__item:first-child {
  margin-bottom: 31px;
}
#learning-environment .learning-environment__item-wrap {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
#learning-environment .learning-environment__item-title {
  text-align: center;
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 16px;
  line-height: 1.4;
}

#learning-environment .learning-environment__item-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#learning-environment .learning-environment__item-description {
  font-size: 14px;
  line-height: 1.6;
  font-feature-settings: "palt";

}

#learning-environment .learning-environment__list {
  background: #EEF6FD;
  padding: 13px 10px;
  margin-top: 14px;
  order: 2;
}

#learning-environment .learning-environment__list-item {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
  line-height: 1.4;
}

#learning-environment .learning-environment__list-item:last-child {
  margin-bottom: 0;
}

#learning-environment .learning-environment__list-item-num {
  font-size: 14.63px;
  font-weight: bold;
  color: var(--primary-color);
  margin-right: 5.49px;
}

#learning-environment .learning-environment__list-item-content {
  position: relative;
  padding-left: 9.15px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  letter-spacing: 0;
}

#learning-environment .learning-environment__list-item-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #1e40af;
}

#learning-environment .learning-environment__item-note {
  font-size: 9.15px;
  margin-top: 4px;
  order: 1;
}

#learning-environment .learning-environment__item-text-unit:first-child {
  margin-bottom: 17px;
}

#learning-environment .learning-environment__item-lead {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  #learning-environment .learning-environment__contents {
    padding: 72px 0 125px;
  }
  #learning-environment .learning-environment__contents-title {
    font-size: 40px;
    margin-bottom: 34px;
  }
  #learning-environment .learning-environment__item {
    padding: 37px 100px 60px ;
    border-radius: 20px;
  }
  #learning-environment .learning-environment__item:first-child {
    margin-bottom: 40px;
  }
  #learning-environment .learning-environment__item-wrap {
    flex-direction: row;
    gap: 60px;
  }
  #learning-environment .learning-environment__item-title {
    font-size: 32px;
    margin-bottom: 37px;
  }
  #learning-environment .learning-environment__item-img {
    max-width: 450px;
    flex: 1;
  }
  #learning-environment .learning-environment__item-description {
    font-size: 18px;
  }
  #learning-environment .learning-environment__list {
    padding: 16px;
    margin-top: 20px;
    order: 1;
  }
  #learning-environment .learning-environment__list-item {
    margin-bottom: 7px;
  }
  #learning-environment .learning-environment__list-item:last-child {
    margin-bottom: 0;
  }
  #learning-environment .learning-environment__list-item-num {
    font-size: 20px;
    margin-right: 10px;
  }
  #learning-environment .learning-environment__list-item-content {
    padding-left: 10px;
    font-size: 16px;
  }
  #learning-environment .learning-environment__item-note {
    order: 2;
    font-size: 10px;
    margin-top: 20px;
  }
  #learning-environment .learning-environment__item-text-unit:first-child {
    margin-bottom: 22px;
  }
  #learning-environment .learning-environment__item-lead {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
/*-------------------------
    support
-------------------------*/
#support .support__contents {
  position: relative;
  padding: 50px 0;
  background: #EEF6FD;
}
#support .support__contents-sub-title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color-light);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  border-radius: 7px;
  padding: 10px 32px;
  white-space: nowrap;
}
#support .support__contents-sub-title::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 26px;
  height: 16px;
  background: var(--accent-color-light);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#support .support__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#support .support__list-img {
  max-width: 343px;
}
#support .support__list-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#support .support__list-item:not(:last-child) {
  border-bottom: 1px solid #182e4c;
  padding-bottom: 11px;
}
#support .support__list-item-title {
  flex-direction: column;
}
#support .support__list-item-subtitle-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}
#support .support__list-item-title-text {
  text-align: center;
  margin-top: 9px;
}
#support .support__list-item-title-text-emp {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
#support .support__list-item-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  font-feature-settings: "palt";
}
#support .support__contents-wht {
  text-align: center;
  padding: 33px 0;
}
#support .support__contents-wht-title {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
  background: #CDF0FF;
  padding: 8px 11px;
  display: inline-block;
  border-radius: 8px;
  margin-bottom: 20px;
  letter-spacing: -0.7px;
}
#support .support__contents-wht-title::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 17px;
  height: 10px;
  background: #CDF0FF;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#support .support__contents-wht-subtitle {
  font-size: 30px;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 17px;
  line-height: 1.4;
}
#support .support__contents-wht-description {
  font-size: 14px;
  font-weight: bold;
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  #support .contents-inner {
    max-width: 1000px;
  }
  #support .support__contents {
    padding: 80px 0 47px;
  }
  #support .support__contents-sub-title {
    top: -41px;
    font-size: 32px;
    border-radius: 8px;
    padding: 15px 89px;
  }
  #support .support__contents-sub-title::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    width: 17px;
    height: 16px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  #support .support__list {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
  }
  #support .support__list-item {
    gap: 20px;
  }
  #support .support__list-item:nth-of-type(1) {
    border-right: 1px solid #182e4c;
    padding-right: 40px;
  }
  #support .support__list-item:nth-of-type(2) {
    padding-left: 40px;
  }
  #support .support__list-item:nth-of-type(3) {
    grid-column: 1 / -1;
    grid-row: 2;
    border-top: 1px solid #182e4c;
    padding-top: 40px;
  }
  #support .support__list-item:not(:last-child) {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 40px;
  }
  #support .support__list-item-title {
    flex-direction: column;
  }
  #support .support__list-item-subtitle-text {
    font-size: 18px;
  }
  #support .support__list-item-title-text-emp {
    font-size: 32px;
  }
  #support .support__list-item-description {
    flex: 1;
    font-size: 18px;
  }
  #support .support__contents-wht {
    padding: 42px 0;
  }
  #support .support__contents-wht-title {
    font-size: 28px;
    padding: 12px 98px;
    border-radius: 10px;
    margin-bottom: 55px;
  }
  #support .support__contents-wht-title::before {
    left: 50%;
    bottom: -19px;
    width: 32px;
    height: 19.2px;
  }
  #support .support__contents-wht-subtitle {
    font-size: 33px;
    margin-bottom: 30px;
  }
  #support .support__contents-wht-img {
    max-width: 358px;
  }
  #support .support__contents-wht-description {
    font-size: 20px;
    margin-top: 24px;
  }
}


/*-------------------------
    voice
-------------------------*/
#voice .voice__contents {
  padding: 42px 0 21px;
}
#voice .voice__contents .contents-inner {
  position: relative;
  padding: 0;
}
#voice .contents-title {
  position: relative;
  display: flex;
  justify-content: center;
}
#voice .contents-title h2 {
  color: var(--primary-color);
  font-size: 26px;
  line-height: 1.2;
  border-bottom: 2px solid #1f3b9e;
  padding: 0 62.5px 16px;
  display: inline-block;
}
#voice .contents-title .--color-primary {
  font-size: 30px;
}
#voice .contents-title h2::before,
#voice .contents-title h2::after {
  content: '';
  position: absolute;
  bottom: -24%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  border-style: solid;
  border-width: 14px 7px 0 7px;
}
#voice .contents-title h2::before {
  border-color: #1f3b9e transparent transparent transparent;
}
#voice .contents-title h2::after {
  bottom: -18%;
  border-color: #fff transparent transparent transparent;
}
#voice .voice__list {
  display: flex;
}
#voice .voice__list-item {
  background: #fff;
  border-radius: 8px;
  padding: 55px 20px 51px;
  box-sizing: border-box;
  height: auto;
  border: 1.15px solid #1f3b9e;
  border-radius: 20px;
  position: relative;
}
#voice .voice__list-item-img {
  position: absolute;
  width: 100px;
  height: 100px;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
#voice .voice__list-item-head {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
  text-align: center;
  font-weight: bold;
  color: var(--primary-color);
}
#voice .voice__list-item-name {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.3;
}
#voice .voice__list-item-name .--lg {
  font-size: 20px;
  line-height: 1.2;
}
#voice .voice__list-item-rabel {
  font-size: 14px;
  line-height: 1.4;
}
#voice .voice__list-item-title {
  font-size: 16px;
  line-height: 1.4;
}
#voice .voice__list-item-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  margin-top: 11px;
  letter-spacing: 0.9px;
}
#voice .voice__notes {
  display: block;
  color: #333333;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  text-align: left;
  margin: 25px 20px 0;
}

@media screen and (min-width: 1025px) {
  #voice .voice__contents {
    overflow: hidden;
    padding: 80px 0 40px;
  }
  #voice .contents-inner {
    max-width: 1200px;
  }
  #voice .contents-title {
    font-size: 28px;
  }
  #voice .contents-title .--color-primary {
    font-size: 48px;
  }
  #voice .contents-title h2 {
    font-size: 41px;
    border-bottom: 4px solid #1f3b9e;
    padding: 0 24.5px 16px;
  }
  #voice .contents-title h2::before,
  #voice .contents-title h2::after {
    bottom: -15%;
    border-width: 11px 10px 0 10px;
  }
  #voice .contents-title h2::after {
    bottom: -6%;
  }
  #voice .voice__list {
    display: flex;
  }
  #voice .voice__notes {
    margin: 40px 10px 0;
  }
  #voice .voice__list-item {
    border-radius: 10px;
    padding: 68px 25px 32px;
  }
  #voice .voice__list-item-img {
    width: 120px;
    height: 120px;
    top: -70px;
  }
  #voice .voice__list-item-head {
    gap: 10px;
  }
  #voice .voice__list-item-name {
    font-size: 18.46px;
  }
  #voice .voice__list-item-name .--lg {
    font-size: 24px;
    line-height: 1.2;
  }
  #voice .voice__list-item-rabel {
    font-size: 18px;
    line-height: 1.4;
  }
  #voice .voice__list-item-title {
    font-size: 20px;
    line-height: 1.4;
  }
  #voice .voice__list-item-description {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 11px;
    letter-spacing: 0.3px;
  }
  #voice .voice__notes {
    font-size: 10px;
    line-height: 1.5;
    margin: 20px 20px 0;
  }
}
/*-------------------------
    splide
-------------------------*/
#voice .splide__track {
  padding-top: 93px;
  padding-bottom: 10px;
}
.splide__pagination__page {
  opacity: 1;
}
.splide__pagination {
  bottom: 1.5em;
}
.splide__pagination__page.is-active {
  background: #224087;
}
/* splide__arrow */
.splide__arrow {
  background: #0014284d;
  border-radius: 0;
  height: 41px;
  opacity: 0.7;
  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: #e6e6e6;
  margin: 13px 20px 0;
}
.splide__progress__slide {
  background: #1f3b9e;
  height: 5px;
  transition: width 0.4s ease;
  width: 0;
}
@media screen and (min-width: 1025px) {
  #voice .splide__slide {
    width: calc(33.3333% - 21px) !important;
  }
  #voice .splide__track {
    margin: 0;
    padding-top: 117px;
    padding-bottom: 0;
  }
  .splide__progress {
    margin: 20px 20px 0;
  }
  .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: 52px;
    opacity: 0.7;
    width: 52px;
    top: 55%;
    transform: translateY(-55%);
  }
  .splide__arrow svg {
    fill: #fff;
    height: 18px;
    width: 18px;
  }
  .splide__arrow--next {
    right: 1.4em;
  }
  .splide__arrow--prev {
    left: 1.4em;
  }
  .splide__progress {
    margin: 40px 10px 0;
  }
}


/*-------------------------
    map
-------------------------*/
#map .map__contents {
  padding: 20px 0 0;
}
#map .contents-title {
  color: #1f3b9e;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.4;
  text-align: center;
}
#map .contents-title .--sm {
  font-size: 30px;
  font-weight: 700;
}
#map .mapArea {
  width: min(94%, 800px);
  height: 550px;
  margin: min(15%, 65px) auto 0 auto;
  position: relative;
}
#map .mapArea .mapAll {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#map .mapArea [class^='area'] {
  background: #d0edff;
  width: 118px;
  font-size: 1.28rem;
  border-radius: 10px;
  position: absolute;
}
#map .mapArea [class^='area'] h3 {
  background: #1f377c;
  color: #fff;
  font-size: 1.28rem;
  padding: 3px 5px;
  letter-spacing: -0.5px;
  border-radius: 10px 10px 0 0;
  font-weight: normal;
}
#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 {
  width: 63px;
  top: 397px;
  left: min(74.13%, 593px);
}
#map .mapArea .area05 {
  top: 26px;
  left: min(24.25%, 194px);
}
#map .mapArea .area06 {
  top: 26px;
  left: min(7%, 56px);
}
#map .mapArea .area07 {
  width: 63px;
  top: 150px;
  left: min(24.25%, 194px);
}
#map .mapArea .area08 {
  top: 150px;
  left: min(7%, 56px);
}
#map .mapArea .mapList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px;
  box-sizing: border-box;
}
#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 {
  text-decoration: none;
  color: #111;
  white-space: nowrap;
}
#map .mapArea .mapList li a.ls-1 {
  letter-spacing: -1px;
}
/* link-text */
#map .link-text {
  text-align: center;
  padding-top: 0;
}
#map .link-text a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #1f3b9e;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #1f3b9e;
  padding: 0 5px 3px;
}
#map .link-text a::after {
  content: '';
  background: url('/course/club_activities/img/arrow-blue.svg') no-repeat center center / contain;
  width: 30px;
  aspect-ratio: 1/1;
}

@media (max-width: 750px) {
  #map .map__contents {
    padding: 40px 0;
  }
  #map .contents-title {
    color: #1f3b9e;
    font-weight: 900;
    font-size: 24px;
    line-height: 1.4;
    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'] {
    width: 19.6%;
    font-size: 2.13vw;
    border-radius: 5px;
    position: absolute;
  }
  #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 {
    width: 12%;
    top: 86.5%;
    left: 59.93%;
  }
  #map .mapArea .area05 {
    top: 26px;
    left: 28.53%;
  }
  #map .mapArea .area06 {
    top: 26px;
    left: 5%;
  }
  #map .mapArea .area07 {
    width: 12%;
    top: 34%;
    left: 28.53%;
  }
  #map .mapArea .area08 {
    top: 34%;
    left: 5%;
  }
  #map .mapArea .mapList {
    padding: 8px;
  }
  /* link-text */
  #map .link-text {
    text-align: center;
    padding-top: 0;
  }
  #map .link-text a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #1f3b9e;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid #1f3b9e;
    padding: 0 5px 3px;
  }
  #map .link-text a::after {
    content: '';
    background: url('../img/arrow-blue.svg') no-repeat center center / contain;
    width: 23px;
    aspect-ratio: 1/1;
  }
}

/*-------------------------
    flow
-------------------------*/
#flow .flow__contents {
  padding: 40px 0 40px;
}
#flow .contents-title {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1f3b9e;
  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 #1f3b9e;
  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 #1f3b9e;
  padding-bottom: 30px;
}
#flow .flow__item-title {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #1f3b9e;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
#flow .flow__item-title span {
  display: inline-block;
  background: #fee302;
  color: #1f3b9e;
  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 60px;
  }
  #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 .flow__item-notes {
    font-size: 14px;
  }
  /* flow__cta */
  #flow .flow__cta-wrap {
    max-width: 540px;
    margin: 12px auto 0;
  }
}

/*-------------------------
    よくあるご質問
-------------------------*/
.faq-course .c-title {
  color: var(--primary-color);
  font-size: 30px;
  letter-spacing: 0;
}
.faq-course .icon-toggle__q {
  font-size: 20px;
  color: #0379D6;
}
.faq-course .c-toggle__btn-icon {
  font-size: 14px;
  font-weight: bold;
}
.md-toggle__btn--has-icon {
  padding-left: 4px;
}
.faq-course .p-qa-toggle__a .c-toggle__answer .icon-toggle__a {
  font-size: 20px;
  color: #0379D6;
}
.c-toggle__answer span {
  font-size: 14px;
}
.qa-arrow a {
  font-size: 14px;
}
.faq-course .p-qa-toggle__q>.c-toggle__btn {
  padding: 15px !important;
}
.faq-course dd .c-toggle__answer {
  padding-left: 15px;
  padding-right: 15px;
}
.con-toggle__add {
  background: #0379D6;
}

@media screen and (min-width: 768px) {
  .faq-course .c-title {
    font-size: 48px;
  }
  .faq-course .icon-toggle__q {
    font-size: 20px;
  }
  .faq-course .c-toggle__btn-icon {
    font-size: 20px;
  }
  .md-toggle__btn--has-icon {
    padding-left: 4px;
  }
  .faq-course .p-qa-toggle__a .c-toggle__answer .icon-toggle__a {
    font-size: 20px;
    line-height: 1.5;
  }
  .c-toggle__answer span {
    font-size: 20px;
  }
  .qa-arrow a {
    font-size: 20px;
  }
  .faq-course .p-qa-toggle__q>.c-toggle__btn {
    padding: 34px 40px !important;
  }
  .faq-course dd .c-toggle__answer {
    padding-left: 40px;
    padding-right: 40px;
  }
}