/* -----------------------------------------
  worksページ専用
------------------------------------------- */
.works {
    margin-top: 10px;
}
.works__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.works + .activitie {
    margin-top: 90px;
}
    
.works__catch {
    text-align: center;
    font-size: 22px;
    margin-top: 30px;
    font-family: 'Red_Hat_Display','Zen_Kaku_Gothic_New-Bold', sans-serif;
    font-weight: 600;
}
.works__catch--eng {
    letter-spacing: 0.01em;
}

@media screen and (min-width:768px){
    .works__catch {
        font-size: 25px;
        letter-spacing: 0.06em;
        margin-top: 50px;
        margin-bottom: -5px;
    }
    .works__catch--eng {
    letter-spacing: 0.03em;
}
}

/* card
----------------------------------------------- */
.works__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    width: calc((100% - 10px) / 2);
    box-shadow: 0 0 8px #ccc;
    border-radius: 7px;
    font-size: 13px;
    transition: .7s;
}
.works__card:first-child {
    margin-top: 20px;
}
.works__card:hover {
    opacity: 0.7;
}
.works__card + .works__card {
    margin-top: 20px;
}
.works__thumb {
    position: relative;
    overflow: hidden;
    border-radius: 7px 7px 0 0;  
}
.works__thumb img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 7px 7px 0 0;
    transition: .7s;
}
.works__card:hover .works__thumb img {
    transform: scale(1.2);
}
.works__body {
    text-align: left;
    padding: 10px 10px 15px 10px;
}
.works__txt {
    flex-grow: 1;
    font-family: 'Red_Hat_Display', 'Zen_Kaku_Gothic_New-Bold', sans-serif;
    font-weight: 500;
    line-height: 1.4;
    font-size: 15px;
}
.works__txt--jpn {
    letter-spacing: 0.05em;
    font-size: 13px;
}
.works__txt--jpn .thiny {
    font-size: 12px;
}
.works__txt span {
    letter-spacing: 0em;
}
.hanaikada {
    letter-spacing: 0.1em;
    font-size: 10px;
}

@media screen and (min-width:960px) {
    .works__card {
        width: calc((100% - 40px) / 3);
    }
    .works__body {
        padding: 20px 20px 30px 15px;
    }
    .works__txt {
        font-size: 20px;
    }
    .br {
        display: none;
    }
    .hanaikada {
        font-size: 16px;
    }
    .works__txt--jpn .thiny {
    font-size: 16px;
}
    
}

/* arrow
-------------------------------------------------- */
.arrow::before {
    display: block;
    position: absolute;
    content: 'More';
    font-size: 12px;
    bottom: 3px;
    right: 68px;
    font-family: 'Red_Hat_Display';
}
.arrow::after {
  display: block;
  content: '';
  position: absolute;
  width: 80px;
  height: 10px;
  bottom: 5px;
  right: 20px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  transform: skew(45deg);
}
.arrowWrapper {
    position: relative;
    margin-top: auto;
    margin-bottom: 10px;
    text-align: right;
}

@media screen and (min-width:768px) {
    .arrow {
        font-size: 18px;
        margin-right: 20px;
    }
    .arrow::before {
        font-size: 17px;
        bottom: 3px;
        right: 103px;
    }
    .arrow::after {
        width: 130px;
        height: 15px;
        bottom: 5px;
        right: 20px;
    }
    .arrowWrapper {
        margin-top: auto;
        margin-bottom: 20px;
        text-align: right;
    }
}

/* label
-------------------------------------------------- */
.works__label {
    position: absolute;
    background: #999;
    color: #fff;
    bottom: 30%;
    right: 4%;
    padding: 0.2em 0.8em;
    font-size: 0.5em;
}
.works__copyright {
    position: absolute;
    color: #fff;
    letter-spacing: 0.2em;
    font-size: 0.7em;
    bottom: 50%;
    left: -1%;
    transform: scale(70%);
}

@media screen and (min-width: 768px) {
    .works__label {
        font-size: 13px;
        bottom: 27%;
    }
    .works__copyright {
        top: 53%;
        left: 5%;
        transform: none;
    }
    
}