
@charset "UTF-8";

/*---バナーの切り替え---*/
@media screen and (max-width: 600px) {
  #top_bunner_pc + section {
    display: none;
  }
}
@media screen and (min-width: 601px) {
  #top_bunner_sp + section {
    display: none;
  }
}

/*---Serviceへのアンカーボタン---*/
.top_anchor_btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 4%;
  width: 100%;
  margin-bottom: 2em;
}
.top_anchor_btn li {
  box-shadow: 10px 10px 20px var(--i_shadow_color);
  border-radius: 20px;
  background: var(--i_bg_color);
  list-style: none !important;
}
.top_anchor_btn li a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1em;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity 0.2s;
}
.top_anchor_btn li a:hover {
  opacity: 0.6;
}
.top_anchor_btn li a .ttl {
  line-height: 1.5;
  margin-bottom: 5px;
  color: var(--i_sub_color);
  font-size: 1.8rem !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  font-weight: 600;
}
.top_anchor_btn li a .number {
  font-size: 1.4rem;
  font-weight: 500;
}

@media screen and (max-width: 900px) {
  .top_anchor_btn {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1em;
  }
  .top_anchor_btn li a {
    padding: 1em;
  }
  .top_anchor_btn li a .ttl {
    font-size: 2rem !important;
  }
}