@charset "utf-8";
/* CSS Document */
.under_mv{
  background: url("/tech/img/mv.png")no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
}
main{
  padding-bottom: 90px;
}
.intro {
  padding-top: 60px;
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
}
.case_block{
  margin-top: 60px;
}
.case_top {
  margin-top: 40px;
}
.top_head{
  font-weight: bold;
  font-size: 2.4rem;
  color: var(--main-color);
  margin-bottom: 15px;
  display: flex;
  align-items: flex-end;
  line-height: 1.25;
  &::before{
    content: '';
    display: block;
    background: url("../img/icon_q.svg") no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    min-width: 56px;
    height: 48px;
    margin-right: 10px;
  }
}
.case_bot {
  padding: 40px;
  background: var(--main-color);
  color: #fff;
  margin-top: 40px;
}
.bot_head {
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: flex-end;
  line-height: 1.25;
  &::before{
    content: '';
    display: block;
    background: url("../img/icon_a.svg") no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    min-width: 40px;
    height: 42px;
    margin-right: 10px;
  }
}
.bot_flex {
  display: flex;
  margin-top: 20px;
  gap: 20px;
}
.bot_box {
  /*max-width: 585px;*/
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and ( max-width: 1023px ) {
}
@media screen and ( max-width: 767px ) {
.intro {
  font-size: 1.8rem;
  text-align: left;
}
.case_bot {
  padding: 20px 5%;
}
.bot_flex {
  flex-direction: column;
}
}