/* --------------------
 Works
-------------------- */
.works__hero {
    align-items: center;
    background-image: url(../../images/commons/com-hero-blue.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    z-index: 1;
}

@media (min-width: 768px) {
    .works__hero {
        height: 390px;
        padding-bottom: 0;
    }
}

.works__hero-container {
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-direction: column;
        flex-direction: column;
    flex-grow: 1;
    -ms-flex-negative: 1;
    -ms-flex-pack: center;
    -ms-flex-positive: 1;
    flex-shrink: 1;
    height: auto;
    justify-content: center;
    margin: 0 auto;
    padding: 50px 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .works__hero-container {
        padding: 15px 30px;
    }
}

.works__hero__title {
    color: #ffffff;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: .15em;
    line-height: 1.4;
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
}

@media (min-width: 768px) {
    .works__hero__title {
        font-size: 3.2rem;
    }
}

.works__hero__desc {
    color: #ffffff;
    font-size: 1.4rem;
    letter-spacing: .1em;
    line-height: 2.2;
    margin: 0;
    text-align: center;
    width: 100%;
}

.works__hero__nav {
    background-color: rgba(255, 255, 255, .7);
    -webkit-box-flex: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    -ms-flex-positive: 0;
    flex-shrink: 0;
    height: auto;
    margin: 0;
    width: 100%;
}

.works__hero__nav-container {
    align-items: stretch;
    -webkit-box-align: stretch;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 100%;
    justify-content: center;
    margin: 0 auto;
    max-width: 1060px;
    padding: 0;
}

@media (min-width: 768px) {
    .works__hero__nav-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.works__hero__nav__item {
    padding: 0;
    position: relative;
    width: 50%;
}

@media (min-width: 768px) {
    .works__hero__nav__item {
        padding-left: 15px;
        padding-right: 15px;
        width: auto;
    }
}

@media (min-width: 992px) {
    .works__hero__nav__item {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.works__hero__nav__item__link {
    align-items: center;
    background-color: rgba(51, 172, 255, 0);
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: center;
    color: #595757;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: center;
    font-size: 1.2rem;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    padding: 10px 8px;
    text-align: center;
    -webkit-transition: background-color .2s cubic-bezier(.645, .045, .355, 1), color .2s cubic-bezier(.645, .045, .355, 1);
            transition: background-color .2s cubic-bezier(.645, .045, .355, 1), color .2s cubic-bezier(.645, .045, .355, 1);
}

@media (min-width: 768px) {
    .works__hero__nav__item__link {
        font-size: 1.4rem;
        padding: 15px 10px;
    }
}

.works__hero__nav__item__link:hover, .works__hero__nav__item__link:focus {
    background-color: rgba(51, 171, 255, .93);
    color: #ffffff;
}

.works__hero__nav__item.is-active .works__hero__nav__item__link {
    background-color: rgba(51, 171, 255, .93);
    color: #ffffff;
}

.works__hero__nav__item--has-submenu .works__hero__nav__item__link {
    padding-left: 30px;
    position: relative;
}

.works__hero__nav__item--has-submenu .works__hero__nav__item__link:before {
    background-image: url(../../images/commons/com-submenu-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    content: '';
    display: block;
    height: 20px;
    left: 5px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 20px;
}

.works__hero__nav__item__submenu {
    display: none;
    left: 50%;
    padding: 0 0 3px;
    position: absolute;
    top: 100%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 1;
}

.works__hero__nav__item__submenu__item {
    border-bottom: 1px solid #33abff;
}

.works__hero__nav__item__submenu__item__link {
    align-items: center;
    background-color: #bce7ff;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: center;
    color: #33abff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: center;
    font-size: 1.2rem;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    padding: 10px 8px;
    -webkit-transition: background-color .2s cubic-bezier(.645, .045, .355, 1), color .2s cubic-bezier(.645, .045, .355, 1);
            transition: background-color .2s cubic-bezier(.645, .045, .355, 1), color .2s cubic-bezier(.645, .045, .355, 1);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .works__hero__nav__item__submenu__item__link {
        font-size: 1.4rem;
        padding: 12px 10px;
    }
}

.works__hero__nav__item__submenu__item__link:hover, .works__hero__nav__item__submenu__item__link:focus {
    background-color: #33abff;
    color: white;
}

.works__list {
    padding: 60px 0;
}

.works__list-container {
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .works__list-container {
        max-width: 1060px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.works__list__title {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .works__list__title {
        font-size: 2.6rem;
        text-align: left;
    }
}

.works__list__title__text {
    display: inline-block;
    padding: 0 0 0 40px;
    position: relative;
}

@media (min-width: 992px) {
    .works__list__title__text {
        padding-left: 55px;
    }
}

.works__list__title__text:before {
    background-image: url(../../images/commons/com-title-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    content: '';
    display: block;
    height: 30px;
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 30px;
}

@media (min-width: 992px) {
    .works__list__title__text:before {
        background-size: 45px 45px;
        height: 45px;
        width: 45px;
    }
}

.works__list__main {
    margin: 0 -10px 40px;
}

@media (min-width: 768px) {
    .works__list__main {
        align-items: stretch;
        -webkit-box-align: stretch;
        -webkit-box-direction: normal;
        -webkit-box-orient: horizontal;
        -webkit-box-pack: start;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: stretch;
        -ms-flex-direction: row;
            flex-direction: row;
        -ms-flex-pack: start;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        justify-content: flex-start;
        margin-left: -15px;
        margin-right: -15px;
    }
}

.works__list__main__item {
    margin: 0 0 30px;
    padding: 0 10px;
    width: 100%;
}

@media (min-width: 768px) {
    .works__list__main__item {
        padding: 0 15px;
        width: 50%;
    }
}

.works__list__main__item__link {
    background-color: #ffffff;
    border: 1px solid transparent;
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
    display: block;
    height: 100%;
    padding: 20px 15px 15px;
    position: relative;
    -webkit-transition: background-color .2s cubic-bezier(.645, .045, .355, 1), -webkit-box-shadow .2s cubic-bezier(.645, .045, .355, 1);
            transition: background-color .2s cubic-bezier(.645, .045, .355, 1), -webkit-box-shadow .2s cubic-bezier(.645, .045, .355, 1);
            transition: background-color .2s cubic-bezier(.645, .045, .355, 1), box-shadow .2s cubic-bezier(.645, .045, .355, 1);
            transition: background-color .2s cubic-bezier(.645, .045, .355, 1), box-shadow .2s cubic-bezier(.645, .045, .355, 1), -webkit-box-shadow .2s cubic-bezier(.645, .045, .355, 1);
}

.works__list__main__item__link__category {
    margin: 0 0 10px;
}

.works__list__main__item__link__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 10px;
    text-align: center;
}

.works__list__main__item__link__thumb {
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    margin: 0 0 15px;
    text-align: center;
}

.works__list__main__item__link__action__button {
    background-color: #000000;
    border: 1px solid #000000;
    color: #ffffff;
    display: block;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 280px;
    padding: 10px 15px;
    position: relative;
    text-align: center;
    -webkit-transition: background-color .2s cubic-bezier(.645, .045, .355, 1), border-color .2s cubic-bezier(.645, .045, .355, 1);
            transition: background-color .2s cubic-bezier(.645, .045, .355, 1), border-color .2s cubic-bezier(.645, .045, .355, 1);
}

.works__list__main__item__link__action__button span {
    visibility: hidden;
}

.works__list__main__item__link__action__button:before, .works__list__main__item__link__action__button:after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 112px 10px;
    bottom: 0;
    content: '';
    display: block;
    height: 10px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
            transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
    width: 112px;
}

.works__list__main__item__link__action__button:before {
    background-image: url(../../images/commons/com-read-more-white.svg);
}

.works__list__main__item__link__action__button:after {
    opacity: 0;
}

.works__list__main__item__link:hover .works__list__main__item__link__action__button, .works__list__main__item__link:focus .works__list__main__item__link__action__button {
    background-color: white;
}

.works__list__main__item__link:hover .works__list__main__item__link__action__button:before, .works__list__main__item__link:focus .works__list__main__item__link__action__button:before {
    opacity: 0;
}

.works__list__main__item__link:hover .works__list__main__item__link__action__button:after, .works__list__main__item__link:focus .works__list__main__item__link__action__button:after {
    opacity: 1;
}

.works__list__main__item:nth-child(odd) .works__list__main__item__link {
    border-color: #33a8ff;
}

.works__list__main__item:nth-child(odd) .works__list__main__item__link__title, .works__list__main__item:nth-child(odd) .works__list__main__item__link__subtitle {
    color: #33a8ff;
}

.works__list__main__item:nth-child(odd) .works__list__main__item__link__action__button {
    background-color: #33a8ff;
    border-color: #33a8ff;
}

.works__list__main__item:nth-child(odd) .works__list__main__item__link__action__button:after {
    background-image: url(../../images/commons/com-read-more-blue.svg);
}

.works__list__main__item:nth-child(odd) .works__list__main__item__link:hover, .works__list__main__item:nth-child(odd) .works__list__main__item__link:focus {
    background-color: #f5fbff;
    -webkit-box-shadow: 0 0 6px rgba(51, 168, 255, .75);
            box-shadow: 0 0 6px rgba(51, 168, 255, .75);
}

.works__list__main__item:nth-child(odd) .works__list__main__item__link:hover .works__list__main__item__link__action__button, .works__list__main__item:nth-child(odd) .works__list__main__item__link:focus .works__list__main__item__link__action__button {
    background-color: white;
}

.works__list__main__item:nth-child(even) .works__list__main__item__link {
    border-color: #eb8ca2;
}

.works__list__main__item:nth-child(even) .works__list__main__item__link__title, .works__list__main__item:nth-child(even) .works__list__main__item__link__subtitle {
    color: #eb8ca2;
}

.works__list__main__item:nth-child(even) .works__list__main__item__link__action__button {
    background-color: #eb8ca2;
    border-color: #eb8ca2;
}

.works__list__main__item:nth-child(even) .works__list__main__item__link__action__button:after {
    background-image: url(../../images/commons/com-read-more-pink.svg);
}

.works__list__main__item:nth-child(even) .works__list__main__item__link:hover, .works__list__main__item:nth-child(even) .works__list__main__item__link:focus {
    background-color: #fefafb;
    -webkit-box-shadow: 0 0 6px rgba(235, 140, 162, .75);
            box-shadow: 0 0 6px rgba(235, 140, 162, .75);
}

.works__list__main__item:nth-child(even) .works__list__main__item__link:hover .works__list__main__item__link__action__button, .works__list__main__item:nth-child(even) .works__list__main__item__link:focus .works__list__main__item__link__action__button {
    background-color: white;
}

.works__search__checkbox{
    margin:20px 0 10px 0;
    text-align:center;
}

@media (min-width: 768px) {
    .works__search__checkbox{
        text-align:right;
    }
}

.works__search__checkbox__1{
    display: block;
}

@media (min-width: 768px) {
    .works__search__checkbox__1{
        display: inline-block;
    }
}

.works__search__checkbox input[type="checkbox"]{
    display: none;
}

.works__search__checkbox input[type="checkbox"]+label{
    display: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-left: 25px;
    padding-right: 10px;
}

.works__search__checkbox input[type="checkbox"]+label::before{
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 15px;
    height: 15px;
    margin-top: -8px;
    left: 8px;
    top: 50%;
    border: 1px solid;
    border-color:  #585753;
    background-color: #FFF;
}
/* チェックが入った時のレ点 */
.works__search__checkbox input[type="checkbox"]:checked+label::after{
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 13px;
    height: 9px;
    margin-top: -8px;
    top: 50%;
    left: 10px;
    transform: rotate(-45deg);
    border-bottom: 3px solid;
    border-left: 3px solid;
    border-color:  #7a7a78; /* チェックの色変更 お好きな色を */
}

.works__search__checkbox__button{
    margin:20px 0;
    text-align:center;
}

@media (min-width: 768px) {
    .works__search__checkbox__button{
        text-align:right;
    }
}

.works__search__checkbox__button__search{
    display: inline-block;
    background-color: #5f6b62;
    color: #FFF;
    width: 100px;
    padding: 0.3em;
    text-decoration: none;
    border-radius: 4px;
    -webkit-tap-highlight-color: transparent;
    transition: .3s ease-out;
}

.works__search__checkbox__button__search:hover {
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
}

.works__search__checkbox__button__clear{
    margin-left: 10px;
}