@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

@media (max-width: 540px) {
  html {
    font-size: 62.5% !important;
  }
}

body {
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif !important;
}

@media (max-width: 540px) {
  body {
    font-size: 1.6rem !important;
  }
}

@media (max-width: 540px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}

@media (min-width: 541px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}

/* -----------------------
共通CSS
----------------------- */
.container {
  max-width: 1060px;
  margin: 0 auto;
}

@media (max-width: 540px) {
  .container {
    max-width: 90%;
  }
}

main {
  width: 100%;
  margin: 0 auto;
}

img {
  width: 100%;
}

a:hover {
  cursor: pointer;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  background-color: #FFF;
  /* ---　ハンバーガーメニュー　--- */
}

header .header__pc {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 540px) {
  header .header__pc {
    display: none;
  }
}

header .header__pc .logo {
  max-width: 200px;
  margin-top: 30px;
  padding: 0 20px;
}

header .header__pc .header__inner {
  display: flex;
  justify-content: flex-end;
  height: 100px;
}

header .header__pc .header__inner li {
  width: 170px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-right: 1px solid #B4B4B4;
  margin-top: 30px;
  padding: 10px 10px 0;
  height: 40%;
}

@media (max-width: 768px) {
	header .header__pc .header__inner li {
		width: auto;
  max-width: 170px;
  }
}

@media (max-width: 540px) {
  header .header__pc .header__inner li {
    border-top: 1px solid #FFF;
    border-right: none;
    width: 80%;
    margin: 0 auto;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    padding-top: 0;
  }
}

header .header__pc .header__inner li:nth-child(4) {
  border-right: 0px;
}

@media (max-width: 540px) {
  header .header__pc .header__inner li:nth-child(4) {
    border-bottom: 1px solid #FFF;
  }
}

header .header__pc .header__inner a.contact-btn {
  background-color: #550064;
  font-size: 14px;
  color: #FFF;
  text-align: center;
  padding: 0 20px;
  width: 150px;
	    display: flex;
    align-items: center;
    line-height: 20px;
}

@media (max-width: 540px) {
  header .header__pc .header__inner a.contact-btn {
    font-size: 18px;
  }
}

header .header__pc .header__inner a.contact-btn .img {
  width: 14px;
  margin: 25px auto 6px;
}

header .header__pc .header__inner a.contact-btn span {
  font-size: 10px;
}

@media (max-width: 540px) {
  header .header__pc .header__inner a.contact-btn span {
    font-size: 13px;
    color: #C1C8F8;
  }
}

header .sp .header__nav {
  display: flex;
  background-color: #FFF;
  justify-content: space-between;
  align-items: center;
}

header .sp .header__bar {
  display: flex;
  align-items: center;
  height: 50px;
  width: 100%;
  background-color: #FFF;
  position: fixed;
  z-index: 100;
  top: 0;
}

header .sp .header__bar .logo {
  width: 120px;
  padding-left: 10px;
}

header .sp .header__bar #header__toggle {
  position: fixed;
  right: 5%;
  width: 25px;
  height: 19px;
  cursor: pointer;
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}

header .sp .header__bar #header__toggle span {
  position: absolute;
  left: 0;
  width: 25px;
  height: 1px;
  background-color: #550064;
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}

header .sp .header__bar #header__toggle span:nth-of-type(1) {
  top: 0;
}

header .sp .header__bar #header__toggle span:nth-of-type(2) {
  top: 8px;
}

header .sp .header__bar #header__toggle span:nth-of-type(3) {
  bottom: 0;
}

header .sp #header__toggle.is-open span:nth-of-type(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: #550064;
}

header .sp #header__toggle.is-open span:nth-of-type(2) {
  opacity: 0;
}

header .sp #header__toggle.is-open span:nth-of-type(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: #550064;
}

header .sp .header__inner {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background-color: #FFF;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: all .3s linear;
  display: flex;
  flex-wrap: wrap;
}

header .sp .header__inner.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}

header .sp .header__inner li {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px 20px;
  border-bottom: 1px solid #B4B4B4;
}

header .sp .header__inner li a {
	display: flex;
    justify-content: space-between;
    width: 100%;
	padding-left: 30px;
}

header .sp .header__inner li .img {
  width: 23px;
}

header .sp .header__inner li:first-child {
  margin-top: 50px;
  border-top: 1px solid #B4B4B4;
}

