/*breakpoint*/
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blur {
  0% {
    -ms-filter: blur(12px);
    filter: blur(12px);
  }
  100% {
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
.sub__visual {
  width: 555px;
  height: auto;
  border-radius: 20px;
  margin: 0 auto;
}
.sub__visual img {
  width: 100%;
  height: 100%;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

main {
  padding: 0 0 10rem;
}
@media screen and (max-width: 767px) {
  main {
    padding: 0 0 8rem;
  }
}

main section {
  padding: 10rem 0 0 0;
}
main section:first-child {
  padding: 0 0 0 0;
}
@media screen and (max-width: 767px) {
  main section {
    width: calc(100% - 6rem);
    margin: 0 auto;
    padding: 8.5rem 0 0 0;
  }
}

.general__heading-3 .general__icon--area {
  width: 76px;
  height: 76px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .general__heading-3 .general__icon--area {
    width: 86px;
    height: 86px;
  }
}
.general__heading-3 .general__icon--area .general__icon {
  width: 100%;
  height: auto;
}
.general__heading-3 .general__text--area {
  font-size: 2.2rem;
  font-family: "Kosugi Maru", sans-serif;
  letter-spacing: 0.7rem;
  color: #A35CEB;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .general__heading-3 .general__text--area {
    font-size: 2rem;
    font-weight: 100;
    line-height: 1;
  }
}

.hedding__text {
  font-size: 2.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  text-align: center;
  margin: 3rem 0 2.45rem;
}
@media screen and (max-width: 767px) {
  .hedding__text {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 3rem 0 1.65rem;
  }
}

.toc__text {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  padding-left: 1em;
  text-indent: -1em;
}

.news {
  width: 1080px;
  margin: 0 auto;
  border-radius: 2rem;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .news {
    width: calc(100% - 6rem);
    padding: 0;
  }
}
.news .news__h2 {
  text-align: center;
}
.news .news__h2 .news__icon--area .news-icon {
  display: inline-block;
  margin: 0 1.8rem;
}
.news .news__h2 .news__text--area {
  color: #008AE3;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 2.8rem;
  margin: 0 2rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .news .news__h2 .news__text--area {
    font-size: 2.5rem;
  }
}
.news .news__list {
  height: auto;
  margin: 1.5rem auto 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .news .news__list {
    margin: 0;
  }
}
.news .news__list.active {
  height: auto;
}
.news .news__list .news__item {
  width: 100%;
  border-bottom: 1px solid #707070;
  transition: 0.5s;
}
.news .news__list .news__item .news__link {
  display: block;
  padding: 2.9rem 0;
  transition: 0.3s;
  opacity: 1;
}
	
  .news .news__list .news__item .news__link:nth-child(n+2) {
    padding: 0 0 2.9rem;
  }
@media screen and (max-width: 767px) {
  .news .news__list .news__item .news__link {
    padding: 2rem 0 2.9rem;
  }
	
  .news .news__list .news__item .news__link:nth-child(n+2) {
    padding: 0 0 2.9rem;
    /*margin-top: -2.8rem;*/
	  margin-top: -.9rem;
  }
}
.news .news__list .news__item.hide {
  display: none;
  animation: fadeout 2s;
  animation-fill-mode: both;
  height: 0;
}
.news .news__list .news__item.show {
  display: block;
  animation: fadein 2s;
  animation-fill-mode: both;
  height: auto;
}
.news .news__list .news__item .news__item--inner {
  width: 630px;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .news .news__list .news__item .news__item--inner {
    width: 100%;
    display: block;
  }
}
.news .news__list .news__item .news__item--inner .news__date {
  margin: 0 5rem 0 0;
  flex-shrink: 0;
  width: 160px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .news .news__list .news__item .news__item--inner .news__date {
    width: 100%;
    display: block;
    font-size: 1.4rem;
    text-align: left;
    margin: 0 0 1rem 0;
    width: auto;
  }
}
.news .news__list .news__item .news__item--inner .news__toc {
  max-width: 430px;
  text-align: left;
  flex-shrink: 0;
}
.news .news__list .news__item .news__item--inner .news__toc .title {
	font-size: 1.2em;
	font-weight: bold;
}
.news .news__list .news__item .news__item--inner .news__toc.pr {
	color: rgba(243,55,59,1.00)
}
@media screen and (max-width: 767px) {
  .news .news__list .news__item .news__item--inner .news__toc {
    font-size: 1.4rem;
    width: 100%;
    display: block;
  }
}
.news .news__list .news__item .news__item--inner.red .news__date,
.news .news__list .news__item .news__item--inner.red .news__toc {
  color: #FF0000;
}
.news .news__list .news__item.open:nth-of-type(n+4) {
  height: 100%;
  opacity: 1;
}
.news .news__list .news__item:hover {
  background: rgba(120, 219, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .news .news__list .news__item:hover {
    background: inherit;
  }
}
.news .news__list .news__item a .news__toc {
  color: #004789;
  text-decoration: underline;
}
.news .view-more {
  width: 219px;
  height: 41px;
  margin: 4rem auto 0;
  cursor: pointer;
  transition: 0.3s linear;
}
.news .view-more .view-more__btn {
  background-color: #FFFFFF;
  border: 1px solid #008AE3;
  line-height: 43px;
  border-radius: 10px;
  color: #008AE3;
  text-align: center;
  transition: 0.3s;
  font-weight: 600;
}
.news .view-more .view-more__btn.view-open {
  display: block;
  position: relative;
}
.news .view-more .view-more__btn.view-open::before {
  content: "";
  display: block;
  background-color: #008AE3;
  width: 10px;
  height: 2px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: rotate(45deg);
}
.news .view-more .view-more__btn.view-open::after {
  content: "";
  display: block;
  background-color: #008AE3;
  width: 10px;
  height: 2px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  right: 44px;
  transform: rotate(-45deg);
}
.news .view-more .view-more__btn.view-open:hover {
  background-color: #008AE3;
}
.news .view-more .view-more__btn.view-open:hover .view-more__btn {
  color: #fff;
}
.news .view-more .view-more__btn.view-open:hover.view-open {
  color: #fff;
}
.news .view-more .view-more__btn.view-open:hover::before {
  background: #fff;
}
.news .view-more .view-more__btn.view-open:hover::after {
  background: #fff;
}
.news .view-more .view-more__btn.view-close {
  display: none;
}
.news .view-more.more-close .view-more__btn.view-open {
  display: none;
}
.news .view-more.more-close .view-more__btn.view-close {
  display: block;
  position: relative;
}
.news .view-more.more-close .view-more__btn.view-close::before {
  content: "";
  display: block;
  background-color: #008AE3;
  width: 10px;
  height: 2px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: rotate(-45deg);
}
.news .view-more.more-close .view-more__btn.view-close::after {
  content: "";
  display: block;
  background-color: #008AE3;
  width: 10px;
  height: 2px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  right: 44px;
  transform: rotate(45deg);
}
.news .view-more.more-close .view-more__btn.view-close:hover {
  background-color: #008AE3;
}
.news .view-more.more-close .view-more__btn.view-close:hover .view-more__btn {
  color: #fff;
}
.news .view-more.more-close .view-more__btn.view-close:hover.view-close {
  color: #fff;
}
.news .view-more.more-close .view-more__btn.view-close:hover::before {
  background: #fff;
}
.news .view-more.more-close .view-more__btn.view-close:hover::after {
  background: #fff;
}

.schedule .calendar__area {
  width: 800px;
  height: auto;
  margin: 0 auto 1.4rem;
}
@media screen and (max-width: 767px) {
  .schedule .calendar__area {
    margin: 0 auto 0.4rem;
  }
}
.schedule .calendar__area .calendar__img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .schedule .calendar__area {
    width: 100%;
    height: auto;
  }
}
.schedule .calendar__data {
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto 0;
  padding: 0 0 0 21px;
  text-align: center;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .schedule .calendar__data {
    margin: 2.7rem auto 0;
    padding: 0 0 0 17px;
    font-size: 1.4rem;
  }
}
.schedule .calendar__data .calendar__anker-next {
  padding: 0 0 0 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid #000;
  position: relative;
}
@media screen and (max-width: 767px) {
  .schedule .calendar__data .calendar__anker-next {
    font-size: 1.4rem;
  }
}
.schedule .calendar__data .calendar__anker-next::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15.6px;
  border-color: transparent transparent transparent #000000;
  position: absolute;
  top: 4px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .schedule .calendar__data .calendar__anker-next::before {
    border-width: 7px 0 7px 12.1px;
    top: 3px;
  }
}
.schedule .calendar__data .calendar__anker-next:hover {
  opacity: 0.5;
}
.schedule .calendar__data a[href=""] {
  pointer-events: none;
  border-bottom: none;
}
.schedule .calendar__data a[href=""]:hover {
  opacity: 1;
}
.schedule .toc__text {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .schedule .toc__text {
    width: 100%;
  }
}

.charge .charge__table {
  width: 1080px;
  margin: 4rem auto 2rem;
}
@media screen and (max-width: 767px) {
  .charge .charge__table {
    width: 100%;
  }
}
.charge .charge__table tr {
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .charge .charge__table tr:first-of-type th:nth-of-type(2) {
    border-right: none;
  }
}
.charge .charge__table tr:last-of-type {
  border: none;
}
@media screen and (max-width: 767px) {
  .charge .charge__table tr {
    width: 100%;
    font-size: 1.4rem;
  }
}
.charge .charge__table tr th {
  width: 216px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #707070;
  padding: 2.4rem 0;
}
.charge .charge__table tr th:nth-of-type(5) {
  border-right: none;
}
@media screen and (max-width: 767px) {
  .charge .charge__table tr th {
    width: 14%;
    font-size: 1.4rem;
    padding: 1.8rem 0;
  }
}
.charge .charge__table tr td {
  width: 216px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #707070;
  padding: 1.6rem 0;
}
.charge .charge__table tr td:last-of-type {
  border: none;
}
@media screen and (max-width: 767px) {
  .charge .charge__table tr td {
    width: 20%;
    font-size: 1.4rem;
    border: none;
    padding: 1.8rem 0;
  }
}
.charge .charge__table tr:last-of-type td {
  border-right: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .charge .charge__table tr:last-of-type td {
    border-right: none;
  }
}
.charge .toc__text {
  width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .charge .toc__text {
    width: 100%;
  }
}

.courtesy {
  width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .courtesy {
    width: calc(100% - 6rem);
  }
}
.courtesy .courtesy__table {
  display: flex;
  border-radius: 20px;
  margin: 4.5rem 0 2.15rem;
}
@media screen and (max-width: 767px) {
  .courtesy .courtesy__table {
    display: block;
    margin: 3rem 0 1.85rem;
  }
}
.courtesy .courtesy__table .courtesy__table--gra {
  width: 217px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(120, 219, 255);
  background: linear-gradient(186deg, rgb(120, 219, 255) 0%, rgb(0, 138, 227) 100%);
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 767px) {
  .courtesy .courtesy__table .courtesy__table--gra {
    width: 100%;
    padding: 20px 0;
    background: rgb(120, 219, 255);
    background: linear-gradient(90deg, rgb(120, 219, 255) 0%, rgb(0, 138, 227) 100%);
    border-radius: 20px 20px 0 0;
  }
}
.courtesy .courtesy__table .courtesy__table--gra .courtesy__table--title {
  color: #fff;
  font-weight: 600;
}
.courtesy .courtesy__table .courtesy__table--list {
  background: rgb(120, 219, 255);
  background: linear-gradient(186deg, rgba(120, 219, 255, 0.34) 0%, rgba(0, 138, 227, 0.34) 100%);
  border-top: 1px solid #81D6FF;
  border-bottom: 1px solid #81D6FF;
}
@media screen and (max-width: 767px) {
  .courtesy .courtesy__table .courtesy__table--list {
    background: rgb(120, 219, 255);
    background: linear-gradient(90deg, rgba(120, 219, 255, 0.34) 0%, rgba(0, 138, 227, 0.34) 100%);
    border-top: none;
    border-bottom: none;
    border-right: 1px solid #008AE3;
    border-left: 1px solid #008AE3;
  }
}
.courtesy .courtesy__table .courtesy__table--list .courtesy__table--item {
  width: 433px;
  list-style: none;
  padding: 1.85rem 0;
  text-align: center;
  border-bottom: 1px solid #fff;
}
.courtesy .courtesy__table .courtesy__table--list .courtesy__table--item:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .courtesy .courtesy__table .courtesy__table--list .courtesy__table--item {
    width: 100%;
    font-size: 1.4rem;
  }
}
.courtesy .courtesy__table .courtesy__table--note {
  width: 431px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-top: 1px solid #81D6FF;
  border-right: 1px solid #81D6FF;
  border-bottom: 1px solid #81D6FF;
  border-radius: 0 20px 20px 0;
}
.courtesy .courtesy__table .courtesy__table--note p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .courtesy .courtesy__table .courtesy__table--note {
    width: 100%;
    font-size: 1.4rem;
    border-top: none;
    border-right: 1px solid #008AE3;
    border-bottom: 1px solid #008AE3;
    border-left: 1px solid #008AE3;
    border-radius: 0 0 20px 20px;
    box-sizing: border-box;
    padding: 20px 0;
  }
}

