@charset "utf-8";
.event_upcoming{
  padding-bottom: 80px;
}

.event_list{
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .event_list {
    padding-bottom: 0px;
  }
  .event_upcoming{
    padding-bottom: 5%  ;
  }
}

.target_check_box{
  position: relative;
  margin: 5px 0;
}

.target_check_box input {
  position: absolute;
  opacity: 0;
}

.target_check_box input{
  display: none;
}

.target_check_box input + span {
    padding-left: 0em;
    position: relative;
    font-size: 1.6rem;
    padding: 0 20px;
    border: 3px solid #4198CE;
    background: #fff;
    border-radius: 30px;
    height: auto;
    min-height: 39px;
    display: inline-block;
    padding-top: 4px;
    font-weight: bold;
}

.target_check_box.u12 input + span{
  border-color: #4198CE;
}

.target_check_box.u15 input + span{
  border-color:#DF3F23;
}
.target_check_box.u18 input + span{
  border-color:#EEC32B;
}
.target_check_box.u19 input + span{
  border-color:#4FB73E;
}
.target_check_box.wm input + span{
  border-color:#FF00A1;
}
.target_check_box.u12 input:checked + span{
  background: #4198CE;
  color: #fff;
}
.target_check_box.u15 input:checked + span{
  background:#DF3F23;
  color: #fff;
}
.target_check_box.u18 input:checked + span{
  background:#EEC32B;
  color: #fff;
}
.target_check_box.u19 input:checked + span{
  background:#4FB73E;
  color: #fff;
}
.target_check_box.wm input:checked + span{
  background:#FF00A1;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .target_check_box input + span {
    width: 100%;
    display: block;
  }
  .target_check_box input + span {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 500px) {

  .target_check_box input + span {
    font-size: 1.3rem;
    white-space: nowrap;
    padding: 0px 5px 0 10px;
    padding-top: 8px;
    font-weight: bold;
  }
}

.target_row{
  display: flex;
  gap:20px;
  align-items: center;
  flex-wrap:wrap;
}

.target_row ul{
  display: flex;
  align-items: center;
  gap:10px;
}
.target_row ul li{

}
@media screen and (max-width: 1100px) {
  .target_row {
    display: block;
    margin-bottom: 20px;
  }

  .target_row ul{
    flex-wrap:wrap;
    gap:15px 10px;
    margin-bottom: 20px;
  }

  .target_row ul>li {
    width: 33%;
    min-width: 210px;
  }
}
@media screen and (max-width: 768px) {
  .target_row ul {
    gap:15px 10px;
  }
  .target_row ul>li {
    width: calc((100% - 10px) / 2);
    min-width: 0;
  }
}

.area_check_wrap{
  padding: 20px 30px 10px;
  border-radius: 20px;
  background: #fff;
}

.area_check_list{
  display: flex;
  flex-direction: column;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 12px;
}

.area_check_list>li{
  width: 100%;
  display: flex;
}

.area_check_box {
  position: relative;
  margin: 0px 0;
  width: 115px;
}

.area_check_box > input {
  position: absolute;
  opacity: 0;
}

.area_check_box > input{
  display: none;
}

.area_check_box > input + span {
  padding-left: 0em;
  position: relative;
  font-size: 1.6rem;
  padding: 2px 0 0 36px;
  background: #fff;
  border-radius: 30px;
  height: 30px;
  width: 100px;
  display: inline-block;
  font-weight: bold;
  border-radius: 50px;
}

.area_check_box > input + span::after{
  content: '';
  position: absolute;
  top: 5px;
  left: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f10;
}

.area_check_box > input:checked + span{
  color:#fff;
}
.area_check_box > input:checked + span::after{
  background: #fff !important;
}

@media screen and (max-width: 768px) {
  .area_check_wrap {
    padding: 0px;
    border-radius: 0px;
    background: transparent;
  }

  .area_check_list{
    display: flex;
    gap:10px 10px;
    margin-bottom: 25px;
  }

  .area_check_list>li{
    flex-wrap:wrap;
    width: 100%;
    min-width: 0px;
  }

  .area_check_box {
    position: relative;
    margin: 5px 0;
    width: 100%;
  }

  .area_check_box > input + span {
    display: block;
    width: 100%;
  }

  .area_check_box > input + span{
    font-size: 1.8rem;
    padding: 10px 20px 11px;
    height: auto;
    padding-left: 43px;
  }

  .area_check_box > input + span::after {
    top: 16px;
    left: 16px;
  }
}

.pref_check_list {
  gap: 0.1em 0.5em;
  flex-wrap: wrap;
  width: calc(100% - 130px);
  padding-top: 2px;
  display: flex;
  gap: 0.1em 0.7em;
}

.pref_check_list .check_box span {
  color: var(--main-clr);
}

@media screen and (max-width: 768px) {

  .pref_check_list.show {
    display: flex;
  }

  .pref_check_list {
    display: none;
    padding: 10px 5px;
    gap: 15px 10px;
    flex-wrap: wrap;
    width: 100%;
  }

  .pref_check_list .check_box{
    max-width: 210px;
    width: calc( (100% - 30px) / 3);
  }

}