header .sp .header__inner li:nth-child(6) {
  width: 50%;
  font-size: 1.5rem;
  font-weight: 400;
  border-right: 1px solid #B4B4B4;
  justify-content: center;
}

header .sp .header__inner li:nth-child(7) {
  width: 50%;
  font-size: 1.5rem;
  font-weight: 400;
  justify-content: center;
}

header .sp .header__inner li:nth-child(8) {
  font-size: 1.5rem;
  font-weight: 400;
  border-bottom: 1px solid #B4B4B4;
  justify-content: center;
}

/* -----------------------
.mv
----------------------- */
.mv {
  background-image: url(../nyushi-img/mv.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 530px;
  position: relative;
  margin-top: 100px;
}

@media (max-width: 540px) {
  .mv {
    height: 250px;
    margin-top: 0px;
  }
}

.mv h1 {
  font-size: 3.7rem;
  line-height: 4.3rem;
  color: #FFF;
  font-weight: bold;
  background-color: rgba(85, 0, 100, 0.8);
  display: inline-block;
  position: absolute;
  top: 50px;
  right: 0;
  padding: 35px 60px 60px 80px;
}

@media (max-width: 540px) {
  .mv h1 {
    right: auto;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 90%;
    padding: 10px 20px 30px 20px;
  }
}

.mv h1 span {
  font-size: 1.7rem;
  font-weight: 400;
}

/* -----------------------
.fix-area
----------------------- */
.fix-area {
  position: fixed;
  z-index: 9;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #550064;
}

.fix-area .container-wide {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .fix-area .container-wide {
    width: 95%;
  }
}

@media (max-width: 540px) {
  .fix-area .container-wide {
    flex-wrap: wrap;
  }
}

.fix-area .container-wide .elab {
  width: 8%;
}

@media (max-width: 768px) {
  .fix-area .container-wide .elab {
    width: 15%;
  }
}

@media (max-width: 540px) {
  .fix-area .container-wide .elab {
    width: 21%;
  }
}

@media (max-width: 768px) {
  .fix-area .container-wide .collaboration {
    width: 55%;
  }
}

@media (max-width: 540px) {
  .fix-area .container-wide .collaboration {
    width: 75%;
  }
}

.fix-area .container-wide .collaboration__inner {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

@media (max-width: 768px) {
  .fix-area .container-wide .collaboration__inner {
    display: none;
  }
}

.fix-area .container-wide .collaboration__inner .img {
  width: 25%;
}

.fix-area .container-wide .collaboration__inner p {
  font-size: 1.3rem;
  font-weight: bold;
  color: #FFF;
}

.fix-area .container-wide .collaboration h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #FFF;
  margin-top: 8px;
}

@media (max-width: 540px) {
.fix-area .container-wide .collaboration h2 {
  font-size: 2rem;
}
}


.fix-area .container-wide .collaboration h2 span {
  font-size: 1.3rem;
  font-weight: 400;
}

.fix-area .container-wide a {
  width: 25%;
  background-color: #FFF;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10%;
  padding: 17px 0;
}

@media (max-width: 768px) {
  .fix-area .container-wide a {
    width: 30%;
  }
}

@media (max-width: 540px) {
  .fix-area .container-wide a {
    width: 100%;
    padding: 12px 0;
    margin-top: 8px;
  }
}

.fix-area .container-wide a p {
  font-size: 1.2rem;
  color: #550064;
  font-weight: bold;
}

@media (max-width: 540px) {
.fix-area .container-wide a p {
  font-size: 1.5rem;
}
}

.fix-area .container-wide a .img {
  width: 20px;
}

.sp-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 98%;
    margin: 20px auto 0;
}

.sp-menu ul li {
    width: 48%;
    padding: 8px;
    border: solid 2px #550064;
    border-radius: 8px;
	margin-top: 10px;
}

.sp-menu ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sp-menu ul li a p {
    font-size: 1.3rem;
}

.sp-menu ul li a .img {
    width: 1.6rem;
}


/* -----------------------
.nyushi
----------------------- */
.nyushi {
  margin-top: 150px;
}

@media (max-width: 540px) {
  .nyushi {
    margin-top: 30px;
  }
}

.nyushi .main__title .img {
  width: 75px;
  margin: 0 auto;
}

.nyushi .main__title h2 {
  margin-top: 20px;
  font-size: 2.7rem;
  font-weight: 900;
  text-align: center;
}

.nyushi .main__title h2 span {
  font-size: 2rem;
}

