@charset "UTF-8";
/* CSS Document */

#side h2 {
  font-size: 22px;
}
.test {
  margin-top: 20px;
}
.test li:not(:first-child) {
  margin-top: 20px;
}
.test li a {
  display: flex;
  align-items: center;
}
.test li .img {
  width: 50px;
  border-radius: 6px;
  background: #f2f2f2;
  overflow: hidden;
}
.test li .txt {
  padding-left: 15px;
  width: calc(100% - 50px);
}
.test li .txt h3 {
  line-height: 1.4;
}
.test li .txt p {
  display: none;
}
@media only screen and (max-width:1300px) {
  .test li:not(:first-child) {
    margin-top: 0;
  }
  .test li .txt p {
    display: block;
  }
  .test {
    display: grid;
    gap: 30px;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    margin-top: 80px;
    border-top: 1px solid #ccc;
    padding-top: 80px;
  }
  .test li a {
    display: flex;
    align-items: center;
  }
  .test li .img {
    width: 150px;
    border-radius: 10px;
    overflow: hidden;
  }
  .test li .txt {
    width: calc(100% - 150px);
    padding-left: 20px;
  }
  .test li .txt h3 {
    font-size: 18px;
  }
  .test li .txt p {
    font-size: 13px;
    margin-top: 3px;
  }
}
@media only screen and (max-width:767px) {
  .test {
    gap: 10px;
    margin-top: 40px;
    padding-top: 40px;
    grid-template-columns: 1fr;
  }
  .test li {
    width: 100%;
  }
  .test li .img {
    width: 100px;
  }
  .test li .txt {
    width: calc(100% - 100px);
    padding-left: 20px;
  }
  .test li .txt h3 {
    font-size: 16px;
  }
  .test li .txt p {
    display: none;
  }
}


/* main
-----------------------------------------------*/
#main {
  max-width: 1300px;
  width: 100%;
  margin: 60px auto 0;
  padding: 0 60px;
}
#main h1,
#main p {
  line-height: 1;
  text-align: left;
  margin: 0;
  font-size: 56px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
}
#main h1 span,
#main p span {
  margin-top: 20px;
  display: block;
  font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
}
@media only screen and (max-width:1300px) {
  #main {
    max-width: 1050px;
  }
}
@media only screen and (max-width:767px) {
  #main {
    margin: 30px auto 0;
    padding: 0 20px;
  }
  #main h1,
  #main p {
    font-size: 30px;
  }
  #main h1 span,
  #main p span {
    font-size: 14px;
    margin-top: 10px;
  }
}



/* container
-----------------------------------------------*/
#container {
  display: flex;
  max-width: 1300px;
  margin: 60px auto 0;
  padding: 0 60px;
}
#container #contents {
  width: calc(100% - 250px);
}
@media only screen and (max-width:1300px) {
  #container {
    display: block;
    max-width: 1050px;
  }
  #container #contents {
    width: 100%;
  }
}
@media only screen and (max-width:767px) {
  #container {
    margin: 20px auto 0;
    padding: 0 20px;
  }
}

/* side
-----------------------------------------------*/
#side {
  width: 240px;
  padding-left: 60px;
}
#side .listMenu:not(:first-child){
  margin-top: 40px;
}
#side .listMenu li {
  font-size: 14px;
  display: block;
  margin-bottom: 20px;
  text-indent: -1em;
  padding-left: 1em;
}
#side .listMenu li h4 {
  font-size: 14px;
  margin-top: 5px;
  font-feature-settings: "palt";
}
#side .listMenu li h4 span {
  font-size: 12px;
  display: block;
}
#side .listMenu li img {
  width: 100%;
  border: 1px #ccc solid;
}
#side .listMenu li a {
  font-weight: bold;
  position: relative;
}
#side .listMenu 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:1300px) {
  #side {
    display: none;
    margin-top: 60px;
    width: 100%;
    padding-left: 0;
  }
}
@media only screen and (max-width:767px) {
  #side .listMenu li a {
    font-size: 13px;
  }
}


/* thumbList
-----------------------------------------------*/
.thumbList {
  padding: 0 60px;
  margin-top: 150px;
}
.thumbList ul {
  display: grid;
  gap: 40px 20px;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 auto;
  max-width: 1180px;
}
.thumbList ul li a {
  display: flex;
  align-items: center;
}
.thumbList ul li .img {
  width: 60px;
  overflow: hidden;
  align-items: flex-start;
}
.thumbList ul li .img img {
  width: 100%;
}
.thumbList ul li .txt {
  width: calc(100% - 60px);
  padding-left: 15px;
}
.thumbList ul li .txt p {
  font-size: 16px;
  line-height: 1.4;
  color: #002e70;
  font-weight: bold;
}
@media only screen and (max-width:1023px) {
.thumbList ul {
  grid-template-columns: 1fr 1fr;
}
.thumbList ul li.null {
  display: none;
}
}
@media only screen and (max-width:767px) {
  .thumbList {
    padding: 0 20px;
    margin-top: 60px;
  }
  .thumbList ul {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .thumbList ul li {
    width: 100%;
  }
  .thumbList ul li .img {
    width: 45px;
  }
  .thumbList ul li .txt {
    width: calc(100% - 45px);
  }
  .thumbList ul li .txt p {
    font-size: 15px;
  }
}