.team_check_list {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {

  .team_check_list {
    gap: 15px 15px;
    flex-wrap: wrap;
  }

  .team_check_list .check_box{
    max-width: 210px;
    width: calc( (100% - 15px) / 2);
  }
}

.area_check_box input + span{
  color: var(--main-clr);
}
.area_check_box.hokkaido input + span::after{ background:var(--hokkaido)}
.area_check_box.tohoku input + span::after{ background: var(--tohoku);}
.area_check_box.kanto input + span::after{ background: var(--kanto);}
.area_check_box.tokai input + span::after{ background: var(--tokai);}
.area_check_box.hokuriku input + span::after{ background: var(--hokuriku);}
.area_check_box.kinki input + span::after{ background: var(--kinki);}
.area_check_box.chugoku input + span::after{ background: var(--chugoku);}
.area_check_box.shikoku input + span::after{ background: var(--shikoku);}
.area_check_box.kyushu input + span::after{ background: var(--kyushu);}
.area_check_box.okinawa input + span::after{ background: var(--okinawa);}
.area_check_box.other input + span::after{ background: var(--other);}

.area_check_box.hokkaido input:checked + span{  background:var(--hokkaido)}
.area_check_box.tohoku input:checked + span{  background:var(--tohoku)}
.area_check_box.kanto input:checked + span{  background: var(--kanto);}
.area_check_box.tokai input:checked + span{  background: var(--tokai);}
.area_check_box.hokuriku input:checked + span{  background: var(--hokuriku);}
.area_check_box.kinki input:checked + span{  background: var(--kinki);}
.area_check_box.chugoku input:checked + span{  background: var(--chugoku);}
.area_check_box.shikoku input:checked + span{  background: var(--shikoku);}
.area_check_box.kyushu input:checked + span{  background: var(--kyushu);}
.area_check_box.okinawa input:checked + span{  background: var(--okinawa);}
.area_check_box.other input:checked + span{  background: var(--other);}

.event_section_ttl{
  font-weight: bold;
  font-size: 3.4rem;
  line-height: 1.3;
  text-align: left;
  color: #0b1f07;
  margin-bottom: 10px;
}

.event_section_post{
  text-align: right;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: calc(21 / 14);
  text-align: right;
  color: #9fa79e;
  margin-bottom: 33px;
}

.event_schedule .cmp_tbl table th{
  text-align: center;
}
.event_schedule .cmp_tbl table td{
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 1100px) {
  .event_section_ttl {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}

.cmp_one_img figure{
  max-width: 900px;
}

.cmp_one_img figure img{
  border-radius: 0;
}

.gallery_main{
  max-width: 800px;
  margin-bottom: 16px;
}
.gallery_main_wrap{
  position: relative;
}

.swiper-button-next {
  transform: translateX(35px);
}

.swiper-button-prev {
  transform: translateX(-35px);
}

.gallery_main .swiper-slide{
  /*aspect-ratio: 900 / 600;*/
  overflow: hidden;
  border-radius: 26px;
}

.gallery_thumb .swiper-slide img,
.gallery_main .swiper-slide img{
  /*height: 100%;*/
  object-fit: cover;
}

.gallery_thumb_wrap{
  max-width: 662px;
  margin: 0 auto 64px;
}

.gallery_thumb .swiper-wrapper{
  justify-content: center;
  gap:22px;
}

.gallery_thumb .swiper-slide{
  aspect-ratio: 115 / 77;
  overflow: hidden;
  border-radius: 10px;
  width: calc((100% - 22px*4) / 5 );
}

.gallery_thumb .swiper-slide.swiper-slide-thumb-active{
  opacity: 0.5;
}
.cmp_wrap.event_request_wrap{
  background: #F9F8F4;
  width: 100%;
  max-width: 100%;
  padding: 50px 0;
}
.event_request_box{
  padding: 2em;
  max-width: 1280px;
  margin: 0 auto;
  color: #666;
}
.event_request_box h2{
  font-size: 2.0rem;
  margin-bottom: 0.75em;
}
.event_request_box p{
  margin-bottom: 0.75em;
}
.event_request_box ul li{
  display: inline-block;
  margin-right: 2em;
}
.event_request_box ul li a{
  background-image: url("/common/svg/blank.svg");
  background-size: 15px;
  background-repeat: no-repeat, no-repeat;
  background-position: right;
  padding-right: 20px;
}
@media screen and (max-width: 1100px) {


  .swiper-button-next {
    transform: translateX(0px);
    display: none;
  }

  .swiper-button-prev {
    display: none;
    transform: translateX(0px);
  }

  .gallery_thumb_wrap{
    max-width: 662px;
    margin: 0 auto 30px;
  }

}
@media screen and (max-width: 768px) {
  .gallery_main{
    margin-bottom: 10px;
  }

  .gallery_thumb .swiper-wrapper{
    justify-content: center;
    gap:10px;
  }

  .gallery_thumb .swiper-slide{
    border-radius: 10px;
    width: calc((100% - 10px*4) / 5 );
  }
  .event_request_box{
    padding: 1.5em;
  }
  .event_request_box h2{
    font-size: 1.6rem;
  }
  .event_request_box p{
    font-size: 1.4rem;
  }
  .event_request_box ul li{
    margin-right: 0;
    margin-bottom: 0.5em;
    font-size: 1.4rem;
  }
  .event_request_box ul li a{
    background-size: 10px;
    padding-right: 15px;
  }
}