.nyushi .main__title p {
  text-align: center;
  margin-top: 30px;
  font-weight: 400;
  line-height: 1.5rem;
}

@media (max-width: 540px) {
  .nyushi .main__title p {
    line-height: 2.6rem;
  }
}

.nyushi .shikumi__title {
  display: flex;
  align-items: center;
  margin-top: 100px;
  gap: 4%;
}

@media (max-width: 540px) {
  .nyushi .shikumi__title {
    flex-wrap: wrap;
  }
}

.nyushi .shikumi__title .sub-title {
  background-color: #000;
  width: 36%;
  padding: 25px;
  height: 140px;
  font-size: 2rem;
  font-weight: 900;
  color: #FFF;
  text-align: center;
  position: relative;
}

@media (max-width: 540px) {
  .nyushi .shikumi__title .sub-title {
    width: 100%;
    height: 103px;
  }
}

.nyushi .shikumi__title .sub-title .img {
  width: 2.2rem;
  margin: 10px auto 0;
}

.nyushi .shikumi__title .sub-title::after {
  content: '';
  position: absolute;
  right: -19px;
  top: 0;
  width: 0;
  height: 0;
  border-left: 20px solid black;
  border-top: 70px solid transparent;
  border-bottom: 70px solid transparent;
}

@media (max-width: 540px) {
  .nyushi .shikumi__title .sub-title::after {
    background-image: url(../nyushi-img/bottom-arrow.png);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 20px;
    bottom: -19px;
    top: auto;
    left: 0;
    right: auto;
    border: none;
  }
}

.nyushi .shikumi__title .text-area {
  width: 60%;
}

@media (max-width: 540px) {
  .nyushi .shikumi__title .text-area {
    width: 100%;
    margin-top: 40px;
  }
}

.nyushi .shikumi__title .text-area h3 {
  font-size: 2.5rem;
  border-bottom: solid 1px #000;
  font-weight: 900;
  padding-bottom: 10px;
}

@media (max-width: 540px) {
  .nyushi .shikumi__title .text-area h3 {
    width: 100%;
    text-align: center;
  }
}

.nyushi .shikumi__title .text-area p {
  margin-top: 10px;
  font-weight: 400;
  line-height: 1.5rem;
}

@media (max-width: 540px) {
  .nyushi .shikumi__title .text-area p {
    line-height: 2.6rem;
  }
}

.nyushi .shikumi__senbatsu {
  margin-top: 60px;
  background-color: #F2EAF4;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu {
    margin-top: 40px;
  }
}

.nyushi .shikumi__senbatsu h4 {
  width: 100%;
  background-color: #550064;
  font-size: 2rem;
  font-weight: bold;
  color: #FFF;
  padding: 16px 50px;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu h4 {
    padding: 15px 20px 10px;
  }
}

.nyushi .shikumi__senbatsu h4 span {
  font-size: 1rem;
  font-weight: 400;
  border-left: solid 1px #FFF;
  padding: 10px 20px;
  margin-left: 20px;
  display: inline-block;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu h4 span {
    font-size: 1.6rem;
	  margin-left: 0px;
	  border-left: none;
  }
}

.nyushi .shikumi__senbatsu .note {
  color: #7B7B7B;
  font-size: .9rem;
}

@media (max-width: 540px) {
.nyushi .shikumi__senbatsu .note {
    font-size: 1.3rem;
    margin-top: 1rem;
    line-height: 2rem;
}
}

.nyushi .shikumi__senbatsu--schedule {
  margin: 40px auto 0;
  width: 70%;
	padding-bottom: 40px;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu--schedule {
    width: 90%;
  }
}

.nyushi .shikumi__senbatsu--schedule table {
  background-color: #FFF;
  margin: 0 auto;
  width: 100%;
}

.nyushi .shikumi__senbatsu--schedule table .table-title {
  background-color: #550064;
  font-size: 1.2rem;
  text-align: center;
  font-weight: bold;
  color: #FFF;
}

.nyushi .shikumi__senbatsu--schedule table tr.pc {
  display: revert !important;
}

.nyushi .shikumi__senbatsu--schedule table tr.sp {
  display: none;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu--schedule table tr.sp {
    display: revert !important;
  }
  .nyushi .shikumi__senbatsu--schedule table tr.pc {
    display: none !important;
  }
}

