@charset "utf-8";

.mainVisual {
    margin-bottom: 3rem;
}

.mainVisual__bg {
    background-image: url(../img/gallery/mv.jpg);
}

.works-articles__container {
    height: auto;
    padding-left: var(--padding--container);
    padding-right: var(--padding--container);
    padding-bottom: 5rem;
}

.works-pickup-articles {
    background-color: var(--tertiary-brown);
}

.works-pickup-articles__container {
    padding-top: 5.4rem;
    padding-left: var(--padding--container);
    padding-right: var(--padding--container);
    padding-bottom: 2.6rem;
}

.works-cats {
    margin-bottom: 4rem;
}

.works-cats-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: .6rem;

    gap: 3px;
}

.works-cats-list__item {
    width: calc(100% / 3 - 3px);
    border: 1px solid var(--primary-brown);
}

.works-cats-list__item a {
    width: 100%;
    height: 100%;
    padding: .9rem;
    background-color: var(--primary-brown);
    font-family: var(--ff-noto-sans);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.57;
    text-align: center;
}

/* カテゴリーから探す（ポップアップ） */
.works-cats-popup-button {
    width: 100%;
    height: 100%;
    padding: .9rem;
    margin: 0 auto;
    background-color: var(--primary-brown);
    font-family: var(--ff-noto-sans);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.57;
    text-align: center;
}

.works-cats-popup-button span {
    display: inline-block;
    position: relative;
}

.works-cats-popup-button span::before,
.works-cats-popup-button span::after {
    content: "";
    display: block;
    width: 11px;
    height: 1px;
    margin: auto;
    background: #fff;
    position: absolute;
    top: 0;
    left: -31px;
    bottom: 0;

    pointer-events: none;
}

.works-cats-popup-button span::after {
    transform: rotate(90deg);
}

.remodal-wrapper {
    padding-left: var(--padding--container);
    padding-right: var(--padding--container);
}

.remodal {
    width: 100%;
    padding: 0;
}

.remodal-close {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 100%;
    top: -15px;
    left: auto;
    right: -10px;
    z-index: 3;
}

.remodal-close::before {
    width: 40px;
    color: var(--primary-brown);
    font-size: 40px;
    line-height: 40px;
}

/* 検索モーダル */
.works-cats-search {
    padding-bottom: 6.5rem;
}

.works-cats-search__post-type {
    display: flex;
    border-bottom: 2px solid #665546;
}

.works-cats-search__post-type input[type="radio"] {
    display: none;
}

.works-cats-search__post-type input[type="radio"]+label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 4rem;
    background-color: #fff;
    font-family: var(--ff-noto-serif);
    color: #665546;
    font-size: 1.4rem;
    line-height: 1.33;
    text-align: center;
    position: relative;
    z-index: 1;
}

.works-cats-search__post-type input[type="radio"]:checked+label {
    background-color: #665546;
    color: #fff;
    z-index: 2;
}

.works-cats-search__post-type input[type="radio"]:checked+label::before,
.works-cats-search__post-type input[type="radio"]:checked+label::after {
    content: "";
    display: block;
    border-left: 2rem solid transparent;
    border-right: 2rem solid transparent;
    position: absolute;
    top: 0;

    pointer-events: none;
}

.works-cats-search__post-type input[type="radio"]:nth-of-type(odd):checked+label::before {
    border-bottom: 4rem solid #665546;
    right: -1rem;
}

.works-cats-search__post-type input[type="radio"]:nth-of-type(odd):checked+label::after {
    border-top: 4rem solid #fff;
    right: -3rem;
}

.works-cats-search__post-type input[type="radio"]:nth-of-type(even):checked+label::before {
    border-bottom: 4rem solid #fff;
    left: -3rem;
}

.works-cats-search__post-type input[type="radio"]:nth-of-type(even):checked+label::after {
    border-top: 4rem solid #665546;
    left: -1rem;
}

.works-cats-search__box {
    padding: 0 1rem;
    margin-top: 2rem;
}

.works-cats-search__box__flex {
    display: flex;
}

.works-cats-search__box__left {
    width: 6rem;
    padding-right: 1.5rem;
}

.works-cats-search__box__left .heading {
    padding-top: 1rem;
    font-family: var(--ff-noto-serif);
    color: #000;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
}

