@charset "utf-8";
/*
Template: jstork
Theme Name: stork_custom
Theme URI:http://open-cage.com/stork/
*/


#pickup_content {
    margin: 0.5em auto;
    max-width: 1166px;/*旧ストークの場合は1166px*/
}
#pickup_content ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-size: 80%;
    font-weight: 700;
}
#pickup_content li {
    width: 33%;
    margin: 0.5em;
    position: relative;
}
.pickup_content__link {
    display: block;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
.pickup_content__link:hover {
    color: #fff;
}
.pickup_content__link::before,
.pickup_content__link::after {
    position: absolute;
    z-index: 2;
    content: "";
    display: inline-block;
    width: 3em;
    height: 3em;
    border-color: #fff;
    border-width: 1px;
}
.pickup_content__link::before {
    border-top-style: solid;
    border-left-style: solid;
    top: 5px;
    left: 5px;
}
.pickup_content__link::after {
    border-bottom-style: solid;
    border-right-style: solid;
    bottom: 5px;
    right: 5px;
}
.pickup_content__text span,
.pickup_content__link::before,
.pickup_content__link::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.pickup_content__text {
    position: absolute;
    font-weight: bold;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 14, 0.2);
}
.pickup_content__text span {
    border-radius: 2em;
    border: 1px solid;
    padding: 0.4em 0.8em;
    text-align: center;
    line-height: 1.2;
    min-width: 50%;
    max-width: 90%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px -4px;
    text-shadow: 0 1px 4px #111;
}
.pickup_content__text span::before {
    content: "";
    display:block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.25;
}
@media only screen and (min-width: 768px) {
    .pickup_content__link:hover {
        transform: translateY(-5px);
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    }
    .pickup_content__link:hover .pickup_content__text span {
        box-shadow: 0 0 20px 3px;
    }
    .pickup_content__link:hover::before,
    .pickup_content__link:hover::after {
        width: 4em;
        height: 4em;
    }
}
@media only screen and (max-width: 767px) {
    #pickup_content ul {
        flex-wrap: wrap;
    }
    #pickup_content li {
        width: calc(50% - 1.5em);
        font-size: 80%;
    }
}