.factoryGallary{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
}

.factoryGallary li{
    width: calc(100% / 3 - 0.5%);
    margin-bottom: 0.5%;
    position: relative;
    overflow: hidden;
}

.factoryGallary li:first-child{
    width: 60%;
}

.factoryGallary li:nth-child(2){
    width: 39.5%;
}

.factoryGallary li a:not(.plus){
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1.1);
    display: block;
}

.factoryGallary li:hover a:not(.plus) {
    transform: translate(-50%, -50%) scale(1.15);
}

.factoryGallary li a[role="button"] img{
    width: 100%;
    height: auto;
}

.factoryGallary li .plus{
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 3px 3px 7px var(--grey-default);
}

.factoryGallary li .plus:hover{
    opacity: 1 !important;
}

.factoryGallary li .plus i{
    position: relative;
    display: block;
    height: 100%;
    transform: rotate(180deg);
    transform-origin: center;
    transition: transform 0.2s;
}

.factoryGallary li .plus i::before{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-lightblue);
    font-weight: bold;
    font-size: clamp(16px, 2.4vw, 20px);
}

.factoryGallary li:hover i{
    transform: rotate(0);
    transform-origin: center;
    letter-spacing: 0;
    line-height: 1;
}

.factoryGallary .modal-container img{
    width: 100%;
    height: auto;
}

.interviewList{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
}

.interviewList li{
    width: 30%;
    margin: 1.5%;
}

.interviewList li .video-thum{
    margin-bottom: 0.5rem;
}

.interviewList li .label{
    display: inline-block;
    padding: 7px 20px;
    font-size: clamp(10px, 1.4vw, 14px);
    line-height: 1;
    background: var(--color-blue);
    color: #fff;
    margin-bottom: 0.5rem;
}

.interviewList li .name{
    display: block;
    margin-bottom: 0.5rem;
}

.interviewList li img{
    width: 100%;
    height: auto;
}

.interviewList .iframeWrap{
    position: relative;
    padding-top: 56.25%;
}

.interviewList .iframeWrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
	aspect-ratio: 16/9;
}


.instaList{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
}

.instaList li{
    width: 32%;
}

.instaList li img{
    width: 100%;
    height: auto;
}

.followme{
    margin-top: 5rem;
    font-size: clamp(36px, 4.2vw, 70px);
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 0.1rem;
    line-height: 1.2;
    color: var(--color-lightblue);
    text-align: center;
}

@media screen and (max-width: 1366px) {}

@media screen and (max-width: 1280px) {}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 820px) {}

@media screen and (max-width: 640px) {
    .factoryGallary li{
        width: 49.5%;
        margin-bottom: 1%;
    }
    .factoryGallary li:first-child{
        width: 100%;
    }
    .factoryGallary li:nth-child(2){
        width: 49.5%;
    }
    .factoryGallary li a:not(.plus){
        transform: translate(-50%, -50%) scale(1.3);
    }

    .interviewList li{
        width: 100%;
    }
    .interviewList li .video-thum img{
        width: 100%;
        height: auto;
    }

    .followme{
        margin-top: 3rem;
    }
}
