@charset 'utf-8';

/* saport-menu */
.saport-menu .menu-area {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 3%;
}
.saport-menu .menu-area a {
  width: 8rem;

  display: flex;
  flex-direction: column;
  gap: 0.5em;

  font-size: 0.7em;
  margin: 2rem auto !important;
}

/* bnr-area */
.bnr-area > a {
  display: block;
  margin: auto;
}
.bnr-area > a img {
  width: 100%;
}

/* case */
.case h2 {
  margin-bottom: 2rem;
}
.case > p {
  text-align: center;
  margin-bottom: 2rem;
}
.case .case-list a {
  position: relative;
  display: block;
  font-size: 1.6rem;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5em 0.3em 0.4em 2em;
  border: 1px solid #666;
  border-radius: 2px;
  overflow: hidden;
}
.case .case-list a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: #ff8f1f;
}
.case .case-list a:after {
  content: "!";
  position: absolute;
  top: 50%;
  left: 0.2em;
  transform: translateY(-50%) rotate(15deg);
  color: white;
  font-size: 1.5em;
}
.case .case-list a span {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-left: 1em;
  margin-bottom: 0.1em;
  background-color: transparent;
  border-top: 1px solid black;
  border-right: 1px solid black;
  transition: 0.3s;
  transform: rotate(45deg);
}
.case .case-list a.open span {
  transform: rotate(135deg);
}
.case .case-list a + div {
  display: none;
}
.case .case-list .flex {
  gap: 1%;
  flex-wrap: wrap;
  align-items: stretch;
}
.case .case-list p {
  font-size: 0.9em;
  line-height: 1.5;
  width: 49%;
  margin-bottom: 1%;
  padding: 0.8em;
  border: 1px solid #aaa;
  border-radius: 6px;
}
.case .case-list p span {
  display: inline-block;
  margin-bottom: 0.3em;
  background: linear-gradient(transparent 70%, #ffff5a 0%);
}

@media screen and (max-width: 1000px) {
  .case .case-list p {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
}