.nyushi .shikumi__senbatsu--schedule table th, .nyushi .shikumi__senbatsu--schedule table td {
  font-size: 1.2rem;
  font-weight: 400;
  padding: 10px 20px;
  vertical-align: middle;
  border: 1px solid #B4B4B4;
}

@media (max-width: 540px) {
	.nyushi .shikumi__senbatsu--schedule table th, .nyushi .shikumi__senbatsu--schedule table td {
  padding: 10px;
}
}

.nyushi .shikumi__senbatsu--schedule .note {
  text-align: right;
}

.nyushi .shikumi__senbatsu--schedule .text {
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  margin: 50px auto 0;
}

.nyushi .shikumi__senbatsu--schedule .text span {
  border-bottom: solid 1px #000;
  padding-bottom: 8px;
  display: inline-block;
  justify-content: center;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu--schedule .text span {
    text-decoration: underline;
    border: none;
    line-height: 2.6rem;
  }
}

.nyushi .shikumi__senbatsu--points {
  margin: 40px auto 0;
  width: 70%;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu--points {
    width: 90%;
  }
}

.nyushi .shikumi__senbatsu--points h5 {
  font-size: 2rem;
  color: #550064;
  font-weight: bold;
  border-bottom: solid 1px #550064;
  padding-bottom: 8px;
}

.nyushi .shikumi__senbatsu--points p {
  font-weight: 400;
  line-height: 1.5rem;
  padding-top: 8px;
}

.nyushi .shikumi__senbatsu--points p span {
  color: #550064;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu--points p {
    line-height: 2.6rem;
  }
}

.nyushi .shikumi__senbatsu--points .box {
  margin-top: 30px;
  background-color: #FFF;
  padding: 30px 50px;
  text-align: center;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu--points .box {
    padding: 20px;
    text-align: left;
  }
}

.nyushi .shikumi__senbatsu--school {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3%;
  margin-top: 60px;
  padding-bottom: 40px;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu--school {
    width: 90%;
    flex-wrap: wrap;
  }
}

.nyushi .shikumi__senbatsu--school p {
  font-weight: bold;
}

.nyushi .shikumi__senbatsu--school p span {
  color: #550064;
}

.nyushi .shikumi__senbatsu--school div {
  width: 100%;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu--school div:first-child {
    width: 100%;
  }
}

.nyushi .shikumi__senbatsu--school div {
  width: 45%;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu--school div:last-child {
    width: 100%;
    margin-top: 30px;
  }
}

.nyushi .shikumi__senbatsu--school div table {
  background-color: #FFF;
  margin: 10px auto 0;
  width: 100%;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu--school div table {
    width: 380px;
  }
}

.nyushi .shikumi__senbatsu--school div table th {
  background-color: #550064;
  color: #FFF;
}

.nyushi .shikumi__senbatsu--school div table th, .nyushi .shikumi__senbatsu--school div table td {
  font-size: 1.2rem;
  font-weight: 400;
  padding: 10px 20px;
  vertical-align: middle;
  border: 1px solid #B4B4B4;
}

.nyushi .shikumi .table-area {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3%;
  margin-top: 60px;
  padding-bottom: 40px;
}

@media (max-width: 540px) {
  .nyushi .shikumi .table-area {
    width: 700px;
  }
}

.nyushi .shikumi .table-area table {
  background-color: #FFF;
  margin: 0 auto;
  position: relative;
}

.nyushi .shikumi .table-area table th {
  background-color: #550064;
  color: #FFF;
}

.nyushi .shikumi .table-area table th, .nyushi .shikumi .table-area table td {
  font-size: 1.2rem;
  font-weight: 400;
  padding: 10px 20px;
  vertical-align: middle;
  border: 1px solid #B4B4B4;
  text-align: center;
}

@media (max-width: 540px) {
  .nyushi .shikumi .table-area table th, .nyushi .shikumi .table-area table td {
    padding: 10px;
  }
}

.nyushi .shikumi .table-area table:first-child {
  width: 68%;
}

.nyushi .shikumi .table-area table:last-child {
  width: 25%;
}

.nyushi .shikumi .table-area .arrow {
  width: 0;
  height: 0;
  border-left: 30px solid #550064;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
}

.nyushi .shikumi__senbatsu--ippan {
  background-color: #EFEFEF;
  padding: 40px 0;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu--ippan {
    padding: 20px 0;
  }
}

.nyushi .shikumi__senbatsu--ippan .box-area {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 40px auto 0;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu--ippan .box-area {
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
  }
}

