@charset "utf-8";
/*******************************************************

　共通

*******************************************************/



/*-------------------------------------
　　見出し
-------------------------------------*/

h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  h3 {
    font-size: 22px;
  }
}

/*-------------------------------------
　　キャッチ
-------------------------------------*/

#catch {
    font-size: 20px;
    text-align: center;
    color: #FFF;
    padding: 40px 10px 15px 10px;
    background: var(--mainColor);
}
#top, #news, #kirc, #member {
  padding: 50px 0 60px 0;
}


@media screen and (max-width: 767px) {
#catch {
font-size: 14px;
padding: 10px 10px 10px 10px;
}

#top, #news, #kirc, #member {
    padding: 20px 0 20px 0;
}
}




/*-------------------------------------
　　topics
-------------------------------------*/
section#topics {
    padding: 100px 0px 50px 0px;
}

section#topics .container {
    background: #fffbea;
    max-width: 1000px !important;
    width: 100%;
    padding: 50px 50px 10px 50px !important;
}

@media screen and (max-width: 767px) {
section#topics {
    padding: 20px 0px 20px 0px;
}
section#topics .container {
 padding: 20px 10px 10px 10px !important;
}
}
/*-------------------------------------
　　最新情報
-------------------------------------*/

h2.title {
font-size: 40px;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}
h2:before {
  display: inline-block;
  font-family: var(--fontIcon);
  font-weight:100;
  color: var(--mainColor);
  margin-right: 20px;
  vertical-align:middle;
}

#news h2:before{
 content: "chat";
}
#kirc h2:before {
content: "send";
}
#member h2:before {
 content: "groups";
}

#kirc {
  background: url("../images/kirc_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#news, container, #kirc .container, #member .container {
  width: 100% !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  margin: auto;
}


@media screen and (max-width: 767px) {
h2.title {
    font-size: 24px;
margin-bottom: 0px;
}
h2:before {
margin-right: 10px;
}

}

/*-------------------------------------
　　ボタン
-------------------------------------*/
.button {
  text-align: right;
}
.button a {
  font-size: 16px;
  line-height: 100%;
  padding: 8px 15px 8px 20px;
  margin-top: 10px;
  color: #fff;
  background: var(--btnColor1);
  text-decoration: none;
  border-radius: 5px !important;
	
}

.button a:hover {
    background: #ddd;
    color: #000;
}

@media screen and (max-width: 767px) {
.button a {
    font-size: 14px;
}

}