#breadcrumb {
  padding: 20px 2.5%;
}
@media only screen and (max-width: 768px) {
  #breadcrumb {
    padding: 12px;
  }
}
#breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#breadcrumb ul li {
  position: relative;
  font-size: 14px;
  margin: 0 0 5px;
}
#breadcrumb ul li::after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e806";
  margin: 0 6px;
}
#breadcrumb ul li:last-child::after {
  content: none;
}
@media only screen and (max-width: 768px) {
  #breadcrumb ul li {
    font-size: 10px;
  }
}
#breadcrumb ul li a {
  font-weight: 500;
}
#breadcrumb ul li a:hover {
  color: #007dc4;
}

/*--------------------------
main_visual
---------------------------*/
#main_visual {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 220px;
  padding: 0 12px;
  background: #f7f7f7;
}
@media only screen and (max-width: 768px) {
  #main_visual {
    height: 140px;
  }
}
@media only screen and (max-width: 380px) {
  #main_visual {
    height: 120px;
  }
}
#main_visual h1 {
  position: relative;
  font-size: 36px;
  font-weight: 500;
  color: #333;
  text-align: center;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  #main_visual h1 {
    font-size: 22px;
  }
}

/*--------------------------
section01
---------------------------*/
#section01 {
  padding: 60px 0 120px;
}
@media only screen and (max-width: 768px) {
  #section01 {
    padding: 40px 0 80px;
  }
}
#section01 .container .lead_box {
  text-align: center;
  margin: 0 0 40px;
}
@media only screen and (max-width: 768px) {
  #section01 .container .lead_box {
    margin: 0 0 20px;
  }
}
#section01 .container .lead_box p {
  font-weight: 500;
}
#section01 .container .column_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  #section01 .container .column_list {
    gap: 20px 10px;
  }
}
#section01 .container .column_list li {
  width: calc(33.3333333333% - 27px);
}
@media only screen and (max-width: 768px) {
  #section01 .container .column_list li {
    width: calc(50% - 5px);
  }
}
#section01 .container .column_list li a {
  position: relative;
  display: block;
  height: 100%;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
#section01 .container .column_list li a figure .thumb {
  position: relative;
  overflow: hidden;
}
#section01 .container .column_list li a figure .thumb::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  opacity: 0;
}
#section01 .container .column_list li a figure .thumb img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
#section01 .container .column_list li a figure figcaption {
  padding: 16px;
}
@media only screen and (max-width: 768px) {
  #section01 .container .column_list li a figure figcaption {
    padding: 8px;
  }
}
#section01 .container .column_list li a figure figcaption span {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  padding: 6px 12px;
  margin: 0 0 8px;
}
@media only screen and (max-width: 768px) {
  #section01 .container .column_list li a figure figcaption span {
    font-size: 10px;
    padding: 4px;
    margin: 0 0 6px;
  }
}
#section01 .container .column_list li a figure figcaption span.category01 {
  background: #007dc4;
}
#section01 .container .column_list li a figure figcaption span.category02 {
  background: #eb611e;
}
#section01 .container .column_list li a figure figcaption h3 {
  font-weight: 500;
  line-height: 1.25;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
#section01 .container .column_list li a figure figcaption .day {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin: 8px 0 0;
}
@media only screen and (max-width: 768px) {
  #section01 .container .column_list li a figure figcaption .day {
    font-size: 12px;
  }
}
#section01 .container .column_list li a:hover figure .thumb::after {
  opacity: 0.5;
}
#section01 .container .column_list li a:hover figure .thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#section01 .container .column_list li a:hover figure figcaption h3 {
  color: #007dc4;
}