.nyushi .shikumi__senbatsu--ippan .box-area .box-item {
  width: 30%;
  background-color: #FFF;
  padding: 20px 30px;
  position: relative;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu--ippan .box-area .box-item {
    width: 95%;
  }
}

.nyushi .shikumi__senbatsu--ippan .box-area .box-item .img {
  width: 45px;
  position: absolute;
  top: -15px;
  left: -15px;
}

.nyushi .shikumi__senbatsu--ippan .box-area .box-item p {
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu--ippan .box-area .box-item p {
    font-size: 2rem;
    line-height: 3.6rem;
  }
}

.nyushi .shikumi__senbatsu--ippan .box-area .box-item p span {
  font-size: 1.4rem;
  font-weight: 900;
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu--ippan .box-area .box-item p span {
    font-size: 2.4rem;
  }
}

.nyushi .shikumi__senbatsu--ippan .box-area .box-item:last-child p span {
  font-weight: bold;
}

.nyushi .shikumi__senbatsu--ippan .box-area .box-item .note {
  color: #7B7B7B;
  font-size: .9rem;
  line-height: 1rem;
  margin-top: 10px;
}

.nyushi .shikumi__senbatsu--flow {
  width: 80%;
  margin: 40px auto 0;
  /* -----------------------
            モーダル
            ----------------------- */
}

@media (max-width: 540px) {
  .nyushi .shikumi__senbatsu--flow {
    width: 90%;
  }
}

