@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&display=swap");
#schedule .wrap {
  border: 5px solid #1421b4;
}
#schedule .wrap .schedule_title {
  padding: 1.5% 2% 2%;
  color: #fff;
  background-color: #1421b4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  #schedule .wrap .schedule_title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#schedule .wrap .schedule_title img {
  width: 30px;
}
@media screen and (min-width: 768px) {
  #schedule .wrap .schedule_title img {
    width: 50px;
  }
}
#schedule .wrap .schedule_title h3 {
  margin: 0 4% 0 3%;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  #schedule .wrap .schedule_title h3 {
    margin: 0 4% 0 3%;
    font-size: 3rem;
  }
}
#schedule .wrap .schedule_title p {
  padding: 1% 0 0;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #schedule .wrap .schedule_title p {
    text-align: left;
    font-size: 1.8rem;
  }
}
#schedule .wrap .schedule_body {
  padding: 5% 5% 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  #schedule .wrap .schedule_body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 2% 2% 0;
  }
}
#schedule .wrap .schedule_body div {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #schedule .wrap .schedule_body div {
    width: 45%;
  }
}
#schedule .wrap .schedule_body div h4 {
  font-size: 2rem;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 1024px) {
  #schedule .wrap .schedule_body div h4 {
    font-size: 2.6rem;
  }
}
#schedule .wrap .schedule_body div ul {
  margin: 0 0 5%;
  padding: 0;
  list-style-position: inside;
}
@media screen and (min-width: 1024px) {
  #schedule .wrap .schedule_body div ul {
    margin: 0 0 3%;
  }
}
#schedule .wrap .schedule_body div ul li {
  padding: 2% 1%;
  font-size: 1.4rem;
  border-bottom: 1px dashed #ccc;
}
@media screen and (min-width: 1024px) {
  #schedule .wrap .schedule_body div ul li {
    font-size: 1.6rem;
  }
}
#schedule .wrap .schedule_body div ul li:last-child {
  border: none;
}
#schedule .wrap a {
  display: block;
  margin: 3%;
  padding: 1%;
  font-size: 1.6rem;
  text-align: center;
  border: 5px solid #ffd000;
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  #schedule .wrap a {
    margin: 0 auto 3%;
    font-size: 2rem;
    width: 60%;
  }
}
#schedule .wrap a:hover {
  color: #000;
  background-color: #ffea8b;
}

.index_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .index_contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.index_contents .index_text {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .index_contents .index_text {
    width: 40%;
  }
}
.index_contents .index_img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .index_contents .index_img {
    width: 50%;
  }
}
.index_contents .index_text,
.index_contents .index_img {
  line-height: 1.6;
  position: relative;
}
.index_contents .index_text h2,
.index_contents .index_img h2 {
  margin: 0;
  text-align: center;
  font-size: 2.8rem;
}
@media screen and (min-width: 1024px) {
  .index_contents .index_text h2,
  .index_contents .index_img h2 {
    font-size: 4.2rem;
  }
}
.index_contents .index_text h2 span,
.index_contents .index_img h2 span {
  display: block;
  font-size: 1.8rem;
}
.index_contents .index_text h3,
.index_contents .index_img h3 {
  text-align: center;
}
.index_contents .index_text p,
.index_contents .index_img p {
  margin: 5% 0;
}
.index_contents .index_text .link_w,
.index_contents .index_text .link_b,
.index_contents .index_img .link_w,
.index_contents .index_img .link_b {
  text-align: center;
  display: block;
  padding: 3% 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.index_contents .index_text .link_w,
.index_contents .index_img .link_w {
  border: 3px solid #fff;
  color: #fff;
}
.index_contents .index_text .link_w:hover,
.index_contents .index_img .link_w:hover {
  color: #0f3491;
  background-color: #fff;
}
.index_contents .index_text .link_b,
.index_contents .index_img .link_b {
  border: 3px solid #0f3491;
  color: #0f3491;
}
.index_contents .index_text .link_b:hover,
.index_contents .index_img .link_b:hover {
  color: #fff;
  background-color: #0f3491;
}
.index_contents .index_text img,
.index_contents .index_img img {
  width: 100%;
}

.info_area {
  line-height: 1.6;
}
.info_area h3 {
  font-size: 3.2rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .info_area h3 {
    font-size: 4.2rem;
  }
}
.info_area h4 {
  font-size: 1.8rem;
  text-align: center;
  color: #333;
}
@media screen and (min-width: 1024px) {
  .info_area h4 {
    font-size: 2rem;
  }
}
.info_area p {
  text-align: center;
  width: 100%;
  margin: 2% auto;
  padding: 2%;
  color: #fff;
  background-color: #0f3491;
}
@media screen and (min-width: 1024px) {
  .info_area p {
    width: 70%;
    padding: 0.5%;
  }
}
.info_area ul {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  font-size: 1.4rem;
}
@media screen and (min-width: 1024px) {
  .info_area ul {
    width: 70%;
    font-size: 1.8rem;
  }
}
.info_area ul li {
  padding: 2%;
  border-bottom: 1px solid #0f3491;
}
.info_area ul li:last-child {
  border: none;
}
.info_area ul li span {
  display: inline-block;
  width: 30%;
}
@media screen and (min-width: 1024px) {
  .info_area ul li span {
    width: 20%;
  }
}
.info_area .link_b {
  width: 50%;
  text-align: center;
  display: block;
  margin: 5% auto 0;
  padding: 1% 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: 3px solid #0f3491;
  color: #0f3491;
}
.info_area .link_b:hover {
  color: #fff;
  background-color: #0f3491;
}

.insta_area {
  line-height: 1.6;
}
.insta_area h3 {
  font-size: 2.6rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .insta_area h3 {
    font-size: 4.2rem;
  }
}
.insta_area h3 span {
  display: block;
  font-size: 2rem;
}

.link_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .link_area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.link_area a {
  margin: 1% 0;
}
@media screen and (min-width: 1024px) {
  .link_area a {
    margin: 0 1%;
  }
}