.clamp_1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.clamp_2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p-menu {
  overflow: hidden;
}
.p-menu__headline {
  margin-bottom: 50px;
}
.p-menu__headline-main {
  font-size: 1.5rem;
  font-weight: bold;
}
.p-menu__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: calc(100% + 3rem);
  margin-bottom: calc(3rem * -1.5);
}
.p-menu__item {
  position: relative;
  width: calc(33.3333333333% - 3rem);
  margin: 0 3rem calc(3rem * 1.5) 0;
}
.p-menu__item a {
  width: 100%;
  color: #323232;
}
.p-menu__item a._target {
  pointer-events: none;
  opacity: 0.4;
}
.p-menu__item a:hover .p-menu__title {
  color: #028442;
}
.p-menu__item a:hover .p-menu__thumb img {
  transform: scale(1.2);
}
.p-menu__thumb {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  background: #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
}
.p-menu__thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.p-menu__no-image img {
  display: none;
}
.p-menu__no-image:before {
  content: "No Image";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border-radius: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: rgba(50, 50, 50, 0.2);
  font-size: 1.2rem;
  font-weight: bold;
}
.p-menu__text {
  margin-top: 1.5rem;
}
.p-menu__title {
  font-size: 1.2rem;
  font-weight: bold;
  transition: 0.3s;
}
.p-menu__title._center {
  text-align: center;
}
.p-menu__sub-title {
  padding-top: 0.3rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.p-menu__category {
  padding-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.5;
}
.p-menu__dsc {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.8em;
}
.p-menu__text .dsc-div {
  padding-top: 1rem;
  border-top: solid 1px #f0f0f0;
}
@media screen and (max-width: 1000px) {
  .p-menu__item {
    width: calc(50% - 3rem);
  }
}
@media screen and (max-width: 700px) {
  .p-menu__list {
    width: 100%;
  }
  .p-menu__item {
    width: 100%;
    margin: 0 0 calc(3rem * 1.5) 0;
  }
}

.col-menu__content {
  position: relative;
  display: flex;
  flex-direction: row;
}
.col-menu__main {
  width: 70%;
}
.col-menu__sub {
  flex-shrink: 0;
  position: relative;
  width: calc(30% - 50px);
  margin-left: 50px;
}
.col-menu__side {
  width: 100%;
  padding: 1.5rem 2rem;
  background: #f0f0f0;
  border-radius: 2px;
}
.col-menu__side--title {
  margin-bottom: 1rem;
  padding: 0 0.5rem 1rem 0.5rem;
  border-bottom: solid 1.5px rgba(50, 50, 50, 0.1);
  font-size: 1rem;
  font-weight: bold;
}
.col-menu__side--item {
  position: relative;
}
.col-menu__side--item a {
  width: 100%;
  padding: 0.5rem 0.5rem;
  color: #323232;
  transition: 0.3s;
}
.col-menu__side--item a:visited, .col-menu__side--item a:active {
  color: #323232;
}
.col-menu__side--item a:hover {
  color: #028442;
}
.col-menu__side--item a {
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .col-menu__content {
    flex-direction: column;
  }
  .col-menu__main {
    width: 100%;
  }
  .col-menu__sub {
    width: 100%;
    margin: 50px 0 0 0;
  }
}/*# sourceMappingURL=menu.css.map */