.nyushi .shikumi__senbatsu--flow .js-modal__open {
  color: #FFF;
  background-color: #550064;
  border-radius: 50px;
  font-size: 2rem;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nyushi .shikumi__senbatsu--flow .js-modal__open .img {
  width: 23px;
}

.nyushi .shikumi__senbatsu--flow .note {
  margin-top: 10px;
}

.nyushi .shikumi__senbatsu--flow .js-modal__inner {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  display: -ms-flexbox;
  flex-flow: column;
}

.nyushi .shikumi__senbatsu--flow .js-modal__inner .js-modal__close {
  color: #FFF;
  background-color: #550064;
  border-radius: 50px;
  padding: 5px 10px;
  margin-bottom: 20px;
  float: right;
}

.nyushi .shikumi__senbatsu--flow .js-modal__inner .img {
  width: 100%;
}

.nyushi .shikumi__senbatsu--flow .js-modal__inner.modal-open {
  opacity: 1;
  visibility: visible;
}

.nyushi .js-modal__overlay {
  height: 100%;
  background: #EFEFEF;
  position: fixed;
  inset: 0;
  margin: 0 auto;
  z-index: 19;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.nyushi .js-modal__overlay.modal-open {
  opacity: 1;
  visibility: visible;
}

.nyushi .message {
  margin-top: 80px;
}

@media (max-width: 540px) {
  .nyushi .message {
    margin-top: 40px;
  }
}

.nyushi .message h2 {
  color: #550064;
  font-weight: 900;
  font-size: 2.7rem;
  text-align: center;
}

.nyushi .message h2 span {
  display: inline-block;
  border-bottom: solid 1px #550064;
  padding-bottom: 8px;
}

@media (max-width: 540px) {
  .nyushi .message h2 span {
    text-decoration: underline;
    border: none;
  }
}

.nyushi .message p {
  margin-top: 30px;
  text-align: center;
  font-weight: 400;
  line-height: 1.5rem;
}

@media (max-width: 540px) {
  .nyushi .message p {
    line-height: 2.6rem;
    text-align: left;
  }
}

.nyushi .percentage {
  background-color: #EFEFEF;
  padding: 30px;
  margin-top: 40px;
}

@media (max-width: 540px) {
  .nyushi .percentage {
    padding: 20px 10px;
  }
}

.nyushi .percentage h3 {
  color: #550064;
  font-weight: 900;
  text-align: center;
  font-size: 2rem;
}

@media (max-width: 540px) {
  .nyushi .percentage h3 {
    line-height: 2.5rem;
  }
}

.nyushi .percentage .pdf-area {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 540px) {
  .nyushi .percentage .pdf-area {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.nyushi .percentage .pdf-area a {
  width: 48%;
  background-color: #550064;
  padding: 20px;
  color: #FFF;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 540px) {
  .nyushi .percentage .pdf-area a {
    width: 100%;
    padding: 15px 0;
  }
}

.nyushi .percentage .pdf-area a .img {
  width: 30px;
  padding-left: 8px;
  display: inline-block;
}

/* -----------------------
.average
----------------------- */
@media (max-width: 540px) {
  .average {
    margin-top: 30px;
  }
}

.average .average-inner {
  margin-top: 80px;
}

.average .average-inner__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.average .average-inner__title .img {
  width: 26px;
}

.average .average-inner__title h2 {
  font-size: 2rem;
  font-weight: 900;
}

.average .average-inner__table {
  margin-top: 20px;
}

.average .average-inner__table table {
  background-color: #FFF;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 540px) {
  .average .average-inner__table table {
    width: 700px;
  }
}

.average .average-inner__table table .table-title {
  background-color: #550064;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 400;
  color: #FFF;
}

.average .average-inner__table table tr.sp {
  display: revert !important;
}

.average .average-inner__table table th {
  background-color: #550064;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 400;
  color: #FFF;
}

.average .average-inner__table table th:last-child {
  background-color: #9200AC;
}

.average .average-inner__table table th, .average .average-inner__table table td {
  font-size: 1.2rem;
  font-weight: 400;
  padding: 10px 20px;
  vertical-align: middle;
  border: 1px solid #B4B4B4;
  text-align: center;
}

.average .average-inner__graph {
  margin-top: 40px;
}

.average .average-inner__graph h3 {
  font-size: 1.3rem;
  font-weight: bold;
  padding-bottom: 15px;
}

.average .average-inner__graph .img {
  width: 100%;
}

@media (max-width: 540px) {
  .average .average-inner__graph .img {
    width: 700px;
  }
}

.average .average-inner__points {
  margin-top: 40px;
}

.average .average-inner__points .text-area {
  margin-top: 40px;
}

.average .average-inner__points .text-area h3 {
  font-size: 2rem;
  color: #550064;
  font-weight: 900;
  border-bottom: 1px solid #550064;
  padding-bottom: 8px;
}

.average .average-inner__points .text-area p {
  line-height: 1.5rem;
  font-weight: 400;
  margin-top: 15px;
}

@media (max-width: 540px) {
  .average .average-inner__points .text-area p {
    line-height: 2.6rem;
  }
}

.average .average-inner__points .text-area h4 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 35px;
}

.average .average-inner__points .text-area .graph-area {
  border-top: solid 1px #000;
  margin-top: 50px;
  position: relative;
  padding: 20px 0;
}

.average .average-inner__points .text-area .graph-area h5 {
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
  padding-right: 10px;
  background-color: #FFF;
  top: -1rem;
  position: absolute;
}

@media (max-width: 540px) {
  .average .average-inner__points .text-area .graph-area h5 {
    font-size: 2rem;
  }
}

.average .average-inner__points .text-area .graph-area .point-area {
  background-color: #F0F0F0;
  margin-top: 30px;
}

.average .average-inner__points .text-area .graph-area .point-area .point-title {
  background-color: #550064;
  color: #FFF;
  padding: 10px 20px;
  display: inline-block;
  margin: 0;
}

.average .average-inner__points .text-area .graph-area .point-area .point-inner {
  padding: 10px 30px 20px;
}

/* -----------------------
.schedule
----------------------- */
@media (max-width: 540px) {
  .schedule {
    margin-top: 30px;
  }
}

.schedule .schedule-inner {
  margin-top: 80px;
}

.schedule .schedule-inner__main-title .img {
  width: 26px;
  margin: 0 auto;
}

.schedule .schedule-inner__main-title h2 {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  margin-top: 10px;
}

.schedule .schedule-inner .schedule-img {
  margin-top: 40px;
}

@media (max-width: 540px) {
  .schedule .schedule-inner .schedule-img {
    width: 700px;
  }
}

.schedule .schedule-inner__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.schedule .schedule-inner__title .img {
  width: 26px;
}

.schedule .schedule-inner__title h2 {
  font-size: 2rem;
  font-weight: 900;
}

.schedule .schedule-inner__points {
  margin-top: 30px;
  position: relative;
  margin-bottom: 70px;
}

.schedule .schedule-inner__points h3 {
  background-color: #550064;
  padding: 12px 20px;
  color: #FFF;
  font-size: 2rem;
  font-weight: bold;
}

.schedule .schedule-inner__points .text-area {
  display: flex;
  justify-content: space-between;
  background-color: #F0F0F0;
  padding: 20px;
}

@media (max-width: 540px) {
  .schedule .schedule-inner__points .text-area {
    flex-wrap: wrap;
    align-items: center;
  }
}

.schedule .schedule-inner__points .text-area .img {
  width: 30%;
}

@media (max-width: 540px) {
  .schedule .schedule-inner__points .text-area .img {
    width: 80%;
    margin: 0 auto;
  }
}

.schedule .schedule-inner__points .text-area .text {
  width: 67%;
}

@media (max-width: 540px) {
  .schedule .schedule-inner__points .text-area .text {
    width: 100%;
    margin-top: 20px;
  }
}

.schedule .schedule-inner__points .text-area .text h4 {
  font-size: 1.2rem;
  font-weight: bold;
}

@media (max-width: 540px) {
  .schedule .schedule-inner__points .text-area .text h4 {
    font-size: 2rem;
  }
}

.schedule .schedule-inner__points .text-area .text p {
  line-height: 1.5rem;
  margin-top: 20px;
}

@media (max-width: 540px) {
  .schedule .schedule-inner__points .text-area .text p {
    line-height: 2.6rem;
  }
}

.schedule .schedule-inner__points::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 30px solid #550064;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
}

.schedule .schedule-inner__points:last-child::after {
  content: none;
}

/* -----------------------
.course
----------------------- */
@media (max-width: 540px) {
  .course {
    margin-top: 30px;
  }
}

.course .course-inner {
  margin-top: 80px;
}

.course .course-inner__main-title h2 {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  margin-top: 10px;
}

.course .course-inner__main-title p {
  line-height: 1.5rem;
  text-align: center;
  font-weight: 400;
  margin-top: 30px;
}

@media (max-width: 540px) {
  .course .course-inner__main-title p {
    line-height: 2.6rem;
  }
}

.course .course-inner__title .img {
  width: 23px;
  margin: 0 auto;
}

.course .course-inner__title h2 {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  margin-top: 10px;
}

.course .course-inner__box {
  background-color: #F2EAF4;
  padding: 40px;
  margin-top: 40px;
}

@media (max-width: 540px) {
  .course .course-inner__box {
    padding: 20px;
  }
}

.course .course-inner__points {
  position: relative;
  margin-bottom: 70px;
}

.course .course-inner__points h3 {
  background-color: #550064;
  padding: 20px 24px;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.course .course-inner__points h3 span {
  border-right: solid 1px #FFF;
  padding-right: 10px;
  margin-right: 10px;
}

@media (max-width: 540px) {
  .course .course-inner__points h3 span {
    border-right: none;
    border-bottom: 1px solid #FFF;
    display: block;
    padding-bottom: 10px;
  }
}

.course .course-inner__points p {
  line-height: 1.5rem;
}

@media (max-width: 540px) {
  .course .course-inner__points p {
    line-height: 2.6rem;
  }
}

.course .course-inner__points a {
  color: #004DD7;
  text-decoration: underline;
  word-break: break-all;
}

.course .course-inner__points table {
  background-color: #FFF;
  margin: 30px auto 0;
  width: 100%;
}

@media (max-width: 540px) {
  .course .course-inner__points table {
    width: 700px;
  }
}

.course .course-inner__points table th {
  background-color: #000;
  color: #FFF;
}

.course .course-inner__points table th, .course .course-inner__points table td {
  font-weight: 400;
  padding: 10px 20px;
  vertical-align: middle;
  border: 1px solid #B4B4B4;
}

.course .course-inner__points table a {
  margin-right: 15px;
  margin-bottom: 10px;
  display: inline-block;
}

.course .course-inner__points .table-1 th:first-child {
  width: 35%;
}

.course .course-inner__points .table-1 th:nth-child(2) {
  width: 18%;
}

.course .course-inner__points .table-2 th:first-child {
  width: 17%;
}

.course .course-inner__points .table-2 th:nth-child(2) {
  width: 38%;
}

.course .course-inner__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFF;
  padding: 20px 30px;
}

@media (max-width: 540px) {
  .course .course-inner__summary {
    flex-wrap: wrap;
  }
}

.course .course-inner__summary .img {
  width: 30%;
}

@media (max-width: 540px) {
  .course .course-inner__summary .img {
    width: 90%;
    margin: 0 auto 20px;
  }
}

.course .course-inner__summary p {
  width: 67%;
  line-height: 1.5rem;
}

@media (max-width: 540px) {
  .course .course-inner__summary p {
    width: 100%;
    line-height: 2.6rem;
  }
}

.course .course-inner__item {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

@media (max-width: 540px) {
  .course .course-inner__item {
    display: block;
  }
}

.course .course-inner__item .img {
  width: 26%;
}

@media (max-width: 540px) {
  .course .course-inner__item .img {
    width: 50%;
    display: inline-block;
    padding: 0 10px 10px 0;
    float: left;
  }
}

.course .course-inner__item .text {
  width: 72%;
}

@media (max-width: 540px) {
  .course .course-inner__item .text {
    width: 100%;
    margin-top: 20px;
  }
}

.course .course-inner__item .text h4 {
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: solid 1px #550064;
  padding-bottom: 10px;
}

@media (max-width: 540px) {
  .course .course-inner__item .text h4 {
    font-size: 2rem;
    margin-left: 50%;
  }
}

.course .course-inner__item .text p {
  line-height: 1.5rem;
  margin-top: 20px;
}

@media (max-width: 540px) {
  .course .course-inner__item .text p {
    line-height: 2.6rem;
  }
}

.course .course-inner ul li {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding: 30px 20px;
  border-left: solid 15px #550064;
}

@media (max-width: 540px) {
  .course .course-inner ul li {
    flex-wrap: wrap;
    align-items: center;
  }
}

.course .course-inner ul li:nth-child(1), .course .course-inner ul li:nth-child(3) {
  background-color: #F0F0F0;
}

.course .course-inner ul li:nth-child(2), .course .course-inner ul li:nth-child(4) {
  background-color: #F2EAF4;
}

.course .course-inner ul li:nth-child(1), .course .course-inner ul li:nth-child(5) {
  background-color: #F0F0F0;
}

.course .course-inner ul li:nth-child(2), .course .course-inner ul li:nth-child(6) {
  background-color: #F2EAF4;
}

.course .course-inner ul li .img {
  width: 15%;
}

@media (max-width: 540px) {
  .course .course-inner ul li .img {
    width: 60%;
    margin: 0 auto;
  }
}

.course .course-inner ul li .text {
  width: 82%;
}

@media (max-width: 540px) {
  .course .course-inner ul li .text {
    width: 100%;
    margin-top: 20px;
  }
}

.course .course-inner ul li .text h4 {
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: solid 1px #550064;
  padding-bottom: 10px;
}

@media (max-width: 540px) {
  .course .course-inner ul li .text h4 {
    font-size: 2rem;
  }
}

.course .course-inner ul li .text p {
  line-height: 1.5rem;
  margin-top: 20px;
}

@media (max-width: 540px) {
  .course .course-inner ul li .text p {
    line-height: 2.6rem;
  }
}

/* -----------------------
footer
----------------------- */
footer {
  margin-top: 100px !important;
  position: relative;
  z-index: 10;
}

footer .footer-img {
  width: 100%;
}

footer .text-area {
  background-color: #550064;
  padding: 40px 0;
  color: #FFF;
  text-align: center;
  line-height: 1.5rem;
}

@media (max-width: 540px) {
  footer .text-area {
    line-height: 2.6rem;
  }
}

footer .menu-area {
  background-color: #FFF;
  width: 100%;
}

footer .menu-area .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

@media (max-width: 540px) {
  footer .menu-area .container {
    width: 90%;
    align-items: center;
    gap: 15%;
    flex-wrap: wrap;
    padding: 30px 0 20px;
  }
}

footer .menu-area .container .footer__logo {
  width: 200px;
}

@media (max-width: 540px) {
  footer .menu-area .container .footer__logo {
    width: 45%;
  }
}

footer .menu-area .container .footer__menu {
  display: flex;
  gap: 20px;
}

@media (max-width: 540px) {
  footer .menu-area .container .footer__menu {
    justify-content: space-around;
    width: 100%;
    margin-top: 20px;
  }
}

footer .menu-area .container .footer__menu li {
  font-size: 15px;
  text-align: right;
}

@media (max-width: 540px) {
  footer .menu-area .container .footer__menu li {
    width: 100%;
    font-size: 12px;
    text-align: left;
  }
}

footer .menu-area .container .copyright {
  width: 100%;
  margin-top: 30px;
  font-size: 12px;
  color: #919191;
  text-align: right;
}

@media (max-width: 540px) {
  footer .menu-area .container .copyright {
    width: 100%;
    font-size: 10px;
    text-align: center;
    margin-top: 25px;
  }
}
/*# sourceMappingURL=style.css.map */