@charset "UTF-8";

/*画像
---------------------------------------------------------------------------*/
.main-visual {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
}
.main-visual img{
width: 100%;
height: auto;
margin: auto;
object-fit: cover;
}

/*背景
---------------------------------------------------------------------------*/
#bg_top{
background: #cee9cc;
padding: 40px 0
}
#bg_link{
background: #fff;
margin: 40px 0
}
#bg_info{
padding-top: 40px
}
@media screen and (min-width: 1024px) {
#bg_top{
padding: 50px 0
}
#bg_link{
margin: 50px 0
}
#bg_info{
padding-top: 50px
}
}

/*btn_BOX
---------------------------------------------------------------------------*/
.btn_info{
margin-top: 40px;
display: block
}

/*read-more
---------------------------------------------------------------------------*/
.btn_read_more {
display: flex;
justify-content: center;
align-items: center;
width: 150px;
padding: .7em 2em;
background-color: #00982e;
color: #fff;
font-weight: normal;
font-size: 0.8em;
border: 1px solid #00982e;
border-radius: 100vh;
position: relative;
transition: 0.5s;
text-align: center
}
.btn_read_more:hover {
color: #00982e;
background: #fff;
transition: 0.5s;
}
@media screen and (min-width: 1024px) {
.btn_read_more {
width: 130px;
}
}


/* バナー
---------------------------------------------------- */
.card-group{
  margin-left: auto;
  margin-right: auto;
  max-width: 1024px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.card{
  width: 100%;
  height: auto;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
	border-radius: 20px;
	padding: 10px
}
.card01{
  background: #de5600;
}
.card02{
  background: #00982e;
}

.card img {
max-width: 100%;
  height: auto;
	box-sizing: border-box;
  object-fit: cover;
}

.card:hover {
box-shadow: 0 0 0 rgba(0,0,0,.1);
opacity: 0.5;
transition: 0.5s;
}
@media only screen and (max-width: 767px) {
.card:first-child {
  margin-bottom: 20px
}
}
@media only screen and (min-width: 768px) {
.card-group > :nth-child(2n){
  margin-left: 20px;
}
.card{
  width: calc((100% - 20px * 1) / 2);
}
}
@media only screen and (min-width: 1024px) {
.card-group > :nth-child(2n){
  margin-left: 50px;
}
.card{
  width: calc((100% - 50px * 1) / 2);
	padding: 20px
}
}

/* link 横並び
---------------------------------------------------- */
.button-list-box ul{
display: flex;
list-style: none;
justify-content: space-between;
margin: 0;
padding: 0;
flex-wrap: wrap;
width: 100%;
}
.button-list-box li {
width: calc(33.3333% - 10px);
margin-bottom: 15px;
display: table;
text-align: center;
line-height: 1.6
}
.button-list-box li a{
display: table-cell;
vertical-align: middle;
padding: 15px 5px;
text-decoration: none;
background: #cee9cc;
color: #333;
border-radius: 100vh;
border: 1px solid #cee9cc;
}
.button-list-box li a:hover {
color: #00982e;
background: #fff;
transition: 0.5s;
opacity: 0.5;
border: 1px solid #00982e;
}


.button-list-box li:nth-child(3n+1) {
clear: both;
}
@media screen and (max-width:1023px) { 
.button-list-box li {
width: calc(50% - 5px);
font-size: 80%;
line-height: 1.3;
margin-bottom: 10px;
}
.button-list-box li  a{
padding: 15px 0;
}
}



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

} 
@media screen and (min-width: 1024px) {

}
@media screen and (min-width: 1200px) {

} 