.card-app {
  width: 1080px;
  margin: 5.2rem auto 0;
  padding: 4.25rem 0;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .card-app {
    width: calc(100% - 6rem);
    margin: 3.9rem auto 0;
  }
}
.card-app .heading__text {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .card-app .heading__text {
    font-size: 1.8rem;
  }
}
.card-app .card-app__text {
  font-size: 1.6rem;
  text-align: center;
  margin: 3.65rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .card-app .card-app__text {
    font-size: 1.4rem;
    margin: 2.9rem 0 0 0;
  }
}
.card-app .card-app__area {
  width: 911px;
  margin: 6.2rem auto 0;
  display: flex;
}
@media screen and (max-width: 767px) {
  .card-app .card-app__area {
    width: 100%;
    display: block;
    margin: 2rem auto;
  }
}
.card-app .card-app__area .card-app__list {
  display: flex;
  list-style: none;
  padding: 0 6rem;
}
@media screen and (max-width: 767px) {
  .card-app .card-app__area .card-app__list {
    display: block;
    padding: 0;
  }
}
.card-app .card-app__area .card-app__list:first-of-type {
  border-right: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .card-app .card-app__area .card-app__list:first-of-type {
    border-right: none;
    margin: 0 0 3rem 0;
  }
}
.card-app .card-app__area .card-app__list .card-app__item {
  align-items: flex-end;
}
.card-app .card-app__area .card-app__list .card-app__item img.qp-cord {
	width: 137px;
}
.card-app .card-app__area .card-app__list .card-app__item:first-of-type {
  margin: 7rem 3rem 0 0;
}
@media screen and (max-width: 767px) {
  .card-app .card-app__area .card-app__list .card-app__item:first-of-type {
    width: 100%;
    margin: 0;
    text-align: center;
  }
}
.card-app .app__data {
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto 0;
  padding: 0 23px 0 0;
  border-bottom: 1px solid #000;
  text-align: center;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .card-app .app__data {
    margin: 0 auto;
    padding: 0 2.1rem 0px 0;
  }
}
.card-app .app__data:hover {
  opacity: 0.5;
}
.card-app .app__data .card-app__detail {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .card-app .app__data .card-app__detail {
    font-size: 1.4rem;
  }
}
.card-app .app__data .card-app__detail::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15.6px;
  border-color: transparent transparent transparent #000000;
  position: absolute;
  top: 4px;
  right: -19px;
}
@media screen and (max-width: 767px) {
  .card-app .app__data .card-app__detail::after {
    border-width: 7px 0 7px 12.1px;
  }
}
.card-app .toc__text {
  width: 929px;
  margin: 2.8rem auto 0;
}
@media screen and (max-width: 767px) {
  .card-app .toc__text {
    width: calc(100% - 3rem);
    padding-left: 0;
    text-indent: 0;
  }
}

.lesson .lesson__text,
.lesson .toc__text {
  text-align: center;
}
.lesson .lesson__text {
  margin: 4.5rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .lesson .lesson__text {
    margin: 3rem auto 0;
    font-size: 1.4rem;
  }
}
.lesson .toc__text {
  margin: 1.4rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .lesson .toc__text {
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 391px) {
  .lesson .toc__text {
    margin: 0 auto;
    text-align: left;
  }
}/*# sourceMappingURL=general.css.map */



.news .bnr__list figure + figure{
	margin: 3em auto 0;
}
.news .bnr__list figure img{
	width: 100%;
	height: auto;
}