@charset "UTF-8";
/* サイドナビ */
.p-side {
  margin-bottom: 117px;
}
.p-side section {
  margin-bottom: 48px;
}
.p-side section:last-child {
  margin-bottom: 0;
}
.p-side__search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  border-radius: 5px;
}
.p-side__search form input {
  width: 194px;
  height: 46px;
  padding: 15px 16px;
  border: 1px solid #37462A;
  border-radius: 5px 0 0 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 13px;
  outline: none;
}
.p-side__search form input::-webkit-input-placeholder {
  color: #ABABAB;
}
.p-side__search form input::-moz-placeholder {
  color: #ABABAB;
}
.p-side__search form input:-ms-input-placeholder {
  color: #ABABAB;
}
.p-side__search form input::-ms-input-placeholder {
  color: #ABABAB;
}
.p-side__search form input::placeholder {
  color: #ABABAB;
}
.p-side__search form button {
  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;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 0 5px 5px 0;
  background-color: #37462A;
  cursor: pointer;
}
.p-side__search form button::after {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../img/blog/side-search-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-side__category ul li {
  margin-bottom: 2px;
}
.p-side__category ul li:last-child {
  margin-bottom: 0;
}
.p-side__category ul li a {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 13px;
  padding: 20px 16px 18px 16px;
  background-color: #DCE5D4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-side__category ul li a::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  right: 17px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: #37462A;
  border-width: 2px 2px 0 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-side__category ul li a:hover {
  text-decoration: none;
}
.p-side__category ul li a:hover::after {
  right: 11px;
}
.p-side__title {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  padding-left: 28px;
}
.p-side__titleWrap {
  margin-bottom: 17px;
}
.p-side__titleWrap.m-underL {
  padding-bottom: 14px;
  border-bottom: 1px solid #37462A;
  margin-bottom: 10px;
}
.p-side__title::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
}
.p-side__title.m-search::before {
  background-image: url(../img/blog/side-search.svg);
}
.p-side__title.m-category::before {
  background-image: url(../img/blog/side-category.svg);
  height: 16.25px;
}
.p-side__title.m-popular::before {
  background-image: url(../img/blog/side-popular.svg);
}
.p-side__title.m-popularMovie::before {
  height: 16px;
  background-image: url(../img/seminar/side-popularMovie.svg);
}
.p-side__title.m-glossary::before {
  background-image: url(../img/blog/side-glossary.svg);
  height: 18px;
}
.p-side__articleList {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed #A8C493;
}
.p-side__articleList a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
}
.p-side__articleList a:hover {
  text-decoration: none;
  opacity: 0.8;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.p-side__articleList:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.p-side__articleImg figure img {
  display: inline-block;
  margin: 0;
  clear: both;
  width: 112px;
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-side__articleTtl p {
  font-size: 12px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; /* 任意の行数を指定 */
}
.p-side__movieList {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed #A8C493;
}
.p-side__movieList a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0 8px;
}
.p-side__movieList a > *:first-child {
  width: 49%;
}
.p-side__movieList a > *:last-child {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .p-side__movieList a {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-side__movieList a > * {
    width: 100% !important;
  }
}
.p-side__movieList a:hover {
  text-decoration: none;
  opacity: 0.8;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.p-side__movieList:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.p-side__movieImg figure img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-side__movieTtl p {
  font-size: 12px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; /* 任意の行数を指定 */
}
@media screen and (max-width: 768px) {
  .p-side {
    margin-bottom: 50px;
  }
  .p-side section {
    margin-bottom: 46px;
  }
  .p-side section:last-child {
    margin-bottom: 0;
  }
  .p-side__search form input {
    width: 85.5%;
    height: 50px;
    padding: 18px 16px;
    font-size: 14px;
  }
  .p-side__search form button {
    width: 14.5%;
    height: 50px;
  }
  .p-side__category ul li a {
    font-size: 14px;
    padding: 19.5px 16px 17px 16px;
  }
  .p-side__title {
    padding-left: 26px;
  }
  .p-side__titleWrap {
    margin-bottom: 16px;
  }
  .p-side__articleImg figure img {
    max-width: initial;
  }
}