@charset "utf-8";
/* CSS Document */

/*TOPページ
************************/
/*メインビジュアル*/
#mainvisual{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  height: 22vw;
  background: url("../img/mainvisual.jpg") no-repeat center center / cover;
}
#mainvisual h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #FFF;
  z-index: 2;
}
@media (max-width: 1080px) {
  #mainvisual{
    height: 27vw;
  }
}
@media (max-width: 768px) {
  #mainvisual{
    height: 40vw;
  }
  #mainvisual h1{
    width: 80vw;
  }
}
/*バナー*/
#banner{
  padding: 20px 0;
}
#banner ul.bannerList{
  max-width: 800px;
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#banner ul.bannerList li{
  width: 49%;
  max-width: 390px;
}
#banner ul.bannerList li a{
  display: block;
  padding: 10px 15px;
  border-radius: 5px;
  background: #000;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFF;
}
#banner ul.bannerList li a:hover{
  filter:alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}
#banner ul.bannerList li a{
  display: flex;
  width: 100%;
  transition: all 0.3s ease;
  text-decoration: none;
}
#banner ul.bannerList li.about a{
  background: url("../img/arrow01.svg") #00acc8 no-repeat 95% 50% / 7px 11px;
  border: #5acadc solid 3px;
}
#banner ul.bannerList li.about a:hover{
  background: url("../img/arrow01.svg") #00acc8 no-repeat 98% 50% / 7px 11px;
}
#banner ul.bannerList li.join a{
  background: url("../img/arrow01.svg") #ecb236 no-repeat 95% 50% / 7px 11px;
  border: #f6d080 solid 3px;
}
#banner ul.bannerList li.join a:hover{
  background: url("../img/arrow01.svg") #ecb236 no-repeat 98% 50% / 7px 11px;
}
#banner ul.bannerList li span{
  line-height: 52px;
}
#banner ul.bannerList li.about a span {
  background: url("../img/icon_about.svg") no-repeat left 50% / 47px 37px;
  padding-left: 70px;
}
#banner ul.bannerList li.join a span{
  background: url("../img/icon_join.svg") no-repeat left 50% / 48px 48px;
  padding-left: 75px;
}
@media (max-width: 768px) {
  #banner{
    padding: 2vw 0;    
  }
  #banner ul.bannerList li a{
    padding: 2vw;
    font-size: 1rem;
  }
  #banner ul.bannerList li.about a,
  #banner ul.bannerList li.about a:hover{
    background: url("../img/arrow01.svg") #00acc8 no-repeat 96% 50% / 7px 11px;
  }
  #banner ul.bannerList li.join a,
  #banner ul.bannerList li.join a:hover{
    background: url("../img/arrow01.svg") #ecb236 no-repeat 96% 50% / 7px 11px;
  }
  #banner ul.bannerList li span{
    line-height: 5vw;
  }
  #banner ul.bannerList li.about a span{
    background: url("../img/icon_about.svg") #00acc8 no-repeat left 50% / 5vw auto;
    padding-left: 7vw;
  }
  #banner ul.bannerList li.join a span{
    background: url("../img/icon_join.svg") no-repeat left 50% / 5vw auto;
    padding-left: 7vw;
  }
}
@media (max-width: 480px) {
  #banner ul.bannerList{
    display: block;
  }
  #banner ul.bannerList li{
    width: 100%;
    max-width:initial;
    max-width:auto;
    text-align: center;
  }
  #banner ul.bannerList li a{
    padding: 2vw 3vw;
    font-size: .95rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #banner ul.bannerList li a span{
    display: inline-block;
    height: auto;
    line-height: 8vw;
  }
  #banner ul.bannerList li.about{
    margin-bottom: 2vw;
  }
  #banner ul.bannerList li.about a span{
    background: url("../img/icon_about.svg") #00acc8 no-repeat left 50% / 7vw auto;
    padding-left: 10vw;
  }
  #banner ul.bannerList li.join a span{
    background: url("../img/icon_join.svg") no-repeat left 50% / 7vw auto;
    padding-left: 10vw;
  }

}
/*お知らせ*/
#news{
  background: #f0f3f5;
  padding: 45px 0 40px 0;
}
#news h2{
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
}
#news h2 span{
display: inline-block;
  padding-left: 40px;
  background: url("../img/icon_news.svg") no-repeat left center / 26px 23px;
}
#news .news_inner{
  max-width: 800px;
  width: 95%;
  margin: 0 auto;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
#news .post_item li{
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: #dbdada solid 1px;
  font-size: 0.875rem;
}
#news .post_item li:last-of-type{
  border-bottom: 0;
}
#news .post_item li.new a span::before{
  content: 'NEW';
  display: inline-block;
  padding: 3px 12px;
  color: #e20d4e;
  font-size: .75rem;
  margin-right: 10px;
  background: #FFF;
  line-height: 1.3;
}
#news .post_item li time{
  width: 108px;
  color: #5c5c5c;
}
#news .post_item li a{
  color: #000000;
  text-decoration: none;
  display: block;
  width: -webkit-calc(100% - 108px);
  width: -moz-calc(100% - 108px);
  width: calc(100% - 108px);
}
#news .post_item li a:hover{
  color: #00acc8;
}
#news .moreLink{
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700; 
  margin-top: 15px;
}
#news .moreLink a{
  max-width: 240px;
  margin: 0 auto;
  display: block;
  text-decoration: none;
  color: #FFF;
  background: url("../img/arrow01.svg") #00acc8 no-repeat 92% center / 7px 11px;
  border-radius: 5px;
  padding: 10px 15px;
  line-height: 1.3;
}
#news .moreLink a:hover{
  background: url("../img/arrow01.svg") #0261a3 no-repeat 96% center / 7px 11px;
}
@media (max-width: 480px) {
  #news{
    padding: 7vw 0;
  }
  #news h2{
    font-size: 1.5rem;
  }
  #news h2 span{
    background: url("../img/icon_news.svg") no-repeat left center / 4vw auto;
    padding-left: 6vw;
  }
  #news .post_item li{
    padding: 3vw 0;
    display: block;
    font-size: 1rem;
  }
  #news .post_item li.new a span::after{
    padding: .5vw 1vw;
    font-size: .75rem;
    margin-left: 1vw;
  }
  #news .post_item li time{
    width: 100%;
    font-size: .85rem;
    margin-bottom: 1vw;
  }
  #news .post_item li a{
    display: block;
    width: 100%;
  }
  #news .moreLink{
    margin-top: 4vw;
  }
  #news .moreLink a,
  #news .moreLink a:hover{
    max-width: 50vw;
    background: url("../img/arrow01.svg") #00acc8 no-repeat 92% center / 7px 11px;
    border-radius: 5px;
    padding: 3vw;
  }
}