.works-cats-search__box__right {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 6rem);
}

.works-cats-search__box__right.is-col3 input+label {
    width: calc(33.33% - 10px);
    margin-top: 1rem;
    margin-left: 1.5rem;
}

.works-cats-search__box__right.is-col3 input:nth-of-type(3n+1)+label {
    margin-left: 0;
}

.works-cats-search__box__right.is-col3 input:nth-of-type(-n+3)+label {
    margin-top: 0;
}

.works-cats-search__box__right.is-col4 input+label {
    width: calc(25% - 15px);
    margin-left: 2rem;
}

.works-cats-search__box__right.is-col4 input:nth-of-type(4n+1)+label {
    margin-left: 0;
}

.works-cats-search__box__right.is-col4 input:nth-of-type(-n+4)+label {
    margin-top: 0;
}

.works-cats-search__box input[type="radio"],
.works-cats-search__box input[type="checkbox"] {
    display: none;
}

.works-cats-search__box input[type="radio"]+label,
.works-cats-search__box input[type="checkbox"]+label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    background-color: #fff;
    border-bottom: 2px solid #665546;
    font-family: var(--ff-noto-serif);
    color: #665546;
    font-size: 1.1rem;
    line-height: 1.33;
    text-align: center;
}

.works-cats-search__box input[type="radio"]:checked+label,
.works-cats-search__box input[type="checkbox"]:checked+label {
    background-color: #665546;
    border-bottom: 2px solid transparent;
    color: #fff;
}

.works-cats-search__button {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.works-cats-search__button button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 30rem;
    height: 3.5rem;
    background: none;
    border: 1px solid #000;
    border-radius: 0;
    font-family: var(--ff-noto-serif);
    color: #000;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    position: relative;
}

.works-cats-search__button button::before {
    content: "＞";
    display: block;
    font-family: var(--ff-noto-serif);
    color: #000;
    font-size: 1.4rem;
    font-weight: 400;
    position: absolute;
    top: 1rem;
    right: 3rem;

    pointer-events: none;
}

.works-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    margin-bottom: 2.6rem;
}

.works-list__item {
    opacity: 1;
    width: calc(100% / 2 - 1.8vw);
    max-width: 50%;
    padding: .5rem .5rem 5rem .5rem;
    margin-bottom: 2.6rem;
    border: 1px solid #665546;
    position: relative;
	font-family: var(--ff-noto-sans);
}

.works-list__item.is-hidden {
    display: none;
}

.works-list__item.is-staff {
    padding: 0;
    border: none;
}

.works-list__item.is-staff .works-list-subtitle {
    margin-top: 1.2rem;
    text-align: left;
}

.works-list__item.is-staff .gallerytaxs__item {
    padding: 2px;
    border: 1px solid var(--primary-brown);
}

.works-list__item.is-staff .works-list__title {
    text-align: left;
}

.works-list__item:nth-child(even) {
    margin-left: 3.6vw;
}

/*
.works-list__thumb {
    width: 100%;
    height: 28.8vw;
}
*/

.works-list__thumb a {
    width: 100%;
    height: 100%;
}

.works-list__thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.works-list__new {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: #665546;
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    text-align: center;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.works-list-subtitle {
    margin-top: .8rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}
.responsive iframe {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
	}
    .responsive {
        position: relative;
        padding-top: 56.25%;
    }
.gallerytaxs {
    display: flex;
    flex-wrap: wrap;
    padding: .6rem 0 0 0;
}

.gallerytaxs__item {
    display: inherit;
    width: auto;
    margin-top: .8rem;
}

.gallerytaxs__item:not(:last-child) {
    margin-right: .4rem;
}

.gallerytaxs__item a {
    width: 100%;
    padding: 0;
    background-color: #fff;
    color: var(--primary-brown);
    font-size: 1rem;
    line-height: 1.2;
}

.works-list__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    padding: 0 .5rem;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1rem;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.works-list__button a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 17.9rem;
	/* height: 3.2rem; */
	background: #fff;
	color: #665546;
	border: 1px solid #665546;
	text-align: center;
	position: relative;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	font-size: 1.3rem;
	padding: 8px 0 10px;
}

