@charset "UTF-8";
.flexcontents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px 0 0px 0;
}
.itemBox {
    margin: 0 0 50px 0;
}
.itemBox.dummy {
    width: 309px;
    pointer-events: none;
}
.content-pickup {
    margin:  80px 0;
}
.pickup-title {
    line-height: 1.0em;
}
.pickup-en {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.5em;
    font-size: 150%;
    color: #1c4487;
}
.content-pickup .contentsBox-title {
	position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    align-items: center;
     padding: 100px;
}
.content-pickup a:hover {
    color: #1c4487;
}
.pickup-img {
    border-left: solid 10px #1c4487;
    margin-bottom: 10px;
}
.ImgBox{
  max-width: 100%;
  height: auto;
  overflow: hidden;
}
.ImgBox-Img{
  transition-duration: 0.3s;
}
.ImgBox-Img:hover{
  transform: scale(1.2);
  transition-duration: 0.5s;
}
.content-pickup a:hover .ImgBox-Img {
    transform: scale(1.2);
    transition-duration: 0.5s;
}

@media screen and ( max-width: 767px ){
.flexcontents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 50px 0 0px 0;
}
.itemBox.dummy {
    display: none;
}
}