.under {
  background: url(../img/common/cm.webp);
  position: absolute;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 50%;
}

.under_mv {
  padding: 140px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.under_mv-img {
  width: 60%;
}
.under_mv-img img {
  border-radius: 0 10px 10px 0;
}

.under_mv-cont {
  width: 40%;
  margin: 3% 5% 0 0;
}
.under_mv-cont .under_mv-ttl {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 50px;
  text-align: right;
}

.breadcrumb {
  display: flex;
  justify-content: end;
}
.breadcrumb li {
  font-size: 14px;
  padding: 0 25px;
  position: relative;
}
.breadcrumb li a {
  color: #155ea9;
  border-bottom: 1px solid #155ea9;
}
.breadcrumb li :after {
  position: absolute;
  font-family: "Material Symbols Outlined";
  content: "\e5e1";
  color: #cccccc;
  right: -5px;
  font-size: 10px;
  top: 2px;
}
.breadcrumb li :last-child {
  padding-right: 0;
}

@media (max-width: 834px) {
  .under_mv {
    padding: 60px 0 40px;
    display: block;
    position: relative;
  }
  .under_mv .under_mv-img {
    width: 100%;
    position: relative;
  }
  .under_mv .under_mv-img:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(310deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.05) 100%);
    top: 0;
    left: 0;
  }
  .under_mv .under_mv-img img {
    border-radius: 0;
  }
  .under_mv .under_mv-cont {
    width: 90%;
    margin: 0 5%;
    position: absolute;
    transform: translateY(-50%);
    top: 55%;
  }
  .under_mv-cont .under_mv-ttl {
    font-size: 15px;
    margin-bottom: 0;
  }
  .breadcrumb {
    display: none;
  }
}
.inner1200 {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}