.works-list__button a span {
    display: inline-block;
	font-family: var(--ff-noto-sans);
    font-weight: 400;
    line-height: 1;
}

.works-list__button a span::before {
    content: "＞";
    margin: auto;
    color: #665546;
    font-size: 1rem;
    position: absolute;
    top: .8rem;
    right: 1.5rem;
}

.works-list__tax {
    display: inline-block;
    padding: .4rem 2.2rem;
    margin-bottom: 1rem;
    background-color: var(--primary-brown);
    font-family: var(--ff-noto-sans);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.2;
}

.works-list__title {
	font-family: var(--ff-noto-serif);
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.33;
    text-align: center;
}

.works-pickup__title {
    margin-bottom: 4rem;
    font-size: 1.6rem;
    font-weight: 500;
}

.works-more-button-wrap {
    width: 100%;
}

.allery-more-button.is-btn-hidden {
    display: none;
}

/* 建築事例詳細 */
.single-works img {
    max-width: 100%;
    height: auto;
}

.single-works-wrap {
    margin: 0 auto;
}

.single-works-head {
	padding: 6rem 2rem 0;
}

.single-works-head .heading {
    padding-bottom: 1.6rem;
    font-family: var(--ff-noto-serif);
    color: #000;
    font-size: 2rem;
    line-height: 1.25;
    text-align: center;
    position: relative;
}

.single-works-head .heading::before {
    content: "";
    display: block;
    width: 11.8rem;
    height: .1rem;
    margin: auto;
    background: #000;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.single-works-head .subheading {
    margin-top: 1rem;
    font-family: var(--ff-noto-serif);
    color: #000;
    font-size: 1rem;
    line-height: 1.22;
    text-align: center;
}

.single-works-movie {
    margin-top: 3rem;
}

.single-works-movie .movie {
    text-align: center;
}

.single-works-movie .movie video {
    width: 100%;
    height: 69.6vw;
}

.single-works-movie .read {
    padding: 0 2rem;
    margin-top: 3rem;
    font-family: var(--ff-noto-serif);
    color: #000;
    font-size: 1.3rem;
    line-height: 2.23;
}

.single-works-slider {
    margin-top: 3.3rem;
}

.single-works-slider .slider {
    padding: 1rem 0 0 0;
    background: rgba(0, 0, 0, .61);
}

.single-works-slider .col {
    padding: 0 .5rem;
}

.single-works-slider .col a {}

.single-works-slider .col a img {}

.single-works-magnific {
    text-align: center;
}

.single-works-magnific img {
    width: 100%;
}

.single-works-magnific .caption {
    margin-top: .6rem;
    font-family: var(--ff-noto-sans);
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: left;
}

.single-works-metaBox {}

.single-works-metaBox .flex {}

.single-works-metaBox .data,
.single-works-metaBox .staff {
    max-width: 29rem;
    margin: 4.5rem auto 0 auto;
    border: 1px solid #000;
    position: relative;
}

.single-works-metaBox .data .heading,
.single-works-metaBox .staff .heading {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10rem;
    height: 3rem;
    margin: auto;
    background: #fff;
    font-family: var(--ff-noto-serif);
    color: #000;
    font-size: 1.8rem;
    line-height: 1.22;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    top: -1.5rem;
    left: 0;
    right: 0;
}

