@charset "utf-8";
/* CSS Document */
.under_mv{
  background: url("/product/img/mv.png")no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
}
.ind_outer {
  max-width: 1160px;
  width: 100%;
  margin: 60px auto 0;
  display: flex;
  gap:30px;
}
.stc_nav {
  position: relative;
  max-width: 154px;
  width: 100%;
}
.stc_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 15px;
  position: sticky;
  top: 100px;
}
.stc_btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  background: #1f2d8e;
  color: #fff;
  height: 45px;
  padding: 0 25px;
  position: relative;
  &::after{
    content: '';
    display: block;
    background: url("../img/arrow.svg") no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    width: 12px;
    height: 6px;
    position: absolute;
    right: 10px;
  }
}
.ind_inner {
  width: calc(100% - 184px);
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.ind_block {
  width: 100%;
  background: #F6F6F6;
  padding: 30px 50px;
}
.ind_head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1f2d8e;
}
.ind_list {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.ind_card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  max-width: 280px;
  width: 100%;
  border: 1px solid #1f2d8e;
  padding: 10px;
  color: #1f2d8e;
  font-weight: bold;
  position: relative;
  &::after{
    content: '';
    display: block;
    background: url("../../../common/img/arrow_anchor.svg") no-repeat center;
    width: 11px;
    height: 6px;
    transform: rotate(-90deg);
    position: absolute;
    right: 15px;
  }
}
@media screen and ( max-width: 1023px ) {
}
@media screen and ( max-width: 767px ) {
  .ind_outer{
    gap:10px;
  }
.stc_nav {
  max-width: 100px;
}
.stc_list {
  gap: 5px;
}
a.stc_btn {
  padding: 0 5px;
  font-size: 1.2rem;
  height: 35px;
}
.ind_inner {
  width: calc(100% - 110px);
}
.ind_block {
  padding: 30px 5%;
}
.ind_head {
  gap: 10px;
}
.ind_list {
  gap: 10px;
}

.ind_card {
  width: 100%;
  gap: 5px;
    padding-right: 25px;
    font-size: 1.4rem;
}
.ind_icon {
  max-width: 30%;
}
}