@charset "utf-8";
/* CSS Document */

.boxwrap1 .rightbox {
    flex: 0 0 50%;
}
.boxwrap1 .rightbox .imgbox{
  aspect-ratio: 52 / 33;
  overflow: hidden;
}

.boxwrap1 .rightbox .imgbox img{
  width:100%;
  height:100%;
  object-fit:cover;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
    .boxwrap1 {
  flex-direction: column;
}
    .boxwrap1 .leftbox {
        max-width: 600px;
        width: 100%;
    } 
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

