@charset "utf-8";
/* Description.........................................
//
// 2023年11月改修で追加したCSS(固定ページ・記事ページ)
//
//....................................................*/
html.is-active,
body.is-active {
    overflow: hidden;
}
/*.....................................................
// コンポーネント(見出し)
//....................................................*/
.c-heading-results-section {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.08em;
    color: #4c80b8;
    text-align: center;
    margin-bottom: 56px;
}
@media screen and (max-width: 800px) {
    .c-heading-results-section {
        font-size: 22px;
    }
}
/*.....................................................
// コンポーネント(カード)
//....................................................*/
/* c-card-attempt */
.c-card-attempt {
    max-width: 330px;
    width: 100%;
    position: relative;
}
.c-card-attempt .box01 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding: 0 24px;
    height: 100%;
}
.c-card-attempt .logo {
    max-width: 200px;
    width: 100%;
    aspect-ratio: 1 / 1;
}
.c-card-attempt .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.c-card-attempt .info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.c-card-attempt .text {
    font-size: 16px;
    line-height: 175%;
    letter-spacing: 0.5px;
    text-align: center;
}
.c-card-attempt .accent {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.08em;
    font-weight: bold;
    color: #4c80b8;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -48px;
    white-space: nowrap;
}
.c-card-attempt .accent::before,
.c-card-attempt .accent::after {
    content: "";
    display: block;
    width: 2px;
    height: 24px;
    background: #4c80b8;
}
.c-card-attempt .accent::before {
    transform: rotate(-25deg);
}
.c-card-attempt .accent::after {
    transform: rotate(25deg);
}

/*.....................................................
// コンポーネント(モーダル)
//....................................................*/
/* c-modal-attempt */
.c-modal-attempt {
    max-width: 900px;
    width: 80%;
    height: 75svh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 120000;
    background: #fff;
    display: none;
}
.c-modal-attempt .modal-container {
    padding: 72px 56px 56px;
}
.c-modal-attempt .modal-wrap {
    overflow-y: scroll;
    height: calc(75svh - 72px - 56px);
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative;
}
.c-modal-attempt .modal-wrap::-webkit-scrollbar {
    display: none;
}
.c-modal-attempt .heading {
    font-size: 22px;
    font-weight: bold;
    line-height: 150%;
    letter-spacing: 0.08em;
    color: #4c80b8;
    text-align: center;
    margin-bottom: 24px;
}
.c-modal-attempt .logo {
    max-width: 200px;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 auto 10px;
}
.c-modal-attempt .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.c-modal-attempt .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.c-modal-attempt .description {
    font-size: 16px;
    line-height: 175%;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}
.c-modal-attempt .c-btn-more {
    margin: 0 auto;
}
.c-modal-attempt .btn {
    width: 32px;
    aspect-ratio: 1 / 1;
    background: #4c80b8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}
.c-modal-attempt .btn .inner-btn {
    width: 18px;
    aspect-ratio: 1 / 1;
    position: relative;
    transform: rotate(45deg);
}
.c-modal-attempt .btn .inner-btn span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    position: absolute;
}
.c-modal-attempt .btn .inner-btn span:first-of-type {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.c-modal-attempt .btn .inner-btn span:last-of-type {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
}
.c-modal-attempt .bg-gradation {
    width: 100%;
    height: 100px;
    background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: sticky;
    left: 0;
    bottom: -5px;
}
.c-modal-attempt .bg-gradation.is-active {
    height: 0;
}
@media screen and (max-width: 800px) {
    .c-modal-attempt .modal-container {
        padding: 72px 24px 56px;
    }
    .c-modal-attempt .heading {
        font-size: 18px;
    }
    .c-modal-attempt .logo {
        max-width: 160px;
    }
}
@media screen and (max-width: 580px) {
    .c-modal-attempt {
        height: 80svh;
    }
    .c-modal-attempt .modal-wrap {
        height: calc(80svh - 72px - 56px);
    }
}
/* c-modal-attempt-bg */
.c-modal-attempt-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(51, 51, 51, 0.4);
    z-index: 9999;
    cursor: pointer;
    display: none;
}