.single-works-metaBox .data {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.single-works-metaBox .data .table {
    width: 100%;
    max-width: 18.7rem;
}

.single-works-metaBox .data .table tr th,
.single-works-metaBox .data .table tr td {
    font-family: var(--ff-noto-serif);
    color: #000;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.82;
    text-align: left;
    vertical-align: top;
}

.single-works-metaBox .data .table tr th {
    width: 42%;
}

.single-works-metaBox .data .table tr td {
    width: 58%;
}

.single-works-metaBox .staff {
    padding: 3.2rem 2rem 2.4rem 2rem;
}

.single-works-metaBox .staff .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.single-works-metaBox .staff .col {
    width: 6.7rem;
    margin-top: 1.2rem;
    margin-left: 2rem;
}

.single-works-metaBox .staff .col:nth-child(3n+1) {
    margin-left: 0;
}

.single-works-metaBox .staff .col:nth-child(-n+3) {
    margin-top: 0;
}

.single-works-metaBox .staff .job,
.single-works-metaBox .staff .name {
    font-family: var(--ff-noto-serif);
    color: #000;
    font-size: 1rem;
    line-height: 1.33;
    text-align: center;
}

.single-works-metaBox .staff .img {
    width: 6.6rem;
    height: 6.6rem;
    margin: .7rem auto 0 auto;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
}

.single-works-metaBox .staff .name {
    margin-top: .7rem;
}

.single-works-other {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 860px;
    margin: 150px auto 100px;
}

.single-works-other .box {
    width: 48%;
    max-width: 400px;
    margin-top: 1.8rem;
    border-bottom: solid 1px #000;
    text-align: center;
}

.single-works-other .box a {
    display: block;
    padding-bottom: 15px;
    font-size: 2.5rem;
}

.single-works-pager {
    max-width: 990px;
    margin: 0 auto 120px;
    position: relative;
}

.single-works-pager a {
    display: block;
    font-size: 2rem;
}

.single-works-pager .prev {
    float: left;
    max-width: 310px;
}

.single-works-pager .next {
    float: right;
    max-width: 310px;
}

.single-works-pager .prev span {
    display: inline-block;
    padding-left: 40px;
    position: relative;
}

.single-works-pager .prev span::before {
    content: "＜";
    position: absolute;
    left: 0;
}

.single-works-pager .next span {
    display: inline-block;
    padding-right: 40px;
    position: relative;
}

.single-works-pager .next span::before {
    content: "＞";
    position: absolute;
    right: 0;
}


.single-works-pager .back {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* 建築事例カテゴリー */
.tax-workstax .p-breadcrumb {
    display: none;
}

.archive-workstax {
    margin-top: 3.5rem;
}

.gallerytax__headline {
    margin-bottom: 2.4rem;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
}

.gallerytax-mainVisual {
    width: 100%;
    height: 53.07vw;
    margin-bottom: 3rem;
    text-align: center;
}

.gallerytax-mainVisual img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.archive-workstax .mainVisual__container,
.gallerytax-articles__container {
    padding-left: var(--padding--container);
    padding-right: var(--padding--container);
}

/* 建築事例詳細 サイドバー */
.sidebar__container {
    padding-bottom: 4.5rem;
}

.other-works {
    padding: 1.4rem 0 2.3rem 1.7rem;
    background-color: var(--tertiary-brown);
}

.other-works__title {
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 500;
}

.other-works+.other-works {
    margin-top: .8rem;
}

.other-works-list {
    width: 100%;
    padding-left: var(--padding--container);
}

.other-works-list__item a {
    width: 100%;
    font-family: var(--ff-noto-sans);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.85;
    position: relative;
}

.other-works-list__item a::before {
    content: "";
    width: 0;
    height: 0;
    margin-top: -6px;
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--primary-brown);
    position: absolute;
    top: 50%;
    left: -1.2rem;
}

.nopc {
    display: block;
}

.nosp {
    display: none;
}

@media (min-width: 1000px) {
    .mainVisual {
        margin-bottom: 5rem;
    }

    .mainVisual__bg {
        background-image: url(../img/gallery/mv_pc.jpg);
        position: relative;
    }

    .works-articles__container {
        max-width: var(--width--container);
        padding: 0 0 8rem;
        margin: auto;
    }

    .works-pickup-articles__container {
        max-width: var(--width--container);
        padding: 6.5rem 0 .5rem 0;
        margin: auto;
    }

    .works-cats {
        margin: 0 auto 5rem;
    }

    .works-cats-list {
        justify-content: space-between;
        margin-bottom: 1rem;

        gap: 0;
    }
    
    .works-cats-list__item a,
    .works-cats-popup-button {
        max-width: 45rem;
        padding: 1.4rem 0;
    }

    .works-cats-popup-button {
        cursor: pointer;
        transition: opacity .4s ease;
    }

    .works-cats-popup-button:hover {
        opacity: .6;
    }

    /* カテゴリーから探す（ポップアップ） */
    .remodal {
        max-width: 90rem;
    }

    /* 検索モーダル */
    .works-cats-search {
        padding-bottom: 6.5rem;
    }

    .works-cats-search__post-type {
        display: flex;
        border-bottom: 2px solid #665546;
    }

    .works-cats-search__post-type input[type="radio"] {
        display: none;
    }

    .works-cats-search__post-type input[type="radio"]+label {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50%;
        height: 6rem;
        background-color: #fff;
        font-family: var(--ff-noto-serif);
        color: #665546;
        font-size: 2rem;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .works-cats-search__post-type input[type="radio"]:checked+label {
        background-color: #665546;
        color: #fff;
        z-index: 2;
    }

    .works-cats-search__post-type input[type="radio"]:checked+label::before,
    .works-cats-search__post-type input[type="radio"]:checked+label::after {
        content: "";
        display: block;
        border-left: 3rem solid transparent;
        border-right: 3rem solid transparent;
        position: absolute;
        top: 0;

        pointer-events: none;
    }

    .works-cats-search__post-type input[type="radio"]:nth-of-type(odd):checked+label::before {
        border-bottom: 6rem solid #665546;
        right: -1.5rem;
    }

    .works-cats-search__post-type input[type="radio"]:nth-of-type(odd):checked+label::after {
        border-top: 6rem solid #fff;
        right: -4.5rem;
    }

    .works-cats-search__post-type input[type="radio"]:nth-of-type(even):checked+label::before {
        border-bottom: 6rem solid #fff;
        left: -4.5rem;
    }

    .works-cats-search__post-type input[type="radio"]:nth-of-type(even):checked+label::after {
        border-top: 6rem solid #665546;
        left: -1.5rem;
    }

    .works-cats-search__box {
        padding: 0 6.5rem;
        margin-top: 5.5rem;
    }

    .works-cats-search__box__flex {
        display: flex;
    }

    .works-cats-search__box__left {
        width: 10.7rem;
        padding-right: 4rem;
    }

    .works-cats-search__box__left .heading {
        padding-top: 1.5rem;
        font-family: var(--ff-noto-serif);
        color: #000;
        font-size: 2rem;
        font-weight: 400;
        text-align: center;
    }

    .works-cats-search__box__right {
        display: flex;
        flex-wrap: wrap;
        width: calc(100% - 10.7rem);
    }

    .works-cats-search__box__right.is-col3 input+label {
        width: calc(33.33% - 20px);
        margin-top: 2.5rem;
        margin-left: 3rem;
    }

    .works-cats-search__box__right.is-col3 input:nth-of-type(3n+1)+label {
        margin-left: 0;
    }

    .works-cats-search__box__right.is-col3 input:nth-of-type(-n+3)+label {
        margin-top: 0;
    }

    .works-cats-search__box__right.is-col4 input+label {
        width: calc(25% - 15px);
        margin-left: 2rem;
    }

    .works-cats-search__box__right.is-col4 input:nth-of-type(4n+1)+label {
        margin-left: 0;
    }

    .works-cats-search__box__right.is-col4 input:nth-of-type(-n+4)+label {
        margin-top: 0;
    }

    .works-cats-search__box input[type="radio"],
    .works-cats-search__box input[type="checkbox"] {
        display: none;
    }

    .works-cats-search__box input[type="radio"]+label,
    .works-cats-search__box input[type="checkbox"]+label {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1.2rem 1rem 1rem 1rem;
        background-color: #fff;
        border-bottom: 2px solid #665546;
        font-family: var(--ff-noto-serif);
        color: #665546;
        font-size: 2rem;
        text-align: center;
    }

    .works-cats-search__box input[type="radio"]:checked+label,
    .works-cats-search__box input[type="checkbox"]:checked+label {
        background-color: #665546;
        border-bottom: 2px solid transparent;
        color: #fff;
    }

    .works-cats-search__button {
        display: flex;
        justify-content: center;
        margin-top: 6.8rem;
    }

    .works-cats-search__button button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 30rem;
        height: 4.5rem;
        background: none;
        border: 1px solid #000;
        border-radius: 0;
        font-family: var(--ff-noto-serif);
        color: #000;
        font-size: 2rem;
        font-weight: 400;
        text-align: center;
        position: relative;
    }

    .works-cats-search__button button::before {
        content: "＞";
        display: block;
        font-family: var(--ff-noto-serif);
        color: #000;
        font-size: 2rem;
        font-weight: 400;
        position: absolute;
        top: .5rem;
        right: 3rem;

        pointer-events: none;
    }

    .works-list__item {
        width: 320px;
        max-width: 100%;
        padding: 1rem 1rem 6.5rem 1rem;
        margin-right: 2rem;
        margin-bottom: 2rem;
    }

    .works-list__item.is-staff {
        width: 30.6rem;
        padding: 0;
        margin-right: 4rem;
    }

    .works-list__item.is-staff .works-list-subtitle {
        padding: 0 .5rem;
        font-size: 1.2rem;
    }

    .works-list__item.is-staff .gallerytaxs__item {
        padding: .3rem .5rem;
        margin-top: .5rem;
    }

    .works-list__item.is-staff .gallerytaxs__item a {
        font-size: 1.2rem;
    }

    .works-list__item.is-staff .works-list__title {
        padding: 0 1rem;
        margin-top: 1rem;
    }

    .works-list__item:nth-child(even) {
        margin-left: 0;
    }

    .works-list__item:nth-child(3n) {
        margin-right: 0;
    }

/*
    .works-list__thumb {
        height: 225px;
    }
*/

    .works-list__thumb a {
        transition: all .4s ease;
    }

    .works-list__thumb a:hover {
        opacity: .6;
    }

    .works-list__new {
        width: 33px;
        height: 33px;
        top: 20px;
        left: 20px;
    }

    .works-list-subtitle {
        margin-top: 17px;
    }

    .gallerytaxs {
        padding: .6rem 1rem 0 1rem;
    }

    .gallerytaxs__item {
        margin-top: 10px;
    }

    .gallerytaxs__item a {
        font-size: 1rem;
    }

    .gallerytaxs__item:not(:last-child) {
        margin-right: 1rem;
    }

    .works-list__title {
        margin-top: 1.5rem;
        font-size: 1.5rem;
    }

    .works-list__button {
        bottom: 2rem;
    }

    .works-list__button a {
        transition: background-color .3s ease, color .3s ease;
    }

    .works-list__button a:hover {
        background: #665546;
        color: #fff;
    }

    .works-list__button a span::before {
        right: 2.5rem;
        transition: color .3s ease;
    }

    .works-list__button a:hover span::before {
        color: #fff;
    }

    .works-pickup__title {
        font-size: 1.9rem;
    }

    .works-more-button-wrap {
        margin-top: 5rem;
    }

    /* 建築事例詳細 */
    .single-works {
        padding-top: 3rem;
    }

    .single-works-wrap {
        max-width: 99rem;
    }

    .single-works-head {
        padding: 0;
    }

    .single-works-head .heading {
        padding-bottom: 3.4rem;
        font-size: 5rem;
    }

    .single-works-head .heading::before {
        width: 30rem;
    }

    .single-works-head .subheading {
        margin-top: 2.2rem;
        font-size: 2.5rem;
    }

    .single-works-movie {
        margin-top: 5.2rem;
    }

    .single-works-movie .movie video {
        height: auto;
    }

    .single-works-movie .read {
        padding: 0;
        margin-top: 2rem;
        font-size: 2rem;
        line-height: 2.2;
    }
	
    .single-works-slider {
        margin-top: 6rem;
    }

    .single-works-slider .slider {
        padding: 2rem 0 1.3rem 0;
    }

    .single-works-slider .col {
        padding: 0 1rem;
    }

    .single-works-slider .col a {
        text-align: center;
    }

    .single-works-magnific {
        width: 100%;
        max-width: 99rem;
        margin: 0 auto;
    }

    .single-works-magnific .caption {
        margin-top: 2rem;
        font-size: 2.1rem;
        line-height: 1.19;
    }

    .single-works-metaBox .flex {
        display: flex;
    }

    .single-works-metaBox .data,
    .single-works-metaBox .staff {
        max-width: inherit;
        margin: 13rem auto 0 auto;
        border-radius: 1.7rem;
    }

    .single-works-metaBox .data .heading,
    .single-works-metaBox .staff .heading {
        width: 13rem;
        font-size: 3rem;
    }

    .single-works-metaBox .data {
        width: calc(44% - 15px);
        padding: 5.5rem 2rem;
    }

    .single-works-metaBox .data .table {
        width: 100%;
        max-width: 34rem;
    }

    .single-works-metaBox .data .table tr th,
    .single-works-metaBox .data .table tr td {
        font-size: 2rem;
        line-height: 2.1;
    }

    .single-works-metaBox .data .table tr th {
        width: 42%;
    }

    .single-works-metaBox .data .table tr td {
        width: 58%;
    }

    .single-works-metaBox .staff {
        width: calc(56% - 15px);
        padding: 5.6rem 2rem 4.6rem 2rem;
        margin-left: 3rem;
    }

    .single-works-metaBox .staff .card {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;

        -webkit-box-pack: center;
        -ms-flex-pack: center;
    }

    .single-works-metaBox .staff .col {
        width: 13rem;
        margin-top: 1.2rem;
        margin-left: 2rem;
    }

    .single-works-metaBox .staff .job {
        font-size: 1.4rem;
    }

    .single-works-metaBox .staff .name {
        font-size: 1.8rem;
    }

    .single-works-metaBox .staff .img {
        width: 13rem;
        height: 13rem;
        margin: 1.2rem auto 0 auto;
    }

    .single-works-metaBox .staff .name {
        margin-top: 1.5rem;
    }

    .single-works-other {
        margin: 150px auto 120px;
    }

    .single-works-pager {
        margin: 0 auto 320px;
    }

    .single-works-pager a {
        min-height: 65px;
        padding: 15px 0;
        background: #665546;
        color: #fff;
        text-align: center;
    }

    .single-works-pager .back {
        width: 32%;
        max-width: 310px;
    }

    .single-works-pager .prev {
        width: 32%;
    }

    .single-works-pager .next {
        width: 32%;
    }

    /* 建築事例カテゴリー */
    .archive-workstax {
        margin-top: 3.5rem;
    }

    .archive-workstax .mainVisual {
        margin-bottom: 14.8rem;
    }

    .archive-workstax .mainVisual__container {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        max-width: var(--width--container);
        padding-left: 0;
        padding-right: 0;
        margin: 0 auto;
    }

    .gallerytax-top-left {
        width: 370px;
        margin-right: 8.5rem;
    }

    .gallerytax__headline {
        font-size: 2.9rem;
    }

    .gallerytax-mainVisual {
        width: 500px;
        height: 297px;
        margin-bottom: 0;
    }

    .gallerytax-articles__container {
        max-width: var(--width--container);
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 8rem;
        margin: 0 auto;
    }

    .gallerytax-top-left .works-cats-popup-button {
        padding: 1.9rem 0;
        margin-bottom: 3rem;
        position: relative;
    }

    .gallerytax-top-left .works-cats-popup-button::before {
        content: "";
        width: 30px;
        height: 30px;
        margin: auto;
        background: var(--white);
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(420%, -50%);
    }

    .gallerytax-top-left .works-cats-popup-button::after {
        content: "";
        width: 8px;
        height: 8px;
        margin: auto;
        border-top: 1px solid var(--primary-brown);
        border-right: 1px solid var(--primary-brown);
        position: absolute;
        top: 50%;
        right: 50%;
        transform: translate(1790%, -50%) rotate(45deg);
    }

    .nosp {
        display: block;
    }

    .nopc {
        display: none;
    }
}

@media (max-width: 999px) {
	.works-list__button a {
        background: #665546;
        color: #fff;
        border: 1px solid #665546;
		font-size: 1.2rem;

    }
	.works-list__button a span::before {
        color: #fff;
    }
    .single-works-other {
        display: flex;
        justify-content: space-between;
        max-width: 860px;
        margin: 150px auto 0 auto;
    }

    .single-works-other .box {
        width: 48%;
        max-width: 400px;
        border-bottom: solid 1px #000;
        text-align: center;
    }

    .single-works-other .box a {
        display: block;
        padding-bottom: 15px;
        font-size: 2.5rem;
    }

    .single-works-other {
        padding: 0 30px;
        margin: 20px 0 50px 0;
    }

    .single-works-other .box {
        max-width: 150px;
    }

    .single-works-other .box a {
        padding-bottom: 8px;
        font-size: 1rem;
    }

    .single-works-pager a {
        font-size: 1rem;
    }

    .single-works-pager .prev span {
        padding-left: 20px;
    }


    .single-works-pager .next span {
        padding-right: 20px;
    }
}
