@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@500;700&display=swap");
img {
  width: 100%;
  height: auto;
}

body {
  font-size: 18px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  color: #51308E;
  line-height: 1.6;
}
@media (min-width: 501px) and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  body {
    font-size: 16px;
  }
}

.pc-none {
  display: none;
}
@media (min-width: 501px) and (max-width: 767px) {
  .pc-none {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .pc-none {
    display: block;
  }
}

.section {
  background-color: #51308E;
  padding-top: 40px;
  width: 100%;
}
@media screen and (max-width: 500px) {
  .section {
    padding-top: 20px;
  }
}

.wrap {
  position: relative;
  width: 860px;
  margin: 0 auto;
  padding-bottom: 20px;
  background-color: white;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .wrap {
    width: 700px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .wrap {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .wrap {
    width: 100%;
  }
}

@media (min-width: 501px) and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 500px) {
  .inner {
    padding: 0 20px;
  }
}

/*=======================================

header

=====================================*/
.header {
  background-color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  transition: 0.5s;
  z-index: 30;
}
.header.hide {
  transform: translateY(-100%);
}
@media (min-width: 501px) and (max-width: 767px) {
  .header {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .header {
    display: none;
  }
}

.header__nav {
  display: flex;
  justify-content: center;
}

.header__nav-item {
  margin-right: 20px;
  padding-top: 20px;
  font-family: "M PLUS 1p", sans-serif;
  letter-spacing: 0.08em;
}
.header__nav-item a {
  color: white;
  font-size: 17px;
}
.header__nav-item a .fa-brands {
  font-size: 20px;
}
.header__nav-item a:hover {
  color: #FFF000;
}
.header__nav-item a.selected {
  color: #FFF000;
}
.header__nav-item:last-child {
  margin-left: 60px;
  padding-top: 18px;
}

.drawer-icon {
  position: fixed;
  top: 22px;
  right: 16px;
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
  background-color: #000;
  padding: 12px 10px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  border: 1px solid #fff;
}
.drawer-icon.is-active .drawer-icon-bar1 {
  top: 8px;
  transform: rotate(-45deg);
  background: #E3E3E3;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  top: 8px;
  transform: rotate(45deg);
  background: #E3E3E3;
}

.drawer-icon-bars {
  width: 20px;
  height: 16px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  top: 0;
  left: 0;
  transition: all 0.4s;
}
.drawer-icon-bar1.is-active,
.drawer-icon-bar2.is-active,
.drawer-icon-bar3.is-active {
  background: #E3E3E3;
  z-index: 299;
}

.drawer-icon-bar1 {
  top: 0px;
}

.drawer-icon-bar2 {
  top: 6px;
}

.drawer-icon-bar3 {
  top: 12px;
}

.drawer-content {
  position: fixed;
  width: 100%;
  right: 0;
  top: 0;
  background: #000;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content-item {
  padding-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid #fff;
}
.drawer-content-item a {
  display: block;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  color: #fff;
  font-weight: 500;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 298;
  display: none;
  opacity: 0.7;
}
.drawer-background.is-active {
  display: block;
}

/*=======================================

mainvisual

=====================================*/
.mainvisual {
  background-color: #51308E;
  padding-top: 120px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .mainvisual {
    padding-top: 70px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .mainvisual {
    padding-top: 70px;
  }
}
@media screen and (max-width: 500px) {
  .mainvisual {
    padding-top: 70px;
  }
}

.mainvisual__img {
  margin: 0 auto;
  width: 88%;
  background-image: url(../img/top24.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 1100px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .mainvisual__img {
    height: 900px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .mainvisual__img {
    height: 600px;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .mainvisual__img {
    width: 100%;
    height: 490px;
  }
}

/*=======================================

challenge

=====================================*/
.challenge {
  background-color: #51308E;
  padding-top: 40px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .challenge {
    padding-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .challenge {
    padding-top: 20px;
  }
}

.challenge__flame-top {
  width: 865px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .challenge__flame-top {
    width: 700px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .challenge__flame-top {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .challenge__flame-top {
    width: 100%;
  }
}

.challenge__flame-bottom {
  width: 865px;
  margin: 0 auto;
  display: none;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .challenge__flame-bottom {
    width: 700px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .challenge__flame-bottom {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .challenge__flame-bottom {
    width: 100%;
  }
}
.challenge__flame-bottom.selected {
  display: block;
}

.challenge__top-wrap {
  width: 865px;
  margin: 0 auto;
  background-color: #82D2FA;
  border-left: 14px solid white;
  border-right: 11px solid white;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .challenge__top-wrap {
    width: 700px;
    border-left: 11px solid white;
    border-right: 9px solid white;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .challenge__top-wrap {
    width: 100%;
    border-left: 9px solid white;
    border-right: 7px solid white;
  }
}
@media screen and (max-width: 500px) {
  .challenge__top-wrap {
    width: 100%;
    border-left: 6px solid white;
    border-right: 4px solid white;
  }
}

.challenge__change-wrap {
  position: relative;
  width: 865px;
  margin: 0 auto;
  background-color: #82D2FA;
  border-left: 14px solid white;
  border-right: 11px solid white;
  padding: 0 0 900px 0;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .challenge__change-wrap {
    width: 700px;
    padding-bottom: 670px;
    border-left: 11px solid white;
    border-right: 9px solid white;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .challenge__change-wrap {
    width: 100%;
    padding-bottom: 570px;
    border-left: 9px solid white;
    border-right: 7px solid white;
  }
}
@media screen and (max-width: 500px) {
  .challenge__change-wrap {
    width: 100%;
    padding-bottom: 400px;
    border-left: 6px solid white;
    border-right: 4px solid white;
  }
}

.challenge__top {
  display: flex;
  justify-content: center;
}

.challenge__title {
  width: 55%;
  margin-right: 10px;
}

.challenge__boy {
  width: 25%;
  margin-left: 10px;
}

.challenge__subTitle {
  width: 500px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.challenge__subTitle img {
  width: 100%;
}
@media (min-width: 501px) and (max-width: 767px) {
  .challenge__subTitle {
    width: 300px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .challenge__subTitle {
    width: 280px;
    margin: 0 auto;
  }
}

.challenge__text {
  color: white;
  font-size: 16px;
  text-align: center;
  line-height: 1.7;
}
.challenge__text span {
  font-size: 14px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .challenge__text span {
    font-size: 12px;
  }
}
@media screen and (max-width: 500px) {
  .challenge__text span {
    font-size: 12px;
  }
}
@media (min-width: 768px) and (max-width: 1080px) {
  .challenge__text {
    white-space: nowrap;
  }
}
@media screen and (max-width: 500px) {
  .challenge__text {
    font-size: 15px;
    padding: 0 10px;
  }
}

.challenge__now {
  text-align: center;
  padding-top: 40px;
  color: #fff;
}

.count__wrap {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
@media screen and (max-width: 500px) {
  .count__wrap {
    display: block;
    padding: 20px;
  }
}

.challenge__change {
  display: none;
}
.challenge__change.to-burn {
  display: block;
}

.count {
  margin-left: 10px;
  width: 350px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .count {
    width: 300px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .count {
    width: 240px;
  }
}
@media screen and (max-width: 500px) {
  .count {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
}
.count span {
  position: absolute;
  top: 45px;
  font-size: 65px;
  color: #AA5014;
  right: 60px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .count span {
    font-size: 60px;
    top: 40px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .count span {
    font-size: 40px;
    top: 40px;
    right: 45px;
  }
}
@media screen and (max-width: 500px) {
  .count span {
    font-size: 50px;
    top: 50px;
    right: 70px;
  }
}

.calorie {
  margin-right: 10px;
  width: 350px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .calorie {
    width: 300px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .calorie {
    width: 240px;
  }
}
@media screen and (max-width: 500px) {
  .calorie {
    width: 100%;
    margin-right: 0;
  }
}
.calorie span {
  position: absolute;
  font-size: 60px;
  top: 50px;
  left: 130px;
  color: #E3007F;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .calorie span {
    font-size: 60px;
    top: 35px;
    left: 100px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .calorie span {
    font-size: 40px;
    top: 35px;
    left: 90px;
  }
}
@media screen and (max-width: 500px) {
  .calorie span {
    font-size: 45px;
    top: 60px;
    left: 130px;
  }
}

.tower {
  position: absolute;
  width: 184px;
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) and (max-width: 1080px) {
  .tower {
    width: 140px;
    bottom: -90px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .tower {
    width: 120px;
    bottom: -80px;
  }
}
@media screen and (max-width: 500px) {
  .tower {
    width: 80px;
    bottom: -50px;
  }
}

.voice125 {
  width: 200px;
  position: absolute;
  top: 500px;
  right: 60px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .voice125 {
    width: 150px;
    right: 60px;
    top: 880px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .voice125 {
    width: 120px;
    right: 30px;
    top: 800px;
  }
}
@media screen and (max-width: 500px) {
  .voice125 {
    width: 100px;
    right: 20px;
  }
}

.voice75 {
  width: 200px;
  position: absolute;
  bottom: 450px;
  left: 60px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .voice75 {
    width: 150px;
    left: 60px;
    bottom: 300px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .voice75 {
    width: 120px;
    left: 40px;
    bottom: 250px;
  }
}
@media screen and (max-width: 500px) {
  .voice75 {
    width: 100px;
    left: 40px;
    bottom: 200px;
  }
}

.voice25 {
  width: 200px;
  position: absolute;
  right: 60px;
  bottom: 100px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .voice25 {
    width: 150px;
    right: 60px;
    bottom: 70px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .voice25 {
    width: 120px;
    right: 40px;
    bottom: 40px;
  }
}
@media screen and (max-width: 500px) {
  .voice25 {
    width: 100px;
    right: 40px;
    bottom: 40px;
  }
}

.cloud1 {
  position: absolute;
  width: 115px;
  top: 377px;
  right: 67px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .cloud1 {
    width: 100px;
    right: 45px;
    top: 360px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .cloud1 {
    width: 80px;
    right: 10px;
    top: 120px;
  }
}
@media screen and (max-width: 500px) {
  .cloud1 {
    display: none;
  }
}

.cloud2 {
  position: absolute;
  width: 115px;
  left: 87px;
  bottom: 770px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .cloud2 {
    width: 100px;
    left: 70px;
    bottom: 470px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .cloud2 {
    width: 80px;
    left: 60px;
    bottom: 380px;
  }
}
@media screen and (max-width: 500px) {
  .cloud2 {
    width: 60px;
    left: 20px;
    bottom: 200px;
  }
}

.cloud3 {
  position: absolute;
  width: 95px;
  right: 182px;
  bottom: 573px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .cloud3 {
    bottom: 380px;
    right: 150px;
    width: 80px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .cloud3 {
    bottom: 250px;
    width: 70px;
    right: 20px;
  }
}
@media screen and (max-width: 500px) {
  .cloud3 {
    bottom: 140px;
    width: 60px;
    right: 20px;
  }
}

.cloud4 {
  position: absolute;
  width: 64px;
  right: 87px;
  bottom: 337px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .cloud4 {
    bottom: 287px;
    width: 57px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .cloud4 {
    width: 45px;
    bottom: 160px;
  }
}
@media screen and (max-width: 500px) {
  .cloud4 {
    width: 35px;
    bottom: 60px;
    right: 60px;
  }
}

.cloud5 {
  width: 30px;
  position: absolute;
  left: 210px;
  bottom: 210px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .cloud5 {
    width: 25px;
    bottom: 160px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .cloud5 {
    width: 20px;
    bottom: 120px;
    left: 100px;
  }
}
@media screen and (max-width: 500px) {
  .cloud5 {
    width: 15px;
    bottom: 50px;
    left: 40px;
  }
}

/*=======================================

flame

=====================================*/
.flame__top {
  width: 860px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .flame__top {
    width: 700px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .flame__top {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .flame__top {
    width: 100%;
  }
}

.flame__bottom {
  width: 860px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .flame__bottom {
    width: 700px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .flame__bottom {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .flame__bottom {
    width: 100%;
    margin: -10px auto 0 auto;
  }
}

/*=======================================

okonomi

=====================================*/
.okonomi {
  background-color: #51308E;
  padding-top: 30px;
}

.okonomi-wrap {
  width: 860px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .okonomi-wrap {
    width: 700px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .okonomi-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .okonomi-wrap {
    width: 100%;
    margin: -10px auto 0 auto;
  }
}

/*=======================================

concept

=====================================*/
.concept__title {
  position: absolute;
  width: 717px;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) and (max-width: 1080px) {
  .concept__title {
    width: 620px;
    top: 30px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .concept__title {
    width: 85%;
    top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .concept__title {
    width: 90%;
    top: 20px;
  }
}

.concept__text {
  text-align: center;
  padding-top: 180px;
  line-height: 2.5;
  font-weight: 700;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .concept__text {
    padding-top: 120px;
    font-size: 16px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .concept__text {
    padding-top: 110px;
    font-size: 15px;
    line-height: 2.5;
  }
}
@media screen and (max-width: 500px) {
  .concept__text {
    padding-top: 70px;
    font-size: 14px;
    line-height: 2;
  }
}

.concept__kids1,
.concept__kids2,
.concept__kids3,
.concept__kids4,
.concept__kids5,
.concept__kids6,
.concept__kids7 {
  position: absolute;
  width: 90px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .concept__kids1,
  .concept__kids2,
  .concept__kids3,
  .concept__kids4,
  .concept__kids5,
  .concept__kids6,
  .concept__kids7 {
    width: 13%;
  }
}
@media screen and (max-width: 500px) {
  .concept__kids1,
  .concept__kids2,
  .concept__kids3,
  .concept__kids4,
  .concept__kids5,
  .concept__kids6,
  .concept__kids7 {
    width: 12%;
    display: none;
  }
}

.concept__kids1 {
  top: 370px;
  right: -40px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .concept__kids1 {
    top: 260px;
    right: -20px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .concept__kids1 {
    top: 270px;
    right: -20px;
  }
}
@media screen and (max-width: 500px) {
  .concept__kids1 {
    top: 220px;
    right: -20px;
  }
}

.concept__kids2 {
  bottom: 20px;
  right: 50px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .concept__kids2 {
    right: 30px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .concept__kids2 {
    bottom: -30px;
    right: 15px;
  }
}
@media screen and (max-width: 500px) {
  .concept__kids2 {
    bottom: 0;
    right: 15px;
  }
}

.concept__kids3 {
  left: 15px;
  bottom: 60px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .concept__kids3 {
    bottom: -30px;
  }
}
@media screen and (max-width: 500px) {
  .concept__kids3 {
    bottom: -10px;
  }
}

.concept__kids4 {
  bottom: 290px;
  left: -40px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .concept__kids4 {
    bottom: 270px;
    left: -20px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .concept__kids4 {
    left: 20px;
    bottom: 250px;
  }
}
@media screen and (max-width: 500px) {
  .concept__kids4 {
    top: 60px;
    left: -10px;
  }
}

.concept__kids5 {
  bottom: 180px;
  left: 75px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .concept__kids5 {
    bottom: 203px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .concept__kids5 {
    left: -20px;
    bottom: 120px;
  }
}
@media screen and (max-width: 500px) {
  .concept__kids5 {
    left: -20px;
    bottom: 180px;
  }
}

.concept__kids6 {
  top: 150px;
  left: 46px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .concept__kids6 {
    top: 100px;
    left: -20px;
  }
}
@media screen and (max-width: 500px) {
  .concept__kids6 {
    left: 10px;
    top: 150px;
  }
}

.concept__kids7 {
  right: 65px;
  bottom: 300px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .concept__kids7 {
    right: 45px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .concept__kids7 {
    bottom: 260px;
    right: 30px;
  }
}
@media screen and (max-width: 500px) {
  .concept__kids7 {
    bottom: 240px;
    right: 10px;
  }
}

/*=======================================

news

=====================================*/
.news__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding-top: 40px;
  font-family: "M PLUS 1p", sans-serif;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .news__title {
    font-size: 20px;
    padding-top: 20px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .news__title {
    font-size: 20px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .news__title {
    font-size: 20px;
    padding-top: 20px;
  }
}

.news__content {
  padding-top: 40px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .news__content {
    padding-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .news__content {
    padding-top: 20px;
  }
}

.news__item {
  position: relative;
  margin: 0 auto;
  display: flex;
  width: 720px;
  padding: 15px;
  background-color: #FFF000;
  color: white;
  border-radius: 6px;
  margin-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .news__item {
    width: 600px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .news__item {
    width: 90%;
    padding: 10px;
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .news__item {
    width: 90%;
    display: block;
    padding: 10px;
  }
}
.news__item .news__date {
  margin-right: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .news__item .news__date {
    margin-right: 10px;
  }
}
@media screen and (max-width: 500px) {
  .news__item p {
    padding-right: 16px;
  }
}
.news__item img {
  width: 12px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
@media (min-width: 501px) and (max-width: 767px) {
  .news__item img {
    width: 8px;
    right: 10px;
  }
}
@media screen and (max-width: 500px) {
  .news__item img {
    width: 8px;
    right: 8px;
  }
}

.news__item-link a {
  position: relative;
  margin: 0 auto;
  display: flex;
  width: 720px;
  padding: 15px 30px 15px 15px;
  background-color: #FFF000;
  color: #51308E;
  border-radius: 6px;
  margin-bottom: 15px;
}
.news__item-link a:hover {
  background-color: #E3007F;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .news__item-link a {
    width: 600px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .news__item-link a {
    width: 90%;
    padding: 10px;
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .news__item-link a {
    width: 90%;
    display: block;
    padding: 10px;
  }
}
.news__item-link .news__date {
  margin-right: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .news__item-link .news__date {
    margin-right: 10px;
  }
}
@media screen and (max-width: 500px) {
  .news__item-link p {
    padding-right: 16px;
  }
}
.news__item-link img {
  width: 12px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
@media (min-width: 501px) and (max-width: 767px) {
  .news__item-link img {
    width: 8px;
    right: 10px;
  }
}
@media screen and (max-width: 500px) {
  .news__item-link img {
    width: 8px;
    right: 8px;
  }
}

/*=======================================

project

=====================================*/
.project__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding-top: 40px;
  font-family: "M PLUS 1p", sans-serif;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .project__title {
    font-size: 20px;
    padding-top: 20px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .project__title {
    font-size: 20px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .project__title {
    font-size: 20px;
    padding-top: 20px;
  }
}

.project__content {
  width: 720px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .project__content {
    width: 600px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .project__content {
    width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .project__content {
    width: 90%;
  }
}
.project__content a {
  color: #51308E;
}
.project__content a:hover {
  opacity: 0.7;
}

.youtube__wrap {
  padding-top: 40px;
}

.youtube {
  padding-top: 56.25%;
  width: 100%;
  height: 0;
  position: relative;
}
.youtube iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.project__text {
  font-size: 17px;
  padding-top: 20px;
  line-height: 2;
  font-weight: 600;
  padding-bottom: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .project__text {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 500px) {
  .project__text {
    font-size: 14px;
    line-height: 1.7;
    padding-bottom: 10px;
  }
}

/*=======================================

info

=====================================*/
.info__wrap {
  width: 720px;
  margin: 0 auto;
  padding-top: 20px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .info__wrap {
    width: 600px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .info__wrap {
    width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .info__wrap {
    width: 90%;
  }
}

.info__items {
  display: flex;
}
@media (min-width: 501px) and (max-width: 767px) {
  .info__items {
    justify-content: center;
  }
}
@media screen and (max-width: 500px) {
  .info__items {
    flex-wrap: wrap;
  }
}

.info-item {
  width: 75px;
  position: relative;
}
.info-item p {
  text-align: center;
  position: absolute;
  color: white;
  font-weight: 700;
  font-size: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  line-height: 1.2;
}
@media (min-width: 501px) and (max-width: 767px) {
  .info-item p {
    font-size: 12px;
  }
}
@media screen and (max-width: 500px) {
  .info-item p {
    font-size: 12px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .info-item {
    width: 60px;
  }
}
@media screen and (max-width: 500px) {
  .info-item {
    width: 60px;
  }
}

.info__content {
  display: flex;
  font-weight: 700;
  font-size: 16px;
  padding-top: 40px;
  line-height: 1.2;
}
@media (min-width: 501px) and (max-width: 767px) {
  .info__content {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .info__content {
    display: block;
    padding-top: 20px;
  }
}

.info__content1 {
  padding-right: 50px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .info__content1 {
    padding-right: 30px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .info__content1 {
    padding-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .info__content1 {
    padding-right: 0;
  }
}

.info__content2 {
  border-left: 3px dotted #51308E;
  width: 180%;
  padding-left: 50px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .info__content2 {
    padding-left: 30px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .info__content2 {
    border-left: none;
    padding-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .info__content2 {
    border-left: none;
    padding-left: 0;
    width: 100%;
  }
}

.info__nav {
  padding-bottom: 20px;
}
.info__nav span {
  padding-left: 30px;
}

.info__nav-title {
  position: relative;
  display: inline-block;
}
.info__nav-title::after {
  content: "";
  position: absolute;
  width: 1px;
  background-color: #51308E;
  height: 16px;
  top: 0;
  right: -15px;
}

.info__nav-text.is__orange {
  position: relative;
  padding-left: 20px;
}
.info__nav-text.is__orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FFF000;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}

/*=======================================

link

=====================================*/
.btn__links {
  padding: 60px 0;
  background-color: #51308E;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .btn__links {
    padding: 30px 0;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .btn__links {
    padding: 20px 0;
  }
}
@media screen and (max-width: 500px) {
  .btn__links {
    padding: 20px 0;
  }
}

.btn__links-wrap {
  width: 865px;
  margin: 0 auto;
  display: flex;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .btn__links-wrap {
    width: 700px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .btn__links-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .btn__links-wrap {
    width: 100%;
  }
}

.btn__link {
  width: 261px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .btn__link {
    width: 220px;
  }
}
.btn__link:not(:first-child) {
  margin-left: 40px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .btn__link:not(:first-child) {
    margin-left: 20px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .btn__link:not(:first-child) {
    margin-left: 10px;
  }
}
@media screen and (max-width: 500px) {
  .btn__link:not(:first-child) {
    margin-left: 10px;
  }
}
.btn__link img {
  transition: 0.4s ease-in-out;
}

/*=======================================

footer

=====================================*/
footer {
  padding: 60px 0;
  width: 865px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1080px) {
  footer {
    width: 700px;
    padding: 40px 0;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  footer {
    width: 100%;
    padding: 40px 20px;
  }
}
@media screen and (max-width: 500px) {
  footer {
    padding: 40px 20px;
    width: 100%;
  }
}

.cosponsor__top {
  display: flex;
  justify-content: space-around;
  padding-bottom: 40px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .cosponsor__top {
    justify-content: center;
    gap: 20px;
  }
}
@media screen and (max-width: 500px) {
  .cosponsor__top {
    justify-content: center;
    gap: 20px;
    padding-bottom: 10px;
    gap: 10px;
  }
}

.cosponsor__item-l a {
  display: inline-block;
  width: 250px;
  height: 116px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .cosponsor__item-l a {
    width: 200px;
    height: 92px;
  }
}
@media screen and (max-width: 500px) {
  .cosponsor__item-l a {
    width: 160px;
    height: 74px;
  }
}
.cosponsor__item-l a img {
  width: 100%;
  height: 100%;
}
.cosponsor__item-l a:hover {
  opacity: 0.7;
}

.cosponsor__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 74px;
  padding-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .cosponsor__bottom {
    gap: 40px 20px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .cosponsor__bottom {
    gap: 20px 20px;
    justify-content: center;
  }
}
@media screen and (max-width: 500px) {
  .cosponsor__bottom {
    gap: 10px 10px;
    justify-content: center;
  }
}

.cosponsor__item a {
  display: inline-block;
  width: 160px;
  height: 74px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .cosponsor__item a {
    width: 130px;
    height: 59px;
  }
}
.cosponsor__item a img {
  height: 100%;
}
.cosponsor__item a:hover {
  opacity: 0.7;
}

.footer__btns {
  padding-top: 20px;
}

.footer__btn-title {
  text-align: center;
  font-weight: 700;
  color: #000;
  font-size: 18px;
}

.footer__btn {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
@media screen and (max-width: 500px) {
  .footer__btn {
    display: block;
  }
}

.footer__btn-item1,
.footer__btn-item2,
.footer__btn-item3,
.footer__btn-item4 {
  width: 410px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .footer__btn-item1,
  .footer__btn-item2,
  .footer__btn-item3,
  .footer__btn-item4 {
    width: 340px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .footer__btn-item1,
  .footer__btn-item2,
  .footer__btn-item3,
  .footer__btn-item4 {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 500px) {
  .footer__btn-item1,
  .footer__btn-item2,
  .footer__btn-item3,
  .footer__btn-item4 {
    width: 100%;
  }
}
.footer__btn-item1 img,
.footer__btn-item2 img,
.footer__btn-item3 img,
.footer__btn-item4 img {
  transition: 0.4s ease-in-out;
}

.footer__btn-item4 {
  margin-right: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .footer__btn-item4 {
    margin-right: 10px;
  }
}
@media screen and (max-width: 500px) {
  .footer__btn-item4 {
    margin-right: 0;
  }
}

.footer__btn-item2 {
  margin-right: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .footer__btn-item2 {
    margin-right: 10px;
  }
}
@media screen and (max-width: 500px) {
  .footer__btn-item2 {
    margin-right: 0;
  }
}

.footer__btn-item1 {
  margin-left: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .footer__btn-item1 {
    margin-left: 10px;
  }
}
@media screen and (max-width: 500px) {
  .footer__btn-item1 {
    margin-left: 0;
    margin-top: 10px;
  }
}

.footer__btn-item3 {
  margin-left: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .footer__btn-item3 {
    margin-left: 10px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .footer__btn-item3 {
    margin-left: 0;
    margin-top: 10px;
  }
}

.footer__footer {
  display: flex;
  padding-top: 60px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .footer__footer {
    padding-top: 40px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .footer__footer {
    padding-top: 40px;
  }
}
@media screen and (max-width: 500px) {
  .footer__footer {
    padding-top: 30px;
  }
}
.footer__footer p {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  padding-top: 65px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .footer__footer p {
    padding-top: 50px;
    font-size: 12px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .footer__footer p {
    padding-top: 30px;
    font-size: 10px;
  }
}
@media screen and (max-width: 500px) {
  .footer__footer p {
    padding-top: 20px;
    font-size: 10px;
  }
}
.footer__footer p br {
  display: none;
}
@media (min-width: 501px) and (max-width: 767px) {
  .footer__footer p br {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .footer__footer p br {
    display: block;
  }
}
.footer__footer a {
  display: inline-block;
  width: 155px;
  margin-left: auto;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .footer__footer a {
    width: 130px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .footer__footer a {
    width: 100px;
  }
}
@media screen and (max-width: 500px) {
  .footer__footer a {
    width: 80px;
  }
}
.footer__footer a:hover {
  opacity: 0.7;
}

#js-pagetop {
  position: fixed;
  width: 100px;
  height: 100px;
  bottom: 50px;
  right: 90px;
  cursor: pointer;
}
@media (min-width: 768px) and (max-width: 1080px) {
  #js-pagetop {
    width: 80px;
    height: 80px;
    right: 70px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  #js-pagetop {
    width: 60px;
    height: 60px;
    right: 30px;
  }
}
@media screen and (max-width: 500px) {
  #js-pagetop {
    width: 50px;
    height: 50px;
    right: 20px;
  }
}

/*=======================================

entry

=====================================*/
.entry {
  background-color: #51308E;
  padding-top: 145px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .entry {
    padding-top: 120px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry {
    padding-top: 60px;
  }
}
@media screen and (max-width: 500px) {
  .entry {
    padding-top: 60px;
  }
}

.main__title {
  padding-bottom: 45px;
  font-size: 45px;
  font-family: "M PLUS 1p", sans-serif;
  color: #fff;
  text-align: center;
  letter-spacing: 0.2em;
}
@media (min-width: 501px) and (max-width: 767px) {
  .main__title {
    font-size: 38px;
  }
}
@media screen and (max-width: 500px) {
  .main__title {
    font-size: 34px;
  }
}

.entry__top {
  margin-bottom: 40px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__top {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .entry__top {
    margin-bottom: 20px;
  }
}

.entry__wrap {
  width: 720px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .entry__wrap {
    width: 620px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__wrap {
    width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .entry__wrap {
    width: 90%;
  }
}

.entry__top-title {
  font-size: 28px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 30px;
  font-family: "M PLUS 1p", sans-serif;
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__top-title {
    font-size: 24px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .entry__top-title {
    font-size: 22px;
    padding-bottom: 20px;
  }
}

.entry__top-img {
  width: 260px;
  margin: 0 auto;
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__top-img {
    width: 200px;
  }
}
@media screen and (max-width: 500px) {
  .entry__top-img {
    width: 200px;
  }
}

.entry__top-date {
  color: #FFF000;
  padding: 40px 0;
  text-align: center;
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__top-date {
    padding: 20px 0;
  }
}
@media screen and (max-width: 500px) {
  .entry__top-date {
    padding: 20px 0;
  }
}
.entry__top-date span {
  font-size: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__top-date span {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .entry__top-date span {
    font-size: 16px;
  }
}
.entry__top-date p {
  font-size: 30px;
  padding-top: 10px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__top-date p {
    font-size: 24px;
    padding-top: 0;
  }
}
@media screen and (max-width: 500px) {
  .entry__top-date p {
    font-size: 24px;
    padding-top: 0;
  }
}

.entry__top-navTitle {
  font-size: 20px;
  line-height: 1.2;
  padding-bottom: 30px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__top-navTitle {
    font-size: 18px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .entry__top-navTitle {
    font-size: 18px;
    padding-bottom: 15px;
  }
}
.entry__top-navTitle span {
  font-weight: 700;
}

.entry__point-list {
  font-size: 16px;
  line-height: 1.2;
}
.entry__point-list a {
  color: #51308E;
}
.entry__point-list a:hover {
  opacity: 0.7;
}

.entry__main {
  margin-bottom: 40px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__main {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .entry__main {
    margin-bottom: 20px;
  }
}

.entry__main-title {
  font-size: 28px;
  padding-bottom: 30px;
  padding-top: 20px;
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__main-title {
    font-size: 24px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .entry__main-title {
    font-size: 22px;
    padding-bottom: 20px;
  }
}

.entry__main-message p {
  font-size: 23px;
  padding-bottom: 20px;
  color: #FFF000;
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__main-message p {
    font-size: 20px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 500px) {
  .entry__main-message p {
    font-size: 18px;
    padding-bottom: 10px;
  }
}

.entry__app-title {
  margin-top: 40px;
  position: relative;
  padding-left: 27px;
  padding-bottom: 15px;
}
.entry__app-title::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid #51308E;
  top: 0;
  left: 0;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .entry__app-title::before {
    top: 3px;
  }
}

.entry__app-wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .entry__app-wrap {
    display: block;
  }
}

.entry__app {
  width: calc((100% - 20px) / 3);
  position: relative;
}
@media screen and (max-width: 500px) {
  .entry__app {
    width: 100%;
    margin-bottom: 10px;
  }
}

.entry__app-btn1 {
  width: 60%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 60px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .entry__app-btn1 {
    bottom: 50px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__app-btn1 {
    bottom: 36px;
  }
}
@media screen and (max-width: 500px) {
  .entry__app-btn1 {
    bottom: 100px;
    width: 50%;
  }
}
.entry__app-btn1 a:hover {
  opacity: 0.7;
}

.entry__app-btn2 {
  width: 65%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
}
@media screen and (max-width: 500px) {
  .entry__app-btn2 {
    width: 55%;
    bottom: 25px;
  }
}
.entry__app-btn2 a:hover {
  opacity: 0.7;
}

.arrow__bottom {
  padding-top: 40px;
  padding-bottom: 30px;
}

.entry__run-point {
  position: relative;
  text-indent: 1em;
}
.entry__run-point::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #FCCF00;
  top: 5px;
  left: 0;
  display: inline-block;
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__run-point::before {
    top: 2px;
  }
}
@media screen and (max-width: 500px) {
  .entry__run-point::before {
    top: 2px;
  }
}

.screen__shot {
  display: flex;
}
@media (min-width: 501px) and (max-width: 767px) {
  .screen__shot {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .screen__shot {
    display: block;
  }
}

.screen__shot-img {
  width: 41%;
}
@media (min-width: 501px) and (max-width: 767px) {
  .screen__shot-img {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .screen__shot-img {
    width: 100%;
  }
}
.screen__shot-img p {
  font-size: 16px;
}

.screen__shot-right {
  width: 59%;
}
@media (min-width: 501px) and (max-width: 767px) {
  .screen__shot-right {
    width: 100%;
    padding-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .screen__shot-right {
    width: 100%;
    padding-top: 20px;
  }
}

.screen__shot-message {
  padding-bottom: 30px;
  border-bottom: 1px solid #51308E;
}
.screen__shot-message p {
  font-size: 23px;
  padding-bottom: 20px;
  color: #FFF000;
}
@media (min-width: 501px) and (max-width: 767px) {
  .screen__shot-message p {
    font-size: 20px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 500px) {
  .screen__shot-message p {
    font-size: 18px;
    padding-bottom: 10px;
  }
}
.screen__shot-message span {
  font-size: 16px;
}
.screen__shot-message a {
  font-size: 16p;
  color: #51308E;
}
.screen__shot-message a:hover {
  opacity: 0.7;
}

.screen__shot-howto {
  padding-top: 30px;
}

.howto__title {
  position: relative;
  padding-left: 27px;
  padding-bottom: 15px;
}
.howto__title::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid #51308E;
  top: 3px;
  left: 0;
}

.howto__text {
  font-size: 16px;
  padding-bottom: 20px;
}

.howto__phone p {
  padding-bottom: 15px;
}
.howto__phone li {
  text-indent: 1em;
  position: relative;
  font-size: 16px;
}
.howto__phone li::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #FCCF00;
  top: 3px;
  left: 0;
  display: inline-block;
}
.howto__phone a {
  font-size: 16px;
  margin-bottom: 20px;
  display: inline-block;
  color: #51308E;
}
.howto__phone a:hover {
  opacity: 0.7;
}

.entry__form-point {
  line-height: 1.7;
}
.entry__form-point p {
  font-size: 23px;
  padding-bottom: 20px;
  color: #FFF000;
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__form-point p {
    font-size: 20px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 500px) {
  .entry__form-point p {
    font-size: 18px;
    padding-bottom: 10px;
  }
}
.entry__form-point li {
  text-indent: 1em;
  position: relative;
}
.entry__form-point li::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #FCCF00;
  top: 7px;
  left: 0;
  display: inline-block;
}

.entry__result p {
  font-size: 23px;
  padding-bottom: 20px;
  color: #FFF000;
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__result p {
    font-size: 20px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 500px) {
  .entry__result p {
    font-size: 18px;
    padding-bottom: 10px;
  }
}
.entry__result li {
  text-indent: 1em;
  position: relative;
}
.entry__result li::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #FCCF00;
  top: 7px;
  left: 0;
  display: inline-block;
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__result li::before {
    top: 3px;
  }
}
@media screen and (max-width: 500px) {
  .entry__result li::before {
    top: 3px;
  }
}

.entry__bottom-title {
  font-size: 28px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 30px;
  font-family: "M PLUS 1p", sans-serif;
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__bottom-title {
    font-size: 24px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .entry__bottom-title {
    font-size: 22px;
    padding-bottom: 20px;
  }
}

.entry__bottom-img {
  width: 260px;
  margin: 0 auto;
}
@media (min-width: 501px) and (max-width: 767px) {
  .entry__bottom-img {
    width: 200px;
  }
}
@media screen and (max-width: 500px) {
  .entry__bottom-img {
    width: 200px;
  }
}

.pre__text {
  padding-top: 40px;
  display: flex;
}
@media (min-width: 501px) and (max-width: 767px) {
  .pre__text {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .pre__text {
    display: block;
  }
}

.pre__text1 {
  width: 50%;
  padding-right: 40px;
  border-right: 3px dotted #51308E;
}
@media (min-width: 501px) and (max-width: 767px) {
  .pre__text1 {
    width: 100%;
    padding-right: 0;
    border-right: none;
  }
}
@media screen and (max-width: 500px) {
  .pre__text1 {
    width: 100%;
    padding-right: 0;
    border-right: none;
  }
}

.pre__text2 {
  width: 50%;
  padding-left: 40px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .pre__text2 {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .pre__text2 {
    width: 100%;
    padding-left: 0;
  }
}

.pre__info {
  padding-top: 40px;
  padding-bottom: 20px;
}

.pre__info-item {
  display: flex;
  font-size: 20px;
  padding-bottom: 10px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .pre__info-item {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .pre__info-item {
    font-size: 18px;
  }
}

.pre__info-title {
  position: relative;
  padding-right: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .pre__info-title {
    white-space: nowrap;
    padding-right: 10px;
  }
}
@media screen and (max-width: 500px) {
  .pre__info-title {
    white-space: nowrap;
    padding-right: 10px;
  }
}
.pre__info-title::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  right: 0;
  top: 3px;
  background-color: #51308E;
}

.pre__info-text {
  padding-left: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .pre__info-text {
    padding-left: 10px;
  }
}
@media screen and (max-width: 500px) {
  .pre__info-text {
    padding-left: 10px;
  }
}

.pre__rule {
  font-size: 16px;
  padding-bottom: 60px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .pre__rule {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 500px) {
  .pre__rule {
    padding-bottom: 40px;
  }
}

.pre__join-title {
  font-size: 23px;
  padding-bottom: 25px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .pre__join-title {
    font-size: 20px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 500px) {
  .pre__join-title {
    font-size: 20px;
    padding-bottom: 15px;
  }
}

.pre__join-text {
  padding: 30px;
  border: 1px solid #51308E;
  border-radius: 4px;
  margin-bottom: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .pre__join-text {
    padding: 15px;
  }
}
@media screen and (max-width: 500px) {
  .pre__join-text {
    padding: 15px;
  }
}

.pre__join-btn {
  width: 470px;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 60px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .pre__join-btn {
    width: 370px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 500px) {
  .pre__join-btn {
    width: 280px;
    padding-top: 0;
    padding-bottom: 40px;
  }
}

.pre__join-point {
  font-size: 16px;
  padding-bottom: 40px;
}

.pre__join-contact {
  font-size: 16px;
}
.pre__join-contact a {
  color: #51308E;
}
.pre__join-contact a:hover {
  opacity: 0.7;
}

/*=======================================

present

=====================================*/
.present {
  background-color: #51308E;
  padding-top: 145px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .present {
    padding-top: 120px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .present {
    padding-top: 60px;
  }
}
@media screen and (max-width: 500px) {
  .present {
    padding-top: 60px;
  }
}

.main__text {
  color: #fff;
  text-align: center;
  padding-bottom: 60px;
}

.present__top {
  width: 860px;
  margin: 0 auto 50px auto;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .present__top {
    width: 700px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .present__top {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .present__top {
    width: 100%;
  }
}

.present__title1,
.present__title2,
.present__title3,
.present__title4 {
  font-size: 35px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 25px;
  position: relative;
}
@media (min-width: 501px) and (max-width: 767px) {
  .present__title1,
  .present__title2,
  .present__title3,
  .present__title4 {
    font-size: 30px;
  }
}
@media screen and (max-width: 500px) {
  .present__title1,
  .present__title2,
  .present__title3,
  .present__title4 {
    font-size: 28px;
  }
}
.present__title1::after,
.present__title2::after,
.present__title3::after,
.present__title4::after {
  position: absolute;
  content: "";
  border-top: 3px dotted #fff;
  width: calc(50% - 80px);
  right: 0;
}
.present__title1::before,
.present__title2::before,
.present__title3::before,
.present__title4::before {
  position: absolute;
  content: "";
  border-top: 3px dotted #fff;
  width: calc(50% - 80px);
  left: 0;
}

.present__title1::after {
  width: calc(50% - 80px);
}
@media screen and (max-width: 500px) {
  .present__title1::after {
    width: calc(50% - 70px);
  }
}
.present__title1::before {
  width: calc(50% - 80px);
}
@media screen and (max-width: 500px) {
  .present__title1::before {
    width: calc(50% - 70px);
  }
}

.present__title2::after {
  width: calc(50% - 70px);
}
@media screen and (max-width: 500px) {
  .present__title2::after {
    width: calc(50% - 60px);
  }
}
.present__title2::before {
  width: calc(50% - 70px);
}
@media screen and (max-width: 500px) {
  .present__title2::before {
    width: calc(50% - 60px);
  }
}

.present__title3::after {
  width: calc(50% - 110px);
}
@media screen and (max-width: 500px) {
  .present__title3::after {
    width: calc(50% - 95px);
  }
}
.present__title3::before {
  width: calc(50% - 110px);
}
@media screen and (max-width: 500px) {
  .present__title3::before {
    width: calc(50% - 95px);
  }
}

.present__title4::after {
  width: calc(50% - 160px);
}
@media screen and (max-width: 500px) {
  .present__title4::after {
    width: calc(50% - 130px);
  }
}
.present__title4::before {
  width: calc(50% - 160px);
}
@media screen and (max-width: 500px) {
  .present__title4::before {
    width: calc(50% - 130px);
  }
}

.present__container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
}

.present__top-wrap {
  width: 410px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .present__top-wrap {
    width: 330px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .present__top-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .present__top-wrap {
    width: 100%;
  }
}

.present__item {
  background-color: #fff;
  padding: 15px 0;
  position: relative;
}

.crown {
  display: block;
  width: 30px;
  margin: 0 auto;
  padding-bottom: 15px;
}

.present__item-title {
  font-size: 23px;
  text-align: center;
  font-weight: 700;
  font-family: "M PLUS 1p", sans-serif;
  letter-spacing: 0.08em;
  padding-bottom: 10px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .present__item-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .present__item-title {
    font-size: 20px;
  }
}

.present__item-text {
  font-size: 16px;
  text-align: center;
  font-weight: 600;
}
@media (min-width: 501px) and (max-width: 767px) {
  .present__item-text {
    font-size: 14px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 500px) {
  .present__item-text {
    font-size: 14px;
    padding: 0 20px;
  }
}
.present__item-text a {
  color: #51308E;
}
.present__item-text a:hover {
  opacity: 0.7;
}

.present__item-img {
  width: 80%;
  height: 220px;
  display: block;
  margin: 20px auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.number {
  width: 87px;
  position: absolute;
  top: 200px;
  left: 37px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .number {
    left: 15px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .number {
    left: 60px;
  }
}
@media screen and (max-width: 500px) {
  .number {
    width: 70px;
    left: 10px;
  }
}

.present__item-name {
  width: 330px;
  background-color: #E3007F;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  border-radius: 8px;
  display: none;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .present__item-name {
    width: 270px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .present__item-name {
    width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .present__item-name {
    width: 90%;
  }
}
.present__item-name.deside {
  display: block;
}

.present__flame-bottom {
  margin-top: -10px;
}

.present__join {
  width: 860px;
  margin: 0 auto 50px auto;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .present__join {
    width: 700px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .present__join {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .present__join {
    width: 100%;
  }
}

.present__join-img {
  width: 58%;
  display: block;
  margin: 25px auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.present__longRun {
  width: 860px;
  margin: 0 auto 50px auto;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .present__longRun {
    width: 700px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .present__longRun {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .present__longRun {
    width: 100%;
  }
}

.present__longRun-img {
  width: 69%;
  display: block;
  margin: 25px auto 0 auto;
}

.present__edion {
  width: 860px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .present__edion {
    width: 700px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .present__edion {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .present__edion {
    width: 100%;
  }
}

.present__edion-item {
  width: 720px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .present__edion-item {
    width: 620px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .present__edion-item {
    width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .present__edion-item {
    width: 90%;
  }
}

.present__edion-content {
  padding-top: 20px;
}

.present__edion-text {
  padding-bottom: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}
.present__edion-text span {
  font-size: 25px;
  color: #FFF000;
  font-weight: 600;
}

.present__edion-list {
  padding-bottom: 20px;
}
.present__edion-list li {
  font-size: 16px;
  text-indent: 1em;
  position: relative;
}
.present__edion-list li::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #51308E;
  top: 7px;
  left: 0;
  display: inline-block;
}
@media (min-width: 501px) and (max-width: 767px) {
  .present__edion-list {
    padding-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .present__edion-list {
    padding-top: 30px;
  }
}

.present__search p {
  text-align: center;
}
.present__search .present__sns-btn {
  width: 470px;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .present__search .present__sns-btn {
    width: 370px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 500px) {
  .present__search .present__sns-btn {
    width: 280px;
    padding-top: 0;
    padding-bottom: 10px;
  }
}

.present__search-link {
  padding-bottom: 10px;
  text-align: center;
}
.present__search-link a {
  color: #51308E;
  display: inline-block;
  text-align: center;
}
.present__search-link a:hover {
  opacity: 0.7;
}

.present__map{
position: relative;
width: 100%;
height: 0;
padding-top: 70.25%; /*16:9の比率にしたい場合、9/16=56.25%*/

}
.present__map iframe{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/*=======================================

event

=====================================*/
.event {
  background-color: #51308E;
  padding-top: 145px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .event {
    padding-top: 120px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .event {
    padding-top: 60px;
  }
}
@media screen and (max-width: 500px) {
  .event {
    padding-top: 60px;
  }
}

.event__top {
  margin-bottom: 40px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__top {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .event__top {
    margin-bottom: 20px;
  }
}

.event__wrap {
  width: 720px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .event__wrap {
    width: 620px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__wrap {
    width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .event__wrap {
    width: 90%;
  }
}
.event__wrap.coming-soon {
  display: none;
}

.hide__message {
  text-align: center;
  font-size: 40px;
  color: #51308E;
  padding-top: 20px;
  font-family: "M PLUS 1p", sans-serif;
  display: none;
}
.hide__message.coming-soon {
  display: block;
}

.event__title {
  position: relative;
}
.event__title img {
  position: absolute;
  top: -50px;
  left: 15px;
  width: 100px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .event__title img {
    left: 0;
    width: 80px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__title img {
    width: 70px;
    left: -50px;
  }
}
@media screen and (max-width: 500px) {
  .event__title img {
    width: 60px;
    left: -20px;
    top: -50px;
  }
}
.event__title h3 {
  font-size: 35px;
  text-align: center;
  padding-top: 20px;
  font-family: "M PLUS 1p", sans-serif;
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__title h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 500px) {
  .event__title h3 {
    font-size: 26px;
  }
}

.event__top-img {
  width: 100%;
  padding-bottom: 30px;
  padding-top: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__top-img {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .event__top-img {
    padding-bottom: 20px;
  }
}

.event__text {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__text {
    display: block;
    padding: 30px 0;
  }
}
@media screen and (max-width: 500px) {
  .event__text {
    display: block;
    padding: 20px 0;
  }
}

.event__text1 {
  width: 50%;
  padding-right: 40px;
  border-right: 3px dotted #51308E;
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__text1 {
    width: 100%;
    padding-right: 0;
    border-right: none;
  }
}
@media screen and (max-width: 500px) {
  .event__text1 {
    width: 100%;
    padding-right: 0;
    border-right: none;
  }
}

.event__text2 {
  width: 50%;
  padding-left: 40px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__text2 {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .event__text2 {
    width: 100%;
    padding-left: 0;
  }
}

.event__info-item {
  display: flex;
  font-size: 20px;
  padding-bottom: 10px;
}
.event__info-item.is-column {
  display: block;
}
.event__info-item.is-column .event__info-title {
  margin-bottom: 5px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__info-item {
    display: block;
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .event__info-item {
    display: block;
    font-size: 18px;
  }
}

.event__info-title {
  position: relative;
  padding-right: 20px;
  display: inline-block;
}
.event__info-title::after {
  position: absolute;
  content: "";
  height: 20px;
  width: 1px;
  background-color: #51308E;
  right: 0;
  top: 3px;
}

.event__info-text {
  padding-left: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__info-text {
    padding-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .event__info-text {
    padding-left: 0;
  }
}

.event__info-list li {
  padding-bottom: 5px;
  position: relative;
  text-indent: 1em;
}
.event__info-list li::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #FCCF00;
  top: 5px;
  left: 0;
  display: inline-block;
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__info-list li::before {
    top: 2px;
  }
}
@media screen and (max-width: 500px) {
  .event__info-list li::before {
    top: 2px;
  }
}

.event__map {
  padding-top: 40px;
}
.event__map .event__map-wrap {
  padding-top: 53%;
  width: 100%;
  height: 0;
  position: relative;
}
.event__map .event__map-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__map {
    padding-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .event__map {
    padding-top: 20px;
  }
}

.event__course-wrap {
  padding-bottom: 50px;
  border-bottom: 2px dotted #51308E;
}
.event__course-wrap:not(:first-child) {
  padding-top: 35px;
}

.event__course {
  display: flex;
}

.event__course-left {
  width: 100px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__course-left {
    width: 60px;
  }
}
@media screen and (max-width: 500px) {
  .event__course-left {
    width: 50px;
  }
}
.event__course-left .event__course-voice {
  width: 100px;
  padding-bottom: 10px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__course-left .event__course-voice {
    width: 60px;
  }
}
@media screen and (max-width: 500px) {
  .event__course-left .event__course-voice {
    width: 50px;
  }
}
.event__course-left .event__course-img {
  width: 90px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__course-left .event__course-img {
    width: 55px;
  }
}
@media screen and (max-width: 500px) {
  .event__course-left .event__course-img {
    width: 45px;
  }
}

.event__course-right {
  margin-left: 30px;
  padding-top: 10px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .event__course-right {
    margin-left: 20px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__course-right {
    margin-left: 15px;
    padding-top: 0;
  }
}
@media screen and (max-width: 500px) {
  .event__course-right {
    margin-left: 10px;
    padding-top: 0;
  }
}
.event__course-right h4 {
  font-size: 30px;
  padding-bottom: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__course-right h4 {
    font-size: 24px;
  }
}
@media screen and (max-width: 500px) {
  .event__course-right h4 {
    font-size: 20px;
  }
}

.event__course-item {
  font-size: 20px;
  padding-bottom: 15px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__course-item {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .event__course-item {
    font-size: 17px;
  }
}

.event__join {
  padding-top: 40px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .event__join {
    padding-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .event__join {
    padding-top: 20px;
  }
}

.join__person-title {
  width: 300px;
  margin: 0 auto;
}

.person__img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .person__img {
    width: 160px;
    height: 160px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .person__img {
    width: 130px;
    height: 130px;
  }
}
@media screen and (max-width: 500px) {
  .person__img {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    margin-top: 20px;
  }
}

.person__name {
  text-align: center;
  padding-top: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .person__name {
    padding-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .person__name {
    padding-top: 10px;
  }
}

.join__person {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
@media screen and (max-width: 500px) {
  .join__person {
    display: block;
  }
}

.join__person-item:not(:first-child) {
  margin-left: 25px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .join__person-item:not(:first-child) {
    margin-left: 15px;
  }
}
@media screen and (max-width: 500px) {
  .join__person-item:not(:first-child) {
    margin-left: 0;
  }
}

.event__caution {
  padding-top: 40px;
}
.event__caution p {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 5px;
}
.event__caution li {
  font-size: 16px;
}

/*=======================================

faq

=====================================*/
.faq {
  background-color: #51308E;
  padding-top: 145px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .faq {
    padding-top: 120px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .faq {
    padding-top: 60px;
  }
}
@media screen and (max-width: 500px) {
  .faq {
    padding-top: 60px;
  }
}

.faq__title {
  position: relative;
  padding-top: 12px;
  font-size: 30px;
  margin: 40px auto 20px auto;
  text-align: center;
  width: 450px;
  height: 60px;
  background-color: #FFF000;
  font-weight: 600;
  color: #51308E;
}
.faq__title::after {
  position: absolute;
  top: 0;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
  right: 0;
  border-width: 30px 20px 30px 0px;
  border-color: transparent #51308E transparent transparent;
  border-style: solid;
}
@media (min-width: 501px) and (max-width: 767px) {
  .faq__title::after {
    border-width: 25px 15px 25px 0px;
  }
}
@media screen and (max-width: 500px) {
  .faq__title::after {
    border-width: 25px 15px 25px 0px;
  }
}
.faq__title::before {
  position: absolute;
  top: 0;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
  left: 0;
  border-width: 30px 0px 30px 20px;
  border-color: transparent transparent transparent #51308E;
  border-style: solid;
}
@media (min-width: 501px) and (max-width: 767px) {
  .faq__title::before {
    border-width: 25px 0px 25px 15px;
  }
}
@media screen and (max-width: 500px) {
  .faq__title::before {
    border-width: 25px 0px 25px 15px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .faq__title {
    font-size: 26px;
    width: 350px;
    height: 50px;
    padding-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .faq__title {
    font-size: 24px;
    width: 300px;
    height: 50px;
    padding-top: 10px;
  }
}

.faq__wrap {
  display: flex;
  position: relative;
  width: 860px;
  margin: 10px auto;
  padding: 40px 110px 45px 50px;
  background-color: white;
  border-radius: 4px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .faq__wrap {
    width: 700px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .faq__wrap {
    width: 100%;
    padding: 40px;
  }
}
@media screen and (max-width: 500px) {
  .faq__wrap {
    width: 100%;
    padding: 20px;
  }
}

.faq__icon {
  width: 30px;
}
.faq__icon img {
  width: 100%;
}
@media (min-width: 501px) and (max-width: 767px) {
  .faq__icon {
    width: 25px;
  }
}
@media screen and (max-width: 500px) {
  .faq__icon {
    width: 25px;
  }
}

.faq__text {
  margin-left: 60px;
  width: calc(100% - 100px);
}
@media (min-width: 501px) and (max-width: 767px) {
  .faq__text {
    margin-left: 30px;
    width: calc(100% - 55px);
  }
}
@media screen and (max-width: 500px) {
  .faq__text {
    margin-left: 20px;
    width: calc(100% - 45px);
  }
}

.faq__text-q {
  font-size: 23px;
  color: #E3007F;
  padding-bottom: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .faq__text-q {
    font-size: 21px;
  }
}
@media screen and (max-width: 500px) {
  .faq__text-q {
    font-size: 20px;
  }
}

.faq__text-a a {
  width: 100%;
  display: inline-block;
  word-wrap: break-word;
}
.faq__text-a a:hover {
  opacity: 0.7;
}

.contact {
  margin-top: 20px;
}

.contact__title {
  font-size: 28px;
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
  margin-bottom: 20px;
}
@media (min-width: 501px) and (max-width: 767px) {
  .contact__title {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 500px) {
  .contact__title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.contact__wrap {
  display: flex;
  width: 720px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .contact__wrap {
    width: 620px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .contact__wrap {
    width: 90%;
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .contact__wrap {
    display: block;
    width: 90%;
  }
}

.contact__left {
  width: 50%;
  border-right: 3px dotted #51308E;
}
@media (min-width: 501px) and (max-width: 767px) {
  .contact__left {
    width: 100%;
    border-right: none;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .contact__left {
    width: 100%;
    border-right: none;
    text-align: center;
  }
}

.contact__sub-title {
  font-size: 23px;
  font-family: "M PLUS 1p", sans-serif;
  padding-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .contact__sub-title {
    padding-bottom: 10px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .contact__sub-title {
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 500px) {
  .contact__sub-title {
    padding-bottom: 5px;
    font-size: 20px;
  }
}

.contact__phone-number {
  font-size: 47px;
}
.contact__phone-number a {
  color: #51308E;
}
.contact__phone-number a:hover {
  opacity: 0.7;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .contact__phone-number {
    font-size: 44px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .contact__phone-number {
    font-size: 44px;
  }
}
@media screen and (max-width: 500px) {
  .contact__phone-number {
    font-size: 40px;
  }
}

.contact__right {
  padding-left: 30px;
}
.contact__right p {
  padding-top: 10px;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .contact__right {
    padding-left: 15px;
  }
}
@media (min-width: 501px) and (max-width: 767px) {
  .contact__right {
    padding-left: 0;
    text-align: center;
    padding-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .contact__right {
    padding-left: 0;
    text-align: center;
    padding-top: 10px;
  }
}

.contact__btn a {
  display: inline-block;
  width: 330px;
  height: 90px;
  font-size: 25px;
  font-weight: 700;
  color: #51308E;
  background-color: #FFF000;
  padding-top: 28px;
  text-align: center;
  border-radius: 6px;
}
.contact__btn a:hover {
  opacity: 0.7;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .contact__btn a {
    width: 270px;
    height: 70px;
    font-size: 20px;
    padding-top: 24px;
  }
}
@media screen and (max-width: 500px) {
  .contact__btn a {
    width: 270px;
    height: 70px;
    font-size: 20px;
    padding-top: 24px;
  }
}/*# sourceMappingURL=style.css.map */