@charset "UTF-8";

.swiper {
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative;
}
.swiper::-webkit-scrollbar {
    display:none;
}
.swiper > .swiper-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}
#corporate_card .swiper > .swiper-wrapper {
    justify-content: space-around;
}

.swiper > .swiper-wrapper > .button {
    border: 1px solid #65AE07;
    border-radius: 100px;
    margin-right: 12px;
    width: auto;
}
.swiper > .swiper-wrapper > .button > a.cmp-button {
    text-decoration: none;
    color: #000000;
    font-size: 12px;
    line-height: 18px;
    display: block;
    padding: 6px 16px;
}
.swiper > .swiper-button-prev{
    width: 48px;
    height: 48px;
    display: inline-block;
    position: absolute;
    top: 20px;
    background: #53831C;
    opacity: 0.5;
    left: 0px;
    margin-top: 4px;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 50%;
    z-index: 1;
}
.swiper > .swiper-button-prev:not(.swiper-button-disabled):hover{
    opacity: 0.3;
}

.swiper > .swiper-button-next{
    width: 40px;
    height: 40px;
    display: inline-block;
    position: absolute;
    top: 24px;
    background: #53831C;
    opacity: 0.5;
    right: 0px;
    margin-top: 4px;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 50%;
}
.swiper > .swiper-button-next:not(.swiper-button-disabled):hover{
    opacity: 0.3;
}

.swiper > .swiper-button-prev:before {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 18px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(225deg);
}

.swiper > .swiper-button-next:before {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 14px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
}
.swiper > .swiper-button-disabled {
    background: #F5F5F5;
    cursor: initial;
    z-index: -1;
}
/* デフォルトCSSの打消し */
.swiper-slide {
    width: auto !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    content: none;
}

.cmp-experiencefragment--tag_list {
    height: 96px;
}

@media  (max-width:640px){
    .swiper > .swiper-button-prev{
        width: 30px;
        height: 30px;
        top: 15px;
    }
    .swiper > .swiper-button-next{
        width: 30px;
        height: 30px;
        top: 15px;
    }
    .swiper > .swiper-button-prev:before {
        left: 12px;
    }
    
    .swiper > .swiper-button-next:before {
        left: 7px;
    }
    .cmp-experiencefragment--tag_list {
        height: 66px;
    }

}