/*.....................................................
// コンポーネント(リスト)
//....................................................*/
.c-list-single {
    display: flex;
    flex-wrap: wrap;
}
.c-list-single .title {
    width: 200px;
    background: #4c80b8;
    font-size: 16px;
    font-weight: bold;
    line-height: 150%;
    letter-spacing: 0.1em;
    color: #fff;
    padding: 10px 16px;
    border-bottom: 1px solid #8ea5be;
}
.c-list-single .title:first-of-type,
.c-list-single .text:first-of-type {
    border-top: 1px solid #8ea5be;
}
.c-list-single .title:last-of-type,
.c-list-single .text:last-of-type {
    margin-bottom: 48px;
}
.c-list-single .text {
    width: calc(720px - 200px);
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.1em;
    padding: 10px 16px;
    border-bottom: 1px solid #8ea5be;
    border-right: 1px solid #8ea5be;
}
@media screen and (max-width: 800px) {
    .c-list-single .title {
        width: 100%;
        font-size: 16px;
        padding: 10px 1rem;
        border-bottom: none;
    }
    .c-list-single .text {
        width: 100%;
        font-size: 16px;
        padding: 10px 1rem;
        border-bottom: none;
        border-right: none;
    }
    .c-list-single .title:last-of-type,
    .c-list-single .text:last-of-type {
        margin-bottom: 0;
    }
    .c-list-single .text:last-of-type {
        margin-bottom: 32px;
    }
}

/*.....................................................
// 会社概要
//....................................................*/
.attempt-container {
    margin-top: 56px;
    position: relative;
}
.attempt-container .title {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.08em;
    color: #4c80b8;
    margin-bottom: 90px;
    text-align: center;
}
.attempt-container .list {
    max-width: 960px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7rem 3rem;
    margin: 0 auto;
}
@media screen and (max-width: 800px) {
    .attempt-container .title {
        font-size: 18px;
    }
}

/*.....................................................
// 施工実績
//....................................................*/
.results-section-container {
    padding: 56px 0;
}
.results-section-container .p-results-pavement {
    padding-bottom: 120px;
}
.results-section-container .p-results-others,
.results-section-container .p-results-bridge,
.results-section-container .p-results-civil {
    padding-bottom: 120px;
}
.results-section-container .list {
    display: flex;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 25px;
    margin-bottom: 48px;
}
.results-section-container .c-btn-more {
    margin: 0 auto;
}
.results-section-container .paginate {
    margin: 56px 0;
}
@media screen and (max-width: 900px) {
    .results-section-container .list {
        grid-template-columns: 1fr;
        gap: 32px 25px;
        justify-items: center;
    }
    .results-section-container .c-card-achievements {
        max-width: 500px;
    }
}
@media screen and (max-width: 600px) {
    .results-section-container .list {
        grid-template-columns: 1fr;
        gap: 32px 25px;
    }
}

/*.....................................................
// ブログ
//....................................................*/
#blog-page .infoList {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 1rem;
    justify-items: center;
}
.clearfix .img_center {
    width: 160px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}
.clearfix .img_center img {
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 900px) {
    #blog-page .infoList {
        grid-template-columns: 1fr 1fr;
    }
    #blog-page .infoList .c-card-news {
        max-width: none;
    }
}
@media screen and (max-width: 700px) {
    #blog-page .infoList {
        grid-template-columns: 1fr;
    }
}

/*.....................................................
// 業務案内
//....................................................*/
#work_page .subCont01 .subCont01Img,
#work_page .subCont03 .subCont03Img {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
#work_page .subCont01 .subCont01Img > li,
#work_page .subCont03 .subCont03Img > li {
    max-width: 160px;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0;
}
#work_page .list_work .imgBox {
    width: 100%;
    height: 100%;
}
#work_page .list_work img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 900px) {
    #work_page .subCont01 .subCont01Img,
    #work_page .subCont03 .subCont03Img {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    #work_page .subCont01 .subCont01Img > li,
    #work_page .subCont03 .subCont03Img > li {
        max-width: none;
    }
}
@media only screen and (max-width: 700px) {
    #work_page .subCont01 .subCont01Img,
    #work_page .subCont03 .subCont03Img {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media only screen and (max-width: 480px) {
    #work_page .subCont01 .subCont01Img,
    #work_page .subCont03 .subCont03Img {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
