@charset "UTF-8";
/* container
-----------------------------------------------*/
#container {
  position: relative;
  margin-top: 0;
}
#container::after {
  position: absolute;
  display: block;
  content: "";
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  background: #f2f2f2;
  margin: 0 calc(50% - 50vw);
}
#container #contents {
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 95px 0 100px;
}
#container #side {
  display: none;
}
@media screen and (max-width: 768px) {
  #container #contents {
    padding: 40px 0;
  }
}

/* contents
-----------------------------------------------*/
#contents .col3 {
  display: flex;
  flex-wrap: wrap;
}
#contents .col {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  font-weight: bold;
  padding: 0 0 30px;
  margin-right: 1.69%;
  margin-bottom: 20px;
  max-width: 380px;
  width: 32.2%;
  position: relative;
}
#contents .col:nth-child(3n) {
  margin-right: 0;
}
#contents .col a {
  display: block;
  position: relative;
}
#contents .ttl h2 {
  padding: 20px 30px;
  background: #002e70;
  font-size: 20px;
  color: #fff;
}
#contents li:first-child {
  padding-top: 20px;
}
#contents li {
  padding: 10px 30px 0 2em;
  text-indent: -1em;
}
#contents li a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  box-sizing: border-box;
  border-top: solid 3px #002e70;
  border-right: solid 3px #002e70;
  transform: rotate(45deg);
  margin-right: 8px;
}
@media only screen and (max-width:1100px) {
  
}
@media screen and (max-width: 768px) {
  #contents .col {
    padding-bottom: 20px;
    margin-right: 0;
    max-width: 100%;
    width: 100%;
  }
  #contents .ttl h2 {
    padding: 10px 20px;
    font-size: 18px;
  }
  #contents .col:nth-child(3n) {
    margin-right: 0;
  }
  #contents li:first-child {
    padding-top: 15px;
  }
  #contents li {
    padding: 10px 20px 0;
  }
}
