.entry section .box-shadow {
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
  justify-content: initial;
  gap: 100px;
  margin-top: 25px;
  padding: 20px 30px 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.entry section .box-shadow p {
  margin: 0;
}
.entry section .box-ttl {
  position: relative;
  padding-left: 25px;
  font-weight: bold;
}
.entry section .box-shadow .box-txt + .box-ttl {
  margin-top: 20px;
}
.entry section .box-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 2px;
  background-color: #dc5065;
}
.entry section .box-shadow .box-txt {
  margin-top: 5px;
}
.entry .box-shadow .left {
  min-width: 240px;
}
.entry-btn {
  position: relative;
  display: block;
  width: fit-content;
  padding: 8px 30px 8px 8px;
  font-size: 16px;
  background: #dc5065;
  box-sizing: border-box;
  border: #dc5065 1px solid;
  color: #fff;
}
.entry-btn::after {
  content: ">";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
@media screen and (min-width: 768px) {
  .entry-btn:hover {
    background: #fff;
    border: #dc5065 1px solid;
    color: #dc5065;
    opacity: 1.0;
  }
}

.entry .normal-txt {
  margin-top: 25px;
}
