@charset "utf-8";
@font-face {
    font-family: "Noto Sans JP";
    src:
        url("/fonts/NotoSansJP-Regular.woff2") format("woff2"),
        url("/fonts/NotoSansJP-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans JP";
    src:
        url("/fonts/NotoSansJP-DemiBold.woff2") format("woff2"),
        url("/fonts/NotoSansJP-DemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans JP";
    src:
        url("/fonts/NotoSansJP-Bold.woff2") format("woff2"),
        url("/fonts/NotoSansJP-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* -----------------------------------------------------------------
   Project
   ----------------------------------------------------------------- */

.headerGlobal {
    max-width: 1000px;
    padding-bottom: 80px;
    padding-top: 32px;
    margin: 0 auto;
}
@media screen and (max-width: 620px) {
    .headerGlobal {
        padding-bottom: 32px;
        padding-top: 10px;
        height: auto;
    }
}

.headerGlobal .inner{
    width: auto;
}

.headerGlobal .logo {
    float: none;
    margin: 0;
    margin-top: 0;
}
.headerGlobal h1{
    margin-top: 0;
}

@media screen and (max-width: 620px) {
    .headerGlobal .logo {
        margin-left: 15px;
        float: none;
    }
}
.main {
    font-family: "Noto Sans JP", sans-serif;
}
body{
    color: #fff;
}
.p-sample {
    max-width: 1000px;
    margin: 0 auto 0;
}
@media screen and (max-width: 620px) {
    .p-sample {
        margin: 0 15px 56px;
        width: auto;
    }
}

.p-sample-title {
    margin-bottom: 24px;
}
@media screen and (max-width: 620px) {
    .p-sample-title img {
        width: 130px;
    }
}

.p-sample-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 200px 64px 200px 64px 200px 64px 200px;
    grid-template-columns: repeat(4, 200px);
    -webkit-column-gap: 64px;
       -moz-column-gap: 64px;
            column-gap: 64px;
    row-gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width: 620px) {
    .p-sample-list {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }
}

.p-sample-item {
    cursor: pointer;
}

@media screen and (max-width: 620px) {
    .p-sample-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
}

.p-sample-item__img {
    margin-bottom: 12px;
    border: 2px solid #000;
    display: inline-block;
}
@media screen and (max-width: 620px) {
    .p-sample-item__img {
        width: 18%;
        min-width: 72px;
        margin: 0;
    }
    .p-sample-item__img img {
        width: 100%;
        min-width: 72px;
    }
}

.p-sample-item:hover .p-sample-item__img {
    border: 2px solid #fff;
}

.p-sample-item__text {
    font-size: 16px;
    line-height: calc(23 / 16);
}
@media screen and (max-width: 620px) {
    .p-sample-item__text {
        margin-left: 16px;
        font-size: 18px;
        font-size: 16px;
    }
}
.p-sample-item__text span {
    font-weight: bold;
    margin-right: 1em;
}
@media screen and (max-width: 620px) {
    .p-sample-item__text span {
        margin-right: 0.7em;
    }
}

.p-sample-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.p-sample-modal__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1000px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
    position: relative;
    top: 50%;
}
@media screen and (max-width: 620px) {
    .p-sample-modal__content {
        padding: 0 16px;
    }
}

.p-sample-modal__close {
    position: absolute;
    top: -48px;
    width: 40px;
    height: 40px;
    right: 0px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
}

@media screen and (max-width: 620px) {
    .p-sample-modal__close {
        right: 16px;
    }
}

.p-sample-modal__close:before,
.p-sample-modal__close:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 44px;
    height: 2px;
    background-color: #fff;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
}

.p-sample-modal__close:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
}

.p-sample-modal__close:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        -ms-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
}

.p-sample-detail {
    margin-top: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    line-height: calc(26 / 14);
    font-size: 14px;
}
@media screen and (max-width: 620px) {
    .p-sample-detail__text{
        letter-spacing: -0.02em;
    }
}
.p-sample-detail__img img {
    max-width: 324px;
    width: 100%;
}
@media screen and (max-width: 620px) {
    .p-sample-detail {
        margin-top: 40px;
        display: block;
    }
    .p-sample-detail__img {
        margin-top: 30px;
    }
}

.p-sample-detail span {
    color: #f00;
}
.p-sample-contact {
    margin: 80px auto;
    text-align: center;
}
@media screen and (max-width: 620px) {
    .p-sample-contact {
        margin: 40px auto 0;
    }
}

.p-sample-contact__btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 16px 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #d70000;
    margin-bottom: 16px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-size: 18px;
    font-weight: bold;
}

@media screen and (max-width: 620px) {
    .p-sample-contact__btn {
        display: inline-block;
        width: 82%;
        gap: 0px;
    }
    .p-sample-contact__btn span {
        display: inline-block;
    }
}

.p-sample-contact__btn:hover {
    background: #fff;
    color: #d70000;
    font-weight: bold;
}
.p-sample-contact__text {
    color: #fff;
    text-align: center;
    font-size: 14px;
}
/* ==========================================================================
   External
   ========================================================================== */
/* Swiper styles */
.swiper-container {
    width: 100%;
    height: auto;
    max-width: 993px;
    position: relative;
    overflow: hidden;
    left: -2px;
    position: relative;
}

@media screen and (max-width: 620px) {
    .swiper-container {
        left: 0px;
    }
}

.swiper-slide img {
    width: 100%;
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    padding: 8px 16px;
    -webkit-transition: 0.6s ease;
    -o-transition: 0.6s ease;
    transition: 0.6s ease;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    z-index: 10;
    width: auto;
    margin-top: -8px;
    top: 50%;
    -webkit-transform: translateY(-16px);
        -ms-transform: translateY(-16px);
            transform: translateY(-16px);
}

.swiper-button-next {
    right: -10px;
}

.swiper-button-prev {
    left: -10px;
}

@media screen and (min-width: 749px) {
    .swiper-button-next,
    .swiper-button-prev {
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        padding: 46px 16px;
    }

    .swiper-button-next {
        right: 10px;
    }

    .swiper-button-prev {
        left: 10px;
    }
}

.swiper-container .swiper-button-prev::after,
.swiper-container .swiper-button-next::after {
    background-image: url(/imgs/sample/icon_arrow_sample.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 53px 107px;
    font-size: 0;
    width: 53px;
    height: 107px;
}
@media screen and (max-width: 620px) {
    .swiper-container .swiper-button-next::after,
    .swiper-container .swiper-button-prev::after {
        background-size: 24px 48px;
        width: 24px;
        height: 48px;
    }
}

.swiper-container .swiper-button-prev::after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.is-sp {
    display: none;
}

@media screen and (max-width: 620px) {
    .is-sp {
        display: inline;
    }
}
.footerGlobal--sample{
    padding-top: 20px;
    border-top: 1px solid #4C4C4C;
    color: #b3b3b3;
}
.footerGlobal .inner{
    max-width: 1000px;
    width: auto;
    margin: 0 auto;
}