@charset "UTF-8";
<style>
.Breadcrumb {
  padding: 1em;
}
.Breadcrumb-ListGroup {
  display: flex;
}
.Breadcrumb-ListGroup-Item-Link[href]:hover {
  opacity: 0.5;
}
.Breadcrumb-ListGroup > * + * {
  margin-left: 0.5em;
}
.Breadcrumb-ListGroup > * + *::before {
  content: ">";
  margin-left: 0.75em;
  margin-right: 0.75em;
}
/* 下からふわっと */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hrdesign {
  border-top: 1px dotted #ccc;
}
.keisaiitem {
  background: #ffacac; /*背景色*/
  padding: 0.5em; /*文字まわり（上下左右）の余白*/
  font-size: 14px;
  color: #ffffff;
  margin: 10px;
}
.list-text {
  font-family: serif;
  font-size: 12px;
  color: #333333;
}
/* 掲載一覧（横3列） */
.list-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list-item {
  width: calc(33.33% - 20px);
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.list-item img {
  max-width: 100%;
  height: auto;
}
.list-item p {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .list-item {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 480px) {
  .list-item {
    width: calc(50% - 10px);
  }
}
/* 詳細 */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.left-column {
  width: 30%;
  max-width: 300px;
  margin-bottom: 10px;
}
.left-column img {
  max-width: 100%;
  height: auto;
}
.right-column {
  width: 70%;
}
.right-column h3 {
  margin-top: 0;
}
.right-column p {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .left-column, .right-column {
    width: 100%;
    max-width: 100%;
  }
</style>    