.entry {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  padding: 40px 16px;
  background: var(--primary-light-color);
}
.entry__inner {
  display: flex;
  flex-flow: wrap column;
  width: 100%;
  max-width: 1280px;
}
.entry__text {
  width: 100%;
}
.entry__text__time {
  display: block;
  color: var(--gray-500);
  font-size: clamp(0.625rem, 0.587962963rem + 0.1851851852vw, 0.75rem);
}
.entry__text__name {
  margin: 16px 0 8px;
  font-weight: 400;
}
.entry__text__title {
  font-size: 1.8rem;
}
.entry__text__member {
  margin: 32px 0 0;
  color: var(--gray-700);
  font-size: clamp(0.75rem, 0.712962963rem + 0.1851851852vw, 0.875rem);
}
.entry__text__overview {
  margin: 32px 0 0;
  color: var(--gray-700);
  font-size: clamp(0.75rem, 0.712962963rem + 0.1851851852vw, 0.875rem);
}
.entry__image {
  width: 100%;
  margin-top: 32px;
}
.entry__image img {
  border-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .entry {
    padding: 64px 16px;
  }
  .entry__inner {
    flex-flow: wrap row;
    justify-content: space-between;
  }
  .entry__text {
    max-width: calc(100% - 480px);
    padding-right: 80px;
  }
  .entry__image {
    max-width: 480px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1000px) {
  .entry {
    padding: 80px 24px;
  }
}

.content {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  padding: 40px 16px;
}
.content__inner {
  width: 100%;
  max-width: 1280px;
}
.content__container {
  width: 100%;
  max-width: 740px;
}
.content__point {
  padding: 24px;
  margin-bottom: 56px;
  background: var(--gray-000);
  border: 4px solid var(--primary-light-color);
  position: relative;
}
.content__point__inner {
  display: flex;
  flex-flow: wrap column;
}
.content__point__item {
  display: inline-flex;
  flex-flow: wrap column;
  align-items: center;
  margin-top: 32px;
}
.content__point__item:first-of-type {
  margin-top: 0;
}
.content__point__item__title {
  height: 40px;
  margin-bottom: 16px;
  padding-left: 48px;
  line-height: 40px;
  position: relative;
}
.content__point__item__title:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  background: transparent 0 0 no-repeat;
}
.content__point__item__title--note:before {
  background-image: url(../images/icon_cases_point_note.svg);
}
.content__point__item__title--light:before {
  background-image: url(../images/icon_cases_point_light.svg);
}
.content__point__item__title--graph:before {
  background-image: url(../images/icon_cases_point_graph.svg);
}
.content__point__item__list {
  margin-top: 12px;
  padding-left: 24px;
  list-style: disc;
  font-size: 14px;
}
.content__point__item__list__item {
  margin-top: 4px;
}
.content__share {
  margin-top: 30px;
}
.content__share__title {
  display: block;
  margin-bottom: 15px;
  color: #242424;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.content__share__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
  padding: 0;
  list-style: none;
}
.content__share__item {
  margin: 0 10px;
}
.content__share__item__link {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  text-decoration: none;
}
.content__share__item__link--x {
  background-color: var(--share-x-twitter);
}
.content__share__item__link--x img {
  width: 28px;
  height: auto;
}
.content__side {
  display: none;
  max-width: 320px;
  border: 1px solid var(--gray-300);
  border-radius: 1rem;
}
.content__side__inner {
  display: flex;
  flex-flow: wrap column;
  align-items: center;
  padding: 24px;
}
.content__side__description {
  margin: 16px 0;
  font-size: clamp(0.75rem, 0.712962963rem + 0.1851851852vw, 0.875rem);
}
.content__side__footer {
  display: flex;
  flex-flow: wrap column;
  align-items: center;
  margin-top: 8px;
}
.content__side__footer__title {
  display: inline-block;
  margin-bottom: 4px;
  padding: 0 8px;
  align-self: center;
  font-size: 0.875rem;
  position: relative;
}
.content__side__footer__title:before, .content__side__footer__title:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 80%;
  background: var(--gray-900);
  position: absolute;
  top: 1px;
}
.content__side__footer__title:before {
  left: 0;
  transform: rotate(-20deg);
}
.content__side__footer__title:after {
  right: 0;
  transform: rotate(20deg);
}
.content__side__footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--button-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  min-height: clamp(2.625rem, 2.5138888889rem + 0.5555555556vw, 3rem);
  padding: 0 24px;
  border-radius: clamp(2.625rem, 2.5138888889rem + 0.5555555556vw, 3rem);
  background: var(--button-color);
  color: var(--gray-000);
  margin-bottom: 24px;
}
@media screen and (min-width: 400px) {
  .content__footer__title {
    margin-bottom: 8px;
    padding: 0 12px;
  }
  .content__footer__title:before, .content__footer__title:after {
    top: 0;
    height: 95%;
  }
}
@media screen and (min-width: 768px) {
  .content {
    padding: 64px 16px;
  }
  .content__point__inner {
    flex-flow: wrap row;
    justify-content: space-between;
  }
  .content__point__item {
    width: calc(33.333% - 16px);
    margin-top: 0;
  }
}
@media screen and (min-width: 1000px) {
  .content {
    padding: 80px 24px;
  }
  .content__inner {
    display: flex;
    flex-flow: wrap row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .content__container {
    width: calc(100% - 336px);
  }
  .content__side {
    display: flex;
    position: sticky;
    top: 150px;
  }
}

/*# sourceMappingURL=single-cases.css.map */
